-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 849 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 849 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
{
"name": "telegram-github-inline-bot",
"version": "1.0.0",
"description": "Telegram inline bot for searching GitHub repositories",
"main": "dist/index.js",
"scripts": {
"build": "tsc && cp -r public dist/",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rm -rf dist"
},
"author": "Alexsandr Kaurcev",
"repository": {
"type": "git",
"url": "https://github.com/kaurcev/telegram-github-inline-bot"
},
"license": "MIT",
"dependencies": {
"telegraf": "^4.12.2",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"@types/express": "^4.17.21"
},
"devDependencies": {
"@types/node": "^20.8.0",
"typescript": "^5.2.2",
"ts-node": "^10.9.0"
},
"keywords": [
"telegram",
"bot",
"github",
"inline",
"typescript"
]
}