UNPKG

darknet

Version:

A Node wrapper of pjreddie's open source neural network framework Darknet, using the Foreign Function Interface Library. Read: YOLOv3 in JavaScript.

38 lines (37 loc) 958 B
{ "name": "darknet", "version": "3.1.6", "description": "", "main": "darknet.js", "typings": "darknet.d.ts", "repository": "https://github.com/bennetthardwick/darknet.js", "homepage": "https://github.com/bennetthardwick/darknet.js", "scripts": { "build": "./install-script.sh && node-gyp rebuild", "clean": "node-gyp clean", "test": "./examples/example && jasmine", "install": "./install-script.sh && node-gyp rebuild", "prepublishOnly": "npx tsc" }, "gypfile": true, "keywords": [ "darknet", "yolo", "yolov3", "yolov3-tiny", "object detection", "machine learning" ], "author": "Bennett Hardwick <bennetthardwick@icloud.com> (bennetthardwick.com)", "license": "MIT", "dependencies": { "node-addon-api": "^1.7.2", "node-gyp": "^5.1.1" }, "devDependencies": { "@types/node": "^12.12.54", "canvas": "^2.6.1", "jasmine": "^3.6.1", "typescript": "^3.9.7" } }