-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "@hyunbinseo/holidays-kr",
"description": "South Korea's national holidays, based on the official gazette",
"version": "3.2025.2",
"type": "module",
"scripts": {
"build": "tsup && publint",
"prepublishOnly": "tsup && publint",
"postversion": "git push && git push --tags",
"format": "prettier --write .",
"bump": "node --run test && node --run write",
"test": "node --no-warnings=ExperimentalWarning --experimental-strip-types --test",
"write": "node --no-warnings=ExperimentalWarning --experimental-strip-types src/write"
},
"devDependencies": {
"@types/node": "^22.9.1",
"prettier": "^3.3.3",
"publint": "^0.2.12",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"valibot": "^0.41.0"
},
"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": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}