@digilogiclabs/create-saas-app 2.2.1 → 2.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 (70) hide show
  1. package/dist/.tsbuildinfo +1 -1
  2. package/dist/generators/template-generator.js +4 -4
  3. package/dist/generators/template-generator.js.map +1 -1
  4. package/dist/templates/mobile/base/template/package.json +1 -1
  5. package/dist/templates/mobile/ui-auth-payments/template/package.json +2 -2
  6. package/dist/templates/mobile/ui-auth-payments-ai/template/package.json +2 -2
  7. package/dist/templates/mobile/ui-auth-payments-ai-rag/template/package.json +2 -2
  8. package/dist/templates/web/ai-platform/template/package.json +55 -55
  9. package/dist/templates/web/ai-platform/template/src/app/error.tsx +75 -0
  10. package/dist/templates/web/ai-platform/template/src/app/loading.tsx +71 -0
  11. package/dist/templates/web/ai-platform/template/src/app/page.tsx +24 -20
  12. package/dist/templates/web/base/template/package.json +3 -3
  13. package/dist/templates/web/iot-dashboard/template/package.json +49 -49
  14. package/dist/templates/web/iot-dashboard/template/src/app/dashboard/page.tsx +6 -11
  15. package/dist/templates/web/iot-dashboard/template/src/app/error.tsx +75 -0
  16. package/dist/templates/web/iot-dashboard/template/src/app/loading.tsx +78 -0
  17. package/dist/templates/web/iot-dashboard/template/src/app/page.tsx +6 -8
  18. package/dist/templates/web/marketplace/template/package.json +51 -51
  19. package/dist/templates/web/marketplace/template/src/app/error.tsx +75 -0
  20. package/dist/templates/web/marketplace/template/src/app/loading.tsx +57 -0
  21. package/dist/templates/web/marketplace/template/src/app/page.tsx +13 -11
  22. package/dist/templates/web/micro-saas/template/package.json +41 -41
  23. package/dist/templates/web/micro-saas/template/src/app/error.tsx +75 -0
  24. package/dist/templates/web/micro-saas/template/src/app/loading.tsx +39 -0
  25. package/dist/templates/web/ui-auth/template/package.json +3 -3
  26. package/dist/templates/web/ui-auth-ai/template/package.json +1 -1
  27. package/dist/templates/web/ui-auth-payments/template/package-lock.json +1 -1
  28. package/dist/templates/web/ui-auth-payments/template/package.json +3 -3
  29. package/dist/templates/web/ui-auth-payments-ai/template/package-lock.json +1 -1
  30. package/dist/templates/web/ui-auth-payments-ai/template/package.json +3 -3
  31. package/dist/templates/web/ui-auth-payments-ai-rag/template/package.json +2 -2
  32. package/dist/templates/web/ui-auth-payments-audio/template/package-lock.json +1 -1
  33. package/dist/templates/web/ui-auth-payments-audio/template/package.json +2 -2
  34. package/dist/templates/web/ui-auth-payments-video/template/package.json +2 -2
  35. package/dist/templates/web/ui-only/template/package.json +2 -2
  36. package/dist/templates/web/ui-package-test/template/package.json +1 -1
  37. package/package.json +1 -1
  38. package/src/templates/mobile/base/template/package.json +1 -1
  39. package/src/templates/mobile/ui-auth-payments/template/package.json +2 -2
  40. package/src/templates/mobile/ui-auth-payments-ai/template/package.json +2 -2
  41. package/src/templates/mobile/ui-auth-payments-ai-rag/template/package.json +2 -2
  42. package/src/templates/web/ai-platform/template/package.json +55 -55
  43. package/src/templates/web/ai-platform/template/src/app/error.tsx +75 -0
  44. package/src/templates/web/ai-platform/template/src/app/loading.tsx +71 -0
  45. package/src/templates/web/ai-platform/template/src/app/page.tsx +24 -20
  46. package/src/templates/web/base/template/package.json +3 -3
  47. package/src/templates/web/iot-dashboard/template/package.json +49 -49
  48. package/src/templates/web/iot-dashboard/template/src/app/dashboard/page.tsx +6 -11
  49. package/src/templates/web/iot-dashboard/template/src/app/error.tsx +75 -0
  50. package/src/templates/web/iot-dashboard/template/src/app/loading.tsx +78 -0
  51. package/src/templates/web/iot-dashboard/template/src/app/page.tsx +6 -8
  52. package/src/templates/web/marketplace/template/package.json +51 -51
  53. package/src/templates/web/marketplace/template/src/app/error.tsx +75 -0
  54. package/src/templates/web/marketplace/template/src/app/loading.tsx +57 -0
  55. package/src/templates/web/marketplace/template/src/app/page.tsx +13 -11
  56. package/src/templates/web/micro-saas/template/package.json +41 -41
  57. package/src/templates/web/micro-saas/template/src/app/error.tsx +75 -0
  58. package/src/templates/web/micro-saas/template/src/app/loading.tsx +39 -0
  59. package/src/templates/web/ui-auth/template/package.json +3 -3
  60. package/src/templates/web/ui-auth-ai/template/package.json +1 -1
  61. package/src/templates/web/ui-auth-payments/template/package-lock.json +1 -1
  62. package/src/templates/web/ui-auth-payments/template/package.json +3 -3
  63. package/src/templates/web/ui-auth-payments-ai/template/package-lock.json +1 -1
  64. package/src/templates/web/ui-auth-payments-ai/template/package.json +3 -3
  65. package/src/templates/web/ui-auth-payments-ai-rag/template/package.json +2 -2
  66. package/src/templates/web/ui-auth-payments-audio/template/package-lock.json +1 -1
  67. package/src/templates/web/ui-auth-payments-audio/template/package.json +2 -2
  68. package/src/templates/web/ui-auth-payments-video/template/package.json +2 -2
  69. package/src/templates/web/ui-only/template/package.json +2 -2
  70. package/src/templates/web/ui-package-test/template/package.json +1 -1
@@ -1,41 +1,41 @@
1
- {
2
- "name": "{{packageName}}",
3
- "version": "0.1.0",
4
- "description": "{{description}} - Micro SaaS MVP",
5
- "private": true,
6
- "scripts": {
7
- "dev": "next dev",
8
- "build": "next build",
9
- "start": "next start",
10
- "lint": "next lint",
11
- "type-check": "tsc --noEmit"
12
- },
13
- "dependencies": {
14
- "next": "^15.0.0",
15
- "react": "^19.0.0",
16
- "react-dom": "^19.0.0",
17
- "@digilogiclabs/platform-core": "^1.1.0",
18
- "@digilogiclabs/app-sdk": "^1.0.0",
19
- "@digilogiclabs/saas-factory-auth": "^1.0.7",
20
- "@digilogiclabs/saas-factory-ui": "^1.0.1",
21
- "tailwindcss": "^4.0.0",
22
- "clsx": "^2.0.0",
23
- "class-variance-authority": "^0.7.0",
24
- "tailwind-merge": "^2.0.0",
25
- "next-themes": "^0.4.0",
26
- "lucide-react": "^0.460.0",
27
- "zod": "^3.22.4"
28
- },
29
- "devDependencies": {
30
- "typescript": "^5.7.0",
31
- "@types/node": "^22.0.0",
32
- "@types/react": "^19.0.0",
33
- "@types/react-dom": "^19.0.0",
34
- "eslint": "^9.0.0",
35
- "eslint-config-next": "^15.0.0",
36
- "prettier": "^3.4.0"
37
- },
38
- "engines": {
39
- "node": ">=20.0.0"
40
- }
41
- }
1
+ {
2
+ "name": "{{packageName}}",
3
+ "version": "0.1.0",
4
+ "description": "{{description}} - Micro SaaS MVP",
5
+ "private": true,
6
+ "scripts": {
7
+ "dev": "next dev",
8
+ "build": "next build",
9
+ "start": "next start",
10
+ "lint": "next lint",
11
+ "type-check": "tsc --noEmit"
12
+ },
13
+ "dependencies": {
14
+ "next": "^15.0.0",
15
+ "react": "^19.0.0",
16
+ "react-dom": "^19.0.0",
17
+ "@digilogiclabs/platform-core": "^1.13.0",
18
+ "@digilogiclabs/app-sdk": "^1.0.0",
19
+ "@digilogiclabs/saas-factory-auth": "^1.0.7",
20
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
21
+ "tailwindcss": "^4.0.0",
22
+ "clsx": "^2.0.0",
23
+ "class-variance-authority": "^0.7.0",
24
+ "tailwind-merge": "^2.0.0",
25
+ "next-themes": "^0.4.0",
26
+ "lucide-react": "^0.460.0",
27
+ "zod": "^4.1.0"
28
+ },
29
+ "devDependencies": {
30
+ "typescript": "^5.7.0",
31
+ "@types/node": "^22.0.0",
32
+ "@types/react": "^19.0.0",
33
+ "@types/react-dom": "^19.0.0",
34
+ "eslint": "^9.0.0",
35
+ "eslint-config-next": "^15.0.0",
36
+ "prettier": "^3.4.0"
37
+ },
38
+ "engines": {
39
+ "node": ">=20.0.0"
40
+ }
41
+ }
@@ -0,0 +1,75 @@
1
+ 'use client'
2
+
3
+ import { useEffect } from 'react'
4
+ import { Button, Card } from '@digilogiclabs/saas-factory-ui'
5
+ import { AlertTriangle, RefreshCw, Home } from 'lucide-react'
6
+ import Link from 'next/link'
7
+
8
+ interface ErrorProps {
9
+ error: Error & { digest?: string }
10
+ reset: () => void
11
+ }
12
+
13
+ export default function Error({ error, reset }: ErrorProps) {
14
+ useEffect(() => {
15
+ console.error('Application error:', error)
16
+ }, [error])
17
+
18
+ return (
19
+ <div className="min-h-screen bg-gradient-to-br from-red-50 to-orange-100 dark:from-slate-900 dark:to-slate-800 flex items-center justify-center p-4">
20
+ <Card className="p-8 max-w-lg w-full">
21
+ <div className="flex flex-col items-center space-y-6 text-center">
22
+ <div className="w-16 h-16 bg-red-100 dark:bg-red-900 rounded-full flex items-center justify-center">
23
+ <AlertTriangle className="w-8 h-8 text-red-600 dark:text-red-400" />
24
+ </div>
25
+
26
+ <div>
27
+ <h1 className="text-2xl font-bold text-gray-900 dark:text-white mb-2">
28
+ Something went wrong!
29
+ </h1>
30
+ <p className="text-gray-600 dark:text-gray-300 mb-4">
31
+ We encountered an unexpected error. This has been logged and our team will look into it.
32
+ </p>
33
+
34
+ {process.env.NODE_ENV === 'development' && (
35
+ <details className="mt-4 text-left">
36
+ <summary className="cursor-pointer text-sm text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200">
37
+ Error details (development only)
38
+ </summary>
39
+ <div className="mt-2 p-3 bg-gray-100 dark:bg-gray-800 rounded text-xs font-mono text-gray-700 dark:text-gray-300 overflow-auto max-h-40">
40
+ <div className="mb-2">
41
+ <strong>Message:</strong> {error.message}
42
+ </div>
43
+ {error.digest && (
44
+ <div className="mb-2">
45
+ <strong>Digest:</strong> {error.digest}
46
+ </div>
47
+ )}
48
+ {error.stack && (
49
+ <div>
50
+ <strong>Stack:</strong>
51
+ <pre className="whitespace-pre-wrap mt-1">{error.stack}</pre>
52
+ </div>
53
+ )}
54
+ </div>
55
+ </details>
56
+ )}
57
+ </div>
58
+
59
+ <div className="flex flex-col sm:flex-row gap-3 w-full">
60
+ <Button onClick={reset} className="flex-1" size="lg">
61
+ <RefreshCw className="w-4 h-4 mr-2" />
62
+ Try again
63
+ </Button>
64
+ <Link href="/" className="flex-1">
65
+ <Button variant="outline" className="w-full" size="lg">
66
+ <Home className="w-4 h-4 mr-2" />
67
+ Go home
68
+ </Button>
69
+ </Link>
70
+ </div>
71
+ </div>
72
+ </Card>
73
+ </div>
74
+ )
75
+ }
@@ -0,0 +1,39 @@
1
+ import { Card, SkeletonCard, SkeletonText } from '@digilogiclabs/saas-factory-ui'
2
+
3
+ export default function Loading() {
4
+ return (
5
+ <div className="min-h-screen bg-gradient-to-br from-slate-50 to-slate-100 dark:from-slate-900 dark:to-slate-800">
6
+ <div className="max-w-4xl mx-auto px-4 py-16">
7
+ {/* Header skeleton */}
8
+ <div className="flex justify-end mb-8">
9
+ <SkeletonText className="h-8 w-24" />
10
+ </div>
11
+
12
+ {/* Hero skeleton */}
13
+ <div className="text-center mb-16">
14
+ <SkeletonText className="h-6 w-32 mx-auto mb-6" />
15
+ <SkeletonText className="h-12 w-64 mx-auto mb-6" />
16
+ <SkeletonText className="h-6 w-96 mx-auto mb-8" />
17
+ </div>
18
+
19
+ {/* Feature cards skeleton */}
20
+ <div className="grid md:grid-cols-3 gap-6 mb-16">
21
+ {Array.from({ length: 3 }).map((_, i) => (
22
+ <SkeletonCard key={i} />
23
+ ))}
24
+ </div>
25
+
26
+ {/* CTA skeleton */}
27
+ <Card className="p-8">
28
+ <div className="flex flex-col items-center space-y-4">
29
+ <div className="relative">
30
+ <div className="w-12 h-12 border-4 border-gray-200 dark:border-gray-700 rounded-full animate-spin"></div>
31
+ <div className="absolute top-0 left-0 w-12 h-12 border-4 border-blue-600 border-t-transparent rounded-full animate-spin"></div>
32
+ </div>
33
+ <p className="text-sm text-gray-600 dark:text-gray-300">Loading...</p>
34
+ </div>
35
+ </Card>
36
+ </div>
37
+ </div>
38
+ )
39
+ }
@@ -17,8 +17,8 @@
17
17
  "next": "^15.0.0",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
20
- "@digilogiclabs/platform-core": "^0.1.0",
21
- "@digilogiclabs/saas-factory-ui": "^0.27.3",
20
+ "@digilogiclabs/platform-core": "^1.13.0",
21
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
22
22
  "@digilogiclabs/saas-factory-auth": "^1.0.6",
23
23
  "tailwindcss": "^3.3.0",
24
24
  "autoprefixer": "^10.4.16",
@@ -28,7 +28,7 @@
28
28
  "tailwind-merge": "^2.0.0",
29
29
  "next-themes": "^0.2.1",
30
30
  "lucide-react": "^0.542.0",
31
- "zod": "^3.22.4"
31
+ "zod": "^4.1.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "typescript": "^5.0.0",
@@ -9,7 +9,7 @@
9
9
  "lint": "next lint"
10
10
  },
11
11
  "dependencies": {
12
- "@digilogiclabs/saas-factory-ui": "^0.26.1",
12
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
13
13
  "@digilogiclabs/saas-factory-auth": "^1.0.3",
14
14
  "next": "^15.0.0",
15
15
  "react": "^19.0.0",
@@ -23,7 +23,7 @@
23
23
  "stripe": "^14.0.0",
24
24
  "tailwind-merge": "^2.0.0",
25
25
  "tailwindcss": "^3.3.0",
26
- "zod": "^3.22.4"
26
+ "zod": "^4.1.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@testing-library/jest-dom": "^6.0.0",
@@ -17,8 +17,8 @@
17
17
  "next": "^15.0.0",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
20
- "@digilogiclabs/platform-core": "^0.1.0",
21
- "@digilogiclabs/saas-factory-ui": "^0.27.3",
20
+ "@digilogiclabs/platform-core": "^1.13.0",
21
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
22
22
  "@digilogiclabs/saas-factory-auth": "^1.0.6",
23
23
  "@digilogiclabs/saas-factory-payments": "^1.2.8",
24
24
  "stripe": "^14.0.0",
@@ -32,7 +32,7 @@
32
32
  "tailwind-merge": "^2.0.0",
33
33
  "next-themes": "^0.2.1",
34
34
  "lucide-react": "^0.542.0",
35
- "zod": "^3.22.4"
35
+ "zod": "^4.1.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "typescript": "^5.0.0",
@@ -24,7 +24,7 @@
24
24
  "stripe": "^14.0.0",
25
25
  "tailwind-merge": "^2.0.0",
26
26
  "tailwindcss": "^3.3.0",
27
- "zod": "^3.22.4"
27
+ "zod": "^4.1.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@testing-library/jest-dom": "^6.0.0",
@@ -17,8 +17,8 @@
17
17
  "next": "^15.0.0",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
20
- "@digilogiclabs/platform-core": "^0.1.0",
21
- "@digilogiclabs/saas-factory-ui": "^0.27.3",
20
+ "@digilogiclabs/platform-core": "^1.13.0",
21
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
22
22
  "@digilogiclabs/saas-factory-auth": "^1.0.6",
23
23
  "@digilogiclabs/saas-factory-payments": "^1.2.8",
24
24
  "@digilogiclabs/saas-factory-ai": "^4.0.4",
@@ -33,7 +33,7 @@
33
33
  "tailwind-merge": "^2.0.0",
34
34
  "next-themes": "^0.2.1",
35
35
  "lucide-react": "^0.542.0",
36
- "zod": "^3.22.4",
36
+ "zod": "^4.1.0",
37
37
  "@supabase/supabase-js": "^2.0.0"
38
38
  },
39
39
  "devDependencies": {
@@ -22,7 +22,7 @@
22
22
  "next": "^15.0.0",
23
23
  "react": "^19.0.0",
24
24
  "react-dom": "^19.0.0",
25
- "@digilogiclabs/saas-factory-ui": "^0.26.1",
25
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
26
26
  "@digilogiclabs/saas-factory-auth": "^1.0.3",
27
27
  "@digilogiclabs/saas-factory-payments": "^1.2.3",
28
28
  "@digilogiclabs/saas-factory-ai": "^4.0.2",
@@ -38,7 +38,7 @@
38
38
  "tailwind-merge": "^2.0.0",
39
39
  "next-themes": "^0.2.1",
40
40
  "lucide-react": "^0.542.0",
41
- "zod": "^3.22.4",
41
+ "zod": "^4.1.0",
42
42
  "@supabase/supabase-js": "^2.0.0",
43
43
  "@supabase/ssr": "^0.5.0",
44
44
  "react-hook-form": "^7.48.2",
@@ -24,7 +24,7 @@
24
24
  "stripe": "^14.0.0",
25
25
  "tailwind-merge": "^2.0.0",
26
26
  "tailwindcss": "^3.3.0",
27
- "zod": "^3.22.4"
27
+ "zod": "^4.1.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@testing-library/jest-dom": "^6.0.0",
@@ -17,7 +17,7 @@
17
17
  "next": "^15.0.0",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
20
- "@digilogiclabs/saas-factory-ui": "^0.26.1",
20
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
21
21
  "@digilogiclabs/saas-factory-auth": "^1.0.3",
22
22
  "@digilogiclabs/saas-factory-payments": "^1.2.3",
23
23
  "stripe": "^14.0.0",
@@ -31,7 +31,7 @@
31
31
  "tailwind-merge": "^2.0.0",
32
32
  "next-themes": "^0.2.1",
33
33
  "lucide-react": "^0.542.0",
34
- "zod": "^3.22.4",
34
+ "zod": "^4.1.0",
35
35
  "@supabase/supabase-js": "^2.0.0"
36
36
  },
37
37
  "devDependencies": {
@@ -17,7 +17,7 @@
17
17
  "next": "^15.0.0",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
20
- "@digilogiclabs/saas-factory-ui": "^0.26.1",
20
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
21
21
  "@digilogiclabs/saas-factory-auth": "^1.0.3",
22
22
  "@digilogiclabs/saas-factory-payments": "^1.2.3",
23
23
  "stripe": "^14.0.0",
@@ -31,7 +31,7 @@
31
31
  "tailwind-merge": "^2.0.0",
32
32
  "next-themes": "^0.2.1",
33
33
  "lucide-react": "^0.542.0",
34
- "zod": "^3.22.4",
34
+ "zod": "^4.1.0",
35
35
  "@supabase/supabase-js": "^2.0.0"
36
36
  },
37
37
  "devDependencies": {
@@ -17,7 +17,7 @@
17
17
  "next": "^15.0.0",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
20
- "@digilogiclabs/saas-factory-ui": "^0.26.1",
20
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
21
21
  "tailwindcss": "^3.3.0",
22
22
  "autoprefixer": "^10.4.16",
23
23
  "postcss": "^8.4.31",
@@ -26,7 +26,7 @@
26
26
  "tailwind-merge": "^2.0.0",
27
27
  "next-themes": "^0.2.1",
28
28
  "lucide-react": "^0.542.0",
29
- "zod": "^3.22.4"
29
+ "zod": "^4.1.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "typescript": "^5.0.0",
@@ -14,7 +14,7 @@
14
14
  "next": "15.4.5",
15
15
  "react": "19.1.0",
16
16
  "react-dom": "19.1.0",
17
- "@digilogiclabs/saas-factory-ui": "^0.26.1",
17
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
18
18
  "tailwindcss": "^3.4.0",
19
19
  "autoprefixer": "^10.4.16",
20
20
  "postcss": "^8.4.31",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digilogiclabs/create-saas-app",
3
- "version": "2.2.1",
3
+ "version": "2.4.0",
4
4
  "description": "Create modern SaaS applications with DLL Platform - tier-aware scaffolding with platform-core and app-sdk",
5
5
  "main": "dist/cli/index.js",
6
6
  "bin": {
@@ -22,7 +22,7 @@
22
22
  "react-native-screens": "~3.22.0",
23
23
  "react-native-safe-area-context": "4.6.3",
24
24
  "react-native-gesture-handler": "~2.12.0",
25
- "@digilogiclabs/saas-factory-ui": "^0.27.1",
25
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
26
26
  "@digilogiclabs/saas-factory-auth": "^1.0.5",
27
27
  "@digilogiclabs/saas-factory-payments": "^1.2.7",
28
28
  "firebase": "^10.0.0",
@@ -35,7 +35,7 @@
35
35
  "react-native-gesture-handler": "~2.14.0",
36
36
  "react-native-reanimated": "~3.6.2",
37
37
 
38
- "@digilogiclabs/saas-factory-ui": "^0.27.1",
38
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
39
39
  "@digilogiclabs/saas-factory-auth": "^1.0.5",
40
40
  "@digilogiclabs/saas-factory-payments": "^1.2.7",
41
41
 
@@ -85,7 +85,7 @@
85
85
  "zustand": "^4.4.7",
86
86
  "react-hook-form": "^7.48.2",
87
87
  "@hookform/resolvers": "^3.3.2",
88
- "zod": "^3.22.4",
88
+ "zod": "^4.1.0",
89
89
  "date-fns": "^3.0.6",
90
90
  "react-native-heroicons": "^4.0.0"
91
91
  },
@@ -35,7 +35,7 @@
35
35
  "react-native-gesture-handler": "~2.14.0",
36
36
  "react-native-reanimated": "~3.6.2",
37
37
 
38
- "@digilogiclabs/saas-factory-ui": "^0.27.1",
38
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
39
39
  "@digilogiclabs/saas-factory-auth": "^1.0.5",
40
40
  "@digilogiclabs/saas-factory-payments": "^1.2.7",
41
41
  "@digilogiclabs/saas-factory-ai": "^4.0.2",
@@ -87,7 +87,7 @@
87
87
  "zustand": "^4.4.7",
88
88
  "react-hook-form": "^7.48.2",
89
89
  "@hookform/resolvers": "^3.3.2",
90
- "zod": "^3.22.4",
90
+ "zod": "^4.1.0",
91
91
  "date-fns": "^3.0.6",
92
92
  "react-native-heroicons": "^4.0.0"
93
93
  },
@@ -38,7 +38,7 @@
38
38
  "react-native-gesture-handler": "~2.14.0",
39
39
  "react-native-reanimated": "~3.6.2",
40
40
 
41
- "@digilogiclabs/saas-factory-ui": "^0.27.1",
41
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
42
42
  "@digilogiclabs/saas-factory-auth": "^1.0.5",
43
43
  "@digilogiclabs/saas-factory-payments": "^1.2.7",
44
44
  "@digilogiclabs/saas-factory-ai": "^4.0.2",
@@ -92,7 +92,7 @@
92
92
  "zustand": "^4.4.7",
93
93
  "react-hook-form": "^7.48.2",
94
94
  "@hookform/resolvers": "^3.3.2",
95
- "zod": "^3.22.4",
95
+ "zod": "^4.1.0",
96
96
  "date-fns": "^3.0.6",
97
97
  "react-native-heroicons": "^4.0.0"
98
98
  },
@@ -1,55 +1,55 @@
1
- {
2
- "name": "{{packageName}}",
3
- "version": "0.1.0",
4
- "description": "{{description}} - AI Platform",
5
- "private": true,
6
- "scripts": {
7
- "dev": "next dev",
8
- "build": "next build",
9
- "start": "next start",
10
- "lint": "next lint",
11
- "type-check": "tsc --noEmit",
12
- "test": "vitest",
13
- "test:run": "vitest run"
14
- },
15
- "dependencies": {
16
- "next": "^15.0.0",
17
- "react": "^19.0.0",
18
- "react-dom": "^19.0.0",
19
- "@digilogiclabs/platform-core": "^1.1.0",
20
- "@digilogiclabs/app-sdk": "^1.0.0",
21
- "@digilogiclabs/saas-factory-auth": "^1.0.7",
22
- "@digilogiclabs/saas-factory-payments": "^1.2.9",
23
- "@digilogiclabs/saas-factory-ai": "^1.0.0",
24
- "@digilogiclabs/saas-factory-ui": "^1.0.1",
25
- "ai": "^3.4.0",
26
- "@ai-sdk/openai": "^0.0.70",
27
- "@ai-sdk/anthropic": "^0.0.57",
28
- "stripe": "^16.12.0",
29
- "@stripe/react-stripe-js": "^2.8.0",
30
- "@stripe/stripe-js": "^4.10.0",
31
- "tailwindcss": "^4.0.0",
32
- "clsx": "^2.0.0",
33
- "class-variance-authority": "^0.7.0",
34
- "tailwind-merge": "^2.0.0",
35
- "next-themes": "^0.4.0",
36
- "lucide-react": "^0.460.0",
37
- "zod": "^3.22.4",
38
- "zustand": "^4.5.0"
39
- },
40
- "devDependencies": {
41
- "typescript": "^5.7.0",
42
- "@types/node": "^22.0.0",
43
- "@types/react": "^19.0.0",
44
- "@types/react-dom": "^19.0.0",
45
- "eslint": "^9.0.0",
46
- "eslint-config-next": "^15.0.0",
47
- "prettier": "^3.4.0",
48
- "vitest": "^2.1.0",
49
- "@testing-library/react": "^16.0.0",
50
- "@testing-library/jest-dom": "^6.6.0"
51
- },
52
- "engines": {
53
- "node": ">=20.0.0"
54
- }
55
- }
1
+ {
2
+ "name": "{{packageName}}",
3
+ "version": "0.1.0",
4
+ "description": "{{description}} - AI Platform",
5
+ "private": true,
6
+ "scripts": {
7
+ "dev": "next dev",
8
+ "build": "next build",
9
+ "start": "next start",
10
+ "lint": "next lint",
11
+ "type-check": "tsc --noEmit",
12
+ "test": "vitest",
13
+ "test:run": "vitest run"
14
+ },
15
+ "dependencies": {
16
+ "next": "^15.0.0",
17
+ "react": "^19.0.0",
18
+ "react-dom": "^19.0.0",
19
+ "@digilogiclabs/platform-core": "^1.13.0",
20
+ "@digilogiclabs/app-sdk": "^1.0.0",
21
+ "@digilogiclabs/saas-factory-auth": "^1.0.7",
22
+ "@digilogiclabs/saas-factory-payments": "^1.2.9",
23
+ "@digilogiclabs/saas-factory-ai": "^1.0.0",
24
+ "@digilogiclabs/saas-factory-ui": "^1.4.0",
25
+ "ai": "^3.4.0",
26
+ "@ai-sdk/openai": "^0.0.70",
27
+ "@ai-sdk/anthropic": "^0.0.57",
28
+ "stripe": "^16.12.0",
29
+ "@stripe/react-stripe-js": "^2.8.0",
30
+ "@stripe/stripe-js": "^4.10.0",
31
+ "tailwindcss": "^4.0.0",
32
+ "clsx": "^2.0.0",
33
+ "class-variance-authority": "^0.7.0",
34
+ "tailwind-merge": "^2.0.0",
35
+ "next-themes": "^0.4.0",
36
+ "lucide-react": "^0.460.0",
37
+ "zod": "^4.1.0",
38
+ "zustand": "^4.5.0"
39
+ },
40
+ "devDependencies": {
41
+ "typescript": "^5.7.0",
42
+ "@types/node": "^22.0.0",
43
+ "@types/react": "^19.0.0",
44
+ "@types/react-dom": "^19.0.0",
45
+ "eslint": "^9.0.0",
46
+ "eslint-config-next": "^15.0.0",
47
+ "prettier": "^3.4.0",
48
+ "vitest": "^2.1.0",
49
+ "@testing-library/react": "^16.0.0",
50
+ "@testing-library/jest-dom": "^6.6.0"
51
+ },
52
+ "engines": {
53
+ "node": ">=20.0.0"
54
+ }
55
+ }