{
  "name": "qclaw-wechat-client",
  "version": "0.1.1",
  "description": "Reverse-engineered TypeScript client for QClaw's WeChat Access API (jprx gateway protocol)",
  "type": "module",
  "main": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      }
    }
  },
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/photon-hq/qclaw-wechat-client.git"
  },
  "homepage": "https://github.com/photon-hq/qclaw-wechat-client#readme",
  "bugs": {
    "url": "https://github.com/photon-hq/qclaw-wechat-client/issues"
  },
  "keywords": [
    "qclaw",
    "wechat",
    "openclaw",
    "tencent",
    "websocket",
    "api-client"
  ],
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist",
    "src",
    "README.md"
  ],
  "license": "MIT",
  "dependencies": {
    "ws": "^8.19.0"
  },
  "devDependencies": {
    "@types/ws": "^8.18.1",
    "tsdown": "^0.21.1",
    "tsx": "^4.19.0",
    "typescript": "^5.7.0"
  },
  "scripts": {
    "build": "tsdown",
    "typecheck": "tsc --noEmit",
    "demo": "tsx examples/full-flow.ts"
  }
}