-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 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
{
"name": "meljs",
"version": "1.0.2",
"description": "Pure JavaScript mel spectrogram, FFT, and audio feature extraction for ML/AI applications. NeMo-compatible, zero dependencies, works in browser and Node.js.",
"type": "module",
"exports": {
".": "./src/index.js"
},
"main": "./src/index.js",
"module": "./src/index.js",
"files": [
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"bench:variants": "node tests/benchmark_variants.mjs",
"bench:variants:streaming": "node tests/benchmark_variants.mjs --splits 7,8,9,10,11,12,13,14",
"bench:dashboard": "node tests/build_static_dashboard.mjs"
},
"keywords": [
"mel",
"mel-spectrogram",
"spectrogram",
"fft",
"audio",
"audio-features",
"stft",
"filterbank",
"preprocessing",
"speech",
"speech-recognition",
"asr",
"webgpu",
"wasm",
"onnx",
"onnx-runtime",
"nemo",
"machine-learning",
"deep-learning",
"web-worker"
],
"author": "Yunus Seyhan Dede",
"license": "MIT",
"homepage": "https://github.com/ysdede/meljs",
"repository": {
"type": "git",
"url": "git+https://github.com/ysdede/meljs.git"
},
"bugs": {
"url": "https://github.com/ysdede/meljs/issues"
},
"devDependencies": {
"vitest": "^4.0.18"
}
}