{
  "name": "terminal-chat-ui",
  "version": "1.0.3",
  "description": "Shared UI components for terminal-based chat interfaces using Theater actors",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "author": "Colin Rozzi",
  "license": "MIT",
  "files": [
    "dist/",
    "src/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "dev": "tsc --watch",
    "type-check": "tsc --noEmit",
    "test": "echo 'No tests yet'",
    "prepublishOnly": "bun run build"
  },
  "peerDependencies": {
    "react": "^18.2.0",
    "ink": "^4.4.1",
    "ink-spinner": "^5.0.0"
  },
  "dependencies": {
    "chalk": "^5.3.0"
  },
  "devDependencies": {
    "@types/node": "^20.11.0",
    "@types/react": "^18.2.0",
    "typescript": "^5.3.0"
  },
  "engines": {
    "bun": ">=1.0.0",
    "node": ">=18.0.0"
  },
  "exports": {
    ".": "./dist/index.js",
    "./components": "./dist/components/index.js",
    "./hooks": "./dist/hooks/index.js",
    "./types": "./dist/types/index.js",
    "./utils": "./dist/utils/index.js"
  },
  "keywords": [
    "terminal",
    "chat",
    "ui",
    "react",
    "ink",
    "theater",
    "components",
    "cli"
  ]
}
