{
  "name": "@liveport/cli",
  "version": "0.1.1",
  "description": "CLI client for LivePort - secure localhost tunnels for AI agents",
  "type": "module",
  "bin": {
    "liveport": "./dist/index.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "echo 'Skipping lint - ESLint not configured' && exit 0",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist",
    "prepublishOnly": "pnpm build"
  },
  "keywords": [
    "cli",
    "tunnel",
    "localhost",
    "liveport",
    "ai-agents",
    "ngrok-alternative",
    "developer-tools"
  ],
  "author": "LivePort",
  "license": "MIT",
  "homepage": "https://liveport.dev",
  "bugs": {
    "url": "https://github.com/dundas/liveport/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dundas/liveport.git",
    "directory": "packages/cli"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@types/http-proxy": "^1.17.17",
    "@types/node": "^20.10.0",
    "@types/ws": "^8.5.0",
    "tsup": "^8.0.0",
    "typescript": "^5.3.0",
    "vitest": "^2.0.0"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^12.0.0",
    "http-proxy": "^1.18.1",
    "ora": "^8.0.0",
    "ws": "^8.16.0"
  }
}
