Files
openclaw/packages/speech-core/package.json
Vincent Koc 27b15a19e8 refactor(voice): catalog voice models through providers (#87794)
* refactor(providers): catalog voice models

* feat(tts): route speech through voice models

* refactor(tts): rename speaker selection fields

* refactor(tts): mark default speech models

* test(tts): type migrated speaker config assertions

* refactor(providers): avoid catalog merge map spread

* fix(tts): honor voice model fallbacks

* refactor(tts): move speech core into package

* chore(tts): register speech core knip workspace

* fix(tts): show migrated speaker voice in status

* fix(tts): satisfy speech core lint

* fix(tts): preserve explicit model aliases

* test(tts): narrow provider config assertion

* test(doctor): allow slow commitments repair check

---------

Co-authored-by: Peter Steinberger <steipete@gmail.com>
2026-05-29 04:46:45 +01:00

40 lines
1.0 KiB
JSON

{
"name": "@openclaw/speech-core",
"version": "2026.5.28",
"private": true,
"description": "OpenClaw speech runtime package",
"type": "module",
"main": "./dist/runtime-api.mjs",
"types": "./dist/runtime-api.d.mts",
"exports": {
".": {
"types": "./dist/runtime-api.d.mts",
"import": "./dist/runtime-api.mjs",
"default": "./dist/runtime-api.mjs"
},
"./api": {
"types": "./dist/api.d.mts",
"import": "./dist/api.mjs",
"default": "./dist/api.mjs"
},
"./runtime-api": {
"types": "./dist/runtime-api.d.mts",
"import": "./dist/runtime-api.mjs",
"default": "./dist/runtime-api.mjs"
},
"./speaker": {
"types": "./dist/speaker.d.mts",
"import": "./dist/speaker.mjs",
"default": "./dist/speaker.mjs"
},
"./voice-models": {
"types": "./dist/voice-models.d.mts",
"import": "./dist/voice-models.mjs",
"default": "./dist/voice-models.mjs"
}
},
"dependencies": {
"openclaw": "workspace:*"
}
}