Files
openclaw-studio/package.json
T
George Pickett af7554f9cd Add configuration and testing infrastructure for Clawdbot Agent UI
- Introduced components.json for UI configuration with Tailwind and icon library settings.
- Updated ESLint configuration to include Prettier for consistent code formatting.
- Added Playwright and Vitest configurations for end-to-end and unit testing.
- Implemented environment variable validation using Zod and added logging utilities.
- Refactored API routes to improve error handling and logging.
- Enhanced global styles and markdown rendering capabilities.
- Established a new directory structure for better organization of features and components.
2026-01-27 12:41:25 -08:00

47 lines
1.1 KiB
JSON

{
"name": "clawdbot-agent-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"e2e": "playwright test"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@vercel/otel": "^2.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"next": "16.1.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^27.4.0",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.18"
}
}