2020-10-12 01:22:43 +02:00
{
"name" : "@vladmandic/human" ,
2021-08-19 22:17:03 +02:00
"version" : "2.1.4" ,
2021-04-11 05:37:44 +02:00
"description" : "Human: AI-powered 3D Face Detection & Rotation Tracking, Face Description & Recognition, Body Pose Tracking, 3D 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-06-05 18:59:11 +02:00
"types" : "types/src/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" : {
2021-07-29 15:41:17 +02:00
"node" : ">=14.0.0"
2020-10-12 01:22:43 +02:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/vladmandic/human.git"
} ,
2021-03-09 19:37:49 +01:00
"scripts" : {
2021-06-14 14:16:10 +02:00
"start" : "node --trace-warnings --unhandled-rejections=strict --trace-uncaught demo/nodejs/node.js" ,
2021-03-12 22:43:36 +01:00
"dev" : "node --trace-warnings --unhandled-rejections=strict --trace-uncaught server/serve.js" ,
2021-08-01 02:42:28 +02:00
"build" : "node --trace-warnings --unhandled-rejections=strict --trace-uncaught --no-deprecation server/build.js" ,
2021-04-14 03:45:45 +02:00
"lint" : "eslint src server demo test" ,
2021-06-03 15:41:53 +02:00
"test" : "node --trace-warnings --unhandled-rejections=strict --trace-uncaught test/test.js" ,
"scan" : "npx auditjs@latest ossi --dev --quiet"
2021-03-09 19:37:49 +01:00
} ,
"keywords" : [
2021-04-03 17:10:07 +02:00
"human" ,
2021-06-06 02:06:36 +02:00
"human-library" ,
2021-03-09 19:37:49 +01:00
"face-detection" ,
"face-geometry" ,
"face-embedding" ,
"face-recognition" ,
2021-04-03 17:10:07 +02:00
"face-description" ,
2021-06-06 02:06:36 +02:00
"face-matching" ,
"face-api" ,
"faceapi" ,
2021-03-09 19:37:49 +01:00
"body-tracking" ,
2021-06-06 02:06:36 +02:00
"body-segmentation" ,
2021-03-09 19:37:49 +01:00
"hand-tracking" ,
"iris-tracking" ,
"age-estimation" ,
"emotion-detection" ,
"gender-prediction" ,
"gesture-recognition" ,
2021-05-30 23:56:40 +02:00
"gaze-tracking" ,
2021-04-03 17:36:53 +02:00
"age-gender" ,
2021-04-03 17:10:07 +02:00
"person" ,
"tensorflowjs" ,
"tfjs" ,
"tensorflow"
2021-03-09 19:37:49 +01:00
] ,
2020-10-12 01:22:43 +02:00
"devDependencies" : {
2021-07-29 15:53:13 +02:00
"@tensorflow/tfjs" : "^3.8.0" ,
"@tensorflow/tfjs-backend-cpu" : "^3.8.0" ,
"@tensorflow/tfjs-backend-wasm" : "^3.8.0" ,
"@tensorflow/tfjs-backend-webgl" : "^3.8.0" ,
2021-08-12 00:59:02 +02:00
"@tensorflow/tfjs-backend-webgpu" : "^0.0.1-alpha.7" ,
2021-07-29 15:53:13 +02:00
"@tensorflow/tfjs-converter" : "^3.8.0" ,
"@tensorflow/tfjs-core" : "^3.8.0" ,
"@tensorflow/tfjs-data" : "^3.8.0" ,
"@tensorflow/tfjs-layers" : "^3.8.0" ,
"@tensorflow/tfjs-node" : "^3.8.0" ,
"@tensorflow/tfjs-node-gpu" : "^3.8.0" ,
2021-08-23 14:41:50 +02:00
"@types/node" : "^16.7.1" ,
2021-08-17 14:51:17 +02:00
"@typescript-eslint/eslint-plugin" : "^4.29.2" ,
"@typescript-eslint/parser" : "^4.29.2" ,
2021-07-29 22:34:03 +02:00
"@vladmandic/pilogger" : "^0.2.18" ,
2021-05-18 14:14:56 +02:00
"canvas" : "^2.8.0" ,
2021-06-16 21:40:35 +02:00
"chokidar" : "^3.5.2" ,
2021-07-29 15:53:13 +02:00
"dayjs" : "^1.10.6" ,
2021-08-23 14:41:50 +02:00
"esbuild" : "^0.12.22" ,
2021-08-01 02:42:28 +02:00
"eslint" : "^7.32.0" ,
2020-11-07 15:44:33 +01:00
"eslint-config-airbnb-base" : "^14.2.1" ,
2021-08-20 15:05:07 +02:00
"eslint-plugin-import" : "^2.24.1" ,
2021-08-06 14:29:41 +02:00
"eslint-plugin-json" : "^3.1.0" ,
2020-10-12 01:22:43 +02:00
"eslint-plugin-node" : "^11.1.0" ,
2021-04-12 14:29:52 +02:00
"eslint-plugin-promise" : "^5.1.0" ,
2021-04-14 18:53:00 +02:00
"node-fetch" : "^2.6.1" ,
2020-10-27 15:06:01 +01:00
"rimraf" : "^3.0.2" ,
2021-03-16 12:16:25 +01:00
"seedrandom" : "^3.0.5" ,
2021-08-14 17:16:26 +02:00
"simple-git" : "^2.44.0" ,
2021-08-12 15:29:48 +02:00
"tslib" : "^2.3.1" ,
2021-08-19 22:16:56 +02:00
"typedoc" : "0.21.6" ,
2021-07-29 15:53:13 +02:00
"typescript" : "4.3.5"
2021-03-09 19:37:49 +01:00
}
2020-10-12 01:22:43 +02:00
}