mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
- Fixed Storybook dependency version mismatch (downgraded to 8.6.15) - Added @types/better-sqlite3 for better-sqlite3 type definitions - Fixed Prisma adapter import (PrismaBetterSqlite3 vs PrismaBetterSQLite3) - Removed datasource URL from Prisma schema (Prisma 7 requirement) - Generated DBAL types.generated.ts from Prisma schema - Added index signatures to Update*Input types for Record<string, unknown> compatibility - Fixed ErrorBoundary override modifiers - Fixed Zod record schema (requires both key and value types) - Fixed orderBy syntax in get-error-logs (array format) - Fixed type safety in API routes (user type assertions) - Fixed hook imports and exports - Fixed conditional expression type guards - Added .npmrc for legacy peer deps support Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
34 lines
916 B
JSON
34 lines
916 B
JSON
{
|
|
"name": "@metabuilder/storybook",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Storybook for rendering MetaBuilder JSON packages and UI components",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "storybook dev -p 6006",
|
|
"build": "storybook build",
|
|
"preview": "npx serve storybook-static"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"fengari-web": "^0.1.4",
|
|
"fengari-interop": "^0.1.4",
|
|
"clsx": "^2.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/addon-essentials": "^8.6.15",
|
|
"@storybook/addon-interactions": "^8.6.15",
|
|
"@storybook/react": "^8.6.15",
|
|
"@storybook/react-vite": "^8.6.15",
|
|
"@storybook/test": "^8.6.15",
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@vitejs/plugin-react": "^5.1.2",
|
|
"sass": "^1.97.1",
|
|
"storybook": "^8.6.15",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.3.0"
|
|
}
|
|
}
|