zen-flow 2.3.0 → 2.3.1

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/zenflow.d.ts CHANGED
@@ -96,6 +96,11 @@ declare type RecipeInscriber = {
96
96
  out: Ingredient;
97
97
  type: 'inscribe' | 'press';
98
98
  };
99
+ /**
100
+ * Common values:
101
+ * - Ingot: `2 turns`
102
+ * - Ore: `4 turns`
103
+ */
99
104
  declare const addGrinder: (recipe: RecipeGrinder) => string;
100
105
  declare const removeGrinder: (id: string) => string;
101
106
  declare const addInscriber: (recipe: RecipeInscriber) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-flow",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "MineTweaker ZenScript made easy.",
5
5
  "main": "dist/zenflow.cjs",
6
6
  "module": "dist/zenflow.mjs",
@@ -19,7 +19,10 @@
19
19
  "files": [
20
20
  "dist/**/*"
21
21
  ],
22
- "repository": "https://github.com/chronoDave/zen-flow.git",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/chronoDave/zen-flow.git"
25
+ },
23
26
  "author": "Chronocide",
24
27
  "license": "MIT",
25
28
  "engines": {