{
  "name": "crawlee-scraper-toolkit",
  "version": "2.0.2",
  "description": "A comprehensive TypeScript toolkit for building robust web scrapers with Crawlee, featuring maximum configurability and CLI generator",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "crawlee-scraper": "dist/cli/index.js"
  },
  "scripts": {
    "build": "./scripts/build.sh",
    "build:tsc": "tsc && chmod +x dist/cli/index.js",
    "dev": "ts-node -r tsconfig-paths/register src/index.ts",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "docs": "typedoc",
    "docs:watch": "typedoc --watch",
    "docs:serve": "pnpm docs && cd docs/api && python3 -m http.server 8080",
    "docs:html": "typedoc --theme default --out docs/html",
    "docs:json": "typedoc --json docs/api.json",
    "docs:build": "./scripts/docs.sh",
    "docs:clean": "rm -rf docs/",
    "docs:preview": "pnpm run docs:build && pnpm run docs:serve",
    "docs:package": "./scripts/package-docs.sh",
    "changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
    "changelog:all": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0",
    "semantic-release": "semantic-release",
    "semantic-release:dry": "semantic-release --dry-run",
    "prepare": "husky install",
    "prepublishOnly": "pnpm run build && pnpm test && pnpm run docs",
    "release": "semantic-release",
    "release:dry": "semantic-release --extends ./.releaserc.offline.json --dry-run --no-ci",
    "release:dry-full": "semantic-release --extends ./.releaserc.local.json --dry-run --no-ci || echo '⚠️  Error esperado: falta autenticación para GitHub/npm'",
    "release:preview": "semantic-release --dry-run",
    "release:analyze": "./scripts/analyze-release.sh",
    "release:legacy": "./scripts/release.sh",
    "health-check": "./scripts/health-check.sh",
    "health-check:advanced": "ts-node scripts/ci-analyzer.ts health",
    "perf:analyze": "ts-node scripts/ci-analyzer.ts performance",
    "ci:analyze": "ts-node scripts/ci-analyzer.ts all",
    "validate:dual-publish": "ts-node scripts/validate-dual-publish.ts",
    "test:dual-publish": "ts-node scripts/test-dual-publish.ts",
    "dual-publish": "./scripts/dual-publish-manager.sh",
    "cli": "ts-node -r tsconfig-paths/register src/cli/index.ts",
    "example:news": "ts-node -r tsconfig-paths/register --project tsconfig.examples.json examples/news-scraper.ts",
    "example:products": "ts-node -r tsconfig-paths/register --project tsconfig.examples.json examples/advanced-product-scraper.ts",
    "example:api": "ts-node -r tsconfig-paths/register --project tsconfig.examples.json examples/api-scraper.ts",
    "example:form": "ts-node -r tsconfig-paths/register --project tsconfig.examples.json examples/form-scraper.ts",
    "example:all": "pnpm run example:news && pnpm run example:products && pnpm run example:api && pnpm run example:form",
    "postinstall": "pnpm dlx playwright install"
  },
  "keywords": [
    "scraping",
    "crawlee",
    "playwright",
    "typescript",
    "web-scraping",
    "automation",
    "cli",
    "generator"
  ],
  "author": {
    "name": "Alexander Daza",
    "email": "dev.alexander.daza@gmail.com",
    "url": "https://github.com/devalexanderdaza"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/devalexanderdaza/crawlee-scraper-toolkit.git"
  },
  "bugs": {
    "url": "https://github.com/devalexanderdaza/crawlee-scraper-toolkit/issues"
  },
  "homepage": "https://github.com/devalexanderdaza/crawlee-scraper-toolkit#readme",
  "documentation": "https://devalexanderdaza.github.io/crawlee-scraper-toolkit",
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^11.1.0",
    "crawlee": "^3.7.0",
    "eventemitter3": "^5.0.0",
    "inquirer": "^9.2.0",
    "lodash": "^4.17.21",
    "ora": "^7.0.0",
    "playwright": "^1.40.0",
    "uuid": "^11.1.0",
    "winston": "^3.11.0",
    "yaml": "^2.3.0",
    "zod": "^3.22.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^13.0.1",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^11.0.3",
    "@semantic-release/npm": "^12.0.1",
    "@semantic-release/release-notes-generator": "^14.0.3",
    "@types/inquirer": "^9.0.0",
    "@types/jest": "^29.5.0",
    "@types/lodash": "^4.14.0",
    "@types/node": "^20.14.9",
    "@typescript-eslint/eslint-plugin": "^7.13.1",
    "@typescript-eslint/parser": "^7.13.1",
    "conventional-changelog-cli": "^5.0.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.0",
    "prettier": "^3.1.0",
    "semantic-release": "^24.2.5",
    "ts-jest": "^29.2.0",
    "ts-node": "^10.9.2",
    "tsc-alias": "^1.8.6",
    "tsconfig-paths": "^4.2.0",
    "typedoc": "^0.28.5",
    "typedoc-plugin-markdown": "^4.6.4",
    "typedoc-plugin-missing-exports": "^4.0.0",
    "typescript": "^5.5.2"
  },
  "engines": {
    "node": ">=20.0.0",
    "pnpm": ">=8.0.0"
  },
  "packageManager": "pnpm@9.4.0",
  "files": [
    "dist",
    "templates",
    "README.md",
    "LICENSE"
  ],
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}
