-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.18 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.18 KB
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
{
"name": "namedays-cs",
"version": "1.1.1",
"author": "Roman Ožana <roman@ozana.cz> (https://ozana.cz)",
"repository": {
"type": "git",
"url": "git+https://github.com/OzzyCzech/namedays-cs.git"
},
"publishConfig": {
"access": "public"
},
"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 tsconfig.tsbuildinfo && tsc",
"release": "npm publish --provenance",
"prepare": "npm run build",
"test": "tsc --noEmit && vitest",
"format": "biome check --write .",
"format:check": "biome check .",
"docs": "typedoc"
},
"engines": {
"node": ">=22"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@ozzyczech/tsconfig": "^1.0.0",
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}