-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1011 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
40
41
42
{
"name": "@ghilteras/opencode-agent-memory",
"version": "0.4.0",
"description": "Letta-style editable memory blocks + journal for OpenCode (maintained fork of opencode-agent-memory).",
"author": "Angelo Pantano <ghilteras@protonmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Ghilteras/opencode-agent-memory.git"
},
"publishConfig": {
"access": "public"
},
"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"
}
}