-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "telegram-forward-user-bot",
"version": "1.6.10",
"description": "A Telegram \"bot\" working as user, using MTProto via [gramjs](https://github.com/gram-js/gramjs), to forward messages between chats/groups/channels. Configurable via Bot menu.",
"main": "src/index.js",
"keywords": [
"telegram",
"bot",
"forward",
"MTProto",
"TDLib"
],
"author": "Petro Voronov <petro.voronov@gmail.com>",
"license": "MIT",
"dependencies": {
"emoji-regex": "^10.3.0",
"i18n": "^0.15.1",
"json-stringify-safe": "^5.0.1",
"node-localstorage": "^3.0.5",
"strftime": "^0.10.3",
"telegram": "^2.26.6",
"telegram-menu-from-structure": "^1.3.7",
"yargs": "^17.7.2"
},
"scripts": {
"test": "jest",
"lint": "eslint . ; npx markdownlint-cli2 *.md",
"start": "node src/index.js",
"debug": "node src/index.js --debug",
"help": "node src/index.js --help"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-sonarjs": "^2.0.4",
"globals": "^15.12.0",
"jest": "^29.7.0",
"markdownlint-cli2": "^0.14.0"
}
}