mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:01:09 +02:00
Generic factory that eliminates ~110 LOC boilerplate per module for view mode, sort, filters, and saved filter presets with localStorage persistence. Includes 23 tests covering all store operations. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
668 B
JSON
28 lines
668 B
JSON
{
|
|
"name": "@manacore/shared-stores",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"type-check": "echo 'Skipping: shared-stores uses Svelte 5 runes, type-checked at build time'",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
"jsdom": "^29.0.1",
|
|
"svelte": "^5.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^4.1.2"
|
|
},
|
|
"dependencies": {
|
|
"@manacore/local-store": "workspace:*",
|
|
"@manacore/shared-auth": "workspace:*",
|
|
"@manacore/shared-tags": "workspace:*"
|
|
}
|
|
}
|