face-api/package.json

81 lines
2.5 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",
2024-09-10 17:17:44 +02:00
"version": "1.7.14",
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-12-01 21:37:52 +01:00
"build": "node build.js",
2024-01-17 23:01:20 +01:00
"dev": "build --profile development",
"typings": "build --profile typings",
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
],
2022-07-25 14:20:59 +02:00
"devDependencies": {
2024-01-17 22:44:24 +01:00
"@canvas/image": "^2.0.0",
"@microsoft/api-extractor": "^7.49.2",
"@tensorflow/tfjs": "^4.22.0",
"@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/node": "^22.13.1",
2024-01-17 22:44:24 +01:00
"@types/offscreencanvas": "^2019.7.3",
2024-09-10 17:17:44 +02:00
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vladmandic/build": "^0.10.2",
2024-09-10 17:17:44 +02:00
"@vladmandic/pilogger": "^0.5.1",
"ajv": "^8.17.1",
"esbuild": "^0.24.2",
2024-09-10 17:17:44 +02:00
"eslint": "8.57.0",
2021-11-30 19:17:15 +01:00
"eslint-config-airbnb-base": "^15.0.0",
2024-09-10 17:17:44 +02:00
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-json": "^4.0.1",
2020-12-23 17:26:55 +01:00
"eslint-plugin-node": "^11.1.0",
2024-09-10 17:17:44 +02:00
"eslint-plugin-promise": "^7.1.0",
2024-01-17 22:44:24 +01:00
"node-fetch": "^3.3.2",
2024-09-10 17:17:44 +02:00
"rimraf": "^6.0.1",
2021-03-16 11:59:48 +01:00
"seedrandom": "^3.0.5",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typescript": "5.7.3"
2021-09-11 17:11:38 +02:00
}
2020-08-18 13:54:53 +02:00
}