bedrock-protocol/package.json
LucienHH cde600d51e
Implement Realm joining (#193)
* Pass client options to ping

* Implement RealmAPI to auth

* Add Realm join example

* Update package.json

* Update README.md

* Update index.d.ts

* Show one option, remove listener

* Fix wording

* Explain options

* Optional fields

* Fix typo

* Moved retry ad host/port extraction to prealms

* Add docs

* Fix lint

* Depend on prealms release

Co-authored-by: LucienHH <Lucien.holloway@aprox.co.uk>
2022-04-09 13:11:12 -04:00

53 lines
1.4 KiB
JSON

{
"name": "bedrock-protocol",
"version": "3.10.0",
"description": "Minecraft Bedrock Edition protocol library",
"main": "index.js",
"scripts": {
"build": "cd tools && node compileProtocol.js",
"test": "mocha --bail",
"pretest": "npm run lint",
"lint": "standard",
"vanillaServer": "node tools/startVanillaServer.js",
"dumpPackets": "node tools/genPacketDumps.js",
"fix": "standard --fix"
},
"keywords": [
"minecraft",
"bedrock",
"pocket-edition",
"protocol"
],
"license": "MIT",
"dependencies": {
"debug": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"jsp-raknet": "^2.1.3",
"minecraft-data": "^2.96.0",
"minecraft-folder-path": "^1.2.0",
"prismarine-auth": "^1.1.0",
"prismarine-nbt": "^2.0.0",
"prismarine-realms": "^1.1.0",
"protodef": "^1.14.0",
"uuid-1345": "^1.0.2",
"raknet-native": "^1.0.3"
},
"optionalDependencies": {
},
"devDependencies": {
"bedrock-protocol": "file:.",
"bedrock-provider": "^2.0.0",
"leveldb-zlib": "^1.0.1",
"mocha": "^9.1.2",
"protodef-yaml": "^1.1.0",
"standard": "^17.0.0-2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrismarineJS/bedrock-protocol.git"
},
"bugs": {
"url": "https://github.com/PrismarineJS/bedrock-protocol/issues"
},
"homepage": "https://github.com/PrismarineJS/bedrock-protocol#readme"
}