zapishis-client/packages/ui/package.json
Vlad Chikalkin 2df80c90f6
Feature/mdx (#128)
* convert /documents/privacy to .mdx

* fix: update h2 styling in MDX components

- Changed h2 font weight from bold to semibold for improved visual hierarchy in rendered content.

* fix build

* feat: implement public offer document and layout

- Added a new layout component for the public offer document.
- Created the public offer page in MDX format, detailing terms and conditions for service usage.
- Removed the old offer page in TSX format.
- Updated links for offer and support to a new shared component for better maintainability.
- Integrated Tailwind CSS typography plugin for improved text styling.

* fix: correct formatting in privacy policy terms section

- Adjusted the formatting of terms and definitions in the privacy policy to ensure consistent presentation and clarity.
- Removed unnecessary hyphenation in the definition of "Разработчик" and "Политика" for improved readability.
2025-10-14 15:43:51 +03:00

64 lines
1.7 KiB
JSON

{
"name": "@repo/ui",
"version": "0.0.0",
"type": "module",
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"exports": {
"./globals.css": "./src/globals.css",
"./postcss.config": "./postcss.config.mjs",
"./tailwind.config": "./tailwind.config.ts",
"./lib/*": "./src/lib/*.ts",
"./hooks/*": [
"./src/hooks/*.ts",
"./src/hooks/*.tsx"
],
"./components/*": "./src/components/*.tsx"
},
"license": "MIT",
"scripts": {
"ui": "pnpm dlx shadcn@latest",
"lint": "eslint",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/lint-staged-config": "workspace:*",
"lint-staged": "catalog:"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@repo/typescript-config": "workspace:*",
"@tailwindcss/typography": "^0.5.19",
"@types/react": "catalog:",
"autoprefixer": "catalog:",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "catalog:",
"next-themes": "^0.4.4",
"postcss": "catalog:",
"postcss-load-config": "catalog:",
"react": "catalog:",
"react-day-picker": "8.10.1",
"react-dom": "catalog:",
"sonner": "^1.7.4",
"tailwind-merge": "^2.5.5",
"tailwindcss": "catalog:",
"tailwindcss-animate": "^1.0.7",
"typescript": "catalog:",
"vaul": "^1.1.2"
}
}