-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 915 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
{
"name": "5emcp",
"version": "1.1.0",
"description": "D&D 5e reference and utility MCP server backed by live 5etools data",
"type": "module",
"bin": {
"5emcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"build:mcpb": "npm run build && npx @anthropic-ai/mcpb pack . 5eMCP.mcpb",
"start": "tsx src/http.ts",
"typecheck": "tsc --noEmit",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests --ext .ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"redis": "^5.11.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=24.0.0"
}
}