-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
43
44
45
46
47
48
49
50
51
{
"name": "timetable-api-cloud-func",
"version": "1.0.0",
"description": "Lviv (Ukraine) public transport REST API and read-only Model Context Protocol (MCP) server: stops, timetables, routes, live vehicle positions, GTFS/GTFS-RT. No API key required.",
"main": "index.js",
"type": "module",
"homepage": "https://lad.lviv.ua",
"repository": {
"type": "git",
"url": "https://github.com/vbhjckfd/timetable-api-node.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"lviv",
"transit",
"gtfs",
"timetable",
"public-transport",
"ukraine",
"api"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"cors": "^2.8.5",
"dotenv": "^17.4",
"express": "^5.2.1",
"gtfs": "^4.18.5",
"gtfs-realtime-bindings": "^1.1.1",
"lodash": "^4.17.21",
"lokijs": "^1.5.12",
"node-fetch": "^3.2.10",
"npm-config": "^0.2.0",
"protobufjs": ">=8.0.1",
"public-google-sheets-parser": "^1.3.2",
"tar": ">=4.4.18",
"zod": "^4.3.6"
},
"scripts": {
"import": "node gtfs-import.js",
"import-slim": "node gtfs-import-slim.js",
"start": "node index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"author": "vbhjckfd@gmail.com",
"license": "WTFPL",
"devDependencies": {
"vitest": "^4.1.4"
}
}