-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "international-days-cs",
"version": "1.1.5",
"author": "Roman Ožana <roman@ozana.cz> (https://ozana.cz)",
"repository": "OzzyCzech/international-days-cs",
"license": "MIT",
"description": "International and national days in Czech language",
"keywords": ["czechia", "czech republic", "czech language", "international days", "mezinárodní dny", "národní dny"],
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"release": "np",
"build": "yarn convert && yarn clean && tsc",
"convert": "js-yaml data/international-days.yaml > lib/international-days.json",
"test": "tsc --noEmit && vitest",
"format": "biome format --write",
"lint": "biome lint",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.7",
"js-yaml": "^4.1.0",
"luxon": "^3.5.0",
"np": "^10.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
}
}