state-machine-cat 12.0.25 → 13.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 -3
- package/dist/version.mjs +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
_write beautiful state charts_
|
|
4
4
|
|
|
5
5
|
[](https://github.com/sverweij/state-machine-cat/actions/workflows/ci.yml)
|
|
6
|
-
[](https://codeclimate.com/github/sverweij/state-machine-cat/maintainability)
|
|
7
|
-
[](https://codeclimate.com/github/sverweij/state-machine-cat/test_coverage)
|
|
8
6
|
[](https://npmjs.com/package/state-machine-cat)
|
|
9
7
|
[](LICENSE)
|
|
10
8
|
[](https://state-machine-cat.js.org)
|
|
@@ -648,7 +646,7 @@ railroad diagrams generated from these on [state-machine-cat.js.org/grammar.html
|
|
|
648
646
|
- Thoroughly tested and good enough for public use.
|
|
649
647
|
- Despite this you might bump into the occasional issue - don't hesitate to
|
|
650
648
|
report it on [GitHub](https://github.com/sverweij/state-machine-cat/issues).
|
|
651
|
-
- Runs on latest versions of firefox, safari and chrome and node versions >=
|
|
649
|
+
- Runs on latest versions of firefox, safari and chrome and node versions >=20.12.0
|
|
652
650
|
Although it might run on other environments, it's not tested there. I will
|
|
653
651
|
reject issues on these other environments, unless they're accompanied with
|
|
654
652
|
sufficient enticement to make it worth my while.
|
package/dist/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = "
|
|
1
|
+
export const version = "13.0.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "state-machine-cat",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"description": "write beautiful state charts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
"state-machine-cat": "dist/cli/main.mjs"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@hpcc-js/wasm-graphviz": "1.
|
|
44
|
+
"@hpcc-js/wasm-graphviz": "1.10.0",
|
|
45
45
|
"ajv": "8.17.1",
|
|
46
46
|
"fast-xml-parser": "5.2.5",
|
|
47
47
|
"he": "1.2.0",
|
|
48
48
|
"neotraverse": "0.6.18"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
|
-
"node": "^
|
|
51
|
+
"node": "^20.12||^22||>=24"
|
|
52
52
|
},
|
|
53
53
|
"homepage": "https://state-machine-cat.js.org",
|
|
54
54
|
"repository": {
|