package.json•719 B
{
"name": "weather",
"version": "1.0.0",
"description": "",
"license": "ISC",
"type": "module",
"main": "build/index.http.js",
"files": [
"build"
],
"bin": {
"weather": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.http.js",
"start:stdio": "node build/index.js",
"start:http": "node build/index.http.js",
"dev": "tsc && node build/index.http.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.9.1",
"typescript": "^5.9.3"
}
}