-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 958 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
{
"name": "echoes-vault-opencode",
"version": "1.2.0",
"description": "EchoesVault — persistent memory plugin for OpenCode. Obsidian-style knowledge base with daily logs, encyclopedia pages, and session resumption.",
"type": "module",
"main": "index.ts",
"exports": {
"./server": {
"import": "./index.ts",
"types": "./index.ts"
},
"./tui": {
"import": "./tui.tsx",
"types": "./tui.tsx"
}
},
"files": [
"index.ts",
"tui.tsx"
],
"keywords": [
"opencode",
"opencode-plugin",
"memory",
"knowledge-base",
"obsidian",
"vault"
],
"license": "MIT",
"dependencies": {
"@opencode-ai/plugin": ">=1.16.0",
"@opentui/solid": ">=0.4.3",
"solid-js": ">=1.9.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/psinetron/echoes-vault-opencode.git"
}
}