-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@canesin/coder",
"version": "1.0.0",
"description": "Multi-agent coding workflow orchestrator (gemini-cli + claude-code + codex-cli)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/canesin/coder.git"
},
"bugs": {
"url": "https://github.com/canesin/coder/issues"
},
"homepage": "https://github.com/canesin/coder#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"cli",
"agents",
"codex",
"claude",
"gemini"
],
"type": "module",
"bin": {
"coder": "./bin/coder.js",
"coder-mcp": "./bin/coder-mcp.js"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"SECURITY.md",
".mcp.example.json",
".claude/settings.example.json",
"coder.example.json"
],
"scripts": {
"coder": "node ./bin/coder.js",
"mcp": "node ./bin/coder-mcp.js",
"lint": "biome check ./bin ./scripts ./src ./test package.json",
"lint:fix": "biome check --write ./bin ./scripts ./src ./test package.json",
"format": "biome format --write ./bin ./scripts ./src ./test package.json",
"format:check": "biome format ./bin ./scripts ./src ./test package.json",
"test": "node ./scripts/run-tests.mjs",
"prepublishOnly": "npm run lint && npm test"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"cli-table3": "^0.6.5",
"deepmerge": "^4.3.1",
"jsonrepair": "^3.13.3",
"p-retry": "^8.0.0",
"qs": "^6.15.0",
"tree-sitter": "^0.25.0",
"tree-sitter-bash": "^0.25.1",
"tree-sitter-go": "^0.25.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"tree-sitter-rust": "^0.24.0",
"tree-sitter-typescript": "^0.23.2",
"xstate": "^5.30.0",
"zod": "^4.3.6"
},
"overrides": {
"tree-sitter-java": {
"tree-sitter": "$tree-sitter"
},
"tree-sitter-rust": {
"tree-sitter": "$tree-sitter"
},
"tree-sitter-typescript": {
"tree-sitter": "$tree-sitter"
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.10"
}
}