forked from ciderapp/Apple-Music-Electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.36 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
88
89
90
91
{
"name": "apple-music-electron",
"applicationId": "AppleMusicElectron",
"appName": "Apple Music",
"productName": "Apple Music",
"version": "3.1.1",
"description": "An open-source, GPU-accelerated Electron application that presents the Apple Music website in a customizable interface.",
"license": "MIT",
"author": "Alex313031 <alex313031@gmail.com> (https://thorium.rocks)",
"repository": "https://github.com/Alex313031/Apple-Music-Electron.git",
"bugs": {
"url": "https://github.com/Alex313031/Apple-Music-Electron/issues"
},
"homepage": "https://web.archive.org/web/20220117043557/https://applemusicelectron.com/",
"scripts": {
"init": "yarn install --force",
"dev": "electron --enable-accelerated-mjpeg-decode --enable-accelerated-video --disable-gpu-driver-bug-workarounds --enable-native-gpu-memory-buffers --verbose .",
"start": "electron .",
"build": "electron-builder --dir",
"clean": "rimraf node_modules && rimraf dist",
"distclean": "rimraf dist",
"burn": "rimraf package-lock.json && rimraf yarn.lock",
"dist-linux": "electron-builder -l",
"dist-win": "electron-builder -w --pd dist/win-unpacked",
"dist-mac": "electron-builder -m --pd dist/mac-unpacked",
"sign": "python3 -m castlabs_evs.vmp sign-pkg dist/win-unpacked",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@electron/remote": "2.0.10",
"@sentry/electron": "^2.5.4",
"castv2-client": "git+https://github.com/vapormusic/node-castv2-client.git#bf1397a",
"chmodr": "^1.2.0",
"discord-rpc": "git+https://github.com/Alex313031/discord-rpc.git#852d08c",
"electron-context-menu": "3.6.1",
"electron-acrylic-window": "^0.5.11",
"electron-log": "4.4.8",
"electron-store": "^8.1.0",
"electron-updater": "^5.3.0",
"electron-window-state": "^5.0.3",
"express": "^4.18.2",
"extract-zip": "^2.0.1",
"get-port": "^5.1.1",
"git-clone": "^0.2.0",
"lastfmapi": "^0.1.1",
"mdns-js": "git+https://github.com/ciderapp/node-mdns-js.git#a34c514",
"mpris-service": "^2.1.2",
"naudiodon": "git+https://github.com/vapormusic/naudiodon.git#a72fa25",
"node-fetch": "3.3.0",
"node-ssdp": "^4.0.1",
"opus-media-recorder": "^0.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regedit": "^5.1.2",
"register-scheme": "git+https://github.com/ciderapp/node-register-scheme.git#2574cd1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"upnp-mediarenderer-client": "git+https://github.com/vapormusic/node-upnp-mediarenderer-client.git#d485693",
"v8-compile-cache": "^2.3.0",
"wavefile": "^11.0.0",
"xml2js": "^0.4.23",
"youtube-search-without-api-key": "github:vapormusic/youtube-search"
},
"devDependencies": {
"electron": "git+https://github.com/castlabs/electron-releases.git#bd10a32",
"electron-builder": "23.6.0",
"musickit-typescript": "^1.2.4",
"webpack": "5.75.0"
},
"fileAssociations": [
{
"name": "Apple Music Electron",
"mimeType": "x-scheme-handler/ame;x-scheme-handler/itms;x-scheme-handler/itmss;x-scheme-handler/musics;x-scheme-handler/music;",
"schemes": [
"ame",
"itms",
"itmss",
"musics",
"music"
],
"protocols": [
"ame",
"itms",
"itmss",
"musics",
"music"
]
}
]
}