forked from nlarche/qobuz-desktop-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "qobuz-desktop-player",
"productName": "Qobuz Desktop player",
"version": "0.1.0",
"description": "Qobuz desktop player",
"main": "index.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"pack": "build --dir",
"release": "build"
},
"repository": "https://github.com/nlarche/qobuz-desktop-player",
"keywords": [
"Electron",
"Qobuz"
],
"author": {
"name": "nlarche",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"electron-config": "^2.0.0",
"electron-settings": "^3.2.0"
},
"devDependencies": {
"electron": "^7.1.2",
"electron-builder": "^21.2.0",
"electron-packager": "^14.1.1"
},
"build": {
"appId": "nlarche.qobuz.desktop.player",
"mac": {
"category": "public.app-category.music"
},
"win": {
"iconUrl": "http://eatodo.s3.amazonaws.com/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
]
}
}
}