-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.02 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
{
"name": "@renjfk/opencode-voice",
"version": "0.1.0",
"description": "Speech-to-text and text-to-speech for OpenCode. Record voice prompts with whisper-cpp, hear responses via Piper TTS, with LLM normalization through any OpenAI-compatible endpoint.",
"keywords": [
"opencode",
"piper",
"plugin",
"speech-to-text",
"stt",
"text-to-speech",
"tts",
"voice",
"whisper"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/renjfk/opencode-voice.git"
},
"files": [
"index.js",
"lib"
],
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js"
},
"./tui": {
"import": "./index.js"
}
},
"scripts": {
"lint": "npx oxlint .",
"fmt": "npx oxfmt --check .",
"fmt:fix": "npx oxfmt --write .",
"test": "node --test",
"check": "npm run lint && npm run fmt",
"prepack": "npm run check"
},
"devDependencies": {
"oxfmt": "0.50.0",
"oxlint": "1.65.0"
}
}