2captcha-node
Version:
A NodeJS wrapper to solve image captchas with 2captcha
53 lines (52 loc) • 1.17 kB
JSON
{
"name": "2captcha-node",
"version": "2.2.1",
"description": "A NodeJS wrapper to solve image captchas with 2captcha",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/pedroapfilho/2captcha-node.git",
"keywords": [
"2captcha",
"captcha",
"wrapper",
"solve"
],
"bugs": {
"url": "https://github.com/pedroapfilho/2captcha-node/issues"
},
"author": "Pedro Filho <pedro@filho.me>",
"license": "MIT",
"homepage": "https://github.com/pedroapfilho/2captcha-node#readme",
"module": "dist/captcha-node.esm.js",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node-fetch": "^2.5.7",
"husky": "^4.3.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}