bedrock-protocol/package.json
2021-04-08 01:32:20 -04:00

61 lines
1.7 KiB
JSON

{
"name": "bedrock-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 --bail",
"pretest": "npm run lint",
"lint": "standard",
"vanillaServer": "node tools/startVanillaServer.js",
"dumpPackets": "node tools/genPacketDumps.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",
"asn1": "^0.2.4",
"browserify-cipher": "^1.0.1",
"bedrock-provider": "^1.0.0",
"debug": "^4.3.1",
"ec-pem": "^0.18.0",
"jsonwebtoken": "^8.5.1",
"jsp-raknet": "github:extremeheat/raknet#client",
"leveldb-zlib": "0.0.26",
"minecraft-folder-path": "^1.1.0",
"node-fetch": "^2.6.1",
"prismarine-nbt": "^1.5.0",
"protodef": "^1.11.0",
"raknet-native": "^1.0.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.2",
"standard": "^16.0.3",
"bedrock-protocol": "file:."
},
"standard": {
"parser": "babel-eslint"
},
"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"
}