-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 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
{
"name": "mcp-telegram",
"version": "0.0.1",
"description": "MCP server to work with Telegram through MTProto",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Alexey Elizarov <alex.elizarov1@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tacticlaunch/mcp-telegram"
},
"keywords": [
"mcp",
"telegram",
"cursor",
"claude",
"ai",
"model-context-protocol"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"inspect": "npx fastmcp inspect src/mcp.ts",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"fastmcp": "^1.20.5",
"telegram": "^2.19.10",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"mcp-telegram": "./dist/index.js"
},
"publishConfig": {
"access": "public"
}
}