-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "@hyunbinseo/holidays-kr",
"description": "South Korea's national holidays, based on the official gazette",
"version": "3.2025.3",
"type": "module",
"scripts": {
"prepack": "tsup && publint",
"postversion": "git push && git push --tags",
"format": "prettier --write .",
"write": "node src/write.ts"
},
"devDependencies": {
"@types/node": "^22.10.6",
"prettier": "^3.4.2",
"publint": "^0.3.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"valibot": "1.0.0-beta.11"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"keywords": [
"대한민국",
"한국",
"공휴일",
"Korean",
"holidays"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hyunbinseo/holidays-kr.git"
},
"author": "Hyunbin Seo",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyunbinseo/holidays-kr/issues"
},
"homepage": "https://github.com/hyunbinseo/holidays-kr#readme",
"packageManager": "pnpm@10.0.0+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b"
}