forked from udarrr/opencv4nodejs-prebuilt-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json.backup
97 lines (97 loc) · 2.75 KB
/
package.json.backup
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "opencv4nodejs-prebuilt-install",
"version": "4.1.146",
"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"
],
"files": [
"lib",
"index.js"
],
"author": {
"name": "Simon Hofmann",
"email": "[email protected]",
"url": "https://s1h.org"
},
"contributors": [
"Siarhei Kliushnikau <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/udarrr/opencv4nodejs-prebuilt-install.git"
},
"bugs": {
"url": "https://github.com/udarrr/opencv4nodejs-prebuilt-install/issues"
},
"homepage": "https://github.com/udarrr/opencv4nodejs-prebuilt-install/#readme",
"main": "./lib/opencv4nodejs.js",
"typings": "./lib/index.d.ts",
"scripts": {
"install": "prebuild-install || exit 0",
"clean": "node-gyp clean",
"configure": "node-gyp configure",
"build": "node install.js && node-gyp build --jobs max",
"build-debug": "BINDINGS_DEBUG=true npm run build",
"rebuild": "node-gyp rebuild --jobs max",
"prebuild": "prebuild --include-regex \"\\.(node|a|so|dylib|lib|dll).*$\"",
"prepack": "clean-package --remove scripts overrides devDependencies gypfile opencv4nodejs config optionalDependencies && node ./install/prepublish.js",
"pack": "npm pack",
"postpack": "clean-package restore",
"publish_package": "npm publish --tag latest --access=public",
"build_src_opencvlib": "rimraf build_release_opencv && tsc",
"create_opencvlib": "npm run && build_src_opencvlib && node install.js",
"test_opencvlib": "jest ./test"
},
"opencv4nodejs": {
"disableAutoBuild": 1,
"autoBuildWithoutContrib": 1,
"autoBuildOpencvVersion": "4.6.0",
"autoBuildFlags": "-DBUILD_opencv_world=1 -DBUILD_LIST=core,highgui,videoio -DOPENCV_FORCE_3RDPARTY_BUILD=ON -DBUILD_PNG=ON -DBUILD_TIFF=ON -DBUILD_JASPER=ON -DBUILD_JPEG=ON -DBUILD_ZLIB=ON -DBUILD_OPENEXR=ON -DWITH_FFMPEG=OFF -DWITH_GSTREAMER=ON -DBUILD_USE_SYMLINKS=OFF -DWITH_VTK=OFF"
},
"overrides": {
"node-gyp": "^9.3.1",
"prebuild": {
"node-gyp": "^9.3.1"
}
},
"gypfile": false,
"dependencies": {
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"jest": "^26.0.1",
"nan": "^2.17.0",
"native-node-utils": "^0.2.7",
"npmlog": "^7.0.1",
"prebuild": "^11.0.4",
"rimraf": "^5.0.1",
"typescript": "^4.6.3"
},
"config": {
"opencv": "4.1.1-7"
},
"engines": {
"node": ">=12.0.0 <21.0.0"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64"
]
}