-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.72 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@alchemystai/openclaw-plugin",
"version": "1.0.0",
"description": "Alchemyst AI context and memory integration for OpenClaw",
"main": "dist/index.js",
"type": "module",
"files": [
"dist",
"README.md",
"openclaw.plugin.json",
".env.example"
],
"scripts": {
"build": "rm -rf dist && bun build ./index.ts --outdir ./dist --target node"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.45",
"@ai-sdk/openai": "^3.0.29",
"@alchemystai/aisdk": "^0.0.4",
"@alchemystai/sdk": "^0.11.1",
"ai": "^6.0.90",
"dotenv": "^17.3.1",
"zod-to-json-schema": "^3.25.1"
},
"openclaw": {
"extensions": [
{
"id": "openclaw-alchemyst",
"name": "OpenClaw Alchemyst",
"description": "AI-powered context and memory management with document storage and retrieval",
"version": "1.0.0",
"configSchema": {
"type": "object",
"properties": {
"apiKey": {
"type": "string",
"description": "Alchemyst API key (or set ALCHEMYST_API_KEY env var)",
"default": ""
},
"baseUrl": {
"type": "string",
"description": "Alchemyst API base URL",
"default": "https://api.alchemyst.ai"
}
}
}
}
]
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/node": "^25.2.3"
}
}