-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.72 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.72 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@tomtom-org/tomtom-mcp",
"version": "1.2.0",
"description": "MCP server integrating TomTom APIs",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"bin": {
"tomtom-mcp": "./bin/tomtom-mcp.js",
"tomtom-mcp-http": "./bin/tomtom-mcp-http.js"
},
"scripts": {
"build:ts": "tsc --emitDeclarationOnly --declaration --declarationMap",
"build:rollup": "rollup -c",
"build:ui": "cd src/ui_resources && vite build",
"build:apps": "node scripts/build-apps.cjs",
"build:apps:search": "node scripts/build-apps.cjs --category=search",
"build:apps:routing": "node scripts/build-apps.cjs --category=routing",
"build:apps:traffic": "node scripts/build-apps.cjs --category=traffic",
"build:apps:map": "node scripts/build-apps.cjs --category=map",
"build:apps:data-viz": "node scripts/build-apps.cjs --category=data-viz",
"build:mcpb": "node scripts/build-mcpb.cjs",
"build": "npm run build:ts && npm run build:rollup && npm run build:apps",
"build:bin": "shx chmod +x bin/tomtom-mcp.js && shx chmod +x bin/tomtom-mcp-http.js",
"start": "node dist/index.esm.js",
"start:http": "node dist/indexHttp.esm.js",
"dev": "cross-env NODE_OPTIONS=\"--no-warnings --loader ts-node/esm\" node src/index.ts",
"dev:http": "cross-env NODE_OPTIONS=\"--no-warnings --loader ts-node/esm\" node src/indexHttp.ts",
"prepare": "npm run build",
"test": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:tools:stdio": "node tests/test-stdio-tools.js",
"test:tools:http": "node tests/test-http-tools.js",
"test:all": "npm run test && npm run test:tools:stdio && npm run test:tools:http",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:report": "eslint src --format json --output-file eslint-report.json",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\"",
"publish:npm": "npm publish --access restricted",
"ui": "concurrently --names mcp,ui --prefix-colors blue,green \"node dist/indexHttp.esm.js\" \"cd ui && npm run start\"",
"ui:build": "cd ui && npm install && npm run build",
"clean": "shx rm -rf dist coverage eslint-report.json",
"generate:icons": "node scripts/generate-poi-icon-data.cjs",
"prebuild": "npm run clean && node scripts/generate-version.cjs"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.20.2",
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@tomtom-org/maps-sdk": "^0.41.1",
"@turf/buffer": "^7.3.4",
"@types/pako": "^2.0.4",
"axios": "^1.13.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^5.2.1",
"maplibre-gl": "^5.17.0",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"pako": "^2.1.0",
"pino": "^10.1.0",
"rollup": "^4.52.5",
"shx": "^0.4.0",
"skia-canvas": "^3.0.8",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@anthropic-ai/mcpb": "latest",
"@eslint/config-array": "^0.21.1",
"@eslint/object-schema": "^2.1.7",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^20.19.24",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^4.0.11",
"@vitest/ui": "^4.0.11",
"archiver": "^7.0.1",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.1",
"skills": "^1.4.3",
"terser": "^5.46.0",
"ts-node": "^10.9.1",
"vite": "^7.1.12",
"vite-plugin-singlefile": "^2.3.0",
"vitest": "^4.0.11"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"engines": {
"node": ">=22.0.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tomtom-international/tomtom-mcp.git"
},
"homepage": "https://github.com/tomtom-international/tomtom-mcp",
"bugs": {
"url": "https://github.com/tomtom-international/tomtom-mcp/issues"
},
"os": [
"win32",
"darwin",
"linux"
],
"keywords": [
"tomtom",
"mcp",
"navigation",
"maps",
"routing",
"geocoding",
"cross-platform"
],
"overrides": {
"body-parser": "^2.2.1",
"inflight": "npm:lru-cache@^11.1.0",
"qs": "^6.14.1"
}
}