-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 727 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 727 Bytes
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
{
"name": "caveman-opencode-plugin",
"version": "0.1.5",
"description": "Caveman communication mode plugin for opencode",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "bun run build.ts && tsc --emitDeclarationOnly",
"dev": "opencode plugin dev",
"setup": "bun run src/setup.ts",
"test": "bun test",
"test:watch": "bun test --watch"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.21"
},
"devDependencies": {
"@opencode-ai/plugin": "1.14.21",
"@types/node": "25.6.0",
"typescript": "6.0.3"
},
"keywords": ["opencode", "plugin", "caveman"],
"author": "renux918",
"license": "MIT"
}