{
  "name": "@portel/cli",
  "version": "1.1.0",
  "description": "CLI toolkit for building terminal applications - formatting, progress, fuzzy matching, logging",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "cli",
    "formatter",
    "progress",
    "spinner",
    "fuzzy",
    "logging",
    "terminal",
    "utilities"
  ],
  "author": "Portel",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/portel-dev/portel-cli"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "cli-highlight": "^2.1.11",
    "string-width": "^8.2.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "typescript": "^5.3.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
