-
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) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 993 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": "code-comedy-mcp-server",
"version": "0.1.0",
"description": "MCP server for Code & Comedy event schedule with discovery, search, and recommendations",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitest/ui": "^1.0.4",
"eslint": "^8.55.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
}
}