-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.52 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
84
85
86
87
88
{
"name": "@swjs/chinese-holidays",
"version": "1.1.0",
"description": "中国法定节假日查询",
"keywords": [
"chinese",
"holidays",
"zh"
],
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"files": [
"lib",
"es"
],
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"clean:dist": "rimraf lib dist es coverage",
"prebuild": "pnpm run clean:dist",
"build": "rollup -c ./rollup.config.mjs",
"lint": "eslint --cache src/",
"lint:fix": "npm run lint:js -- --fix",
"precommit": "lint-staged",
"prepare": "husky",
"prepublishOnly": "pnpm run build",
"ci:version": "changeset version",
"prerelease": "pnpm run build",
"release": "changeset publish",
"release:snapshot": "changeset version --snapshot canary && pnpm run release --tag canary --no-git-tag --snapshot",
"clean-local": "rimraf --glob '**/node_modules'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrSeaWave/chinese-holidays.git"
},
"publishConfig": {
"access": "public"
},
"author": "Sea <MrDaemon@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrSeaWave/chinese-holidays/issues"
},
"homepage": "https://github.com/MrSeaWave/chinese-holidays#readme",
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.15.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vitest/coverage-v8": "2.1.6",
"eslint": "9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-default": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.27.4",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.6"
},
"dependencies": {
"axios": "^1.7.8"
},
"packageManager": "pnpm@9.15.7",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"contributors": []
}