UNPKG

@arbytez/cod4-rcon-commands

Version:

A simple wrapper library to the rcon commands you can send to a cod4 server. Response data for commands '_status_', '_rconStatus_' and '_info_' is parsed into custom type object, so it is possible to easily manage the server status/info.

51 lines (50 loc) 1.02 kB
{ "version": "0.1.1", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "@arbytez/cod4-rcon-commands", "author": "arbytez", "repository": { "type": "git", "url": "https://github.com/arbytez/cod4-rcon-commands.git" }, "homepage": "https://github.com/arbytez/cod4-rcon-commands", "keywords": [ "cod4", "rcon" ], "module": "dist/cod4-rcon-commands.esm.js", "devDependencies": { "@types/jest": "^25.1.3", "husky": "^4.2.3", "tsdx": "^0.12.3", "tslib": "^1.11.1", "typescript": "^3.8.3" }, "dependencies": { "iconv-lite": "^0.5.1" } }