-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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
{
"name": "ssbu-music-player",
"version": "0.4.3",
"description": "A music player that looks like 'Sounds' in 'Vault' in SSBU",
"main": "main.js",
"author": "TheDerpyMemeSquad",
"license": "CC0-1.0",
"keywords": [
"Electron",
"music",
"ssbu",
"songs"
],
"publish": {
"provider": "github",
"releaseType": "release"
},
"repository": {
"type": "git",
"url": "https://github.com/leotomasmc/ssbu-music-player"
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder --win -p always"
},
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"build": {
"appId": "io.github.leotomas.ssbu-music-player",
"publish": [
{
"provider": "github",
"owner": "leotomasmc",
"repo": "ssbu-music-player"
}
],
"win": {
"target": [
"nsis"
],
"verifyUpdateCodeSignature": false
},
"nsis": {
"oneClick": true,
"deleteAppDataOnUninstall": true,
"runAfterFinish": true
},
"icon": "icon.png"
},
"devDependencies": {
"electron": "^11.1.0",
"electron-builder": "^22.8.1"
},
"dependencies": {
"custom-electron-titlebar": "^3.2.6",
"dank-twitch-irc": "3.0.5",
"discord-rpc": "^3.1.4",
"electron-acrylic-window": "^0.4.7",
"electron-log": "^4.2.4",
"electron-updater": "^4.3.5",
"iohook": "^0.6.2",
"jquery": "^3.5.1",
"mousetrap": "^1.6.5",
"music-metadata": "^7.4.0",
"platform-folders": "^0.4.1",
"rangeslider.js": "^2.3.3",
"twitch": "^4.3.2",
"twitch-electron-auth-provider": "^4.3.2",
"websocket-stream": "^5.5.2",
"ws": "^7.3.1",
"ytdl-core": "^4.2.0"
}
}