-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "contextpulse-mcp",
"version": "0.1.0",
"description": "Real-time context budget tracking and agent observability MCP server",
"type": "module",
"main": "dist/proxy/server.js",
"bin": {
"contextpulse-mcp": "dist/proxy/server.js"
},
"scripts": {
"dev:mcp": "tsx src/proxy/server.ts",
"dev:api": "tsx src/api/main.ts",
"dev": "tsx src/proxy/server.ts",
"build": "tsup src/proxy/server.ts --format esm --dts --out-dir dist",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@nestjs/common": "^11.1.27",
"@nestjs/core": "^11.1.27",
"@nestjs/platform-express": "^11.1.27",
"@nestjs/platform-socket.io": "^11.1.27",
"@nestjs/websockets": "^11.1.27",
"bullmq": "^5.79.1",
"cors": "^2.8.6",
"ioredis": "^5.11.1",
"js-tiktoken": "^1.0.21",
"pg": "^8.13.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"socket.io": "^4.8.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/node": "^22.15.3",
"@types/pg": "^8.11.13",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}