-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 710 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 710 Bytes
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
{
"name": "simple-calendar",
"version": "1.0.0",
"description": "A static availability calendar that runs locally without a server",
"scripts": {
"test": "vitest",
"generate-calendar": "node src/generate-calendar.js",
"prepare": "husky"
},
"keywords": [
"calendar",
"availability",
"static",
"scheduling"
],
"author": "Malachi Gruenhagen",
"license": "AGPL-3.0-only",
"packageManager": "pnpm@10.28.1",
"lint-staged": {
"*.{js,html,css,md,json}": "prettier --write"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@hebcal/core": "^6.0.8"
}
}