-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"name": "vibersyn",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Vibersyn — an operating system for AI-agent work. Talk in a room; AI passively listens, suggests things to build, and steers many concurrent agent processes at once.",
"scripts": {
"dev": "vite --host 127.0.0.1",
"dev:api": "bun --watch src/server/index.ts",
"build": "vite build",
"preview": "vite preview --host 127.0.0.1",
"start": "bun src/server/index.ts",
"transcript": "bun scripts/transcript.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:e2e": "playwright test",
"test:live": "bun run build && playwright test --config playwright.live.config.ts",
"test:all": "bun test && playwright test",
"seed": "bun src/scripts/seed-demo.ts",
"eval:detect": "bun src/detect/evals/run-live.ts"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@types/bun": "^1.3.14",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"typescript": "^5.5.0",
"vite": "^8.0.16"
},
"dependencies": {
"3d-tiles-renderer": "^0.5.1",
"@elizaos/core": "1.7.2",
"@mediapipe/tasks-vision": "0.10.21",
"@types/three": "^0.185.1",
"hono": "^4.12.25",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"smthrs": "0.35.0",
"three": "^0.185.1",
"ws": "^8.18.2",
"zod": "4.4.3"
}
}