-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 KB
/
package.json
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
45
46
47
48
49
{
"name": "everett-mwi",
"version": "0.0.0",
"main": "electron/electron.js",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"electron": "wait-on tcp:3000 && cross-env IS_DEV=true electron .",
"electron:pack": "electron-builder --dir",
"electron:dev": "concurrently -k \"cross-env BROWSER=none yarn dev\" \"yarn electron\"",
"electron:builder": "electron-builder",
"build:electron": "vue-tsc --noEmit && cross-env ELECTRON=true vite build",
"app:build": "yarn build:electron && yarn electron:builder"
},
"build": {
"appId": "com.lunatlazur.everett-mwi-playground",
"productName": "MyApp",
"copyright": "Copyright © 2021 Lunatlazur",
"mac": {
"category": "public.app-category.utilities"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "assets",
"output": "dist_electron"
}
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.9.3",
"concurrently": "^6.4.0",
"cross-env": "^7.0.3",
"electron": "^16.0.1",
"electron-builder": "^22.14.5",
"peggy": "^1.2.0",
"typescript": "^4.5.2",
"vite": "^2.6.4",
"vue": "^3.2.16",
"vue-tsc": "^0.3.0",
"wait-on": "^6.0.0"
}
}