@jsprismarine/bedrock-data 1.20.71-alpha.1 → 1.20.71-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/index.d.ts +13 -0
- package/package.json +6 -10
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
# bedrock-data
|
|
2
|
+
|
|
3
|
+
[](https://discord.gg/6w8JWhy)
|
|
4
|
+
[](https://www.npmjs.com/package/@jsprismarine/bedrock-data)
|
|
5
|
+
|
|
2
6
|
BedrockData from PMMP exported in a nodejs friendly way.
|
|
3
7
|
|
|
4
8
|
## Getting Started
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare module '@jsprismarine/bedrock-data' {
|
|
2
|
+
export const banner_patterns: any;
|
|
3
|
+
export const block_id_map: any;
|
|
4
|
+
export const creativeitems: any;
|
|
5
|
+
export const entity_id_map: any;
|
|
6
|
+
export const item_id_map: any;
|
|
7
|
+
export const recipes: any;
|
|
8
|
+
|
|
9
|
+
export const biome_definitions: any;
|
|
10
|
+
export const canonical_block_states: any;
|
|
11
|
+
export const entity_identifiers: any;
|
|
12
|
+
export const r12_to_current_block_map: any;
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -3,24 +3,20 @@
|
|
|
3
3
|
"prettier": "@nordcom/prettier",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "1.20.71-alpha.
|
|
6
|
+
"version": "1.20.71-alpha.3",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
|
+
"index.d.ts",
|
|
9
10
|
"README.md"
|
|
10
11
|
],
|
|
11
12
|
"main": "./dist/index.js",
|
|
12
13
|
"module": "./dist/index.js",
|
|
13
14
|
"types": "./index.d.ts",
|
|
14
15
|
"exports": {
|
|
15
|
-
".":
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
],
|
|
20
|
-
"module": "./dist/index.js",
|
|
21
|
-
"require": "./dist/index.js",
|
|
22
|
-
"types": "./index.d.ts"
|
|
23
|
-
},
|
|
16
|
+
".": "./dist/index.js",
|
|
17
|
+
"./*": "./dist/*.js",
|
|
18
|
+
"./*.nbt": "./dist/*.nbt",
|
|
19
|
+
"./*.bin": "./dist/*.bin",
|
|
24
20
|
"./package.json": "./package.json"
|
|
25
21
|
},
|
|
26
22
|
"publishConfig": {
|