-
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) · 977 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 977 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
36
37
38
{
"name": "contexthub",
"version": "0.1.0",
"description": "Deterministic MCP server for multi-agent project coordination",
"type": "module",
"main": "dist/index.js",
"bin": {
"contexthub": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"db:migrate": "tsx src/db/migrate.ts",
"db:seed": "tsx src/db/seed.ts",
"db:reset": "rm -f contexthub.db && npm run db:seed"
},
"keywords": ["mcp", "ai-agents", "traceability", "project-management"],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"better-sqlite3": "^11.5.0",
"fast-json-patch": "^3.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.16.15",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}