2020-10-12 01:22:43 +02:00
{
"name" : "@vladmandic/human" ,
2020-11-03 21:24:11 +01:00
"version" : "0.6.4" ,
2020-10-12 01:22:43 +02:00
"description" : "human: 3D Face Detection, Iris Tracking and Age & Gender Prediction" ,
"sideEffects" : false ,
2020-10-27 17:49:24 +01:00
"main" : "dist/human.node.js" ,
2020-10-12 01:22:43 +02:00
"module" : "dist/human.esm.js" ,
2020-10-15 14:16:34 +02:00
"browser" : "dist/human.esm.js" ,
2020-10-12 01:22:43 +02:00
"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"
} ,
2020-10-16 21:22:01 +02:00
"dependencies" : { } ,
2020-10-14 17:43:33 +02:00
"peerDependencies" : { } ,
2020-10-12 01:22:43 +02:00
"devDependencies" : {
2020-10-27 15:06:01 +01:00
"@tensorflow/tfjs" : "^2.7.0" ,
"@tensorflow/tfjs-node" : "^2.7.0" ,
2020-10-30 12:34:55 +01:00
"@vladmandic/pilogger" : "^0.2.7" ,
2020-10-27 15:06:01 +01:00
"dayjs" : "^1.9.4" ,
2020-10-28 20:02:59 +01:00
"esbuild" : "^0.7.22" ,
2020-10-27 15:06:01 +01:00
"eslint" : "^7.12.1" ,
2020-10-12 01:22:43 +02:00
"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" ,
2020-10-27 15:06:01 +01:00
"rimraf" : "^3.0.2" ,
2020-10-30 12:34:55 +01:00
"seedrandom" : "^3.0.5" ,
2020-10-27 15:06:01 +01:00
"simple-git" : "^2.21.0"
2020-10-12 01:22:43 +02:00
} ,
"scripts" : {
2020-10-18 18:12:09 +02:00
"start" : "node --trace-warnings --unhandled-rejections=strict --trace-uncaught --no-deprecation src/node.js" ,
2020-10-14 02:52:30 +02:00
"lint" : "eslint src/*.js demo/*.js" ,
2020-11-03 15:34:36 +01:00
"build-iife" : "esbuild --bundle --minify --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 --minify --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 --minify --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 --minify --platform=node --sourcemap --target=esnext --format=cjs --metafile=dist/human.node.json --outfile=dist/human.node.js src/human.js" ,
"build-node-nobundle" : "esbuild --bundle --minify --platform=node --sourcemap --target=esnext --format=cjs --external:@tensorflow --metafile=dist/human.node.json --outfile=dist/human.node-nobundle.js src/human.js" ,
2020-10-28 20:02:59 +01:00
"build" : "rimraf dist/* && npm run build-iife && npm run build-esm-bundle && npm run build-esm-nobundle && npm run build-node && npm run build-node-nobundle && ls -l dist/" ,
"update" : "npm update --depth 20 --force && npm dedupe && npm prune && npm audit" ,
2020-10-16 21:21:56 +02:00
"changelog" : "node changelog.js"
2020-10-12 01:22:43 +02:00
} ,
"keywords" : [
"tensorflowjs" ,
2020-10-12 21:03:51 +02:00
"face-detection" ,
"face-geometry" ,
"body-tracking" ,
"hand-tracking" ,
"iris-tracking" ,
"age-estimation" ,
2020-10-15 00:30:26 +02:00
"emotion-detection" ,
2020-10-12 21:03:51 +02:00
"gender-prediction" ,
"gesture-recognition"
2020-10-12 01:22:43 +02:00
]
}