This repository was archived by the owner on Aug 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.47 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.47 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
{
"name": "obs-express",
"version": "0.1.0",
"osnVersion": "osn-0.19.27",
"description": "Host and control libobs via an express http server",
"main": "index.js",
"private": true,
"scripts": {
"start": "node index.js",
"kill": "taskkill /F /IM obs-express.exe & taskkill /F /IM obs64.exe || ECHO.",
"clean": "npm run kill & node scripts/clean.js",
"build": "npm run clean && npm run gyp && npm run build:pkg && npm run build:copy",
"build:pkg": "node node_modules/pkg/lib-es5/bin.js scripts/entry --targets node16-windows-x64 --output \"./bin/obs-express.exe\"",
"build:copy": "node scripts/copy.js",
"gyp": "node-gyp rebuild --target=v16.13.2"
},
"author": "caesay",
"license": "GPL-2.0",
"//": "get updated version of OSN from here https://github.com/stream-labs/streamlabs-obs/blob/master/scripts/repositories.json and don't forget to update osnVersion",
"dependencies": {
"@streamlabs/obs-studio-node": "https://s3-us-west-2.amazonaws.com/obsstudionodes3.streamlabs.com/osn-0.19.27-release-win64.tar.gz",
"bindings": "^1.5.0",
"body-parser": "^1.19.1",
"commander": "^8.3.0",
"express": "^4.17.2",
"lodash": "^4.17.21",
"query-string": "^7.1.0",
"rxjs": "^7.5.2",
"uuid": "^8.3.2",
"ws": "^8.4.2"
},
"devDependencies": {
"copy": "^0.3.2",
"node-gyp": "^8.4.1",
"pkg": "5.3.1"
}
}