-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "voicekey",
"version": "1.0.0",
"description": "A CLI tool to transcribe voice to text with interactive UI",
"main": "index.js",
"type": "module",
"bin": {
"voicekey": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"voicekey",
"voice",
"transcription",
"commander",
"ink",
"terminal"
],
"author": "JP <[email protected]>",
"license": "MIT",
"dependencies": {
"clipboardy": "^4.0.0",
"commander": "^11.1.0",
"form-data": "^4.0.0",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"node-fetch": "^3.3.2",
"node-global-key-listener": "^0.3.0",
"node-notifier": "^10.0.1",
"node-record-lpcm16": "^1.0.1",
"react": "^18.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dqnamo/voicekey.git"
},
"bugs": {
"url": "https://github.com/dqnamo/voicekey/issues"
},
"homepage": "https://github.com/dqnamo/voicekey#readme"
}