speechflow 1.4.0 → 1.4.2
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 +6 -0
- package/README.md +3 -3
- package/package.json +13 -3
package/CHANGELOG.md
CHANGED
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
|
-
```
|
|
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,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "speechflow",
|
|
3
|
-
"version": "1.4.
|
|
4
|
-
"x-stdver": "1.4.
|
|
5
|
-
"x-release": "2025-08-
|
|
3
|
+
"version": "1.4.2",
|
|
4
|
+
"x-stdver": "1.4.2-GA",
|
|
5
|
+
"x-release": "2025-08-06",
|
|
6
6
|
"homepage": "https://github.com/rse/speechflow",
|
|
7
7
|
"description": "Speech Processing Flow Graph",
|
|
8
8
|
"license": "GPL-3.0-only",
|
|
@@ -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",
|