-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.18 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.18 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
{
"name": "agent-debugger",
"version": "0.1.0",
"description": "Runbook-driven backend incident investigation framework for AI agents",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/UnCooe/debug-runbook.git"
},
"homepage": "https://github.com/UnCooe/debug-runbook#readme",
"bugs": {
"url": "https://github.com/UnCooe/debug-runbook/issues"
},
"engines": {
"node": ">=18.17"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"agent-debugger": "./dist/mcp/server.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc",
"dev": "tsc --watch",
"demo": "tsx scripts/run-demo.mjs fixtures/cases/order-task-missing",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"check": "node scripts/check.mjs",
"check:demo-fail": "node scripts/check-failure-demo.mjs",
"demo:order-task-missing": "tsx scripts/run-demo.mjs fixtures/cases/order-task-missing",
"demo:request-not-persisted": "tsx scripts/run-demo.mjs fixtures/cases/request-not-persisted",
"demo:stale-cache-view": "tsx scripts/run-demo.mjs fixtures/cases/stale-cache-view",
"demo:state-abnormal-cache-view": "tsx scripts/run-demo.mjs fixtures/cases/state-abnormal-cache-view",
"benchmark": "tsx scripts/run-benchmark.mjs",
"start:mcp": "node dist/mcp/server.js",
"prepack": "pnpm build"
},
"files": [
"dist",
"adapters",
"docs",
"evidence-policies",
"metadata-schemas",
"runbooks",
"schemas",
"CHANGELOG.md",
"SECURITY.md",
"agent-debugger.config.example.yaml",
"README.md",
"README_zh.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"ioredis": "^5.6.0",
"pg": "^8.13.3",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/pg": "^8.11.11",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.20.6",
"typescript": "^5.8.2",
"vitest": "^4.0.18"
}
}