-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.72 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
{
"name": "storyboard-a3",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"build:workspaces": "npm run build:lib --workspace=@livepeer/agent && npm run build --workspace=@livepeer/agent-pack-projects && npm run build --workspace=@livepeer/agent-pack-canvas",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:preview": "playwright test --config=tests/e2e-preview/playwright.config.ts",
"bench:skills": "tsx benchmark/skills-system/run-sim.ts",
"e2e:playbooks": "tsx scripts/e2e-playbooks/runner.ts",
"autonomous-phases": "tsx scripts/autonomous-phases/orchestrator.ts"
},
"dependencies": {
"@livepeer/agent": "workspace:*",
"@livepeer/agent-pack-canvas": "workspace:*",
"@livepeer/agent-pack-projects": "workspace:*",
"@livepeer/creative-kit": "workspace:*",
"@modelcontextprotocol/sdk": "^1.29.0",
"@vercel/blob": "^2.3.3",
"@vercel/functions": "^3.5.0",
"jszip": "^3.10.1",
"next": "16.2.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"ws": "^8.18.0",
"yaml": "^2.8.4",
"zod": "^4.4.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"jsdom": "^29.0.1",
"playwright": "^1.59.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.2"
}
}