mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
**workflowui**: - Add NotificationAdapter that bridges useUINotifications() to shared NotificationContainer - Update RootLayoutClient to use NotificationAdapter - Mark local NotificationContainer as deprecated **pastebin**: - Update BackendIndicator to use shared BackendStatus component - Keep as thin wrapper that maps getStorageConfig() to status prop - Update tests for new implementation **codegen**: - Update KeyboardShortcutsDialog to use shared KeyboardShortcutsContent - Move hardcoded shortcuts to data array using ShortcutCategory type - Use getPlatformModifier() for cross-platform modifier keys - Keep local Dialog wrapper, use shared content component **components**: - Add tsup.config.ts for building the package - Add package-lock.json All subprojects now depend on @metabuilder/components (file:../components) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
71 lines
2.2 KiB
JSON
71 lines
2.2 KiB
JSON
{
|
|
"name": "codesnippet",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint . --config eslint.config.mjs",
|
|
"lint:fix": "eslint . --config eslint.config.mjs --fix",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:debug": "playwright test --debug",
|
|
"test:unit": "jest --coverage",
|
|
"quality-check": "node run-quality-check.mjs",
|
|
"quality-check:json": "node run-quality-check.mjs --format json --output .quality/report.json",
|
|
"quality-check:html": "node run-quality-check.mjs --format html --output .quality/report.html",
|
|
"quality-check:verbose": "node run-quality-check.mjs --verbose"
|
|
},
|
|
"dependencies": {
|
|
"@babel/standalone": "^7.24.0",
|
|
"@metabuilder/components": "file:../components",
|
|
"@monaco-editor/react": "^4.6.0",
|
|
"@phosphor-icons/react": "^2.1.7",
|
|
"@reduxjs/toolkit": "^2.5.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"embla-carousel-react": "^8.6.0",
|
|
"framer-motion": "^12.29.0",
|
|
"idb": "^8.0.2",
|
|
"lucide-react": "^0.500.0",
|
|
"monaco-editor": "^0.52.2",
|
|
"next": "^16.1.4",
|
|
"pyodide": "^0.23.0",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3",
|
|
"react-error-boundary": "^4.0.11",
|
|
"react-hook-form": "^7.71.1",
|
|
"react-redux": "^9.2.0",
|
|
"react-resizable-panels": "^4.4.1",
|
|
"recharts": "^2.15.0",
|
|
"sonner": "^1.7.1",
|
|
"sucrase": "^3.35.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.49.1",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.3.1",
|
|
"@testing-library/user-event": "^14.5.1",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19",
|
|
"autoprefixer": "^10.4.17",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "^16.1.4",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"postcss": "^8.4.35",
|
|
"sass": "^1.83.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5",
|
|
"typescript-eslint": "^8.53.1"
|
|
},
|
|
"overrides": {
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3"
|
|
}
|
|
}
|