-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "opencv4nodejs-prebuilt",
"version": "5.3.1",
"description": "Asynchronous OpenCV 4.x nodejs bindings with JavaScript and TypeScript API.",
"keywords": [
"opencv",
"cv",
"computer vision",
"face",
"detection",
"recognition",
"machine",
"learning",
"neural",
"network",
"async",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/antuking/opencv4nodejs-pre-compiled"
},
"bugs": {
"url": "https://github.com/antuking/opencv4nodejs-pre-compiled/issues"
},
"homepage": "https://github.com/antuking/opencv4nodejs-pre-compiled#readme",
"main": "./lib/opencv4nodejs.js",
"typings": "./lib/index.d.ts",
"scripts": {
"install": "prebuild-install || (node ./install/dependencies.js && node ./install/install.js)",
"clean": "node-gyp clean",
"configure": "node-gyp configure",
"build": "node ./install/dependencies.js && node-gyp build --jobs max",
"build-debug": "BINDINGS_DEBUG=true npm run build",
"rebuild": "node ./install/dependencies.js && node-gyp rebuild --jobs max",
"prebuild": "node ./install/dependencies.js && prebuild"
},
"gypfile": true,
"dependencies": {
"nan": "^2.14.2",
"native-node-utils": "^0.2.7",
"npmlog": "^4.1.2",
"prebuild-install": "^6.1.1"
},
"optionalDependencies": {
"@types/node": ">6"
},
"opencv4nodejs": {
"disableAutoBuild": 1
},
"config": {
"opencv": "4.1.1-7"
},
"devDependencies": {
"prebuild": "^10.0.1"
}
}