-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 928 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
38
39
{
"name": "electron-updater-example",
"version": "0.1.6",
"main": "src\\main.js",
"description": "electron-updater example project",
"author": {
"name": "Tuukka Moilanen",
"email": "[email protected]",
"url": "https://example.com/"
},
"scripts": {
"start": "electron .",
"dist": "electron-builder -w"
},
"dependencies": {
"electron-is-packaged": "^1.0.2",
"electron-log": "^4.3.0",
"electron-updater": "^4.6.5"
},
"devDependencies": {
"electron": "^17.1.0",
"electron-builder": "^22.14.13"
},
"build": {
"publish": [
{
"provider": "generic",
"url": "http://localhost/electron-auto-update/"
}
],
"win": {
"target": "nsis",
"verifyUpdateCodeSignature": false,
"publisherName": "Some Company - Stored in cert file",
"certificateFile": "./certs/test.pfx",
"certificatePassword": "pass"
}
}
}