-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 922 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
{
"name": "youtube-tv-client",
"version": "1.0.1",
"description": "YouTube client that uses the TV interface",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder"
},
"build": {
"appId": "com.haroon01.youtubetvclient",
"productName": "YouTubeTV",
"files": [
"index.js",
"package.json"
],
"win": {
"target": ["portable"],
"icon": "img/icon/youtube.ico",
"artifactName": "${productName}_v${version}_x64_win.${ext}"
},
"linux": {
"target": ["AppImage"],
"icon": "img/icon/youtube.png",
"artifactName": "${productName}_v${version}_linux.${ext}",
"category": "Utility"
}
},
"keywords": [],
"author": "Haroon01",
"license": "ISC",
"devDependencies": {
"electron": "^31.3.0",
"electron-builder": "^24.13.3"
}
}