forked from vincelwt/harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "harmony",
"productName": "Harmony",
"version": "0.2.4",
"description": "Listen to music from Spotify, SoundCloud, Google Play Music or your local disk,",
"main": "main.js",
"author": "Vincent L <vincelwt@users.noreply.github.com>",
"license": "GPL-3.0",
"homepage": "https://github.com/vincelwt/harmony",
"scripts": {
"start": "electron main.js",
"buildOSX": "electron-packager ./ Harmony --platform darwin --arch x64",
"build": "build --linux deb rpm tar.xz --win nsis zip"
},
"keywords": [
"music",
"player",
"soundcloud",
"google play",
"spotify"
],
"devDependencies": {
"electron-prebuilt": "1.2.8"
},
"dependencies": {
"configstore": "^1.4.0",
"electron-window-state": "^3.0.2",
"graceful-fs": "^4.1.6",
"md5": "^2.0.0",
"musicmetadata": "^2.0.2",
"node-notifier": "^4.4.0",
"playmusic": "github:vincelwt/playmusic",
"recursive-readdir": "^1.3.0",
"request": "^2.69.0",
"youtube-node": "^1.3.0",
"ytdl-core": "^0.7.13"
},
"optionalDependencies": {
"mpris-service": "^1.1.1",
"mediakeys": "github:nogizhopaboroda/mediakeys"
},
"repository": {
"type": "git",
"url": "https://github.com/vincelwt/harmony.git"
},
"build": {
"asar": false,
"appId": "com.vincelwt.harmony",
"compression": "maximum",
"iconUrl": "https://raw.githubusercontent.com/vincelwt/harmony/master/build/icon.ico",
"mac": {
"category": "public.app-category.music"
},
"linux": {
"category": "Music;Audio;AudioVideo",
"packageCategory": "sound"
}
}
}