-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "ndi.js",
"version": "1.1.0",
"description": "Wrapper library for NDI",
"type": "module",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"clean": "node-pre-gyp clean",
"test": "jest",
"install": "node-pre-gyp install --fallback-to-build",
"configure": "./scripts/configure.js",
"prebuild": "[ ! -d ./build ] && npm run configure || true",
"build": "./scripts/build.js",
"postbuild": "./scripts/postbuild.js",
"uploadBinaries": "node-pre-gyp package testpackage publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pandres95/ndi.js.git"
},
"keywords": [
"NDI"
],
"author": "Pablo Dorado <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pandres95/ndi.js/issues"
},
"gypfile": true,
"binary": {
"module_name": "ndi",
"module_path": "./build/{configuration}/",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{platform}-{arch}.tar.gz",
"host": "https://ndijs.s3.us-east-2.amazonaws.com"
},
"homepage": "https://github.com/pandres95/ndi.js#readme",
"devDependencies": {
"aws-sdk": "^2.1048.0",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"jest": "^27.3.1",
"node-addon-api": "^5.0.0",
"node-gyp": "^8.4.1",
"zx": "^4.3.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.8",
"bindings": "^1.5.0"
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
]
}