Files
eventmaster/electron-builder.json
2024-11-20 19:20:22 +01:00

41 lines
682 B
JSON

{
"asar": true,
"appId": "de.luh.eventmaster",
"directories": {
"output": "out"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "EventMaster"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis",
"icon": "public/logo-small.png"
},
"linux": {
"target": ["deb"],
"maintainer": "Tobias Zoghaib",
"icon": "public/logo-small.png",
"category": "Education"
},
"files": [
{
"from": "build",
"to": "build",
"filter": ["**/*"]
},
"!backend",
"!electron",
"!release",
"!src",
"!dist",
"!out"
]
}