zen-flow 13.3.3 → 15.0.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 +23 -21
- package/dist/{zenflow.d.cts → zenflow.d.ts} +939 -2
- package/dist/{zenflow.mjs → zenflow.js} +619 -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,29 @@
|
|
|
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
|
+
- Thaumcraft 4
|
|
38
|
+
- Thermal Expansion
|
|
39
|
+
- Tinkers' Construct
|
|
38
40
|
|
|
39
41
|
## Example
|
|
40
42
|
|
|
@@ -43,9 +45,9 @@ import { add, remove, hide } from 'zen-flow';
|
|
|
43
45
|
|
|
44
46
|
/**
|
|
45
47
|
* recipes.addShaped(<minecraft:saddle>, [
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
48
|
+
* [<minecraft:leather>, <minecraft:leather>, <minecraft:leather>],
|
|
49
|
+
* [<ore:ingotIron>, <minecraft:string>, <ore:ingotIron>],
|
|
50
|
+
* [null, null, null]
|
|
49
51
|
* ]);
|
|
50
52
|
**/
|
|
51
53
|
add({
|
|
@@ -58,9 +60,9 @@ add({
|
|
|
58
60
|
|
|
59
61
|
/**
|
|
60
62
|
* recipes.addShaped(<minecraft:saddle>, [
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
63
|
+
* [null, <minecraft:leather>, null],
|
|
64
|
+
* [<minecraft:leather>, null, <minecraft:leather>],
|
|
65
|
+
* [null, <minecraft:leather>, null]
|
|
64
66
|
* ]);
|
|
65
67
|
**/
|
|
66
68
|
add({
|