worldorbit 2.5.15 → 2.5.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "worldorbit",
3
- "version": "2.5.15",
3
+ "version": "2.5.16",
4
4
  "description": "A text-based DSL and parser pipeline for orbital worldbuilding",
5
5
  "type": "module",
6
6
  "main": "./dist/unpkg/worldorbit.esm.js",
@@ -52,6 +52,7 @@
52
52
  "license": "MIT",
53
53
  "scripts": {
54
54
  "build": "node ./scripts/build.mjs",
55
+ "prepack": "node ./scripts/prepack.mjs",
55
56
  "test": "npm run build && node --test test/*.test.js",
56
57
  "check": "npm run test"
57
58
  },
@@ -64,4 +65,4 @@
64
65
  "typescript": "^5.6.0",
65
66
  "unified": "^11.0.5"
66
67
  }
67
- }
68
+ }
@@ -0,0 +1,2 @@
1
+ import type { WorldOrbitEditor, WorldOrbitEditorOptions } from "./types.js";
2
+ export declare function createWorldOrbitEditor(container: HTMLElement, options?: WorldOrbitEditorOptions): WorldOrbitEditor;