2020-10-12 01:22:43 +02:00
{
"name" : "@vladmandic/human" ,
2020-10-15 00:30:26 +02:00
"version" : "0.3.1" ,
2020-10-12 01:22:43 +02:00
"description" : "human: 3D Face Detection, Iris Tracking and Age & Gender Prediction" ,
"sideEffects" : false ,
2020-10-15 14:16:34 +02:00
"main" : "dist/human.cjs" ,
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-14 03:08:06 +02:00
"dependencies" : { } ,
2020-10-14 17:43:33 +02:00
"peerDependencies" : { } ,
2020-10-12 01:22:43 +02:00
"devDependencies" : {
2020-10-14 03:08:06 +02:00
"@tensorflow/tfjs" : "^2.6.0" ,
2020-10-14 17:43:33 +02:00
"@tensorflow/tfjs-node" : "^2.6.0" ,
2020-10-14 03:08:06 +02:00
"esbuild" : "^0.7.15" ,
2020-10-12 01:22:43 +02:00
"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" : {
2020-10-14 02:52:30 +02:00
"start" : "node --trace-warnings --trace-uncaught --no-deprecation demo/demo-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 --outfile=dist/human.js src/index.js" ,
2020-10-15 15:43:16 +02:00
"build-esm-bundle" : "esbuild --bundle --platform=browser --sourcemap --target=esnext --format=esm --minify --external:fs --outfile=dist/human.esm.js src/index.js" ,
2020-10-15 14:16:34 +02:00
"build-esm-nobundle" : "esbuild --bundle --platform=browser --sourcemap --target=esnext --format=esm --minify --external:@tensorflow --external:fs --outfile=dist/human.esm-nobundle.js src/index.js" ,
"build-node-bundle" : "esbuild --bundle --platform=node --sourcemap --target=esnext --format=cjs --minify --outfile=dist/human.cjs src/index.js" ,
"build-node-nobundle" : "esbuild --bundle --platform=node --sourcemap --target=esnext --format=cjs --external:@tensorflow --outfile=dist/human-nobundle.cjs src/index.js" ,
"build" : "rimraf dist/* && npm run build-iife && npm run build-esm-bundle && npm run build-esm-nobundle && npm run build-node-bundle && npm run build-node-nobundle && ls -l dist/" ,
2020-10-14 03:08:06 +02:00
"update" : "npm update --depth 20 && npm dedupe && npm prune && npm audit"
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
]
}