All checks were successful
Build and Release / build-and-release (push) Successful in 13m12s
- Implemented Button component with various props for customization. - Created Modal component with header, content, and footer subcomponents. - Added Spinner component for loading indicators. - Developed Toast component for displaying notifications. - Introduced Tooltip component for contextual hints with keyboard shortcuts. - Added corresponding CSS modules for styling each component. - Updated index file to export new components. - Configured TypeScript settings for the UI package.
21 lines
411 B
JSON
21 lines
411 B
JSON
{
|
|
"name": "@discord-clone/web",
|
|
"private": true,
|
|
"version": "1.0.50",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@discord-clone/platform-web": "*",
|
|
"@discord-clone/shared": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-react": "^5.1.1",
|
|
"vite": "^7.2.4",
|
|
"vite-plugin-pwa": "^1.2.0"
|
|
}
|
|
}
|