-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 900 Bytes
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
{
"private": true,
"type": "module",
"scripts": {
"typecheck:widget": "tsc -p tsconfig.widget.json --noEmit",
"typecheck:e2e": "tsc -p tsconfig.e2e.json --noEmit",
"build:widget": "esbuild src/agent_manager/api/static/widget/index.ts --bundle --format=esm --target=es2020 --outfile=src/agent_manager/api/static/widget.js",
"watch:widget": "npm run build:widget -- --watch",
"test:widget": "node src/agent_manager/api/static/widget.test.mjs",
"test:widget:e2e": "playwright test"
},
"dependencies": {
"lucide-react": "^1.22.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"streamdown": "^2.5.0",
"use-stick-to-bottom": "^1.1.6"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.24.0",
"typescript": "^5.6.0"
}
}