{
  "name": "@kb-labs/shared-cli-ui",
  "description": "Shared CLI UI utilities for KB Labs projects - colors, formatting, progress indicators",
  "version": "2.117.0",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./debug": {
      "types": "./dist/debug.d.ts",
      "import": "./dist/debug.js"
    },
    "./table": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./interactive": {
      "types": "./dist/interactive/index.d.ts",
      "import": "./dist/interactive/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "glob": "^11.0.0",
    "@kb-labs/plugin-contracts": "2.117.0"
  },
  "devDependencies": {
    "@types/node": "^24.3.3",
    "eslint": "^9",
    "rimraf": "^6.0.1",
    "tsup": "^8.5.0",
    "typescript": "^5.6.3",
    "vitest": "^3.2.6",
    "@kb-labs/devkit": "2.117.0"
  },
  "engines": {
    "node": ">=22.0.0",
    "pnpm": ">=9.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "typesVersions": {
    "*": {
      "*": [
        "src/*"
      ],
      "debug": [
        "src/debug"
      ],
      "debug/*": [
        "src/debug/*"
      ],
      "interactive": [
        "src/interactive"
      ]
    }
  },
  "scripts": {
    "build": "tsup --config tsup.config.ts",
    "clean": "rimraf dist",
    "dev": "tsup --config tsup.config.ts --watch",
    "lint": "eslint src --ext .ts,.tsx,.js,.jsx",
    "lint:fix": "eslint . --fix",
    "test": "vitest run --passWithNoTests",
    "test:watch": "vitest",
    "type-check": "tsc --noEmit"
  }
}