mattermost-desktop/electron-builder.json

103 lines
1.9 KiB
JSON
Raw Normal View History

2017-03-02 07:16:29 -08:00
{
2017-07-27 06:48:12 -07:00
"publish": [{
"provider": "generic",
2018-11-11 06:26:25 -08:00
"url": "https://releases.mattermost.com/desktop/"
2017-07-27 06:48:12 -07:00
}],
"appId": "Mattermost.Desktop",
2018-02-28 05:17:31 -08:00
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
2017-03-02 07:16:29 -08:00
"directories": {
"buildResources": "resources",
2017-03-06 04:15:50 -08:00
"app": "src",
2017-03-02 07:16:29 -08:00
"output": "release"
},
2017-03-06 04:15:50 -08:00
"files": [
"main_bundle.js",
2017-03-09 05:08:30 -08:00
"browser/**/*{.html,.css,_bundle.js}",
2017-03-06 04:15:50 -08:00
"assets/**/*",
2017-04-20 05:32:34 -07:00
"node_modules/bootstrap/dist/**",
"node_modules/simple-spellchecker/dict/*.dic"
2017-03-06 04:15:50 -08:00
],
"protocols": [
{
"name": "Mattermost",
"schemes": [
"mattermost"
]
}
],
"afterSign": "scripts/notarize.js",
2017-03-02 07:16:29 -08:00
"deb": {
"synopsis": "Mattermost"
},
"linux": {
2018-05-24 08:13:03 -07:00
"category": "Network;InstantMessaging",
2017-03-02 07:16:29 -08:00
"target": [
"deb",
2018-09-22 00:10:41 -07:00
"tar.gz",
"appimage"
2017-03-02 07:16:29 -08:00
],
"extraFiles": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
},
2017-03-02 07:16:29 -08:00
{
"from": "resources/linux",
"filter": [
"create_desktop_file.sh",
"icon.svg",
2017-03-02 07:16:29 -08:00
"README.md"
]
}
]
},
"mac": {
"category": "public.app-category.productivity",
"target": [
2017-09-07 10:45:21 -07:00
"zip",
"dmg"
],
"darkModeSupport": true,
"extraResources": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
}
],
"hardenedRuntime": true,
"gatekeeperAssess": true
2017-03-02 07:16:29 -08:00
},
2017-09-07 10:45:21 -07:00
"dmg": {
"background": "resources/osx/DMG_BG.png",
"iconSize": 140,
"iconTextSize": 18,
"sign": false
2017-09-07 10:45:21 -07:00
},
2017-03-02 07:16:29 -08:00
"squirrelWindows": {
2018-02-28 05:17:31 -08:00
"iconUrl": "file://resources/icon.ico",
"artifactName": "${name}-setup-${version}-${arch}.${ext}"
2017-03-02 07:16:29 -08:00
},
"win": {
"target": [
2017-07-27 06:48:12 -07:00
"nsis",
2017-03-02 07:16:29 -08:00
"zip"
],
"extraFiles": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
}
2017-03-02 07:16:29 -08:00
]
2017-09-06 06:31:49 -07:00
},
"nsis": {
2018-06-15 06:21:17 -07:00
"artifactName": "${name}-setup-${version}-win.${ext}"
2017-03-02 07:16:29 -08:00
}
}