-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 KB
/
package.json
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
{
"name": "bedrock-provider",
"version": "3.1.0",
"description": "Minecraft Bedrock edition chunk provider",
"main": "./js/index.js",
"scripts": {
"build": "tsc",
"lint": "ts-standard",
"fix": "ts-standard --fix",
"test": "tsc && mocha --bail --require mocha-steps --require ts-node/register test/*.ts --exit"
},
"author": "extrmeheat",
"repository": {
"url": "https://github.com/extremeheat/bedrock-provider.git"
},
"license": "MIT",
"dependencies": {
"@jsprismarine/jsbinaryutils": "^2.1.7",
"minecraft-data": "^3.0.0",
"prismarine-biome": "^1.1.1",
"prismarine-block": "^1.11.0",
"prismarine-chunk": "^1.30.0",
"prismarine-nbt": "^2.0.0",
"prismarine-registry": "^1.1.0",
"protodef": "^1.15.0",
"vec3": "^0.1.7",
"xxhash-wasm": "^1.0.1"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.19",
"bedrock-protocol": "^3.9.0",
"bedrock-provider": "file:./",
"leveldb-zlib": "^1.0.0",
"minecraft-bedrock-server": "^1.1.0",
"mocha": "^10.2.0",
"mocha-steps": "^1.3.0",
"prismarine-world": "^3.6.0",
"ts-node": "^10.9.1",
"ts-standard": "^10.0.0",
"typescript": "^4.9.4"
}
}