-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "four-opencode-memory-plugin",
"version": "0.2.2",
"description": "Zero-dependency memory plugin for OpenCode — persistent AI memory using Markdown files",
"type": "module",
"main": "dist/plugin.js",
"types": "dist/plugin.d.ts",
"exports": {
".": {
"import": "./dist/plugin.js",
"types": "./dist/plugin.d.ts"
}
},
"scripts": {
"build": "bun build src/plugin.ts --outdir dist --target bun --format esm",
"dev": "bun build src/plugin.ts --outdir dist --target bun --format esm --watch",
"typecheck": "bunx tsc --noEmit"
},
"keywords": ["opencode", "plugin", "memory", "ai", "markdown", "zero-dependency"],
"author": "Four Bytes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/four-bytes/four-opencode-memory-plugin.git"
},
"dependencies": {
"@opencode-ai/plugin": "^1.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.8",
"typescript": "^5.7.3"
},
"opencode": {
"type": "plugin",
"hooks": ["chat.message", "event", "experimental.chat.system.transform"]
},
"files": ["dist", "package.json"]
}