codex2voice 0.1.1 → 0.1.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/dist/cli.js +61 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -840,9 +840,69 @@ async function runIngestFromStdin(force = false) {
|
|
|
840
840
|
console.log(result.spoken ? `Spoken (${result.reason}).` : `Skipped (${result.reason}).`);
|
|
841
841
|
}
|
|
842
842
|
|
|
843
|
+
// package.json
|
|
844
|
+
var package_default = {
|
|
845
|
+
name: "codex2voice",
|
|
846
|
+
version: "0.1.2",
|
|
847
|
+
description: "ElevenLabs voice companion CLI for Codex",
|
|
848
|
+
repository: {
|
|
849
|
+
type: "git",
|
|
850
|
+
url: "git+https://github.com/goyo-lp/codex2voice.git"
|
|
851
|
+
},
|
|
852
|
+
bugs: {
|
|
853
|
+
url: "https://github.com/goyo-lp/codex2voice/issues"
|
|
854
|
+
},
|
|
855
|
+
homepage: "https://github.com/goyo-lp/codex2voice#readme",
|
|
856
|
+
type: "module",
|
|
857
|
+
bin: {
|
|
858
|
+
codex2voice: "dist/cli.js"
|
|
859
|
+
},
|
|
860
|
+
files: [
|
|
861
|
+
"dist"
|
|
862
|
+
],
|
|
863
|
+
scripts: {
|
|
864
|
+
build: "tsup src/cli.ts --format esm --dts --clean --external keytar",
|
|
865
|
+
prepack: "npm run build",
|
|
866
|
+
dev: "tsx src/cli.ts",
|
|
867
|
+
test: "vitest run",
|
|
868
|
+
check: "tsc --noEmit"
|
|
869
|
+
},
|
|
870
|
+
keywords: [
|
|
871
|
+
"codex",
|
|
872
|
+
"voice",
|
|
873
|
+
"elevenlabs",
|
|
874
|
+
"cli"
|
|
875
|
+
],
|
|
876
|
+
author: "Goyo Lozano",
|
|
877
|
+
license: "ISC",
|
|
878
|
+
engines: {
|
|
879
|
+
node: ">=20"
|
|
880
|
+
},
|
|
881
|
+
os: [
|
|
882
|
+
"darwin"
|
|
883
|
+
],
|
|
884
|
+
publishConfig: {
|
|
885
|
+
access: "public"
|
|
886
|
+
},
|
|
887
|
+
dependencies: {
|
|
888
|
+
commander: "^14.0.3",
|
|
889
|
+
execa: "^9.6.1",
|
|
890
|
+
inquirer: "^13.3.0",
|
|
891
|
+
pino: "^10.3.1",
|
|
892
|
+
zod: "^4.3.6"
|
|
893
|
+
},
|
|
894
|
+
devDependencies: {
|
|
895
|
+
"@types/node": "^25.3.2",
|
|
896
|
+
tsup: "^8.5.1",
|
|
897
|
+
tsx: "^4.21.0",
|
|
898
|
+
typescript: "^5.9.3",
|
|
899
|
+
vitest: "^4.0.18"
|
|
900
|
+
}
|
|
901
|
+
};
|
|
902
|
+
|
|
843
903
|
// src/cli.ts
|
|
844
904
|
var program = new Command();
|
|
845
|
-
program.name("codex2voice").description("ElevenLabs voice companion for Codex CLI").version(
|
|
905
|
+
program.name("codex2voice").description("ElevenLabs voice companion for Codex CLI").version(package_default.version);
|
|
846
906
|
program.command("init").description("Run guided setup").action(runInit);
|
|
847
907
|
program.command("on").description("Enable voice").action(setVoiceOn);
|
|
848
908
|
program.command("off").description("Disable voice").action(setVoiceOff);
|