state-machine-cat 14.0.8 → 15.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 +1 -1
- package/dist/version.mjs +1 -1
- package/package.json +6 -3
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
|
-
|
|
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 = "
|
|
1
|
+
export const version = "15.0.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "state-machine-cat",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0",
|
|
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/",
|
|
@@ -39,12 +42,12 @@
|
|
|
39
42
|
},
|
|
40
43
|
"dependencies": {
|
|
41
44
|
"@hpcc-js/wasm-graphviz": "1.21.2",
|
|
42
|
-
"fast-xml-parser": "5.5.
|
|
45
|
+
"fast-xml-parser": "5.5.11",
|
|
43
46
|
"he": "1.2.0",
|
|
44
47
|
"neotraverse": "0.6.18"
|
|
45
48
|
},
|
|
46
49
|
"engines": {
|
|
47
|
-
"node": "^
|
|
50
|
+
"node": "^22||>=24"
|
|
48
51
|
},
|
|
49
52
|
"homepage": "https://state-machine-cat.js.org",
|
|
50
53
|
"repository": {
|