Socket
Socket
Sign inDemoInstall

ts-rcon

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.5 to 1.2.0

src/index.ts

91

package.json
{
"author": "Bharat Middha <5100938+bmiddha@users.noreply.github.com>",
"name": "ts-rcon",
"version": "1.2.0",
"description": "Rcon client implemented in Node.js with TypeScript",
"keywords": [
"rcon",
"minecraft",
"csgo",
"tf2",
"tcp",
"udp",
"source",
"typescript",
"es6"
],
"license": "MIT",
"version": "1.1.5",
"homepage": "https://github.com/bmiddha/ts-rcon",
"repository": "git://github.com/bmiddha/ts-rcon",
"author": "Bharat Middha <5100938+bmiddha@users.noreply.github.com>",
"homepage": "https://bmiddha.github.io/ts-rcon",
"repository": {
"type": "git",
"url": "git+https://github.com/bmiddha/ts-rcon.git"
},
"bugs": {
"url": "https://github.com/bmiddha/ts-rcon/issues"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"module": "dist/ts-rcon.esm.js",
"files": [
"dist"
"dist",
"src"
],
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup -c",
"watch": "rollup -cw"
"build": "tsdx build",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"start": "tsdx watch",
"test": "tsdx test",
"test:watch": "yarn test --watch"
},
"dependencies": {},
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1",
"rollup": "^2.26.10",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^4.0.2"
"@types/node": "^15.6.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier-package-json": "^2.6.0",
"tsdx": "^0.14.1",
"typescript": "^4.3.2"
},
"keywords": [
"csgo",
"es6",
"minecraft",
"rcon",
"source",
"tcp",
"tf2",
"typescript",
"udp"
],
"engines": {
"node": ">=12"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"(src|test)/**": [
"yarn lint:fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}
# ts-rcon
[![npm](https://img.shields.io/npm/v/ts-rcon)](https://www.npmjs.com/package/ts-rcon) [![Node CI](https://github.com/bmiddha/ts-rcon/workflows/Node%20CI/badge.svg)](https://github.com/bmiddha/ts-rcon/actions?query=workflow%3A%22Node+CI%22)
[![npm](https://img.shields.io/npm/v/ts-rcon)](https://www.npmjs.com/package/ts-rcon) [![CI](https://github.com/bmiddha/ts-rcon/actions/workflows/main.yml/badge.svg)](https://github.com/bmiddha/ts-rcon/actions/workflows/main.yml)

@@ -23,4 +23,2 @@ ts-rcon is a simple library for connecting to RCON servers in node.js implemented in TypeScript.

See [`examples/`](examples/) for examples.
Some games use TCP and some use UDP for their RCON implementation. To tell

@@ -27,0 +25,0 @@ node-rcon which protocol to use, pass it an options object like so:

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc