1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
"name": "docs-test",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "bun run run.ts",
"test:ts": "bun run run.ts typescript",
"test:py": "bun run run.ts python",
"test:integrations": "bun run run.ts integrations",
"test:quickstart": "bun run run.ts quickstart",
"test:sdk": "bun run run.ts sdk",
"test:search": "bun run run.ts search"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.15",
"@ai-sdk/openai": "latest",
"@anthropic-ai/sdk": "latest",
"@supermemory/tools": "workspace:*",
"ai": "latest",
"dotenv": "latest",
"openai": "latest",
"supermemory": "latest",
"zod": "latest"
}
}
|