@orusteam/solariscore 2.5.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.
- package/dist/block/components/CropBlockComponent.d.ts +9 -0
- package/dist/block/components/CropBlockComponent.d.ts.map +1 -0
- package/dist/block/components/DoorBlockComponent.d.ts +9 -0
- package/dist/block/components/DoorBlockComponent.d.ts.map +1 -0
- package/dist/block/components/EggBlockComponent.d.ts +6 -0
- package/dist/block/components/EggBlockComponent.d.ts.map +1 -0
- package/dist/block/components/GrassDecayBlockComponent.d.ts +6 -0
- package/dist/block/components/GrassDecayBlockComponent.d.ts.map +1 -0
- package/dist/block/components/LeavesBlockComponent.d.ts +6 -0
- package/dist/block/components/LeavesBlockComponent.d.ts.map +1 -0
- package/dist/block/components/ParticleEmitterBlockComponent.d.ts +6 -0
- package/dist/block/components/ParticleEmitterBlockComponent.d.ts.map +1 -0
- package/dist/block/components/SaplingBlockComponent.d.ts +7 -0
- package/dist/block/components/SaplingBlockComponent.d.ts.map +1 -0
- package/dist/block/components/index.d.ts +8 -0
- package/dist/block/components/index.d.ts.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4462 -0
- package/dist/item/components/DurabilitySensorItemComponent.d.ts +7 -0
- package/dist/item/components/DurabilitySensorItemComponent.d.ts.map +1 -0
- package/dist/misc/DynamicDatabase.d.ts +28 -0
- package/dist/misc/DynamicDatabase.d.ts.map +1 -0
- package/dist/utils/BlockBuilder.d.ts +5 -0
- package/dist/utils/BlockBuilder.d.ts.map +1 -0
- package/dist/utils/BlockUtil.d.ts +5 -0
- package/dist/utils/BlockUtil.d.ts.map +1 -0
- package/dist/utils/ColorUtil.d.ts +5 -0
- package/dist/utils/ColorUtil.d.ts.map +1 -0
- package/dist/utils/DateUtil.d.ts +17 -0
- package/dist/utils/DateUtil.d.ts.map +1 -0
- package/dist/utils/EntityUtil.d.ts +6 -0
- package/dist/utils/EntityUtil.d.ts.map +1 -0
- package/dist/utils/ItemUtil.d.ts +10 -0
- package/dist/utils/ItemUtil.d.ts.map +1 -0
- package/dist/utils/MathUtil.d.ts +9 -0
- package/dist/utils/MathUtil.d.ts.map +1 -0
- package/dist/utils/MessageUtil.d.ts +10 -0
- package/dist/utils/MessageUtil.d.ts.map +1 -0
- package/dist/utils/StringUtil.d.ts +4 -0
- package/dist/utils/StringUtil.d.ts.map +1 -0
- package/dist/utils/VectorUtil.d.ts +6 -0
- package/dist/utils/VectorUtil.d.ts.map +1 -0
- package/dist/utils/WorldUtil.d.ts +14 -0
- package/dist/utils/WorldUtil.d.ts.map +1 -0
- package/dist/utils/index.d.ts +12 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/package.json +25 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ItemComponentHitEntityEvent, ItemComponentMineBlockEvent, ItemCustomComponent } from "@minecraft/server";
|
|
2
|
+
export declare class DurabilitySensorItemComponent implements ItemCustomComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
onHitEntity({ hitEntity }: ItemComponentHitEntityEvent): void;
|
|
5
|
+
onMineBlock({ source }: ItemComponentMineBlockEvent): void;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=DurabilitySensorItemComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DurabilitySensorItemComponent.d.ts","sourceRoot":"","sources":["../../../src/item/components/DurabilitySensorItemComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,2BAA2B,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAKlH,qBAAa,6BAA8B,YAAW,mBAAmB;;IAMrE,WAAW,CAAC,EAAE,SAAS,EAAE,EAAE,2BAA2B;IAItD,WAAW,CAAC,EAAE,MAAM,EAAE,EAAE,2BAA2B;CAGtD"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Entity, World } from "@minecraft/server";
|
|
2
|
+
type DataProviderType = Entity | World;
|
|
3
|
+
declare class DynamicDatabase {
|
|
4
|
+
readonly provider: DataProviderType;
|
|
5
|
+
private dataId;
|
|
6
|
+
private static instances;
|
|
7
|
+
private data;
|
|
8
|
+
private isSaving;
|
|
9
|
+
private lastSerializedData?;
|
|
10
|
+
private constructor();
|
|
11
|
+
static getInstance(provider: DataProviderType, dataId: string): DynamicDatabase | undefined;
|
|
12
|
+
get id(): string;
|
|
13
|
+
clear(): void;
|
|
14
|
+
delete(key: string): void;
|
|
15
|
+
forEach(callback: (key: string, value: any) => void): void;
|
|
16
|
+
get(key: string): undefined | any;
|
|
17
|
+
getData(): object;
|
|
18
|
+
has(key: string): boolean;
|
|
19
|
+
keys(): string[];
|
|
20
|
+
set(key: string, value: any): void;
|
|
21
|
+
save(): void;
|
|
22
|
+
toString(): string;
|
|
23
|
+
private parseData;
|
|
24
|
+
private saveOnNextTick;
|
|
25
|
+
}
|
|
26
|
+
declare function getDynamicDatabase(provider: DataProviderType, dataId: string): DynamicDatabase;
|
|
27
|
+
export { DataProviderType, DynamicDatabase, getDynamicDatabase };
|
|
28
|
+
//# sourceMappingURL=DynamicDatabase.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicDatabase.d.ts","sourceRoot":"","sources":["../../src/misc/DynamicDatabase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAU,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAI1D,KAAK,gBAAgB,GAAG,MAAM,GAAG,KAAK,CAAC;AAIvC,cAAM,eAAe;IAMG,QAAQ,CAAC,QAAQ,EAAE,gBAAgB;IAAE,OAAO,CAAC,MAAM;IALvE,OAAO,CAAC,MAAM,CAAC,SAAS,CAAiE;IACzF,OAAO,CAAC,IAAI,CAAsB;IAClC,OAAO,CAAC,QAAQ,CAAkB;IAClC,OAAO,CAAC,kBAAkB,CAAC,CAAS;IAEpC,OAAO;IAKP,MAAM,CAAC,WAAW,CAAC,QAAQ,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,GAAG,eAAe,GAAG,SAAS;IAiB3F,IAAI,EAAE,IAAI,MAAM,CAEf;IAED,KAAK;IAKL,MAAM,CAAC,GAAG,EAAE,MAAM;IAOlB,OAAO,CAAC,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,KAAK,IAAI;IAMnD,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,GAAG,GAAG;IAIjC,OAAO,IAAI,MAAM;IAIjB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAIzB,IAAI,IAAI,MAAM,EAAE;IAIhB,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG;IAK3B,IAAI;IAUJ,QAAQ,IAAI,MAAM;IAIlB,OAAO,CAAC,SAAS;IAQjB,OAAO,CAAC,cAAc;CASzB;AAID,iBAAS,kBAAkB,CAAC,QAAQ,EAAE,gBAAgB,EAAE,MAAM,EAAE,MAAM,GAAG,eAAe,CAMvF;AAID,OAAO,EACH,gBAAgB,EAChB,eAAe,EACf,kBAAkB,EACrB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlockBuilder.d.ts","sourceRoot":"","sources":["../../src/utils/BlockBuilder.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAIvD,qBAAa,YAAY;IACrB,MAAM,CAAG,KAAK,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;CAc1F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlockUtil.d.ts","sourceRoot":"","sources":["../../src/utils/BlockUtil.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAI9D,qBAAa,SAAS;IAClB,MAAM,CAAC,eAAe,CAAC,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,GAAG,KAAK,EAAE;CAgB7G"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ColorUtil.d.ts","sourceRoot":"","sources":["../../src/utils/ColorUtil.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAIxC,qBAAa,SAAS;IAClB,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG;CAQpC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { RawText } from "@minecraft/server";
|
|
2
|
+
export declare class DateUtil {
|
|
3
|
+
/**
|
|
4
|
+
* Retorna verdadeio caso seja 1 de abril.
|
|
5
|
+
*/
|
|
6
|
+
static get isAprilFools(): boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Retorna verdadeio caso seja natal.
|
|
9
|
+
*/
|
|
10
|
+
static get isChristmas(): boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Retorna verdadeio caso seja halloween.
|
|
13
|
+
*/
|
|
14
|
+
static get isHalloween(): boolean;
|
|
15
|
+
static convertTimeToRawText(milliseconds: number): RawText;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=DateUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DateUtil.d.ts","sourceRoot":"","sources":["../../src/utils/DateUtil.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAUxD,qBAAa,QAAQ;IACjB;;OAEG;IACH,MAAM,KAAK,YAAY,IAAI,OAAO,CAEjC;IAED;;OAEG;IACH,MAAM,KAAK,WAAW,IAAI,OAAO,CAEhC;IAED;;OAEG;IACH,MAAM,KAAK,WAAW,IAAI,OAAO,CAEhC;IAED,MAAM,CAAC,oBAAoB,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO;CAiC7D"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Entity, EquipmentSlot, ItemStack } from "@minecraft/server";
|
|
2
|
+
export declare class EntityUtil {
|
|
3
|
+
static applyCameraShake(entity: Entity, intensity: number, seconds: number, isRotational?: boolean): void;
|
|
4
|
+
static getEquippedItem(entity: Entity, equipmentSlot: EquipmentSlot): ItemStack | undefined;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=EntityUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EntityUtil.d.ts","sourceRoot":"","sources":["../../src/utils/EntityUtil.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAIrE,qBAAa,UAAU;IACnB,MAAM,CAAC,gBAAgB,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,YAAY,GAAE,OAAe;IAIzG,MAAM,CAAC,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,aAAa,EAAE,aAAa,GAAG,SAAS,GAAG,SAAS;CAG9F"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Container, ContainerSlot, Enchantment, Entity, ItemStack, Player } from "@minecraft/server";
|
|
2
|
+
export declare class ItemUtil {
|
|
3
|
+
static decrementStack(entity: Entity): void;
|
|
4
|
+
static forEachFilledSlot(container: Container, callback: (slot: ContainerSlot, itemStack: ItemStack) => void): void;
|
|
5
|
+
static getEnchantments(itemStack: ItemStack): Enchantment[];
|
|
6
|
+
static isFood(itemStack: ItemStack): boolean;
|
|
7
|
+
static setPlayerFixedItems(player: Player, itemIds: string[]): void;
|
|
8
|
+
static tryDamageHeldItem(source: Entity, amount: number): boolean;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=ItemUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ItemUtil.d.ts","sourceRoot":"","sources":["../../src/utils/ItemUtil.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,EAAyC,SAAS,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAc5I,qBAAa,QAAQ;IACjB,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM;IAYpC,MAAM,CAAC,iBAAiB,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,CAAC,IAAI,EAAE,aAAa,EAAE,SAAS,EAAE,SAAS,KAAK,IAAI;IAU5G,MAAM,CAAC,eAAe,CAAC,SAAS,EAAE,SAAS,GAAG,WAAW,EAAE;IAQ3D,MAAM,CAAC,MAAM,CAAC,SAAS,EAAE,SAAS,GAAG,OAAO;IAc5C,MAAM,CAAC,mBAAmB,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE;IAkB5D,MAAM,CAAC,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO;CAgCpE"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare class MathUtil {
|
|
2
|
+
static cubicInterpolate(p0: number, p1: number, p2: number, p3: number, t: number): number;
|
|
3
|
+
static isEven(number: number): boolean;
|
|
4
|
+
static random(min: number, max: number): number;
|
|
5
|
+
static randomInt(min: number, max: number): number;
|
|
6
|
+
static safeNumber(value: number | undefined, fallback?: number): number;
|
|
7
|
+
static shortenNumber(value: number): string;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=MathUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MathUtil.d.ts","sourceRoot":"","sources":["../../src/utils/MathUtil.ts"],"names":[],"mappings":"AAAA,qBAAa,QAAQ;IACjB,MAAM,CAAC,gBAAgB,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAWjF,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;IAItC,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM;IAI/C,MAAM,CAAC,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM;IAIlD,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,EAAE,QAAQ,GAAE,MAAU,GAAG,MAAM;IAK1E,MAAM,CAAC,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;CAc9C"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Player, RawMessage, World } from "@minecraft/server";
|
|
2
|
+
interface MessageSequenceOptions {
|
|
3
|
+
delayBetweenMessages?: number;
|
|
4
|
+
popSound?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare class MessageUtil {
|
|
7
|
+
static sendSequence(source: Player | World, messages: ((RawMessage | string)[] | RawMessage | string)[], options?: MessageSequenceOptions): Promise<void>;
|
|
8
|
+
}
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=MessageUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MessageUtil.d.ts","sourceRoot":"","sources":["../../src/utils/MessageUtil.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,UAAU,EAAU,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAItE,UAAU,sBAAsB;IAC5B,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAID,qBAAa,WAAW;WACP,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,UAAU,GAAG,MAAM,CAAC,EAAE,GAAG,UAAU,GAAG,MAAM,CAAC,EAAE,EAAE,OAAO,CAAC,EAAE,sBAAsB;CAelJ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StringUtil.d.ts","sourceRoot":"","sources":["../../src/utils/StringUtil.ts"],"names":[],"mappings":"AAAA,qBAAa,UAAU;IACnB,MAAM,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;CAK7C"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Direction, Vector3 } from "@minecraft/server";
|
|
2
|
+
export declare class VectorUtil {
|
|
3
|
+
static cubicInterpolate(p0: Vector3, p1: Vector3, p2: Vector3, p3: Vector3, t: number): Vector3;
|
|
4
|
+
static faceToVector(face: Direction): Vector3;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=VectorUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VectorUtil.d.ts","sourceRoot":"","sources":["../../src/utils/VectorUtil.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAKvD,qBAAa,UAAU;IACnB,MAAM,CAAC,gBAAgB,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,MAAM,GAAG,OAAO;IAQ/F,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,SAAS,GAAG,OAAO;CAYhD"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Dimension, Entity, EntityApplyDamageByProjectileOptions, EntityApplyDamageOptions, Vector3 } from "@minecraft/server";
|
|
2
|
+
export declare class WorldUtil {
|
|
3
|
+
static get dimensions(): {
|
|
4
|
+
nether: Dimension;
|
|
5
|
+
overworld: Dimension;
|
|
6
|
+
theEnd: Dimension;
|
|
7
|
+
};
|
|
8
|
+
static applyAreaDamage(dimension: Dimension, location: Vector3, radius: number, amount: number, options?: EntityApplyDamageByProjectileOptions | EntityApplyDamageOptions): Entity[];
|
|
9
|
+
static getTimeOfDay(): string | undefined;
|
|
10
|
+
static isValidSpawnLocation(dimension: Dimension, location: Vector3): boolean;
|
|
11
|
+
static spawnIndicator(dimension: Dimension, location: Vector3, text: string): void;
|
|
12
|
+
static waitForChunkLoad(dimension: Dimension, location: Vector3): Promise<void>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=WorldUtil.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WorldUtil.d.ts","sourceRoot":"","sources":["../../src/utils/WorldUtil.ts"],"names":[],"mappings":"AACA,OAAO,EAAS,SAAS,EAAE,MAAM,EAAE,oCAAoC,EAAE,wBAAwB,EAAqB,OAAO,EAAS,MAAM,mBAAmB,CAAC;AAMhK,qBAAa,SAAS;IAClB,MAAM,KAAK,UAAU;;;;MAMpB;IAED,MAAM,CAAC,eAAe,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,oCAAoC,GAAG,wBAAwB,GAAG,MAAM,EAAE;IAoBpL,MAAM,CAAC,YAAY,IAAI,MAAM,GAAG,SAAS;IAUzC,MAAM,CAAC,oBAAoB,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,GAAG,OAAO;IAwB7E,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM;WAM9D,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;CAWxF"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./BlockBuilder";
|
|
2
|
+
export * from "./BlockUtil";
|
|
3
|
+
export * from "./ColorUtil";
|
|
4
|
+
export * from "./DateUtil";
|
|
5
|
+
export * from "./EntityUtil";
|
|
6
|
+
export * from "./ItemUtil";
|
|
7
|
+
export * from "./MathUtil";
|
|
8
|
+
export * from "./MessageUtil";
|
|
9
|
+
export * from "./StringUtil";
|
|
10
|
+
export * from "./VectorUtil";
|
|
11
|
+
export * from "./WorldUtil";
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@orusteam/solariscore",
|
|
3
|
+
"version": "2.5.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"peerDependencies": {
|
|
11
|
+
"@minecraft/math": "^2.4.0",
|
|
12
|
+
"@minecraft/server": "^2.5.0",
|
|
13
|
+
"@minecraft/server-ui": "^2.0.0"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"esbuild": "0.27.4",
|
|
17
|
+
"typescript": "^5.9.3"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsc && node esbuild",
|
|
21
|
+
"typecheck": "tsc --noEmit"
|
|
22
|
+
},
|
|
23
|
+
"author": "About04",
|
|
24
|
+
"license": "ISC"
|
|
25
|
+
}
|