-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
47
48
49
{
"name": "apple-music-for-linux",
"author": "Marcus Tomlinson",
"version": "0.7.0",
"description": "Apple Music 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": "apple-music-for-linux",
"productName": "Apple Music",
"linux": {
"target": "snap",
"icon": "apple-music-for-linux.png",
"category": "Audio"
},
"snap": {
"grade": "stable",
"confinement": "strict",
"plugs": [
"audio-playback",
"browser-support",
"desktop",
"desktop-legacy",
"home",
"network",
"opengl",
"x11"
],
"desktop": {
"StartupWMClass": "apple-music-for-linux"
},
"slots": [
{ "mpris": { "name": "chromium" } }
]
}
},
"repository": "https://github.com/cross-platform/apple-music-for-linux",
"license": "GPL-3.0",
"devDependencies": {
"electron": "https://github.com/castlabs/electron-releases#v13.0.1-wvvmp",
"electron-builder": "^22.7.0"
}
}