This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
forked from justadudewhohacks/opencv4nodejs
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "opencv4nodejs-prebuilt",
"version": "5.3.5",
"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"
],
"author": {
"name": "Simon Hofmann",
"email": "[email protected]",
"url": "https://s1h.org"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nut-tree/opencv4nodejs"
},
"bugs": {
"url": "https://github.com/nut-tree/opencv4nodejs/issues"
},
"homepage": "https://github.com/nut-tree/opencv4nodejs#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.15.0",
"native-node-utils": "^0.2.7",
"npmlog": "^5.0.1",
"prebuild-install": "^6.1.4"
},
"optionalDependencies": {
"@types/node": ">6"
},
"opencv4nodejs": {
"disableAutoBuild": 1
},
"config": {
"opencv": "4.1.1-7"
},
"devDependencies": {
"prebuild": "^11.0.0"
}
}