{
  "name": "@loglayer/transport-pretty-terminal",
  "description": "Interactive pretty log output in the terminal for the LogLayer logging library.",
  "version": "6.2.0",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "exports": {
    "import": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "require": "./dist/index.cjs"
    }
  },
  "types": "./dist/index.d.mts",
  "sideEffects": false,
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/loglayer/loglayer.git",
    "directory": "packages/transports/pretty-terminal"
  },
  "author": "Theo Gravity <theo@suteki.nu>",
  "keywords": [
    "logging",
    "log",
    "loglayer",
    "terminal",
    "search",
    "filter",
    "pretty print",
    "transport"
  ],
  "dependencies": {
    "chalk": "5.6.2",
    "cli-truncate": "5.1.1",
    "keypress": "0.2.1",
    "wrap-ansi": "9.0.2",
    "@loglayer/shared": "4.3.0",
    "@loglayer/transport": "3.2.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "7.6.13",
    "@types/keypress": "2.0.30",
    "better-sqlite3": "12.10.0",
    "@types/node": "25.9.1",
    "serialize-error": "13.0.1",
    "tsdown": "0.22.1",
    "tsx": "4.22.3",
    "typescript": "6.0.3",
    "@internal/tsconfig": "2.1.0",
    "loglayer": "9.3.0"
  },
  "bugs": "https://github.com/loglayer/loglayer/issues",
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist"
  ],
  "homepage": "https://loglayer.dev",
  "scripts": {
    "build": "tsdown src/index.ts",
    "clean": "rm -rf .turbo node_modules dist",
    "lint": "biome check --no-errors-on-unmatched --write --unsafe src",
    "lint:staged": "biome check --no-errors-on-unmatched --write --unsafe --staged src",
    "verify-types": "tsc --noEmit",
    "livetest": "tsx src/__tests__/livetest.ts",
    "livetest:bun": "bun src/__tests__/livetest-bun-sqlite.ts"
  }
}