-
-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "bedrock-protocol",
"version": "3.60.1",
"description": "Minecraft Bedrock Edition protocol library",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "cd tools && node compileProtocol.js",
"test": "mocha --retries 2 --bail --exit",
"pretest": "npm run lint && npm run typecheck",
"lint": "standard",
"vanillaServer": "minecraft-bedrock-server --root tools --version",
"dumpPackets": "node tools/genPacketDumps.js",
"fix": "standard --fix",
"typecheck": "tsc --noEmit --strict --skipLibCheck --target ES2020 --module commonjs --esModuleInterop test/types/nethernet.ts"
},
"keywords": [
"minecraft",
"bedrock",
"pocket-edition",
"protocol"
],
"license": "MIT",
"dependencies": {
"debug": "^4.3.1",
"json-bigint": "^1.0.0",
"jsonwebtoken": "^9.0.0",
"jsp-raknet": "^2.1.3",
"minecraft-data": "^3.117.0",
"minecraft-folder-path": "^1.2.0",
"nethernet": "^1.1.2",
"prismarine-auth": "^3.1.1",
"prismarine-nbt": "^2.0.0",
"prismarine-realms": "^1.6.0",
"prismarine-xbox-services": "PrismarineJS/prismarine-xbox-services#052a9676f514c5470a723651b1dbb1adcf238944",
"protodef": "^1.14.0",
"raknet-native": "^1.0.3",
"uuid-1345": "^1.0.2",
"ws": "^8.18.0"
},
"optionalDependencies": {
"raknet-node": "^0.5.0"
},
"devDependencies": {
"bedrock-protocol": "file:.",
"bedrock-provider": "^2.0.0",
"leveldb-zlib": "^1.0.1",
"minecraft-bedrock-server": "^1.7.0",
"mocha": "^11.0.1",
"protodef-yaml": "^1.1.0",
"standard": "^17.0.0-2",
"typescript": "^4.9.5"
},
"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",
"engines": {
"node": ">=24"
}
}