{
  "name": "paean",
  "version": "0.10.20",
  "description": "Paean AI CLI - Claude Code-like AI agent with local MCP integration, task management, and autonomous worker mode",
  "author": "Paean AI <dev@paean.ai>",
  "license": "MIT",
  "type": "module",
  "bin": {
    "paean": "dist/cli.js"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "bun run build:tsc && bun run build:cli",
    "build:tsc": "bun run tsc --noEmitOnError",
    "build:cli": "node scripts/build-cli.mjs",
    "build:watch": "bun run tsc --watch --noEmitOnError",
    "dev": "bun run src/cli.ts",
    "dev:node": "node --import tsx src/cli.ts",
    "start": "node dist/cli.js",
    "clean": "rm -rf dist",
    "prepublishOnly": "bash scripts/set-build-mode.sh production && bun run clean && bun run build",
    "postpublish": "bash scripts/set-build-mode.sh development",
    "lint": "eslint src/**/*.ts",
    "test": "bun test"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.12.0",
    "@solana/web3.js": "^1.98.4",
    "axios": "^1.7.9",
    "chalk": "^5.4.1",
    "cli-highlight": "^2.1.11",
    "commander": "^13.1.0",
    "conf": "^13.1.0",
    "ethers": "^6.16.0",
    "form-data": "^4.0.5",
    "ink": "^6.6.0",
    "ink-spinner": "^5.0.0",
    "ink-text-input": "^6.0.0",
    "log-update": "^7.0.2",
    "marked": "^17.0.1",
    "marked-terminal": "^7.3.0",
    "open": "^10.1.0",
    "ora": "^8.1.1",
    "qrcode-terminal": "^0.12.0",
    "react": "^19.2.3",
    "tweetnacl": "^1.0.3"
  },
  "devDependencies": {
    "@types/node": "^22.10.7",
    "@types/qrcode-terminal": "^0.12.2",
    "@types/react": "^19.2.8",
    "esbuild": "^0.27.5",
    "tsx": "^4.19.2",
    "typescript": "^5.7.3",
    "vitest": "^3.0.4"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git@git_fzh:a8e-ai/ai-paean-cli.git"
  },
  "keywords": [
    "paean",
    "ai",
    "cli",
    "mcp",
    "model-context-protocol",
    "agent",
    "a2a",
    "cursor",
    "claude"
  ],
  "homepage": "https://paean.ai",
  "bugs": {
    "url": "https://github.com/paean-ai/ai-paean-cli/issues"
  }
}
