{
  "name": "@ifi/pi-bash-live-view",
  "version": "0.5.1",
  "description": "PTY-backed live bash rendering for pi with a real-time terminal widget and /bash-pty command.",
  "keywords": [
    "bash",
    "live-view",
    "pi",
    "pi-coding-agent",
    "pi-package",
    "pty",
    "terminal"
  ],
  "homepage": "https://github.com/ifiokjr/oh-pi/tree/main/packages/pi-bash-live-view",
  "bugs": {
    "url": "https://github.com/ifiokjr/oh-pi/issues"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ifiokjr/oh-pi.git",
    "directory": "packages/pi-bash-live-view"
  },
  "files": [
    "*.ts",
    "src",
    "README.md",
    "!**/*.test.ts",
    "!tests/**"
  ],
  "type": "module",
  "dependencies": {
    "@xterm/headless": "^6.0.0",
    "node-pty": "^1.0.0"
  },
  "peerDependencies": {
    "@mariozechner/pi-agent-core": ">=0.56.1",
    "@mariozechner/pi-ai": ">=0.56.1",
    "@mariozechner/pi-coding-agent": ">=0.56.1",
    "@mariozechner/pi-tui": ">=0.56.1",
    "@sinclair/typebox": "*"
  },
  "pi": {
    "extensions": [
      "./index.ts"
    ]
  },
  "scripts": {
    "build": "pnpm run typecheck && pnpm run test:worktree",
    "typecheck": "tsgo --project ./tsconfig.json --noEmit",
    "test:coverage": "vitest run --config ./vitest.config.ts --coverage",
    "test:worktree": "vitest run --config ./vitest.config.ts"
  }
}