-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.23 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.23 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
87
88
89
90
91
92
93
{
"name": "@josstei/maestro",
"version": "1.6.4",
"description": "Multi-agent development orchestration platform — 39 specialists, 4-phase workflows, 4 runtime targets (Gemini CLI, Claude Code, OpenAI Codex, Qwen Code)",
"license": "Apache-2.0",
"author": {
"name": "josstei",
"email": "hello@josstei.dev",
"url": "https://github.com/josstei"
},
"homepage": "https://github.com/josstei/maestro-orchestrate",
"repository": {
"type": "git",
"url": "https://github.com/josstei/maestro-orchestrate.git"
},
"bin": {
"maestro-install-codex": "./scripts/install-codex-plugin.js",
"maestro-mcp-server": "./bin/maestro-mcp-server.js"
},
"scripts": {
"generate": "node scripts/generate.js",
"build": "npm run generate",
"test": "node --test tests/unit/*.test.js tests/transforms/*.test.js tests/integration/*.test.js",
"test:coverage": "c8 npm test",
"release:artifacts": "node scripts/package-release-artifacts.js --out-dir dist/release",
"release:verify-artifacts": "node scripts/verify-release-artifacts.js",
"pack:verify": "node scripts/verify-npm-pack.js",
"install-hooks": "node scripts/install-git-hooks.js",
"prepack": "npm run generate"
},
"c8": {
"all": true,
"reporter": [
"text",
"html",
"lcov"
],
"include": [
"src/**/*.js",
"scripts/**/*.js",
"bin/**/*.js"
],
"exclude": [
"**/*.test.js"
]
},
"devDependencies": {
"c8": "^10.1.3"
},
"engines": {
"node": ">=20"
},
"keywords": [
"orchestration",
"multi-agent",
"planning",
"execution",
"gemini",
"claude",
"codex",
"mcp"
],
"files": [
"EXAMPLES.md",
"src/",
"scripts/",
"bin/",
"agents/",
"claude/",
"plugins/",
"commands/",
"hooks/",
"mcp/",
"policies/",
"docs/architecture.md",
"docs/cicd.md",
"docs/flow.md",
"docs/maestro-cheatsheet.md",
"docs/overview.md",
"docs/runtime-claude.md",
"docs/runtime-codex.md",
"docs/runtime-gemini.md",
"docs/runtime-qwen.md",
"docs/usage.md",
".agents/",
"GEMINI.md",
"gemini-extension.json",
"QWEN.md",
"qwen-extension.json",
"qwen/",
"CHANGELOG.md"
]
}