-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
172 lines (172 loc) · 4.98 KB
/
package.json
File metadata and controls
172 lines (172 loc) · 4.98 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "@cyanheads/git-mcp-server",
"version": "2.14.2",
"mcpName": "io.github.cyanheads/git-mcp-server",
"description": "A secure and scalable Git MCP server enabling AI agents to perform comprehensive Git version control operations via STDIO and Streamable HTTP.",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"git-mcp-server": "dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": "./dist/*"
},
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/cyanheads/git-mcp-server.git"
},
"bugs": {
"url": "https://github.com/cyanheads/git-mcp-server/issues"
},
"homepage": "https://github.com/cyanheads/git-mcp-server#readme",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --external pino --external pino-pretty",
"build:worker": "bun build ./src/worker.ts --outdir ./dist --target bun --no-external",
"deploy:dev": "MCP_TRANSPORT_TYPE=http bunx wrangler dev",
"deploy:prod": "MCP_TRANSPORT_TYPE=http bunx wrangler deploy",
"start": "bun ./dist/index.js",
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
"dev": "bun --watch src/index.ts",
"dev:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio bun --watch src/index.ts",
"dev:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http bun --watch src/index.ts",
"devdocs": "bun run scripts/devdocs.ts",
"devcheck": "bun run scripts/devcheck.ts",
"rebuild": "bun run scripts/clean.ts && bun run build",
"docs:generate": "bunx typedoc",
"depcheck": "bunx depcheck",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint . --fix",
"typecheck": "bunx tsc --noEmit",
"tree": "bun run scripts/tree.ts",
"fetch-spec": "bun run scripts/fetch-openapi-spec.ts",
"format": "bunx prettier --write \"**/*.{ts,js,json,md,html,css}\"",
"prepare": "bunx husky",
"inspector": "bunx mcp-inspector --config mcp.json --server git-mcp-server",
"test": "bun test",
"test:coverage": "bun test --coverage",
"audit": "bun audit",
"audit:fix": "bun audit --fix",
"publish-mcp": "bun scripts/validate-mcp-publish-schema.ts"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260423.1",
"@eslint/js": "^10.0.1",
"@hono/mcp": "^0.2.5",
"@hono/node-server": "^2.0.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.73.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.215.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.215.0",
"@opentelemetry/instrumentation-pino": "^0.61.0",
"@opentelemetry/resources": "^2.7.0",
"@opentelemetry/sdk-metrics": "^2.7.0",
"@opentelemetry/sdk-node": "^0.215.0",
"@opentelemetry/sdk-trace-node": "^2.7.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@supabase/supabase-js": "^2.104.1",
"@types/bun": "^1.3.13",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^25.6.0",
"@types/validator": "^13.15.10",
"@vitest/coverage-v8": "^4.1.5",
"bun-types": "^1.3.13",
"depcheck": "^1.4.7",
"dotenv": "^17.4.2",
"eslint": "^10.2.1",
"execa": "^9.6.1",
"globals": "^17.5.0",
"hono": "^4.12.14",
"husky": "^9.1.7",
"ignore": "^7.0.5",
"jose": "^6.2.2",
"msw": "^2.13.5",
"prettier": "^3.8.3",
"reflect-metadata": "^0.2.2",
"repomix": "^1.13.1",
"tslib": "^2.8.1",
"tsyringe": "^4.10.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"validator": "^13.15.35",
"vite": "^8.0.10",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.5",
"zod": "^4.3.6"
},
"keywords": [
"ai-agent",
"ai-integration",
"automation",
"branch",
"cherry-pick",
"clone",
"commit",
"devops",
"diff",
"fetch",
"git",
"git-tools",
"llm",
"llm-tools",
"log",
"mcp",
"mcp-server",
"merge",
"model-context-protocol",
"pull",
"push",
"rebase",
"remote",
"reset",
"stash",
"status",
"tag",
"typescript",
"version-control",
"worktree"
],
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/git-mcp-server#readme)",
"license": "Apache-2.0",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cyanheads"
},
{
"type": "buy_me_a_coffee",
"url": "https://www.buymeacoffee.com/cyanheads"
}
],
"dependencies": {
"cross-spawn": "^7.0.6",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3"
},
"packageManager": "bun@1.2.21",
"engines": {
"bun": ">=1.2.0",
"node": ">=20.0.0"
},
"depcheck": {
"ignores": [
"bun",
"repomix",
"git-mcp-server"
]
},
"publishConfig": {
"access": "public"
}
}