36 lines
718 B
JSON
36 lines
718 B
JSON
{
|
|
"name": "autoupdateproof",
|
|
"productName": "Auto updater proof",
|
|
"version": "1.0.5",
|
|
"description": "Auto updater proof of concept",
|
|
"main": "src/js/main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"dist": "electron-builder --publish always"
|
|
},
|
|
"build": {
|
|
"appId": "com.tracypearson.autoupdateproof",
|
|
"win": {
|
|
"target": "nsis",
|
|
"publish": {
|
|
"provider": "custom"
|
|
}
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": true,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"installerIcon": null
|
|
}
|
|
},
|
|
"author": "Tracy Pearson",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"electron-updater": "^5.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^23.0.0",
|
|
"electron-builder": "^23.6.0"
|
|
}
|
|
}
|