{
  "name": "@r3b1s/tmux-pilot",
  "version": "1.0.0",
  "description": "Spawn subagents as real coding agent processes in detached tmux windows — full TUI observability, guard lifecycle, settings UI, and debug log viewer.",
  "repository": {
    "type": "git",
    "url": "https://github.com/r3b1s/tmux-pilot.git"
  },
  "type": "module",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "pi-package",
    "pi-extension",
    "tmux",
    "subagents",
    "observability",
    "tmux-pilot"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "README.md",
    "LICENSE",
    "package.json"
  ],
  "imports": {
    "#src/*": {
      "types": "./src/*.ts",
      "default": "./dist/*.js"
    },
    "#test/*": "./test/*.ts"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ]
  },
  "engines": {
    "node": ">=22"
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*",
    "@r3b1s/pi-repair-layer": ">=0.4.1",
    "@sinclair/typebox": "*"
  },
  "peerDependenciesMeta": {
    "@r3b1s/pi-repair-layer": {
      "optional": true
    }
  },
  "dependencies": {
    "@anthropic-ai/sandbox-runtime": "0.0.66",
    "js-yaml": "^4.1.0",
    "smol-toml": "^1.7.0",
    "yaml": "^2.9.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.8",
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*",
    "@r3b1s/pi-repair-layer": "^0.4.1",
    "@sinclair/typebox": "*",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^24.0.0",
    "eslint": "^9.25.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.31.1",
    "vitest": "^2.1.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json && cp src/child/claude-code-hook.sh dist/child/claude-code-hook.sh && rm -rf dist/child/hermes-plugin dist/web && cp -r src/child/hermes-plugin dist/child/hermes-plugin && cp -r src/web dist/web",
    "webui:dev": "pnpm build && node scripts/webui-dev.mjs",
    "check": "tsc --noEmit",
    "test": "vitest run",
    "lint": "biome check src/ test/",
    "format": "biome check --write src/ test/",
    "clean": "rm -rf dist node_modules coverage"
  }
}