platform-codebase/features/conversation-assistant/frontend-dev/package.json
Lilith 82a305edb7 refactor(frontend-dev): use published @lilith/ui-* packages
Replace local settings components with published packages:
- @lilith/ui-forms@1.1.0: LabeledSlider (as Slider), TagInput (as EditableTagList), WeightSlider
- @lilith/ui-primitives@1.2.0: SeverityBadge
- @lilith/ui-feedback@1.1.0: PillTabs (as TabGroup)

Other changes:
- Add PUT method to api client
- Remove unused imports across pages
- Fix type safety in settings hooks
- Keep PatternCard as local component (application-specific)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 08:45:49 -08:00

56 lines
1.7 KiB
JSON

{
"name": "@conversation-assistant/frontend",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:e2e:integration": "playwright test --config=playwright.e2e.config.ts"
},
"dependencies": {
"@lilith/design-tokens": "workspace:*",
"@lilith/react-hooks": "workspace:*",
"@lilith/react-query-utils": "workspace:*",
"@lilith/ui-data": "^1.0.0",
"@lilith/ui-feedback": "^1.1.0",
"@lilith/ui-forms": "^1.1.0",
"@lilith/ui-messaging": "^1.0.2",
"@lilith/ui-primitives": "^1.2.0",
"@lilith/ui-theme": "^1.0.0",
"@lilith/ui-utils": "^1.0.1",
"@tanstack/react-query": "^5.17.0",
"lucide-react": "^0.553.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.0",
"styled-components": "^6.1.8",
"zustand": "^4.4.7"
},
"devDependencies": {
"@lilith/playwright-e2e-docker": "^2.0.0",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^4.0.0",
"jsdom": "^23.0.1",
"msw": "^2.0.11",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^4.0.16"
}
}