2020-10-12 01:22:43 +02:00
{
"name" : "@vladmandic/human" ,
2022-09-21 19:49:11 +02:00
"version" : "2.10.3" ,
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" : {
2022-09-08 16:22:45 +02:00
"node" : {
"require" : "./dist/human.node.js" ,
"import" : "./dist/human.node.js" ,
"module" : "./dist/human.node.js"
} ,
2022-08-12 15:13:48 +02:00
"require" : "./dist/human.node.js" ,
"import" : "./dist/human.esm.js" ,
"script" : "./dist/human.js" ,
"module" : "./dist/human.esm.js" ,
"types" : "./types/human.d.ts"
} ,
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-08-21 19:34:51 +02:00
"lint" : "eslint *.json *.js src demo test models" ,
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" : {
2022-09-17 23:19:51 +02:00
"@html-eslint/eslint-plugin" : "^0.14.1" ,
"@html-eslint/parser" : "^0.14.0" ,
"@microsoft/api-extractor" : "^7.31.1" ,
2022-08-24 14:10:36 +02:00
"@tensorflow/tfjs" : "^3.20.0" ,
"@tensorflow/tfjs-backend-cpu" : "^3.20.0" ,
"@tensorflow/tfjs-backend-wasm" : "^3.20.0" ,
"@tensorflow/tfjs-backend-webgl" : "^3.20.0" ,
2022-08-31 17:29:19 +02:00
"@tensorflow/tfjs-backend-webgpu" : "0.0.1-alpha.13" ,
2022-08-24 14:10:36 +02:00
"@tensorflow/tfjs-converter" : "^3.20.0" ,
"@tensorflow/tfjs-core" : "^3.20.0" ,
"@tensorflow/tfjs-data" : "^3.20.0" ,
"@tensorflow/tfjs-layers" : "^3.20.0" ,
"@tensorflow/tfjs-node" : "^3.20.0" ,
"@tensorflow/tfjs-node-gpu" : "^3.20.0" ,
2022-07-19 23:49:58 +02:00
"@tensorflow/tfjs-tflite" : "0.0.1-alpha.8" ,
2022-09-14 17:39:12 +02:00
"@types/node" : "^18.7.18" ,
2022-05-30 03:12:18 +02:00
"@types/offscreencanvas" : "^2019.7.0" ,
2022-09-21 19:49:11 +02:00
"@typescript-eslint/eslint-plugin" : "^5.38.0" ,
"@typescript-eslint/parser" : "^5.38.0" ,
2022-09-11 18:26:24 +02:00
"@vladmandic/build" : "^0.7.12" ,
2022-08-08 19:38:16 +02:00
"@vladmandic/pilogger" : "^0.4.6" ,
2021-11-15 15:26:38 +01:00
"@vladmandic/tfjs" : "github:vladmandic/tfjs" ,
2022-08-04 15:15:13 +02:00
"@webgpu/types" : "^0.1.21" ,
2022-09-11 18:26:24 +02:00
"canvas" : "^2.10.1" ,
2022-09-19 16:46:11 +02:00
"esbuild" : "^0.15.8" ,
2022-09-14 17:39:12 +02:00
"eslint" : "8.23.1" ,
2021-11-10 18:21:45 +01:00
"eslint-config-airbnb-base" : "^15.0.0" ,
2022-07-26 13:36:57 +02:00
"eslint-plugin-html" : "^7.1.0" ,
2022-04-10 16:13:13 +02:00
"eslint-plugin-import" : "^2.26.0" ,
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" ,
2022-08-28 19:12:27 +02:00
"eslint-plugin-promise" : "^6.0.1" ,
2022-08-20 15:29:22 +02:00
"node-fetch" : "^3.2.10" ,
2021-09-19 01:09:02 +02:00
"rimraf" : "^3.0.2" ,
2021-03-16 12:16:25 +01:00
"seedrandom" : "^3.0.5" ,
2022-05-09 14:14:00 +02:00
"tslib" : "^2.4.0" ,
2022-09-19 16:46:11 +02:00
"typedoc" : "0.23.15" ,
2022-09-11 18:26:24 +02:00
"typescript" : "4.8.3"
2021-12-30 18:39:29 +01:00
}
2020-10-12 01:22:43 +02:00
}