-
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) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 930 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
33
34
35
{
"name": "icarus_electron",
"private": true,
"version": "0.0.0",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron": "wait-on tcp:5173 && electron . --mode=development",
"electron:serve": "concurrently -k \"npm run dev\" \"npm run electron\""
},
"dependencies": {
"ant-design-vue": "^3.2.15",
"axios": "^1.2.1",
"dayjs": "^1.11.7",
"pinia": "^2.0.27",
"vue": "^3.2.41",
"vue-router": "^4.1.6",
"xterm": "^5.0.0",
"xterm-addon-fit": "^0.6.0",
"xterm-addon-web-links": "^0.7.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.2.0",
"concurrently": "^7.6.0",
"electron": "^22.0.0",
"electron-builder": "^22.10.3",
"electron-devtools-installer": "^3.2.0",
"rimraf": "^3.0.2",
"vite": "^3.2.3",
"vite-plugin-electron": "^0.10.4",
"wait-on": "^6.0.1"
}
}