-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
47 lines (47 loc) · 1.52 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
{
"name": "telegram-forwarder-bot",
"version": "1.0.0",
"description": "Forward Telegram messages between chats using pure Telegram Bot API",
"main": "src/index.ts",
"scripts": {
"test": "npx nodemon src/index.ts",
"build": "tsc src/index.ts --outDir dist/ --esModuleInterop --resolveJsonModule",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"bun:build": "bun build src/index.ts",
"bun:start": "bun src/index.ts",
"pretty": "prettier --write . --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viperadnan-git/telegram-forwarder-bot.git"
},
"keywords": [
"telegram",
"message",
"forward",
"telegram-forwarder",
"telegram-message-forwarder"
],
"author": "Adnan Ahmad",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/viperadnan-git/telegram-forwarder-bot/issues"
},
"homepage": "https://github.com/viperadnan-git/telegram-forwarder-bot#readme",
"dependencies": {
"@grammyjs/parse-mode": "^1.10.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"grammy": "1.29.0",
"ioredis": "^5.4.1",
"winston": "^3.14.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.16.1",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}