anyclaude-sdk 0.4.1 → 0.4.2
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 +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anyclaude-sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
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",
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
"./fs": { "types": "./dist/fs/index.d.ts", "import": "./dist/fs/index.js" },
|
|
15
15
|
"./llm": { "types": "./dist/llm/index.d.ts", "import": "./dist/llm/index.js" },
|
|
16
16
|
"./tools": { "types": "./dist/tools/index.d.ts", "import": "./dist/tools/index.js" },
|
|
17
|
+
"./session": { "types": "./dist/session/index.d.ts", "import": "./dist/session/index.js" },
|
|
18
|
+
"./memory": { "types": "./dist/memory/index.d.ts", "import": "./dist/memory/index.js" },
|
|
17
19
|
"./package.json": "./package.json"
|
|
18
20
|
},
|
|
19
21
|
"sideEffects": false,
|