-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 980 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 980 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
43
44
45
46
47
48
{
"name": "opencode-lore",
"version": "0.6.1",
"type": "module",
"license": "MIT",
"description": "Three-tier memory architecture for OpenCode — distillation, not summarization",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "bun run tsc --noEmit",
"test": "bun test"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.1.0"
},
"dependencies": {
"remark": "^15.0.1",
"uuidv7": "^1.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.39",
"@opencode-ai/sdk": "^1.1.39",
"@types/bun": "^1.2.0",
"fast-check": "^4.5.3",
"typescript": "^5.8.0"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BYK/opencode-lore.git"
},
"keywords": [
"opencode",
"plugin",
"memory",
"agent",
"distillation",
"llm"
],
"author": "BYK"
}