face-api/package.json

84 lines
2.6 KiB
JSON
Raw Normal View History

2020-08-18 13:54:53 +02:00
{
2020-08-18 14:22:32 +02:00
"name": "@vladmandic/face-api",
2022-05-24 13:18:51 +02:00
"version": "1.6.11",
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-12-01 21:37:52 +01:00
"types": "types/face-api.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",
2021-09-11 17:11:38 +02:00
"dev": "build --profile development",
2021-12-01 21:37:52 +01:00
"build": "node build.js",
2022-01-01 13:55:12 +01:00
"lint": "eslint src/ demo/",
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": {
"@canvas/image": "^1.0.1",
2022-05-24 13:16:42 +02:00
"@microsoft/api-extractor": "^7.24.1",
"@tensorflow/tfjs": "^3.18.0",
"@tensorflow/tfjs-backend-cpu": "^3.18.0",
"@tensorflow/tfjs-backend-wasm": "^3.18.0",
"@tensorflow/tfjs-backend-webgl": "^3.18.0",
"@tensorflow/tfjs-backend-webgpu": "0.0.1-alpha.11",
"@tensorflow/tfjs-converter": "^3.18.0",
"@tensorflow/tfjs-core": "^3.18.0",
"@tensorflow/tfjs-data": "^3.18.0",
"@tensorflow/tfjs-layers": "^3.18.0",
"@tensorflow/tfjs-node": "^3.18.0",
"@tensorflow/tfjs-node-gpu": "^3.18.0",
"@types/node": "^17.0.35",
2021-12-01 21:37:52 +01:00
"@types/offscreencanvas": "^2019.6.4",
2022-05-24 13:16:42 +02:00
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
2022-05-18 14:36:05 +02:00
"@vladmandic/build": "^0.7.4",
2022-04-01 15:15:45 +02:00
"@vladmandic/pilogger": "^0.4.4",
2021-12-01 21:37:52 +01:00
"@vladmandic/tfjs": "github:vladmandic/tfjs",
2022-04-01 15:15:45 +02:00
"canvas": "^2.9.1",
2022-02-07 15:41:55 +01:00
"chokidar": "^3.5.3",
2022-05-09 14:11:31 +02:00
"dayjs": "^1.11.2",
2022-05-18 14:36:05 +02:00
"esbuild": "^0.14.39",
2022-05-24 13:16:42 +02:00
"eslint": "^8.16.0",
2021-11-30 19:17:15 +01:00
"eslint-config-airbnb-base": "^15.0.0",
2022-04-09 15:48:06 +02:00
"eslint-plugin-import": "^2.26.0",
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-12-27 16:52:58 +01:00
"eslint-plugin-promise": "^6.0.0",
2022-05-09 14:11:31 +02:00
"node-fetch": "^3.2.4",
"rimraf": "^3.0.2",
2021-03-16 11:59:48 +01:00
"seedrandom": "^3.0.5",
2022-05-09 14:11:31 +02:00
"simple-git": "^3.7.1",
"tslib": "^2.4.0",
"typedoc": "^0.22.15",
"typescript": "4.6.4"
2021-09-11 17:11:38 +02:00
}
2020-08-18 13:54:53 +02:00
}