-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.62 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
{
"name": "@rethunk/github-mcp",
"version": "0.3.0",
"description": "MCP stdio server: high-value GitHub rollup tools for LLMs — multi-repo dashboards, PR preflight, CI diagnosis, and more.",
"type": "module",
"private": false,
"packageManager": "bun@1.3.11",
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist",
"docs/install.md",
"docs/mcp-tools.md",
"AGENTS.md",
"CHANGELOG.md",
"HUMANS.md",
"README.md",
"LICENSE"
],
"bin": {
"rethunk-github-mcp": "dist/server.js"
},
"exports": {
".": {
"import": "./dist/server.js"
}
},
"scripts": {
"build": "rimraf dist && tsc",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "bun test src/",
"prepublishOnly": "bun run build && bun run check && bun run test",
"setup-hooks": "git config core.hooksPath .githooks"
},
"keywords": [
"mcp",
"github",
"rollup",
"model-context-protocol",
"stdio",
"llm"
],
"author": "Rethunk-AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Rethunk-AI/rethunk-github-mcp.git"
},
"bugs": {
"url": "https://github.com/Rethunk-AI/rethunk-github-mcp/issues"
},
"homepage": "https://github.com/Rethunk-AI/rethunk-github-mcp#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"fastmcp": "^3.35.0",
"zod": "^4.3.6",
"@octokit/rest": "^22.0.1",
"@octokit/graphql": "^9.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/node": "^22.19.17",
"rimraf": "^6.1.3",
"typescript": "^6.0.2"
}
}