@jsprismarine/bedrock-data 1.20.71-alpha.3 → 1.20.72-b
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/index.d.ts +4 -0
- package/package.json +7 -3
package/index.d.ts
CHANGED
|
@@ -7,7 +7,11 @@ declare module '@jsprismarine/bedrock-data' {
|
|
|
7
7
|
export const recipes: any;
|
|
8
8
|
|
|
9
9
|
export const biome_definitions: any;
|
|
10
|
+
export const biome_definitions_path: string;
|
|
10
11
|
export const canonical_block_states: any;
|
|
12
|
+
export const canonical_block_states_path: string;
|
|
11
13
|
export const entity_identifiers: any;
|
|
14
|
+
export const entity_identifiers_path: string;
|
|
12
15
|
export const r12_to_current_block_map: any;
|
|
16
|
+
export const r12_to_current_block_map_path: string;
|
|
13
17
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"prettier": "@nordcom/prettier",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "1.20.
|
|
6
|
+
"version": "1.20.72b",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
9
|
"index.d.ts",
|
|
@@ -13,8 +13,12 @@
|
|
|
13
13
|
"module": "./dist/index.js",
|
|
14
14
|
"types": "./index.d.ts",
|
|
15
15
|
"exports": {
|
|
16
|
-
".":
|
|
17
|
-
|
|
16
|
+
".": {
|
|
17
|
+
"import": "./dist/index.js",
|
|
18
|
+
"module": "./dist/index.js",
|
|
19
|
+
"require": "./dist/index.js",
|
|
20
|
+
"types": "./index.d.ts"
|
|
21
|
+
},
|
|
18
22
|
"./*.nbt": "./dist/*.nbt",
|
|
19
23
|
"./*.bin": "./dist/*.bin",
|
|
20
24
|
"./package.json": "./package.json"
|