{
  "name": "oxtail",
  "version": "0.34.0",
  "private": false,
  "type": "module",
  "description": "Coordination layer for parallel AI coding agent sessions, exposed over MCP.",
  "main": "dist/server.js",
  "bin": {
    "oxtail": "dist/server.js",
    "oxpit": "dist/oxpit-bin.js"
  },
  "files": [
    "dist",
    "scripts",
    "assets",
    "integrations",
    "docs/tools.md",
    "docs/protocol.md",
    ".claude/commands/oxtail-join.md",
    "AGENTS.md",
    "README.md",
    "CHANGELOG.md",
    "SECURITY.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "postbuild": "node scripts/make-bins-executable.mjs",
    "clean": "node scripts/clean-dist.mjs",
    "dev": "tsx watch src/server.ts",
    "start": "node dist/server.js",
    "pretest": "npm run build",
    "test": "node scripts/run-tests.mjs",
    "prepack": "npm run clean && npm run build",
    "prepublishOnly": "npm test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/d4j3y2k/oxtail.git"
  },
  "homepage": "https://github.com/d4j3y2k/oxtail#readme",
  "bugs": {
    "url": "https://github.com/d4j3y2k/oxtail/issues"
  },
  "author": "David Kim <d4j3y2k@gmail.com>",
  "license": "MIT",
  "keywords": [
    "mcp",
    "claude-code",
    "codex",
    "tmux",
    "agents",
    "model-context-protocol"
  ],
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.30.0",
    "jsonc-parser": "^3.3.1",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "tsx": "^4.21.0",
    "typescript": "^5.7.0"
  }
}
