-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.45 KB
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
{
"name": "@kang8/chinese-holidays",
"version": "1.0.1",
"description": "A lightweight library to determine Chinese public holidays and workdays",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"build:data": "tsx scripts/build-data.ts",
"build": "pnpm build:data && tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "pnpm format && pnpm build && pnpm test --run",
"release": "pnpm prepublishOnly && pnpm publish --access public"
},
"keywords": [
"holiday",
"chinese",
"chinese-holidays",
"workday",
"public-holiday",
"节假日",
"公休日",
"调休",
"工作日",
"china",
"calendar"
],
"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",
"sideEffects": false,
"devDependencies": {
"prettier": "3.9.4",
"@types/node": "24.13.3",
"tsx": "4.23.0",
"typescript": "6.0.3",
"vite": "8.1.4",
"vitest": "4.1.10"
}
}