-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "@smcgann/node-red-face-detection-plus",
"version": "0.0.3",
"description": "Face Detection Node for Node-RED",
"keywords": [
"node-red",
"face-detection",
"yolo",
"onnx"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/smcgann99/node-red-face-detection-plus.git"
},
"author": "S.McGann",
"contributors": [
{
"name": "GOOD-I-DEER"
}
],
"node-red": {
"version": ">=4.0.0",
"nodes": {
"face-detection-plus": "face-detection.js"
}
},
"dependencies": {
"onnxruntime-node": "^1.20.1",
"axios": "^1.7.9",
"sharp": "^0.33.5"
},
"engines": {
"node": ">=18"
},
"private": false,
"bugs": {
"url": "https://github.com/smcgann99/node-red-face-detection-plus/issues"
},
"homepage": "https://github.com/smcgann99/node-red-face-detection-plus#readme",
"main": "face-detection.js",
"scripts": {
"postinstall": "node install-models.js"
}
}