-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 KB
/
package.json
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
{
"name": "aivox",
"version": "0.0.10",
"bin": {
"aivox": "dist/main.js"
},
"description": "A lightweight CLI tool for translating voice to text using Whisper, seamlessly piping the transcribed text to any Unix-like command for versatile integration.",
"main": "dist/main.js",
"scripts": {
"test": "jest",
"build": "tsup src/main.ts --out-dir dist && tsup src/worker.ts --out-dir dist && tsup src/recording.ts --out-dir dist",
"postbuild": "chmod +x dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ikana/aivox.git"
},
"keywords": [
"voice",
"whisper",
"voice-to-text",
"cli"
],
"author": "Rod Quezada",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ikana/aivox/issues"
},
"homepage": "https://github.com/Ikana/aivox#readme",
"dependencies": {
"node-fetch": "^3.3.2",
"node-record-lpcm16": "^1.0.1",
"node-wav": "^0.0.2",
"smart-whisper": "^0.7.0",
"wav-headers": "^1.0.1"
},
"devDependencies": {
"@types/node-fetch": "^2.6.11",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}