-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "esday",
"type": "module",
"version": "0.4.1",
"packageManager": "[email protected]",
"description": "A simple date library fully written in TypeScript",
"license": "MIT",
"homepage": "https://github.com/g-mero/esday",
"repository": {
"type": "git",
"url": "https://github.com/g-mero/esday"
},
"bugs": {
"url": "https://github.com/g-mero/esday/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./*": {
"types": "./*/index.d.ts",
"default": "./*/index.js"
}
},
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"typesVersions": {},
"files": [
"*"
],
"scripts": {
"lint": "pnpm exec eslint .",
"lint:fix": "pnpm exec eslint . --fix",
"build": "tsup --dts",
"type-check": "tsc --noEmit --skipLibCheck",
"test": "vitest",
"test:ui": "vitest --ui --api 9527",
"test:run": "vitest --run",
"test:run-browser": "vitest --run --browser.enabled",
"test:coverage": "vitest run --coverage",
"release": "commit-and-tag-version -i CHANGELOG.md --same-file",
"lint-commits": "commitlint --from b4c0a8614dd7d9997 --to HEAD --verbose",
"copypkg": "cpy package.json dist/ && cpy README.md dist/ ",
"pub": "pnpm build && pnpm copypkg && cd dist && pnpm publish",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^3",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.5.2",
"@vitest/browser": "3.0.0-beta.3",
"@vitest/coverage-v8": "^3.0.0-beta.3",
"@vitest/ui": "3.0.0-beta.3",
"commit-and-tag-version": "^12.5.0",
"cpy-cli": "^5.0.0",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"moment": "^2.30.1",
"playwright": "^1.49.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^6.0.7",
"vitest": "v3.0.0-beta.3"
},
"commit-and-tag-version": {
"packageFiles": [
{
"filename": "package.json",
"type": "json"
}
],
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
}
]
}
}