-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.96 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
{
"name": "nodevoice",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "NodeVoice: shared-state voice rooms for multi-agent voice coordination and NodeAgent-style frame agents.",
"scripts": {
"demo": "npm run demo:compare",
"demo:voice": "tsx src/voice/runVoiceMvp.ts",
"demo:node": "tsx src/nodeagents/runNodeAgentMvp.ts",
"start": "tsx src/server.ts",
"check": "tsc --noEmit",
"check:client": "tsc --noEmit -p tsconfig.client.json",
"doctor": "npm run check && npm run check:client",
"proof": "npm run test && npm run demo:compare",
"test": "vitest run --root .",
"demo:compare": "tsx src/compare/runComparisonMvp.ts",
"dev": "vite",
"build": "vite build",
"ui": "npm run build && tsx src/server.ts",
"live": "node scripts/live.mjs"
},
"dependencies": {
"@assistant-ui/react-o11y": "^0.0.25",
"@assistant-ui/store": "^0.2.19",
"@astryxdesign/cli": "^0.1.2",
"@astryxdesign/core": "^0.1.2",
"@astryxdesign/theme-neutral": "^0.1.2",
"@evilmartians/agent-prism-data": "^0.0.9",
"@evilmartians/agent-prism-types": "^0.0.9",
"@livekit/components-react": "^2.9.21",
"@radix-ui/react-collapsible": "^1.1.15",
"@radix-ui/react-tabs": "^1.1.16",
"convex": "^1.42.1",
"livekit-client": "^2.20.0",
"qrcode-generator": "^1.5.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-json-pretty": "^2.2.0",
"react-resizable-panels": "^4.12.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "latest",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"autoprefixer": "^10.5.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.23.0",
"postcss": "^8.5.16",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"tsx": "latest",
"typescript": "latest",
"vite": "^8.1.3",
"vitest": "latest"
}
}