-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "whisper-turbo",
"version": "0.11.0",
"author": "Christopher Fleetwood <[email protected]>",
"description": "GPU accelerated Whisper",
"repository": "FL33TW00D/whisper-turbo",
"keywords": [
"rust",
"WebGPU",
"ML",
"Machine Learning",
"AI"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/node": "^14.18.63",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"typescript": "~4.7.4"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint ./src"
},
"dependencies": {
"comlink": "4.3.1",
"fix-webm-duration": "^1.0.5",
"idb": "^7.1.1",
"p-retry": "^5.1.2",
"true-myth": "^6.2.0",
"uuid": "^9.0.1",
"whisper-webgpu": "0.10.0"
},
"files": [
"dist/**/*"
]
}