-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 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
{
"name": "holidays-cs",
"version": "2.1.3",
"author": "Roman Ožana <[email protected]> (https://ozana.cz)",
"repository": "OzzyCzech/holidays-cs",
"license": "MIT",
"description": "Public holidays, Easter, name days and important days in the Czech Republic.",
"keywords": [
"czechia",
"czech republic",
"public holidays",
"holidays",
"name day",
"easter"
],
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"prepare": "npm run build",
"test": "tsc --noEmit && vitest",
"format": "biome format --write",
"lint": "biome lint",
"release": "np"
},
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"dependencies": {
"easter-date": "0.0.21",
"luxon": "^3.5.0",
"vitest": "^3.0.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.7",
"np": "^10.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}