Files
plane/packages/ui/package.json
Anmol Singh Bhatia 0495678f7c chore: remove unused @plane/ui exports (#9701)
* chore: remove unused @plane/ui exports

Drop barrel symbols and source that nothing in the monorepo imported,
and drop @radix-ui/react-scroll-area with them. Keep Button source
internal for InputColorPicker.

* chore: format leftover dropdown comboButton indent
2026-08-28 00:08:27 +05:30

76 lines
2.4 KiB
JSON

{
"name": "@plane/ui",
"version": "1.4.2",
"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:",
"@headlessui/react": "catalog:",
"@plane/constants": "workspace:*",
"@plane/hooks": "workspace:*",
"@plane/propel": "workspace:*",
"@plane/types": "workspace:*",
"@plane/utils": "workspace:*",
"@popperjs/core": "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-docs": "catalog:",
"@storybook/addon-links": "catalog:",
"@storybook/addon-onboarding": "catalog:",
"@storybook/addon-styling-webpack": "catalog:",
"@storybook/addon-webpack5-compiler-swc": "catalog:",
"@storybook/react": "catalog:",
"@storybook/react-webpack5": "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": "^19.0.0",
"react-dom": "^19.0.0"
}
}