-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.74 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
{
"name": "humanness-index",
"version": "1.0.0",
"private": true,
"description": "The Humanness Index™: the open benchmark for how human voice AI sounds, built by Vapi.",
"license": "Apache-2.0",
"homepage": "https://humannessindex.vapi.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/VapiAI/humanness-index.git"
},
"author": "Vapi (https://vapi.ai)",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc",
"test": "bun test",
"ensure-overlay": "bun run scripts/ensure-overlay.ts",
"postinstall": "bun run scripts/ensure-overlay.ts",
"humanness:clips": "bun run src/pipeline/generateClips.ts",
"humanness:human-clips": "bun run src/pipeline/ingestHumanClips.ts",
"humanness:human-segment": "bun run src/pipeline/segmentHumanTakes.ts",
"humanness:human-detap": "bun run src/pipeline/detapTakes.ts",
"humanness:clone": "bun run src/pipeline/cloneVoices.ts",
"humanness:verify-clips": "bun run src/pipeline/verifyClips.ts",
"humanness:normalize-audio": "bun run src/pipeline/normalizeHostedAudio.ts",
"humanness:ttfb": "bun run src/pipeline/ttfbBench.ts"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@upstash/redis": "^1.35.6",
"@vercel/blob": "^2.4.0",
"next": "16.2.5",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"server-only": "^0.0.1"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/node": "^22.18.13",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"babel-plugin-react-compiler": "^1.0.0",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.0.3",
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}