-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.38 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.38 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
{
"name": "@rethunk/mcp-multi-root-git",
"version": "2.6.0",
"description": "MCP stdio server: multi-root git status, inventory, and HEAD parity checks. Generic tools usable by any workspace.",
"type": "module",
"private": false,
"packageManager": "bun@1.3.13",
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist",
"git-mcp-presets.schema.json",
"tool-parameters.schema.json",
"schemas",
"docs/install.md",
"docs/mcp-tools.md",
"AGENTS.md",
"CHANGELOG.md",
"HUMANS.md",
"README.md",
"LICENSE"
],
"bin": {
"mcp-multi-root-git": "dist/server.js"
},
"exports": {
".": {
"import": "./dist/server.js"
}
},
"scripts": {
"build": "rimraf dist && tsc",
"check": "biome check .",
"check:fix": "biome check --write .",
"coverage:check": "bun scripts/check-coverage.ts",
"schema:tools": "bun scripts/generate-tool-parameters-schema.ts",
"schema:tools:check": "bun scripts/generate-tool-parameters-schema.ts --check",
"schema:individual": "bun scripts/generate-individual-schemas.ts",
"schema:individual:check": "bun scripts/generate-individual-schemas.ts --check",
"publish:preflight": "bun scripts/publish-preflight.ts",
"test": "bun test src/",
"test:coverage": "bun test src/ --coverage",
"prepublishOnly": "bun run schema:tools:check && bun run schema:individual && bun run build && bun run check && bun run test",
"setup-hooks": "git config core.hooksPath .githooks"
},
"keywords": [
"mcp",
"git",
"multi-root",
"model-context-protocol",
"stdio"
],
"author": "Rethunk-AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Rethunk-AI/mcp-multi-root-git.git"
},
"bugs": {
"url": "https://github.com/Rethunk-AI/mcp-multi-root-git/issues"
},
"homepage": "https://github.com/Rethunk-AI/mcp-multi-root-git#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"fastmcp": "^4.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/node": "^25.9.1",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"overrides": {
"@hono/node-server": "^1.19.14",
"hono": "^4.12.18",
"fast-uri": "^3.1.2",
"postcss": "^8.5.10",
"vite": "^7.3.2",
"ip-address": "^10.1.1",
"axios": "^1.15.2",
"follow-redirects": "^1.15.12"
}
}