-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 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
{
"name": "awaken-copilotkit-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"setup:agent": "bash scripts/setup-agent.sh",
"dev": "concurrently \"npm run dev:ui\" \"npm run dev:agent\" --names ui,agent --prefix-colors blue,green --kill-others",
"dev:ui": "next dev -p ${FRONTEND_PORT:-3000}",
"dev:agent": "bash scripts/run-agent.sh",
"dev:mcp": "MCP_SERVER_CMD='python3 -u ../shared/mcp-ui-demo-server.py' npm run dev",
"dev:all": "npm run dev",
"build": "next build",
"start": "next start -p 3000",
"e2e": "playwright test",
"smoke": "bash scripts/smoke.sh"
},
"dependencies": {
"@a2ui/lit": "^0.8.3",
"@a2ui/react": "^0.8.0",
"@ag-ui/client": "^0.0.48",
"@copilotkit/react-core": "^1.54.1",
"@copilotkit/react-ui": "^1.54.1",
"@copilotkit/runtime": "^1.56.0",
"@json-render/react": "^0.16.0",
"@openuidev/react-lang": "^0.1.4",
"@openuidev/react-ui": "^0.9.20",
"leaflet": "^1.9.4",
"next": "15",
"react": "19",
"react-dom": "19",
"zod": "^3.25.76"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/leaflet": "^1.9.21",
"@types/node": "^22",
"@types/react": "^19",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}