lbry-desktop/electron-builder.json

50 lines
890 B
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",
2018-02-07 19:22:08 +01:00
"productName": "LBRY",
2017-12-08 02:42:35 +01:00
"mac": {
2018-02-07 19:22:08 +01:00
"target": "dmg",
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
},
2017-12-08 02:42:35 +01:00
"background": "build/background.png"
2017-12-06 22:24:01 +01:00
},
"protocols": [
{
"name": "lbry",
"schemes": ["lbry"],
"role": "Viewer"
}
],
"linux": {
2017-12-15 21:33:01 +01:00
"category": "Video",
2017-12-06 22:24:01 +01:00
"desktop": {
2018-02-07 19:38:27 +01:00
"MimeType": "x-scheme-handler/lbry;",
2017-12-06 22:24:01 +01:00
"Exec": "/opt/LBRY/lbry %U"
}
},
"nsis": {
"perMachine": true
},
2018-02-08 23:28:51 +01:00
"beforeBuild": "build/downloadDaemon.js",
2018-02-09 01:58:58 +01:00
"artifactName": "${productName}_${version}.${ext}"
2017-12-06 22:24:01 +01:00
}