human/package.json

93 lines
2.9 KiB
JSON
Raw Normal View History

2020-10-12 01:22:43 +02:00
{
"name": "@vladmandic/human",
2021-12-01 14:21:55 +01:00
"version": "2.5.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",
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",
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",
2021-09-11 03:21:29 +02:00
"lint": "eslint src demo test",
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": {
2021-12-09 20:44:26 +01:00
"@microsoft/api-extractor": "^7.19.1",
"@tensorflow/tfjs": "^3.12.0",
"@tensorflow/tfjs-backend-cpu": "^3.12.0",
"@tensorflow/tfjs-backend-wasm": "^3.12.0",
"@tensorflow/tfjs-backend-webgl": "^3.12.0",
2021-10-02 13:46:07 +02:00
"@tensorflow/tfjs-backend-webgpu": "^0.0.1-alpha.8",
2021-12-09 20:44:26 +01:00
"@tensorflow/tfjs-converter": "^3.12.0",
"@tensorflow/tfjs-core": "^3.12.0",
"@tensorflow/tfjs-data": "^3.12.0",
"@tensorflow/tfjs-layers": "^3.12.0",
"@tensorflow/tfjs-node": "^3.12.0",
"@tensorflow/tfjs-node-gpu": "^3.12.0",
"@types/node": "^16.11.12",
2021-11-18 16:06:07 +01:00
"@types/offscreencanvas": "^2019.6.4",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
2021-12-01 14:21:55 +01:00
"@vladmandic/build": "^0.6.6",
2021-11-02 16:07:11 +01:00
"@vladmandic/pilogger": "^0.3.5",
2021-11-15 15:26:38 +01:00
"@vladmandic/tfjs": "github:vladmandic/tfjs",
2021-05-18 14:14:56 +02:00
"canvas": "^2.8.0",
2021-09-11 03:21:29 +02:00
"dayjs": "^1.10.7",
"esbuild": "^0.14.2",
"eslint": "8.4.1",
2021-11-10 18:21:45 +01:00
"eslint-config-airbnb-base": "^15.0.0",
2021-10-26 21:08:05 +02:00
"eslint-plugin-html": "^6.2.0",
2021-11-10 18:21:45 +01:00
"eslint-plugin-import": "^2.25.3",
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-12-01 14:21:55 +01:00
"eslint-plugin-promise": "^5.2.0",
"node-fetch": "^3.1.0",
"rimraf": "^3.0.2",
2021-03-16 12:16:25 +01:00
"seedrandom": "^3.0.5",
2021-08-12 15:29:48 +02:00
"tslib": "^2.3.1",
2021-11-26 17:55:52 +01:00
"typedoc": "0.22.10",
2021-11-17 22:50:21 +01:00
"typescript": "4.5.2"
2021-10-28 19:59:57 +02:00
}
2020-10-12 01:22:43 +02:00
}