{
  "name": "@rebasepro/cli",
  "version": "0.16.0",
  "description": "Developer tools for Rebase projects",
  "main": "./dist/index.es.js",
  "module": "./dist/index.es.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "source": "src/index.ts",
  "bin": {
    "rebase": "bin/rebase.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "cli",
    "create-rebase-app",
    "rebase",
    "cms",
    "react",
    "typescript",
    "postgresql"
  ],
  "author": "rebase.pro",
  "license": "MIT",
  "dependencies": {
    "arg": "^5.0.2",
    "chalk": "^5.6.2",
    "dotenv": "^17.4.2",
    "execa": "^9.6.1",
    "inquirer": "14.0.2",
    "jiti": "^2.7.0",
    "@rebasepro/agent-skills": "0.16.0",
    "@rebasepro/client": "0.16.0",
    "@rebasepro/codegen": "0.16.0",
    "@rebasepro/server": "0.16.0",
    "@rebasepro/server-postgres": "0.16.0",
    "@rebasepro/types": "0.16.0"
  },
  "devDependencies": {
    "@types/node": "^26.1.2",
    "@types/pg": "^8.20.0",
    "pg": "^8.22.0",
    "typescript": "^6.0.3",
    "vite": "^8.1.5",
    "vitest": "4.1.10"
  },
  "files": [
    "bin/",
    "runtime/",
    "dist/",
    "templates/"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.es.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rebasepro/rebase.git",
    "directory": "packages/cli"
  },
  "scripts": {
    "test": "vitest run",
    "test:e2e": "vitest run --config vitest.e2e.config.ts",
    "build": "vite build && tsc --emitDeclarationOnly -p tsconfig.json && node ../../scripts/assert-build-output.mjs",
    "clean": "rm -rf dist && find ./src -name '*.js' -type f | xargs rm -f",
    "typecheck:test": "tsc --noEmit -p tsconfig.test.json"
  }
}