-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 887 Bytes
/
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
{
"name": "youtube-music",
"version": "1.4.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"keywords": [],
"author": "nubsuki",
"license": "ISC",
"description": "YouTube Music Player",
"devDependencies": {
"electron": "^34.0.1",
"electron-builder": "^24.6.4"
},
"dependencies": {
"discord-rpc": "^4.0.1",
"systeminformation": "^5.25.11"
},
"build": {
"appId": "com.nubsuki.youtubemusic",
"productName": "YouTube Music",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"node_modules/**/*"
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"shortcutName": "YouTube Music"
}
}
}