state-machine-cat 14.0.8 → 15.0.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/README.md CHANGED
@@ -52,7 +52,7 @@ A no-frills interpreter on line: [state-machine-cat.js.org](https://state-machin
52
52
 
53
53
  ### Command line interface
54
54
 
55
- Just `npm install --global state-machine-cat` and run `smcat`
55
+ `npm install --global state-machine-cat` and run `smcat`
56
56
 
57
57
  This is what `smcat --help` would get you:
58
58
 
package/dist/version.mjs CHANGED
@@ -1 +1 @@
1
- export const version = "14.0.8";
1
+ export const version = "15.0.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "state-machine-cat",
3
- "version": "14.0.8",
3
+ "version": "15.0.1",
4
4
  "description": "write beautiful state charts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -14,6 +14,9 @@
14
14
  ]
15
15
  },
16
16
  "types": "types/state-machine-cat.d.mts",
17
+ "imports": {
18
+ "#types/*": "./types/*"
19
+ },
17
20
  "files": [
18
21
  "dist/",
19
22
  "types/",
@@ -38,13 +41,13 @@
38
41
  "state-machine-cat": "dist/cli/main.mjs"
39
42
  },
40
43
  "dependencies": {
41
- "@hpcc-js/wasm-graphviz": "1.21.2",
42
- "fast-xml-parser": "5.5.9",
44
+ "@hpcc-js/wasm-graphviz": "1.21.5",
45
+ "fast-xml-parser": "5.7.2",
43
46
  "he": "1.2.0",
44
47
  "neotraverse": "0.6.18"
45
48
  },
46
49
  "engines": {
47
- "node": "^20.12||^22||>=24"
50
+ "node": "^22||>=24"
48
51
  },
49
52
  "homepage": "https://state-machine-cat.js.org",
50
53
  "repository": {