mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:01:09 +02:00
- Add reusable chart components in shared-ui (StatsGrid, ActivityHeatmap, TrendLineChart, DonutChart, ProgressBars, StatisticsSkeleton) - Use CSS variables (--primary) for consistent theme-based styling - Add statistics pages to Calendar and Contacts apps - Add statistics stores with app-specific metrics - Fix PriorityDonutChart layout in Todo app (vertical layout with 2x2 legend grid) - Add date-fns dependency to shared-ui 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@manacore/shared-ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"svelte": "./src/index.ts",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"svelte": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./atoms": {
|
|
"svelte": "./src/atoms/index.ts",
|
|
"types": "./src/atoms/index.ts",
|
|
"default": "./src/atoms/index.ts"
|
|
},
|
|
"./molecules": {
|
|
"svelte": "./src/molecules/index.ts",
|
|
"types": "./src/molecules/index.ts",
|
|
"default": "./src/molecules/index.ts"
|
|
},
|
|
"./organisms": {
|
|
"svelte": "./src/organisms/index.ts",
|
|
"types": "./src/organisms/index.ts",
|
|
"default": "./src/organisms/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint ."
|
|
},
|
|
"peerDependencies": {
|
|
"svelte": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@manacore/shared-branding": "workspace:*",
|
|
"@manacore/shared-icons": "workspace:*",
|
|
"@manacore/shared-theme": "workspace:*",
|
|
"d3-force": "^3.0.0",
|
|
"d3-selection": "^3.0.0",
|
|
"d3-transition": "^3.0.0",
|
|
"d3-zoom": "^3.0.0",
|
|
"date-fns": "^4.1.0",
|
|
"lucide-svelte": "^0.468.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/d3-force": "^3.0.10",
|
|
"@types/d3-selection": "^3.0.11",
|
|
"@types/d3-transition": "^3.0.9",
|
|
"@types/d3-zoom": "^3.0.8"
|
|
}
|
|
}
|