@mininglamp-oss/cc-channel-octo 1.0.1-dev.60b73f3 → 1.0.1-dev.8d32215
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/CHANGELOG.md +12 -0
- package/dist/agent-bridge.d.ts +12 -0
- package/dist/agent-bridge.js +24 -19
- package/dist/agent-bridge.js.map +1 -1
- package/dist/cli.d.ts +105 -0
- package/dist/cli.js +445 -0
- package/dist/cli.js.map +1 -0
- package/dist/config.d.ts +7 -0
- package/dist/config.js.map +1 -1
- package/dist/configure.d.ts +1 -0
- package/dist/configure.js +79 -0
- package/dist/configure.js.map +1 -0
- package/dist/gateway.d.ts +6 -1
- package/dist/gateway.js +5 -0
- package/dist/gateway.js.map +1 -1
- package/dist/index.d.ts +24 -0
- package/dist/index.js +215 -149
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mininglamp-oss/cc-channel-octo",
|
|
3
|
-
"version": "1.0.1-dev.
|
|
3
|
+
"version": "1.0.1-dev.8d32215",
|
|
4
4
|
"description": "Bridge Claude Code (via Claude Agent SDK) to Octo IM — independent Node.js gateway",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"bin": {
|
|
10
|
-
"cc-channel-octo": "dist/
|
|
10
|
+
"cc-channel-octo": "dist/cli.js"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist",
|