forked from MaverickMartyn/youtube-music-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.25 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
{
"name": "youtube-music-desktop",
"version": "0.2.1",
"description": "An unofficial YouTube Music app for desktop.",
"main": "index.js",
"author": {
"name": "Martin Aaby Finnerup",
"email": "contact@codeslasher.com",
"url": "https://www.codeslasher.com/"
},
"license": "MIT",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build",
"publish": "build --win --mac --linux -p always"
},
"dependencies": {
"@mdi/font": "^2.8.94",
"axios": "^0.18.0",
"electron-log": "^1.3.0",
"electron-store": "^2.0.0",
"electron-updater": "^3.1.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"electron": "latest",
"electron-builder": "^20.28.4"
},
"build": {
"appId": "youtube-music-desktop",
"productName": "YouTube Music for Desktop",
"mac": {
"category": "your.app.category.type",
"target": [
"zip",
"dmg"
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "images/youtube_music_icon_.ico"
},
"publish": [
{
"provider": "github",
"owner": "MaverickMartyn",
"repo": "youtube-music-desktop"
}
]
}
}