-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.2 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
{
"name": "multi",
"private": true,
"version": "0.1.0",
"description": "Un Discord para vibecodear con tus compas — salas en vivo donde humanos + agentes construyen apps juntos.",
"workspaces": [
"server",
"web"
],
"scripts": {
"start": "npm run build && npm run serve",
"build": "npm run build -w web",
"serve": "npm run start -w server",
"compartir": "node scripts/compartir.mjs",
"dev": "npm run dev -w server",
"dev:web": "npm run dev -w web",
"typecheck": "npm run typecheck -w server && npm run typecheck -w web",
"demo:workspace": "npm run demo:workspace -w server",
"demo:agent": "npm run demo:agent -w server",
"demo:concurrency": "npm run demo:concurrency -w server",
"demo:persistence": "npm run demo:persistence -w server",
"demo:historial": "npm run demo:historial -w server",
"demo:back": "npm run demo:back -w server",
"demo:aislamiento": "npm run demo:aislamiento -w server",
"demo:keys": "npm run demo:keys -w server",
"demo:menciones": "npm run demo:menciones -w server",
"demo:providers": "npm run demo:providers -w server",
"dev:test": "npm run dev:test -w server"
},
"engines": {
"node": ">=22"
}
}