forked from vincelwt/harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
60
{
"name": "harmony",
"productName": "Harmony",
"version": "0.4.0",
"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": "build --mac dmg zip",
"buildLinux": "build --linux AppImage deb rpm tar.xz --x64 --ia32",
"buildWin": "build --win nsis zip --x64 --ia32"
},
"keywords": [
"music",
"player",
"soundcloud",
"google play",
"spotify"
],
"devDependencies": {
"electron-prebuilt": "1.4.0"
},
"dependencies": {
"configstore": "^1.4.0",
"electron-window-state": "^3.0.2",
"glob": "^7.0.6",
"graceful-fs": "^4.1.6",
"md5": "^2.0.0",
"musicmetadata": "^2.0.2",
"playmusic": "^2.2.0",
"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"
}
}
}