-
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.78 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.78 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": "oh-my-github-copilot-cli",
"version": "0.1.1",
"description": "Multi-agent orchestration toolkit for GitHub Copilot CLI — agents, skills, MCP server, and hook extensions ported from oh-my-claudecode (MIT).",
"keywords": [
"github-copilot",
"copilot-cli",
"agents",
"skills",
"mcp",
"ai",
"tdd",
"orchestration"
],
"homepage": "https://github.com/pranav2579/oh-my-github-copilot-cli#readme",
"bugs": {
"url": "https://github.com/pranav2579/oh-my-github-copilot-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pranav2579/oh-my-github-copilot-cli.git"
},
"license": "MIT",
"author": "Pranav Tripathi",
"type": "commonjs",
"bin": {
"omcc": "bridge/cli.cjs",
"oh-my-github-copilot-cli": "bridge/cli.cjs"
},
"files": [
"bridge/",
".github/agents/",
".github/skills/",
".github/extensions/",
".github/copilot-instructions.md",
".github/instructions/",
"mcp-server/dist/",
"mcp-server/package.json",
"scripts/",
"templates/",
"docs/",
"licenses/",
"AGENTS.md",
"LICENSE",
"LICENSE-THIRD-PARTY.md",
"README.md"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"analyze": "node scripts/analyze-tokens.mjs",
"build": "node scripts/build-mcp-server.mjs",
"validate": "node scripts/validate-frontmatter.mjs",
"test": "vitest run",
"test:e2e": "bash scripts/test-e2e.sh",
"lint": "echo 'lint placeholder'",
"prepublishOnly": "npm run build && npm run validate && npm test"
},
"devDependencies": {
"vitest": "^2.1.9"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"commander": "^12.1.0",
"jsonc-parser": "^3.3.1"
}
}