-
Notifications
You must be signed in to change notification settings - Fork 146
/
package.json
80 lines (80 loc) · 1.93 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "gamedig",
"description": "Query for the status of any game server in Node.JS",
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build",
"build": "node tools/esbuild.js"
},
"keywords": [
"srcds",
"query",
"game",
"utility",
"util",
"server",
"gameserver",
"game-server-query",
"game server query",
"server query",
"game server",
"gameserverquery",
"serverquery",
"terraria",
"counter strike",
"csgo",
"minecraft"
],
"type": "module",
"exports": {
"import": "./lib/index.js",
"require": "./dist/index.cjs"
},
"author": "GameDig Contributors",
"version": "5.1.4",
"repository": {
"type": "git",
"url": "https://github.com/gamedig/node-gamedig.git"
},
"bugs": {
"url": "https://github.com/gamedig/node-gamedig/issues"
},
"license": "MIT",
"engines": {
"node": ">=16.20.0"
},
"bin": {
"gamedig": "bin/gamedig.js"
},
"files": [
"dist/index.cjs",
"bin/gamedig.js",
"lib/",
"protocols/",
"LICENSE",
"GAMES_LIST.md",
"README.md"
],
"dependencies": {
"cheerio": "1.0.0-rc.12",
"gbxremote": "0.2.1",
"got": "13.0.0",
"iconv-lite": "0.6.3",
"long": "5.2.3",
"minimist": "1.2.8",
"seek-bzip": "2.0.0",
"varint": "6.0.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/node": "^16.18.58",
"esbuild": "^0.19.10",
"esbuild-node-externals": "^1.12.0",
"eslint": "^8.49.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "^6.1.1"
}
}