-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
51 lines (51 loc) · 1.14 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
43
44
45
46
47
48
49
50
51
{
"name": "whisper-node",
"version": "1.1.2",
"description": "Local audio transcription on CPU. Node.js bindings for OpenAI's Whisper.",
"homepage": "https://npmjs.com/whisper-node",
"author": "ariym",
"main": "dist/index.js",
"bin": {
"download": "dist/download.js"
},
"scripts": {
"start": "echo Starting with: npm run dev... && npm run dev",
"dev": "NODE_ENV='development' nodemon --watch './**/*.ts' --exec 'ts-node' src/test.ts",
"build": "npx tsc && chmod +x dist/download.js",
"test": "node dist/test.js"
},
"devDependencies": {
"@types/node": "^18.11.13",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"readline-sync": "^1.4.10",
"shelljs": "^0.8.5"
},
"repository": {
"type": "git",
"url": "https://github.com/ariym/whisper-node.git"
},
"license": "MIT",
"keywords": [
"OpenAI",
"Whisper",
"CPP",
"C++",
"Bindings",
"Transcribe",
"Transcriber",
"Transcript",
"Transcription",
"Audio",
"Speech",
"Speech-to-Text",
"STT",
"TTS",
"SRT",
"Diarization",
"local"
]
}