buster/packages/ui-components/package.json

70 lines
2.1 KiB
JSON
Raw Normal View History

2025-07-23 12:42:16 +08:00
{
"name": "@buster/ui-components",
"version": "1.0.0",
"type": "module",
2025-07-24 01:20:35 +08:00
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
2025-07-23 12:42:16 +08:00
"exports": {
2025-07-24 01:20:35 +08:00
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./styles": "./src/styles/styles.css",
"./dist/style.css": "./dist/style.css"
2025-07-23 12:42:16 +08:00
},
2025-07-24 02:02:54 +08:00
"files": ["dist", "src/styles/styles.css"],
2025-07-23 12:42:16 +08:00
"scripts": {
"prebuild": "tsx scripts/validate-env.ts",
2025-07-24 01:20:35 +08:00
"build": "vite build && tsc --emitDeclarationOnly --declaration",
2025-07-23 12:42:16 +08:00
"typecheck": "tsc --noEmit",
2025-07-24 01:20:35 +08:00
"dev": "vite build --watch",
2025-07-24 02:02:54 +08:00
"lint": "biome check --write",
2025-07-23 12:42:16 +08:00
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@buster/env-utils": "workspace:*",
"@buster/server-shared": "workspace:*",
"@buster/typescript-config": "workspace:*",
"@buster/vitest-config": "workspace:*",
2025-07-23 23:56:01 +08:00
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@faker-js/faker": "^9.9.0",
2025-07-24 00:34:25 +08:00
"@radix-ui/react-popover": "^1.1.14",
"@tailwindcss/postcss": "4.1.11",
"@tailwindcss/vite": "^4.1.11",
2025-07-23 23:56:01 +08:00
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.12",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^4.7.0",
2025-07-23 12:42:16 +08:00
"chart.js": "4.5.0",
"chartjs-adapter-dayjs-4": "^1.0.4",
"chartjs-plugin-annotation": "^3.1.0",
"chartjs-plugin-datalabels": "^2.2.0",
"chartjs-plugin-deferred": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
2025-07-24 01:10:03 +08:00
"font-color-contrast": "^11.1.0",
2025-07-23 12:42:16 +08:00
"framer-motion": "^12.23.6",
"lodash": "^4.17.21",
2025-07-23 23:56:01 +08:00
"mutative": "^1.2.0",
2025-07-23 12:42:16 +08:00
"react": "^18.0.0",
2025-07-24 00:07:26 +08:00
"react-dom": "^18.0.0",
2025-07-23 12:42:16 +08:00
"tailwind-merge": "^3.3.1",
"tailwindcss": "4.1.11",
2025-07-24 01:10:03 +08:00
"utility-types": "^3.11.0",
2025-07-24 00:34:25 +08:00
"vite": "catalog:"
2025-07-23 12:42:16 +08:00
},
"devDependencies": {
2025-07-23 23:56:01 +08:00
"@storybook/react": "^8.6.14",
"@storybook/test": "^8.6.14",
2025-07-24 00:34:25 +08:00
"@testing-library/jest-dom": "^6.6.3",
2025-07-23 12:42:16 +08:00
"@types/lodash": "^4.17.20",
2025-07-24 00:07:26 +08:00
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7"
2025-07-23 12:42:16 +08:00
}
}