motely-wasm 7.2.0 → 8.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 CHANGED
@@ -6,7 +6,7 @@ The **`Program`** class here is only the **runtime bootstrap** (`Main` → `RunB
6
6
 
7
7
  **Bootsharp glue** (`JSExport` / `JSImport` / `JSPreferences`) is isolated in **`BootsharpInterop.cs`** so you can ignore it while working in C#. **`MotelyJamlSearchBuilder`** (preferred search API), **`MotelyWasmHost`** (compatibility wrapper), **`MotelySingleSearchContext`** (seed inspection), and **`SearchEvents`** (progress/results) are the real API surface.
8
8
 
9
- After `dotnet publish` on this project, the npm package is emitted under `motely-wasm/` (and `motely-wasm-compat/` is built by the csproj target).
9
+ After `dotnet publish` on this project, the npm package is emitted under `motely-wasm/` (and `motely-wasm-compat/` is built by the csproj target). **Monaco** is not part of these packages — use `tools/jaml-language/monaco` (`@motely/jaml-monaco`) for editor assets.
10
10
 
11
11
  **API note:** `MotelyJamlSearchBuilder` is the preferred API (`loadJaml` → `random`/`sequential`/etc → `run`), but `MotelyWasmHost` remains available for older callers (`loadJaml`, `startRandomSearch`, `stopSearch`, etc.).
12
12
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "motely-wasm",
3
- "version": "7.2.0",
3
+ "version": "8.0.0",
4
4
  "description": "MotelyJAML — Balatro seed search engine (browser WASM / NativeAOT-LLVM). Import: import bootsharp, { MotelyJamlSearchBuilder, MotelyWasmHost, SearchEvents, Motely } from \"motely-wasm\"; await bootsharp.boot();",
5
5
  "type": "module",
6
6
  "main": "./index.mjs",
@@ -14,12 +14,7 @@
14
14
  "import": "./index.mjs",
15
15
  "default": "./index.mjs"
16
16
  },
17
- "./jaml.schema.json": "./jaml.schema.json",
18
- "./monaco": {
19
- "types": "./monaco/index.d.ts",
20
- "import": "./monaco/index.js",
21
- "default": "./monaco/index.js"
22
- }
17
+ "./jaml.schema.json": "./jaml.schema.json"
23
18
  },
24
19
  "files": [
25
20
  "**/*",
@@ -41,8 +36,5 @@
41
36
  "url": "git+https://github.com/OptimusPi/MotelyJAML.git",
42
37
  "directory": "Motely"
43
38
  },
44
- "license": "MIT",
45
- "scripts": {
46
- "build:schema": "dotnet run --project ../Motely.CLI/Motely.CLI.csproj -- --write-jaml-schema"
47
- }
39
+ "license": "MIT"
48
40
  }
package/types/index.d.ts CHANGED
@@ -20,4 +20,3 @@ export * from "./event";
20
20
  export * from "./bindings.g";
21
21
  export type { BootOptions } from "./boot";
22
22
  export type { BootResources, BinaryResource } from "./resources";
23
- export { Analysis, BrowserWasm, Filters, Motely, MotelyJaml, MotelyJamlSearchBuilder, MotelySearchSession, MotelySingleSearchContext, MotelyWasmHost, SearchEvents } from "./bindings.g";