@trashwbin/weather-service
Version:
A weather service that provides weather alerts and forecasts using the National Weather Service API
47 lines (46 loc) • 1.12 kB
JSON
{
"name": "@trashwbin/weather-service",
"version": "1.0.1",
"description": "A weather service that provides weather alerts and forecasts using the National Weather Service API",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"type": "module",
"bin": {
"weather": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"keywords": [
"weather",
"forecast",
"alerts",
"nws",
"weather-api"
],
"author": "Abin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/weather-service.git"
},
"bugs": {
"url": "https://github.com/yourusername/weather-service/issues"
},
"homepage": "https://github.com/yourusername/weather-service#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.1.0",
"typescript": "^5.8.3"
}
}