face-api/package.json

67 lines
1.9 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",
2021-03-14 18:38:13 +01:00
"version": "1.1.1",
2021-01-12 16:01:08 +01:00
"description": "FaceAPI: AI-powered Face Detection, Face Embedding & Recognition 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",
2020-12-23 17:26:55 +01:00
"types": "types/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": {
"node": ">=12.0.0"
},
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-03-14 13:47:38 +01:00
"start": "node --trace-warnings demo/node-singleprocess.js",
2021-02-13 14:38:41 +01:00
"dev": "npm install && node server/serve.js",
2021-03-14 13:47:38 +01:00
"build": "rimraf dist/* types/* typedoc/* && node server/build.js",
"lint": "eslint src/**/* demo/*.js server/*.js",
"test": "eslint src/**/* demo/*.js server/*.js"
2020-08-18 13:54:53 +02:00
},
"keywords": [
"tensorflow",
2020-08-27 15:33:57 +02:00
"tf",
"tfjs",
"face",
"face-api",
"face-detection",
2021-03-07 13:26:23 +01:00
"age-gender",
"emotion-detection",
"face-recognition"
2020-08-18 13:54:53 +02:00
],
2021-02-26 22:03:04 +01:00
"peerDependencies": {},
2020-08-18 13:54:53 +02:00
"devDependencies": {
2021-03-09 23:32:33 +01:00
"@tensorflow/tfjs": "^3.3.0",
"@tensorflow/tfjs-backend-wasm": "^3.3.0",
"@tensorflow/tfjs-node": "^3.3.0",
"@tensorflow/tfjs-node-gpu": "^3.3.0",
2021-03-13 18:21:32 +01:00
"@types/node": "^14.14.34",
2021-03-09 19:33:07 +01:00
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
2021-02-26 22:03:04 +01:00
"@vladmandic/pilogger": "^0.2.14",
2021-01-20 14:15:16 +01:00
"chokidar": "^3.5.1",
2021-03-08 20:17:39 +01:00
"dayjs": "^1.10.4",
2021-03-13 18:21:32 +01:00
"esbuild": "^0.9.2",
"eslint": "^7.22.0",
2020-12-23 17:26:55 +01:00
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
2021-02-12 15:11:00 +01:00
"eslint-plugin-promise": "^4.3.1",
"rimraf": "^3.0.2",
2021-03-13 18:21:32 +01:00
"simple-git": "^2.36.2",
2021-01-10 16:35:51 +01:00
"tslib": "^2.1.0",
2021-03-14 13:47:38 +01:00
"typedoc": "^0.20.31",
2021-03-07 13:26:23 +01:00
"typescript": "^4.2.3"
2020-12-08 14:33:00 +01:00
}
2020-08-18 13:54:53 +02:00
}