{ "name": "face-api", "version": "0.3.0", "description": "JavaScript API for face detection and face recognition in the browser with tensorflow.js", "main": "./build/index.js", "typings": "./build/index.d.ts", "scripts": { "compile": "tsc", "bundle": "esbuild --bundle --outfile=./dist/face-api.js --target=es2020 --platform=browser --sourcemap --log-level=error --tsconfig=./tsconfig.json build/index.js", "minify": "esbuild --bundle --outfile=./dist/face-api.min.js --target=es2020 --platform=browser --sourcemap --log-level=error --minify --tsconfig=./tsconfig.json build/index.js", "build": "npm run compile && npm run bundle && npm run minify" }, "keywords": [ "face", "detection", "recognition", "tensorflow", "tf" ], "repository": { "type": "git", "url": "git+https://github.com/vladmandic/face-api.git" }, "author": "Vladimir Mandic ", "license": "MIT", "bugs": { "url": "https://github.com/vladmandic/face-api/issues" }, "homepage": "https://github.com/vladmandic/face-api#readme", "dependencies": { "@tensorflow/tfjs": "^2.3.0" }, "devDependencies": { "@types/node": "^14.6.0", "canvas": "2.6.1", "ts-node": "^8.10.2", "tslib": "^2.0.1", "typescript": "^3.9.7", "esbuild": "^0.6.25" } }