-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "kalkan-mcp",
"version": "0.1.0",
"description": "Kalkan — an integrity protection layer (MCP server) between AI agents and documents. Agents propose structured patches; Kalkan applies them deterministically with full version history.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"kalkan-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"verify": "npm run build && node scripts/verify.mjs",
"eval:pilot": "tsx eval/src/runner.ts --mod pilot",
"eval:full": "tsx eval/src/runner.ts --mod tam",
"eval:report": "tsx eval/src/report.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@vitest/coverage-v8": "^3.0.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0"
}
}