-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 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
52
53
54
{
"name": "watch-tower",
"version": "1.2.0",
"description": "Pluggable notification hub for AI agents and apps. One MCP server + one REST API, fan-out to Telegram, Bale, Pushover, Gotify, and ntfy.",
"main": "src/index.js",
"bin": {
"watch-tower-mcp": "src/mcp.js"
},
"scripts": {
"start": "node src/index.js",
"mcp": "node src/mcp.js",
"test": "node test/smoke.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"notifications",
"telegram",
"bale",
"pushover",
"gotify",
"ntfy",
"ai-agent",
"alerting"
],
"author": "Watch Tower contributors",
"license": "MIT",
"homepage": "https://github.com/MMTE/watch-tower#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MMTE/watch-tower.git"
},
"bugs": {
"url": "https://github.com/MMTE/watch-tower/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"src",
"README.md",
"LICENSE",
"CHANGELOG.md",
".env.example"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"multer": "^1.4.5-lts.1",
"node-telegram-bot-api": "^0.66.0",
"zod": "^4.3.6"
}
}