-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.16 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
{
"name": "apigram",
"version": "1.4.1",
"description": "Multi-user Telegram API gateway (MTProto) — REST + WebSocket",
"keywords": [
"telegram",
"mtproto",
"gateway",
"userbot",
"rest",
"websocket",
"multi-account",
"mcp",
"model-context-protocol",
"ai-agent",
"claude"
],
"author": "emaxe",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/emaxe/apiGram.git"
},
"homepage": "https://github.com/emaxe/apiGram#readme",
"bugs": {
"url": "https://github.com/emaxe/apiGram/issues"
},
"type": "module",
"main": "src/index.js",
"bin": {
"apigram": "src/index.js"
},
"files": [
"src",
"skills",
"run.sh",
".env.example",
"README.md",
"README.ru.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/unit.test.js",
"start": "node src/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"dotenv": "^16.6.1",
"express": "^4.22.2",
"multer": "^2.3.0",
"teleproto": "^1.229.0",
"ws": "^8.21.3",
"zod": "^3.25.76"
},
"engines": {
"node": ">=18"
}
}