-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.82 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "node-whisper",
"description": "A binding for OpenAI's Whisper Speech-to-Text system, supporting async operations.",
"version": "2026.03.03",
"author": {
"email": "simonegauli@gmail.com",
"name": "Simone Gauli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pnlvfx/node-whisper.git"
},
"license": "MIT",
"type": "module",
"keywords": [
"OpenAI",
"Whisper",
"Transcript",
"Audio",
"Speech",
"Speech-to-Text",
"STT",
"TTS",
"SRT",
"Captions",
"Subtitles"
],
"exports": {
".": {
"types": "./dist/whisper.d.ts",
"import": "./dist/whisper.js"
},
"./types/*": {
"types": "./dist/types/*.d.ts",
"import": "./dist/types/*.js"
}
},
"scripts": {
"tsc": "tsc --noEmit",
"unused": "node tools/unused.ts",
"lint": "eslint",
"build": "rimraf dist && eslint && tsc -p tsconfig.build.json",
"prepack": "yarn build",
"prepublishOnly": "yarn test && eslint",
"update": "yarn upgrade-interactive",
"reference": "node tools/reference.ts",
"test": ""
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@goatjs/dbz": "^1.71.0",
"@goatjs/node": "^1.71.0",
"@goatjs/node-eslint": "^1.45.0",
"@goatjs/rimraf": "^1.71.0",
"@goatjs/ts-unused-exports": "1.71.0",
"@goatjs/typescript-config": "1.71.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"eslint": "^10.0.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}