{
  "name": "agent-panel",
  "version": "1.0.1",
  "description": "Launch multiple AI coding agents in parallel terminal splits",
  "keywords": [
    "agents",
    "ai",
    "claude",
    "cli",
    "cmux",
    "code-review",
    "codex",
    "ghostty",
    "multi-agent",
    "opencode",
    "splits",
    "terminal"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/venables/agent-panel.git"
  },
  "bin": {
    "agent-panel": "dist/index.mjs",
    "panel": "dist/index.mjs"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "scripts": {
    "build": "tsdown",
    "check": "bun run format:check && bun run lint && bun run typecheck && bun run test",
    "clean": "git clean -xdf node_modules/.cache dist",
    "cli": "bun src/index.ts",
    "dev": "bun src/index.ts",
    "fix": "bun run format && bun run lint:fix",
    "format": "oxfmt",
    "format:check": "bun run format -- --check",
    "lint": "oxlint --type-aware",
    "lint:fix": "bun run lint --fix --fix-suggestions",
    "lint:fixall": "bun run lint:fix --fix-dangerously",
    "nuke": "bun run clean && git clean -xdf node_modules",
    "outdated": "bunx npm-check-updates --interactive --format group",
    "prepublishOnly": "bun run check && bun run build && bunx publint",
    "start": "bun ./dist/index.mjs",
    "test": "bun test",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@clack/prompts": "^1.2.0",
    "citty": "^0.2.2",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "oxfmt": "latest",
    "oxlint": "latest",
    "oxlint-tsgolint": "latest",
    "tsdown": "latest",
    "typescript": "^5"
  },
  "engines": {
    "node": ">=22"
  }
}
