package.jsonā¢1.15 kB
{
"name": "weather-mcp",
"version": "1.0.0",
"description": "Weather MCP Server using TypeScript",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:sse": "pnpm run build && node dist/sse-server.js",
"start:sse:8080": "pnpm run build && node dist/sse-server.js 8080",
"start:http": "pnpm run build && node dist/http-server.js",
"start:http:3000": "pnpm run build && node dist/http-server.js 3000",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"keywords": [
"mcp",
"weather",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@types/express": "^5.0.3",
"express": "^5.1.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}