-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.85 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.85 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
93
94
95
96
97
98
99
100
101
{
"name": "localstream",
"version": "1.0.21",
"description": "Local network WebRTC streaming for OBS",
"main": "gui/main.js",
"bin": {
"localstream-server": "server.js"
},
"scripts": {
"start": "node server.js",
"electron": "env -u ELECTRON_RUN_AS_NODE electron .",
"generate-cert": "openssl req -x509 -newkey rsa:4096 -keyout localhost-key.pem -out localhost-cert.pem -days 365 -nodes -subj '/CN=localhost'",
"generate-icons": "node scripts/generate-icons.js",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:mac-arm": "electron-builder --mac --arm64",
"build:windows": "electron-builder --win",
"build:linux": "electron-builder --linux",
"build:all": "electron-builder --mac --win --linux"
},
"build": {
"appId": "com.localstream.app",
"productName": "LocalStream",
"directories": {
"output": "dist"
},
"files": [
"gui/**/*",
"public/**/*",
"server.js",
"bandwidth-manager.js",
"config.json",
"localhost-*.pem",
"node_modules/**/*"
],
"afterSign": "scripts/notarize.js",
"mac": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.utilities",
"icon": "gui/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"win": {
"target": [
{
"target": "zip",
"arch": [
"x64"
]
}
],
"icon": "gui/icon.ico"
},
"linux": {
"target": [
{
"target": "zip",
"arch": [
"x64"
]
}
],
"category": "Utility"
}
},
"keywords": [
"webrtc",
"streaming",
"obs",
"mobile",
"local-network"
],
"author": "",
"license": "MIT",
"dependencies": {
"bonjour-service": "^1.2.1",
"express": "^4.18.2",
"qrcode": "^1.5.4",
"semver": "^7.7.3",
"socket.io": "^4.7.2"
},
"devDependencies": {
"@electron/notarize": "^3.1.1",
"electron": "^28.0.0",
"electron-builder": "^26.0.12",
"nodemon": "^3.0.2",
"pkg": "^5.8.1",
"png2icons": "^2.0.1"
}
}