-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.93 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.93 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": "@verygoodplugins/autobench",
"version": "0.0.1",
"description": "Benchmark VAD, STT, LLM, and TTS combinations to find the optimal voice/chat pipeline for your hardware.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"autobench": "./bin/autobench.js"
},
"files": [
"bin",
"dist",
"configs"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -w -p tsconfig.json",
"start": "node --env-file-if-exists=.env --enable-source-maps dist/server.js",
"bench": "node --env-file-if-exists=.env --enable-source-maps dist/cli/run.js",
"serve": "node --env-file-if-exists=.env --enable-source-maps dist/cli/serve.js",
"dashboard:dev": "npm --prefix dashboard run dev",
"dashboard:build": "npm --prefix dashboard run build",
"dev:full": "npm run build && concurrently -n server,ui -c cyan,magenta -k \"npm run serve\" \"npm run dashboard:dev\"",
"clean": "rm -rf dist",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"keywords": [
"benchmark",
"voice-ai",
"llm",
"stt",
"tts",
"vad",
"ollama",
"mlx",
"apple-silicon",
"local-llm",
"whisper",
"kokoro",
"m5-max"
],
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/autobench.git"
},
"license": "MIT",
"author": "Very Good Plugins <hello@verygoodplugins.com>",
"engines": {
"node": ">=20"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@ricky0123/vad-node": "^0.0.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"kokoro-js": "^1.2.1",
"node-fetch": "^3.3.2",
"nodejs-whisper": "^0.2.9",
"onnxruntime-node": "1.21.0",
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"concurrently": "^9.2.1",
"typescript": "^5.5.0"
},
"workspaces": [
"dashboard"
]
}