forked from Sergey-Churilin/Electron-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 803 Bytes
/
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
{
"name": "electron-sample",
"version": "0.1.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "./node_modules/.bin/electron .",
"build": "rm -rf dist/ && electron-builder --x64",
"reinstall": "rm -rf node_modules/ && npm i && npm start"
},
"build": {
"appId": "com.test.electron",
"win": {
"publisherName": [
""
],
"target": [
{
"target": "portable"
}
]
},
"nsis": {
"deleteAppDataOnUninstall": true,
"packElevateHelper": false,
"differentialPackage": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sergey-Churilin/electron-sample.git"
},
"devDependencies": {
"electron": "9.0.2",
"electron-builder": "22.7.0"
}
}