@digilogiclabs/create-saas-app 1.14.1 → 1.17.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 (80) hide show
  1. package/README.md +134 -29
  2. package/bin/index.js +1 -1
  3. package/dist/.tsbuildinfo +1 -1
  4. package/dist/cli/prompts/project-setup.d.ts.map +1 -1
  5. package/dist/cli/prompts/project-setup.js +45 -12
  6. package/dist/cli/prompts/project-setup.js.map +1 -1
  7. package/dist/generators/template-generator.d.ts.map +1 -1
  8. package/dist/generators/template-generator.js +27 -4
  9. package/dist/generators/template-generator.js.map +1 -1
  10. package/dist/templates/mobile/ui-auth-payments/template/.env.example +20 -0
  11. package/dist/templates/mobile/ui-auth-payments/template/README.md +218 -0
  12. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/_layout.tsx +153 -0
  13. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/analytics.tsx +668 -0
  14. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/billing.tsx +743 -0
  15. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/index.tsx +676 -0
  16. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/orders.tsx +402 -0
  17. package/dist/templates/mobile/ui-auth-payments/template/app/(tabs)/profile.tsx +580 -0
  18. package/dist/templates/mobile/ui-auth-payments/template/app/_layout.tsx +125 -0
  19. package/dist/templates/mobile/ui-auth-payments/template/app/auth/login.tsx +246 -0
  20. package/dist/templates/mobile/ui-auth-payments/template/app/auth/signup.tsx +362 -0
  21. package/dist/templates/mobile/ui-auth-payments/template/app/onboarding/index.tsx +193 -0
  22. package/dist/templates/mobile/ui-auth-payments/template/app/tour/index.tsx +272 -0
  23. package/dist/templates/mobile/ui-auth-payments/template/app.json +93 -0
  24. package/dist/templates/mobile/ui-auth-payments/template/babel.config.js +23 -0
  25. package/dist/templates/mobile/ui-auth-payments/template/eas.json +45 -0
  26. package/dist/templates/mobile/ui-auth-payments/template/expo-env.d.ts +3 -0
  27. package/dist/templates/mobile/ui-auth-payments/template/jest-setup.ts +74 -0
  28. package/dist/templates/mobile/ui-auth-payments/template/metro.config.js +11 -0
  29. package/dist/templates/mobile/ui-auth-payments/template/package.json +106 -0
  30. package/dist/templates/mobile/ui-auth-payments/template/tsconfig.json +31 -0
  31. package/dist/templates/web/base/template/src/app/dashboard/page.tsx +62 -20
  32. package/dist/templates/web/ui-auth/template/package.json +1 -1
  33. package/dist/templates/web/ui-auth-payments/template/package.json +1 -1
  34. package/dist/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +69 -17
  35. package/dist/templates/web/ui-auth-payments-ai/template/package.json +1 -1
  36. package/dist/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +218 -7
  37. package/dist/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +62 -9
  38. package/dist/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +364 -0
  39. package/dist/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +532 -0
  40. package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +70 -51
  41. package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +76 -60
  42. package/dist/templates/web/ui-auth-payments-audio/template/package.json +1 -1
  43. package/dist/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +71 -17
  44. package/dist/templates/web/ui-auth-payments-video/template/package.json +1 -1
  45. package/package.json +1 -1
  46. package/src/templates/mobile/ui-auth-payments/template/.env.example +20 -0
  47. package/src/templates/mobile/ui-auth-payments/template/README.md +218 -0
  48. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/_layout.tsx +153 -0
  49. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/analytics.tsx +668 -0
  50. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/billing.tsx +743 -0
  51. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/index.tsx +676 -0
  52. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/orders.tsx +402 -0
  53. package/src/templates/mobile/ui-auth-payments/template/app/(tabs)/profile.tsx +580 -0
  54. package/src/templates/mobile/ui-auth-payments/template/app/_layout.tsx +125 -0
  55. package/src/templates/mobile/ui-auth-payments/template/app/auth/login.tsx +246 -0
  56. package/src/templates/mobile/ui-auth-payments/template/app/auth/signup.tsx +362 -0
  57. package/src/templates/mobile/ui-auth-payments/template/app/onboarding/index.tsx +193 -0
  58. package/src/templates/mobile/ui-auth-payments/template/app/tour/index.tsx +272 -0
  59. package/src/templates/mobile/ui-auth-payments/template/app.json +93 -0
  60. package/src/templates/mobile/ui-auth-payments/template/babel.config.js +23 -0
  61. package/src/templates/mobile/ui-auth-payments/template/eas.json +45 -0
  62. package/src/templates/mobile/ui-auth-payments/template/expo-env.d.ts +3 -0
  63. package/src/templates/mobile/ui-auth-payments/template/jest-setup.ts +74 -0
  64. package/src/templates/mobile/ui-auth-payments/template/metro.config.js +11 -0
  65. package/src/templates/mobile/ui-auth-payments/template/package.json +106 -0
  66. package/src/templates/mobile/ui-auth-payments/template/tsconfig.json +31 -0
  67. package/src/templates/web/base/template/src/app/dashboard/page.tsx +62 -20
  68. package/src/templates/web/ui-auth/template/package.json +1 -1
  69. package/src/templates/web/ui-auth-payments/template/package.json +1 -1
  70. package/src/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +69 -17
  71. package/src/templates/web/ui-auth-payments-ai/template/package.json +1 -1
  72. package/src/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +218 -7
  73. package/src/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +62 -9
  74. package/src/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +364 -0
  75. package/src/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +532 -0
  76. package/src/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +70 -51
  77. package/src/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +76 -60
  78. package/src/templates/web/ui-auth-payments-audio/template/package.json +1 -1
  79. package/src/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +71 -17
  80. package/src/templates/web/ui-auth-payments-video/template/package.json +1 -1
package/README.md CHANGED
@@ -67,11 +67,74 @@ npx @digilogiclabs/create-saas-app create web ui-auth simple-app
67
67
 
68
68
  ## 🎨 Template Gallery
69
69
 
70
- ### 🤖 **AI-Powered Templates**
70
+ Choose from **11 production-ready templates** across web and mobile platforms:
71
71
 
72
- #### **Full-Stack AI Platform** (`ui-auth-payments-ai`)
73
- Complete AI platform with text, audio, and video generation
74
- - **Multi-modal AI** - OpenAI, ElevenLabs, Replicate integration
72
+ ### 🌐 **Web Templates (9 Available)**
73
+
74
+ #### **Core Templates**
75
+
76
+ ##### **Base Template** (`base`)
77
+ Clean Next.js 15 starter with minimal dependencies
78
+ - **Next.js 15.3** - App Router with Server Components
79
+ - **TypeScript** - Strict typing throughout
80
+ - **Tailwind CSS v4** - Modern utility-first styling
81
+ - **Essential setup** - Perfect foundation for custom builds
82
+
83
+ ```bash
84
+ npx @digilogiclabs/create-saas-app create web base my-app
85
+ ```
86
+
87
+ ##### **UI Only Template** (`ui-only`)
88
+ Components library showcase without authentication
89
+ - **Component gallery** - All @digilogiclabs/saas-factory-ui components
90
+ - **Design system** - Glassmorphism and modern patterns
91
+ - **No auth required** - Perfect for design system demos
92
+ - **Storybook-style** - Interactive component documentation
93
+
94
+ ```bash
95
+ npx @digilogiclabs/create-saas-app create web ui-only design-system
96
+ ```
97
+
98
+ #### **Authentication Templates**
99
+
100
+ ##### **UI + Auth** (`ui-auth`)
101
+ Modern authentication flow with beautiful UI
102
+ - **User management** - Sign up, login, profile management
103
+ - **12 OAuth providers** - Google, GitHub, Microsoft, LinkedIn, Spotify, and more
104
+ - **Protected routes** - Authentication-gated content
105
+ - **Email verification** - Secure account activation
106
+
107
+ ```bash
108
+ npx @digilogiclabs/create-saas-app create web ui-auth auth-app
109
+ ```
110
+
111
+ ##### **UI + Auth + Payments** (`ui-auth-payments`)
112
+ Complete SaaS foundation with billing
113
+ - **Subscription management** - Stripe integration with webhooks
114
+ - **User dashboards** - Account management and billing portal
115
+ - **Team features** - Multi-user support and permissions
116
+ - **Analytics** - Revenue and usage tracking
117
+
118
+ ```bash
119
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments saas-platform
120
+ ```
121
+
122
+ #### **AI-Powered Templates**
123
+
124
+ ##### **AI + Auth** (`ui-auth-ai`)
125
+ Text and chat AI integration platform
126
+ - **Text generation** - OpenAI GPT-4 integration
127
+ - **AI chat interface** - Interactive conversation UI
128
+ - **Content management** - Save and organize AI outputs
129
+ - **Usage tracking** - Monitor API consumption
130
+
131
+ ```bash
132
+ npx @digilogiclabs/create-saas-app create web ui-auth-ai text-ai-app --with-ai=text
133
+ ```
134
+
135
+ ##### **AI + Auth + Payments** (`ui-auth-payments-ai`)
136
+ Full AI SaaS platform with multi-modal generation
137
+ - **Multi-modal AI** - Text, audio, and video generation
75
138
  - **AI Dashboard** - Generation history and usage analytics
76
139
  - **Smart UI** - Tabbed interface for different AI tools
77
140
  - **Real-time features** - Live generation status and updates
@@ -80,50 +143,89 @@ Complete AI platform with text, audio, and video generation
80
143
  npx @digilogiclabs/create-saas-app create web ui-auth-payments-ai ai-platform --with-ai=all
81
144
  ```
82
145
 
83
- #### **Audio Platform** (`ui-auth-payments-audio`)
84
- Professional audio streaming and generation platform
146
+ #### **Media Templates**
147
+
148
+ ##### **Audio SaaS** (`ui-auth-payments-audio`)
149
+ Music streaming and audio processing platform
85
150
  - **Audio streaming** - Playlist management and playback
86
151
  - **Audio generation** - AI-powered voice synthesis
87
152
  - **Waveform visualization** - Real-time audio analysis
88
153
  - **Offline support** - Cached playback and PWA features
89
154
 
90
155
  ```bash
91
- npx @digilogiclabs/create-saas-app create web ui-auth-payments-audio music-app
156
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments-audio music-platform
92
157
  ```
93
158
 
94
- #### **Video Platform** (`ui-auth-payments-video`)
95
- Video streaming and generation platform
159
+ ##### **Video SaaS** (`ui-auth-payments-video`)
160
+ Video streaming and media platform
96
161
  - **Video streaming** - Quality selection and adaptive bitrate
97
162
  - **Video generation** - AI-powered video creation
98
163
  - **Content management** - Upload, process, and organize videos
99
164
  - **Analytics dashboard** - View counts and engagement metrics
100
165
 
101
166
  ```bash
102
- npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-platform
167
+ npx @digilogiclabs/create-saas-app create web ui-auth-payments-video video-studio
103
168
  ```
104
169
 
105
- ### 🏢 **Business Templates**
170
+ #### **Development Templates**
106
171
 
107
- #### **SaaS with Payments** (`ui-auth-payments`)
108
- Complete SaaS platform with billing
109
- - **Subscription management** - Stripe integration with webhooks
110
- - **User dashboards** - Account management and billing portal
111
- - **Team features** - Multi-user support and permissions
112
- - **Analytics** - Revenue and usage tracking
172
+ ##### **UI Package Test** (`ui-package-test`)
173
+ Component testing environment for package development
174
+ - **Component testing** - Isolated testing environment
175
+ - **Package validation** - Test UI components before release
176
+ - **Development tools** - Hot reload and debugging setup
177
+ - **Documentation** - Auto-generated component docs
113
178
 
114
179
  ```bash
115
- npx @digilogiclabs/create-saas-app create web ui-auth-payments saas-platform
180
+ npx @digilogiclabs/create-saas-app create web ui-package-test component-test
116
181
  ```
117
182
 
118
- #### **Authentication App** (`ui-auth`)
119
- Simple auth-enabled application
120
- - **User management** - Sign up, login, profile management
121
- - **Protected routes** - Authentication-gated content
122
- - **Social logins** - Google, GitHub, and more
123
- - **Email verification** - Secure account activation
183
+ ### 📱 **Mobile Templates (2 Available)**
184
+
185
+ #### **Base Mobile** (`base`)
186
+ React Native + Expo starter for mobile development
187
+ - **Expo 50** - Modern React Native development platform
188
+ - **TypeScript** - Full type safety for mobile
189
+ - **Navigation** - React Navigation v6 setup
190
+ - **Cross-platform** - iOS and Android support
124
191
 
125
192
  ```bash
126
- npx @digilogiclabs/create-saas-app create web ui-auth auth-app
193
+ npx @digilogiclabs/create-saas-app create mobile base mobile-app
194
+ ```
195
+
196
+ #### **Mobile SaaS** (`ui-auth-payments`)
197
+ Full mobile SaaS platform with native UI v0.22.0
198
+ - **Native UI components** - 240+ components with 75% feature parity
199
+ - **Authentication** - Supabase Auth with biometric support
200
+ - **Payments** - Stripe React Native integration
201
+ - **Advanced features** - Onboarding, tours, offline support, haptic feedback
202
+
203
+ ```bash
204
+ npx @digilogiclabs/create-saas-app create mobile ui-auth-payments mobile-saas
205
+ ```
206
+
207
+ ### 🚀 **Cross-Platform Templates**
208
+
209
+ #### **Full Stack Platform** (`ui-auth-payments`)
210
+ Web + Mobile SaaS platform
211
+ - **Shared codebase** - Unified components and logic
212
+ - **Web dashboard** - Full-featured admin interface
213
+ - **Mobile app** - Native mobile experience
214
+ - **Real-time sync** - Cross-platform data synchronization
215
+
216
+ ```bash
217
+ npx @digilogiclabs/create-saas-app create both ui-auth-payments fullstack-platform
218
+ ```
219
+
220
+ #### **AI Full Stack** (`ui-auth-payments-ai`)
221
+ Web + Mobile AI platform
222
+ - **AI everywhere** - Consistent AI features across platforms
223
+ - **Mobile-optimized** - Touch-friendly AI interfaces
224
+ - **Cloud sync** - AI generations sync across devices
225
+ - **Offline capable** - Cached AI responses for mobile
226
+
227
+ ```bash
228
+ npx @digilogiclabs/create-saas-app create both ui-auth-payments-ai ai-fullstack --with-ai=all
127
229
  ```
128
230
 
129
231
  ## 🤖 AI Development Workflow
@@ -300,10 +402,12 @@ Built-in validation ensures your app is deployment-ready:
300
402
 
301
403
  ## 📦 Package Ecosystem
302
404
 
303
- ### 🎨 **UI & Design** (v0.18.4)
304
- - **@digilogiclabs/saas-factory-ui** - Modern components with enhanced glassmorphism
305
- - **6 New Components** - Switch, Slider, Textarea, Accordion, Breadcrumbs, EmptyState
405
+ ### 🎨 **UI & Design** (v0.22.0)
406
+ - **@digilogiclabs/saas-factory-ui** - 240+ components with mobile-first design
407
+ - **75% Component Increase** - From 140+ to 240+ components in v0.22.0
306
408
  - **Cross-Platform Support** - Single codebase for Next.js + React Native/Expo
409
+ - **Native Mobile Components** - AppShell, BottomTabBar, NativeTour, VirtualScrollList
410
+ - **Advanced Features** - Haptic feedback, gesture support, offline capabilities
307
411
  - **Enhanced Glassmorphism** - Fixed API with proper `border` and `accent` properties
308
412
  - **Next.js 15.3** - App Router with Server Components
309
413
  - **Tailwind CSS v4** - Design tokens and utility classes
@@ -532,11 +636,12 @@ MIT © [Digi Logic Labs](https://digilogiclabs.com)
532
636
 
533
637
  ## 🚀 What's Next?
534
638
 
535
- - 📱 **Mobile Templates** - React Native templates with AI capabilities
639
+ - 📱 **Enhanced Mobile Templates** - Additional React Native templates with specialized features
536
640
  - 🔌 **Plugin System** - Extensible architecture for custom features
537
641
  - 🤖 **More AI Providers** - Anthropic, Google, and custom model support
538
642
  - 📊 **Analytics Integration** - Built-in analytics and monitoring
539
643
  - 🌍 **Internationalization** - Multi-language support out of the box
644
+ - 🎨 **Theme Marketplace** - Community-contributed themes and components
540
645
 
541
646
  ---
542
647
 
package/bin/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  const { execSync } = require('child_process');
4
4
  const path = require('path');