-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "muti-agent-console",
"version": "0.1.0",
"private": true,
"description": "桌面 AI 会话控制台前端",
"main": "electron/main/index.cjs",
"scripts": {
"dev:web": "vite",
"dev:electron": "wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .",
"dev": "concurrently -k \"npm:dev:web\" \"npm:dev:electron\"",
"build": "vite build",
"preview": "vite preview",
"dist:win": "powershell -ExecutionPolicy Bypass -File ..\\scripts\\package-desktop-win.ps1",
"dist:win:frontend": "npm run build && .\\node_modules\\.bin\\electron-builder.cmd --config electron-builder.config.cjs --win dir --x64"
},
"dependencies": {
"@xterm/addon-fit": "0.11.0",
"axios": "1.15.0",
"element-plus": "2.13.6",
"pinia": "3.0.4",
"vue": "3.5.32",
"vue-router": "5.0.4",
"xterm": "5.3.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "6.0.5",
"concurrently": "9.2.1",
"cross-env": "10.1.0",
"electron": "41.2.0",
"electron-builder": "26.8.1",
"typescript": "5.9.3",
"vite": "8.0.8",
"wait-on": "9.0.4"
}
}