{
  "name": "@ai-debug/mcp-server",
  "version": "0.1.0",
  "description": "Pure MCP debugging server for AI-powered debugging tools",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "ai-debug-mcp": "./bin/ai-debug-mcp"
  },
  "scripts": {
    "build": "tsc && node scripts/fix-imports.js",
    "build:watch": "tsc --watch",
    "dev": "npm run build:watch",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "test": "jest",
    "lint": "eslint src --ext .ts",
    "type-check": "tsc --noEmit",
    "fix-imports": "node scripts/fix-imports.js"
  },
  "keywords": [
    "mcp",
    "debugging",
    "ai",
    "playwright",
    "devtools",
    "testing"
  ],
  "author": "AI Debug Team",
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "bin",
    "scripts",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.5.0",
    "playwright": "^1.40.0",
    "nanoid": "^5.1.5",
    "node-fetch": "^3.3.2",
    "ws": "^8.18.3"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.0.0",
    "ts-jest": "^29.0.0",
    "typescript": "^5.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ai-debug/mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/ai-debug/mcp-server/issues"
  },
  "homepage": "https://github.com/ai-debug/mcp-server#readme"
}