node-red-contrib-post-object-detection
Version:
A Node-RED custom node that processes the Object Detection results
46 lines (45 loc) • 1.25 kB
JSON
{
"name": "node-red-contrib-post-object-detection",
"version": "0.1.8",
"description": "A Node-RED custom node that processes the Object Detection results",
"main": "dist/post-object-detection/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-post-object-detection.git"
},
"keywords": [
"Object-Detection",
"Bounding-Box",
"Node-RED",
"node-red"
],
"node-red": {
"nodes": {
"post-object-detection": "dist/post-object-detection/index.js",
"bbox-image": "dist/bbox-image/index.js"
}
},
"author": "yh.wang@ibm.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/yhwang/node-red-contrib-post-object-detection/issues"
},
"homepage": "https://github.com/yhwang/node-red-contrib-post-object-detection#readme",
"devDependencies": {
"@types/node": "^18.15.3",
"shelljs": "^0.8.5",
"tslint": "^5.20.1",
"typescript": "4.9.4"
},
"peerDependencies": {
"@tensorflow/tfjs-node": "^4.8.0"
},
"dependencies": {
"canvas": "^2.11.2"
}
}