FreeDATA/gui/electron-builder.json5

68 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-09-02 06:37:03 -05: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 12:58:35 -05:00
"appId": "app.freedata",
2023-09-02 06:37:03 -05:00
"asar": true,
2023-10-23 05:01:18 -05:00
"afterSign": "build/notarize_macos.js",
2023-10-04 16:34:36 -05:00
"productName": "FreeDATA",
2023-09-02 06:37:03 -05:00
"directories": {
2023-10-20 14:59:54 -05:00
"output": "release"
2023-09-02 06:37:03 -05:00
},
2023-10-29 10:51:55 -05:00
"asarUnpack": [
"**/*.wav"
],
2023-09-02 06:37:03 -05:00
"files": [
2023-10-04 12:54:50 -05:00
"dist",
"dist-electron",
2023-10-29 09:05:53 -05:00
],
2023-09-02 06:37:03 -05:00
"mac": {
"target": [
2023-10-23 02:46:56 -05:00
{
"target": "default",
2023-10-29 12:33:13 -05:00
//"arch": ["universal"],
"arch": ["arm64", "x64"],
2023-10-23 02:46:56 -05:00
}
2023-10-04 12:54:50 -05:00
],
2023-10-24 12:41:17 -05:00
"notarize": "false",
2023-10-20 14:26:59 -05:00
"icon": "build/icon.png",
"hardenedRuntime": true,
"entitlements": "build/entitlements.plist",
"entitlementsInherit": "build/entitlements.plist",
"gatekeeperAssess": false,
2023-10-29 12:33:13 -05:00
"mergeASARs": true,
"x64ArchFiles": "**/*",
2024-02-10 00:06:16 -06:00
"artifactName": "${productName}-GUI-Mac-${version}.${ext}"
2023-09-02 06:37:03 -05:00
},
"win": {
2023-10-20 14:26:59 -05:00
"icon": "build/icon.png",
2023-09-02 06:37:03 -05:00
"target": [
{
"target": "nsis",
2023-10-23 06:00:24 -05:00
"arch": ["arm64", "x64"]
2023-09-02 06:37:03 -05:00
}
],
2024-02-10 00:06:16 -06:00
"artifactName": "${productName}-GUI-Windows-${version}.${ext}"
2023-09-02 06:37:03 -05:00
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
2023-10-22 11:51:07 -05:00
"deleteAppDataOnUninstall": true
2023-10-04 12:54:50 -05:00
},
"linux": {
2023-10-08 12:58:35 -05:00
"category": "Development",
2023-10-04 12:54:50 -05:00
"target": [
"AppImage"
],
2024-02-10 00:06:16 -06:00
"artifactName": "${productName}-GUI-Linux-${version}.${ext}"
}
2023-10-04 16:34:36 -05:00
}