FreeDATA/gui/electron-builder.json5

62 lines
1.3 KiB
Plaintext
Raw Normal View History

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