-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.59 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.59 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
{
"name": "@minionhive/core",
"version": "2.0.1",
"description": "MinionHive - Unleash the minions - they'll build it in parallel. A Claude Code plugin for safe parallel execution with AST-based conflict detection.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GuitaristForEver/minion-hive.git"
},
"bugs": {
"url": "https://github.com/GuitaristForEver/minion-hive/issues"
},
"homepage": "https://github.com/GuitaristForEver/minion-hive#readme",
"scripts": {
"test": "echo \"No tests yet\" && exit 0",
"postinstall": "node scripts/postinstall.js"
},
"bin": {
"minionhive": "./bin/minionhive.js"
},
"files": [
"agents/",
"commands/",
"utils/",
"config/",
"docs/",
"hooks/",
"assets/",
".claude-plugin/",
"bin/",
"scripts/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"claude-code",
"claude-code-plugin",
"ai",
"parallel-execution",
"validation",
"code-generation",
"minionhive",
"swarm",
"ast",
"conflict-detection",
"concurrent",
"subagents"
],
"author": "MinionHive Contributors",
"license": "MIT",
"dependencies": {
"glob": "^10.3.10"
},
"devDependencies": {},
"engines": {
"node": ">=16.0.0"
},
"claudeCode": {
"pluginVersion": "1.0.0",
"displayName": "MinionHive",
"description": "Unleash the minions - they'll build it in parallel",
"icon": "assets/logo.png",
"categories": [
"productivity",
"development",
"ai"
],
"minClaudeVersion": "0.1.0"
}
}