forked from maslennikov-ig/claude-code-orchestrator-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) 路 1.7 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) 路 1.7 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
{
"name": "claude-code-orchestrator-kit",
"version": "1.4.2",
"description": "Complete automation and orchestration system for Claude Code with 33+ AI agents, quality gates, health monitoring, and workflow automation",
"main": "index.js",
"type": "module",
"scripts": {
"postinstall": "node postinstall.js",
"setup": "bash switch-mcp.sh",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"claude",
"claude-code",
"ai",
"agents",
"orchestration",
"automation",
"workflow",
"mcp",
"model-context-protocol",
"supabase",
"code-quality",
"health-monitoring",
"devtools",
"productivity",
"ci-cd",
"quality-gates",
"bug-detection",
"security-scanning",
"dependency-management",
"speckit"
],
"author": {
"name": "Igor Maslennikov",
"email": "maslennikov-ig@users.noreply.github.com",
"url": "https://github.com/maslennikov-ig"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/maslennikov-ig/claude-code-orchestrator-kit.git"
},
"bugs": {
"url": "https://github.com/maslennikov-ig/claude-code-orchestrator-kit/issues"
},
"homepage": "https://aidevteam.ru/",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"files": [
".claude/",
"mcp/",
"docs/",
".github/",
"switch-mcp.sh",
"CLAUDE.md",
"README.md",
"LICENSE",
".env.example",
".gitignore",
"postinstall.js",
"index.js"
],
"bin": {
"claude-orchestrator": "./switch-mcp.sh"
},
"os": [
"darwin",
"linux",
"win32"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}