-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.57 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
{
"name": "tech-debt-mcp",
"version": "2.1.0",
"mcpName": "io.github.PierreJanineh/tech-debt-mcp",
"description": "MCP Server for analyzing technical debt across multiple programming languages",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tech-debt-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"mcpb:pack": "node scripts/build-mcpb.mjs",
"docs:gen-tools": "node scripts/gen-docs-tools.mjs",
"docs:scan-showcase": "npm run build && node scripts/scan-showcase.mjs",
"docs:dev": "npm run build && npm run docs:gen-tools && node scripts/scan-showcase.mjs && vitepress dev docs/site",
"docs:build": "npm run build && npm run docs:gen-tools && node scripts/scan-showcase.mjs && vitepress build docs/site",
"docs:preview": "vitepress preview docs/site",
"webhook": "PROJECT_ROOT=\"$(pwd)\"; if [ -z \"${PR_AUTOMATION_ROOT}\" ]; then echo 'Error: PR_AUTOMATION_ROOT is not set. Export it to the root of your pr-automation repo (containing scripts/webhook-listener.mjs).' >&2; exit 1; fi; node \"${PR_AUTOMATION_ROOT}/scripts/webhook-listener.mjs\""
},
"keywords": [
"mcp",
"model-context-protocol",
"tech-debt",
"technical-debt",
"code-analysis",
"static-analysis",
"copilot",
"code-quality",
"sqale",
"typescript",
"javascript",
"python",
"java"
],
"author": "Pierre Janineh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PierreJanineh/TechDebtMCP.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/PierreJanineh/TechDebtMCP#readme",
"bugs": {
"url": "https://github.com/PierreJanineh/TechDebtMCP/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"glob": "^13.0.6",
"ignore": "^7.0.5",
"minimatch": "^10.2.4",
"semver": "^7.5.4",
"toml": "^4.1.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@types/semver": "^7.5.6",
"eslint": "^10.2.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vitepress": "^1.6.4"
},
"engines": {
"node": ">=20.19.0"
},
"overrides": {
"qs": "^6.15.2"
}
}