├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DEPLOYMENT.md ├── LICENSE ├── OVERVIEW.md ├── README.md ├── SECURITY.md ├── bin └── promptzy.js ├── components.json ├── dashboard.png ├── eslint.config.js ├── index.html ├── logo.png ├── package.json ├── postcss.config.js ├── public ├── _headers ├── _routes.json ├── favicon.png ├── icon.png ├── robot-sound.mp3 └── robots.txt ├── src ├── App.css ├── App.tsx ├── components │ ├── AIAssistant.tsx │ ├── AnimatedLogo.tsx │ ├── EmptyState.tsx │ ├── Header.tsx │ ├── PromptCard.tsx │ ├── PromptForm.tsx │ ├── SearchInput.tsx │ ├── SettingsDialog.tsx │ ├── TagFilter.tsx │ ├── TagInput.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── hooks │ ├── use-mobile.tsx │ └── use-toast.ts ├── index.css ├── integrations │ └── supabase │ │ ├── client.ts │ │ └── types.ts ├── lib │ ├── supabasePromptStore.ts │ ├── systemPromptStore.ts │ └── utils.ts ├── main.tsx ├── pages │ ├── Index.tsx │ └── NotFound.tsx ├── types │ └── index.ts └── vite-env.d.ts ├── supabase-setup.sql ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── wrangler.toml /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/LICENSE -------------------------------------------------------------------------------- /OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/OVERVIEW.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/promptzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/bin/promptzy.js -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/components.json -------------------------------------------------------------------------------- /dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/dashboard.png -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/index.html -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/public/_headers -------------------------------------------------------------------------------- /public/_routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/public/_routes.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/robot-sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/public/robot-sound.mp3 -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/AIAssistant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/AIAssistant.tsx -------------------------------------------------------------------------------- /src/components/AnimatedLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/AnimatedLogo.tsx -------------------------------------------------------------------------------- /src/components/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/EmptyState.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/PromptCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/PromptCard.tsx -------------------------------------------------------------------------------- /src/components/PromptForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/PromptForm.tsx -------------------------------------------------------------------------------- /src/components/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/SettingsDialog.tsx -------------------------------------------------------------------------------- /src/components/TagFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/TagFilter.tsx -------------------------------------------------------------------------------- /src/components/TagInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/TagInput.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/index.css -------------------------------------------------------------------------------- /src/integrations/supabase/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/integrations/supabase/client.ts -------------------------------------------------------------------------------- /src/integrations/supabase/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/integrations/supabase/types.ts -------------------------------------------------------------------------------- /src/lib/supabasePromptStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/lib/supabasePromptStore.ts -------------------------------------------------------------------------------- /src/lib/systemPromptStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/lib/systemPromptStore.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/pages/Index.tsx -------------------------------------------------------------------------------- /src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /supabase-setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/supabase-setup.sql -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/vite.config.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pinkpixel-dev/promptzy/HEAD/wrangler.toml --------------------------------------------------------------------------------