speechflow 1.4.0 → 1.4.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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
  ChangeLog
3
3
  =========
4
4
 
5
+ 1.4.1 (2025-08-05)
6
+ ------------------
7
+
8
+ - CLEANUP: fix logo references
9
+ - BUGFIX: fix top-level exports after refactoring
10
+
5
11
  1.4.0 (2025-08-05)
6
12
  ------------------
7
13
 
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- <img src="https://raw.githubusercontent.com/rse/speechflow/master/src/speechflow-logo.svg" width="400" align="right" alt=""/>
2
+ <img src="https://raw.githubusercontent.com/rse/speechflow/master/speechflow-cli/src/speechflow-logo.svg" width="400" align="right" alt=""/>
3
3
 
4
4
  SpeechFlow
5
5
  ==========
@@ -63,7 +63,7 @@ $ npm install -g speechflow
63
63
  Usage
64
64
  -----
65
65
 
66
- ```sh
66
+ ```txt
67
67
  $ speechflow
68
68
  [-h|--help]
69
69
  [-V|--version]
@@ -85,7 +85,7 @@ The **SpeechFlow** graph expression language is based on
85
85
  [**FlowLink**](https://npmjs.org/flowlink), which itself has a language
86
86
  following the following BNF-style grammar:
87
87
 
88
- ```
88
+ ```txt
89
89
  expr ::= parallel
90
90
  | sequential
91
91
  | node
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speechflow",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "x-stdver": "1.4.0-GA",
5
5
  "x-release": "2025-08-05",
6
6
  "homepage": "https://github.com/rse/speechflow",
@@ -28,6 +28,16 @@
28
28
  "npm": ">=10.0.0",
29
29
  "node": ">=22.0.0"
30
30
  },
31
+ "bin": { "speechflow": "speechflow-cli/dst/speechflow.js" },
32
+ "types": "./speechflow-cli/dst/speechflow-node.d.ts",
33
+ "module": "./speechflow-cli/dst/speechflow-node.js",
34
+ "main": "./speechflow-cli/dst/speechflow-node.js",
35
+ "exports": {
36
+ ".": {
37
+ "import": { "types": "./speechflow-cli/dst/speechflow-node.d.ts", "default": "./speechflow-cli/dst/speechflow-node.js" },
38
+ "require": { "types": "./speechflow-cli/dst/speechflow-node.d.ts", "default": "./speechflow-cli/dst/speechflow-node.js" }
39
+ }
40
+ },
31
41
  "scripts": {
32
42
  "postinstall": "npm start post-install",
33
43
  "start": "stx -v4 -c etc/stx.conf",