Files
lifeforge/client/package.json
melvinchia3636 d5516d23c5 refactor(ui): replace custom-500 with primary semantic color token, enhance TagChip/Text/Ring components
Key changes:
- Replace all color="custom-500", borderColor="custom-500", ringColor="custom-500" with "primary" token across 20+ components/stories
- Export BorderedOwnProps interface from Bordered
- TagChip: add generic <ElementType> support, switch to anyColorToHex from shared, fix style merging
- Text: add layout props (overflow, position) and sprinkles
- Ring: add _ring className to scope focus-outline removal
- ViewModeSelector: fix darkHover color, add height="4em"
- Prose: remove hardcoded max-width: 65ch
- InputFocusContext: simplify with direct InputFocusContext (no .Provider)
- global.css: limit outline removal to non-._ring elements
2026-06-25 08:53:34 +08:00

77 lines
2.2 KiB
JSON

{
"name": "@lifeforge/client",
"version": "0.0.0",
"private": true,
"description": "The client-side user interface for LifeForge.",
"license": "MIT",
"author": "LifeForge (https://github.com/LifeForge-app)",
"repository": {
"type": "git",
"url": "https://github.com/LifeForge-app/lifeforge.git",
"directory": "client"
},
"type": "module",
"scripts": {
"dev": "vite",
"types": "tsc -b",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@iconify/react": "^6.0.2",
"@lifeforge/shared": "workspace:*",
"@lifeforge/ui": "workspace:*",
"@tanstack/react-query": "^5.90.11",
"@types/node": "^24.7.2",
"@types/react-virtualized": "^9.22.3",
"@uidotdev/usehooks": "^2.4.1",
"babel-plugin-react-compiler": "^19.1.0-rc.2",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"crypto-js": "^4.2.0",
"daisyui": "^5.0.35",
"dayjs": "^1.11.13",
"dnd-core": "^16.0.1",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"i18next": "^25.6.0",
"i18next-http-backend": "^2.7.3",
"lodash": "^4.17.21",
"lodash-es": "^4.17.22",
"opentype.js": "^1.3.4",
"postcss": "^8.5.3",
"pretty-bytes": "^7.1.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^19.2.0",
"react-dropzone": "^14.3.8",
"react-error-boundary": "^6.0.0",
"react-grid-layout": "^1.5.2",
"react-i18next": "^15.5.1",
"react-router": "^7.9.4",
"react-toastify": "^11.0.5",
"react-virtualized": "^9.22.6",
"recharts": "^2.15.0",
"socket.io-client": "^4.8.1",
"tinycolor2": "^1.6.0",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"zod": "4.3.5"
},
"devDependencies": {
"@originjs/vite-plugin-federation": "^1.4.1",
"@types/lodash": "^4.17.20",
"@types/opentype.js": "^1.3.8",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/react-grid-layout": "^1.3.5",
"@types/tinycolor2": "^1.4.6",
"@vitejs/plugin-react": "^4.4.1",
"glob": "^13.0.0",
"vite": "^7.0.5"
}
}