forked from cawa-93/vite-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "vite-electron-builder",
"private": true,
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config electron-builder.config.js --dir --config.asar=false",
"pretest": "npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue"
},
"browserslist": [
"Chrome 96"
],
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
},
"devDependencies": {
"@vitejs/plugin-vue": "1.10.0",
"cross-env": "7.0.3",
"electron": "16.0.1",
"electron-builder": "22.14.5",
"electron-devtools-installer": "3.2.0",
"eslint": "8.3.0",
"eslint-plugin-vue": "8.1.1",
"playwright": "1.16.3",
"vite": "2.6.14"
},
"dependencies": {
"electron-updater": "4.6.2",
"vue": "3.2.22",
"vue-router": "4.0.12"
}
}