-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpackage.json
73 lines (73 loc) · 2.25 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
72
73
{
"name": "@streamlabs/obs-studio-node",
"version": "0.3.99",
"description": "Experimental bindings to obs-studio using nan directly",
"author": "Streamlabs <[email protected]>",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/stream-labs/obs-studio-node.git"
},
"bugs": {
"url": "https://github.com/stream-labs/obs-studio-node/issues"
},
"homepage": "https://github.com/stream-labs/obs-studio-node#readme",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build:bindings": "cmake-js configure -a x64 --CDCMAKE_PREFIX_INSTALL=distribute && cmake --build build --target install --config Release",
"build:javascript": "tsc -p js",
"build:docs": "typedoc --out docs",
"local:config": "yarn install && git submodule update --init --recursive --force && cmake -Bbuild -H. -G\"Visual Studio 16 2019\" -A\"x64\" -DCMAKE_INSTALL_PREFIX=\"./obs-studio-node\" -DLIBOBS_BUILD_TYPE=\"debug\" -DCMAKE_PREFIX_PATH=%CD%/build/libobs-src/cmake/",
"local:build": "cmake --build build --target install --config Debug",
"local:clean": "rm -rf build/*",
"test": "electron-mocha -t 80000 -c true -r ts-node/register tests/osn-tests/src/**/*.ts --reporter tests/osn-tests/util/list-reporter.js"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^5.2.5",
"@types/node": "^16.7.13",
"archiver": "^3.1.1",
"aws-sdk": "^2.1164.0",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"colors": "^1.4.0",
"electron": "29.4.3",
"electron-mocha": "^12.1.0",
"mocha": "^7.1.0",
"mocha-junit-reporter": "^1.22.0",
"node-addon-api": "^7.1.1",
"request": "^2.88.0",
"ts-node": "^7.0.1",
"typedoc": "^0.16.11",
"typedoc-default-themes": "^0.5.0",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^4.0.7",
"uuid": "^3.0.1",
"get-func-name": "^3.0.0",
"wait-queue": "^1.1.4"
},
"keywords": [
"capture",
"stream",
"record",
"twitch",
"youtube",
"obs",
"open",
"broadcaster",
"software",
"obs",
"studio",
"c++",
"c",
"native",
"desktop",
"video",
"audio",
"mixer",
"beam"
],
"dependencies": {}
}