38 lines
572 B
JSON
38 lines
572 B
JSON
{
|
|
"asar": true,
|
|
"appId": "de.luh.app",
|
|
"directories": {
|
|
"output": "out"
|
|
},
|
|
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"shortcutName": "Electron App"
|
|
},
|
|
"mac": {
|
|
"target": "dmg"
|
|
},
|
|
"win": {
|
|
"target": "nsis"
|
|
},
|
|
"linux": {
|
|
"target": ["deb"],
|
|
"maintainer": "Tobias Zoghaib"
|
|
},
|
|
"files": [
|
|
{
|
|
"from": "build",
|
|
"to": "build",
|
|
"filter": ["**/*"]
|
|
},
|
|
"!backend",
|
|
"!electron",
|
|
"!release",
|
|
"!src",
|
|
"!dist",
|
|
"!out"
|
|
]
|
|
}
|