-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
122 lines (122 loc) · 3.12 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "music-kitten",
"version": "2.5.1",
"description": "Use your own soundtrack in Counter-Strike: Global Offensive",
"main": "main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"test": "electron-builder --dir",
"dist": "electron-builder",
"distAll": "electron-builder -mwl --x64 --publish=never",
"distWin": "electron-builder --win --x64 --ia32 --publish=never",
"distMac": "electron-builder --mac --publish=never",
"distDeb": "electron-builder --linux deb --publish=never",
"distApp": "electron-builder --linux AppImage --publish=never",
"distSnap": "electron-builder --linux snap --publish=never",
"debugPackage": "asar extract app.asar app-asar --publish=never"
},
"repository": "https://github.com/CorySanin/Kitten-for-CSGO",
"homepage": "https://www.musickitten.net",
"keywords": [
"CS:GO",
"music",
"kit",
"counter strike",
"source"
],
"author": {
"name": "Cory Sanin",
"email": "[email protected]"
},
"license": "GPL-3.0",
"dependencies": {
"discord-rpc": "3.1.0",
"jsdom": "15.2.1",
"electron-updater": "4.2.0",
"fs-extra": "8.1.0",
"request": "2.88.0",
"http-shutdown": "1.2.1",
"@node-steam/vdf": "2.1.0",
"winreg": "1.2.4",
"download": "7.1.0",
"decompress": "4.2.0",
"i18next": "19.0.2",
"i18next-sync-fs-backend": "1.1.1",
"howler": "2.1.3"
},
"optionalDependencies": {
"register-scheme": "0.0.2"
},
"devDependencies": {
"electron": "3.0.3",
"electron-builder": "21.2.0"
},
"build": {
"appId": "net.musickitten.app",
"productName": "Music Kitten",
"mac": {
"category": "public.app-category.entertainment",
"icon": "icon/icon.icns",
"type": "distribution",
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"dmg": {
"title": "Music Kitten",
"icon": "icon/dmgicon.icns",
"background": "icon/background.tiff",
"iconSize": "112",
"contents": [
{
"x": 190,
"y": 465,
"type": "link",
"path": "/Applications",
"name": " "
},
{
"x": 190,
"y": 100,
"type": "file",
"path": ""
}
]
},
"win": {
"icon": "icon/icon.ico",
"target": "nsis",
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": false,
"allowElevation": false,
"installerSidebar": "icon/installersidebar.bmp",
"createDesktopShortcut": false,
"menuCategory": "WORM\\Kitten",
"shortcutName": "Music Kitten",
"license": "LICENSE"
},
"linux": {
"synopsis": "Use custom CS:GO music kits",
"category": "Utility",
"publish": {
"provider": "github",
"releaseType": "draft"
}
},
"snap": {
"summary": "Use custom CS:GO music kits",
"confinement": "classic"
},
"appImage": {
"license": "LICENSE"
}
}
}