-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.02 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vibemic",
"displayName": "VibeMic",
"description": "Voice-to-text for vibe coding — record, edit, copy, paste into any AI chat",
"version": "1.0.0",
"publisher": "mcpware",
"engines": {
"vscode": "^1.85.0"
},
"categories": ["Other"],
"activationEvents": ["onStartupFinished"],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vibemic.toggleRecording",
"title": "VibeMic: Toggle Voice Recording"
},
{
"command": "vibemic.stopRecording",
"title": "VibeMic: Stop Recording"
},
{
"command": "vibemic.openPanel",
"title": "VibeMic: Open Panel"
}
],
"keybindings": [
{
"command": "vibemic.toggleRecording",
"key": "pagedown",
"mac": "pagedown"
},
{
"command": "vibemic.stopRecording",
"key": "pagedown",
"when": "vibemic.isRecording"
}
],
"viewsContainers": {
"panel": [
{
"id": "vibemic-panel",
"title": "VibeMic",
"icon": "$(mic)"
}
]
},
"views": {
"vibemic-panel": [
{
"type": "webview",
"id": "vibemic.mainView",
"name": "VibeMic"
}
]
},
"configuration": {
"title": "VibeMic",
"properties": {
"vibemic.openaiApiKey": {
"type": "string",
"default": "",
"description": "Your OpenAI API key for Whisper transcription"
},
"vibemic.language": {
"type": "string",
"default": "",
"description": "Language code for transcription (e.g. 'zh' for Chinese, 'en' for English). Leave empty for auto-detect."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0"
},
"dependencies": {
"openai": "^4.0.0"
}
}