-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 846 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 846 Bytes
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
{
"name": "ytm",
"version": "1.0.0",
"description": "",
"main": "core.js",
"author": "smuwn",
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install && electron .",
"pack": "build --dir",
"dist": "build"
},
"devDependencies": {
"electron": ">=11.5.0",
"electron-builder": "^20.15.1"
},
"optionalDependencies": {},
"dependencies": {
"discord-rich-presence": "0.0.8"
},
"build": {
"productName": "YouTube Music",
"appId": "smuwn.ytm",
"win": {
"target": [
"portable"
]
},
"portable": {
"artifactName": "ytm.exe"
},
"directories": {
"output": "output"
}
}
}