mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 03:19:40 +02:00
- Add createAppSettingsStore<T>() factory to @manacore/shared-stores - Migrate todo, contacts, calendar settings stores to use factory - Factory provides: localStorage persistence, type-safe set/update/reset - Optional onSettingsChange callback for cloud sync (used by calendar) - Reduces boilerplate by ~323 LOC across 3 apps Savings: - todo: 259 → 159 LOC (100 LOC) - contacts: 278 → 173 LOC (105 LOC) - calendar: 433 → 315 LOC (118 LOC)
61 lines
2 KiB
JSON
61 lines
2 KiB
JSON
{
|
|
"name": "@contacts/web",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"lint": "eslint .",
|
|
"format": "prettier --write ."
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-node": "^5.0.0",
|
|
"@sveltejs/kit": "^2.47.1",
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
"@tailwindcss/vite": "^4.1.7",
|
|
"@types/d3-force": "^3.0.10",
|
|
"@types/d3-selection": "^3.0.11",
|
|
"@types/d3-zoom": "^3.0.8",
|
|
"@types/node": "^20.0.0",
|
|
"prettier": "^3.1.1",
|
|
"prettier-plugin-svelte": "^3.1.2",
|
|
"svelte": "^5.41.0",
|
|
"svelte-check": "^4.3.3",
|
|
"tailwindcss": "^4.1.7",
|
|
"tslib": "^2.4.1",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@manacore/shared-api-client": "workspace:*",
|
|
"@manacore/shared-auth": "workspace:*",
|
|
"@manacore/shared-auth-ui": "workspace:*",
|
|
"@manacore/shared-branding": "workspace:*",
|
|
"@manacore/shared-feedback-service": "workspace:*",
|
|
"@manacore/shared-feedback-ui": "workspace:*",
|
|
"@manacore/shared-help-content": "workspace:*",
|
|
"@manacore/shared-help-types": "workspace:*",
|
|
"@manacore/shared-help-ui": "workspace:*",
|
|
"@manacore/shared-i18n": "workspace:*",
|
|
"@manacore/shared-icons": "workspace:*",
|
|
"@manacore/shared-profile-ui": "workspace:*",
|
|
"@manacore/shared-splitscreen": "workspace:*",
|
|
"@manacore/shared-stores": "workspace:*",
|
|
"@manacore/shared-subscription-ui": "workspace:*",
|
|
"@manacore/shared-tags": "workspace:*",
|
|
"@manacore/shared-tailwind": "workspace:*",
|
|
"@manacore/shared-theme": "workspace:*",
|
|
"@manacore/shared-theme-ui": "workspace:*",
|
|
"@manacore/shared-ui": "workspace:*",
|
|
"@manacore/shared-utils": "workspace:*",
|
|
"d3-force": "^3.0.0",
|
|
"d3-selection": "^3.0.0",
|
|
"d3-zoom": "^3.0.0",
|
|
"date-fns": "^4.1.0",
|
|
"svelte-i18n": "^4.0.1"
|
|
},
|
|
"type": "module"
|
|
}
|