-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "opencode-swarm",
"version": "6.72.0",
"description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"opencode-swarm": "./dist/cli/index.js"
},
"type": "module",
"engines": {
"bun": ">=1.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zaxbysauce/opencode-swarm.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"opencode",
"opencode-plugin",
"ai",
"agents",
"orchestration",
"swarm",
"multi-agent",
"llm"
],
"files": [
"dist",
"dist/lang/grammars",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "bun -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "bun run clean && bun run scripts/copy-grammars.ts && bun build src/index.ts --outdir dist --target bun --format esm && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm && bun run scripts/copy-grammars.ts --to-dist && tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check --write .",
"dev": "bun run build && opencode",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@opencode-ai/plugin": "^1.1.53",
"@opencode-ai/sdk": "^1.1.53",
"@vscode/tree-sitter-wasm": "^0.3.0",
"p-limit": "^7.3.0",
"picomatch": "^4.0.4",
"proper-lockfile": "^4.1.2",
"quick-lru": "^7.3.0",
"web-tree-sitter": "^0.25.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@types/picomatch": "^4.0.3",
"bun-types": "1.3.8",
"js-yaml": "^4.1.1",
"typescript": "^5.7.3"
}
}