This repository was archived by the owner on Feb 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.87 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.87 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "notify-me-maybe-mcp",
"version": "1.0.1",
"description": "A powerful MCP (Model Context Protocol) server for multi-platform notifications and interactive AI workflows. Supports Telegram, webhooks, and synchronous user interactions.",
"main": "dist/index.js",
"type": "module",
"bin": {
"notify-me-maybe": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"mcp-config.json",
".env.example"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"prepublishOnly": "npm run build",
"postinstall": "echo 'Please check README.md for configuration instructions'"
},
"keywords": [
"mcp",
"model-context-protocol",
"notification",
"telegram",
"line",
"webhook",
"ai",
"claude",
"cursor",
"interactive",
"prompt",
"bot",
"messaging",
"typescript",
"node"
],
"author": {
"name": "Elliot Chen",
"email": "keoy7am@gmail.com",
"url": "https://github.com/keoy7am"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/keoy7am/NotifyMeMaybe.git"
},
"homepage": "https://github.com/keoy7am/NotifyMeMaybe#readme",
"bugs": {
"url": "https://github.com/keoy7am/NotifyMeMaybe/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@line/bot-sdk": "^9.0.0",
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"node-telegram-bot-api": "^0.66.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"@types/node-telegram-bot-api": "^0.64.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
]
}