{ "name": "@vladmandic/face-api", "version": "0.4.3", "description": "JavaScript module for Face Detection and Face Recognition Using Tensorflow/JS", "main": "./dist/face-api.node.js", "typings": "./build/index.d.ts", "engines": { "node": ">=12.0.0" }, "type": "module", "scripts": { "compile": "tsc", "module": "esbuild --bundle --outfile=./dist/face-api.node.js --target=es2018 --platform=node --format=esm --global-name=faceapi --sourcemap --log-level=error --tsconfig=./tsconfig.json build/index.js", "bundle": "esbuild --bundle --outfile=./dist/face-api.js --target=es2018 --platform=browser --format=iife --global-name=faceapi --sourcemap --log-level=error --tsconfig=./tsconfig.json build/index.js", "minify": "esbuild --bundle --outfile=./dist/face-api.min.js --target=es2018 --platform=browser --sourcemap --format=iife --global-name=faceapi --log-level=error --minify --tsconfig=./tsconfig.json build/index.js", "build": "npm run compile && npm run bundle && npm run module && npm run minify" }, "keywords": [ "tensorflow", "tf", "tfjs", "face", "face-api", "face-detection", "age-gender" ], "repository": { "type": "git", "url": "git+https://github.com/vladmandic/face-api.git" }, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "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", "esbuild": "^0.6.27", "ts-node": "^9.0.0", "tslib": "^2.0.1", "typescript": "^4.1.0-dev.20200822" } }