mirror of https://github.com/vladmandic/human
63 lines
2.6 KiB
JSON
63 lines
2.6 KiB
JSON
{
|
|
"name": "@vladmandic/human",
|
|
"version": "0.3.9",
|
|
"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 <mandic00@live.com>",
|
|
"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": {
|
|
"@vladmandic/pilogger": "^0.2.6",
|
|
"dayjs": "^1.9.3",
|
|
"simple-git": "^2.21.0",
|
|
"@tensorflow/tfjs": "^2.6.0",
|
|
"@tensorflow/tfjs-node": "^2.6.0",
|
|
"esbuild": "^0.7.15",
|
|
"eslint": "^7.10.0",
|
|
"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"
|
|
},
|
|
"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 --minify --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 --minify --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 --minify --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"
|
|
]
|
|
}
|