-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 933 Bytes
/
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
{
"name": "tg-bot",
"version": "1.0.0",
"description": "A simple containerized Node.js/TypeScript Telegram bot that checks availabilities at an arcade website and messages you if any availabilities open up.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobdcastro/tg-bot.git"
},
"author": "Jacob D. Castro <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacobdcastro/tg-bot/issues"
},
"homepage": "https://github.com/jacobdcastro/tg-bot#readme",
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"node-telegram-bot-api": "^0.66.0"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/node-telegram-bot-api": "^0.64.7",
"typescript": "^5.5.2"
}
}