-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 999 Bytes
/
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
{
"name": "@good-i-deer/node-red-contrib-face-vectorization",
"version": "1.0.11",
"description": "Face Image Vectorization Node for Node-RED",
"keywords": [
"node-red",
"Face",
"Vectorization",
"Vector",
"FaceNet"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/GOOD-I-DEER/node-red-contrib-face-vectorization.git"
},
"author": "GOOD-I-DEER",
"node-red": {
"nodes": {
"FaceVectorization": "face-vectorization.js"
}
},
"dependencies": {
"axios": "^0.24.0",
"fs": "^0.0.1-security",
"onnxruntime-node": "^1.16.0",
"path": "^0.12.7",
"sharp": "^0.32.6"
},
"private": false,
"bugs": {
"url": "https://github.com/GOOD-I-DEER/node-red-contrib-face-vectorization/issues"
},
"homepage": "https://github.com/GOOD-I-DEER/node-red-contrib-face-vectorization#readme",
"main": "face-vectorization.js",
"scripts": {
"postinstall": "node install-models.js"
}
}