-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.68 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
69
{
"name": "swarm-code",
"version": "0.1.24",
"description": "Open-source swarm-native coding agent orchestrator — spawns parallel coding agents in isolated git worktrees, built on RLM (arXiv:2512.24601)",
"type": "module",
"bin": {
"swarm-code": "./bin/swarm.mjs",
"swarm": "./bin/swarm.mjs"
},
"main": "dist/main.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/core/runtime.py",
"bin"
],
"scripts": {
"dev": "tsx src/main.ts",
"build": "tsc && cp src/core/runtime.py dist/core/",
"start": "node dist/main.js",
"cli": "tsx src/cli.ts",
"swarm": "tsx src/main.ts",
"bench:oolong": "tsx benchmarks/oolong_synth.ts",
"bench:longbench": "tsx benchmarks/longbench_narrativeqa.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --fix src/ tests/",
"prepublishOnly": "npm run build"
},
"keywords": [
"swarm",
"coding-agent",
"orchestrator",
"rlm",
"recursive-language-model",
"llm",
"cli",
"agent",
"opencode",
"worktree",
"parallel",
"ai"
],
"license": "MIT",
"homepage": "https://github.com/kingjulio8238/swarm-code#readme",
"repository": {
"type": "git",
"url": "https://github.com/kingjulio8238/swarm-code.git"
},
"dependencies": {
"@mariozechner/pi-ai": "^0.55.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"esbuild": "^0.27.3",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20"
},
"overrides": {
"minimatch": ">=10.2.1"
}
}