@almadar/orb 0.2.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.
- package/README.md +83 -0
- package/bin/orb +101 -0
- package/package.json +58 -0
- package/scripts/postinstall.js +51 -0
- package/shells/almadar-shell/LICENSE +72 -0
- package/shells/almadar-shell/README.md +25 -0
- package/shells/almadar-shell/locales/en.json +120 -0
- package/shells/almadar-shell/package.json +35 -0
- package/shells/almadar-shell/packages/client/eslint.config.cjs +23 -0
- package/shells/almadar-shell/packages/client/index.html +13 -0
- package/shells/almadar-shell/packages/client/package.json +61 -0
- package/shells/almadar-shell/packages/client/postcss.config.js +6 -0
- package/shells/almadar-shell/packages/client/src/App.tsx +81 -0
- package/shells/almadar-shell/packages/client/src/config/firebase.ts +37 -0
- package/shells/almadar-shell/packages/client/src/features/auth/AuthContext.tsx +139 -0
- package/shells/almadar-shell/packages/client/src/features/auth/authService.ts +83 -0
- package/shells/almadar-shell/packages/client/src/features/auth/components/Login.tsx +218 -0
- package/shells/almadar-shell/packages/client/src/features/auth/components/ProtectedRoute.tsx +27 -0
- package/shells/almadar-shell/packages/client/src/features/auth/components/UserProfile.tsx +68 -0
- package/shells/almadar-shell/packages/client/src/features/auth/components/index.ts +3 -0
- package/shells/almadar-shell/packages/client/src/features/auth/index.ts +13 -0
- package/shells/almadar-shell/packages/client/src/features/auth/types.ts +24 -0
- package/shells/almadar-shell/packages/client/src/index.css +42 -0
- package/shells/almadar-shell/packages/client/src/main.tsx +8 -0
- package/shells/almadar-shell/packages/client/src/navigation/index.ts +55 -0
- package/shells/almadar-shell/packages/client/src/pages/index.ts +12 -0
- package/shells/almadar-shell/packages/client/tailwind-preset.cjs +259 -0
- package/shells/almadar-shell/packages/client/tailwind.config.js +21 -0
- package/shells/almadar-shell/packages/client/tsconfig.json +33 -0
- package/shells/almadar-shell/packages/client/vite.config.ts +50 -0
- package/shells/almadar-shell/packages/server/eslint.config.cjs +19 -0
- package/shells/almadar-shell/packages/server/package.json +39 -0
- package/shells/almadar-shell/packages/server/src/app.ts +36 -0
- package/shells/almadar-shell/packages/server/src/index.ts +30 -0
- package/shells/almadar-shell/packages/server/src/routes.ts +11 -0
- package/shells/almadar-shell/packages/server/src/types/express.d.ts +15 -0
- package/shells/almadar-shell/packages/server/tsconfig.json +23 -0
- package/shells/almadar-shell/packages/shared/package.json +11 -0
- package/shells/almadar-shell/packages/shared/pnpm-lock.yaml +22 -0
- package/shells/almadar-shell/packages/shared/src/index.ts +2 -0
- package/shells/almadar-shell/pnpm-lock.yaml +8791 -0
- package/shells/almadar-shell/pnpm-workspace.yaml +2 -0
- package/shells/almadar-shell/tsup.config.ts +13 -0
- package/shells/almadar-shell/turbo.json +17 -0
- package/shells/almadar-shell/vitest.config.ts +8 -0
- package/shells/almadar-shell-hono/LICENSE +72 -0
- package/shells/almadar-shell-hono/README.md +25 -0
- package/shells/almadar-shell-hono/locales/en.json +120 -0
- package/shells/almadar-shell-hono/package.json +31 -0
- package/shells/almadar-shell-hono/packages/client/eslint.config.cjs +23 -0
- package/shells/almadar-shell-hono/packages/client/index.html +13 -0
- package/shells/almadar-shell-hono/packages/client/package-lock.json +9750 -0
- package/shells/almadar-shell-hono/packages/client/package.json +61 -0
- package/shells/almadar-shell-hono/packages/client/postcss.config.js +6 -0
- package/shells/almadar-shell-hono/packages/client/src/App.tsx +84 -0
- package/shells/almadar-shell-hono/packages/client/src/config/firebase.ts +37 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/AuthContext.tsx +139 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/authService.ts +83 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/components/Login.tsx +218 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/components/ProtectedRoute.tsx +27 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/components/UserProfile.tsx +68 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/components/index.ts +3 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/index.ts +13 -0
- package/shells/almadar-shell-hono/packages/client/src/features/auth/types.ts +24 -0
- package/shells/almadar-shell-hono/packages/client/src/index.css +35 -0
- package/shells/almadar-shell-hono/packages/client/src/main.tsx +8 -0
- package/shells/almadar-shell-hono/packages/client/src/navigation/index.ts +55 -0
- package/shells/almadar-shell-hono/packages/client/src/pages/index.ts +12 -0
- package/shells/almadar-shell-hono/packages/client/tailwind-preset.cjs +259 -0
- package/shells/almadar-shell-hono/packages/client/tailwind.config.js +21 -0
- package/shells/almadar-shell-hono/packages/client/tsconfig.json +33 -0
- package/shells/almadar-shell-hono/packages/client/vite.config.ts +50 -0
- package/shells/almadar-shell-hono/packages/server/eslint.config.cjs +19 -0
- package/shells/almadar-shell-hono/packages/server/package.json +38 -0
- package/shells/almadar-shell-hono/packages/server/pnpm-lock.yaml +4665 -0
- package/shells/almadar-shell-hono/packages/server/src/app.ts +31 -0
- package/shells/almadar-shell-hono/packages/server/src/index.ts +31 -0
- package/shells/almadar-shell-hono/packages/server/src/routes.ts +12 -0
- package/shells/almadar-shell-hono/packages/server/src/serve.ts +45 -0
- package/shells/almadar-shell-hono/packages/server/tsconfig.json +23 -0
- package/shells/almadar-shell-hono/packages/shared/package.json +25 -0
- package/shells/almadar-shell-hono/packages/shared/pnpm-lock.yaml +919 -0
- package/shells/almadar-shell-hono/packages/shared/src/index.ts +2 -0
- package/shells/almadar-shell-hono/packages/shared/tsconfig.json +17 -0
- package/shells/almadar-shell-hono/packages/shared/tsup.config.ts +10 -0
- package/shells/almadar-shell-hono/pnpm-lock.yaml +9441 -0
- package/shells/almadar-shell-hono/pnpm-workspace.yaml +2 -0
- package/shells/almadar-shell-hono/tsup.config.ts +13 -0
- package/shells/almadar-shell-hono/turbo.json +17 -0
- package/shells/almadar-shell-hono/vitest.config.ts +8 -0
- package/shells/orb-shell/LICENSE +21 -0
- package/shells/orb-shell/README.md +25 -0
- package/shells/orb-shell/locales/en.json +120 -0
- package/shells/orb-shell/package.json +35 -0
- package/shells/orb-shell/packages/client/eslint.config.cjs +23 -0
- package/shells/orb-shell/packages/client/index.html +13 -0
- package/shells/orb-shell/packages/client/package-lock.json +11390 -0
- package/shells/orb-shell/packages/client/package.json +55 -0
- package/shells/orb-shell/packages/client/postcss.config.js +6 -0
- package/shells/orb-shell/packages/client/src/App.tsx +79 -0
- package/shells/orb-shell/packages/client/src/config/firebase.ts +37 -0
- package/shells/orb-shell/packages/client/src/features/auth/AuthContext.tsx +139 -0
- package/shells/orb-shell/packages/client/src/features/auth/authService.ts +83 -0
- package/shells/orb-shell/packages/client/src/features/auth/components/Login.tsx +218 -0
- package/shells/orb-shell/packages/client/src/features/auth/components/ProtectedRoute.tsx +27 -0
- package/shells/orb-shell/packages/client/src/features/auth/components/UserProfile.tsx +68 -0
- package/shells/orb-shell/packages/client/src/features/auth/components/index.ts +3 -0
- package/shells/orb-shell/packages/client/src/features/auth/index.ts +13 -0
- package/shells/orb-shell/packages/client/src/features/auth/types.ts +24 -0
- package/shells/orb-shell/packages/client/src/index.css +35 -0
- package/shells/orb-shell/packages/client/src/main.tsx +10 -0
- package/shells/orb-shell/packages/client/src/navigation/index.ts +55 -0
- package/shells/orb-shell/packages/client/src/pages/index.ts +12 -0
- package/shells/orb-shell/packages/client/tailwind-preset.cjs +243 -0
- package/shells/orb-shell/packages/client/tailwind.config.js +15 -0
- package/shells/orb-shell/packages/client/tsconfig.json +33 -0
- package/shells/orb-shell/packages/client/vite.config.ts +49 -0
- package/shells/orb-shell/packages/server/eslint.config.cjs +19 -0
- package/shells/orb-shell/packages/server/package-lock.json +6323 -0
- package/shells/orb-shell/packages/server/package.json +37 -0
- package/shells/orb-shell/packages/server/src/app.ts +36 -0
- package/shells/orb-shell/packages/server/src/index.ts +30 -0
- package/shells/orb-shell/packages/server/src/routes.ts +11 -0
- package/shells/orb-shell/packages/server/src/types/express.d.ts +15 -0
- package/shells/orb-shell/packages/server/tsconfig.json +23 -0
- package/shells/orb-shell/packages/shared/package-lock.json +24 -0
- package/shells/orb-shell/packages/shared/package.json +10 -0
- package/shells/orb-shell/packages/shared/src/index.ts +2 -0
- package/shells/orb-shell/pnpm-lock.yaml +9433 -0
- package/shells/orb-shell/pnpm-workspace.yaml +2 -0
- package/shells/orb-shell/tsup.config.ts +13 -0
- package/shells/orb-shell/turbo.json +17 -0
- package/shells/orb-shell/vitest.config.ts +8 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"outDir": "./dist",
|
|
7
|
+
"strict": true,
|
|
8
|
+
"strictNullChecks": false,
|
|
9
|
+
"esModuleInterop": true,
|
|
10
|
+
"skipLibCheck": true,
|
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"declaration": true,
|
|
13
|
+
"declarationMap": true,
|
|
14
|
+
"baseUrl": ".",
|
|
15
|
+
"paths": {
|
|
16
|
+
"@/*": ["./src/*"],
|
|
17
|
+
"@app/shared": ["../shared/src/index.ts"],
|
|
18
|
+
"@app/shared/*": ["../shared/src/*"]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"include": ["src"],
|
|
22
|
+
"exclude": ["node_modules", "dist", "src/**/__tests__/**", "src/**/*.test.ts", "src/**/*.spec.ts"]
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
zod:
|
|
12
|
+
specifier: ^3.22.0
|
|
13
|
+
version: 3.25.76
|
|
14
|
+
|
|
15
|
+
packages:
|
|
16
|
+
|
|
17
|
+
zod@3.25.76:
|
|
18
|
+
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
|
|
19
|
+
|
|
20
|
+
snapshots:
|
|
21
|
+
|
|
22
|
+
zod@3.25.76: {}
|