{
  "name": "ink-terminal",
  "version": "0.1.0-alpha.1",
  "description": "High-performance React terminal renderer with double-buffering, Yoga layout, and streaming markdown — extracted from Claude Code",
  "type": "module",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/anthropics/ink-terminal.git"
  },
  "homepage": "https://github.com/anthropics/ink-terminal#readme",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "bun": "./src/index.ts",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./core": {
      "bun": "./src/core/index.ts",
      "import": "./dist/core/index.js",
      "types": "./dist/core/index.d.ts"
    },
    "./react": {
      "bun": "./src/react/index.ts",
      "import": "./dist/react/index.js",
      "types": "./dist/react/index.d.ts"
    },
    "./termio": {
      "bun": "./src/termio/index.ts",
      "import": "./dist/termio/index.js",
      "types": "./dist/termio/index.d.ts"
    },
    "./layout": {
      "bun": "./src/layout/index.ts",
      "import": "./dist/layout/index.js",
      "types": "./dist/layout/index.d.ts"
    },
    "./events": {
      "bun": "./src/events/index.ts",
      "import": "./dist/events/index.js",
      "types": "./dist/events/index.d.ts"
    },
    "./markdown": {
      "bun": "./src/markdown/index.ts",
      "import": "./dist/markdown/index.js",
      "types": "./dist/markdown/index.d.ts"
    }
  },
  "files": [
    "dist",
    "src",
    "!src/**/__tests__",
    "!src/**/__tests__/**",
    "!src/**/*.test.ts",
    "!src/**/*.test.tsx",
    "LICENSE",
    "README.md",
    "README.zh-CN.md"
  ],
  "scripts": {
    "build": "bun run scripts/build.ts",
    "typecheck": "tsc --noEmit",
    "test": "bun test",
    "lint": "bunx biome check src/",
    "format": "bunx biome format --write src/",
    "prepublishOnly": "bun run build && bun run typecheck"
  },
  "peerDependencies": {
    "react": "^19.0.0",
    "react-reconciler": "^0.33.0"
  },
  "dependencies": {
    "@alcalzone/ansi-tokenize": "^0.3.0",
    "auto-bind": "^5.0.1",
    "bidi-js": "^1.0.3",
    "chalk": "^5.6.2",
    "cli-boxes": "^4.0.1",
    "code-excerpt": "^4.0.0",
    "emoji-regex": "^10.6.0",
    "get-east-asian-width": "^1.5.0",
    "indent-string": "^5.0.0",
    "lodash-es": "^4.17.23",
    "marked": "^17.0.5",
    "semver": "^7.7.4",
    "signal-exit": "^4.1.0",
    "stack-utils": "^2.0.6",
    "strip-ansi": "^7.2.0",
    "supports-hyperlinks": "^4.4.0",
    "type-fest": "^5.5.0",
    "usehooks-ts": "^3.1.1",
    "wrap-ansi": "^10.0.0"
  },
  "engines": {
    "bun": ">=1.0",
    "node": ">=20"
  },
  "keywords": [
    "terminal",
    "react",
    "ink",
    "tui",
    "cli",
    "rendering",
    "double-buffering",
    "virtual-scroll",
    "streaming-markdown",
    "yoga-layout",
    "terminal-ui",
    "ansi"
  ],
  "devDependencies": {
    "@biomejs/biome": "^2.4.10",
    "@types/node": "^25.5.0",
    "@types/react": "^19.2.14",
    "@types/semver": "^7.7.1",
    "@types/stack-utils": "^2.0.3"
  }
}
