{
  "name": "@lov3kaizen/agentsea-cli",
  "version": "1.2.1",
  "description": "CLI tool for AgentSea ADK - Build and orchestrate AI agents",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "sea": "./dist/cli.js"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "agentsea",
    "ai",
    "agents",
    "llm",
    "cli",
    "anthropic",
    "openai",
    "ollama",
    "local-llm"
  ],
  "author": "lovekaizen",
  "license": "MIT",
  "dependencies": {
    "commander": "^11.1.0",
    "chalk": "^4.1.2",
    "ora": "^5.4.1",
    "inquirer": "^8.2.6",
    "conf": "^10.2.0",
    "dotenv": "^16.3.1",
    "table": "^6.8.1",
    "@lov3kaizen/agentsea-types": "1.2.1",
    "@lov3kaizen/agentsea-core": "1.2.1"
  },
  "devDependencies": {
    "@types/inquirer": "^8.2.10",
    "@types/node": "^20.10.5",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lovekaizen/agentsea.git",
    "directory": "packages/cli"
  },
  "homepage": "https://agentsea.dev",
  "bugs": {
    "url": "https://github.com/lovekaizen/agentsea/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "echo 'No tests configured for CLI package'",
    "type-check": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}