New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

minecraft-protocol

Package Overview
Dependencies
Maintainers
7
Versions
176
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minecraft-protocol - npm Package Compare versions

Comparing version 1.9.3 to 1.9.4

.gitpod.yml

6

HISTORY.md
# History
## 1.9.4
* add reference to node types in typescript types
## 1.9.3

@@ -316,3 +320,3 @@

## 0.12.0
* Updated protocol version to support 1.7.2

@@ -319,0 +323,0 @@ * Overhaul the serializer backend to be more general-purpose and future-proof.

7

package.json
{
"name": "minecraft-protocol",
"version": "1.9.3",
"version": "1.9.4",
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",

@@ -15,2 +15,3 @@ "main": "src/index.js",

"lint": "standard",
"fix": "standard fix",
"pretest": "npm run lint"

@@ -42,3 +43,3 @@ },

"require-self": "^0.2.1",
"standard": "^12.0.0"
"standard": "^13.1.0"
},

@@ -51,3 +52,3 @@ "dependencies": {

"lodash.merge": "^4.3.0",
"minecraft-data": "^2.37.3",
"minecraft-data": "^2.39.0",
"node-rsa": "^0.4.2",

@@ -54,0 +55,0 @@ "prismarine-nbt": "^1.2.1",

@@ -8,2 +8,3 @@ # minecraft protocol

[![Greenkeeper badge](https://badges.greenkeeper.io/PrismarineJS/node-minecraft-protocol.svg)](https://greenkeeper.io/)
[![Try it on gitpod](https://img.shields.io/badge/try-on%20gitpod-brightgreen.svg)](https://gitpod.io/#https://github.com/PrismarineJS/node-minecraft-protocol)

@@ -15,3 +16,3 @@ Parse and serialize minecraft packets, plus authentication and encryption.

* Supports Minecraft PC version 1.7.10, 1.8.8, 1.9 (15w40b, 1.9, 1.9.1-pre2, 1.9.2, 1.9.4),
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), and 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2) and 1.14(1.14, 1.14.1)
1.10 (16w20a, 1.10-pre1, 1.10, 1.10.1, 1.10.2), 1.11 (16w35a, 1.11, 1.11.2), 1.12 (17w15a, 17w18b, 1.12-pre4, 1.12, 1.12.1, 1.12.2), and 1.13 (17w50a, 1.13, 1.13.1, 1.13.2-pre1, 1.13.2-pre2, 1.13.2) and 1.14(1.14, 1.14.1, 1.14.3, 1.14.4)
* Parses all packets and emits events with packet fields as JavaScript

@@ -36,3 +37,3 @@ objects.

* Optimized for rapidly staying up to date with Minecraft protocol updates.
## Third Party Plugins

@@ -39,0 +40,0 @@

@@ -0,1 +1,3 @@

/// <reference types="node" />
import { EventEmitter } from 'events';

@@ -2,0 +4,0 @@ import { Socket } from 'net'

'use strict'
module.exports = {
defaultVersion: '1.13.2',
supportedVersions: ['1.7', '1.8', '1.9', '1.10', '1.11.2', '1.12.2', '1.13.2', '1.14.1']
defaultVersion: '1.14.4',
supportedVersions: ['1.7', '1.8', '1.9', '1.10', '1.11.2', '1.12.2', '1.13.2', '1.14.4']
}
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc