{
  "name": "webscraper-mcp-server",
  "version": "2.0.0",
  "description": "MCP server for web scraping and converting web pages to Markdown with Playwright support",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "webscraper-mcp": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsc --watch & nodemon dist/index.js",
    "install:browsers": "playwright install chromium",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "web-scraping",
    "markdown",
    "html-to-markdown",
    "playwright",
    "model-context-protocol"
  ],
  "author": "lucasbrito-wdt",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/lucasbrito-wdt/webscraper-mcp"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.4",
    "@playwright/browser-chromium": "^1.49.1",
    "axios": "^1.7.9",
    "cheerio": "^1.0.0",
    "express": "^4.21.2",
    "playwright": "^1.49.1",
    "turndown": "^7.2.0",
    "turndown-plugin-gfm": "^1.0.2",
    "zod": "^3.24.1"
  },
  "devDependencies": {
    "@types/express": "^5.0.0",
    "@types/node": "^22.10.5",
    "@types/turndown": "^5.0.5",
    "nodemon": "^3.1.9",
    "typescript": "^5.7.3"
  }
}
