-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 938 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "elevenlabs-cli",
"version": "1.0.0",
"description": "ElevenLabs CLI for text-to-speech and speech-to-text",
"type": "module",
"bin": {
"tts": "./dist/tts.js",
"stt": "./dist/stt.js"
},
"scripts": {
"build": "bun build src/tts-index.ts --outfile dist/tts.js --target node && bun build src/stt-index.ts --outfile dist/stt.js --target node && chmod +x dist/*.js",
"dev:tts": "bun --watch src/tts-index.ts",
"dev:stt": "bun --watch src/stt-index.ts",
"clean": "rm -rf dist"
},
"keywords": ["elevenlabs", "tts", "stt", "text-to-speech", "speech-to-text", "transcription", "vad", "cli"],
"author": "",
"license": "MIT",
"dependencies": {
"elevenlabs": "npm:@elevenlabs/elevenlabs-js@latest",
"commander": "^12.1.0",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"bun-types": "latest",
"typescript": "^5.3.3"
}
}