-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.25 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
57
58
59
{
"name": "namedays-cs",
"version": "0.1.12",
"author": "Roman Ožana <roman@ozana.cz> (https://ozana.cz)",
"repository": "OzzyCzech/namedays-cs",
"license": "MIT",
"description": "Simple library to get Czech name days (jmeniny, svátek) for a given date.",
"keywords": [
"czechia",
"czech republic",
"czech language",
"name day",
"namedays",
"jmeniny",
"české svátky",
"svátek"
],
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"release": "np",
"prepare": "npm run build",
"test": "xo && tsc --noEmit && NODE_OPTIONS='--import=tsx/esm' ava",
"ava": "NODE_OPTIONS='--import=tsx/esm' ava"
},
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^22.7.9",
"ava": "^6.1.3",
"np": "^10.0.7",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"xo": "^0.59.3"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"test/*"
],
"workerThreads": false,
"nodeArguments": [
"--experimental-json-modules",
"--no-warnings"
]
}
}