{
  "name": "@dotsetlabs/bellwether",
  "version": "2.1.3",
  "description": "The open-source MCP testing tool. Structural drift detection and behavioral documentation for Model Context Protocol servers.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./cli": {
      "import": "./dist/cli/index.js"
    },
    "./logging": {
      "import": "./dist/logging/logger.js",
      "types": "./dist/logging/logger.d.ts"
    }
  },
  "bin": {
    "bellwether": "dist/cli/index.js"
  },
  "scripts": {
    "build": "tsc",
    "postbuild": "node ./scripts/postbuild.mjs",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "check:consistency": "node ./scripts/validate-consistency.mjs",
    "clean": "rm -rf dist",
    "docs:generate": "node ./scripts/build-docs.mjs",
    "docs:dev": "npm --prefix website run start",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "testing",
    "contract-testing",
    "schema-validation",
    "drift-detection",
    "ai-agents",
    "documentation",
    "behavioral-testing",
    "security",
    "llm",
    "openai",
    "anthropic",
    "cli",
    "command-line"
  ],
  "author": "Dotset Labs LLC <hello@dotsetlabs.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/dotsetlabs/bellwether"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/dotsetlabs"
  },
  "bugs": {
    "url": "https://github.com/dotsetlabs/bellwether/issues"
  },
  "homepage": "https://github.com/dotsetlabs/bellwether#readme",
  "engines": {
    "node": ">=20.0.0"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.74.0",
    "ajv": "^8.17.1",
    "chalk": "^5.4.1",
    "cli-progress": "^3.12.0",
    "commander": "^14.0.2",
    "dotenv": "^17.2.3",
    "openai": "^6.16.0",
    "pino": "^10.2.1",
    "pino-pretty": "^13.1.3",
    "yaml": "^2.3.4",
    "zod": "^3.25.76"
  },
  "optionalDependencies": {
    "keytar": "^7.9.0"
  },
  "devDependencies": {
    "@types/cli-progress": "^3.11.6",
    "@types/keytar": "^4.4.0",
    "@types/node": "^25.0.9",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "@vitest/coverage-v8": "^4.0.18",
    "eslint": "^8.57.1",
    "prettier": "^3.3.0",
    "tsx": "^4.21.0",
    "typescript": "^5.3.0",
    "vitest": "^4.0.17"
  },
  "files": [
    "dist",
    "!dist/**/*.map",
    "schemas",
    "scripts/completions",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "Dockerfile",
    ".dockerignore"
  ]
}
