face-api/package.json

48 lines
1.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",
2020-08-27 15:24:59 +02:00
"version": "0.3.9",
2020-08-18 13:54:53 +02:00
"description": "JavaScript API for face detection and face recognition in the browser with tensorflow.js",
"main": "./build/index.js",
"typings": "./build/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": {
"compile": "tsc",
2020-08-20 01:59:19 +02:00
"bundle": "esbuild --bundle --outfile=./dist/face-api.js --target=es2018 --platform=browser --format=iife --global-name=faceapi --sourcemap --log-level=error --tsconfig=./tsconfig.json build/index.js",
"minify": "esbuild --bundle --outfile=./dist/face-api.min.js --target=es2018 --platform=browser --sourcemap --format=iife --global-name=faceapi --log-level=error --minify --tsconfig=./tsconfig.json build/index.js",
2020-08-18 13:54:53 +02:00
"build": "npm run compile && npm run bundle && npm run minify"
},
"keywords": [
"face",
"detection",
"recognition",
"tensorflow",
"tf"
],
"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",
"dependencies": {
"@tensorflow/tfjs": "^2.3.0"
},
"devDependencies": {
"@types/node": "^14.6.0",
"canvas": "2.6.1",
2020-08-22 18:12:48 +02:00
"esbuild": "^0.6.27",
"ts-node": "^9.0.0",
2020-08-18 13:54:53 +02:00
"tslib": "^2.0.1",
2020-08-22 18:12:48 +02:00
"typescript": "^4.1.0-dev.20200822"
2020-08-18 13:54:53 +02:00
}
}