-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "gins-scripts",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"scripts": {
"build:catalog": "node ./tools/build-distribution.mjs",
"build": "pnpm run build:catalog && astro build",
"r2:sync": "node ./tools/sync-r2.mjs",
"sync:docs": "node ./tools/sync-docs.mjs",
"sync:modules": "node --import tsx ./tools/sync-modules.mjs",
"fetch:icons": "node ./tools/fetch-icons.mjs",
"converter": "node --import tsx ./tools/converter/index.ts",
"biome:check": "biome check .",
"biome:format": "biome format --write .",
"biome:lint": "biome lint .",
"cf:deploy": "pnpm run build && pnpm run r2:sync && wrangler deploy",
"cf:dev": "pnpm run build && wrangler dev"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@unocss/astro": "^66.6.8",
"astro": "latest",
"tsx": "^4.21.0",
"typescript": "latest",
"unocss": "^66.6.8",
"wrangler": "latest"
},
"dependencies": {
"@hono/hono": "jsr:^4.12.14",
"fflate": "^0.8.2"
}
}