- package.json: appId, linux AppImage target, win NSIS target - res/electron/build.json: config completa para electron-builder v26 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
502 B
JSON
22 lines
502 B
JSON
{
|
|
"appId": "dev.tadix.biolab",
|
|
"productName": "BioLab",
|
|
"directories": {
|
|
"buildResources": "res",
|
|
"app": "platforms/electron/www",
|
|
"output": "platforms/electron/build"
|
|
},
|
|
"linux": {
|
|
"target": "AppImage",
|
|
"icon": "res/icon.png",
|
|
"category": "Science"
|
|
},
|
|
"win": {
|
|
"target": "nsis",
|
|
"icon": "res/icon.ico"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true
|
|
}
|
|
}
|