-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "audible-for-linux",
"author": "Marcus Tomlinson",
"version": "0.5.0",
"description": "Audible for Linux",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder --linux snap"
},
"build": {
"electronDownload": {
"mirror": "https://github.com/castlabs/electron-releases/releases/download/v"
},
"appId": "audible-for-linux",
"productName": "Audible",
"linux": {
"target": "snap",
"icon": "audible-for-linux.png",
"category": "Audio"
},
"snap": {
"grade": "stable",
"confinement": "strict",
"plugs": [
"audio-playback",
"browser-support",
"desktop",
"desktop-legacy",
"home",
"network",
"opengl",
"x11"
],
"desktop": {
"StartupWMClass": "audible-for-linux"
}
}
},
"repository": "https://github.com/cross-platform/audible-for-linux",
"license": "GPL-3.0",
"devDependencies": {
"electron": "https://github.com/castlabs/electron-releases#v13.0.1-wvvmp",
"electron-builder": "^22.7.0"
}
}