-
Notifications
You must be signed in to change notification settings - Fork 163
/
package.json
65 lines (65 loc) · 1.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "the_guard_bot",
"version": "1.6.0",
"description": "Telegram guard bot to manage a network of groups.",
"main": "index.js",
"scripts": {
"postversion": "git push --atomic --follow-tags origin develop develop:master",
"start": "node index",
"lint": "eslint --ext .ts --ext .js .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDevs-Network/bot.git"
},
"keywords": [
"bot",
"the guard",
"thedevs",
"telegram"
],
"author": "Thomas Rory Gummerson <[email protected]> (https://trgwii.no)",
"contributors": [
"Pouria Ezzati <[email protected]> (https://thedevs.network)",
"Wojciech Pawlik <[email protected]>",
"Muthu Kumar <[email protected]> (https://mkr.pw)",
"Simon Schürrle (https://sitischu.com)",
"Martin Rys (https://rys.pw)"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/TheDevs-Network/the-guard-bot/issues"
},
"homepage": "https://github.com/TheDevs-Network/the-guard-bot/",
"dependencies": {
"dedent-js": "^1.0.1",
"jspack": "0.0.4",
"millisecond": "^0.1.2",
"nedb-promise": "^2.0.1",
"ramda": "^0.29.1",
"require-directory": "^2.1.1",
"spamwatch": "^0.4.0",
"string-replace-async": "^2.0.0",
"telegraf": "^4.15.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"undici": "^5.28.0",
"xregexp": "^5.1.1"
},
"engines": {
"node": ">=18.17.1"
},
"devDependencies": {
"@types/node": "^13.13.52",
"@types/node-fetch": "^2.6.9",
"@types/ramda": "^0.25.51",
"@types/xregexp": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0"
}
}