bedrock-protocol/package.json
extremeheat 458136d877
Vanilla server tests, client offline mode (#49)
* vanilla server launcher

* update package.json

* re-add babel to fix standard

* fix ci

* add buffer-equal

* simple fixes

* add offline client support

* fix closing bugs, proper wait for server start

* add test to mocha

* change test timeout to 2 min

* increase timeouts

Co-authored-by: Romain Beaumont <romain.rom1@gmail.com>
2021-03-17 23:04:14 +01:00

58 lines
1.6 KiB
JSON

{
"name": "pocket-minecraft-protocol",
"version": "3.0.0",
"description": "Parse and serialize Minecraft Bedrock Edition packets",
"main": "index.js",
"scripts": {
"build": "cd tools && node compileProtocol.js",
"prepare": "npm run build",
"test": "mocha",
"pretest": "npm run lint",
"lint": "standard",
"vanillaServer": "node tools/startVanillaServer.js",
"fix": "standard --fix"
},
"keywords": [
"minecraft",
"pocket-edition",
"protocol"
],
"license": "MIT",
"dependencies": {
"@azure/msal-node": "^1.0.0-beta.6",
"@jsprismarine/jsbinaryutils": "^2.1.8",
"@xboxreplay/xboxlive-auth": "^3.3.3",
"aes-js": "^3.1.2",
"asn1": "^0.2.4",
"bedrock-provider": "^0.1.1",
"debug": "^4.3.1",
"ec-pem": "^0.18.0",
"jsonwebtoken": "^8.5.1",
"jsp-raknet": "github:extremeheat/raknet#client",
"minecraft-folder-path": "^1.1.0",
"node-fetch": "^2.6.1",
"prismarine-nbt": "^1.5.0",
"protodef": "^1.11.0",
"raknet-native": "^0.1.0",
"uuid-1345": "^1.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.10",
"babel-eslint": "^10.1.0",
"buffer-equal": "^1.0.0",
"mocha": "^8.3.2",
"protodef-yaml": "^1.0.1",
"standard": "^16.0.3"
},
"standard": {
"parser": "babel-eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhsjlw/pocket-minecraft-protocol.git"
},
"bugs": {
"url": "https://github.com/mhsjlw/pocket-minecraft-protocol/issues"
},
"homepage": "https://github.com/mhsjlw/pocket-minecraft-protocol#readme"
}