@betrue/openclaw-claude-code-plugin 1.0.2 → 1.0.3

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.
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-claude-code-plugin",
3
3
  "name": "OpenClaw Claude Code Plugin",
4
4
  "description": "Orchestrate Claude Code sessions from OpenClaw",
5
- "version": "1.0.2",
5
+ "version": "1.0.3",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@betrue/openclaw-claude-code-plugin",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
7
- "build": "esbuild index.ts --bundle --platform=node --target=node18 --format=cjs --outfile=dist/index.js --minify --external:openclaw --external:openclaw/plugin-sdk"
7
+ "build": "esbuild index.ts --bundle --platform=node --target=node18 --format=cjs --outfile=dist/index.js --minify --external:openclaw --external:openclaw/plugin-sdk --external:@anthropic-ai/claude-agent-sdk"
8
8
  },
9
9
  "openclaw": {
10
10
  "extensions": [
@@ -16,10 +16,11 @@
16
16
  "openclaw.plugin.json",
17
17
  "README.md"
18
18
  ],
19
- "dependencies": {},
19
+ "dependencies": {
20
+ "@anthropic-ai/claude-agent-sdk": "0.2.37"
21
+ },
20
22
  "devDependencies": {
21
23
  "esbuild": "^0.27.3",
22
- "@anthropic-ai/claude-agent-sdk": "0.2.37",
23
24
  "@sinclair/typebox": "^0.34.48",
24
25
  "nanoid": "^3.3.7"
25
26
  },