homebridge-face-location/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2020-11-02 23:52:16 +00:00
{
"name": "homebridge-face-location",
"version": "1.0.0",
"description": "",
2020-12-01 01:55:31 +00:00
"main": "bin/index.js",
2020-11-02 23:52:16 +00:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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",
2020-12-01 01:55:31 +00:00
"typescript",
"homebridge-plugin"
2020-11-02 23:52:16 +00:00
],
2020-12-01 01:55:31 +00:00
"engines": {
"homebridge": ">=1.1.6"
},
2020-11-02 23:52:16 +00:00
"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",
"@types/mime-types": "^2.1.0",
2020-12-19 22:09:39 +00:00
"@types/sharp": "^0.26.1",
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",
"dotenv-extended": "^2.9.0",
"mime-types": "^2.1.27",
2020-12-19 22:09:39 +00:00
"sharp": "^0.26.3",
2020-12-01 01:55:31 +00:00
"tsyringe": "^4.4.0"
2020-11-27 17:31:53 +00:00
},
"devDependencies": {
2020-12-01 01:55:31 +00:00
"@types/webgl2": "0.0.5",
"typescript": "^4.0.5",
"ts-node": "^9.0.0",
"homebridge": "^1.1.6",
"copyfiles": "^2.4.0"
2020-11-02 23:52:16 +00:00
}
}