Files
sriram veeraghanta 3f57fefdb4 chore: move all dependencies into pnpm catalog (#9153)
Centralize every external dependency version in the pnpm catalog
(pnpm-workspace.yaml) and reference them via `catalog:` across all
apps and packages. Packages that previously used differing versions
were unified to the highest (notably @react-pdf/renderer ^3.4.5 ->
^4.3.0 in apps/web).
2026-05-31 15:56:12 +05:30

82 lines
2.7 KiB
JSON

{
"name": "@plane/ui",
"version": "1.3.1",
"private": true,
"description": "UI components shared across multiple apps internally",
"license": "AGPL-3.0",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch --no-clean",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postcss": "postcss styles/globals.css -o styles/output.css --watch",
"check:lint": "oxlint --max-warnings=66 .",
"check:types": "tsc --noEmit",
"check:format": "oxfmt --check .",
"fix:lint": "oxlint --fix .",
"fix:format": "oxfmt .",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "catalog:",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "catalog:",
"@blueprintjs/core": "catalog:",
"@blueprintjs/popover2": "catalog:",
"@headlessui/react": "catalog:",
"@plane/constants": "workspace:*",
"@plane/hooks": "workspace:*",
"@plane/propel": "workspace:*",
"@plane/types": "workspace:*",
"@plane/utils": "workspace:*",
"@popperjs/core": "catalog:",
"@radix-ui/react-scroll-area": "catalog:",
"clsx": "catalog:",
"lodash-es": "catalog:",
"lucide-react": "catalog:",
"react-color": "catalog:",
"react-day-picker": "catalog:",
"react-popper": "catalog:",
"tailwind-merge": "catalog:",
"use-font-face-observer": "catalog:"
},
"devDependencies": {
"@chromatic-com/storybook": "catalog:",
"@plane/tailwind-config": "workspace:*",
"@plane/typescript-config": "workspace:*",
"@storybook/addon-essentials": "catalog:",
"@storybook/addon-interactions": "catalog:",
"@storybook/addon-links": "catalog:",
"@storybook/addon-onboarding": "catalog:",
"@storybook/addon-styling-webpack": "catalog:",
"@storybook/addon-webpack5-compiler-swc": "catalog:",
"@storybook/blocks": "catalog:",
"@storybook/react": "catalog:",
"@storybook/react-webpack5": "catalog:",
"@storybook/test": "catalog:",
"@types/lodash-es": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-color": "catalog:",
"@types/react-dom": "catalog:",
"autoprefixer": "catalog:",
"postcss-cli": "catalog:",
"postcss-nested": "catalog:",
"storybook": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
},
"peerDependencies": {
"react": "catalog:",
"react-dom": "catalog:"
}
}