@humeai/cli 0.0.8 → 0.0.9
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/dist/index.js +41 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -50167,6 +50167,45 @@ var setSessionConfig = setConfig("session");
|
|
|
50167
50167
|
var setGlobalConfig = setConfig("global");
|
|
50168
50168
|
var endSession = clearConfig("session");
|
|
50169
50169
|
var resetGlobalConfig = clearConfig("global");
|
|
50170
|
+
// package.json
|
|
50171
|
+
var package_default = {
|
|
50172
|
+
name: "@humeai/cli",
|
|
50173
|
+
version: "0.0.9",
|
|
50174
|
+
module: "index.ts",
|
|
50175
|
+
type: "module",
|
|
50176
|
+
description: "CLI for Hume.ai's OCTAVE expressive TTS API",
|
|
50177
|
+
devDependencies: {
|
|
50178
|
+
"@types/bun": "^1.2.22",
|
|
50179
|
+
"@types/debug": "^4.1.12",
|
|
50180
|
+
prettier: "^3.5.2"
|
|
50181
|
+
},
|
|
50182
|
+
peerDependencies: {
|
|
50183
|
+
typescript: "^5.9.2"
|
|
50184
|
+
},
|
|
50185
|
+
scripts: {
|
|
50186
|
+
test: "bun test",
|
|
50187
|
+
"test:verbose": "BUN_TEST_VERBOSE=1 bun test",
|
|
50188
|
+
typecheck: "tsc --noEmit",
|
|
50189
|
+
format: 'prettier --write "**/*.{ts,js,json,md}"',
|
|
50190
|
+
"format:check": 'prettier --check "**/*.{ts,js,json,md}"',
|
|
50191
|
+
prebuild: "bun build src/index.ts --target node --outfile dist/index.js && chmod +x dist/index.js",
|
|
50192
|
+
prepublishOnly: "npm run prebuild"
|
|
50193
|
+
},
|
|
50194
|
+
dependencies: {
|
|
50195
|
+
"@clack/prompts": "^0.10.0",
|
|
50196
|
+
clipanion: "^4.0.0-rc.4",
|
|
50197
|
+
debug: "^4.4.0",
|
|
50198
|
+
hume: "0.13.6",
|
|
50199
|
+
open: "^10.1.0",
|
|
50200
|
+
typanion: "^3.14.0"
|
|
50201
|
+
},
|
|
50202
|
+
files: [
|
|
50203
|
+
"dist/index.js"
|
|
50204
|
+
],
|
|
50205
|
+
bin: {
|
|
50206
|
+
hume: "dist/index.js"
|
|
50207
|
+
}
|
|
50208
|
+
};
|
|
50170
50209
|
|
|
50171
50210
|
// src/tts.ts
|
|
50172
50211
|
import { mkdir as mkdir2, writeFile as writeFile3 } from "node:fs/promises";
|
|
@@ -50784,7 +50823,7 @@ var usageDescriptions = {
|
|
|
50784
50823
|
};
|
|
50785
50824
|
var cli = new Cli({
|
|
50786
50825
|
binaryName: "hume",
|
|
50787
|
-
binaryVersion:
|
|
50826
|
+
binaryVersion: package_default.version
|
|
50788
50827
|
});
|
|
50789
50828
|
var MAX_LINE_LENGTH2 = 80;
|
|
50790
50829
|
var richLine2 = Array(MAX_LINE_LENGTH2).fill(`━`);
|
|
@@ -51212,6 +51251,7 @@ cli.register(GlobalConfigShowCommand);
|
|
|
51212
51251
|
cli.register(GlobalConfigResetCommand);
|
|
51213
51252
|
cli.register(GlobalConfigRootCommand);
|
|
51214
51253
|
cli.register(HelpCommand3);
|
|
51254
|
+
cli.register(exports_builtins.VersionCommand);
|
|
51215
51255
|
try {
|
|
51216
51256
|
cli.process(process.argv.slice(2));
|
|
51217
51257
|
} catch (e_) {
|