forked from hi0001234d/debug-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 735 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 735 Bytes
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
{
"name": "debug-ledger-mcp",
"version": "0.1.13",
"description": "Read-only debug memory for AI — a repo-local ledger of past bugs, rejected fixes, and historical constraints so AI debugs with context, not amnesia.",
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"debug-ledger-mcp": "./dist/mcp/server.js"
},
"files": [
"dist/",
"debug_ledger/"
],
"scripts": {
"build": "tsc",
"start": "node dist/mcp/server.js",
"prepublishOnly": "npm run build",
"postinstall": "node dist/mcp/setup.js"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.3.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1"
}
}