package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@fmode/openclaw-wechat-agent",
  3. "version": "0.1.5",
  4. "description": "OpenClaw WeChat channel plugin backed by a third-party wechat-agent HTTP bot (xbot/wcf-class). Polls inbound, dispatches through OpenClaw agent pipeline, replies via the bot's send-text endpoint.",
  5. "type": "module",
  6. "author": "fmode",
  7. "license": "MIT",
  8. "keywords": [
  9. "openclaw",
  10. "openclaw-channel",
  11. "wechat",
  12. "weixin",
  13. "wcf",
  14. "xbot"
  15. ],
  16. "files": [
  17. "dist/index.js",
  18. "openclaw.plugin.json",
  19. "README.md",
  20. "LICENSE"
  21. ],
  22. "scripts": {
  23. "typecheck": "tsc --noEmit",
  24. "build": "node scripts/build.mjs",
  25. "prepack": "npm run typecheck && npm run build",
  26. "test": "vitest run",
  27. "test:watch": "vitest",
  28. "pack:tgz": "npm run prepack && npm pack",
  29. "clean": "node -e \"require('fs').rmSync('./dist',{force:true,recursive:true})\""
  30. },
  31. "dependencies": {},
  32. "peerDependencies": {
  33. "openclaw": "2026.4.15"
  34. },
  35. "devDependencies": {
  36. "@types/node": "^20.11.0",
  37. "esbuild": "^0.21.5",
  38. "openclaw": "2026.4.15",
  39. "typescript": "^5.4.0",
  40. "vitest": "^1.4.0"
  41. },
  42. "openclaw": {
  43. "extensions": [
  44. "./dist/index.js"
  45. ],
  46. "channel": {
  47. "id": "wechat-agent",
  48. "label": "WeChat (Agent Backend)",
  49. "selectionLabel": "WeChat (via wechat-agent HTTP bot)",
  50. "docsPath": "/channels/wechat-agent",
  51. "docsLabel": "wechat-agent",
  52. "blurb": "Bridge a third-party WeChat HTTP bot (xbot/wcf) into OpenClaw. Polls for inbound messages and sends replies via the bot's send-text endpoint.",
  53. "aliases": [
  54. "wechat",
  55. "weixin"
  56. ],
  57. "order": 82,
  58. "quickstartAllowFrom": true
  59. },
  60. "install": {
  61. "npmSpec": "@fmode/openclaw-wechat-agent",
  62. "localPath": "extensions/wechat-agent",
  63. "defaultChoice": "local"
  64. }
  65. }
  66. }