speechflow 2.4.1 → 2.4.3
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/.ase/service.log +450 -0
- package/.ase/service.yaml +1 -1
- package/.ase/task/TASK-flush.md +44 -0
- package/CHANGELOG.md +22 -0
- package/README.md +10 -9
- package/etc/speechflow.yaml +1 -1
- package/etc/stx.conf +21 -21
- package/package.json +12 -8
- package/speechflow-cli/dst/speechflow-main-cli.js +2 -2
- package/speechflow-cli/dst/speechflow-main-cli.js.map +1 -1
- package/speechflow-cli/dst/speechflow-node-a2a-ffmpeg.js +2 -0
- package/speechflow-cli/dst/speechflow-node-a2a-ffmpeg.js.map +1 -1
- package/speechflow-cli/dst/speechflow-node-a2a-gender.js +2 -1
- package/speechflow-cli/dst/speechflow-node-a2a-gender.js.map +1 -1
- package/speechflow-cli/dst/speechflow-node-a2a-meter.js +28 -12
- package/speechflow-cli/dst/speechflow-node-a2a-meter.js.map +1 -1
- package/speechflow-cli/dst/speechflow-node-a2a-pitch.js +9 -15
- package/speechflow-cli/dst/speechflow-node-a2a-pitch.js.map +1 -1
- package/speechflow-cli/dst/speechflow-node-a2t-deepgram.d.ts +3 -0
- package/speechflow-cli/dst/speechflow-node-a2t-deepgram.js +149 -101
- package/speechflow-cli/dst/speechflow-node-a2t-deepgram.js.map +1 -1
- package/speechflow-cli/dst/speechflow-node-t2t-opus.js.map +1 -1
- package/speechflow-cli/dst/speechflow-node-xio-exec.js +6 -4
- package/speechflow-cli/dst/speechflow-node-xio-exec.js.map +1 -1
- package/speechflow-cli/dst/speechflow-util-llm.js +8 -1
- package/speechflow-cli/dst/speechflow-util-llm.js.map +1 -1
- package/speechflow-cli/etc/oxlint.jsonc +4 -0
- package/speechflow-cli/etc/stx.conf +4 -4
- package/speechflow-cli/package.d/@shiguredo+rnnoise-wasm+2025.1.5.patch +1 -14
- package/speechflow-cli/package.d/@typescript-eslint+typescript-estree+8.65.0.patch +16 -0
- package/speechflow-cli/package.json +54 -48
- package/speechflow-cli/src/speechflow-main-cli.ts +1 -1
- package/speechflow-cli/src/speechflow-node-a2a-ffmpeg.ts +3 -1
- package/speechflow-cli/src/speechflow-node-a2a-gender.ts +3 -2
- package/speechflow-cli/src/speechflow-node-a2a-meter.ts +30 -13
- package/speechflow-cli/src/speechflow-node-a2a-pitch.ts +12 -20
- package/speechflow-cli/src/speechflow-node-a2t-deepgram.ts +162 -108
- package/speechflow-cli/src/speechflow-node-t2t-opus.ts +1 -1
- package/speechflow-cli/src/speechflow-node-xio-exec.ts +7 -5
- package/speechflow-cli/src/speechflow-util-llm.ts +10 -2
- package/speechflow-ui-db/dst/app-font-fa-brands-400.woff2 +0 -0
- package/speechflow-ui-db/dst/app-font-fa-regular-400.woff2 +0 -0
- package/speechflow-ui-db/dst/app-font-fa-solid-900.woff2 +0 -0
- package/speechflow-ui-db/dst/app-font-fa-v4compatibility.woff2 +0 -0
- package/speechflow-ui-db/dst/index.css +1 -1
- package/speechflow-ui-db/dst/index.js +579 -57
- package/speechflow-ui-db/etc/stx.conf +3 -2
- package/speechflow-ui-db/etc/vite-client.mts +1 -1
- package/speechflow-ui-db/package.d/@typescript-eslint+typescript-estree+8.65.0.patch +16 -0
- package/speechflow-ui-db/package.json +26 -21
- package/speechflow-ui-st/dst/app-font-fa-brands-400.woff2 +0 -0
- package/speechflow-ui-st/dst/app-font-fa-regular-400.woff2 +0 -0
- package/speechflow-ui-st/dst/app-font-fa-solid-900.woff2 +0 -0
- package/speechflow-ui-st/dst/app-font-fa-v4compatibility.woff2 +0 -0
- package/speechflow-ui-st/dst/index.css +1 -1
- package/speechflow-ui-st/dst/index.js +593 -71
- package/speechflow-ui-st/etc/stx.conf +3 -2
- package/speechflow-ui-st/etc/vite-client.mts +6 -0
- package/speechflow-ui-st/package.d/@typescript-eslint+typescript-estree+8.65.0.patch +16 -0
- package/speechflow-ui-st/package.json +26 -21
- package/speechflow-ui-st/src/app.vue +3 -3
- package/speechflow-cli/package.d/@typescript-eslint+typescript-estree+8.60.0.patch +0 -12
- package/speechflow-cli/package.d/sherpa-onnx+1.12.25.patch +0 -12
- package/speechflow-ui-db/package.d/@typescript-eslint+typescript-estree+8.60.0.patch +0 -12
- package/speechflow-ui-st/package.d/@typescript-eslint+typescript-estree+8.60.0.patch +0 -12
|
@@ -6,11 +6,12 @@
|
|
|
6
6
|
|
|
7
7
|
# [speechflow-ui-st] (internal) create patch set for NPM dependencies
|
|
8
8
|
patch-make
|
|
9
|
-
npm
|
|
9
|
+
npm install --package-lock-only --save && \
|
|
10
|
+
shx echo "allow-remote=all" >.npmrc && \
|
|
10
11
|
patch-package --patch-dir package.d \
|
|
11
12
|
"@typescript-eslint/typescript-estree" \
|
|
12
13
|
htmllint-cli && \
|
|
13
|
-
shx rm -f
|
|
14
|
+
shx rm -f package-lock.json .npmrc
|
|
14
15
|
|
|
15
16
|
# [speechflow-ui-st] (internal) apply patch set for NPM dependencies
|
|
16
17
|
patch-apply
|
|
@@ -52,6 +52,12 @@ export default Vite.defineConfig(({ command, mode }) => ({
|
|
|
52
52
|
onwarn: (entry, next) => {
|
|
53
53
|
if (entry.message.match(/node_modules.+Use of eval in/))
|
|
54
54
|
return
|
|
55
|
+
|
|
56
|
+
/* suppress Rolldown (Vite 8) diagnostic for the dual-mode ESM/CommonJS
|
|
57
|
+
file of the "outdent" module, a transitive dependency of "vue3-spinners",
|
|
58
|
+
whose "module.exports" assignment is guarded and hence never executed */
|
|
59
|
+
else if (entry.code === "COMMONJS_VARIABLE_IN_ESM")
|
|
60
|
+
return
|
|
55
61
|
else
|
|
56
62
|
return next(entry)
|
|
57
63
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
diff --git a/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js b/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
2
|
+
index 0961c74..a7c2c25 100644
|
|
3
|
+
--- a/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
4
|
+
+++ b/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
5
|
+
@@ -80,11 +80,5 @@ function handleUnsupportedTSVersion(parseSettings, behavior, passedLoggerFn) {
|
|
6
|
+
if (warnedAboutTSVersion) {
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
9
|
+
- if (passedLoggerFn ||
|
|
10
|
+
- // See https://github.com/typescript-eslint/typescript-eslint/issues/7896
|
|
11
|
+
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
12
|
+
- (typeof process === 'undefined' ? false : process.stdout?.isTTY)) {
|
|
13
|
+
- parseSettings.log(buildUnsupportedTSVersionMessage('warn'));
|
|
14
|
+
- }
|
|
15
|
+
warnedAboutTSVersion = true;
|
|
16
|
+
}
|
|
@@ -14,39 +14,39 @@
|
|
|
14
14
|
"url": "http://engelschall.com"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"vue": "3.5.
|
|
17
|
+
"vue": "3.5.40",
|
|
18
18
|
"vue3-spinners": "1.3.3",
|
|
19
19
|
"luxon": "3.7.2",
|
|
20
20
|
"@opensumi/reconnecting-websocket": "4.4.0",
|
|
21
|
-
"axios": "1.
|
|
21
|
+
"axios": "1.18.1",
|
|
22
22
|
"typopro-web": "4.2.8",
|
|
23
|
-
"@fortawesome/fontawesome-free": "7.
|
|
23
|
+
"@fortawesome/fontawesome-free": "7.3.1",
|
|
24
24
|
"patch-package": "8.0.1",
|
|
25
|
-
"@rse/stx": "1.1.
|
|
26
|
-
"animejs": "4.
|
|
25
|
+
"@rse/stx": "1.1.6",
|
|
26
|
+
"animejs": "4.5.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"vite": "
|
|
30
|
-
"typescript-eslint": "8.
|
|
31
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
32
|
-
"@typescript-eslint/parser": "8.
|
|
33
|
-
"@vitejs/plugin-vue": "6.0.
|
|
29
|
+
"vite": "8.1.5",
|
|
30
|
+
"typescript-eslint": "8.65.0",
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "8.65.0",
|
|
32
|
+
"@typescript-eslint/parser": "8.65.0",
|
|
33
|
+
"@vitejs/plugin-vue": "6.0.8",
|
|
34
34
|
"@rollup/plugin-yaml": "5.0.0",
|
|
35
35
|
"vite-plugin-node-polyfills": "0.28.0",
|
|
36
36
|
"vite-svg-loader": "5.1.1",
|
|
37
37
|
"@liuli-util/vite-plugin-node": "0.10.0",
|
|
38
38
|
"mkdirp": "3.0.1",
|
|
39
39
|
|
|
40
|
-
"@vue/eslint-config-typescript": "14.
|
|
41
|
-
"vue-eslint-parser": "10.4.
|
|
42
|
-
"eslint": "9.39.
|
|
43
|
-
"@eslint/js": "9.39.
|
|
40
|
+
"@vue/eslint-config-typescript": "14.9.0",
|
|
41
|
+
"vue-eslint-parser": "10.4.1",
|
|
42
|
+
"eslint": "9.39.5",
|
|
43
|
+
"@eslint/js": "9.39.5",
|
|
44
44
|
"neostandard": "0.13.0",
|
|
45
45
|
"eslint-plugin-import": "2.32.0",
|
|
46
|
-
"eslint-plugin-vue": "10.
|
|
46
|
+
"eslint-plugin-vue": "10.10.0",
|
|
47
47
|
|
|
48
|
-
"oxlint": "1.
|
|
49
|
-
"eslint-plugin-oxlint": "1.
|
|
48
|
+
"oxlint": "1.75.0",
|
|
49
|
+
"eslint-plugin-oxlint": "1.75.0",
|
|
50
50
|
|
|
51
51
|
"htmllint": "0.8.0",
|
|
52
52
|
"htmllint-cli": "0.0.7",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"check-dependencies": "2.0.0",
|
|
55
55
|
"nodemon": "3.1.14",
|
|
56
56
|
"shx": "0.4.0",
|
|
57
|
-
"stylelint": "17.
|
|
57
|
+
"stylelint": "17.14.1",
|
|
58
58
|
"stylelint-config-html": "1.1.0",
|
|
59
59
|
"stylelint-config-recommended-vue": "1.6.1",
|
|
60
60
|
"stylelint-config-standard": "40.0.0",
|
|
@@ -63,12 +63,12 @@
|
|
|
63
63
|
"postcss-html": "1.8.1",
|
|
64
64
|
"stylus": "0.64.0",
|
|
65
65
|
"typescript": "6.0.3",
|
|
66
|
-
"vue-tsc": "3.3.
|
|
66
|
+
"vue-tsc": "3.3.8",
|
|
67
67
|
"delay-cli": "3.0.0",
|
|
68
68
|
"cross-env": "10.1.0",
|
|
69
69
|
"serve": "14.2.6",
|
|
70
70
|
|
|
71
|
-
"@types/luxon": "3.7.
|
|
71
|
+
"@types/luxon": "3.7.2",
|
|
72
72
|
"@types/animejs": "3.1.13"
|
|
73
73
|
},
|
|
74
74
|
"overrides": {
|
|
@@ -82,11 +82,16 @@
|
|
|
82
82
|
"eslint-plugin-import": { "eslint": ">=9.0.0" },
|
|
83
83
|
"neostandard": { "eslint": ">=9.0.0" }
|
|
84
84
|
},
|
|
85
|
-
"upd": [ "!
|
|
85
|
+
"upd": [ "!eslint", "!@eslint/js", "!typescript" ],
|
|
86
86
|
"engines": {
|
|
87
87
|
"npm": ">=10.0.0",
|
|
88
88
|
"node": ">=22.0.0"
|
|
89
89
|
},
|
|
90
|
+
"allowScripts": {
|
|
91
|
+
"esbuild": true,
|
|
92
|
+
"fsevents": true,
|
|
93
|
+
"typopro-web": true
|
|
94
|
+
},
|
|
90
95
|
"scripts": {
|
|
91
96
|
"postinstall": "npm start patch-apply",
|
|
92
97
|
"start": "stx -v4 -c etc/stx.conf"
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
z-index: 20
|
|
83
83
|
color: #ffffff
|
|
84
84
|
-webkit-text-stroke: 4px #00000000
|
|
85
|
-
font-size: 2.
|
|
85
|
+
font-size: 2.50vw
|
|
86
86
|
font-weight: 600
|
|
87
87
|
line-height: 1.3
|
|
88
88
|
padding-left: 0.20vw
|
|
@@ -95,8 +95,8 @@
|
|
|
95
95
|
z-index: -10
|
|
96
96
|
position: absolute
|
|
97
97
|
color: #000000
|
|
98
|
-
-webkit-text-stroke: 4px #
|
|
99
|
-
font-size: 2.
|
|
98
|
+
-webkit-text-stroke: 4px #000000e0
|
|
99
|
+
font-size: 2.50vw
|
|
100
100
|
font-weight: 600
|
|
101
101
|
line-height: 1.3
|
|
102
102
|
padding-left: 0.20vw
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
diff --git a/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js b/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
2
|
-
index 7a133e8..6f29aa6 100644
|
|
3
|
-
--- a/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
4
|
-
+++ b/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
5
|
-
@@ -75,7 +75,6 @@ function warnAboutTSVersion(parseSettings, passedLoggerFn) {
|
|
6
|
-
'\n',
|
|
7
|
-
border,
|
|
8
|
-
].join('\n');
|
|
9
|
-
- parseSettings.log(versionWarning);
|
|
10
|
-
}
|
|
11
|
-
warnedAboutTSVersion = true;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
diff --git a/node_modules/sherpa-onnx/sherpa-onnx-speech-enhancement.js b/node_modules/sherpa-onnx/sherpa-onnx-speech-enhancement.js
|
|
2
|
-
index 3ee5a77..2aab4a2 100644
|
|
3
|
-
--- a/node_modules/sherpa-onnx/sherpa-onnx-speech-enhancement.js
|
|
4
|
-
+++ b/node_modules/sherpa-onnx/sherpa-onnx-speech-enhancement.js
|
|
5
|
-
@@ -101,7 +101,6 @@ function initSherpaOnnxOfflineSpeechDenoiserConfig(config, Module) {
|
|
6
|
-
|
|
7
|
-
class OfflineSpeechDenoiser {
|
|
8
|
-
constructor(configObj, Module) {
|
|
9
|
-
- console.log(configObj)
|
|
10
|
-
const config = initSherpaOnnxOfflineSpeechDenoiserConfig(configObj, Module)
|
|
11
|
-
// Module._MyPrint(config.ptr);
|
|
12
|
-
const handle = Module._SherpaOnnxCreateOfflineSpeechDenoiser(config.ptr);
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
diff --git a/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js b/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
2
|
-
index 7a133e8..6f29aa6 100644
|
|
3
|
-
--- a/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
4
|
-
+++ b/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
5
|
-
@@ -75,7 +75,6 @@ function warnAboutTSVersion(parseSettings, passedLoggerFn) {
|
|
6
|
-
'\n',
|
|
7
|
-
border,
|
|
8
|
-
].join('\n');
|
|
9
|
-
- parseSettings.log(versionWarning);
|
|
10
|
-
}
|
|
11
|
-
warnedAboutTSVersion = true;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
diff --git a/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js b/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
2
|
-
index 7a133e8..6f29aa6 100644
|
|
3
|
-
--- a/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
4
|
-
+++ b/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js
|
|
5
|
-
@@ -75,7 +75,6 @@ function warnAboutTSVersion(parseSettings, passedLoggerFn) {
|
|
6
|
-
'\n',
|
|
7
|
-
border,
|
|
8
|
-
].join('\n');
|
|
9
|
-
- parseSettings.log(versionWarning);
|
|
10
|
-
}
|
|
11
|
-
warnedAboutTSVersion = true;
|
|
12
|
-
}
|