-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.68 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.68 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@codexstar/pi-listen",
"version": "7.2.2",
"description": "Voice in + voice out for Pi CLI — hold-to-talk STT (Deepgram or 19 offline models) plus TTS (Kitten Nano, Piper, Kokoro, or Deepgram Aura)",
"type": "module",
"keywords": [
"pi-package",
"pi",
"pi-extension",
"voice",
"speech-to-text",
"stt",
"deepgram",
"nova-3",
"hold-to-talk",
"voice-input",
"transcription",
"streaming",
"dictation",
"waveform",
"terminal",
"cli",
"coding-agent",
"tts",
"text-to-speech",
"kitten-tts",
"piper-tts",
"kokoro",
"deepgram-tts",
"aura"
],
"author": {
"name": "codexstar69",
"url": "https://x.com/baanditeagle"
},
"license": "MIT",
"homepage": "https://github.com/codexstar69/pi-listen#readme",
"repository": {
"type": "git",
"url": "https://github.com/codexstar69/pi-listen.git"
},
"bugs": {
"url": "https://github.com/codexstar69/pi-listen/issues"
},
"scripts": {
"typecheck": "bunx tsc -p tsconfig.json",
"test": "bun test",
"check": "bun run typecheck && bun run test",
"release:dry": "bun run check && bun publish --dry-run",
"release": "bun run check && bun publish --access public"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": ">=0.70.0",
"@mariozechner/pi-tui": ">=0.70.0"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.70.5",
"@mariozechner/pi-tui": "^0.70.5"
},
"pi": {
"extensions": [
"./extensions/voice.ts"
]
},
"files": [
"extensions",
"README.md",
"LICENSE",
"package.json"
],
"optionalDependencies": {
"sherpa-onnx-node": "^1.13.0"
}
}