face-api/package.json

62 lines
1.7 KiB
JSON

{
"name": "@vladmandic/face-api",
"version": "0.9.5",
"description": "JavaScript module for Face Detection and Face Recognition Using Tensorflow/JS",
"main": "dist/face-api.node.js",
"module": "dist/face-api.esm.js",
"browser": "dist/face-api.esm.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node --trace-warnings example/node-singleprocess.js",
"build": "rimraf dist/* && node ./build.js",
"lint": "eslint src/**/*"
},
"keywords": [
"tensorflow",
"tf",
"tfjs",
"face",
"face-api",
"face-detection",
"age-gender"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/face-api.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"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",
"dependencies": {
"@vladmandic/pilogger": "^0.2.10"
},
"devDependencies": {
"@tensorflow/tfjs": "^2.8.1",
"@tensorflow/tfjs-backend-wasm": "^2.8.1",
"@tensorflow/tfjs-node": "^2.8.1",
"@tensorflow/tfjs-node-gpu": "^2.8.1",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"esbuild": "^0.8.26",
"eslint": "^7.16.0",
"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",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}