package.json•3.03 kB
{
"name": "@tomtom-org/tomtom-mcp",
"version": "1.0.4",
"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"
},
"scripts": {
"build:ts": "tsc --emitDeclarationOnly --declaration --declarationMap",
"build:rollup": "rollup -c",
"build": "npm run build:ts && npm run build:rollup",
"build:bin": "shx chmod +x bin/tomtom-mcp.js",
"start": "node dist/index.js",
"dev": "cross-env NODE_OPTIONS=\"--no-warnings --loader ts-node/esm\" node src/index.ts",
"prepare": "npm run build",
"test": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:comprehensive": "node tests/test-comprehensive.js",
"test:all": "npm run test && npm run test:comprehensive",
"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",
"clean": "shx rm -rf dist coverage eslint-report.json",
"prebuild": "npm run clean"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"axios": "^1.6.7",
"dotenv": "^16.5.0",
"node-fetch": "^3.3.2",
"tslib": "^2.8.1",
"zod": "^3.22.4",
"shx": "^0.4.0",
"typescript": "^5.8.3",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.3",
"rollup": "^4.44.1"
},
"devDependencies": {
"@types/node": "^20.6.0",
"@typescript-eslint/parser": "^8.35.1",
"@eslint/config-array": "^0.21.0",
"@eslint/object-schema": "^2.1.6",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"cross-env": "^7.0.3",
"ts-node": "^10.9.1",
"vitest": "^3.2.4",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.1",
"@typescript-eslint/eslint-plugin": "^8.35.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"engines": {
"node": ">=22.9.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": {
"inflight": "npm:lru-cache@^11.1.0"
}
}