-
Notifications
You must be signed in to change notification settings - Fork 270
/
package.json
48 lines (48 loc) · 1.11 KB
/
package.json
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
{
"name": "telegram-bot",
"version": "1.0.0",
"description": "Telegram Bot that greets people, powered by Cyclic.",
"main": "dist/bot.js",
"scripts": {
"build": "tsc",
"start": "node dist/bot.js",
"dev": "env-cmd ts-node-dev src/bot.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eludadev/telegram-bot.git"
},
"keywords": [
"chat",
"bot",
"unicode",
"social-media",
"bots",
"telegram",
"serverless",
"telegram-bot",
"chatbot",
"text-effects"
],
"author": "eludadev",
"license": "MIT",
"bugs": {
"url": "https://github.com/eludadev/telegram-bot/issues"
},
"homepage": "https://github.com/eludadev/telegram-bot#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.188",
"@types/node": "^18.11.7",
"@types/node-fetch": "^2.6.2",
"env-cmd": "^10.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"express": "^4.18.2",
"grammy": "^1.11.2",
"lodash": "^4.17.21"
}
}