forked from GOOD-I-DEER/node-red-contrib-object-detection
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "@good-i-deer/node-red-contrib-object-detection",
"version": "1.0.3",
"description": "Object Detection Nodes for Node-RED",
"keywords": [
"node-red",
"detection",
"yolo",
"object-detection",
"onnx",
"webcam"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "GOOD-I-DEER",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/GOOD-I-DEER/node-red-contrib-object-detection"
},
"dependencies": {
"onnxruntime-node": "^1.14.0",
"sharp": "^0.32.1",
"express": "^4.18.2",
"socket.io": "^4.7.2",
"serve-static": "^1.15.0",
"path": "^0.12.7"
},
"bugs": {
"url": "https://github.com/GOOD-I-DEER/node-red-contrib-object-detection/issues"
},
"homepage": "https://github.com/GOOD-I-DEER/node-red-contrib-object-detection#readme",
"node-red": {
"nodes": {
"GoodObjectDetection": "object-detection-node/object-detection.js",
"GoodWebcamObjectDetection": "webcam-object-detection-node/webcam-object-detection.js"
}
}
}