face-api/package.json

53 lines
1.3 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",
2020-12-15 14:15:47 +01:00
"version": "0.9.4",
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-08-18 14:22:32 +02:00
"engines": {
"node": ">=12.0.0"
},
2020-08-18 13:54:53 +02:00
"scripts": {
2020-11-03 19:50:14 +01:00
"start": "node --trace-warnings example/node.js",
"build": "rimraf dist/* && node ./build.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",
"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": {
2020-12-12 17:23:50 +01:00
"@vladmandic/pilogger": "^0.2.10"
2020-12-08 14:33:00 +01:00
},
2020-08-18 13:54:53 +02:00
"devDependencies": {
2020-12-15 14:15:43 +01:00
"@tensorflow/tfjs": "^2.8.0",
"@tensorflow/tfjs-node": "^2.8.0",
"@tensorflow/tfjs-node-gpu": "^2.8.0",
"@tensorflow/tfjs-backend-wasm": "^2.8.0",
"@types/node": "^14.14.13",
"esbuild": "^0.8.23",
"rimraf": "^3.0.2",
2020-12-12 17:23:50 +01:00
"ts-node": "^9.1.1",
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
}