{
  "name": "@choprapadam/agent-cli",
  "version": "0.1.1",
  "description": "Agent CLI — upload media and connect to the Agent CLI backend",
  "type": "module",
  "license": "UNLICENSED",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/padamchopra/agent-cli.git",
    "directory": "packages/cli"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=20"
  },
  "keywords": [
    "agent",
    "cli",
    "media",
    "upload",
    "hosting"
  ],
  "bin": {
    "agent-cli": "./dist/index.js"
  },
  "files": [
    "dist",
    "skills",
    "scripts"
  ],
  "dependencies": {
    "commander": "^13.1.0"
  },
  "devDependencies": {
    "@types/node": "^22.15.3",
    "tsup": "^8.4.0",
    "tsx": "^4.19.4",
    "typescript": "^5.8.3",
    "@agent-cli/shared": "0.1.0"
  },
  "scripts": {
    "dev": "tsx src/index.ts",
    "build": "tsup src/index.ts --format esm --dts --clean",
    "typecheck": "tsc --noEmit",
    "postinstall": "node scripts/postinstall.mjs"
  }
}