-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.08 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.08 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "streamdock",
"productName": "StreamDock",
"version": "2.3.2",
"description": "Streaming service viewer",
"main": "./src/main.js",
"scripts": {
"start": "electron --trace-warnings .",
"debug": "electron --inspect=7171 .",
"break": "electron --inspect-brk=7171 .",
"buildMacTest": "CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --arm64",
"buildMac": "dotenv electron-builder -m",
"buildWin": "electron-builder -w",
"buildLinux": "electron-builder -l"
},
"repository": "https://github.com/jtvberg/streamdock",
"keywords": [
"Electron",
"Streaming",
"Video"
],
"author": {
"name": "jtvberg",
"email": "streamdockapp@gmail.com"
},
"bugs": {
"url": "https://github.com/jtvberg/streamdock/issues"
},
"license": "MIT",
"devDependencies": {
"dotenv-cli": "^11.0.0",
"electron": "github:castlabs/electron-releases#v40.1.0+wvcus",
"electron-builder": "^26.8.1",
"electron-reloader": "^1.2.3"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"electron-updater": "^6.8.3"
},
"build": {
"files": [
"**/*",
"!private/",
"!test.*",
"!*eslint*"
],
"appId": "com.jtvberg.streamdock",
"copyright": "Copyright jtvberg",
"electronDownload": {
"mirror": "https://github.com/castlabs/electron-releases/releases/download/v"
},
"afterPack": "./build/afterPack.js",
"afterSign": "./build/afterSign.js",
"mac": {
"category": "public.app-category.video",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"notarize": true
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "build/icon.ico"
},
"linux": {
"category": "Video",
"icon": "build/icon.icns",
"target": [
"AppImage",
"snap",
"deb"
]
},
"publish": {
"provider": "github"
}
}
}