{
  "name": "@vinxi/scraper",
  "version": "0.1.1",
  "description": "Agent-native scraping engine: defineScraper() runtime with stealth Playwright, checkpoints, task queues, and reconnaissance tools (hydration payload walker, XHR capture, visual audit, validation scorecards). Built to be driven by the site-reconnaissance agent skill.",
  "type": "module",
  "license": "MIT",
  "homepage": "https://github.com/nksaraf/skills",
  "keywords": [
    "scraper",
    "scraping",
    "playwright",
    "agent",
    "agent-skills",
    "reconnaissance",
    "bun"
  ],
  "engines": {
    "bun": ">=1.0.0"
  },
  "bin": {
    "vinxi-scraper": "bin/vinxi-scraper.mjs"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
    "./define": { "types": "./dist/define.d.ts", "default": "./dist/define.js" },
    "./recon": { "types": "./dist/recon/index.d.ts", "default": "./dist/recon/index.js" },
    "./retail": { "types": "./dist/retail.d.ts", "default": "./dist/retail.js" }
  },
  "files": [
    "dist",
    "bin",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -rf dist && tsgo -p tsconfig.build.json",
    "test": "bun test __tests__",
    "typecheck": "tsgo --noEmit",
    "scraper": "bun run src/cli.ts",
    "scrape:youtube": "bun run scrapers/brand-intel/youtube/cli.ts",
    "prepublishOnly": "bun run build"
  },
  "dependencies": {
    "cheerio": "^1.0.0"
  },
  "devDependencies": {
    "@types/bun": "^1.3.11",
    "playwright": "^1.52.0"
  },
  "peerDependencies": {
    "playwright": ">=1.50.0"
  }
}
