UNPKG

recaptcha-solver

Version:

Solve reCAPTCHA challenges by using offline speech recognition.

58 lines 1.63 kB
{ "name": "recaptcha-solver", "version": "0.3.0", "description": "Solve reCAPTCHA challenges by using offline speech recognition.", "keywords": [ "reCAPTCHA", "playwright" ], "author": "JacobLinCool <jacoblincool@gmail.com> (https://github.com/JacobLinCool)", "license": "MIT", "main": "lib/index.js", "module": "lib/index.mjs", "types": "lib/index.d.ts", "bin": "scripts/postinstall.js", "files": [ "scripts", "lib" ], "devDependencies": { "@types/jest": "^27.5.2", "@types/node": "^17.0.45", "@types/wav": "^1.0.1", "@types/yauzl": "^2.10.0", "@typescript-eslint/eslint-plugin": "^5.32.0", "@typescript-eslint/parser": "^5.32.0", "eslint": "^8.21.0", "eslint-config-prettier": "^8.5.0", "jest": "^27.5.1", "prettier": "^2.7.1", "ts-jest": "^27.1.5", "tsup": "^5.12.9", "typedoc": "^0.22.18", "typescript": "^4.7.4" }, "dependencies": { "playwright-core": "^1.24.2", "vosk-koffi": "^1.0.8", "wav": "^1.0.2", "yauzl": "^2.10.0" }, "homepage": "https://github.com/JacobLinCool/recaptcha-solver#readme", "repository": { "type": "git", "url": "git+https://github.com/JacobLinCool/recaptcha-solver.git" }, "bugs": { "url": "https://github.com/JacobLinCool/recaptcha-solver/issues" }, "scripts": { "test": "jest --coverage", "dev": "tsup --watch", "build": "tsup", "docs": "typedoc ./src/", "format": "prettier --write '**/*.{js,ts,jsx,tsx,json,yml,yaml,md,html}' --ignore-path .gitignore", "lint": "eslint .", "postinstall": "node ./scripts/postinstall.js" } }