-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.69 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
56
57
58
{
"name": "wevm.dev",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"sideEffects": false,
"scripts": {
"dev": "vp dev",
"build": "vp build && pnpm check:types",
"preview": "vp preview",
"deploy": "pnpm build && wrangler deploy && WRANGLER_REMOTE=true pnpm gen:data",
"gen": "pnpm gen:data && pnpm gen:logos",
"gen:data": "node --import tsx scripts/gen:data.ts",
"gen:logos": "node --import tsx scripts/gen:logos.ts",
"gen:types": "wrangler types",
"postinstall": "([ -f .env ] || cp .env.example .env) && pnpm gen:types",
"check": "vp check --fix",
"check:types": "tsc -b"
},
"dependencies": {
"@octokit/graphql": "^9.0.3",
"@takumi-rs/wasm": "^1.1.2",
"@tanstack/react-router": "^1.169.1",
"@tanstack/react-router-devtools": "^1.166.13",
"@tanstack/react-start": "^1.167.59",
"hono": "^4.12.16",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"takumi-js": "^1.1.2"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.29.0",
"@iconify/json": "^2.2.469",
"@resvg/resvg-js": "^2.6.2",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^22.5.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^6.0.1",
"@voidzero-dev/vite-plus-core": "^0.1.20",
"svgo": "^4.0.1",
"svgson": "^5.3.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^5.6.0",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.0",
"vite-plus": "^0.1.20",
"wrangler": "^4.74.0"
},
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest"
}
}
}