mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-14 07:51:12 +01:00
82 lines
2 KiB
JSON
82 lines
2 KiB
JSON
{
|
|
"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.0.0-beta.2",
|
|
"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/",
|
|
"games.txt",
|
|
"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",
|
|
"punycode": "^2.3.0",
|
|
"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"
|
|
}
|
|
}
|