forked from orbitoo/zai2api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 844 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 844 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": "zai2api-cloudflare",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"predev": "npm run build:web",
"dev": "wrangler dev",
"dev:web": "vite",
"build:web": "vue-tsc --noEmit -p web-src/tsconfig.json && vite build",
"deploy": "npm run build:web && wrangler deploy",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && vue-tsc --noEmit -p web-src/tsconfig.json"
},
"dependencies": {
"hono": "^4.8.3",
"pinia": "^2.2.6",
"vue": "^3.5.13"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.22",
"@cloudflare/workers-types": "^4.20250410.0",
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "^5.8.3",
"vite": "^5.4.11",
"vitest": "^3.1.3",
"vue-tsc": "^2.1.10",
"wrangler": "^4.12.0"
}
}