-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 940 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
31
32
33
34
35
{
"name": "why-engine",
"version": "0.2.1",
"private": true,
"description": "Standalone CLI + MCP server for capturing root-cause analyses, sanitizing evidence, and publishing safe, idempotent why cases.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rblake2320/why-engine.git"
},
"homepage": "https://github.com/rblake2320/why-engine",
"bugs": {
"url": "https://github.com/rblake2320/why-engine/issues"
},
"engines": {
"node": ">=18"
},
"bin": {
"why-engine": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node scripts/run-tests.mjs",
"verify": "node scripts/verify-outbox.mjs",
"start:mcp": "node dist/mcp/server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.7",
"typescript": "^5.7.3"
}
}