ai-face-detection
Version:
This is simple face detection using face-api.js and tensorflow.js
79 lines (78 loc) • 2.28 kB
JSON
{
"name": "ai-face-detection",
"version": "1.0.10",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"weights"
],
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"start:example": "ts-node src/example/example.ts",
"eslint": "eslint --ext .ts --max-warnings=0 --ignore-path .gitignore .",
"eslint:fix": "eslint -c .eslintrc.json --fix src/**/*.{ts,js}",
"test:unit": "jest -c jest.unit.config.js --maxWorkers=20%",
"release": "npm run build && standard-version",
"release:publish": "git add . && npm run release && git push --follow-tags origin main && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexsanteenodev/ai-face-detection.git"
},
"author": "alexsanteeno@gmail.com",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/alexsanteenodev/ai-face-detection/issues"
},
"homepage": "https://github.com/alexsanteenodev/ai-face-detection#readme",
"keywords": [
"face detection",
"computer vision",
"facial recognition",
"machine learning",
"deep learning",
"artificial intelligence",
"image analysis",
"face identification",
"face tracking",
"emotion detection",
"face features",
"age and gender estimation",
"real-time detection",
"webcam",
"video",
"image processing",
"JavaScript",
"TypeScript"
],
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.10",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@tensorflow/tfjs-node": "^4.2.0",
"@vladmandic/face-api": "^1.7.9",
"axios": "^1.3.3",
"canvas": "^2.11.0",
"winston": "^3.8.2"
}
}