-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "opencode-cachebro",
"version": "0.1.1",
"description": "OpenCode plugin for cachebro — file cache with diff tracking that saves tokens",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --external cachebro --external @tursodatabase/database --external @opencode-ai/plugin --external @opencode-ai/sdk --external zod && tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"plugin",
"cachebro",
"cache",
"tokens",
"ai",
"coding-agent"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/buzinas/opencode-cachebro"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.10",
"cachebro": "github:glommer/cachebro"
},
"devDependencies": {
"@opencode-ai/sdk": "^1.2.10",
"@types/bun": "latest",
"oxfmt": "^0.34.0",
"typescript": "^5.0.0"
},
"opencode": {
"type": "plugin",
"hooks": []
},
"files": [
"dist"
]
}