{
  "name": "codex-cli-architect-mcp",
  "version": "0.2.1",
  "description": "MCP server for OpenAI Codex CLI - Enable AI-powered coding assistance through Model Context Protocol",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "codex",
    "codex-cli",
    "ai",
    "coding-assistant",
    "openai",
    "claude",
    "architecture",
    "code-review"
  ],
  "homepage": "https://github.com/itto-ki/codex-cli-architect-mcp#readme",
  "bugs": {
    "url": "https://github.com/itto-ki/codex-cli-architect-mcp/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/itto-ki/codex-cli-architect-mcp.git"
  },
  "license": "MIT",
  "author": {
    "name": "Ittoh Kimura",
    "email": "kimura.itto.kd3@gmail.com"
  },
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "codex-cli-architect-mcp": "./dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsx watch src/index.ts",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "lint": "biome lint ./src",
    "format": "biome format --write ./src",
    "check": "biome check ./src",
    "check:fix": "biome check --write ./src",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run check && npm run typecheck && npm run test && npm run build",
    "prepare": "npm run build"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.17.2",
    "winston": "^3.17.0",
    "zod": "^3.25.76",
    "zod-to-json-schema": "^3.24.6"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.1.4",
    "@types/node": "^24.2.1",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "tsx": "^4.20.3",
    "typescript": "^5.9.2",
    "vitest": "^3.2.4"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}