create-deesse-app 0.5.0 → 0.5.1

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 (62) hide show
  1. package/README.md +1 -2
  2. package/dist/src/copy.d.ts +1 -1
  3. package/dist/src/copy.d.ts.map +1 -1
  4. package/dist/src/copy.js +3 -1
  5. package/dist/src/copy.js.map +1 -1
  6. package/dist/src/index.js +0 -1
  7. package/dist/src/index.js.map +1 -1
  8. package/dist/tsconfig.tsbuildinfo +1 -1
  9. package/package.json +1 -1
  10. package/templates/default/src/app/(deesse)/admin/[[...slug]]/page.tsx +0 -2
  11. package/templates/without-admin/AGENTS.md +5 -5
  12. package/templates/without-admin/CLAUDE.md +1 -1
  13. package/templates/without-admin/README.md +36 -28
  14. package/templates/without-admin/components.json +25 -25
  15. package/templates/without-admin/drizzle.config.ts +1 -1
  16. package/templates/without-admin/eslint.config.mjs +18 -18
  17. package/templates/without-admin/next.config.ts +7 -0
  18. package/templates/without-admin/package-lock.json +11412 -0
  19. package/templates/without-admin/package.json +41 -50
  20. package/templates/without-admin/postcss.config.mjs +7 -7
  21. package/templates/without-admin/public/file.svg +1 -1
  22. package/templates/without-admin/public/globe.svg +1 -1
  23. package/templates/without-admin/public/nesalia.svg +2 -2
  24. package/templates/without-admin/public/next.svg +1 -0
  25. package/templates/without-admin/public/vercel.svg +1 -0
  26. package/templates/without-admin/public/window.svg +1 -1
  27. package/templates/without-admin/src/app/(deesse)/api/[...slug]/route.ts +5 -0
  28. package/templates/without-admin/src/app/(frontend)/(auth)/login/page.tsx +85 -0
  29. package/templates/without-admin/src/app/(frontend)/(auth)/signup/page.tsx +90 -0
  30. package/templates/without-admin/src/app/(frontend)/home/page.tsx +19 -0
  31. package/templates/without-admin/src/app/(frontend)/layout.tsx +14 -0
  32. package/templates/without-admin/src/app/{page.tsx → (frontend)/page.tsx} +1 -1
  33. package/templates/without-admin/src/app/globals.css +129 -129
  34. package/templates/without-admin/src/app/icon.svg +100 -100
  35. package/templates/without-admin/src/app/layout.tsx +37 -33
  36. package/templates/without-admin/src/components/header.tsx +123 -0
  37. package/templates/without-admin/src/components/password-input.tsx +50 -0
  38. package/templates/without-admin/src/components/providers/index.tsx +3 -1
  39. package/templates/without-admin/src/components/providers/theme-provider.tsx +1 -1
  40. package/templates/without-admin/src/components/ui/alert-dialog.tsx +199 -0
  41. package/templates/without-admin/src/components/ui/avatar.tsx +112 -0
  42. package/templates/without-admin/src/components/ui/button.tsx +67 -0
  43. package/templates/without-admin/src/components/ui/dialog.tsx +168 -0
  44. package/templates/without-admin/src/components/ui/dropdown-menu.tsx +269 -0
  45. package/templates/without-admin/src/components/ui/input.tsx +19 -0
  46. package/templates/without-admin/src/components/ui/label.tsx +24 -0
  47. package/templates/without-admin/src/components/ui/sonner.tsx +49 -0
  48. package/templates/without-admin/src/components/ui/tooltip.tsx +57 -0
  49. package/templates/without-admin/src/db/schema/auth-schema.ts +1 -1
  50. package/templates/without-admin/src/db/schema/index.ts +1 -0
  51. package/templates/without-admin/src/deesse.config.ts +1 -3
  52. package/templates/without-admin/src/lib/deesse.ts +1 -1
  53. package/templates/without-admin/src/lib/utils.ts +6 -6
  54. package/templates/without-admin/tsconfig.json +34 -35
  55. package/templates/minimal/.gitkeep +0 -0
  56. package/templates/without-admin/drizzle/0000_cheerful_clea.sql +0 -58
  57. package/templates/without-admin/drizzle/meta/0000_snapshot.json +0 -405
  58. package/templates/without-admin/drizzle/meta/_journal.json +0 -13
  59. package/templates/without-admin/skills-lock.json +0 -10
  60. package/templates/without-admin/src/deesse.pages.tsx +0 -1
  61. package/templates/without-admin/src/hooks/use-mobile.ts +0 -5
  62. package/templates/without-admin/src/lib/auth.ts +0 -3
@@ -1,25 +1,25 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema.json",
3
- "style": "radix-nova",
4
- "rsc": true,
5
- "tsx": true,
6
- "tailwind": {
7
- "config": "",
8
- "css": "src/app/globals.css",
9
- "baseColor": "neutral",
10
- "cssVariables": true,
11
- "prefix": ""
12
- },
13
- "iconLibrary": "lucide",
14
- "rtl": false,
15
- "aliases": {
16
- "components": "@/components",
17
- "utils": "@/lib/utils",
18
- "ui": "@/components/ui",
19
- "lib": "@/lib",
20
- "hooks": "@/hooks"
21
- },
22
- "menuColor": "default",
23
- "menuAccent": "subtle",
24
- "registries": {}
25
- }
1
+ {
2
+ "$schema": "https://ui.shadcn.com/schema.json",
3
+ "style": "radix-nova",
4
+ "rsc": true,
5
+ "tsx": true,
6
+ "tailwind": {
7
+ "config": "",
8
+ "css": "src/app/globals.css",
9
+ "baseColor": "neutral",
10
+ "cssVariables": true,
11
+ "prefix": ""
12
+ },
13
+ "iconLibrary": "lucide",
14
+ "rtl": false,
15
+ "aliases": {
16
+ "components": "@/components",
17
+ "utils": "@/lib/utils",
18
+ "ui": "@/components/ui",
19
+ "lib": "@/lib",
20
+ "hooks": "@/hooks"
21
+ },
22
+ "menuColor": "default",
23
+ "menuAccent": "subtle",
24
+ "registries": {}
25
+ }
@@ -8,4 +8,4 @@ export default defineConfig({
8
8
  dbCredentials: {
9
9
  url: process.env.DATABASE_URL!,
10
10
  },
11
- });
11
+ });
@@ -1,18 +1,18 @@
1
- import { defineConfig, globalIgnores } from "eslint/config";
2
- import nextVitals from "eslint-config-next/core-web-vitals";
3
- import nextTs from "eslint-config-next/typescript";
4
-
5
- const eslintConfig = defineConfig([
6
- ...nextVitals,
7
- ...nextTs,
8
- // Override default ignores of eslint-config-next.
9
- globalIgnores([
10
- // Default ignores of eslint-config-next:
11
- ".next/**",
12
- "out/**",
13
- "build/**",
14
- "next-env.d.ts",
15
- ]),
16
- ]);
17
-
18
- export default eslintConfig;
1
+ import { defineConfig, globalIgnores } from "eslint/config";
2
+ import nextVitals from "eslint-config-next/core-web-vitals";
3
+ import nextTs from "eslint-config-next/typescript";
4
+
5
+ const eslintConfig = defineConfig([
6
+ ...nextVitals,
7
+ ...nextTs,
8
+ // Override default ignores of eslint-config-next.
9
+ globalIgnores([
10
+ // Default ignores of eslint-config-next:
11
+ ".next/**",
12
+ "out/**",
13
+ "build/**",
14
+ "next-env.d.ts",
15
+ ]),
16
+ ]);
17
+
18
+ export default eslintConfig;
@@ -0,0 +1,7 @@
1
+ import type { NextConfig } from "next";
2
+
3
+ const nextConfig: NextConfig = {
4
+ allowedDevOrigins: ["127.0.0.1", "localhost"],
5
+ };
6
+
7
+ export default nextConfig;