{
  "name": "@mcp-testing/server-tester",
  "version": "0.11.0",
  "description": "Playwright-based testing and evaluation framework for MCP servers",
  "keywords": [
    "playwright",
    "mcp",
    "model-context-protocol",
    "evals",
    "testing",
    "llm",
    "server-testing"
  ],
  "homepage": "https://github.com/mcp-testing/server-tester#readme",
  "bugs": {
    "url": "https://github.com/mcp-testing/server-tester/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/mcp-testing/server-tester.git"
  },
  "license": "MIT",
  "author": "MCP Testing Contributors",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./fixtures/mcp": {
      "types": "./dist/fixtures/mcp.d.ts",
      "import": "./dist/fixtures/mcp.js"
    },
    "./fixtures/mcpAuth": {
      "types": "./dist/fixtures/mcpAuth.d.ts",
      "import": "./dist/fixtures/mcpAuth.js"
    },
    "./reporters/mcpReporter": {
      "types": "./dist/reporters/mcpReporter.d.ts",
      "import": "./dist/reporters/mcpReporter.js",
      "require": "./dist/reporters/mcpReporter.cjs"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "mcp-test": "./dist/cli/index.js"
  },
  "files": [
    "dist",
    "src/reporters/ui-dist"
  ],
  "scripts": {
    "build": "npm run build:ui && tsup && npm run build:copy-ui",
    "build:copy-ui": "cp -r src/reporters/ui-dist dist/reporters/",
    "build:ui": "tsx src/reporters/build-ui.ts",
    "dev": "tsup --watch",
    "dev:ui": "tsx src/reporters/build-ui.ts --watch",
    "format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
    "format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
    "lint": "eslint . --ext .ts,.tsx",
    "lint:fix": "eslint . --ext .ts,.tsx --fix",
    "prepublishOnly": "npm run build",
    "preview-reporter": "tsx scripts/preview-reporter.ts",
    "test": "vitest run",
    "test:all": "pnpm build && pnpm format:check && pnpm lint && pnpm typecheck && pnpm test",
    "test:playwright": "playwright test",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@anthropic-ai/claude-agent-sdk": "^0.1.69",
    "@inkjs/ui": "^2.0.0",
    "@modelcontextprotocol/sdk": "^1.0.4",
    "commander": "^14.0.2",
    "debug": "^4.4.3",
    "ink": "^5.2.1",
    "ink-spinner": "^5.0.0",
    "oauth4webapi": "^3.0.0",
    "open": "^10.1.0",
    "react": "^18.3.1"
  },
  "devDependencies": {
    "@playwright/test": "^1.49.0",
    "@release-it-plugins/lerna-changelog": "^5.0.0",
    "@types/debug": "^4.1.12",
    "@types/node": "^22.10.2",
    "@types/react": "^18.3.12",
    "@types/react-dom": "^18.3.1",
    "@typescript-eslint/eslint-plugin": "^8.18.2",
    "@typescript-eslint/parser": "^8.18.2",
    "@vitest/ui": "^2.1.9",
    "autoprefixer": "^10.4.20",
    "esbuild": "^0.24.0",
    "eslint": "^8.57.1",
    "ink-testing-library": "^4.0.0",
    "lucide-react": "^0.460.0",
    "memfs": "^4.51.1",
    "postcss": "^8.4.49",
    "prettier": "^3.4.2",
    "react-dom": "^18.3.1",
    "release-it": "^15.5.0",
    "tailwindcss": "^3.4.15",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8",
    "zod": "^3.24.1"
  },
  "peerDependencies": {
    "@playwright/test": "^1.40.0",
    "zod": "^3.0.0"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "release-it": {
    "plugins": {
      "@release-it-plugins/lerna-changelog": {
        "infile": "CHANGELOG.md",
        "launchEditor": true
      }
    },
    "git": {
      "tagName": "v${version}"
    },
    "github": {
      "release": true,
      "tokenRef": "GITHUB_AUTH"
    }
  }
}
