-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 919 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 919 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
{
"name": "hoshizora",
"type": "module",
"private": true,
"scripts": {
"dev:bun": "bun run --hot src/index.ts",
"dev:vite": "vite",
"build:vite": "vite build && vite build",
"preview:vite": "wrangler pages dev",
"deploy:vite": "npm run build && wrangler pages deploy",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"build": "tsc && vite build",
"check": "tsc && vite build && wrangler deploy --dry-run",
"deploy": "wrangler deploy",
"dev": "vite",
"preview": "npm run build && vite preview"
},
"dependencies": {
"axios": "^1.12.2",
"hono": "^4.9.10"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.13.12",
"@hono/vite-build": "^1.2.0",
"@hono/vite-dev-server": "^0.18.2",
"@types/bun": "latest",
"@types/node": "^24.7.1",
"typescript": "^5.9.3",
"vite": "^6.3.5",
"wrangler": "^4.4.0"
}
}