This repository has been archived by the owner on Oct 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
87 lines (87 loc) · 2.22 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "spotifywebplayer",
"productName": "Spotify Web Player for Linux",
"version": "1.0.42",
"description": "An Electron wrapper of Spotify Web Player to increase desktop integration for a stable Spotify Player for Linux replacement",
"main": "main.js",
"postinstall": "install-app-deps",
"scripts": {
"start": "electron main.js",
"pack": "build --dir",
"dist": "build"
},
"build": {
"asarUnpack": [
"windows/spotify/D-Bus",
"node_modules/mpris-service",
"node_modules/freedesktop-notifications",
"node_modules/dbus"
],
"files": [
"**/*",
"!spotifywebplayer",
"!*.md",
"!*.sh"
],
"extraResources": [
"plugins/libpepflashplayer-${arch}.so"
],
"linux": {
"synopsis": "An Electron wrapper of Spotify Web Player to increase desktop integration for a stable Spotify Player for Linux replacement",
"category": "Audio",
"packageCategory": "GNOME;GTK;AudioVideo;Audio;Player",
"depends": [
"libappindicator1",
"libindicator7",
"libnotify4",
"notify-osd",
"wget",
"unzip",
"tar"
],
"target": [
"AppImage",
"deb",
"zip",
"snap"
]
}
},
"snap": {
"confinement": "devmode",
"grade": "stable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/electron-quick-start.git"
},
"keywords": [
"play",
"music"
],
"author": {
"name": "Matthew James",
"email": "[email protected]",
"url": "https://github.com/Quacky2200"
},
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Quacky2200/spotify-web-player-for-linux"
},
"homepage": "https://github.com/Quacky2200/spotify-web-player-for-linux",
"dependencies": {
"auto-launch": "^4.0.0",
"dbus": "^0.2.19",
"electron-cookies": "^1.1.0",
"freedesktop-notifications": "^1.2.2",
"mpris-service": "^1.1.1",
"node-unofficialmxm": "git+https://github.com/Quacky2200/node-unofficialmxm.git",
"request": "^2.74.0",
"sanitize-filename": "^1.6.1"
},
"devDependencies": {
"electron": "1.4.2",
"electron-builder": "next",
"electron-rebuild": "^1.5.6"
}
}