mirror of
https://github.com/makeplane/plane.git
synced 2025-12-15 19:37:51 +01:00
96 lines
3.6 KiB
JSON
96 lines
3.6 KiB
JSON
{
|
|
"name": "@plane/propel",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"license": "AGPL-3.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsdown --watch",
|
|
"build": "tsdown",
|
|
"check:lint": "eslint . --max-warnings=1306",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier --check .",
|
|
"fix:lint": "eslint . --fix --max-warnings=1306",
|
|
"fix:format": "prettier --write .",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
|
|
"storybook": "storybook dev -p 6006",
|
|
"build-storybook": "storybook build"
|
|
},
|
|
"exports": {
|
|
"./accordion": "./dist/accordion/index.js",
|
|
"./animated-counter": "./dist/animated-counter/index.js",
|
|
"./avatar": "./dist/avatar/index.js",
|
|
"./banner": "./dist/banner/index.js",
|
|
"./button": "./dist/button/index.js",
|
|
"./calendar": "./dist/calendar/index.js",
|
|
"./card": "./dist/card/index.js",
|
|
"./charts/area-chart": "./dist/charts/area-chart/index.js",
|
|
"./charts/bar-chart": "./dist/charts/bar-chart/index.js",
|
|
"./charts/line-chart": "./dist/charts/line-chart/index.js",
|
|
"./charts/pie-chart": "./dist/charts/pie-chart/index.js",
|
|
"./charts/radar-chart": "./dist/charts/radar-chart/index.js",
|
|
"./charts/scatter-chart": "./dist/charts/scatter-chart/index.js",
|
|
"./charts/tree-map": "./dist/charts/tree-map/index.js",
|
|
"./collapsible": "./dist/collapsible/index.js",
|
|
"./combobox": "./dist/combobox/index.js",
|
|
"./command": "./dist/command/index.js",
|
|
"./context-menu": "./dist/context-menu/index.js",
|
|
"./dialog": "./dist/dialog/index.js",
|
|
"./emoji-icon-picker": "./dist/emoji-icon-picker/index.js",
|
|
"./emoji-reaction": "./dist/emoji-reaction/index.js",
|
|
"./empty-state": "./dist/empty-state/index.js",
|
|
"./icons": "./dist/icons/index.js",
|
|
"./input": "./dist/input/index.js",
|
|
"./menu": "./dist/menu/index.js",
|
|
"./pill": "./dist/pill/index.js",
|
|
"./popover": "./dist/popover/index.js",
|
|
"./portal": "./dist/portal/index.js",
|
|
"./scrollarea": "./dist/scrollarea/index.js",
|
|
"./skeleton": "./dist/skeleton/index.js",
|
|
"./switch": "./dist/switch/index.js",
|
|
"./tab-navigation": "./dist/tab-navigation/index.js",
|
|
"./table": "./dist/table/index.js",
|
|
"./tabs": "./dist/tabs/index.js",
|
|
"./toast": "./dist/toast/index.js",
|
|
"./toolbar": "./dist/toolbar/index.js",
|
|
"./tooltip": "./dist/tooltip/index.js",
|
|
"./utils": "./dist/utils/index.js",
|
|
"./package.json": "./package.json",
|
|
"./styles/fonts.css": "./dist/styles/fonts/index.css",
|
|
"./styles/fonts": "./dist/styles/fonts/index.css",
|
|
"./styles/react-day-picker.css": "./dist/styles/react-day-picker.css",
|
|
"./styles/react-day-picker": "./dist/styles/react-day-picker.css"
|
|
},
|
|
"dependencies": {
|
|
"@base-ui-components/react": "1.0.0-beta.3",
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/hooks": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.1.1",
|
|
"framer-motion": "^12.23.0",
|
|
"frimousse": "^0.3.0",
|
|
"lucide-react": "catalog:",
|
|
"react": "catalog:",
|
|
"react-day-picker": "9.5.0",
|
|
"react-dom": "catalog:",
|
|
"recharts": "^2.15.1",
|
|
"tailwind-merge": "^3.3.1",
|
|
"use-font-face-observer": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/tailwind-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@storybook/addon-designs": "10.0.2",
|
|
"@storybook/addon-docs": "9.1.10",
|
|
"@storybook/react-vite": "9.1.10",
|
|
"@types/react": "catalog:",
|
|
"@types/react-dom": "catalog:",
|
|
"storybook": "9.1.10",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|