-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 733 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
{
"name": "proforwarder-discord-bot",
"version": "1.0.0",
"description": "Discord bot for forwarding messages between channels and servers with Telegram integration",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [
"discord",
"bot",
"forward",
"message",
"telegram",
"bridge"
],
"author": "CalledMasih",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"axios": "^1.8.4",
"chalk": "^4.1.2",
"discord.js": "^14.25.1",
"dotenv": "^16.4.5",
"express": "^5.2.1",
"express-session": "^1.19.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}