-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
68 lines (68 loc) · 1.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nodejs-whisper",
"version": "0.1.15",
"description": "Node bindings for OpenAI's Whisper. Optimized for CPU.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"bin": {
"download": "dist/downloadModel.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ChetanXpro/nodejs-whisper"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"typecheck": "tsc --noEmit",
"build": "tsc && chmod +x dist/downloadModel.js",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"OpenAI",
"Whisper",
"CPP",
"C++",
"Whisper",
"Bindings",
"Transcript",
"Transcriber",
"Audio",
"Speech",
"Speech-to-Text",
"Timestamps",
"nodejs whisper",
"whisper nodejs",
"generate timestamps",
"generate transcript",
"subtitle",
"nodejs-whisper",
"audio-to-subtitles"
],
"author": "chetan baliyan",
"license": "MIT",
"homepage": "https://github.com/ChetanXpro/nodejs-whisper#readme",
"bugs": {
"url": "https://github.com/ChetanXpro/nodejs-whisper/issues"
},
"dependencies": {
"readline-sync": "^1.4.10",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/readline-sync": "^1.4.4",
"@types/shelljs": "^0.8.12",
"prettier": "^3.0.0",
"ts-node": "^10.8.2",
"typescript": "^5.1.6"
},
"files": [
"dist",
"cpp"
]
}