Whalebird-desktop-client-ma.../electron-builder.json

106 lines
1.9 KiB
JSON
Raw Normal View History

{
"productName": "Whalebird",
2023-02-25 16:15:29 +01:00
"appId": "social.whalebird.app",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "build"
},
"extraResources": [
"build/sounds/*",
"build/icons/*"
],
"files": [
"dist/electron/**/*",
2023-03-08 07:43:16 +01:00
"build/icons/*",
"!node_modules/**/*.{mk,a,o,h,forge-meta}"
],
"dmg": {
"sign": false,
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "build/icons/icon.icns",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64",
"universal"
]
}
],
"category": "public.app-category.social-networking",
"entitlements": "plist/entitlements.mac.plist",
"entitlementsInherit": "plist/entitlements.mac.plist",
"entitlementsLoginHelper": "plist/loginhelper.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"darkModeSupport": true,
2023-02-27 18:07:07 +01:00
"extendInfo": {
"ITSAppUsesNonExemptEncryption": "false"
2023-03-08 07:43:16 +01:00
},
"notarize": {
"teamId": "HB4N6B2YVM"
},
"singleArchFiles": "*"
},
"win": {
"icon": "build/icons/icon.ico",
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"icon": "build/icons",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "rpm",
"arch": [
"x64"
]
},
{
"target": "tar.bz2",
"arch": [
"x64",
"arm64"
]
},
{
"target": "snap",
"arch": [
"x64"
]
}
],
"category": "Network"
}
}