-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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": "discordcsgoserverbot",
"version": "7.0.0",
"description": "Server info bot",
"main": "src/index.js",
"type": "module",
"files": [
"src/**/*",
"servers.json"
],
"scripts": {
"start": "node src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"engines": {
"node": ">=24.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sneaks-Community/discordCSGOServerBot.git"
},
"bugs": {
"url": "https://github.com/Sneaks-Community/discordCSGOServerBot/issues"
},
"homepage": "https://github.com/Sneaks-Community/discordCSGOServerBot#readme",
"dependencies": {
"better-sqlite3": "^12.10.0",
"discord.js": "^14.26.4",
"gamedig": "^5.3.2",
"p-limit": "^7.3.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"zod": "^4.4.3"
},
"overrides": {
"fast-xml-parser": "^5.5.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-n": "^18.0.1",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-unicorn": "^64.0.0"
}
}