-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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": "prismarine-block",
"version": "1.21.0",
"description": "Represent a minecraft block with its associated data",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --exit",
"pretest": "npm run lint",
"fix": "standard --fix",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/PrismarineJS/prismarine-block.git"
},
"dependencies": {
"minecraft-data": "^3.38.0",
"prismarine-biome": "^1.1.0",
"prismarine-chat": "^1.5.0",
"prismarine-item": "^1.10.1",
"prismarine-nbt": "^2.0.0",
"prismarine-registry": "^1.1.0"
},
"devDependencies": {
"expect": "^29.1.0",
"minecraft-protocol": "^1.30.0",
"minecraft-wrap": "^1.4.0",
"mocha": "^11.0.1",
"prismarine-block": "file:",
"standard": "^17.1.0"
},
"keywords": [
"prismarine",
"minecraft",
"block",
"js"
],
"author": "Romain Beaumont <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/prismarine-block/issues"
}
}