package.json•1.49 kB
{
"name": "f1-mcp-server",
"version": "1.0.0",
"description": "F1 MCP Server with enhanced telemetry and analysis",
"module": "./src/index.ts",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:openf1": "node test-openf1.js",
"test:ergast": "node test-ergast.js",
"test:live": "node test-live-data.js",
"test:server": "node test-mcp-server.js",
"test:apis": "node test-openf1.js && node test-ergast.js",
"test:all": "node test-openf1.js && node test-ergast.js && node test-live-data.js",
"start": "node build/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"dev:debug": "ts-node-dev --inspect --respawn src/index.ts",
"prepublishOnly": "npm run build"
},
"jest": {
"testMatch": [
"**/test-*.js"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.0",
"@types/mqtt": "^0.0.34",
"axios": "^1.6.7",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"mqtt": "^5.14.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/ws": "^8.18.1",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}