anyclaude-sdk 0.10.0 → 0.10.1
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/package.json +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anyclaude-sdk",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Standalone, browser-compatible SDK providing Claude Code agent capabilities (tools, tool loop, multi-turn, MCP, sub-agents, sessions) against any OpenAI/Anthropic-compatible LLM endpoint. Runs in the browser (WebContainer), Node, and Bun — no backend required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -114,11 +114,15 @@
|
|
|
114
114
|
"bugs": {
|
|
115
115
|
"url": "https://github.com/pipilot-dev/anyclaude-sdk/issues"
|
|
116
116
|
},
|
|
117
|
+
"dependencies": {
|
|
118
|
+
"comlink": "^4.4.2"
|
|
119
|
+
},
|
|
117
120
|
"peerDependencies": {
|
|
118
121
|
"@cloudflare/sandbox": "*",
|
|
119
122
|
"@daytonaio/sdk": "*",
|
|
120
123
|
"@vercel/sandbox": "*",
|
|
121
124
|
"@webcontainer/api": ">=1.1.0",
|
|
125
|
+
"broadcast-channel": ">=4.0.0",
|
|
122
126
|
"dexie": ">=3.2.0",
|
|
123
127
|
"e2b": "*"
|
|
124
128
|
},
|
|
@@ -126,6 +130,9 @@
|
|
|
126
130
|
"@webcontainer/api": {
|
|
127
131
|
"optional": true
|
|
128
132
|
},
|
|
133
|
+
"broadcast-channel": {
|
|
134
|
+
"optional": true
|
|
135
|
+
},
|
|
129
136
|
"dexie": {
|
|
130
137
|
"optional": true
|
|
131
138
|
},
|
|
@@ -144,7 +151,7 @@
|
|
|
144
151
|
},
|
|
145
152
|
"devDependencies": {
|
|
146
153
|
"@types/node": "^26.0.0",
|
|
147
|
-
"
|
|
154
|
+
"broadcast-channel": "^7.0.0",
|
|
148
155
|
"dexie": "^4.4.4",
|
|
149
156
|
"typescript": "^5.4.0"
|
|
150
157
|
}
|