yolo-helpers
Version:
Helper functions to use models converted from YOLO in browser and Node.js
82 lines (81 loc) • 2.06 kB
JSON
{
"name": "yolo-helpers",
"version": "1.5.0",
"description": "Helper functions to use models converted from YOLO in browser and Node.js",
"keywords": [
"yolo",
"tensorflow",
"machine-learning",
"object-detection",
"pose-detection",
"image-classification",
"image-segmentation",
"object-segmentation",
"keypoint-detection",
"instance-segmentation",
"browser",
"nodejs",
"isomorphic",
"typescript"
],
"author": {
"name": "Beeno Tung",
"email": "aabbcc1241@yahoo.com.hk",
"url": "https://beeno-tung.surge.sh"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/yolo-helpers.git"
},
"homepage": "https://github.com/beenotung/yolo-helpers#readme",
"bugs": {
"url": "https://github.com/beenotung/yolo-helpers/issues"
},
"main": "dist/node.js",
"types": "dist/node.d.ts",
"browser": "dist/browser.js",
"files": [
"dist"
],
"scripts": {
"dev": "esbuild --watch --bundle --outfile=examples/browser/bundle.js examples/browser/app.ts",
"dev:live": "esbuild --watch --bundle --outfile=examples/live-camera/bundle.js examples/live-camera/app.ts",
"test": "tsc --noEmit",
"clean": "rimraf dist",
"build": "rimraf dist && tsc -p . && rimraf dist/tsconfig.tsbuildinfo",
"tsc": "tsc -p ."
},
"dependencies": {},
"peerDependencies": {
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-core": "^4.22.0",
"@tensorflow/tfjs-node": "^4.22.0"
},
"peerDependenciesMeta": {
"@tensorflow/tfjs-node": {
"optional": true
},
"@tensorflow/tfjs-core": {
"optional": true
},
"@tensorflow/tfjs": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.10.2",
"esbuild": "^0.24.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tensorflow/tfjs-node",
"core-js",
"esbuild"
]
}
}