motely-wasm 19.3.1 → 19.4.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
@@ -18,17 +18,7 @@ import { Program as Motely } from "motely-wasm/motely/wasm";
18
18
  import * as enums from "motely-wasm/motely/enums";
19
19
  ```
20
20
 
21
- Additional submodules:
22
-
23
- | Specifier | Contents |
24
- |---|---|
25
- | `motely-wasm/motely/wasm` | `Program` — all search/analyze/JAML functions |
26
- | `motely-wasm/motely/enums` | `MotelyDeck`, `MotelyStake`, `MotelyBossBlind`, … |
27
- | `motely-wasm/motely/analysis` | `MotelyJamlyzerResult`, `MotelySeedAnalysis`, … |
28
- | `motely-wasm/motely/filters/jaml` | `JamlConfig`, `IJamlClause`, `JamlAesthetic` |
29
- | `motely-wasm/motely/filters` | `JamlSearchPlan` |
30
-
31
- TypeScript types ship alongside each module as `.d.mts`.
21
+ Additional submodules: `motely-wasm/motely/analysis`, `motely-wasm/motely/filters/jaml`, `motely-wasm/motely/filters`.
32
22
 
33
23
  ## Boot
34
24
 
Binary file
package/package.json CHANGED
@@ -1,18 +1,15 @@
1
1
  {
2
2
  "name": "motely-wasm",
3
3
  "type": "module",
4
- "version": "19.3.1",
4
+ "version": "19.4.0",
5
+ "description": "Balatro seed finder and per-seed analyzer, compiled to WebAssembly.",
6
+ "author": "Nathanial P. Howard",
7
+ "license": "MIT",
5
8
  "main": "./dist/index.mjs",
6
9
  "types": "./dist/index.d.mts",
7
10
  "exports": {
8
- ".": {
9
- "types": "./dist/index.d.mts",
10
- "import": "./dist/index.mjs"
11
- },
12
- "./*": {
13
- "types": "./dist/generated/modules/*.g.d.mts",
14
- "import": "./dist/generated/modules/*.g.mjs"
15
- }
11
+ ".": { "types": "./dist/index.d.mts", "import": "./dist/index.mjs" },
12
+ "./*": { "types": "./dist/generated/modules/*.g.d.mts", "import": "./dist/generated/modules/*.g.mjs" }
16
13
  },
17
14
  "browser": {
18
15
  "node:fs": false,
@@ -22,4 +19,4 @@
22
19
  "node:crypto": false,
23
20
  "node:process": false
24
21
  }
25
- }
22
+ }