2020-10-12 01:22:43 +02:00
{
"name" : "@vladmandic/human" ,
2021-03-09 19:15:59 +01:00
"version" : "1.0.1" ,
2021-01-12 16:18:58 +01:00
"description" : "Human: AI-powered 3D Face Detection, Face Embedding & Recognition, Body Pose Tracking, Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction & Gesture Recognition" ,
2020-10-12 01:22:43 +02:00
"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" ,
2021-02-19 14:35:41 +01:00
"types" : "types/human.d.ts" ,
2020-10-12 01:22:43 +02:00
"author" : "Vladimir Mandic <mandic00@live.com>" ,
"bugs" : {
"url" : "https://github.com/vladmandic/human/issues"
} ,
2021-03-08 20:12:12 +01:00
"homepage" : "https://vladmandic.github.io/human/demo/index.html" ,
2020-10-12 01:22:43 +02:00
"license" : "MIT" ,
"engines" : {
2020-12-23 19:54:47 +01:00
"node" : ">=12.0.0"
2020-10-12 01:22:43 +02:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/vladmandic/human.git"
} ,
2020-10-14 17:43:33 +02:00
"peerDependencies" : { } ,
2020-10-12 01:22:43 +02:00
"devDependencies" : {
2021-02-25 13:50:13 +01:00
"@tensorflow/tfjs" : "^3.2.0" ,
"@tensorflow/tfjs-backend-cpu" : "^3.2.0" ,
"@tensorflow/tfjs-backend-wasm" : "^3.2.0" ,
"@tensorflow/tfjs-backend-webgl" : "^3.2.0" ,
"@tensorflow/tfjs-converter" : "^3.2.0" ,
"@tensorflow/tfjs-core" : "^3.2.0" ,
"@tensorflow/tfjs-data" : "^3.2.0" ,
"@tensorflow/tfjs-layers" : "^3.2.0" ,
"@tensorflow/tfjs-node" : "^3.2.0" ,
"@tensorflow/tfjs-node-gpu" : "^3.2.0" ,
2021-03-08 13:32:24 +01:00
"@types/node" : "^14.14.32" ,
2021-03-02 17:27:42 +01:00
"@typescript-eslint/eslint-plugin" : "^4.16.1" ,
"@typescript-eslint/parser" : "^4.16.1" ,
2021-02-06 16:19:45 +01:00
"@vladmandic/pilogger" : "^0.2.14" ,
2021-01-18 14:22:25 +01:00
"chokidar" : "^3.5.1" ,
2021-01-22 14:15:33 +01:00
"dayjs" : "^1.10.4" ,
2021-03-08 13:32:24 +01:00
"esbuild" : "^0.8.57" ,
2021-02-28 13:39:29 +01:00
"eslint" : "^7.21.0" ,
2020-11-07 15:44:33 +01:00
"eslint-config-airbnb-base" : "^14.2.1" ,
2020-10-12 01:22:43 +02:00
"eslint-plugin-import" : "^2.22.1" ,
"eslint-plugin-json" : "^2.1.2" ,
"eslint-plugin-node" : "^11.1.0" ,
2021-02-13 15:16:41 +01:00
"eslint-plugin-promise" : "^4.3.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" ,
2021-03-08 13:32:24 +01:00
"simple-git" : "^2.36.1" ,
2021-02-08 17:39:09 +01:00
"tslib" : "^2.1.0" ,
2021-03-06 16:38:04 +01:00
"typescript" : "^4.2.3"
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" ,
2021-02-13 15:16:41 +01:00
"lint" : "eslint src demo server" ,
2021-03-08 20:12:12 +01:00
"test" : "eslint src demo server" ,
2021-02-13 14:42:10 +01:00
"dev" : "npm install && node server/serve.js" ,
2021-02-08 19:09:36 +01:00
"build" : "rimraf dist/* && rimraf types/* && node server/build.js && node server/changelog.js" ,
2020-11-08 15:56:02 +01:00
"update" : "npm update --depth 20 --force && 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" ,
2020-11-13 22:42:00 +01:00
"face-embedding" ,
"face-recognition" ,
2020-10-12 21:03:51 +02:00
"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" ,
2021-03-04 16:33:08 +01:00
"gesture-recognition" ,
"blazeface" ,
"blazepose"
2020-10-12 01:22:43 +02:00
]
}