This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
80 lines (80 loc) · 2.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
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
{
"name": "apple-music-electron",
"version": "1.3.0",
"main": "index.js",
"description": "Electron wrapper for Apple Music",
"author": {
"name": "17hoehbr",
"email": "[email protected]",
"url": "https://github.com/17hoehbr/apple-music-electron"
},
"homepage": "https://github.com/17hoehbr/apple-music-electron",
"keywords": [
"Apple",
"Apple Music"
],
"repository": {
"type": "git",
"url": "git+ssh://github.com:17hoehbr/apple-music-electron"
},
"license": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron --disable-gpu .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish-linux": "electron-builder -p always",
"publish-win": "electron-builder -p always --win",
"pack-win": "electron-builder --dir --win",
"dist-win": "electron-builder --win"
},
"dependencies": {
"electron-log": "^1.3.0",
"electron-prompt": "1.6.0",
"electron-store": "^6.0.1",
"electron-updater": "4.3.5",
"electron-window-state": "5.0.3",
"express": "^4.17.1",
"express-asset-file-cache-middleware": "^1.3.0",
"v8-compile-cache": "^2.2.0"
},
"devDependencies": {
"electron": "https://github.com/castlabs/electron-releases#v8.5.3-wvvmp",
"electron-builder": "22.11.4",
"electron-webpack": "^2.8.2",
"webpack": "~4.42.1"
},
"build": {
"electronDownload": {
"mirror": "https://github.com/castlabs/electron-releases/releases/download/v"
},
"appId": "apple-music-electron",
"extends": null,
"linux": {
"category": "AudioVideo;Audio",
"desktop": {
"Name": "Apple Music",
"Comment": "Unofficial Apple Music client for Linux",
"StartupWMClass": "apple-music"
},
"target": [
"AppImage",
"tar.gz",
"deb",
"rpm"
]
},
"win": {
"target": [
"nsis"
],
"publish": [
{
"provider": "github",
"owner": "17hoehbr",
"repo": "apple-music-electron"
}
]
}
}
}