-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.07 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
{
"name": "easter-date",
"version": "0.0.20",
"author": "Roman Ožana <roman@ozana.cz> (https://ozana.cz)",
"repository": "OzzyCzech/easter-date",
"license": "MIT",
"description": "Calculate the date of Easter for a given year",
"keywords": [
"easter",
"date",
"calendar",
"holly week"
],
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"release": "npx np",
"prepare": "npm run build",
"test": "tsc --noEmit && NODE_OPTIONS='--import=tsx/esm' ava",
"ava": "NODE_OPTIONS='--import=tsx/esm' ava",
"format": "biome format --write",
"lint": "biome lint"
},
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.1",
"ava": "^6.2.0",
"np": "^10.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"test/*",
"!test/date-fns.ts"
],
"workerThreads": false
}
}