-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 770 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 770 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
{
"name": "twitter-telegram-bot",
"version": "1.0.0",
"description": "A bot to monitor Twitter and send messages to Telegram",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm install --save-dev @types/node @types/dotenv @types/telegraf @types/tslog",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"cli-progress": "^3.12.0",
"dotenv": "^10.0.0",
"ora": "^8.0.1",
"telegraf": "^4.0.0",
"tslog": "^3.0.0",
"twitter-api-sdk": "^1.0.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/node": "^20.12.13",
"@types/dotenv": "^8.2.0",
"@types/telegraf": "^4.0.0",
"@types/tslog": "^3.0.0",
"typescript": "^4.5.4"
},
"author": "",
"license": "ISC"
}