-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "speech-transcriber",
"version": "1.0.0",
"description": "A node.js library for transcribing audio to text using OpenAIs Whisper model",
"main": "dist/transcriber.js",
"type": "module",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && tsc && npm run copy-files",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 model/*.onnx dist/model/",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ianmarmour/speech-transcriber.git"
},
"keywords": [
"OpenAI",
"Whisper",
"Transcript",
"Transcriber",
"Audio",
"Speech",
"Speech-to-Text"
],
"author": "Ian Armour <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianmarmour/speech-transcriber/issues"
},
"homepage": "https://github.com/ianmarmour/speech-transcriber#readme",
"devDependencies": {
"@types/node": "^20.8.9",
"copyfiles": "^2.4.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"onnxruntime-web": "^1.16.1"
}
}