-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 890 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 890 Bytes
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
{
"name": "opencode-agent-memory",
"version": "0.2.0",
"description": "Letta-style editable memory blocks for OpenCode.",
"author": "Josh Thomas <josh@joshthomas.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joshuadavidthomas/opencode-agent-memory"
},
"main": "src/plugin.ts",
"type": "module",
"files": [
"src"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@opencode-ai/plugin": "^1.0.115",
"js-yaml": "^4.1.0",
"zod": "^4.1.13"
},
"overrides": {
"onnxruntime-node": "1.20.1"
},
"devDependencies": {
"@tsconfig/bun": "^1.0.10",
"@types/bun": "^1.3.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.0.0"
}
}