insomnia/packages/insomnia-app/config/electronbuilder.designer.json

83 lines
1.6 KiB
JSON
Raw Normal View History

{
2019-09-18 00:02:42 +00:00
"appId": "__APP_ID__",
2019-10-17 18:51:55 +00:00
"publish": null,
2019-10-08 23:31:32 +00:00
"afterSign": "./scripts/afterSignHook.js",
"extraResources": [
{
"from": "./bin",
"to": "./bin",
"filter": "yarn-standalone.js"
},
{
"from": "./build/__APP_ID__",
"to": ".",
"filter": "opensource-licenses.txt"
}
],
"protocols": [
2020-04-26 20:33:39 +00:00
{
"name": "Insomnia Designer",
"role": "Viewer",
"schemes": [
"insomniad"
]
}
],
"fileAssociations": [],
"directories": {
2020-09-14 20:55:18 +00:00
"buildResources": "build/__APP_ID__",
"app": "build/__APP_ID__",
"output": "dist/__APP_ID__"
},
"mac": {
2019-10-08 23:31:32 +00:00
"hardenedRuntime": true,
"category": "public.app-category.developer-tools",
"entitlements": "./build/__APP_ID__/static/entitlements.mac.inherit.plist",
2020-04-26 20:33:39 +00:00
"artifactName": "__BINARY_PREFIX__-${version}.${ext}",
"target": [
"dmg",
"zip"
],
"extendInfo": {
"NSRequiresAquaSystemAppearance": false
}
},
2020-04-26 20:33:39 +00:00
"dmg": {
"window": {
"width": 540,
"height": 380
},
"contents": [
{
"x": 130,
"y": 186
},
{
"x": 409,
"y": 186,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
2020-04-26 20:33:39 +00:00
"artifactName": "__BINARY_PREFIX__-${version}.${ext}",
"target": [
"squirrel",
"zip"
]
},
2019-10-08 23:31:32 +00:00
"squirrelWindows": {
2019-09-18 00:02:42 +00:00
"iconUrl": "__ICON_URL__"
},
"linux": {
2020-04-26 20:33:39 +00:00
"artifactName": "__BINARY_PREFIX__-${version}.${ext}",
2019-09-18 00:02:42 +00:00
"executableName": "__EXECUTABLE_NAME__",
"synopsis": "__SYNOPSIS__",
"category": "Development",
"target": [
2020-04-26 20:33:39 +00:00
"AppImage"
]
}
}