{
  "name": "mcp-codex-teams",
  "version": "1.0.1",
  "description": "MCP server for multi-agent team orchestration on OpenAI Codex CLI — spawn teammates, manage tasks, coordinate via inboxes",
  "main": "dist/index.js",
  "bin": {
    "mcp-codex-teams": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yigitkonur/mcp-codex-teams.git"
  },
  "bugs": {
    "url": "https://github.com/yigitkonur/mcp-codex-teams/issues"
  },
  "homepage": "https://github.com/yigitkonur/mcp-codex-teams#readme",
  "keywords": [
    "mcp",
    "codex",
    "openai",
    "claude",
    "agent-teams",
    "orchestration",
    "model-context-protocol"
  ],
  "author": "yigitkonur",
  "license": "ISC",
  "type": "module",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.24.0",
    "chalk": "^5.6.0",
    "zod": "^4.0.17"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^24.3.0",
    "@typescript-eslint/eslint-plugin": "^8.39.1",
    "@typescript-eslint/parser": "^8.39.1",
    "eslint": "^9.33.0",
    "jest": "^30.0.5",
    "prettier": "^3.6.2",
    "ts-jest": "^29.4.1",
    "tsx": "^4.20.4",
    "typescript": "^5.9.2"
  },
  "scripts": {
    "build": "tsc && mkdir -p dist/templates/overlays && cp src/templates/*.mdx dist/templates/ && cp src/templates/overlays/*.mdx dist/templates/overlays/",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "clean": "rm -rf dist"
  }
}