{
  "name": "@zorilla/puppeteer-extra-plugin-recaptcha",
  "version": "2.0.1",
  "description": "A puppeteer-extra plugin to solve reCAPTCHAs and hCaptchas automatically.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "zorillajs/zorilla"
  },
  "homepage": "https://github.com/zorillajs/zorilla/tree/main/packages/puppeteer-extra-plugin-recaptcha",
  "authors": [
    "berstend",
    "Justin Beckwith <justin.beckwith@gmail.com>"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=22"
  },
  "keywords": [
    "puppeteer",
    "puppeteer-extra",
    "puppeteer-extra-plugin",
    "recaptcha",
    "hcaptcha",
    "captcha",
    "2captcha"
  ],
  "devDependencies": {
    "@types/debug": "^4.1.12",
    "@types/node": "^24.10.9",
    "@vitest/coverage-v8": "^4.1.2",
    "puppeteer": "^25.0.0",
    "typescript": "^7.0.0",
    "vitest": "^4.1.2",
    "@zorilla/puppeteer-extra": "2.0.2"
  },
  "dependencies": {
    "debug": "^4.4.3",
    "merge-deep": "^3.0.3",
    "@zorilla/puppeteer-extra-plugin": "2.0.1"
  },
  "peerDependencies": {
    "@zorilla/playwright-extra": "^2.0.0",
    "@zorilla/puppeteer-extra": "^2.0.2"
  },
  "peerDependenciesMeta": {
    "@zorilla/puppeteer-extra": {
      "optional": true
    },
    "@zorilla/playwright-extra": {
      "optional": true
    }
  },
  "scripts": {
    "clean": "rm -rf dist",
    "tscheck": "tsc --pretty --noEmit",
    "build": "tsc && cp src/puppeteer-mods.d.ts src/playwright-mods.d.ts dist/ && node -e \"const fs=require('fs');const content=fs.readFileSync('dist/types.d.ts','utf8');const refs='/// <reference path=\\\"./puppeteer-mods.d.ts\\\" />\\n/// <reference path=\\\"./playwright-mods.d.ts\\\" />\\n';if(!content.startsWith('///')){fs.writeFileSync('dist/types.d.ts',refs+content);}\"",
    "test": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}