{ "name": "@vladmandic/human", "version": "0.4.6", "description": "human: 3D Face Detection, Iris Tracking and Age & Gender Prediction", "sideEffects": false, "main": "dist/human.cjs", "module": "dist/human.esm.js", "browser": "dist/human.esm.js", "author": "Vladimir Mandic ", "bugs": { "url": "https://github.com/vladmandic/human/issues" }, "homepage": "https://github.com/vladmandic/human#readme", "license": "MIT", "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/vladmandic/human.git" }, "dependencies": {}, "peerDependencies": {}, "devDependencies": { "@tensorflow/tfjs": "^2.7.0", "@tensorflow/tfjs-node": "^2.7.0", "@vladmandic/pilogger": "^0.2.6", "dayjs": "^1.9.4", "esbuild": "^0.7.21", "eslint": "^7.12.1", "eslint-config-airbnb-base": "^14.2.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-json": "^2.1.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "rimraf": "^3.0.2", "simple-git": "^2.21.0" }, "scripts": { "start": "node --trace-warnings --unhandled-rejections=strict --trace-uncaught --no-deprecation src/node.js", "lint": "eslint src/*.js demo/*.js", "build-iife": "esbuild --bundle --platform=browser --sourcemap --target=esnext --format=iife --external:fs --global-name=Human --metafile=dist/human.json --outfile=dist/human.js src/human.js", "build-esm-bundle": "esbuild --bundle --platform=browser --sourcemap --target=esnext --format=esm --external:fs --metafile=dist/human.esm.json --outfile=dist/human.esm.js src/human.js", "build-esm-nobundle": "esbuild --bundle --platform=browser --sourcemap --target=esnext --format=esm --external:@tensorflow --external:fs --metafile=dist/human.esm-nobundle.json --outfile=dist/human.esm-nobundle.js src/human.js", "build-node": "esbuild --bundle --platform=node --sourcemap --target=esnext --format=cjs --external:@tensorflow --metafile=dist/human.cjs.json --outfile=dist/human.cjs src/human.js", "build": "rimraf dist/* && npm run build-iife && npm run build-esm-bundle && npm run build-esm-nobundle && npm run build-node && ls -l dist/", "update": "npm update --depth 20 && npm dedupe && npm prune && npm audit", "changelog": "node changelog.js" }, "keywords": [ "tensorflowjs", "face-detection", "face-geometry", "body-tracking", "hand-tracking", "iris-tracking", "age-estimation", "emotion-detection", "gender-prediction", "gesture-recognition" ] }