-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 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
{
"name": "opencode-claude-code-memory",
"version": "0.1.1",
"description": "OpenCode plugin for Claude Code memory that loads local Claude Code memory into OpenCode sessions and syncs updates back to the same memory files.",
"keywords": [
"opencode",
"opencode-ai",
"opencode-plugin",
"claude-code",
"claude-code-memory",
"claude-memory",
"anthropic-claude",
"persistent-memory",
"ai-coding-agent",
"terminal-ai",
"developer-tools"
],
"homepage": "https://github.com/ngvoicu/opencode-claude-code-memory",
"repository": {
"type": "git",
"url": "https://github.com/ngvoicu/opencode-claude-code-memory.git"
},
"bugs": {
"url": "https://github.com/ngvoicu/opencode-claude-code-memory/issues"
},
"license": "MIT",
"author": "Gabriel Voicu",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"check": "node --check index.js",
"test": "node --test",
"verify": "npm run check && npm run test"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.17"
}
}