package.json 827 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@fmode/wechat-cli",
  3. "version": "0.1.2",
  4. "description": "Local CLI wrapping the wechat-agent backend — consumed by the wechat OpenClaw skill for out-of-band WeChat operations (contact search, history, send-to-third-party, etc.). Sibling to the @fmode/openclaw-wechat-agent channel plugin.",
  5. "type": "module",
  6. "private": true,
  7. "bin": {
  8. "wecli": "./dist/wecli.js"
  9. },
  10. "engines": {
  11. "node": ">=20"
  12. },
  13. "scripts": {
  14. "typecheck": "tsc --noEmit",
  15. "build": "node scripts/build.mjs",
  16. "prepack": "npm run typecheck && npm run build",
  17. "pack:tgz": "npm run prepack && npm pack",
  18. "start": "node dist/wecli.js"
  19. },
  20. "files": [
  21. "dist/wecli.js",
  22. "README.md"
  23. ],
  24. "devDependencies": {
  25. "@types/node": "^22.0.0",
  26. "esbuild": "^0.24.0",
  27. "typescript": "^5.6.0"
  28. }
  29. }