{
  "name": "apifox-workspace-mcp",
  "version": "2.1.7",
  "description": "Workspace-level Apifox MCP Server for intelligent API documentation integration in Cursor AI",
  "type": "module",
  "main": "dist/server/index.js",
  "types": "dist/server/index.d.ts",
  "bin": {
    "apifox-workspace-mcp": "dist/server/index.js"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "config/apifox-mcp.json.example"
  ],
  "scripts": {
    "build": "npm run clean && tsc",
    "clean": "rm -rf dist",
    "dev": "tsc --watch",
    "start": "node dist/server/index.js",
    "lint": "eslint 'src/**/*.ts' --fix",
    "lint:check": "eslint 'src/**/*.ts'",
    "format": "prettier --write 'src/**/*.ts'",
    "format:check": "prettier --check 'src/**/*.ts'",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:setup": "bash scripts/setup-test-project.sh",
    "test:interactive": "node scripts/test-interactive.mjs",
    "prepublishOnly": "npm run format:check && npm run lint:check && npm run typecheck && npm run test && npm run build",
    "preversion": "npm run format:check && npm run lint:check && npm run test",
    "postversion": "git push && bash scripts/push-tags.sh",
    "publish:check": "bash scripts/pre-publish-check.sh",
    "publish:dry": "npm publish --dry-run"
  },
  "keywords": [
    "mcp",
    "mcp-server",
    "model-context-protocol",
    "apifox",
    "api-documentation",
    "api",
    "cursor",
    "cursor-ai",
    "typescript",
    "code-generation"
  ],
  "author": "Apifox Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/apifox/apifox-workspace-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/apifox/apifox-workspace-mcp/issues"
  },
  "homepage": "https://github.com/apifox/apifox-workspace-mcp#readme",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.5.0",
    "axios": "^1.7.2",
    "js-yaml": "^4.1.0",
    "zod": "^3.23.8"
  },
  "optionalDependencies": {
    "playwright": "^1.57.0"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^20.14.10",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@vitest/coverage-v8": "^4.0.15",
    "eslint": "^9.0.0",
    "prettier": "^3.3.0",
    "typescript": "^5.3.3",
    "vitest": "^2.1.9"
  },
  "engines": {
    "node": ">=20"
  }
}
