{
  "name": "@voyager-0x/agent-mcp",
  "version": "1.0.0",
  "description": "Voyager MCP Agent - A powerful Model Context Protocol agent",
  "keywords": [
    "mcp",
    "agent",
    "ai",
    "voyager",
    "model-context-protocol"
  ],
  "author": "Voyager Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/voyager-0x/voyager.git",
    "directory": "packages/agent"
  },
  "homepage": "https://github.com/voyager-0x/voyager#readme",
  "bugs": {
    "url": "https://github.com/voyager-0x/voyager/issues"
  },
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
    "build:types": "tsc --emitDeclarationOnly --outDir dist",
    "build:esm": "tsc --module esnext --outDir dist/esm",
    "build:cjs": "tsc --module commonjs --outDir dist/cjs",
    "dev": "tsc --watch",
    "clean": "rimraf dist",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "typescript": "^5.0.2",
    "rimraf": "^5.0.1",
    "jest": "^29.7.0",
    "@types/jest": "^29.5.12",
    "ts-jest": "^29.1.2",
    "@types/uuid": "^10.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.15.1",
    "zod": "^3.25.76",
    "openai": "^5.9.0",
    "uuid": "^11.1.0",
    "emittery": "^1.2.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "files": [
    "dist",
    "src",
    "README.md"
  ]
}