mattermost-desktop/electron-builder.json

79 lines
1.3 KiB
JSON
Raw Normal View History

2017-03-02 07:16:29 -08:00
{
"appId": "com.mattermost.desktop",
"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"]
}
],
2017-03-02 07:16:29 -08:00
"deb": {
"synopsis": "Mattermost"
},
"linux": {
"category": "InstantMessaging",
"target": [
"deb",
"tar.gz"
],
"extraFiles": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
},
2017-03-02 07:16:29 -08:00
{
"from": "resources/linux",
"filter": [
"create_desktop_file.sh",
2018-04-05 08:25:43 -07:00
"icon.png",
2017-03-02 07:16:29 -08:00
"README.md"
]
}
]
},
"mac": {
"category": "public.app-category.productivity",
"target": [
2018-04-03 05:39:45 -07:00
"zip"
],
"extraResources": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
}
2017-03-02 07:16:29 -08:00
]
},
"squirrelWindows": {
2017-09-07 13:36:37 -07:00
"iconUrl": "file://resources/icon.ico"
2017-03-02 07:16:29 -08:00
},
"win": {
"target": [
"squirrel",
"zip"
],
"extraFiles": [
{
"filter": [
"LICENSE.txt",
"NOTICE.txt"
]
}
2017-03-02 07:16:29 -08:00
]
}
}