-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-acm",
"version": "0.5.29",
"type": "module",
"license": "MIT",
"description": "Active Context Management plugin for OpenCode — pin, prune, scan, compact, and manage context with surgical precision",
"keywords": [
"opencode",
"plugin",
"context",
"memory",
"acm"
],
"author": "Rick Ross",
"repository": {
"type": "git",
"url": "https://github.com/rickross/opencode-acm"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./server": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"opencode": {
"type": "plugin",
"hooks": [
"tool",
"experimental.chat.messages.transform",
"experimental.chat.system.transform",
"event"
]
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.11",
"@opencode-ai/sdk": "^1.3.11",
"zod": "^4.0.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/bun": "latest",
"@types/node": "^22.0.0",
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --external zod --external @opencode-ai/plugin --external @opencode-ai/sdk",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
}
}