2020-11-02 23:52:16 +00:00
|
|
|
{
|
|
|
|
"name": "homebridge-face-location",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "",
|
|
|
|
"main": "index.ts",
|
|
|
|
"scripts": {
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2020-11-09 01:57:57 +00:00
|
|
|
"build": "npm run copy-files && tsc --build",
|
|
|
|
"copy-files": "copyfiles -u 1 -s weights/* bin/weights",
|
|
|
|
"train": "npx ts-node ./scripts/train.ts"
|
2020-11-02 23:52:16 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "ssh://git@thebword.ddns.net:3122/watsonb8/homebridge-face-location.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"homebridge",
|
|
|
|
"typescript"
|
|
|
|
],
|
|
|
|
"author": "Brandon Watson",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2020-11-08 20:33:07 +00:00
|
|
|
"@tensorflow/tfjs": "^2.6.0",
|
|
|
|
"@tensorflow/tfjs-node": "^2.6.0",
|
2020-11-09 01:57:57 +00:00
|
|
|
"@types/mime-types": "^2.1.0",
|
2020-11-08 20:33:07 +00:00
|
|
|
"@vladmandic/face-api": "^0.8.8",
|
2020-11-02 23:52:16 +00:00
|
|
|
"canvas": "^2.6.1",
|
|
|
|
"copyfiles": "^2.4.0",
|
2020-11-09 01:57:57 +00:00
|
|
|
"dotenv-extended": "^2.9.0",
|
|
|
|
"mime-types": "^2.1.27",
|
2020-11-08 20:33:07 +00:00
|
|
|
"rtsp-stream": "file:../rtsp-stream",
|
|
|
|
"ts-node": "^9.0.0",
|
|
|
|
"typescript": "^4.0.5"
|
2020-11-27 17:31:53 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/webgl2": "0.0.5"
|
2020-11-02 23:52:16 +00:00
|
|
|
}
|
|
|
|
}
|