{
  "name": "arcfetch",
  "version": "1.4.0",
  "description": "Fetch URLs, extract clean article content, and cache as markdown. Supports automatic JavaScript rendering via Playwright.",
  "type": "module",
  "main": "index.ts",
  "bin": {
    "arcfetch": "cli.ts"
  },
  "files": [
    "cli.ts",
    "index.ts",
    "src",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "bun run index.ts",
    "start": "bun run index.ts",
    "cli": "bun run cli.ts",
    "fetch": "bun run cli.ts fetch",
    "list": "bun run cli.ts list",
    "test": "bun test",
    "test:unit": "bun test tests/unit/",
    "test:integration": "bun test tests/integration/",
    "test:e2e": "bun test tests/e2e/",
    "test:coverage": "bun test --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "biome lint .",
    "lint:fix": "biome lint --write .",
    "format": "biome format --write .",
    "check": "biome check .",
    "check:fix": "biome check --write .",
    "postinstall": "playwright install --with-deps chromium 2>/dev/null || true"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.6.0",
    "@mozilla/readability": "^0.6.0",
    "linkedom": "^0.18.12",
    "playwright": "^1.57.0",
    "playwright-extra": "^4.3.6",
    "puppeteer-extra-plugin-stealth": "^2.11.2",
    "turndown": "^7.2.0",
    "turndown-plugin-gfm": "^1.0.2",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.10",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.2",
    "@types/bun": "^1.3.0",
    "@types/turndown": "^5.0.5",
    "semantic-release": "^25.0.2"
  },
  "keywords": [
    "fetch",
    "markdown",
    "readability",
    "mcp",
    "playwright",
    "web-scraping",
    "article-extraction"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/briansunter/arcfetch.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "release": {
    "branches": [
      "master"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "releaseRules": [
            {
              "breaking": true,
              "release": "minor"
            }
          ]
        }
      ],
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/github",
      [
        "@semantic-release/git",
        {
          "assets": [
            "package.json",
            "CHANGELOG.md"
          ],
          "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
        }
      ]
    ]
  }
}
