-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 908 Bytes
/
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
{
"name": "@kang8/chinese-holidays",
"version": "0.0.12",
"description": "A lib provider api to check chinese holidays",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/data/**/*.json",
"src/**/*.ts"
],
"scripts": {
"test": "vitest",
"build": "tsc",
"release": "tsc && vitest run && npm publish --access public"
},
"keywords": [
"holiday",
"chinese",
"chinese-holidays"
],
"author": "kang8",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kang8/chinese-holidays.git"
},
"bugs": {
"url": "https://github.com/kang8/chinese-holidays/issues"
},
"homepage": "https://github.com/kang8/chinese-holidays#readme",
"devDependencies": {
"typescript": "^5.7.2",
"vite": "^4.5.5",
"vitest": "^0.34.6"
},
"dependencies": {
"@types/node": "^20.17.10"
}
}