-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "node-red-contrib-tf-model",
"version": "0.1.12",
"description": "a custom Node-RED node to retrieve/execute a Tensorflow model",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run copy",
"lint": "tslint -p tsconfig.json -c tslint.json src/**/*.ts",
"copy": "node scripts/copy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yhwang/node-red-contrib-tf-model.git"
},
"keywords": [
"tensorflow.js",
"model",
"node-red"
],
"node-red": {
"nodes": {
"tf-model": "dist/index.js"
}
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/yhwang/node-red-contrib-tf-model/issues"
},
"homepage": "https://github.com/yhwang/node-red-contrib-tf-model#readme",
"devDependencies": {
"@types/node": "^18.15.3",
"@types/node-fetch": "^2.6.4",
"shelljs": "^0.8.5",
"tslint": "^5.20.1",
"typescript": "4.9.4"
},
"peerDependencies": {
"@tensorflow/tfjs-node": "^4.8.0"
},
"dependencies": {
"node-fetch": "^2.6.12"
}
}