-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 941 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 941 Bytes
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
{
"name": "telegram-lm-interface",
"version": "1.0.0",
"type": "module",
"description": "Telegram LM chat interface",
"main": "./index.js",
"bin": {
"telegram-mcp": "index.js"
},
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test:watch": "jest --watch"
},
"keywords": [
"telegram",
"lm-studio"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^17.4.2",
"node-telegram-bot-api": "^0.67.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ib-R/telegram-lm-interface.git"
},
"bugs": {
"url": "https://github.com/Ib-R/telegram-lm-interface/issues"
},
"homepage": "https://github.com/Ib-R/telegram-lm-interface#readme"
}