-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1013 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1013 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
32
33
34
35
36
37
38
39
40
{
"name": "fetchbook.org",
"version": "1.0.0",
"private": true,
"scripts": {
"predev": "node scripts/build-logos.mjs",
"dev": "astro dev",
"prebuild": "node scripts/build-logos.mjs",
"deploy": "astro build && wrangler deploy dist/_worker.js/index.js",
"build": "astro check && astro build",
"check": "astro check",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest run",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,json}": [
"biome check --write --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.3",
"ansi-to-svg": "^1.4.3",
"astro": "^6.0.8",
"hono": "^4.1.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@biomejs/biome": "^2.4.8",
"@cloudflare/workers-types": "^4.20240320.1",
"@types/node": "^25.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.1",
"wrangler": "^4.76.0"
}
}