-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 KB
/
package.json
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
{
"name": "db-mcp",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"db-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"dev:sse": "cross-env TRANSPORT_TYPE=sse node --loader ts-node/esm src/index.ts",
"test": "vitest run",
"test-ci": "vitest run --coverage.enabled --coverage.reporter='text-summary'",
"lint": "npx biome check src",
"coverage": "npm run test -- --coverage"
},
"keywords": ["mcp", "deutsche-bahn", "timetable", "api-client"],
"author": "Nils Jorek <nils.jorek@gmail.com>",
"license": "MIT",
"description": "MCP Server für die Deutsche Bahn Timetable API",
"dependencies": {
"dotenv": "^16.4.7",
"fastmcp": "^1.20.5",
"node-fetch": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.13.11",
"@types/node-fetch": "^2.6.12",
"@vitest/coverage-v8": "^3.0.9",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}