-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.55 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "opencode-claude-memory",
"version": "0.0.0-semantically-released",
"type": "module",
"description": "OpenCode plugin for Claude Code memory: persistent, local-first shared memory with Claude Code-compatible Markdown files, auto extraction, and auto-dream",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"opencode-memory": "./bin/opencode-memory"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuitos/opencode-claude-memory.git"
},
"bugs": {
"url": "https://github.com/kuitos/opencode-claude-memory/issues"
},
"homepage": "https://github.com/kuitos/opencode-claude-memory#readme",
"keywords": [
"opencode",
"opencode-plugin",
"opencode-ai",
"claude",
"claude-code",
"claude-code-memory",
"claude-memory",
"plugin",
"memory",
"persistent-memory",
"agent-memory",
"ai-memory",
"cross-session-memory",
"shared-memory",
"local-first",
"markdown-memory",
"coding-agent",
"developer-tools",
"claude-code-compatible"
],
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"dependencies": {
"zod": "^3.24.0"
},
"devDependencies": {
"bun-types": "^1.3.11",
"@opencode-ai/plugin": "^1.3.10",
"typescript": "^6.0.2"
}
}