UNPKG

rui-weather-service-api

Version:

Weather API service with OpenWeatherMap integration - includes both standalone API and MCP server

62 lines (61 loc) 1.49 kB
{ "name": "rui-weather-service-api", "version": "1.0.3", "description": "Weather API service with OpenWeatherMap integration - includes both standalone API and MCP server", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "weather-service": "./dist/cli.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsc --watch", "server": "node dist/index.js", "cli": "node dist/cli.js", "weather": "node dist/cli.js weather", "forecast": "node dist/cli.js forecast", "prepublishOnly": "npm run build", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "weather", "openweathermap", "api", "forecast", "meteorology", "climate", "mcp", "model-context-protocol" ], "author": "", "license": "ISC", "dependencies": { "@modelcontextprotocol/sdk": "^1.11.0", "axios": "^1.6.2", "commander": "^11.1.0", "dotenv": "^16.5.0", "zod": "^3.22.4" }, "devDependencies": { "@types/node": "^22.15.3", "typescript": "^5.2.2" }, "repository": { "type": "git", "url": "https://github.com/yourusername/weather-service-api.git" }, "bugs": { "url": "https://github.com/yourusername/weather-service-api/issues" }, "homepage": "https://github.com/yourusername/weather-service-api#readme", "engines": { "node": ">=14.0.0" } }