-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.11 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
38
39
{
"name": "prompt-workbench",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"cross-env BROWSER=none npm run dev\" \"wait-on http://localhost:5173 && cross-env ELECTRON_START_URL=http://localhost:5173 electron electron/main.cjs\"",
"electron:build": "npm run build && electron-builder"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"dexie": "^4.4.3",
"element-plus": "^2.14.1",
"marked": "^18.0.5",
"monaco-editor": "^0.55.1",
"pinia": "^3.0.4",
"vue": "^3.5.34",
"vue-i18n": "^9.14.4",
"vue-router": "^4.6.4",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@types/node": "^24.12.3",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/tsconfig": "^0.9.1",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"electron": "^28.0.0",
"electron-builder": "^26.15.2",
"typescript": "~6.0.2",
"vite": "^5.4.21",
"vue-tsc": "^3.2.8",
"wait-on": "^9.0.10"
}
}