@daanrongen/tfl-mcp 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +138 -0
- package/build/index.js +22385 -0
- package/build/index.js.map +171 -0
- package/package.json +32 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@daanrongen/tfl-mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A comprehensive MCP server for the Transport for London (TfL) Unified API",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"tfl-mcp": "./build/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "bun build ./src/index.ts --outdir ./build --target bun --sourcemap=linked",
|
|
11
|
+
"dev": "bun --watch ./src/index.ts",
|
|
12
|
+
"start": "bun ./build/index.js",
|
|
13
|
+
"start:dev": "bun ./src/index.ts",
|
|
14
|
+
"test": "bun test",
|
|
15
|
+
"test:watch": "bun test --watch",
|
|
16
|
+
"lint": "biome lint ./src",
|
|
17
|
+
"format": "biome format ./src"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"build",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@modelcontextprotocol/sdk": "^1.10.2",
|
|
25
|
+
"zod": "^3.24.1"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@biomejs/biome": "2.4.6",
|
|
29
|
+
"@types/bun": "latest",
|
|
30
|
+
"typescript": "^5.8.3"
|
|
31
|
+
}
|
|
32
|
+
}
|