-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.07 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.07 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "parakeet.js",
"version": "1.4.4",
"description": "WebGPU speech recognition for NVIDIA Parakeet in the browser, powered by ONNX Runtime Web.",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./parakeet": {
"types": "./types/parakeet.d.ts",
"default": "./src/parakeet.js"
},
"./hub": {
"types": "./types/hub.d.ts",
"default": "./src/hub.js"
},
"./models": {
"types": "./types/models.d.ts",
"default": "./src/models.js"
},
"./mel": {
"types": "./types/mel.d.ts",
"default": "./src/mel.js"
}
},
"files": [
"src",
"types",
"README.md",
"LICENSE"
],
"keywords": [
"parakeet",
"parakeet.js",
"nvidia-parakeet",
"nvidia-parakeet-js",
"speech",
"speech-recognition",
"web-speech-recognition",
"onnx",
"onnxruntime-web",
"onnxruntime-web-speech",
"webgpu",
"webgpu-asr",
"webgpu-acceleration",
"wasm",
"transcription",
"browser-transcription",
"multilingual",
"asr"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"verify:frame-copy": "node tests/verify_copy.mjs",
"bench:frame-copy": "node tests/bench_ops.mjs",
"eval:groundtruth": "node tests/eval_long_audio_groundtruth.mjs",
"docs:clean": "node -e \"require('fs').rmSync('.typedoc-site', { recursive: true, force: true })\"",
"docs:api": "typedoc --options typedoc.json",
"docs:build": "npm run docs:clean && npm run docs:api"
},
"dependencies": {
"onnxruntime-web": "1.24.1",
"wink-eng-lite-web-model": "^1.8.1",
"wink-nlp": "^2.4.0"
},
"author": "Yunus Seyhan Dede",
"license": "MIT",
"homepage": "https://github.com/ysdede/parakeet.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ysdede/parakeet.js.git"
},
"bugs": {
"url": "https://github.com/ysdede/parakeet.js/issues"
},
"devDependencies": {
"typedoc": "^0.28.17",
"vitest": "^4.0.18"
}
}