-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 830 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 830 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
36
37
38
{
"name": "tg-anon-bot",
"version": "1.0.0",
"description": "Telegram bot for anonymous communication",
"author": "Andrew Motoshin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:htmlhero/tg-anon-bot.git"
},
"keywords": [
"telegram",
"bot",
"anonymity"
],
"type": "module",
"engines": {
"node": "v22.9.0",
"npm": "10.8.3"
},
"scripts": {
"start": "rimraf ./build/* && npm run build && node ./build/index.js",
"build": "tsc --build ."
},
"dependencies": {
"lodash-es": "4.17.21",
"telegraf": "4.16.3"
},
"devDependencies": {
"@telegraf/types": "7.1.0",
"@types/lodash-es": "4.17.12",
"@types/node": "22.10.1",
"dotenv": "16.4.7",
"prettier": "3.4.1",
"rimraf": "5.0.10",
"typescript": "5.7.2"
}
}