bc-minecraft-bedrock-project 1.19.40-2 → 1.19.50-0

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.
@@ -22,7 +22,7 @@ export interface EntityEvent {
22
22
  /**
23
23
  * @deprecated Replace with @see {@link ComponentContainer}
24
24
  */
25
- export declare type EntityComponentContainer = ComponentContainer;
25
+ export type EntityComponentContainer = ComponentContainer;
26
26
  /** */
27
27
  export interface EntityDescription extends ScriptContainer {
28
28
  /** */
@@ -1,6 +1,6 @@
1
1
  import { FormatVersion } from "../Types/FormatVersion";
2
2
  /** */
3
- export declare type Model = ModelLegacy | ModelModern;
3
+ export type Model = ModelLegacy | ModelModern;
4
4
  /** */
5
5
  export declare namespace Model {
6
6
  function is(value: any): value is Model;
@@ -1,6 +1,6 @@
1
1
  import { TextDocument } from "./TextDocument";
2
2
  /** */
3
- export declare type JsonPath = string;
3
+ export type JsonPath = string;
4
4
  /** */
5
5
  export declare namespace JsonPath {
6
6
  const seperator = "/";
@@ -1,5 +1,5 @@
1
1
  /** */
2
- export declare type SMap<T> = Record<string, T>;
2
+ export type SMap<T> = Record<string, T>;
3
3
  /** */
4
4
  export declare namespace SMap {
5
5
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bc-minecraft-bedrock-project",
3
- "version": "1.19.40-2",
3
+ "version": "1.19.50-0",
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",
@@ -40,18 +40,18 @@
40
40
  },
41
41
  "homepage": "https://github.com/Blockception/BC-Minecraft-Bedrock-Project#readme",
42
42
  "devDependencies": {
43
- "@types/chai": "^4.3.3",
44
- "@types/mocha": "^10.0.0",
45
- "@types/node": "^18.7.16",
46
- "chai": "^4.3.6",
43
+ "@types/chai": "^4.3.4",
44
+ "@types/mocha": "^10.0.1",
45
+ "@types/node": "^18.11.10",
46
+ "chai": "^4.3.7",
47
47
  "mocha": "^10.0.0",
48
48
  "rimraf": "^3.0.2",
49
49
  "ts-node": "^10.9.1",
50
- "typescript": "^4.8.2"
50
+ "typescript": "^4.9.3"
51
51
  },
52
52
  "dependencies": {
53
- "bc-minecraft-bedrock-command": "^1.19.41-5",
54
- "bc-minecraft-bedrock-types": "^1.19.40-1",
53
+ "bc-minecraft-bedrock-command": "^1.19.50-0",
54
+ "bc-minecraft-bedrock-types": "^1.19.50-0",
55
55
  "bc-minecraft-molang": "^1.19.40-2",
56
56
  "bc-minecraft-project": "^1.19.40-1",
57
57
  "jsonc": "^2.0.0"