-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
44
45
46
47
48
49
50
51
{
"name": "mcp-pushover",
"version": "1.0.0",
"description": "MCP server for sending push notifications via Pushover",
"main": "dist/main.js",
"bin": {
"mcp-pushover": "./dist/main.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsx src/main.ts",
"test": "vitest",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": ["mcp", "pushover", "notifications", "ai", "claude"],
"author": "Paul Yang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pyang2045/mcp-pushover.git"
},
"bugs": {
"url": "https://github.com/pyang2045/mcp-pushover/issues"
},
"homepage": "https://github.com/pyang2045/mcp-pushover#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "commonjs",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"axios": "^1.10.0",
"dotenv": "^16.5.0",
"p-retry": "^6.2.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"zod": "^3.25.67",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/node": "^24.0.3",
"vitest": "^3.2.4"
}
}