Files
metabuilder/hooks/package.json
johndoe6345789 5aabff44cd refactor(fakemui): flatten QML components directory structure and update documentation
Directory Restructuring:
- qml/qml-components/qml-components/* → qml/components/ (flattens nesting)
- All 104 QML files moved with git history preserved
- Eliminates redundant qml-components nesting

Documentation Updates:
- ARCHITECTURE.md: Updated qml/components references (2 locations)
- GETTING_STARTED.md: Updated qml/components path (1 location, end of file)
- README.md: Updated qml/components references (3 locations)
- CODE_REVIEW.md: Updated qml/components file paths (4 locations)
- docs/ARCHITECTURE.md: Complete refactor with qml/components paths

Verification:
-  No remaining qml-components/ references in documentation
-  All 104 QML files present in flattened structure
-  Directory structure verified (12 component categories)
-  First-class directory naming convention

Structure Post-Refactor:
qml/
├── components/
│   ├── atoms/ (16 files)
│   ├── core/ (11 files)
│   ├── data-display/ (10 files)
│   ├── feedback/ (11 files)
│   ├── form/ (19 files)
│   ├── lab/ (11 files)
│   ├── layout/ (12 files)
│   ├── navigation/ (12 files)
│   ├── surfaces/ (7 files)
│   ├── theming/ (4 files)
│   └── utils/ (13 files)
├── hybrid/
└── widgets/

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-23 19:54:21 +00:00

67 lines
1.9 KiB
JSON

{
"name": "@metabuilder/hooks",
"version": "1.0.0",
"description": "Centralized collection of React hooks used across MetaBuilder",
"main": "index.ts",
"types": "index.d.ts",
"scripts": {
"build": "tsc --declaration --emitDeclarationOnly",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"keywords": [
"react",
"hooks",
"authentication",
"dashboard",
"storage",
"ui"
],
"author": "MetaBuilder",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-redux": "^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@types/react": "^18.2.0 || ^19.0.0",
"typescript": "^5.0.0"
},
"files": [
"*.ts",
"*.tsx",
"index.d.ts",
"README.md"
],
"exports": {
".": {
"import": "./index.ts",
"types": "./index.d.ts"
},
"./useLoginLogic": "./useLoginLogic.ts",
"./useRegisterLogic": "./useRegisterLogic.ts",
"./usePasswordValidation": "./usePasswordValidation.ts",
"./useAuthForm": "./useAuthForm.ts",
"./useDashboardLogic": "./useDashboardLogic.ts",
"./useResponsiveSidebar": "./useResponsiveSidebar.ts",
"./useHeaderLogic": "./useHeaderLogic.ts",
"./useProjectSidebarLogic": "./useProjectSidebarLogic.ts",
"./useStorageDataHandlers": "./useStorageDataHandlers.ts",
"./useStorageSettingsHandlers": "./useStorageSettingsHandlers.ts",
"./useStorageSwitchHandlers": "./useStorageSwitchHandlers.ts",
"./useFaviconDesigner": "./useFaviconDesigner.ts",
"./useDragResize": "./useDragResize.ts",
"./useGithubBuildStatus": "./use-github-build-status.ts",
"./useKeyboardShortcuts": "./useKeyboardShortcuts.ts",
"./useClickOutside": "./useClickOutside.ts",
"./useHotkeys": "./useHotkeys.ts",
"./useEventListener": "./useEventListener.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/metabuilder/metabuilder.git",
"directory": "hooks"
}
}