-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
58 lines (58 loc) · 1.4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "prismarine-chunk",
"version": "1.38.0",
"description": "A class to hold chunk data for prismarine",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "mocha --reporter spec --exit",
"fix": "standard --fix",
"lint": "standard",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/PrismarineJS/prismarine-chunk.git"
},
"keywords": [
"minecraft",
"voxel",
"chunk",
"world"
],
"contributors": [
"Will Franzen <wtfranzen@gmail.com> (http://will.xyz/)",
"Romain Beaumont <romain.rom1@gmail.com>",
"Georges Oates Larsen (flynnn)",
"mhsjlw",
"hornta",
"Karang",
"Vito Gamberini <vito@gamberini.email>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/prismarine-chunk/issues"
},
"homepage": "https://github.com/PrismarineJS/prismarine-chunk",
"devDependencies": {
"@types/node": "^22.7.5",
"expect": "^29.1.0",
"mocha": "^11.0.1",
"prismarine-chunk": "file:.",
"standard": "^17.0.0-2",
"typescript": "^5.0.4"
},
"dependencies": {
"prismarine-biome": "^1.2.0",
"prismarine-block": "^1.14.1",
"prismarine-nbt": "^2.2.1",
"prismarine-registry": "^1.1.0",
"smart-buffer": "^4.1.0",
"uint4": "^0.1.2",
"vec3": "^0.1.3",
"xxhash-wasm": "^0.4.2"
},
"engines": {
"node": ">=14"
}
}