-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.69 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
{
"name": "@khaentertainment/grok-swarm",
"version": "1.3.6",
"description": "Multi-agent intelligence powered by Grok 4.20 via OpenRouter. Give any AI coding agent access to a 4-agent swarm with ~2M token context.",
"keywords": [
"grok",
"multi-agent",
"xai",
"openrouter",
"openclaw",
"claude-code",
"code-review",
"refactoring",
"security",
"ai"
],
"homepage": "https://github.com/KHAEntertainment/grok-multiagent-plugin",
"bugs": {
"url": "https://github.com/KHAEntertainment/grok-multiagent-plugin/issues"
},
"license": "MIT",
"author": "OpenClaw <support@openclaw.dev>",
"maintainers": [
{
"name": "OpenClaw",
"email": "support@openclaw.dev"
}
],
"main": "dist/index.js",
"bin": {
"grok-swarm": "dist/index.js",
"grok-swarm-mcp": "bin/grok-swarm-mcp.js"
},
"files": [
"bin/",
"dist/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"preinstall": "node scripts/preinstall-check.js",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "npm run build",
"build": "node scripts/build.js",
"pretest": "npm run build",
"test": "node scripts/test.js",
"verify:release": "node scripts/verify-release.js",
"lint": "eslint dist/",
"clean": "rm -rf dist/"
},
"dependencies": {
"openai": "^4.28.0"
},
"devDependencies": {
"eslint": "^8.57.0"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "https://github.com/KHAEntertainment/grok-multiagent-plugin.git"
},
"categories": [
"ai",
"coding",
"developer-tools",
"plugins"
]
}