yolo-ts
Version:
A TypeScript-based YOLO object detection library using TensorFlow.js
48 lines (47 loc) • 1.16 kB
JSON
{
"name": "yolo-ts",
"version": "1.0.5",
"description": "A TypeScript-based YOLO object detection library using TensorFlow.js",
"main": "dist/yolo.umd.js",
"module": "dist/yolo.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"YOLO",
"TensorFlow.js",
"object-detection",
"TypeScript"
],
"author": {
"name": "Josue Gutierrez",
"email": "josue.ggh@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"@tensorflow/tfjs": "4.22.0",
"@tensorflow/tfjs-backend-webgl": "4.22.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "12.1.2",
"rollup": "2.79.2",
"rollup-plugin-terser": "7.0.2",
"tslib": "^2.8.1",
"typescript": "5.7.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josueggh/yolo-ts.git"
},
"bugs": {
"url": "https://github.com/josueggh/yolo-ts/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/josueggh/yolo-ts#readme"
}