-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
{
"name": "@rethunk/mcp-multi-root-git",
"version": "2.9.1",
"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",
"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 -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 lint && bun run typecheck && bun run test && 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.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"overrides": {
"@hono/node-server": "^1.19.14",
"hono": "^4.12.18",
"fast-uri": "^3.1.2"
}
}