-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 956 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
{
"name": "grok2cc",
"version": "0.1.0",
"description": "Grok \u2194 Claude Code: harness proxy (Grok as model) + MCP nested-agent bridge",
"type": "module",
"bin": {
"grok2cc-mcp": "./server.mjs",
"grok2cc": "./claude-with-grok.sh"
},
"scripts": {
"proxy": "node harness-proxy.mjs",
"start": "node harness-proxy.mjs",
"mcp": "node server.mjs",
"probe": "node scripts/probe.mjs",
"claude": "bash claude-with-grok.sh",
"install-vscode": "bash install-vscode.sh",
"uninstall-vscode": "bash install-vscode.sh --uninstall"
},
"keywords": [
"grok",
"xai",
"claude-code",
"anthropic",
"mcp",
"harness",
"proxy"
],
"author": "Dremig",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Dremig/grok2cc.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
}
}