-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
{
"name": "youtube-tv",
"productName": "YouTube TV",
"version": "2.4.1",
"description": "Simple YouTube TV client for desktop based on electron.",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"debug": "electron . --inspect",
"compile": "tsc",
"build": "npm run build:mac && npm run build:win && npm run build:linux",
"build:mac": "electron-builder --mac --x64 --arm64",
"build:win": "electron-builder --win --x64 --ia32",
"build:linux": "electron-builder --linux --x64 --arm64 --armv7l",
"buildRetinaDMGBackground": "tiffutil -cathidpicheck background.png background@2x.png -out background.tiff"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"@types/peer-dial": "0.0.1",
"express": "^4.17.1",
"hosted-git-info": "^5.1.0",
"lodash": "^4.17.21",
"node-uuid": "^1.4.8",
"normalize-url": "^7.0.2",
"path-parse": "^1.0.7",
"peer-dial": "0.0.8",
"trim-newlines": "^4.0.2"
},
"devDependencies": {
"electron": "^20.1.1",
"electron-builder": "^23.0.2",
"typescript": "^4.7.3"
},
"build": {
"productName": "YouTube TV",
"appId": "com.youtube.tv",
"asar": true,
"directories": { "output": "../YTV_Builds" },
"mac": {
"category": "public.app-category.entertainment",
"target": "dmg",
"icon": "build/youtube_bigsur_icon.icns"
},
"dmg": {
"contents": [
{
"x": 207,
"y": 253
},
{
"x": 494,
"y": 253,
"type": "link",
"path": "/Applications"
}
],
"background": "build/background.tiff"
},
"linux": {
"target": [ "deb", "rpm" ],
"icon": "build/icon.icns",
"packageCategory": "Video"
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
},
"author": "Marcos Rodríguez <marcosylrg@gmail.com>"
}