@liangrk/claude-code-wechatbot 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.mjs +155 -1
- package/dist/setup.js +1033 -983
- package/dist/wechat-channel.js +14950 -7682
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liangrk/claude-code-wechatbot",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Claude Code Channel plugin for WeChat — bridge WeChat messages into Claude Code sessions via the official ilink API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"LICENSE"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "
|
|
16
|
+
"build": "esbuild wechat-channel.ts --bundle --platform=node --format=esm --outfile=dist/wechat-channel.js && esbuild setup.ts --bundle --platform=node --format=esm --outfile=dist/setup.js",
|
|
17
17
|
"typecheck": "tsc --noEmit",
|
|
18
18
|
"prepublishOnly": "npm run build"
|
|
19
19
|
},
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/bun": "latest",
|
|
26
|
-
"@types/node": "^25.5.0"
|
|
26
|
+
"@types/node": "^25.5.0",
|
|
27
|
+
"esbuild": "^0.27.4"
|
|
27
28
|
},
|
|
28
29
|
"engines": {
|
|
29
30
|
"node": ">=18"
|