This repository was archived by the owner on Aug 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.61 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
{
"name": "@rethunk/mcp-multi-root-git",
"version": "5.0.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.14",
"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 -p tsconfig.build.json",
"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 ci",
"setup-hooks": "git config core.hooksPath .githooks",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc --noEmit",
"ci": "bun run schema:tools:check && bun run schema:individual:check && bun run lint && bun run typecheck && set -o pipefail && bun run test:coverage 2>&1 | tee .coverage-ci.txt && bun run coverage:check .coverage-ci.txt 80 && bun run build"
},
"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.15.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"@types/bun": "^1.3.14",
"@types/node": "^26.2.0",
"rimraf": "^6.1.3",
"typescript": "^7.0.2"
},
"overrides": {
"qs": "6.15.3",
"@hono/node-server": "2.1.0",
"body-parser": "2.3.0",
"brace-expansion": "5.0.9",
"ip-address": "10.4.0",
"undici": "^7.29.0",
"form-data": "4.0.6",
"fast-uri": "^3.1.5",
"axios": "1.19.0",
"hono": "4.13.1"
}
}