mirror of
https://github.com/cosscom/coss.git
synced 2026-09-14 20:06:50 +08:00
e937becd2d
* feat: migrate TanStack Table to v9 * perf: optimize TanStack Table state updates * fix: restore team members table selection updates Subscribe only re-renders when its child is a function, so static JSX left checkboxes stale until a sort. Match the members table: subscribe with a render function and toggle rows on click. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
60 lines
2.2 KiB
JSON
60 lines
2.2 KiB
JSON
{
|
|
"dependencies": {
|
|
"@base-ui/react": "1.8.0",
|
|
"@coss/ui": "workspace:*",
|
|
"@daypicker/react": "10.0.1",
|
|
"@hugeicons/core-free-icons": "^2.0.0",
|
|
"@hugeicons/react": "^1.1.1",
|
|
"@remixicon/react": "^4.7.0",
|
|
"@tanstack/react-table": "^9.2.4",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"fumadocs-core": "^16.0.14",
|
|
"fumadocs-mdx": "^14.0.3",
|
|
"jotai": "^2.15.1",
|
|
"lucide-react": "^0.555.0",
|
|
"next": "16.2.5",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"shadcn": "^4.1.0",
|
|
"tailwind-merge": "^3.4.0",
|
|
"ts-morph": "^27.0.2",
|
|
"zod": "^4.1.12"
|
|
},
|
|
"devDependencies": {
|
|
"@coss/typescript-config": "workspace:*",
|
|
"@shikijs/transformers": "^3.15.0",
|
|
"@tailwindcss/postcss": "^4.1.17",
|
|
"@types/mdx": "^2.0.13",
|
|
"@types/node": "^24.10.1",
|
|
"@types/react": "^19.2.6",
|
|
"@types/react-dom": "^19.2.3",
|
|
"rehype-pretty-code": "^0.14.1",
|
|
"rimraf": "^6.1.0",
|
|
"shiki": "^3.15.0",
|
|
"tailwindcss": "^4.1.17",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"license": "MIT",
|
|
"name": "ui",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"clean": "rm -rf node_modules && rm -rf .turbo && rm -rf .next && rm -rf .source",
|
|
"dev": "next dev --port 4000",
|
|
"format": "biome format --write .",
|
|
"format:all": "biome check --write --unsafe --no-errors-on-unmatched",
|
|
"lint": "biome lint .",
|
|
"postinstall": "fumadocs-mdx",
|
|
"registry:build": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/build-registry.mts",
|
|
"registry:validate-deps": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/validate-registry-deps.mts",
|
|
"start": "next start --port 4000",
|
|
"typecheck": "tsc --noEmit",
|
|
"ui:sync": "tsx --tsconfig ./tsconfig.scripts.json ./scripts/sync-ui.mts && bun run ui:sync:imports",
|
|
"ui:sync:imports": "cd ../.. && bunx biome check --write --assist-enabled=true --linter-enabled=false --formatter-enabled=false --indent-style=space --indent-width=2 --config-path .biome-packages-sync/packages-sync.json packages/ui/src/hooks packages/ui/src/lib packages/ui/src/components > /dev/null 2>&1 || true"
|
|
},
|
|
"version": "0.1.0"
|
|
}
|