face-api/package.json

62 lines
1.7 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-01-03 17:05:14 +01:00
"version": "0.10.2",
2020-08-27 15:33:57 +02:00
"description": "JavaScript module for Face Detection and Face Recognition Using Tensorflow/JS",
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",
2020-08-18 14:22:32 +02:00
"engines": {
"node": ">=12.0.0"
},
2020-08-18 13:54:53 +02:00
"scripts": {
2020-12-23 17:26:55 +01:00
"start": "node --trace-warnings example/node-singleprocess.js",
2020-12-23 17:30:18 +01:00
"build": "rimraf dist/* types/* && node ./build.js",
2020-12-23 17:26:55 +01:00
"lint": "eslint src/**/*"
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",
"age-gender"
2020-08-18 13:54:53 +02:00
],
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/face-api.git"
},
2020-08-18 14:22:32 +02:00
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
2020-08-18 13:54:53 +02:00
"author": "Vladimir Mandic <mandic00@live.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladmandic/face-api/issues"
},
"homepage": "https://github.com/vladmandic/face-api#readme",
2020-12-08 14:33:00 +01:00
"dependencies": {
2021-01-03 17:05:09 +01:00
"@vladmandic/pilogger": "^0.2.11"
2020-12-08 14:33:00 +01:00
},
2020-08-18 13:54:53 +02:00
"devDependencies": {
2021-01-03 17:05:09 +01:00
"@tensorflow/tfjs": "^2.8.2",
"@tensorflow/tfjs-backend-wasm": "^2.8.2",
"@tensorflow/tfjs-node": "^2.8.2",
"@tensorflow/tfjs-node-gpu": "^2.8.2",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"esbuild": "^0.8.29",
"eslint": "^7.17.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",
"eslint-plugin-promise": "^4.2.1",
"rimraf": "^3.0.2",
2020-10-11 18:41:17 +02:00
"tslib": "^2.0.3",
2020-12-12 17:23:50 +01:00
"typescript": "^4.1.3"
2020-12-08 14:33:00 +01:00
}
2020-08-18 13:54:53 +02:00
}