imgrecog
Version:
Node.js tool to parse and act on images, using the Google Vision and Sightengine APIs.
60 lines (59 loc) • 1.51 kB
JSON
{
"name": "imgrecog",
"version": "2.0.0-alpha1",
"description": "Node.js tool to parse and act on images, using the Google Vision and Sightengine APIs.",
"homepage": "http://github.com/igoramadas/imgrecog",
"author": "Igor Ramadas <igor@devv.com>",
"license": "Apache-2.0",
"subdomain": "imgrecog.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"domains": [
"imgrecog.devv.com"
],
"bin": {
"imgrecog": "./bin/imgrecog"
},
"engines": {
"node": "*"
},
"scripts": {
"docs": "make docs"
},
"dependencies": {
"@google-cloud/vision": "^2.1.2",
"anyhow": "^2.0.5",
"async": "^3.2.0",
"chalk": "^4.1.0",
"exif": "^0.6.0",
"form-data": "^3.0.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/async": "^3.2.5",
"@types/node": "^14.14.14",
"@types/yargs": "^15.0.12",
"typedoc": "^0.19.2",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/igoramadas/imgrecog.git"
},
"keywords": [
"ai",
"cloud vision",
"sightengine",
"image detection",
"image recognition"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 250
}
}