{
  "name": "mercury-ai",
  "version": "0.4.5",
  "description": "Personal AI assistant for chat platforms (WhatsApp, Slack, Discord)",
  "license": "MIT",
  "keywords": [
    "ai",
    "assistant",
    "whatsapp",
    "slack",
    "discord",
    "chatbot",
    "pi"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/Michaelliv/mercury"
  },
  "type": "module",
  "exports": {
    "./extensions/types": {
      "types": "./src/extensions/types.ts",
      "default": "./src/extensions/types.ts"
    }
  },
  "bin": {
    "mercury": "./src/cli/mercury.ts",
    "mercury-ctl": "./src/cli/mercury-ctl.ts"
  },
  "files": [
    "src",
    "resources",
    "container",
    "docs",
    "README.md"
  ],
  "scripts": {
    "dev": "bun run src/main.ts",
    "start": "bun run src/main.ts",
    "build": "bun build src/main.ts --outdir dist --target bun",
    "typecheck": "bunx tsc --noEmit",
    "lint": "bunx biome check src/ tests/",
    "lint:fix": "bunx biome check --fix src/ tests/",
    "check": "bun run typecheck && bun run lint && bun test",
    "check:fix": "bun run typecheck && bun run lint:fix && bun test"
  },
  "dependencies": {
    "@chat-adapter/discord": "^4.14.0",
    "@chat-adapter/slack": "^4.14.0",
    "@chat-adapter/teams": "^4.17.0",
    "@mariozechner/pi-agent-core": "^0.55.0",
    "@mariozechner/pi-ai": "^0.55.0",
    "@mariozechner/pi-coding-agent": "^0.55.0",
    "@whiskeysockets/baileys": "^7.0.0-rc.9",
    "chat": "^4.14.0",
    "commander": "^14.0.3",
    "cron-parser": "^5.5.0",
    "discord.js": "^14.25.1",
    "hono": "^4.12.3",
    "qrcode-terminal": "^0.12.0",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.4",
    "@types/node": "^22.10.0",
    "@types/qrcode-terminal": "^0.12.2",
    "bun-types": "^1.3.5",
    "typescript": "^5.9.2"
  },
  "engines": {
    "bun": ">=1.2.0"
  }
}
