bc-minecraft-bedrock-project 1.7.54 → 1.7.55

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.
@@ -38,7 +38,7 @@ export interface ManifestHeader {
38
38
  /**This is the version of the base game your world template requires, specified as [majorVersion, minorVersion, revision]. We use this to determine what version of the base game resource and behavior packs to apply when your content is used.*/
39
39
  base_game_version?: number[];
40
40
  /**This is the minimum version of the game that this pack was written for. This is a required field for resource and behavior packs. This helps the game identify whether any backwards compatibility is needed for your pack. You should always use the highest version currently available when creating packs.*/
41
- min_engine_version?: string;
41
+ min_engine_version?: number[];
42
42
  }
43
43
  /** */
44
44
  export interface ManifestModule {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bc-minecraft-bedrock-project",
3
- "version": "1.7.54",
3
+ "version": "1.7.55",
4
4
  "description": "The typescript library responsible for reading/parsing minecraft bedrock data",
5
5
  "main": "./lib/src/main.js",
6
6
  "types": "./lib/src/main.d.ts",
@@ -50,9 +50,9 @@
50
50
  "typescript": "^4.4.4"
51
51
  },
52
52
  "dependencies": {
53
- "bc-minecraft-bedrock-command": "^1.2.16",
54
- "bc-minecraft-bedrock-types": "^1.2.17",
55
- "bc-minecraft-molang": "^1.2.2",
53
+ "bc-minecraft-bedrock-command": "^1.2.18",
54
+ "bc-minecraft-bedrock-types": "^1.2.18",
55
+ "bc-minecraft-molang": "^1.2.3",
56
56
  "bc-minecraft-project": "^1.0.14",
57
57
  "jsonc": "^2.0.0"
58
58
  }