2020-08-18 13:54:53 +02:00
{
2020-08-18 14:22:32 +02:00
"name" : "@vladmandic/face-api" ,
2021-09-10 16:22:09 +02:00
"version" : "1.5.2" ,
2021-04-11 05:40:12 +02:00
"description" : "FaceAPI: AI-powered Face Detection & Rotation Tracking, Face Description & Recognition, Age & Gender & Emotion Prediction for Browser and NodeJS using TensorFlow/JS" ,
2021-03-09 19:38:30 +01:00
"sideEffects" : false ,
2020-10-27 17:51:38 +01:00
"main" : "dist/face-api.node.js" ,
2020-10-13 22:57:06 +02:00
"module" : "dist/face-api.esm.js" ,
2020-10-14 13:45:23 +02:00
"browser" : "dist/face-api.esm.js" ,
2021-09-10 16:22:09 +02:00
"types" : "types/src/index.d.ts" ,
2021-03-09 19:38:30 +01:00
"author" : "Vladimir Mandic <mandic00@live.com>" ,
"bugs" : {
"url" : "https://github.com/vladmandic/face-api/issues"
} ,
2021-03-14 13:47:38 +01:00
"homepage" : "https://vladmandic.github.io/face-api/demo/webcam.html" ,
2021-03-09 19:38:30 +01:00
"license" : "MIT" ,
2020-08-18 14:22:32 +02:00
"engines" : {
2021-07-29 15:05:01 +02:00
"node" : ">=14.0.0"
2020-08-18 14:22:32 +02:00
} ,
2021-03-09 19:38:30 +01:00
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/vladmandic/face-api.git"
} ,
2020-08-18 13:54:53 +02:00
"scripts" : {
2021-09-08 19:50:47 +02:00
"start" : "node --no-warnings demo/node.js" ,
"dev" : "build development" ,
"build" : "build production" ,
2021-06-04 15:17:04 +02:00
"test" : "node --trace-warnings test/test-node.js" ,
"scan" : "npx auditjs@latest ossi --dev --quiet"
2020-08-18 13:54:53 +02:00
} ,
"keywords" : [
2020-08-27 15:33:57 +02:00
"face-api" ,
2021-04-03 17:36:09 +02:00
"faceapi" ,
2020-08-27 15:33:57 +02:00
"face-detection" ,
2021-03-07 13:26:23 +01:00
"age-gender" ,
"emotion-detection" ,
2021-04-03 17:36:09 +02:00
"face-recognition" ,
"face" ,
"face-description" ,
"tensorflow" ,
"tensorflowjs" ,
"tfjs"
2020-08-18 13:54:53 +02:00
] ,
"devDependencies" : {
2021-04-15 22:59:35 +02:00
"@canvas/image" : "^1.0.1" ,
2021-09-10 16:22:09 +02:00
"@tensorflow/tfjs-backend-cpu" : "^3.9.0" ,
2021-08-31 18:21:05 +02:00
"@tensorflow/tfjs-backend-wasm" : "^3.9.0" ,
2021-09-10 16:22:09 +02:00
"@tensorflow/tfjs-backend-webgl" : "^3.9.0" ,
"@tensorflow/tfjs-converter" : "^3.9.0" ,
"@tensorflow/tfjs-core" : "^3.9.0" ,
"@tensorflow/tfjs-data" : "^3.9.0" ,
"@tensorflow/tfjs-layers" : "^3.9.0" ,
2021-08-31 18:21:05 +02:00
"@tensorflow/tfjs-node-gpu" : "^3.9.0" ,
2021-09-10 16:22:09 +02:00
"@tensorflow/tfjs-node" : "^3.9.0" ,
"@tensorflow/tfjs" : "^3.9.0" ,
"@types/node" : "^16.9.1" ,
2021-09-08 19:50:47 +02:00
"@typescript-eslint/eslint-plugin" : "^4.31.0" ,
"@typescript-eslint/parser" : "^4.31.0" ,
2021-09-10 16:22:09 +02:00
"@vladmandic/build" : "^0.3.3" ,
"@vladmandic/pilogger" : "^0.3.1" ,
2021-05-18 14:10:36 +02:00
"canvas" : "^2.8.0" ,
2021-06-18 13:19:03 +02:00
"chokidar" : "^3.5.2" ,
2021-09-10 16:22:09 +02:00
"dayjs" : "^1.10.7" ,
"esbuild" : "^0.12.26" ,
2020-12-23 17:26:55 +01:00
"eslint-config-airbnb-base" : "^14.2.1" ,
2021-08-31 18:21:05 +02:00
"eslint-plugin-import" : "^2.24.2" ,
2021-08-10 14:19:49 +02:00
"eslint-plugin-json" : "^3.1.0" ,
2020-12-23 17:26:55 +01:00
"eslint-plugin-node" : "^11.1.0" ,
2021-04-13 17:24:07 +02:00
"eslint-plugin-promise" : "^5.1.0" ,
2021-09-10 16:22:09 +02:00
"eslint" : "^7.32.0" ,
2021-09-05 23:06:09 +02:00
"node-fetch" : "^3.0.0" ,
2020-09-16 18:43:53 +02:00
"rimraf" : "^3.0.2" ,
2021-03-16 11:59:48 +01:00
"seedrandom" : "^3.0.5" ,
2021-09-05 23:06:09 +02:00
"simple-git" : "^2.45.1" ,
2021-08-31 18:21:05 +02:00
"tslib" : "^2.3.1" ,
"typedoc" : "^0.21.9" ,
"typescript" : "4.4.2"
2021-09-08 19:50:47 +02:00
} ,
2021-09-10 16:22:09 +02:00
"dependencies" : { }
2020-08-18 13:54:53 +02:00
}