lbry-desktop/electron-builder.json

103 lines
1.9 KiB
JSON
Raw Normal View History

2017-12-06 22:24:01 +01:00
{
2017-12-07 16:06:20 +01:00
"appId": "io.lbry.LBRY",
"productName": "LBRY",
2019-03-05 05:46:57 +01:00
"directories": {
"output": "dist/electron"
},
2019-03-05 08:47:55 +01:00
"files": [
{
2019-03-15 19:58:42 +01:00
"from": "dist/electron/webpack",
2019-12-19 19:42:36 +01:00
"to": "./"
2019-03-05 08:47:55 +01:00
},
{
2019-03-15 19:58:42 +01:00
"from": "dist/electron/static",
2019-12-19 19:42:36 +01:00
"to": "./"
}
],
"extraResources": [
{
"from": "./static/daemon/",
"to": "static/daemon/",
"filter": ["**/*"]
},
{
"from": "./static/lbry-first/",
"to": "static/lbry-first/",
"filter": ["**/*"]
},
{
"from": "./static/img",
"to": "static/img",
"filter": ["**/*"]
},
{
"from": "./static/font",
"to": "static/font",
"filter": ["**/*"]
2019-03-05 08:47:55 +01:00
}
],
"publish": [
{
"provider": "github"
}
],
2017-12-08 02:42:35 +01:00
"mac": {
2017-12-15 21:33:01 +01:00
"category": "public.app-category.entertainment"
2017-12-08 02:42:35 +01:00
},
2017-12-06 22:24:01 +01:00
"dmg": {
"iconSize": 128,
"contents": [
{
"x": 115,
"y": 164
},
{
"x": 387,
"y": 164,
"type": "link",
"path": "/Applications"
}
],
"window": {
"x": 200,
"y": 200,
"width": 500,
"height": 300
},
"background": "./build/background.png"
2017-12-06 22:24:01 +01:00
},
"protocols": [
{
"name": "LBRY URI",
2017-12-06 22:24:01 +01:00
"schemes": ["lbry"],
"role": "Viewer"
}
],
"linux": {
"target": ["AppImage", "deb"],
2019-12-17 19:23:32 +01:00
"executableName": "lbry",
"category": "AudioVideo;Video",
2017-12-06 22:24:01 +01:00
"desktop": {
2019-03-05 10:29:13 +01:00
"MimeType": "x-scheme-handler/lbry"
2017-12-06 22:24:01 +01:00
}
},
"deb": {
2020-03-24 15:20:21 +01:00
"depends": ["gconf2", "gconf-service", "libnotify4", "libappindicator1", "libxtst6", "libnss3"]
},
"nsis": {
"perMachine": true,
"createDesktopShortcut": "always",
"differentialPackage": true
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
}
]
},
2019-10-11 05:26:05 +02:00
"artifactName": "${productName}_${version}.${ext}",
2020-02-03 17:19:57 +01:00
"afterSign": "./build/afterSignHook.js"
2017-12-06 22:24:01 +01:00
}