@almadar/orb 6.3.0 → 6.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/package.json +6 -6
  2. package/shells/almadar-shell/LICENSE +72 -0
  3. package/shells/almadar-shell/README.md +25 -0
  4. package/shells/almadar-shell/locales/en.json +120 -0
  5. package/shells/almadar-shell/package.json +35 -0
  6. package/shells/almadar-shell/packages/client/eslint.config.cjs +23 -0
  7. package/shells/almadar-shell/packages/client/index.html +13 -0
  8. package/shells/almadar-shell/packages/client/package.json +61 -0
  9. package/shells/almadar-shell/packages/client/postcss.config.js +6 -0
  10. package/shells/almadar-shell/packages/client/src/App.tsx +84 -0
  11. package/shells/almadar-shell/packages/client/src/config/firebase.ts +37 -0
  12. package/shells/almadar-shell/packages/client/src/features/auth/AuthContext.tsx +139 -0
  13. package/shells/almadar-shell/packages/client/src/features/auth/authService.ts +83 -0
  14. package/shells/almadar-shell/packages/client/src/features/auth/components/Login.tsx +218 -0
  15. package/shells/almadar-shell/packages/client/src/features/auth/components/ProtectedRoute.tsx +27 -0
  16. package/shells/almadar-shell/packages/client/src/features/auth/components/UserProfile.tsx +68 -0
  17. package/shells/almadar-shell/packages/client/src/features/auth/components/index.ts +3 -0
  18. package/shells/almadar-shell/packages/client/src/features/auth/index.ts +13 -0
  19. package/shells/almadar-shell/packages/client/src/features/auth/types.ts +24 -0
  20. package/shells/almadar-shell/packages/client/src/index.css +35 -0
  21. package/shells/almadar-shell/packages/client/src/main.tsx +8 -0
  22. package/shells/almadar-shell/packages/client/src/navigation/index.ts +55 -0
  23. package/shells/almadar-shell/packages/client/src/pages/index.ts +12 -0
  24. package/shells/almadar-shell/packages/client/tailwind-preset.cjs +259 -0
  25. package/shells/almadar-shell/packages/client/tailwind.config.js +21 -0
  26. package/shells/almadar-shell/packages/client/tsconfig.json +33 -0
  27. package/shells/almadar-shell/packages/client/vite.config.ts +50 -0
  28. package/shells/almadar-shell/packages/server/eslint.config.cjs +19 -0
  29. package/shells/almadar-shell/packages/server/package.json +38 -0
  30. package/shells/almadar-shell/packages/server/src/app.ts +36 -0
  31. package/shells/almadar-shell/packages/server/src/index.ts +30 -0
  32. package/shells/almadar-shell/packages/server/src/routes.ts +11 -0
  33. package/shells/almadar-shell/packages/server/src/types/express.d.ts +15 -0
  34. package/shells/almadar-shell/packages/server/tsconfig.json +23 -0
  35. package/shells/almadar-shell/packages/shared/package.json +10 -0
  36. package/shells/almadar-shell/packages/shared/pnpm-lock.yaml +22 -0
  37. package/shells/almadar-shell/packages/shared/src/index.ts +2 -0
  38. package/shells/almadar-shell/pnpm-lock.yaml +8792 -0
  39. package/shells/almadar-shell/pnpm-workspace.yaml +2 -0
  40. package/shells/almadar-shell/tsup.config.ts +13 -0
  41. package/shells/almadar-shell/turbo.json +17 -0
  42. package/shells/almadar-shell/vitest.config.ts +8 -0
  43. package/shells/almadar-shell-hono/LICENSE +72 -0
  44. package/shells/almadar-shell-hono/README.md +25 -0
  45. package/shells/almadar-shell-hono/locales/en.json +120 -0
  46. package/shells/almadar-shell-hono/package.json +31 -0
  47. package/shells/almadar-shell-hono/packages/client/eslint.config.cjs +23 -0
  48. package/shells/almadar-shell-hono/packages/client/index.html +13 -0
  49. package/shells/almadar-shell-hono/packages/client/package-lock.json +9750 -0
  50. package/shells/almadar-shell-hono/packages/client/package.json +61 -0
  51. package/shells/almadar-shell-hono/packages/client/postcss.config.js +6 -0
  52. package/shells/almadar-shell-hono/packages/client/src/App.tsx +84 -0
  53. package/shells/almadar-shell-hono/packages/client/src/config/firebase.ts +37 -0
  54. package/shells/almadar-shell-hono/packages/client/src/features/auth/AuthContext.tsx +139 -0
  55. package/shells/almadar-shell-hono/packages/client/src/features/auth/authService.ts +83 -0
  56. package/shells/almadar-shell-hono/packages/client/src/features/auth/components/Login.tsx +218 -0
  57. package/shells/almadar-shell-hono/packages/client/src/features/auth/components/ProtectedRoute.tsx +27 -0
  58. package/shells/almadar-shell-hono/packages/client/src/features/auth/components/UserProfile.tsx +68 -0
  59. package/shells/almadar-shell-hono/packages/client/src/features/auth/components/index.ts +3 -0
  60. package/shells/almadar-shell-hono/packages/client/src/features/auth/index.ts +13 -0
  61. package/shells/almadar-shell-hono/packages/client/src/features/auth/types.ts +24 -0
  62. package/shells/almadar-shell-hono/packages/client/src/index.css +35 -0
  63. package/shells/almadar-shell-hono/packages/client/src/main.tsx +8 -0
  64. package/shells/almadar-shell-hono/packages/client/src/navigation/index.ts +55 -0
  65. package/shells/almadar-shell-hono/packages/client/src/pages/index.ts +12 -0
  66. package/shells/almadar-shell-hono/packages/client/tailwind-preset.cjs +259 -0
  67. package/shells/almadar-shell-hono/packages/client/tailwind.config.js +21 -0
  68. package/shells/almadar-shell-hono/packages/client/tsconfig.json +33 -0
  69. package/shells/almadar-shell-hono/packages/client/vite.config.ts +50 -0
  70. package/shells/almadar-shell-hono/packages/server/eslint.config.cjs +19 -0
  71. package/shells/almadar-shell-hono/packages/server/package.json +37 -0
  72. package/shells/almadar-shell-hono/packages/server/pnpm-lock.yaml +4665 -0
  73. package/shells/almadar-shell-hono/packages/server/src/app.ts +31 -0
  74. package/shells/almadar-shell-hono/packages/server/src/index.ts +31 -0
  75. package/shells/almadar-shell-hono/packages/server/src/routes.ts +12 -0
  76. package/shells/almadar-shell-hono/packages/server/src/serve.ts +45 -0
  77. package/shells/almadar-shell-hono/packages/server/tsconfig.json +23 -0
  78. package/shells/almadar-shell-hono/packages/shared/package.json +25 -0
  79. package/shells/almadar-shell-hono/packages/shared/pnpm-lock.yaml +919 -0
  80. package/shells/almadar-shell-hono/packages/shared/src/index.ts +2 -0
  81. package/shells/almadar-shell-hono/packages/shared/tsconfig.json +17 -0
  82. package/shells/almadar-shell-hono/packages/shared/tsup.config.ts +10 -0
  83. package/shells/almadar-shell-hono/pnpm-lock.yaml +9423 -0
  84. package/shells/almadar-shell-hono/pnpm-workspace.yaml +2 -0
  85. package/shells/almadar-shell-hono/tsup.config.ts +13 -0
  86. package/shells/almadar-shell-hono/turbo.json +17 -0
  87. package/shells/almadar-shell-hono/vitest.config.ts +8 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.