@almadar/shell-hono 0.1.3

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 (63) hide show
  1. package/.env.example +12 -0
  2. package/.gitignore +4 -0
  3. package/LICENSE +72 -0
  4. package/README.md +25 -0
  5. package/locales/en.json +120 -0
  6. package/package.json +36 -0
  7. package/packages/client/eslint.config.cjs +23 -0
  8. package/packages/client/index.html +13 -0
  9. package/packages/client/node_modules/.bin/autoprefixer +21 -0
  10. package/packages/client/node_modules/.bin/eslint +21 -0
  11. package/packages/client/node_modules/.bin/tailwind +21 -0
  12. package/packages/client/node_modules/.bin/tailwindcss +21 -0
  13. package/packages/client/node_modules/.bin/tsc +21 -0
  14. package/packages/client/node_modules/.bin/tsserver +21 -0
  15. package/packages/client/node_modules/.bin/vite +21 -0
  16. package/packages/client/node_modules/.bin/vitest +21 -0
  17. package/packages/client/package-lock.json +9750 -0
  18. package/packages/client/package.json +61 -0
  19. package/packages/client/postcss.config.js +6 -0
  20. package/packages/client/src/App.tsx +84 -0
  21. package/packages/client/src/config/firebase.ts +37 -0
  22. package/packages/client/src/features/auth/AuthContext.tsx +139 -0
  23. package/packages/client/src/features/auth/authService.ts +83 -0
  24. package/packages/client/src/features/auth/components/Login.tsx +218 -0
  25. package/packages/client/src/features/auth/components/ProtectedRoute.tsx +27 -0
  26. package/packages/client/src/features/auth/components/UserProfile.tsx +68 -0
  27. package/packages/client/src/features/auth/components/index.ts +3 -0
  28. package/packages/client/src/features/auth/index.ts +13 -0
  29. package/packages/client/src/features/auth/types.ts +24 -0
  30. package/packages/client/src/generated/index.ts +13 -0
  31. package/packages/client/src/index.css +35 -0
  32. package/packages/client/src/main.tsx +8 -0
  33. package/packages/client/src/navigation/index.ts +55 -0
  34. package/packages/client/src/pages/index.ts +12 -0
  35. package/packages/client/tailwind-preset.cjs +259 -0
  36. package/packages/client/tailwind.config.js +24 -0
  37. package/packages/client/tsconfig.json +33 -0
  38. package/packages/client/vite.config.ts +50 -0
  39. package/packages/server/eslint.config.cjs +19 -0
  40. package/packages/server/node_modules/.bin/esbuild +21 -0
  41. package/packages/server/node_modules/.bin/eslint +21 -0
  42. package/packages/server/node_modules/.bin/tsc +21 -0
  43. package/packages/server/node_modules/.bin/tsserver +21 -0
  44. package/packages/server/node_modules/.bin/tsx +21 -0
  45. package/packages/server/node_modules/.bin/vitest +21 -0
  46. package/packages/server/package.json +38 -0
  47. package/packages/server/pnpm-lock.yaml +4665 -0
  48. package/packages/server/src/app.ts +31 -0
  49. package/packages/server/src/index.ts +31 -0
  50. package/packages/server/src/routes.ts +12 -0
  51. package/packages/server/src/serve.ts +45 -0
  52. package/packages/server/tsconfig.json +23 -0
  53. package/packages/shared/node_modules/.bin/tsc +21 -0
  54. package/packages/shared/node_modules/.bin/tsserver +21 -0
  55. package/packages/shared/node_modules/.bin/tsup +21 -0
  56. package/packages/shared/node_modules/.bin/tsup-node +21 -0
  57. package/packages/shared/package.json +25 -0
  58. package/packages/shared/pnpm-lock.yaml +919 -0
  59. package/packages/shared/src/index.ts +2 -0
  60. package/packages/shared/tsconfig.json +17 -0
  61. package/packages/shared/tsup.config.ts +10 -0
  62. package/pnpm-workspace.yaml +2 -0
  63. package/turbo.json +17 -0
@@ -0,0 +1,2 @@
1
+ // Placeholder — the compiler generates actual shared types here.
2
+ export {};
@@ -0,0 +1,17 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "ESNext",
5
+ "moduleResolution": "bundler",
6
+ "outDir": "./dist",
7
+ "rootDir": "./src",
8
+ "strict": true,
9
+ "esModuleInterop": true,
10
+ "skipLibCheck": true,
11
+ "declaration": true,
12
+ "declarationMap": true,
13
+ "isolatedModules": true
14
+ },
15
+ "include": ["src"],
16
+ "exclude": ["node_modules", "dist"]
17
+ }
@@ -0,0 +1,10 @@
1
+ import { defineConfig } from 'tsup';
2
+
3
+ export default defineConfig({
4
+ entry: ['src/index.ts'],
5
+ format: ['esm'],
6
+ dts: true,
7
+ clean: true,
8
+ sourcemap: true,
9
+ splitting: false,
10
+ });
@@ -0,0 +1,2 @@
1
+ packages:
2
+ - 'packages/*'
package/turbo.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "$schema": "https://turbo.build/schema.json",
3
+ "tasks": {
4
+ "dev": {
5
+ "cache": false,
6
+ "persistent": true
7
+ },
8
+ "build": {
9
+ "dependsOn": ["^build"],
10
+ "outputs": ["dist/**"]
11
+ },
12
+ "typecheck": {
13
+ "dependsOn": ["^typecheck"]
14
+ },
15
+ "lint": {}
16
+ }
17
+ }