-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"name": "gitpulse-mcp",
"version": "0.1.0",
"description": "MCP server that gives AI agents deep git intelligence: history, blame, hotspots, ownership, and diffs since any ref.",
"license": "MIT",
"author": "ATOM00blue",
"type": "module",
"bin": {
"gitpulse-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"start": "node dist/index.js",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"*.md\"",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "node scripts/smoke.mjs"
},
"keywords": [
"mcp",
"model-context-protocol",
"git",
"ai-agents",
"developer-tools",
"typescript",
"code-analysis",
"hotspots",
"blame",
"git-intelligence"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ATOM00blue/gitpulse-mcp.git"
},
"bugs": {
"url": "https://github.com/ATOM00blue/gitpulse-mcp/issues"
},
"homepage": "https://github.com/ATOM00blue/gitpulse-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"prettier": "^3.4.0",
"rimraf": "^6.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.7"
}
}