2020-10-12 01:22:43 +02:00
{
"name" : "@vladmandic/human" ,
2025-02-05 15:29:56 +01:00
"version" : "3.3.5" ,
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-11-17 21:45:49 +01:00
"types" : "types/human.d.ts" ,
2022-08-12 15:13:48 +02:00
"exports" : {
2024-09-10 21:44:39 +02:00
"node" : "./dist/human.node.js" ,
2022-08-12 15:13:48 +02:00
"script" : "./dist/human.js" ,
"module" : "./dist/human.esm.js" ,
2022-10-28 15:26:33 +02:00
"types" : "./types/human.d.ts" ,
2022-12-30 01:37:38 +01:00
"dist/human" : "./dist/human.js" ,
2022-10-28 15:26:33 +02:00
"dist/human.js" : "./dist/human.js" ,
2022-12-30 01:37:38 +01:00
"dist/human.esm" : "./dist/human.esm.js" ,
2022-10-28 15:26:33 +02:00
"dist/human.esm.js" : "./dist/human.esm.js" ,
2022-12-30 01:37:38 +01:00
"dist/human.esm-nobundle" : "./dist/human.esm-nobundle.js" ,
2022-10-28 15:26:33 +02:00
"dist/human.esm-nobundle.js" : "./dist/human.esm-nobundle.js" ,
2022-12-30 01:37:38 +01:00
"dist/human.node" : "./dist/human.node.js" ,
2022-10-28 15:26:33 +02:00
"dist/human.node.js" : "./dist/human.node.js" ,
2022-12-30 01:37:38 +01:00
"dist/human.node-wasm" : "./dist/human.node-wasm.js" ,
2022-10-28 15:26:33 +02:00
"dist/human.node-wasm.js" : "./dist/human.node-wasm.js" ,
2022-12-30 01:37:38 +01:00
"dist/human.node-gpu" : "./dist/human.node-gpu.js" ,
2024-09-10 21:44:39 +02:00
"dist/human.node-gpu.js" : "./dist/human.node-gpu.js" ,
"require" : "./dist/human.node.js" ,
"import" : "./dist/human.esm.js"
2022-08-12 15:13:48 +02:00
} ,
2020-10-12 01:22:43 +02:00
"author" : "Vladimir Mandic <mandic00@live.com>" ,
2021-09-11 16:29:31 +02:00
"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" ,
2021-09-11 16:29:31 +02:00
"engines" : {
"node" : ">=14.0.0"
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/vladmandic/human.git"
} ,
2021-03-09 19:37:49 +01:00
"scripts" : {
2021-09-11 03:21:29 +02:00
"start" : "node --no-warnings demo/nodejs/node.js" ,
2021-09-11 16:29:31 +02:00
"dev" : "build --profile development" ,
2022-07-21 18:53:10 +02:00
"clean" : "build --profile clean" ,
2021-11-17 21:45:49 +01:00
"build" : "rimraf test/build.log && node build.js" ,
2021-09-20 23:17:13 +02:00
"test" : "node --no-warnings --unhandled-rejections=strict --trace-uncaught test/node.js" ,
2022-11-18 19:14:21 +01:00
"lint" : "eslint *.json *.js src demo test models wiki" ,
2021-06-03 15:41:53 +02:00
"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" ,
2021-11-11 17:30:55 +01:00
"faceid" ,
2021-03-09 19:37:49 +01:00
"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" ,
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
"tensorflowjs" ,
"tfjs" ,
"tensorflow"
2021-03-09 19:37:49 +01:00
] ,
2020-10-12 01:22:43 +02:00
"devDependencies" : {
2024-09-10 21:44:39 +02:00
"@html-eslint/eslint-plugin" : "^0.26.0" ,
"@html-eslint/parser" : "^0.26.0" ,
2025-02-05 15:29:47 +01:00
"@microsoft/api-extractor" : "^7.49.2" ,
"@tensorflow/tfjs-backend-cpu" : "^4.22.0" ,
"@tensorflow/tfjs-backend-wasm" : "^4.22.0" ,
"@tensorflow/tfjs-backend-webgl" : "^4.22.0" ,
"@tensorflow/tfjs-backend-webgpu" : "4.22.0" ,
"@tensorflow/tfjs-converter" : "^4.22.0" ,
"@tensorflow/tfjs-core" : "^4.22.0" ,
"@tensorflow/tfjs-data" : "^4.22.0" ,
"@tensorflow/tfjs-layers" : "^4.22.0" ,
"@tensorflow/tfjs-node" : "^4.22.0" ,
"@tensorflow/tfjs-node-gpu" : "^4.22.0" ,
"@types/emscripten" : "^1.40.0" ,
"@types/node" : "^22.13.1" ,
2023-12-06 19:32:21 +01:00
"@types/offscreencanvas" : "^2019.7.3" ,
2024-10-14 15:05:49 +02:00
"@typescript-eslint/eslint-plugin" : "^8.8.1" ,
"@typescript-eslint/parser" : "^8.8.1" ,
2025-02-05 15:29:47 +01:00
"@vladmandic/build" : "^0.10.2" ,
2024-09-10 21:44:39 +02:00
"@vladmandic/pilogger" : "^0.5.1" ,
2021-11-15 15:26:38 +01:00
"@vladmandic/tfjs" : "github:vladmandic/tfjs" ,
2025-02-05 15:29:47 +01:00
"canvas" : "^3.1.0" ,
"esbuild" : "^0.24.2" ,
2024-09-10 21:44:39 +02:00
"eslint" : "8.57.0" ,
2021-11-10 18:21:45 +01:00
"eslint-config-airbnb-base" : "^15.0.0" ,
2024-10-14 15:05:49 +02:00
"eslint-plugin-html" : "^8.1.2" ,
"eslint-plugin-import" : "^2.31.0" ,
2024-09-10 21:44:39 +02:00
"eslint-plugin-json" : "^4.0.1" ,
"eslint-plugin-markdown" : "^5.1.0" ,
2020-10-12 01:22:43 +02:00
"eslint-plugin-node" : "^11.1.0" ,
2024-09-10 21:44:39 +02:00
"eslint-plugin-promise" : "^7.1.0" ,
"rimraf" : "^6.0.1" ,
2025-02-05 15:29:47 +01:00
"tslib" : "^2.8.1" ,
"typedoc" : "0.27.6" ,
"typescript" : "5.7.3"
2021-12-30 18:39:29 +01:00
}
2020-10-12 01:22:43 +02:00
}