FreeDATA/gui/electron-builder.json5

72 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-09-02 11:37:03 +00:00
/**
* @see https://www.electron.build/configuration/configuration
*/
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
2023-10-08 17:58:35 +00:00
"appId": "app.freedata",
2023-09-02 11:37:03 +00:00
"asar": true,
2023-10-23 10:01:18 +00:00
"afterSign": "build/notarize_macos.js",
2023-10-04 21:34:36 +00:00
"productName": "FreeDATA",
2023-09-02 11:37:03 +00:00
"directories": {
2023-10-20 19:59:54 +00:00
"output": "release"
2023-09-02 11:37:03 +00:00
},
"files": [
2023-10-04 17:54:50 +00:00
"dist",
"dist-electron",
2023-09-02 11:37:03 +00:00
],
2023-10-20 19:11:09 +00:00
"extraResources": [
{
2023-10-20 19:11:09 +00:00
"from": "../modem/dist/modem/",
"to": "modem",
"filter": [
"**/*",
"!**/.git"
]
}
],
2023-09-02 11:37:03 +00:00
"mac": {
"target": [
2023-10-23 07:46:56 +00:00
{
"target": "default",
2023-10-23 10:34:58 +00:00
"arch": ["arm64", "x64"]
2023-10-23 07:46:56 +00:00
}
2023-10-04 17:54:50 +00:00
],
2023-10-23 10:01:18 +00:00
"notarize": "false",
2023-10-20 19:26:59 +00:00
"icon": "build/icon.png",
"hardenedRuntime": true,
"entitlements": "build/entitlements.plist",
"entitlementsInherit": "build/entitlements.plist",
"gatekeeperAssess": false,
2023-10-23 07:17:44 +00:00
"artifactName": "${productName}-Mac-${version}-Installer.${ext}"
2023-09-02 11:37:03 +00:00
},
"win": {
2023-10-20 19:26:59 +00:00
"icon": "build/icon.png",
2023-09-02 11:37:03 +00:00
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
2023-10-04 17:54:50 +00:00
"artifactName": "${productName}-Windows-${version}-Setup.${ext}"
2023-09-02 11:37:03 +00:00
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
2023-10-22 16:51:07 +00:00
"deleteAppDataOnUninstall": true
2023-10-04 17:54:50 +00:00
},
"linux": {
2023-10-08 17:58:35 +00:00
"category": "Development",
2023-10-04 17:54:50 +00:00
"target": [
"AppImage"
],
2023-10-04 21:34:36 +00:00
"artifactName": "${productName}-${version}.${ext}"
}
2023-10-04 21:34:36 +00:00
}