{
  "name": "multi-captcha-solver-adapter",
  "version": "1.5.0",
  "description": "Node.js module that enables solving numeric, alphanumeric, Google reCAPTCHA, and more using multiple services, including Anti-Captcha and 2Captcha.",
  "type": "module",
  "files": [
    "src"
  ],
  "main": "src/main.js",
  "exports": {
    ".": {
      "import": "./src/main.js",
      "types": "./src/main.d.ts"
    },
    "./errors": {
      "import": "./src/errors/index.js",
      "types": "./src/errors/index.d.ts"
    }
  },
  "author": {
    "name": "Alexander Daza",
    "email": "dev.alexander.daza@gmail.com",
    "url": "https://github.com/devalexanderdaza"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/devalexanderdaza/multi-captcha-solver.git"
  },
  "homepage": "https://github.com/devalexanderdaza/multi-captcha-solver#readme",
  "bugs": {
    "url": "https://github.com/devalexanderdaza/multi-captcha-solver/issues"
  },
  "license": "Apache-2.0",
  "scripts": {
    "start": "node build/examples/example.js",
    "clean": "rimraf coverage build tmp",
    "prebuild": "yarn run lint",
    "build": "tsc -p tsconfig.json",
    "build:watch": "tsc -w -p tsconfig.json",
    "build:release": "yarn run clean && tsc -p tsconfig.release.json",
    "lint": "eslint . --ext .ts --ext .mts --max-warnings 0",
    "test": "jest --coverage",
    "test:integration": "jest --config jest.integration.config.js",
    "prettier": "prettier --config .prettierrc --write .",
    "test:watch": "jest --watch",
    "docs:generate": "typedoc",
    "docs:serve": "typedoc --watch",
    "semantic-release": "semantic-release"
  },
  "keywords": [
    "captcha",
    "solver",
    "multi",
    "numeric",
    "alphanumeric",
    "reCAPTCHA",
    "Google",
    "service",
    "Anti-Captcha",
    "2Captcha",
    "nodejs",
    "typescript",
    "automation",
    "testing",
    "scraping"
  ],
  "dependencies": {
    "@types/jsdom": "^21.1.7",
    "@types/node-fetch": "^2.6.12",
    "@zennolab_com/capmonstercloud-client": "^2.0.0",
    "2captcha": "^3.0.7",
    "anticaptcha": "^2.2.0",
    "jsdom": "^26.1.0",
    "node-fetch": "^3.3.2",
    "tslib": "~2.6"
  },
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "9.0.2",
    "@semantic-release/git": "10.0.1",
    "@semantic-release/github": "8.0.6",
    "@semantic-release/npm": "9.0.1",
    "@semantic-release/release-notes-generator": "10.0.3",
    "@types/jest": "~29.5",
    "@types/node": "~18",
    "@typescript-eslint/eslint-plugin": "~6.2",
    "@typescript-eslint/parser": "~6.2",
    "eslint": "~8.46",
    "eslint-config-prettier": "~9.0",
    "eslint-plugin-jest": "~27.2",
    "jest": "~29.6",
    "jest-junit": "^16.0.0",
    "prettier": "~3.0",
    "rimraf": "~5.0",
    "semantic-release": "^22.0.7",
    "ts-api-utils": "~1.0",
    "ts-jest": "~29.1",
    "typedoc": "^0.28.5",
    "typescript": "~5.1"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "release": {
    "branches": [
      "+([0-9])?(.{+([0-9]),x}).x",
      "main",
      "next",
      "next-major"
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      [
        "@semantic-release/npm",
        {
          "npmPublish": true,
          "pkgRoot": "./build"
        }
      ],
      [
        "@semantic-release/github",
        {
          "assets": [
            {
              "path": "release.tgz",
              "label": "Latest Release"
            }
          ]
        }
      ],
      "@semantic-release/git"
    ],
    "message": "chore(release):  ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
    "publish": {
      "npmToken": "${process.env.NPM_TOKEN}"
    },
    "files": [
      "build"
    ],
    "main": "build/main.js",
    "exports": {
      ".": {
        "import": "./build/main.js",
        "types": "./build/main.d.ts"
      },
      "./errors": {
        "import": "./build/errors/index.js",
        "types": "./build/errors/index.d.ts"
      }
    }
  }
}
