-
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.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 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": "@four-bytes/four-opencode-memory",
"version": "0.2.3",
"description": "Zero-dependency memory plugin for OpenCode — persistent AI memory using Markdown files",
"type": "module",
"main": "dist/four-opencode-memory.js",
"types": "dist/four-opencode-memory.d.ts",
"exports": {
".": {
"import": "./dist/four-opencode-memory.js",
"types": "./dist/four-opencode-memory.d.ts"
}
},
"scripts": {
"build": "bun build src/four-opencode-memory.ts --outdir dist --target bun --format esm",
"dev": "bun build src/four-opencode-memory.ts --outdir dist --target bun --format esm --watch",
"typecheck": "bunx tsc --noEmit"
},
"keywords": [
"opencode",
"plugin",
"memory",
"ai",
"markdown",
"zero-dependency"
],
"author": "Four Bytes",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/four-bytes/four-opencode-memory.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"
]
}