insomnia/packages/insomnia-app/.electronbuilder
Martin Wimpress 09eae6a74a Add snap package. https://snapcraft.io (#688)
* Add snap package. https://snapcraft.io

* Bump electron-builder to ^19.53.0 to get the improved default Linux snap defaults.

* Refactor stagePackages now that electron-builder provides better defaults.
2018-01-09 14:05:06 -08:00

64 lines
1.0 KiB
Plaintext

{
"appId": "com.insomnia.app",
"publish": false,
"extraResources": [
{
"from": "./bin",
"to": "./bin",
"filter": "yarn-standalone.js"
}
],
"protocols": [
{
"name": "Insomnia",
"role": "Viewer",
"schemes": [
"insomnia"
]
}
],
"fileAssociations": [],
"directories": {
"app": "build",
"output": "dist"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"squirrel",
"zip"
]
},
"linux": {
"executableName": "insomnia",
"synopsis": "A simple, beautiful, and free REST API client",
"category": "Development",
"target": [
"AppImage",
"deb",
"tar.gz",
"snap"
]
},
"snap": {
"stagePackages": ["default", "libcurl3"]
},
"deb": {
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3",
"libcurl3"
]
}
}