-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@h1deya/mcp-server-weather",
"version": "0.1.3",
"description": "MCP server for weather forecast and severe weather alerts in the US",
"license": "MIT",
"keywords": [
"modelcontextprotocol",
"mcp",
"mcp-server",
"weather"
],
"author": "",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hideya/mcp-server-weather-js.git"
},
"engines": {
"node": ">=18"
},
"bin": {
"mcp-server-weather": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"clean": "git clean -fdxn -e .env && read -p 'OK?' && git clean -fdx -e .env",
"do-publish": "npm run clean && npm install && npm publish --access=public",
"publish-dry-run": "npm run clean && npm install && npm publish --access=public --dry-run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22",
"shx": "^0.3.4",
"typescript": "^5.7.2"
}
}