{
  "name": "@celilo/cli",
  "version": "4.0.0",
  "description": "Celilo — home lab orchestration CLI",
  "type": "module",
  "bin": {
    "celilo": "./bin/celilo"
  },
  "files": [
    "bin/",
    "src/",
    "drizzle/",
    "schemas/",
    "tsconfig.json",
    "AGENTS.md",
    "docs/",
    "CELILO_SUBSYSTEMS.md",
    "CELILO_CORE_MODULES.md",
    "MODULE_PRIMITIVES.md"
  ],
  "keywords": [
    "celilo",
    "homelab",
    "orchestration",
    "ansible",
    "terraform"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/psbanka/infra",
    "directory": "apps/celilo"
  },
  "scripts": {
    "dev": "bun run src/cli/index.ts",
    "test": "bun test --timeout 60000 src/",
    "test:integration": "bun test --timeout 60000 test-integration/",
    "test:integration-slow": "bun test --timeout 300000 test-integration/",
    "test:completion": "bun test --timeout 60000 test-integration/completion/",
    "test:all": "bun test --timeout 60000 src/ test-integration/",
    "test:integration:watch": "bun test --timeout 60000 test-integration/ --watch",
    "test:integration:system": "bun test --timeout 60000 test-integration/system",
    "test:integration:module": "bun test --timeout 60000 test-integration/module",
    "test:integration:module:zero-config": "bun test --timeout 60000 test-integration/module/zero-config.test.ts",
    "test:integration:grep": "bun test --timeout 60000 test-integration -t",
    "test:golden": "bun run generate-golden-files.ts",
    "typecheck": "tsc --noEmit",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "check": "bun run typecheck && bun run lint",
    "db:generate": "drizzle-kit generate",
    "db:migrate": "bun run src/db/migrate.ts",
    "db:studio": "drizzle-kit studio",
    "export:schema": "bun run scripts/export-manifest-schema.ts",
    "check:schema": "bun run scripts/export-manifest-schema.ts --check"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "^3.1109.0",
    "@aws-sdk/lib-storage": "^3.1101.0",
    "@celilo/capabilities": "^5.1.0",
    "@celilo/cli-display": "^0.2.0",
    "@celilo/core": "^0.13.0",
    "@celilo/event-bus": "^0.6.0",
    "ajv": "^8.18.0",
    "drizzle-orm": "^0.36.4",
    "ink": "^7.0.1",
    "ink-spinner": "^5.0.0",
    "ink-text-input": "^6.0.0",
    "react": "^19.2.5",
    "tar": "^7.5.10",
    "xxhash-wasm": "^1.1.0",
    "yaml": "^2.8.2",
    "zod": "^3.24.1"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@celilo/terraform-fake": "^0.3.1",
    "@types/bun": "^1.1.14",
    "@types/react": "^19.2.14",
    "drizzle-kit": "^0.30.0",
    "ink-testing-library": "^4.0.0",
    "msw": "^2.15.0",
    "typescript": "^5.9.3",
    "zod-to-json-schema": "^3.25.2"
  }
}
