{
  "name": "@agent-inspect/tui",
  "version": "6.31.3",
  "license": "MIT",
  "type": "module",
  "private": false,
  "description": "Optional Ink-based terminal UI for inspecting AgentInspect traces",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rajudandigam/agent-inspect.git",
    "directory": "packages/tui"
  },
  "bugs": {
    "url": "https://github.com/rajudandigam/agent-inspect/issues"
  },
  "homepage": "https://github.com/rajudandigam/agent-inspect/tree/main/packages/tui",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "README.md",
    "LICENSE",
    "dist"
  ],
  "dependencies": {
    "ink": "^5.0.1",
    "react": "^18.3.1",
    "agent-inspect": "6.31.3"
  },
  "devDependencies": {
    "@types/react": "^18.3.18"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "tui",
    "agent-inspect",
    "terminal",
    "typescript"
  ],
  "scripts": {
    "build": "pnpm --workspace-root exec tsup --config tsup.tui.config.ts",
    "test": "vitest run -c ../../vitest.config.ts"
  }
}