{
  "name": "@openuidev/cli",
  "version": "0.4.0",
  "description": "CLI for OpenUI — scaffold generative UI chat apps, mint Gateway API keys, and generate LLM system prompts from component libraries, and deploy projects",
  "bin": {
    "openui": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "devDependencies": {
    "@types/cross-spawn": "^6.0.6",
    "@types/node": "^22.15.32"
  },
  "keywords": [
    "openui",
    "cli",
    "scaffolding",
    "generative-ui",
    "ai",
    "llm",
    "system-prompt",
    "nextjs",
    "react",
    "chatbot",
    "code-generator"
  ],
  "homepage": "https://openui.com",
  "author": "engineering@thesys.dev",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/thesysdev/openui.git",
    "directory": "packages/openui-cli"
  },
  "bugs": {
    "url": "https://github.com/thesysdev/openui/issues"
  },
  "dependencies": {
    "@inquirer/core": "^11.1.5",
    "@inquirer/prompts": "^8.3.0",
    "commander": "^14.0.3",
    "cross-spawn": "^7.0.6",
    "dotenv": "^17.2.2",
    "esbuild": "^0.25.10",
    "get-port": "^7.2.0",
    "open": "^10.1.0",
    "openid-client": "^6.1.7",
    "posthog-node": "^5.35.6"
  },
  "scripts": {
    "build:cli": "tsc -p .",
    "build": "pnpm run build:cli",
    "build:exec": "node dist/index.js",
    "lint:check": "eslint ./src",
    "lint:fix": "eslint ./src --fix",
    "format:fix": "prettier --write './src/**'",
    "format:check": "prettier --check './src/**'",
    "ci": "pnpm run lint:check && pnpm run format:check"
  }
}