{
  "name": "@deepracticex/mcp-client",
  "version": "1.0.8",
  "description": "MCP (Model Context Protocol) client for DeeChat - Simplified domain-rich model implementation for managing MCP server connections, tools, resources, and prompts",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "clean": "rm -rf dist",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:basic": "npm run build && node dist/examples/basic-usage.js",
    "test:integration": "npm run build && node dist/examples/multiple-servers.js",
    "test:all": "npm run test && npm run test:basic && npm run test:integration",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "type-check": "tsc --noEmit",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "ai",
    "deechat",
    "client",
    "tools",
    "resources",
    "prompts",
    "rpc",
    "typescript"
  ],
  "author": "DeeChat Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/deechat/deechat.git",
    "directory": "packages/mcp-client"
  },
  "bugs": {
    "url": "https://github.com/deechat/deechat/issues"
  },
  "homepage": "https://github.com/deechat/deechat/tree/main/packages/mcp-client#readme",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.17.1",
    "@types/ws": "^8.18.1",
    "ws": "^8.18.3"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^20.19.9",
    "@typescript-eslint/eslint-plugin": "^6.14.0",
    "@typescript-eslint/parser": "^6.14.0",
    "eslint": "^8.55.0",
    "jest": "^30.0.4",
    "ts-jest": "^29.4.0",
    "typescript": "^5.2.2"
  },
  "peerDependencies": {
    "typescript": ">=4.9.0"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "publishConfig": {
    "access": "public"
  }
}
