forked from aozorae/Edgechat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "edgechat",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "node --test",
"dev:frontend": "vite --config frontend/vite.config.js",
"dev:demo": "vite --config frontend/vite.demo.config.js",
"build:frontend": "vite build --config frontend/vite.config.js",
"build:demo": "vite build --config frontend/vite.demo.config.js",
"build": "npm run build:frontend",
"biome:write": "biome check --write .",
"biome:check": "biome check .",
"biome:ci": "biome ci .",
"check": "npm run biome:ci && npm run build",
"deploy": "npm run build && wrangler deploy",
"deploy:demo": "npm run build:demo && wrangler deploy --config wrangler.demo.toml",
"d1:apply": "wrangler d1 execute cfchat-db --file ./worker/schema.sql"
},
"dependencies": {
"@lucide/vue": "^1.28.0",
"hono": "^4.8.3",
"vue": "^3.5.13",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@vitejs/plugin-vue": "^6.0.8",
"sql.js": "1.14.2",
"vite": "^8.2.1",
"wrangler": "^4.11.1"
},
"overrides": {
"undici": "7.29.0"
}
}