-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "telegram-reminder-bot",
"version": "0.0.1",
"description": "A telegram bot for recurring reminders",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "npm run build && node dist/src/index.js",
"test": "npm run build && node dist/tests/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subramanian-elavathur/telegram-reminder-bot.git"
},
"keywords": [
"telegram",
"bot",
"reminder",
"countdown",
"recurring"
],
"author": "subramanian-elavathur",
"license": "MIT",
"bugs": {
"url": "https://github.com/subramanian-elavathur/telegram-reminder-bot/issues"
},
"homepage": "https://github.com/subramanian-elavathur/telegram-reminder-bot#readme",
"devDependencies": {
"@types/node": "^18.7.17",
"good-vibes": "^1.2.0",
"typescript": "^4.8.3"
},
"dependencies": {
"dotenv": "^16.0.2",
"glitch-db": "^0.8.0",
"lodash.chunk": "^4.2.0",
"luxon": "^3.0.3",
"rrule": "^2.7.1",
"telegraf": "^4.9.1"
}
}