-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@jay-zod/speak",
"version": "1.1.1",
"description": "Local TTS with voice cloning for AI agents. Convert text to speech using Chatterbox on Apple Silicon.",
"module": "src/index.ts",
"type": "module",
"bin": {
"speak": "./src/index.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch run src/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"cli-progress": "^3.12.0",
"commander": "^13.1.0",
"picocolors": "^1.1.1",
"speaker": "^0.5.5",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cli-progress": "^3.11.6"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"bun": ">=1.0.0"
},
"keywords": ["tts", "text-to-speech", "chatterbox", "mlx", "apple-silicon", "pi-package", "voice-cloning", "narration", "audiobook", "ai-agent", "claude-code", "skills"],
"author": "jay-zod",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EmZod/speak"
},
"pi": {
"skills": ["SKILL.md"]
}
}