-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 990 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 990 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
36
37
38
39
40
41
42
43
44
{
"name": "vue-project",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"main": "main.cjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron": "electron .",
"dev:desktop": "npm run dev & npm run electron",
"build:desktop": "npm run build && electron-builder --win nsis portable"
},
"build": {
"appId": "com.example.vueelectron",
"productName": "VueElectronApp",
"files": [
"dist/**",
"main.cjs",
"preload.cjs",
"package.json"
],
"directories": {
"output": "release"
}
},
"dependencies": {
"vue": "^3.5.18"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"concurrently": "^9.2.1",
"cross-env": "^10.0.0",
"electron": "^38.1.2",
"electron-builder": "^26.0.12",
"vite": "^7.0.6",
"vite-plugin-vue-devtools": "^8.0.0",
"wait-on": "^9.0.1"
}
}