-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "@overpod/mcp-telegram",
"version": "1.24.0",
"description": "MCP server for Telegram userbot — messages, media, reactions, polls & more. Built on GramJS/MTProto.",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./service": "./dist/telegram-client.js"
},
"bin": {
"mcp-telegram": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"login": "node dist/qr-login-cli.js",
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"lint": "biome check src/",
"lint:fix": "biome check --fix src/",
"format": "biome format --write src/",
"test": "tsx --test src/**/*.test.ts",
"test:watch": "tsx --test --watch src/**/*.test.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"telegram",
"gramjs",
"mtproto",
"userbot",
"claude",
"ai-tools"
],
"author": "overpod",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/overpod/mcp-telegram.git"
},
"homepage": "https://github.com/overpod/mcp-telegram#readme",
"bugs": {
"url": "https://github.com/overpod/mcp-telegram/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"dotenv": "^17.3.1",
"qrcode": "^1.5.4",
"telegram": "^2.26.22",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^25.5.0",
"@types/qrcode": "^1.5.6",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitepress": "^1.6.4"
}
}