{
  "name": "@cogitator-ai/cli",
  "version": "0.3.16",
  "description": "CLI for Cogitator AI Agent Runtime",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "cogitator": "./dist/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@clack/prompts": "^0.10.0",
    "chalk": "^5.3.0",
    "commander": "^12.0.0",
    "ora": "^9.3.0",
    "yaml": "^2.8.2",
    "@cogitator-ai/channels": "0.2.5",
    "@cogitator-ai/core": "0.19.4",
    "@cogitator-ai/models": "17.1.9",
    "@cogitator-ai/config": "0.5.6",
    "@cogitator-ai/types": "0.22.3",
    "@cogitator-ai/memory": "0.6.22",
    "@cogitator-ai/deploy": "0.1.9"
  },
  "devDependencies": {
    "@types/node": "^25.0.10",
    "typescript": "^5.3.0",
    "vitest": "^4.0.18"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/cogitator-ai/Cogitator-AI.git",
    "directory": "packages/cli"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://npm.pkg.github.com"
  },
  "license": "MIT",
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}