32 lines
720 B
JSON
32 lines
720 B
JSON
|
|
{
|
||
|
|
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
|
||
|
|
"appId": "com.ipmonitor.app",
|
||
|
|
"productName": "IP Monitor",
|
||
|
|
"directories": {
|
||
|
|
"output": "release",
|
||
|
|
"buildResources": "assets"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"dist/**/*",
|
||
|
|
"index.html"
|
||
|
|
],
|
||
|
|
"extraMetadata": {
|
||
|
|
"main": "dist/main/main/index.js"
|
||
|
|
},
|
||
|
|
"asar": true,
|
||
|
|
"win": {
|
||
|
|
"target": [
|
||
|
|
{
|
||
|
|
"target": "portable",
|
||
|
|
"arch": ["x64"]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"artifactName": "${productName}-Portable-${version}.${ext}",
|
||
|
|
"signAndEditExecutable": false
|
||
|
|
},
|
||
|
|
"portable": {
|
||
|
|
"artifactName": "${productName}-Portable-${version}.${ext}"
|
||
|
|
},
|
||
|
|
"publish": null
|
||
|
|
}
|