-
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) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 958 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "multi-planner-opencode",
"version": "0.2.0",
"description": "Consensus-based planning for OpenCode: multiple LLMs plan in parallel, a judge synthesizes the best plan.",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
"keywords": [
"opencode",
"plugin",
"planning",
"multi-model",
"consensus"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"test": "npm run build && node --test test/*.test.js"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@opencode-ai/plugin": "^1.18.11",
"@types/node": "^26.1.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.18.0"
}
}