diff options
| author | Dhravya Shah <[email protected]> | 2025-09-29 13:40:56 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-09-29 13:40:56 -0700 |
| commit | 53bc296155b4f22f392dbef067c818eb939f3b91 (patch) | |
| tree | 9a4468118e86abb7ee4dedfc13bbbd4287970c3d /packages/tools/package.json | |
| parent | fix: build (diff) | |
| download | archived-supermemory-53bc296155b4f22f392dbef067c818eb939f3b91.tar.xz archived-supermemory-53bc296155b4f22f392dbef067c818eb939f3b91.zip | |
feat: Claude memory integration
Diffstat (limited to 'packages/tools/package.json')
| -rw-r--r-- | packages/tools/package.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/tools/package.json b/packages/tools/package.json index c7f4f21e..9aad412f 100644 --- a/packages/tools/package.json +++ b/packages/tools/package.json @@ -1,7 +1,7 @@ { "name": "@supermemory/tools", "type": "module", - "version": "1.0.41", + "version": "1.1.0", "description": "Memory tools for AI SDK and OpenAI function calling with supermemory", "scripts": { "build": "tsdown", @@ -24,7 +24,8 @@ "dotenv": "^16.6.1", "tsdown": "^0.14.2", "typescript": "^5.9.2", - "vitest": "^3.2.4" + "vitest": "^3.2.4", + "@anthropic-ai/sdk": "^0.65.0" }, "main": "./dist/index.js", "module": "./dist/index.js", @@ -32,6 +33,7 @@ "exports": { ".": "./dist/index.js", "./ai-sdk": "./dist/ai-sdk.js", + "./claude-memory": "./dist/claude-memory.js", "./openai": "./dist/openai.js", "./package.json": "./package.json" }, |