zen-flow 13.3.2 → 14.1.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/README.md +22 -21
- package/dist/{zenflow.d.cts → zenflow.d.ts} +115 -3
- package/dist/{zenflow.mjs → zenflow.js} +63 -2
- package/package.json +2 -7
- package/dist/zenflow.cjs +0 -979
- package/dist/zenflow.d.mts +0 -1724
package/README.md
CHANGED
|
@@ -14,27 +14,28 @@
|
|
|
14
14
|
## Install
|
|
15
15
|
|
|
16
16
|
```shell
|
|
17
|
-
|
|
17
|
+
npm i zen-flow -D
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
***Note**: `zen-flow` only works with Minecraft **1.7.10.***
|
|
21
21
|
|
|
22
22
|
## Features
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
24
|
+
- Easy to use API, written in **TypeScript**
|
|
25
|
+
- Extensive documentation
|
|
26
|
+
- Supports [MineTweaker](https://minetweaker3.aizistral.com/wiki/Main_Page), [ModTweaker](https://minetweaker3.aizistral.com/wiki/ModTweaker) and [ContentTweaker](https://minetweaker3.aizistral.com/wiki/ContentTweaker)
|
|
27
|
+
- Formatted output (for easy debugging)
|
|
28
|
+
- Includes support for:
|
|
29
|
+
- Applied Energistics 2
|
|
30
|
+
- Avaritia
|
|
31
|
+
- Blood Magic
|
|
32
|
+
- Ex Nihilo
|
|
33
|
+
- Extra Utilities
|
|
34
|
+
- Forestry
|
|
35
|
+
- MineFactory Reloaded
|
|
36
|
+
- NEI
|
|
37
|
+
- Thermal Expansion
|
|
38
|
+
- Tinkers' Construct
|
|
38
39
|
|
|
39
40
|
## Example
|
|
40
41
|
|
|
@@ -43,9 +44,9 @@ import { add, remove, hide } from 'zen-flow';
|
|
|
43
44
|
|
|
44
45
|
/**
|
|
45
46
|
* recipes.addShaped(<minecraft:saddle>, [
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
47
|
+
* [<minecraft:leather>, <minecraft:leather>, <minecraft:leather>],
|
|
48
|
+
* [<ore:ingotIron>, <minecraft:string>, <ore:ingotIron>],
|
|
49
|
+
* [null, null, null]
|
|
49
50
|
* ]);
|
|
50
51
|
**/
|
|
51
52
|
add({
|
|
@@ -58,9 +59,9 @@ add({
|
|
|
58
59
|
|
|
59
60
|
/**
|
|
60
61
|
* recipes.addShaped(<minecraft:saddle>, [
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
62
|
+
* [null, <minecraft:leather>, null],
|
|
63
|
+
* [<minecraft:leather>, null, <minecraft:leather>],
|
|
64
|
+
* [null, <minecraft:leather>, null]
|
|
64
65
|
* ]);
|
|
65
66
|
**/
|
|
66
67
|
add({
|
|
@@ -68,7 +68,7 @@ type Text = string | TextRich;
|
|
|
68
68
|
type RecipeGrinder = {
|
|
69
69
|
input: string;
|
|
70
70
|
output: Ingredient;
|
|
71
|
-
bonus?: [Bonus, Bonus];
|
|
71
|
+
bonus?: [Bonus] | [Bonus, Bonus];
|
|
72
72
|
/** Integer larger than or equal to 1 */
|
|
73
73
|
turns: number;
|
|
74
74
|
};
|
|
@@ -739,6 +739,16 @@ declare const addFurnaceFuel: (fuel: string) => (n: number) => string;
|
|
|
739
739
|
* @see https://minetweaker3.aizistral.com/wiki/Tutorial:Furnace
|
|
740
740
|
*/
|
|
741
741
|
declare const removeFurnaceFuel: (fuel: string) => string;
|
|
742
|
+
type RecipeLocalisation = {
|
|
743
|
+
id: string;
|
|
744
|
+
value: string;
|
|
745
|
+
};
|
|
746
|
+
/**
|
|
747
|
+
* Add localisation string
|
|
748
|
+
*
|
|
749
|
+
* @see https://minetweaker3.aizistral.com/wiki/Tutorial:Localization_164
|
|
750
|
+
*/
|
|
751
|
+
declare const setLocalisation: (locale: string) => (recipe: RecipeLocalisation) => string;
|
|
742
752
|
|
|
743
753
|
/**
|
|
744
754
|
* Add an entity to the [Auto-Spawner](https://feed-the-beast.fandom.com/wiki/Auto-Spawner) blacklist, disabling spawning
|
|
@@ -1720,5 +1730,107 @@ declare const setArrowBreakChance: (id: string) => (n: number) => string;
|
|
|
1720
1730
|
*/
|
|
1721
1731
|
declare const setArrowAccuracy: (id: string) => (n: number) => string;
|
|
1722
1732
|
|
|
1723
|
-
|
|
1724
|
-
|
|
1733
|
+
type RecipeAltar = {
|
|
1734
|
+
input: string;
|
|
1735
|
+
output: string;
|
|
1736
|
+
tier: number;
|
|
1737
|
+
lp: number;
|
|
1738
|
+
/** LP per tick */
|
|
1739
|
+
lpt?: number;
|
|
1740
|
+
/** Drain per tick (in LP) */
|
|
1741
|
+
dpt?: number;
|
|
1742
|
+
};
|
|
1743
|
+
/**
|
|
1744
|
+
* Add [Blood Altar](https://ftbwiki.org/Blood_Altar) recipe
|
|
1745
|
+
*
|
|
1746
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support
|
|
1747
|
+
*/
|
|
1748
|
+
declare const addAltar: (recipe: RecipeAltar) => string;
|
|
1749
|
+
/**
|
|
1750
|
+
* Remove [Blood Altar](https://ftbwiki.org/Blood_Altar) recipe
|
|
1751
|
+
*
|
|
1752
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support
|
|
1753
|
+
*/
|
|
1754
|
+
declare const removeAltar: (output: string) => string;
|
|
1755
|
+
/**
|
|
1756
|
+
* Add shaped [Blood Orb](https://ftbwiki.org/Blood_Orb) recipe
|
|
1757
|
+
*
|
|
1758
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support
|
|
1759
|
+
*/
|
|
1760
|
+
declare const addBloodOrbShaped: (output: Ingredient) => (input: Shaped) => string;
|
|
1761
|
+
/**
|
|
1762
|
+
* Add shapeless [Blood Orb](https://ftbwiki.org/Blood_Orb) recipe
|
|
1763
|
+
*
|
|
1764
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support
|
|
1765
|
+
*/
|
|
1766
|
+
declare const addBloodOrbShapeless: (output: Ingredient) => (input: Shapeless) => string;
|
|
1767
|
+
/**
|
|
1768
|
+
* Add [Blood Orb](https://ftbwiki.org/Blood_Orb) recipe
|
|
1769
|
+
*
|
|
1770
|
+
* - Input: `{}` => Shaped recipe
|
|
1771
|
+
* - Input: `[]` => Shapeless recipe
|
|
1772
|
+
*
|
|
1773
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support
|
|
1774
|
+
*/
|
|
1775
|
+
declare const addBloodOrb: (output: Ingredient) => (input: Shaped | Shapeless) => string;
|
|
1776
|
+
type RecipeAlchemy = {
|
|
1777
|
+
input: Shapeless;
|
|
1778
|
+
output: Ingredient;
|
|
1779
|
+
tier: number;
|
|
1780
|
+
lp: number;
|
|
1781
|
+
};
|
|
1782
|
+
/**
|
|
1783
|
+
* Add [Alchemic Chemistry Set](https://ftbwiki.org/Alchemic_Chemistry_Set) recipe
|
|
1784
|
+
*
|
|
1785
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support
|
|
1786
|
+
*/
|
|
1787
|
+
declare const addAlchemy: (recipe: RecipeAlchemy) => string;
|
|
1788
|
+
/**
|
|
1789
|
+
* Remove [Alchemic Chemistry Set](https://ftbwiki.org/Alchemic_Chemistry_Set) recipe
|
|
1790
|
+
*
|
|
1791
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support
|
|
1792
|
+
*/
|
|
1793
|
+
declare const removeAlchemy: (output: string) => string;
|
|
1794
|
+
/**
|
|
1795
|
+
* Add [Ritual of Binding](https://ftbwiki.org/Ritual_of_Binding) recipe
|
|
1796
|
+
*
|
|
1797
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support:Rituals
|
|
1798
|
+
*/
|
|
1799
|
+
declare const addRitualBinding: (output: string) => (input: string) => string;
|
|
1800
|
+
/**
|
|
1801
|
+
* Remove [Ritual of Binding](https://ftbwiki.org/Ritual_of_Binding) recipe
|
|
1802
|
+
*
|
|
1803
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support:Rituals
|
|
1804
|
+
*/
|
|
1805
|
+
declare const removeRitualBinding: (output: string) => string;
|
|
1806
|
+
type RecipeMeteor = {
|
|
1807
|
+
input: string;
|
|
1808
|
+
/** OreDict entries */
|
|
1809
|
+
output: Bonus[];
|
|
1810
|
+
radius: number;
|
|
1811
|
+
};
|
|
1812
|
+
/**
|
|
1813
|
+
* Add [Mark of the Falling Tower](https://ftbwiki.org/Mark_of_the_Falling_Tower) recipe
|
|
1814
|
+
*
|
|
1815
|
+
* For better support, consider using the provided meteor config JSON files
|
|
1816
|
+
*
|
|
1817
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support:Rituals
|
|
1818
|
+
*/
|
|
1819
|
+
declare const addRitualMeteor: (recipe: RecipeMeteor) => string;
|
|
1820
|
+
/**
|
|
1821
|
+
* Remove [Mark of the Falling Tower](https://ftbwiki.org/Mark_of_the_Falling_Tower) recipe
|
|
1822
|
+
*
|
|
1823
|
+
* For better support, consider using the provided meteor config JSON files
|
|
1824
|
+
*
|
|
1825
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support:Rituals
|
|
1826
|
+
*/
|
|
1827
|
+
declare const removeRitualMeteor: (input: string) => string;
|
|
1828
|
+
/**
|
|
1829
|
+
* Add [Reap of the Harvest Moon](https://ftbwiki.org/Reap_of_the_Harvest_Moon) recipe
|
|
1830
|
+
*
|
|
1831
|
+
* @see https://minetweaker3.aizistral.com/wiki/Mods:Blood_Magic_Support:Rituals
|
|
1832
|
+
*/
|
|
1833
|
+
declare const addRitualHarvest: (output: string) => (input: string) => string;
|
|
1834
|
+
|
|
1835
|
+
export { COLOR, ENCHANTMENT, FOCI, HARVESTER_TYPE, MATERIAL, MODIFIER, STYLE, add, addAlchemy, addAltar, addBiomeRubberTree, addBlacklistAutospawner, addBloodOrb, addBloodOrbShaped, addBloodOrbShapeless, addCarpenter, addCastingBasin, addCastingTable, addCentrifuge, addChestLoot, addComposter, addCompressor, addCrucible, addCrucibleFuel, addDryingRack, addExtreme, addFabricator, addFabricatorGlass, addFermenter, addFermenterFuel, addFurnace, addFurnaceFuel, addGrinder, addHammer, addHarvester, addInductionSmelter, addInscriber, addInsolator, addLaser, addLaserFoci, addLaserOre, addMagmaCrucible, addMirror, addMoistener, addOreDict, addPlanter, addPress, addPulverizer, addQED, addRedstoneFurnace, addRepairMaterial, addRitualBinding, addRitualHarvest, addRitualMeteor, addSawmill, addSeed, addShaped, addShapeless, addSieve, addSludgeBoiler, addSmelteryAlloy, addSmelteryFluid, addSmelteryFuel, addSqueezer, addStill, addTransposerExtract, addTransposerFill, createBlock, createItem, createLiquid, createMaterial, hide, joinOreDict, mirrorOreDict, remove, removeAlchemy, removeAltar, removeBiomeRubberTree, removeBlacklistAutospawner, removeCarpenter, removeCastingBasin, removeCastingTable, removeCentrifuge, removeChestLoot, removeComposter, removeCompressor, removeCrucible, removeCrucibleFuel, removeDryingRack, removeExtreme, removeFabricator, removeFabricatorGlass, removeFermenter, removeFermenterFuel, removeFurnace, removeFurnaceFuel, removeGrinder, removeHammer, removeInductionSmelter, removeInsolator, removeLaserFoci, removeLaserOre, removeMagmaCrucible, removeModifier, removeMoistener, removeOreDict, removePressInscriber, removePulverizer, removeQED, removeRedstoneFurnace, removeRepairMaterial, removeRitualBinding, removeRitualMeteor, removeSawmill, removeSeed, removeShaped, removeShapeless, removeSieve, removeSludgeBoiler, removeSmelteryAlloy, removeSmelteryFluid, removeSmelteryFuel, removeSqueezer, removeStill, removeTransposerExtract, removeTransposerFill, rename, setArrowAccuracy, setArrowBreakChance, setArrowMass, setArrowStats, setBowMaterialDrawspeed, setBowMaterialDurability, setBowMaterialFlightSpeed, setBowMaterialStats, setLocalisation, setMaterialDamage, setMaterialDurability, setMaterialHandleModifier, setMaterialLevelStonebound, setMaterialMiningLevel, setMaterialName, setMaterialReinforcedLevel, setMaterialSpeed, setMaterialStats, setMaterialStyle, show, withEnchantment, withName, withTag, withTooltip, withTooltipShift, withWeight };
|
|
1836
|
+
export type { ArrowStats, Bonus, BonusHammer, BowStats, Cast, ChestLoot, Enchantment, Ingredient, Liquid, MaterialStats, RecipeAlchemy, RecipeAltar, RecipeBlock, RecipeCarpenter, RecipeCastingBasin, RecipeCastingTable, RecipeCentrifuge, RecipeComposter, RecipeCompressor, RecipeDryingRack, RecipeFabricator, RecipeFabricatorGlass, RecipeFermenter, RecipeFermenterFuel, RecipeFurnace, RecipeGrinder, RecipeHarvester, RecipeInductionSmelter, RecipeInsolator, RecipeItem, RecipeLaser, RecipeLiquid, RecipeLocalisation, RecipeMagmaCrucible, RecipeMaterial, RecipeMeteor, RecipeMoistener, RecipePressInscriber, RecipePulverizer, RecipeRedstoneFurnace, RecipeRepairMaterial, RecipeSawmill, RecipeSmelteryAlloy, RecipeSmelteryFluid, RecipeSmelteryFuel, RecipeSqueezer, RecipeStill, RecipeTransposerExtract, RecipeTransposerFill, Shaped, ShapedExtreme, Shapeless, Stack, Text, TextRich };
|
|
@@ -104,7 +104,7 @@ const addGrinder = (recipe$1) => {
|
|
|
104
104
|
ingredient(recipe$1.input),
|
|
105
105
|
ingredient(recipe$1.output),
|
|
106
106
|
Math.max(1, Math.round(recipe$1.turns)),
|
|
107
|
-
...recipe$1.bonus
|
|
107
|
+
...(recipe$1.bonus ?? []).map((bonus) => `${bonus.id}, ${clamp(0, 1, bonus.p)}`)
|
|
108
108
|
);
|
|
109
109
|
return `mods.appeng.Grinder.addRecipe(${out});`;
|
|
110
110
|
};
|
|
@@ -455,6 +455,14 @@ const removeFurnace = (output, input) => {
|
|
|
455
455
|
};
|
|
456
456
|
const addFurnaceFuel = (fuel) => (n) => `furnace.setFuel(${recipe(fuel, n)});`;
|
|
457
457
|
const removeFurnaceFuel = (fuel) => addFurnaceFuel(fuel)(0);
|
|
458
|
+
const setLocalisation = (locale) => (recipe$1) => {
|
|
459
|
+
const out = recipe(
|
|
460
|
+
literal(locale),
|
|
461
|
+
literal(recipe$1.id),
|
|
462
|
+
literal(recipe$1.value)
|
|
463
|
+
);
|
|
464
|
+
return `game.setLocalization(${out});`;
|
|
465
|
+
};
|
|
458
466
|
|
|
459
467
|
const addBlacklistAutospawner = (id) => `mods.mfr.AutoSpawner.addBlacklist(${literal(id)});`;
|
|
460
468
|
const removeBlacklistAutospawner = (id) => `mods.mfr.AutoSpawner.removeBlacklist(${literal(id)});`;
|
|
@@ -835,4 +843,57 @@ const setArrowAccuracy = (id) => (n) => {
|
|
|
835
843
|
return `mods.tconstruct.TooLStats.setArrowAccuracy(${out});`;
|
|
836
844
|
};
|
|
837
845
|
|
|
838
|
-
|
|
846
|
+
const addAltar = (recipe$1) => {
|
|
847
|
+
const out = recipe(
|
|
848
|
+
recipe$1.input,
|
|
849
|
+
recipe$1.output,
|
|
850
|
+
recipe$1.tier,
|
|
851
|
+
recipe$1.lp,
|
|
852
|
+
recipe$1.lpt,
|
|
853
|
+
recipe$1.dpt
|
|
854
|
+
);
|
|
855
|
+
return `mods.bloodmagic.Altar.addRecipe(${out});`;
|
|
856
|
+
};
|
|
857
|
+
const removeAltar = (output) => `mods.bloodmagic.Altar.removeRecipe(${output});`;
|
|
858
|
+
const addBloodOrbShaped = (output) => (input) => {
|
|
859
|
+
const out = recipe(
|
|
860
|
+
ingredient(output),
|
|
861
|
+
shaped(input)
|
|
862
|
+
);
|
|
863
|
+
return `mods.bloodmagic.BloodOrb.addShaped(${out});`;
|
|
864
|
+
};
|
|
865
|
+
const addBloodOrbShapeless = (output) => (input) => {
|
|
866
|
+
const out = recipe(
|
|
867
|
+
ingredient(output),
|
|
868
|
+
array(3)(input)
|
|
869
|
+
);
|
|
870
|
+
return `mods.bloodmagic.BloodOrb.addShapeless(${out});`;
|
|
871
|
+
};
|
|
872
|
+
const addBloodOrb = (output) => (input) => {
|
|
873
|
+
if (Array.isArray(input)) return addBloodOrbShapeless(output)(input);
|
|
874
|
+
return addBloodOrbShaped(output)(input);
|
|
875
|
+
};
|
|
876
|
+
const addAlchemy = (recipe$1) => {
|
|
877
|
+
const out = recipe(
|
|
878
|
+
ingredient(recipe$1.output),
|
|
879
|
+
array(3)(recipe$1.input),
|
|
880
|
+
recipe$1.tier,
|
|
881
|
+
recipe$1.lp
|
|
882
|
+
);
|
|
883
|
+
return `mods.bloodmagic.Alchemy.addRecipe(${out});`;
|
|
884
|
+
};
|
|
885
|
+
const removeAlchemy = (output) => `mods.bloodmagic.Alchemy.removeRecipe(${output});`;
|
|
886
|
+
const addRitualBinding = (output) => (input) => `mods.bloodmagic.Binding.addRecipe(${recipe(input, output)});`;
|
|
887
|
+
const removeRitualBinding = (output) => `mods.bloodmagic.Binding.removeRecipe(${output});`;
|
|
888
|
+
const addRitualMeteor = (recipe$1) => {
|
|
889
|
+
const out = recipe(
|
|
890
|
+
recipe$1.input,
|
|
891
|
+
recipe$1.radius,
|
|
892
|
+
literal(list(Number.MAX_SAFE_INTEGER)(recipe$1.output.map((bonus) => `${bonus.id}, ${bonus.p * 100}`)))
|
|
893
|
+
);
|
|
894
|
+
return `mods.bloodmagic.FallingTower.addFocus(${out});`;
|
|
895
|
+
};
|
|
896
|
+
const removeRitualMeteor = (input) => `mods.bloodmagic.FallingTower.removeFocus(${input});`;
|
|
897
|
+
const addRitualHarvest = (output) => (input) => `mods.bloodmagic.HarvestMoon.addHarvestable(${recipe(output, input)});`;
|
|
898
|
+
|
|
899
|
+
export { COLOR, ENCHANTMENT, FOCI, HARVESTER_TYPE, MATERIAL, MODIFIER, STYLE, add, addAlchemy, addAltar, addBiomeRubberTree, addBlacklistAutospawner, addBloodOrb, addBloodOrbShaped, addBloodOrbShapeless, addCarpenter, addCastingBasin, addCastingTable, addCentrifuge, addChestLoot, addComposter, addCompressor, addCrucible, addCrucibleFuel, addDryingRack, addExtreme, addFabricator, addFabricatorGlass, addFermenter, addFermenterFuel, addFurnace, addFurnaceFuel, addGrinder, addHammer, addHarvester, addInductionSmelter, addInscriber, addInsolator, addLaser, addLaserFoci, addLaserOre, addMagmaCrucible, addMirror, addMoistener, addOreDict, addPlanter, addPress, addPulverizer, addQED, addRedstoneFurnace, addRepairMaterial, addRitualBinding, addRitualHarvest, addRitualMeteor, addSawmill, addSeed, addShaped, addShapeless, addSieve, addSludgeBoiler, addSmelteryAlloy, addSmelteryFluid, addSmelteryFuel, addSqueezer, addStill, addTransposerExtract, addTransposerFill, createBlock, createItem, createLiquid, createMaterial, hide, joinOreDict, mirrorOreDict, remove, removeAlchemy, removeAltar, removeBiomeRubberTree, removeBlacklistAutospawner, removeCarpenter, removeCastingBasin, removeCastingTable, removeCentrifuge, removeChestLoot, removeComposter, removeCompressor, removeCrucible, removeCrucibleFuel, removeDryingRack, removeExtreme, removeFabricator, removeFabricatorGlass, removeFermenter, removeFermenterFuel, removeFurnace, removeFurnaceFuel, removeGrinder, removeHammer, removeInductionSmelter, removeInsolator, removeLaserFoci, removeLaserOre, removeMagmaCrucible, removeModifier, removeMoistener, removeOreDict, removePressInscriber, removePulverizer, removeQED, removeRedstoneFurnace, removeRepairMaterial, removeRitualBinding, removeRitualMeteor, removeSawmill, removeSeed, removeShaped, removeShapeless, removeSieve, removeSludgeBoiler, removeSmelteryAlloy, removeSmelteryFluid, removeSmelteryFuel, removeSqueezer, removeStill, removeTransposerExtract, removeTransposerFill, rename, setArrowAccuracy, setArrowBreakChance, setArrowMass, setArrowStats, setBowMaterialDrawspeed, setBowMaterialDurability, setBowMaterialFlightSpeed, setBowMaterialStats, setLocalisation, setMaterialDamage, setMaterialDurability, setMaterialHandleModifier, setMaterialLevelStonebound, setMaterialMiningLevel, setMaterialName, setMaterialReinforcedLevel, setMaterialSpeed, setMaterialStats, setMaterialStyle, show, withEnchantment, withName, withTag, withTooltip, withTooltipShift, withWeight };
|
package/package.json
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zen-flow",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.1.0",
|
|
4
4
|
"description": "MineTweaker ZenScript made easy.",
|
|
5
|
-
"main": "dist/zenflow.cjs",
|
|
6
|
-
"module": "dist/zenflow.mjs",
|
|
7
5
|
"type": "module",
|
|
8
6
|
"exports": {
|
|
9
|
-
".":
|
|
10
|
-
"import": "./dist/zenflow.mjs",
|
|
11
|
-
"require": "./dist/zenflow.cjs"
|
|
12
|
-
}
|
|
7
|
+
".": "./dist/zenflow.js"
|
|
13
8
|
},
|
|
14
9
|
"keywords": [
|
|
15
10
|
"minetweaker",
|