├── .dockerignore ├── .dprint.json ├── .editorconfig ├── .env.example ├── .env.prod.example ├── .gitattributes ├── .gitignore ├── .helix └── languages.toml ├── .ignore ├── .infisical.json ├── .mise.toml ├── .oxlintrc.json ├── .vscode └── settings.json ├── AGENTS.md ├── Dockerfile ├── README.md ├── apps ├── bot │ ├── package.json │ ├── public │ │ └── loading.gif │ ├── src │ │ ├── automod │ │ │ └── index.ts │ │ ├── clear-commands.ts │ │ ├── cli.ts │ │ ├── commands │ │ │ ├── economy │ │ │ │ ├── balance.ts │ │ │ │ ├── crime.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── deposit.ts │ │ │ │ ├── index.ts │ │ │ │ ├── rob.ts │ │ │ │ ├── shop │ │ │ │ │ ├── buy.ts │ │ │ │ │ ├── create.ts │ │ │ │ │ ├── delete.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── list.ts │ │ │ │ ├── slut.ts │ │ │ │ ├── withdraw.ts │ │ │ │ └── work.ts │ │ │ ├── fun │ │ │ │ ├── 8ball.ts │ │ │ │ ├── anilist.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sayhi.ts │ │ │ │ └── tictactoe.ts │ │ │ ├── index.ts │ │ │ ├── moderation │ │ │ │ ├── automod │ │ │ │ │ ├── add.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── list.ts │ │ │ │ │ ├── remove.ts │ │ │ │ │ └── toggle.ts │ │ │ │ ├── ban.ts │ │ │ │ ├── index.ts │ │ │ │ ├── kick.ts │ │ │ │ ├── logging.ts │ │ │ │ ├── report.ts │ │ │ │ ├── timeout.ts │ │ │ │ ├── unban.ts │ │ │ │ └── utils.ts │ │ │ ├── modules.ts │ │ │ ├── prefix │ │ │ │ ├── eval.ts │ │ │ │ ├── example.ts │ │ │ │ └── index.ts │ │ │ ├── query-engine.ts │ │ │ ├── taskyland.ts │ │ │ └── utilities │ │ │ │ ├── ai.tsx │ │ │ │ ├── github.ts │ │ │ │ ├── npm.ts │ │ │ │ ├── reminder.ts │ │ │ │ ├── translate.ts │ │ │ │ └── wikipedia.ts │ │ ├── framework │ │ │ ├── ask-ai-handler.ts │ │ │ ├── client.ts │ │ │ ├── index.ts │ │ │ ├── managers │ │ │ │ ├── index.ts │ │ │ │ ├── interactions.ts │ │ │ │ ├── plugins.ts │ │ │ │ └── prefix-commands.ts │ │ │ ├── modules │ │ │ │ ├── analytics.ts │ │ │ │ ├── economy.ts │ │ │ │ ├── index.ts │ │ │ │ ├── personality-engine.ts │ │ │ │ ├── query-engine.ts │ │ │ │ ├── scheduler.ts │ │ │ │ ├── shop.ts │ │ │ │ └── types.ts │ │ │ ├── query-engine-handler.tsx │ │ │ ├── structures │ │ │ │ ├── context.ts │ │ │ │ ├── events.ts │ │ │ │ ├── interaction.ts │ │ │ │ ├── messagecommand.ts │ │ │ │ ├── plugin.ts │ │ │ │ ├── prefix-context.ts │ │ │ │ ├── prefix-parser.ts │ │ │ │ ├── prefixcommand.ts │ │ │ │ ├── slashcommand.ts │ │ │ │ └── usercommand.ts │ │ │ ├── utils │ │ │ │ ├── anilist.ts │ │ │ │ ├── axiom-reporter.ts │ │ │ │ ├── common.ts │ │ │ │ ├── discord.ts │ │ │ │ ├── imagetoimage.ts │ │ │ │ ├── interaction-collector.ts │ │ │ │ ├── logger.ts │ │ │ │ ├── markdown.ts │ │ │ │ └── response-utils.ts │ │ │ └── webhook.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── ai │ │ │ │ ├── shared.tsx │ │ │ │ ├── tasks-action.tsx │ │ │ │ ├── tasks-create-submit.tsx │ │ │ │ ├── tasks-create.tsx │ │ │ │ ├── tasks-delete.ts │ │ │ │ ├── tasks-edit-submit.ts │ │ │ │ ├── tasks-edit.tsx │ │ │ │ ├── tasks-toggle.ts │ │ │ │ └── trigger-task.ts │ │ │ ├── reminder │ │ │ │ ├── resolve.ts │ │ │ │ └── submit.ts │ │ │ ├── report │ │ │ │ ├── create.ts │ │ │ │ └── resolve.ts │ │ │ └── support │ │ │ │ └── resolved.ts │ │ ├── main.ts │ │ ├── message │ │ │ └── fact-check.ts │ │ ├── plugins │ │ │ ├── adventofcode.ts │ │ │ ├── analytics.ts │ │ │ ├── ask-ai.ts │ │ │ ├── automod.ts │ │ │ ├── events.ts │ │ │ ├── guild-size-filter.ts │ │ │ ├── hacked-account-trap.ts │ │ │ ├── index.ts │ │ │ ├── member-logging.ts │ │ │ ├── privateersclub.ts │ │ │ ├── query-engine.ts │ │ │ └── taskyland.ts │ │ ├── reset.d.ts │ │ ├── services │ │ │ └── ai-reminder.ts │ │ ├── suppress-node-warnings.ts │ │ └── user │ │ │ ├── avatar.ts │ │ │ └── report.ts │ ├── tsconfig.json │ └── tsdown.config.ts └── dashboard │ ├── .gitignore │ ├── AGENTS.md │ ├── app │ ├── app.vue │ ├── assets │ │ └── css │ │ │ └── tailwind.css │ ├── components │ │ ├── app │ │ │ ├── ColorModeButton.vue │ │ │ └── ServerPicker.vue │ │ └── ui │ │ │ ├── accordion │ │ │ ├── Accordion.vue │ │ │ ├── AccordionContent.vue │ │ │ ├── AccordionItem.vue │ │ │ ├── AccordionTrigger.vue │ │ │ └── index.ts │ │ │ ├── alert-dialog │ │ │ ├── AlertDialog.vue │ │ │ ├── AlertDialogAction.vue │ │ │ ├── AlertDialogCancel.vue │ │ │ ├── AlertDialogContent.vue │ │ │ ├── AlertDialogDescription.vue │ │ │ ├── AlertDialogFooter.vue │ │ │ ├── AlertDialogHeader.vue │ │ │ ├── AlertDialogTitle.vue │ │ │ ├── AlertDialogTrigger.vue │ │ │ └── index.ts │ │ │ ├── alert │ │ │ ├── Alert.vue │ │ │ ├── AlertDescription.vue │ │ │ ├── AlertTitle.vue │ │ │ └── index.ts │ │ │ ├── aspect-ratio │ │ │ ├── AspectRatio.vue │ │ │ └── index.ts │ │ │ ├── auto-form │ │ │ ├── AutoForm.vue │ │ │ ├── AutoFormField.vue │ │ │ ├── AutoFormFieldArray.vue │ │ │ ├── AutoFormFieldBoolean.vue │ │ │ ├── AutoFormFieldDate.vue │ │ │ ├── AutoFormFieldEnum.vue │ │ │ ├── AutoFormFieldFile.vue │ │ │ ├── AutoFormFieldInput.vue │ │ │ ├── AutoFormFieldNumber.vue │ │ │ ├── AutoFormFieldObject.vue │ │ │ ├── AutoFormLabel.vue │ │ │ ├── constant.ts │ │ │ ├── dependencies.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── utils.ts │ │ │ ├── avatar │ │ │ ├── Avatar.vue │ │ │ ├── AvatarFallback.vue │ │ │ ├── AvatarImage.vue │ │ │ └── index.ts │ │ │ ├── badge │ │ │ ├── Badge.vue │ │ │ └── index.ts │ │ │ ├── breadcrumb │ │ │ ├── Breadcrumb.vue │ │ │ ├── BreadcrumbEllipsis.vue │ │ │ ├── BreadcrumbItem.vue │ │ │ ├── BreadcrumbLink.vue │ │ │ ├── BreadcrumbList.vue │ │ │ ├── BreadcrumbPage.vue │ │ │ ├── BreadcrumbSeparator.vue │ │ │ └── index.ts │ │ │ ├── button-group │ │ │ ├── ButtonGroup.vue │ │ │ ├── ButtonGroupSeparator.vue │ │ │ ├── ButtonGroupText.vue │ │ │ └── index.ts │ │ │ ├── button │ │ │ ├── Button.vue │ │ │ └── index.ts │ │ │ ├── calendar │ │ │ ├── Calendar.vue │ │ │ ├── CalendarCell.vue │ │ │ ├── CalendarCellTrigger.vue │ │ │ ├── CalendarGrid.vue │ │ │ ├── CalendarGridBody.vue │ │ │ ├── CalendarGridHead.vue │ │ │ ├── CalendarGridRow.vue │ │ │ ├── CalendarHeadCell.vue │ │ │ ├── CalendarHeader.vue │ │ │ ├── CalendarHeading.vue │ │ │ ├── CalendarNextButton.vue │ │ │ ├── CalendarPrevButton.vue │ │ │ └── index.ts │ │ │ ├── card │ │ │ ├── Card.vue │ │ │ ├── CardAction.vue │ │ │ ├── CardContent.vue │ │ │ ├── CardDescription.vue │ │ │ ├── CardFooter.vue │ │ │ ├── CardHeader.vue │ │ │ ├── CardTitle.vue │ │ │ └── index.ts │ │ │ ├── carousel │ │ │ ├── Carousel.vue │ │ │ ├── CarouselContent.vue │ │ │ ├── CarouselItem.vue │ │ │ ├── CarouselNext.vue │ │ │ ├── CarouselPrevious.vue │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── useCarousel.ts │ │ │ ├── chart-area │ │ │ ├── AreaChart.vue │ │ │ └── index.ts │ │ │ ├── chart-bar │ │ │ ├── BarChart.vue │ │ │ └── index.ts │ │ │ ├── chart-donut │ │ │ ├── DonutChart.vue │ │ │ └── index.ts │ │ │ ├── chart-line │ │ │ ├── LineChart.vue │ │ │ └── index.ts │ │ │ ├── chart │ │ │ ├── ChartCrosshair.vue │ │ │ ├── ChartLegend.vue │ │ │ ├── ChartSingleTooltip.vue │ │ │ ├── ChartTooltip.vue │ │ │ ├── index.ts │ │ │ └── interface.ts │ │ │ ├── checkbox │ │ │ ├── Checkbox.vue │ │ │ └── index.ts │ │ │ ├── collapsible │ │ │ ├── Collapsible.vue │ │ │ ├── CollapsibleContent.vue │ │ │ ├── CollapsibleTrigger.vue │ │ │ └── index.ts │ │ │ ├── combobox │ │ │ ├── Combobox.vue │ │ │ ├── ComboboxAnchor.vue │ │ │ ├── ComboboxEmpty.vue │ │ │ ├── ComboboxGroup.vue │ │ │ ├── ComboboxInput.vue │ │ │ ├── ComboboxItem.vue │ │ │ ├── ComboboxItemIndicator.vue │ │ │ ├── ComboboxList.vue │ │ │ ├── ComboboxSeparator.vue │ │ │ ├── ComboboxTrigger.vue │ │ │ ├── ComboboxViewport.vue │ │ │ └── index.ts │ │ │ ├── command │ │ │ ├── Command.vue │ │ │ ├── CommandDialog.vue │ │ │ ├── CommandEmpty.vue │ │ │ ├── CommandGroup.vue │ │ │ ├── CommandInput.vue │ │ │ ├── CommandItem.vue │ │ │ ├── CommandList.vue │ │ │ ├── CommandSeparator.vue │ │ │ ├── CommandShortcut.vue │ │ │ └── index.ts │ │ │ ├── context-menu │ │ │ ├── ContextMenu.vue │ │ │ ├── ContextMenuCheckboxItem.vue │ │ │ ├── ContextMenuContent.vue │ │ │ ├── ContextMenuGroup.vue │ │ │ ├── ContextMenuItem.vue │ │ │ ├── ContextMenuLabel.vue │ │ │ ├── ContextMenuPortal.vue │ │ │ ├── ContextMenuRadioGroup.vue │ │ │ ├── ContextMenuRadioItem.vue │ │ │ ├── ContextMenuSeparator.vue │ │ │ ├── ContextMenuShortcut.vue │ │ │ ├── ContextMenuSub.vue │ │ │ ├── ContextMenuSubContent.vue │ │ │ ├── ContextMenuSubTrigger.vue │ │ │ ├── ContextMenuTrigger.vue │ │ │ └── index.ts │ │ │ ├── dialog │ │ │ ├── Dialog.vue │ │ │ ├── DialogClose.vue │ │ │ ├── DialogContent.vue │ │ │ ├── DialogDescription.vue │ │ │ ├── DialogFooter.vue │ │ │ ├── DialogHeader.vue │ │ │ ├── DialogOverlay.vue │ │ │ ├── DialogScrollContent.vue │ │ │ ├── DialogTitle.vue │ │ │ ├── DialogTrigger.vue │ │ │ └── index.ts │ │ │ ├── drawer │ │ │ ├── Drawer.vue │ │ │ ├── DrawerClose.vue │ │ │ ├── DrawerContent.vue │ │ │ ├── DrawerDescription.vue │ │ │ ├── DrawerFooter.vue │ │ │ ├── DrawerHeader.vue │ │ │ ├── DrawerOverlay.vue │ │ │ ├── DrawerTitle.vue │ │ │ ├── DrawerTrigger.vue │ │ │ └── index.ts │ │ │ ├── dropdown-menu │ │ │ ├── DropdownMenu.vue │ │ │ ├── DropdownMenuCheckboxItem.vue │ │ │ ├── DropdownMenuContent.vue │ │ │ ├── DropdownMenuGroup.vue │ │ │ ├── DropdownMenuItem.vue │ │ │ ├── DropdownMenuLabel.vue │ │ │ ├── DropdownMenuRadioGroup.vue │ │ │ ├── DropdownMenuRadioItem.vue │ │ │ ├── DropdownMenuSeparator.vue │ │ │ ├── DropdownMenuShortcut.vue │ │ │ ├── DropdownMenuSub.vue │ │ │ ├── DropdownMenuSubContent.vue │ │ │ ├── DropdownMenuSubTrigger.vue │ │ │ ├── DropdownMenuTrigger.vue │ │ │ └── index.ts │ │ │ ├── empty │ │ │ ├── Empty.vue │ │ │ ├── EmptyContent.vue │ │ │ ├── EmptyDescription.vue │ │ │ ├── EmptyHeader.vue │ │ │ ├── EmptyMedia.vue │ │ │ ├── EmptyTitle.vue │ │ │ └── index.ts │ │ │ ├── field │ │ │ ├── Field.vue │ │ │ ├── FieldContent.vue │ │ │ ├── FieldDescription.vue │ │ │ ├── FieldError.vue │ │ │ ├── FieldGroup.vue │ │ │ ├── FieldLabel.vue │ │ │ ├── FieldLegend.vue │ │ │ ├── FieldSeparator.vue │ │ │ ├── FieldSet.vue │ │ │ ├── FieldTitle.vue │ │ │ └── index.ts │ │ │ ├── form │ │ │ ├── FormControl.vue │ │ │ ├── FormDescription.vue │ │ │ ├── FormItem.vue │ │ │ ├── FormLabel.vue │ │ │ ├── FormMessage.vue │ │ │ ├── index.ts │ │ │ ├── injectionKeys.ts │ │ │ └── useFormField.ts │ │ │ ├── hover-card │ │ │ ├── HoverCard.vue │ │ │ ├── HoverCardContent.vue │ │ │ ├── HoverCardTrigger.vue │ │ │ └── index.ts │ │ │ ├── input-group │ │ │ ├── InputGroup.vue │ │ │ ├── InputGroupAddon.vue │ │ │ ├── InputGroupButton.vue │ │ │ ├── InputGroupInput.vue │ │ │ ├── InputGroupText.vue │ │ │ ├── InputGroupTextarea.vue │ │ │ └── index.ts │ │ │ ├── input │ │ │ ├── Input.vue │ │ │ └── index.ts │ │ │ ├── item │ │ │ ├── Item.vue │ │ │ ├── ItemActions.vue │ │ │ ├── ItemContent.vue │ │ │ ├── ItemDescription.vue │ │ │ ├── ItemFooter.vue │ │ │ ├── ItemGroup.vue │ │ │ ├── ItemHeader.vue │ │ │ ├── ItemMedia.vue │ │ │ ├── ItemSeparator.vue │ │ │ ├── ItemTitle.vue │ │ │ └── index.ts │ │ │ ├── kbd │ │ │ ├── Kbd.vue │ │ │ ├── KbdGroup.vue │ │ │ └── index.ts │ │ │ ├── label │ │ │ ├── Label.vue │ │ │ └── index.ts │ │ │ ├── menubar │ │ │ ├── Menubar.vue │ │ │ ├── MenubarCheckboxItem.vue │ │ │ ├── MenubarContent.vue │ │ │ ├── MenubarGroup.vue │ │ │ ├── MenubarItem.vue │ │ │ ├── MenubarLabel.vue │ │ │ ├── MenubarMenu.vue │ │ │ ├── MenubarRadioGroup.vue │ │ │ ├── MenubarRadioItem.vue │ │ │ ├── MenubarSeparator.vue │ │ │ ├── MenubarShortcut.vue │ │ │ ├── MenubarSub.vue │ │ │ ├── MenubarSubContent.vue │ │ │ ├── MenubarSubTrigger.vue │ │ │ ├── MenubarTrigger.vue │ │ │ └── index.ts │ │ │ ├── navigation-menu │ │ │ ├── NavigationMenu.vue │ │ │ ├── NavigationMenuContent.vue │ │ │ ├── NavigationMenuIndicator.vue │ │ │ ├── NavigationMenuItem.vue │ │ │ ├── NavigationMenuLink.vue │ │ │ ├── NavigationMenuList.vue │ │ │ ├── NavigationMenuTrigger.vue │ │ │ ├── NavigationMenuViewport.vue │ │ │ └── index.ts │ │ │ ├── number-field │ │ │ ├── NumberField.vue │ │ │ ├── NumberFieldContent.vue │ │ │ ├── NumberFieldDecrement.vue │ │ │ ├── NumberFieldIncrement.vue │ │ │ ├── NumberFieldInput.vue │ │ │ └── index.ts │ │ │ ├── pagination │ │ │ ├── Pagination.vue │ │ │ ├── PaginationContent.vue │ │ │ ├── PaginationEllipsis.vue │ │ │ ├── PaginationFirst.vue │ │ │ ├── PaginationItem.vue │ │ │ ├── PaginationLast.vue │ │ │ ├── PaginationNext.vue │ │ │ ├── PaginationPrevious.vue │ │ │ └── index.ts │ │ │ ├── pin-input │ │ │ ├── PinInput.vue │ │ │ ├── PinInputGroup.vue │ │ │ ├── PinInputSeparator.vue │ │ │ ├── PinInputSlot.vue │ │ │ └── index.ts │ │ │ ├── popover │ │ │ ├── Popover.vue │ │ │ ├── PopoverAnchor.vue │ │ │ ├── PopoverContent.vue │ │ │ ├── PopoverTrigger.vue │ │ │ └── index.ts │ │ │ ├── progress │ │ │ ├── Progress.vue │ │ │ └── index.ts │ │ │ ├── radio-group │ │ │ ├── RadioGroup.vue │ │ │ ├── RadioGroupItem.vue │ │ │ └── index.ts │ │ │ ├── range-calendar │ │ │ ├── RangeCalendar.vue │ │ │ ├── RangeCalendarCell.vue │ │ │ ├── RangeCalendarCellTrigger.vue │ │ │ ├── RangeCalendarGrid.vue │ │ │ ├── RangeCalendarGridBody.vue │ │ │ ├── RangeCalendarGridHead.vue │ │ │ ├── RangeCalendarGridRow.vue │ │ │ ├── RangeCalendarHeadCell.vue │ │ │ ├── RangeCalendarHeader.vue │ │ │ ├── RangeCalendarHeading.vue │ │ │ ├── RangeCalendarNextButton.vue │ │ │ ├── RangeCalendarPrevButton.vue │ │ │ └── index.ts │ │ │ ├── resizable │ │ │ ├── ResizableHandle.vue │ │ │ ├── ResizablePanel.vue │ │ │ ├── ResizablePanelGroup.vue │ │ │ └── index.ts │ │ │ ├── scroll-area │ │ │ ├── ScrollArea.vue │ │ │ ├── ScrollBar.vue │ │ │ └── index.ts │ │ │ ├── select │ │ │ ├── Select.vue │ │ │ ├── SelectContent.vue │ │ │ ├── SelectGroup.vue │ │ │ ├── SelectItem.vue │ │ │ ├── SelectItemText.vue │ │ │ ├── SelectLabel.vue │ │ │ ├── SelectScrollDownButton.vue │ │ │ ├── SelectScrollUpButton.vue │ │ │ ├── SelectSeparator.vue │ │ │ ├── SelectTrigger.vue │ │ │ ├── SelectValue.vue │ │ │ └── index.ts │ │ │ ├── separator │ │ │ ├── Separator.vue │ │ │ └── index.ts │ │ │ ├── sheet │ │ │ ├── Sheet.vue │ │ │ ├── SheetClose.vue │ │ │ ├── SheetContent.vue │ │ │ ├── SheetDescription.vue │ │ │ ├── SheetFooter.vue │ │ │ ├── SheetHeader.vue │ │ │ ├── SheetOverlay.vue │ │ │ ├── SheetTitle.vue │ │ │ ├── SheetTrigger.vue │ │ │ └── index.ts │ │ │ ├── sidebar │ │ │ ├── Sidebar.vue │ │ │ ├── SidebarContent.vue │ │ │ ├── SidebarFooter.vue │ │ │ ├── SidebarGroup.vue │ │ │ ├── SidebarGroupAction.vue │ │ │ ├── SidebarGroupContent.vue │ │ │ ├── SidebarGroupLabel.vue │ │ │ ├── SidebarHeader.vue │ │ │ ├── SidebarInput.vue │ │ │ ├── SidebarInset.vue │ │ │ ├── SidebarMenu.vue │ │ │ ├── SidebarMenuAction.vue │ │ │ ├── SidebarMenuBadge.vue │ │ │ ├── SidebarMenuButton.vue │ │ │ ├── SidebarMenuButtonChild.vue │ │ │ ├── SidebarMenuItem.vue │ │ │ ├── SidebarMenuSkeleton.vue │ │ │ ├── SidebarMenuSub.vue │ │ │ ├── SidebarMenuSubButton.vue │ │ │ ├── SidebarMenuSubItem.vue │ │ │ ├── SidebarProvider.vue │ │ │ ├── SidebarRail.vue │ │ │ ├── SidebarSeparator.vue │ │ │ ├── SidebarTrigger.vue │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ │ ├── skeleton │ │ │ ├── Skeleton.vue │ │ │ └── index.ts │ │ │ ├── slider │ │ │ ├── Slider.vue │ │ │ └── index.ts │ │ │ ├── sonner │ │ │ ├── Sonner.vue │ │ │ └── index.ts │ │ │ ├── spinner │ │ │ ├── Spinner.vue │ │ │ └── index.ts │ │ │ ├── stepper │ │ │ ├── Stepper.vue │ │ │ ├── StepperDescription.vue │ │ │ ├── StepperIndicator.vue │ │ │ ├── StepperItem.vue │ │ │ ├── StepperSeparator.vue │ │ │ ├── StepperTitle.vue │ │ │ ├── StepperTrigger.vue │ │ │ └── index.ts │ │ │ ├── switch │ │ │ ├── Switch.vue │ │ │ └── index.ts │ │ │ ├── table │ │ │ ├── Table.vue │ │ │ ├── TableBody.vue │ │ │ ├── TableCaption.vue │ │ │ ├── TableCell.vue │ │ │ ├── TableEmpty.vue │ │ │ ├── TableFooter.vue │ │ │ ├── TableHead.vue │ │ │ ├── TableHeader.vue │ │ │ ├── TableRow.vue │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ │ ├── tabs │ │ │ ├── Tabs.vue │ │ │ ├── TabsContent.vue │ │ │ ├── TabsList.vue │ │ │ ├── TabsTrigger.vue │ │ │ └── index.ts │ │ │ ├── tags-input │ │ │ ├── TagsInput.vue │ │ │ ├── TagsInputInput.vue │ │ │ ├── TagsInputItem.vue │ │ │ ├── TagsInputItemDelete.vue │ │ │ ├── TagsInputItemText.vue │ │ │ └── index.ts │ │ │ ├── textarea │ │ │ ├── Textarea.vue │ │ │ └── index.ts │ │ │ ├── toggle-group │ │ │ ├── ToggleGroup.vue │ │ │ ├── ToggleGroupItem.vue │ │ │ └── index.ts │ │ │ ├── toggle │ │ │ ├── Toggle.vue │ │ │ └── index.ts │ │ │ └── tooltip │ │ │ ├── Tooltip.vue │ │ │ ├── TooltipContent.vue │ │ │ ├── TooltipProvider.vue │ │ │ ├── TooltipTrigger.vue │ │ │ └── index.ts │ ├── composables │ │ ├── auth.ts │ │ ├── fetch.ts │ │ ├── useFocusTrap.ts │ │ ├── useFormErrorHandling.ts │ │ └── useUnsavedChanges.ts │ ├── globals.css │ ├── layouts │ │ ├── auth.vue │ │ └── dashboard.vue │ ├── lib │ │ └── utils.ts │ ├── middleware │ │ ├── admin.ts │ │ ├── auth.ts │ │ └── guest.ts │ ├── pages │ │ ├── app.vue │ │ ├── app │ │ │ ├── admin.vue │ │ │ ├── index.vue │ │ │ └── server │ │ │ │ └── [guildId].vue │ │ └── index.vue │ ├── plugins │ │ └── auth.client.ts │ ├── stores │ │ └── counter.ts │ └── types │ │ └── server.ts │ ├── components.json │ ├── nuxt.config.ts │ ├── package.json │ ├── public │ ├── favicon.ico │ └── robots.txt │ ├── server │ ├── api │ │ ├── auth │ │ │ └── [...all].ts │ │ ├── bot │ │ │ ├── guilds.get.ts │ │ │ ├── guilds │ │ │ │ ├── [guildId].get.ts │ │ │ │ └── [guildId] │ │ │ │ │ ├── automod.get.ts │ │ │ │ │ ├── automod.post.ts │ │ │ │ │ ├── automod │ │ │ │ │ ├── [ruleId].delete.ts │ │ │ │ │ └── [ruleId].put.ts │ │ │ │ │ ├── channels.get.ts │ │ │ │ │ ├── config.get.ts │ │ │ │ │ └── config.put.ts │ │ │ ├── stats.get.ts │ │ │ └── status.get.ts │ │ └── discord │ │ │ └── servers.get.ts │ ├── plugins │ │ ├── bot.ts │ │ ├── cors.ts │ │ └── logger.dev.ts │ ├── tsconfig.json │ ├── types.d.ts │ └── utils │ │ ├── auth.ts │ │ ├── session.ts │ │ └── utils.ts │ └── tsconfig.json ├── bun.lock ├── bunfig.toml ├── deploy.sh ├── docker-compose.dev.yml ├── docker-compose.yml ├── docker ├── grafana │ ├── dashboards │ │ └── dashboard.yml │ └── datasources │ │ └── datasource.yml ├── lavalink │ └── application.yml ├── otel-collector │ └── config.yaml ├── prometheus │ └── prometheus.yml └── searxng │ ├── .gitkeep │ └── uwsgi.ini ├── lefthook.yml ├── opencode.json ├── package.json ├── packages ├── components-jsx │ ├── .gitignore │ ├── package.json │ ├── src │ │ ├── ActionRow.tsx │ │ ├── Button.tsx │ │ ├── ComponentMessage.tsx │ │ ├── Container.tsx │ │ ├── File.tsx │ │ ├── JSX.d.ts │ │ ├── Label.tsx │ │ ├── MediaGallery.tsx │ │ ├── MediaGalleryItem.tsx │ │ ├── MediaItem.tsx │ │ ├── MentionableSelect.tsx │ │ ├── RoleSelect.tsx │ │ ├── Section.tsx │ │ ├── Separator.tsx │ │ ├── StringSelect.tsx │ │ ├── TextDisplay.tsx │ │ ├── TextInput.tsx │ │ ├── Thumbnail.tsx │ │ ├── UserSelect.tsx │ │ ├── index.ts │ │ ├── jsx-dev-runtime.ts │ │ ├── jsx-runtime.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── tsdown.config.ts ├── database │ ├── .gitignore │ ├── package.json │ ├── prisma │ │ ├── migrations │ │ │ ├── 20240807110929_reset │ │ │ │ └── migration.sql │ │ │ ├── 20250721221104_frontend_better_auth_schemas │ │ │ │ └── migration.sql │ │ │ ├── 20250727112318_config │ │ │ │ └── migration.sql │ │ │ ├── 20250727161848_message_events │ │ │ │ └── migration.sql │ │ │ ├── 20250910115945_add_query_engine_models │ │ │ │ └── migration.sql │ │ │ ├── 20250910144617_query_engine_settings │ │ │ │ └── migration.sql │ │ │ ├── 20250910150428_query_engine_forum_channel_setting │ │ │ │ └── migration.sql │ │ │ ├── 20250911064657_query_engine_settings_changes │ │ │ │ └── migration.sql │ │ │ ├── 20250911120800_rename_rag_system_prompt_to_system_prompt │ │ │ │ └── migration.sql │ │ │ ├── 20250912074209_prefill_system_prpmpt_and_example_qna │ │ │ │ └── migration.sql │ │ │ ├── 20250913102439_dont_store_compiled_data │ │ │ │ └── migration.sql │ │ │ ├── 20250917114853_automod │ │ │ │ └── migration.sql │ │ │ ├── 20250926144927_personalities │ │ │ │ └── migration.sql │ │ │ ├── 20250927175053_personality_make_name_the_id │ │ │ │ └── migration.sql │ │ │ ├── 20250929173216_whitelisted_ai_channels_only │ │ │ │ └── migration.sql │ │ │ ├── 20251014211501_add_ai_tasks │ │ │ │ └── migration.sql │ │ │ ├── 20251025170218_add_logging_features │ │ │ │ └── migration.sql │ │ │ ├── 20251030181254_user_personality │ │ │ │ └── migration.sql │ │ │ └── migration_lock.toml │ │ └── schema.prisma │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── tsdown.config.ts ├── env │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── inference-engine │ ├── .gitignore │ ├── package.json │ ├── src │ │ ├── ai-tasks │ │ │ ├── evals.ts │ │ │ └── index.ts │ │ ├── ask-ai-engine │ │ │ ├── evals.ts │ │ │ └── index.ts │ │ ├── embedding.ts │ │ ├── fact-check │ │ │ └── index.ts │ │ ├── image-generation │ │ │ ├── evals.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── jsonrepair │ │ │ ├── errors.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── logger.ts │ │ ├── personality-engine │ │ │ ├── client-manager.ts │ │ │ ├── data-processor.ts │ │ │ ├── evals.ts │ │ │ ├── index.ts │ │ │ ├── memory-system.ts │ │ │ ├── personality-manager.ts │ │ │ ├── settings.ts │ │ │ └── tools │ │ │ │ ├── context-builder.ts │ │ │ │ ├── index.ts │ │ │ │ └── memory-tools.ts │ │ ├── query-engine │ │ │ ├── compiler.ts │ │ │ ├── evals.ts │ │ │ ├── index.ts │ │ │ ├── markdown-reader.ts │ │ │ ├── query-tool.ts │ │ │ ├── sdk.ts │ │ │ ├── seed.ts │ │ │ ├── settings.ts │ │ │ └── system-prompt.ts │ │ ├── smugshroom.ts │ │ ├── utils.ts │ │ └── velvet │ │ │ ├── generated.ts │ │ │ └── index.ts │ ├── tsconfig.json │ └── tsdown.config.ts ├── testing-library │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── Client.test.ts │ │ │ ├── Client.ts │ │ │ ├── index.ts │ │ │ └── structures │ │ │ └── TextChannel.ts │ └── tsconfig.json └── typescript-config │ ├── base.json │ └── package.json ├── pncat.config.ts └── x.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.dockerignore -------------------------------------------------------------------------------- /.dprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.dprint.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.env.example -------------------------------------------------------------------------------- /.env.prod.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.env.prod.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.gitignore -------------------------------------------------------------------------------- /.helix/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.helix/languages.toml -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | !personalities 2 | !inference -------------------------------------------------------------------------------- /.infisical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.infisical.json -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.mise.toml -------------------------------------------------------------------------------- /.oxlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.oxlintrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/AGENTS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/README.md -------------------------------------------------------------------------------- /apps/bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/package.json -------------------------------------------------------------------------------- /apps/bot/public/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/public/loading.gif -------------------------------------------------------------------------------- /apps/bot/src/automod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/automod/index.ts -------------------------------------------------------------------------------- /apps/bot/src/clear-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/clear-commands.ts -------------------------------------------------------------------------------- /apps/bot/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/cli.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/balance.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/crime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/crime.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/currency.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/deposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/deposit.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/index.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/rob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/rob.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/shop/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/shop/buy.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/shop/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/shop/create.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/shop/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/shop/delete.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/shop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/shop/index.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/shop/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/shop/list.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/slut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/slut.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/withdraw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/withdraw.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/economy/work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/economy/work.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/fun/8ball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/fun/8ball.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/fun/anilist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/fun/anilist.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/fun/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/fun/index.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/fun/sayhi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/fun/sayhi.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/fun/tictactoe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/fun/tictactoe.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/index.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/automod/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/automod/add.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/automod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/automod/index.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/automod/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/automod/list.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/automod/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/automod/remove.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/automod/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/automod/toggle.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/ban.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/index.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/kick.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/logging.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/report.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/timeout.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/unban.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/moderation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/moderation/utils.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/modules.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/prefix/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/prefix/eval.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/prefix/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/prefix/example.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/prefix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/prefix/index.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/query-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/query-engine.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/taskyland.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/taskyland.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/utilities/ai.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/utilities/ai.tsx -------------------------------------------------------------------------------- /apps/bot/src/commands/utilities/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/utilities/github.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/utilities/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/utilities/npm.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/utilities/reminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/utilities/reminder.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/utilities/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/utilities/translate.ts -------------------------------------------------------------------------------- /apps/bot/src/commands/utilities/wikipedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/commands/utilities/wikipedia.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/ask-ai-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/ask-ai-handler.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/client.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/index.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/managers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/managers/index.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/managers/interactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/managers/interactions.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/managers/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/managers/plugins.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/managers/prefix-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/managers/prefix-commands.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/modules/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/modules/analytics.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/modules/economy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/modules/economy.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/modules/index.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/modules/personality-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/modules/personality-engine.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/modules/query-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/modules/query-engine.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/modules/scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/modules/scheduler.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/modules/shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/modules/shop.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/modules/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/modules/types.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/query-engine-handler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/query-engine-handler.tsx -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/context.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/events.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/interaction.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/messagecommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/messagecommand.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/plugin.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/prefix-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/prefix-context.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/prefix-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/prefix-parser.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/prefixcommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/prefixcommand.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/slashcommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/slashcommand.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/structures/usercommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/structures/usercommand.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/anilist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/anilist.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/axiom-reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/axiom-reporter.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/common.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/discord.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/imagetoimage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/imagetoimage.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/interaction-collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/interaction-collector.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/logger.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/markdown.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/utils/response-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/utils/response-utils.ts -------------------------------------------------------------------------------- /apps/bot/src/framework/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/framework/webhook.ts -------------------------------------------------------------------------------- /apps/bot/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './framework' 2 | -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/shared.tsx -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/tasks-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/tasks-action.tsx -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/tasks-create-submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/tasks-create-submit.tsx -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/tasks-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/tasks-create.tsx -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/tasks-delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/tasks-delete.ts -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/tasks-edit-submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/tasks-edit-submit.ts -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/tasks-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/tasks-edit.tsx -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/tasks-toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/tasks-toggle.ts -------------------------------------------------------------------------------- /apps/bot/src/interactions/ai/trigger-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/ai/trigger-task.ts -------------------------------------------------------------------------------- /apps/bot/src/interactions/reminder/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/reminder/resolve.ts -------------------------------------------------------------------------------- /apps/bot/src/interactions/reminder/submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/reminder/submit.ts -------------------------------------------------------------------------------- /apps/bot/src/interactions/report/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/report/create.ts -------------------------------------------------------------------------------- /apps/bot/src/interactions/report/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/report/resolve.ts -------------------------------------------------------------------------------- /apps/bot/src/interactions/support/resolved.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/interactions/support/resolved.ts -------------------------------------------------------------------------------- /apps/bot/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/main.ts -------------------------------------------------------------------------------- /apps/bot/src/message/fact-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/message/fact-check.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/adventofcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/adventofcode.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/analytics.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/ask-ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/ask-ai.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/automod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/automod.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/events.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/guild-size-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/guild-size-filter.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/hacked-account-trap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/hacked-account-trap.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/index.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/member-logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/member-logging.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/privateersclub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/privateersclub.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/query-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/query-engine.ts -------------------------------------------------------------------------------- /apps/bot/src/plugins/taskyland.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/plugins/taskyland.ts -------------------------------------------------------------------------------- /apps/bot/src/reset.d.ts: -------------------------------------------------------------------------------- 1 | import '@total-typescript/ts-reset' 2 | -------------------------------------------------------------------------------- /apps/bot/src/services/ai-reminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/services/ai-reminder.ts -------------------------------------------------------------------------------- /apps/bot/src/suppress-node-warnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/suppress-node-warnings.ts -------------------------------------------------------------------------------- /apps/bot/src/user/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/user/avatar.ts -------------------------------------------------------------------------------- /apps/bot/src/user/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/src/user/report.ts -------------------------------------------------------------------------------- /apps/bot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/tsconfig.json -------------------------------------------------------------------------------- /apps/bot/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/bot/tsdown.config.ts -------------------------------------------------------------------------------- /apps/dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/.gitignore -------------------------------------------------------------------------------- /apps/dashboard/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/AGENTS.md -------------------------------------------------------------------------------- /apps/dashboard/app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/app.vue -------------------------------------------------------------------------------- /apps/dashboard/app/assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/assets/css/tailwind.css -------------------------------------------------------------------------------- /apps/dashboard/app/components/app/ColorModeButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/app/ColorModeButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/app/ServerPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/app/ServerPicker.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/accordion/Accordion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/accordion/Accordion.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/accordion/AccordionContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/accordion/AccordionContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/accordion/AccordionItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/accordion/AccordionItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/accordion/AccordionTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/accordion/AccordionTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/accordion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/accordion/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialog.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialogAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialogAction.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialogCancel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialogCancel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialogContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialogContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialogDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialogDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialogFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialogFooter.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialogHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialogHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialogTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialogTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/AlertDialogTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/AlertDialogTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert-dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert-dialog/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert/Alert.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert/AlertDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert/AlertDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert/AlertTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert/AlertTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/alert/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/aspect-ratio/AspectRatio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/aspect-ratio/AspectRatio.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/aspect-ratio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/aspect-ratio/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoForm.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormField.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormFieldArray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormFieldArray.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormFieldBoolean.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormFieldBoolean.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormFieldDate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormFieldDate.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormFieldEnum.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormFieldEnum.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormFieldFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormFieldFile.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormFieldInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormFieldInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormFieldNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormFieldNumber.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormFieldObject.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormFieldObject.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/AutoFormLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/AutoFormLabel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/constant.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/dependencies.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/interface.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/auto-form/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/auto-form/utils.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/avatar/Avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/avatar/Avatar.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/avatar/AvatarFallback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/avatar/AvatarFallback.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/avatar/AvatarImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/avatar/AvatarImage.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/avatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/avatar/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/badge/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/badge/Badge.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/badge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/badge/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/breadcrumb/Breadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/breadcrumb/Breadcrumb.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/breadcrumb/BreadcrumbEllipsis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/breadcrumb/BreadcrumbEllipsis.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/breadcrumb/BreadcrumbItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/breadcrumb/BreadcrumbItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/breadcrumb/BreadcrumbLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/breadcrumb/BreadcrumbLink.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/breadcrumb/BreadcrumbList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/breadcrumb/BreadcrumbList.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/breadcrumb/BreadcrumbPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/breadcrumb/BreadcrumbPage.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/breadcrumb/BreadcrumbSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/breadcrumb/BreadcrumbSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/breadcrumb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/breadcrumb/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/button-group/ButtonGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/button-group/ButtonGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/button-group/ButtonGroupSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/button-group/ButtonGroupSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/button-group/ButtonGroupText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/button-group/ButtonGroupText.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/button-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/button-group/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/button/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/button/Button.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/button/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/Calendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/Calendar.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarCell.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarCellTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarCellTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarGrid.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarGridBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarGridBody.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarGridHead.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarGridHead.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarGridRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarGridRow.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarHeadCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarHeadCell.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarHeading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarHeading.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarNextButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarNextButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/CalendarPrevButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/CalendarPrevButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/calendar/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/card/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/card/Card.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/card/CardAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/card/CardAction.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/card/CardContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/card/CardContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/card/CardDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/card/CardDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/card/CardFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/card/CardFooter.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/card/CardHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/card/CardHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/card/CardTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/card/CardTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/card/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/carousel/Carousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/carousel/Carousel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/carousel/CarouselContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/carousel/CarouselContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/carousel/CarouselItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/carousel/CarouselItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/carousel/CarouselNext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/carousel/CarouselNext.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/carousel/CarouselPrevious.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/carousel/CarouselPrevious.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/carousel/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/carousel/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/carousel/interface.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/carousel/useCarousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/carousel/useCarousel.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart-area/AreaChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart-area/AreaChart.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart-area/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart-area/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart-bar/BarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart-bar/BarChart.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart-bar/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart-donut/DonutChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart-donut/DonutChart.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart-donut/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart-donut/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart-line/LineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart-line/LineChart.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart-line/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart-line/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart/ChartCrosshair.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart/ChartCrosshair.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart/ChartLegend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart/ChartLegend.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart/ChartSingleTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart/ChartSingleTooltip.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart/ChartTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart/ChartTooltip.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/chart/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/chart/interface.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/checkbox/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/checkbox/Checkbox.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/checkbox/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/collapsible/Collapsible.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/collapsible/Collapsible.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/collapsible/CollapsibleContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/collapsible/CollapsibleContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/collapsible/CollapsibleTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/collapsible/CollapsibleTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/collapsible/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/collapsible/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/Combobox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/Combobox.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxAnchor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxAnchor.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxEmpty.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxItemIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxItemIndicator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxList.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/ComboboxViewport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/ComboboxViewport.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/combobox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/combobox/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/Command.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/Command.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/CommandDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/CommandDialog.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/CommandEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/CommandEmpty.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/CommandGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/CommandGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/CommandInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/CommandInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/CommandItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/CommandItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/CommandList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/CommandList.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/CommandSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/CommandSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/CommandShortcut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/CommandShortcut.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/command/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenu.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuCheckboxItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuCheckboxItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuLabel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuPortal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuPortal.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuRadioGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuRadioGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuRadioItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuRadioItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuShortcut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuShortcut.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuSub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuSub.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuSubContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuSubContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuSubTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuSubTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/ContextMenuTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/ContextMenuTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/context-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/context-menu/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/Dialog.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogClose.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogFooter.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogOverlay.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogScrollContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogScrollContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/DialogTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/DialogTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dialog/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/Drawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/Drawer.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/DrawerClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/DrawerClose.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/DrawerContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/DrawerContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/DrawerDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/DrawerDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/DrawerFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/DrawerFooter.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/DrawerHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/DrawerHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/DrawerOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/DrawerOverlay.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/DrawerTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/DrawerTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/DrawerTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/DrawerTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/drawer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/drawer/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenu.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuLabel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuRadioItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuRadioItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuShortcut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuShortcut.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuSub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuSub.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuSubContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuSubContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/DropdownMenuTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/dropdown-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/dropdown-menu/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/empty/Empty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/empty/Empty.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/empty/EmptyContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/empty/EmptyContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/empty/EmptyDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/empty/EmptyDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/empty/EmptyHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/empty/EmptyHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/empty/EmptyMedia.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/empty/EmptyMedia.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/empty/EmptyTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/empty/EmptyTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/empty/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/empty/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/Field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/Field.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldError.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldLabel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldLegend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldLegend.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldSet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldSet.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/FieldTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/FieldTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/field/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/form/FormControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/form/FormControl.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/form/FormDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/form/FormDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/form/FormItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/form/FormItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/form/FormLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/form/FormLabel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/form/FormMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/form/FormMessage.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/form/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/form/injectionKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/form/injectionKeys.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/form/useFormField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/form/useFormField.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/hover-card/HoverCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/hover-card/HoverCard.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/hover-card/HoverCardContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/hover-card/HoverCardContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/hover-card/HoverCardTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/hover-card/HoverCardTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/hover-card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/hover-card/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input-group/InputGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input-group/InputGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input-group/InputGroupAddon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input-group/InputGroupAddon.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input-group/InputGroupButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input-group/InputGroupButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input-group/InputGroupInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input-group/InputGroupInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input-group/InputGroupText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input-group/InputGroupText.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input-group/InputGroupTextarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input-group/InputGroupTextarea.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input-group/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input/Input.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/input/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/Item.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemActions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemActions.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemFooter.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemMedia.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemMedia.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/ItemTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/ItemTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/item/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/kbd/Kbd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/kbd/Kbd.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/kbd/KbdGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/kbd/KbdGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/kbd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/kbd/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/label/Label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/label/Label.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/label/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/Menubar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/Menubar.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarCheckboxItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarCheckboxItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarLabel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarMenu.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarRadioGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarRadioGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarRadioItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarRadioItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarShortcut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarShortcut.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarSub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarSub.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarSubContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarSubContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarSubTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarSubTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/MenubarTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/MenubarTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/menubar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/menubar/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/NavigationMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/NavigationMenu.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/NavigationMenuContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/NavigationMenuContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/NavigationMenuIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/NavigationMenuIndicator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/NavigationMenuItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/NavigationMenuItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/NavigationMenuLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/NavigationMenuLink.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/NavigationMenuList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/NavigationMenuList.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/NavigationMenuTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/NavigationMenuTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/NavigationMenuViewport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/NavigationMenuViewport.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/navigation-menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/navigation-menu/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/number-field/NumberField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/number-field/NumberField.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/number-field/NumberFieldContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/number-field/NumberFieldContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/number-field/NumberFieldDecrement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/number-field/NumberFieldDecrement.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/number-field/NumberFieldIncrement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/number-field/NumberFieldIncrement.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/number-field/NumberFieldInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/number-field/NumberFieldInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/number-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/number-field/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/Pagination.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/PaginationContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/PaginationContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/PaginationEllipsis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/PaginationEllipsis.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/PaginationFirst.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/PaginationFirst.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/PaginationItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/PaginationItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/PaginationLast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/PaginationLast.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/PaginationNext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/PaginationNext.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/PaginationPrevious.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/PaginationPrevious.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pagination/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pin-input/PinInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pin-input/PinInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pin-input/PinInputGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pin-input/PinInputGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pin-input/PinInputSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pin-input/PinInputSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pin-input/PinInputSlot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pin-input/PinInputSlot.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/pin-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/pin-input/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/popover/Popover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/popover/Popover.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/popover/PopoverAnchor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/popover/PopoverAnchor.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/popover/PopoverContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/popover/PopoverContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/popover/PopoverTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/popover/PopoverTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/popover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/popover/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/progress/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/progress/Progress.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/progress/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/radio-group/RadioGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/radio-group/RadioGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/radio-group/RadioGroupItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/radio-group/RadioGroupItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/radio-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/radio-group/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendar.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarCell.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarCellTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarCellTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarGrid.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarGridBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarGridBody.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarGridHead.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarGridHead.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarGridRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarGridRow.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarHeadCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarHeadCell.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarHeading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarHeading.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarNextButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarNextButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/RangeCalendarPrevButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/RangeCalendarPrevButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/range-calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/range-calendar/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/resizable/ResizableHandle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/resizable/ResizableHandle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/resizable/ResizablePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/resizable/ResizablePanel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/resizable/ResizablePanelGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/resizable/ResizablePanelGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/resizable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/resizable/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/scroll-area/ScrollArea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/scroll-area/ScrollArea.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/scroll-area/ScrollBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/scroll-area/ScrollBar.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/scroll-area/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/scroll-area/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/Select.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectItemText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectItemText.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectLabel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectScrollDownButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectScrollDownButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectScrollUpButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectScrollUpButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/SelectValue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/SelectValue.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/select/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/separator/Separator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/separator/Separator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/separator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/separator/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/Sheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/Sheet.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/SheetClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/SheetClose.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/SheetContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/SheetContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/SheetDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/SheetDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/SheetFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/SheetFooter.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/SheetHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/SheetHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/SheetOverlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/SheetOverlay.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/SheetTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/SheetTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/SheetTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/SheetTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sheet/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/Sidebar.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarFooter.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarGroupAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarGroupAction.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarGroupContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarGroupContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarGroupLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarGroupLabel.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarInset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarInset.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenu.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuAction.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuBadge.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuButtonChild.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuButtonChild.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuSkeleton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuSub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuSub.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuSubButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuSubButton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarMenuSubItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarMenuSubItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarProvider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarProvider.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarRail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarRail.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/SidebarTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/SidebarTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sidebar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sidebar/utils.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/skeleton/Skeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/skeleton/Skeleton.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/skeleton/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/skeleton/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/slider/Slider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/slider/Slider.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/slider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/slider/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sonner/Sonner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/sonner/Sonner.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/sonner/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Toaster } from './Sonner.vue' 2 | -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/spinner/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/spinner/Spinner.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/spinner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/spinner/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/stepper/Stepper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/stepper/Stepper.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/stepper/StepperDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/stepper/StepperDescription.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/stepper/StepperIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/stepper/StepperIndicator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/stepper/StepperItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/stepper/StepperItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/stepper/StepperSeparator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/stepper/StepperSeparator.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/stepper/StepperTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/stepper/StepperTitle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/stepper/StepperTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/stepper/StepperTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/stepper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/stepper/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/switch/Switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/switch/Switch.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/switch/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/Table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/Table.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/TableBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/TableBody.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/TableCaption.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/TableCaption.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/TableCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/TableCell.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/TableEmpty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/TableEmpty.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/TableFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/TableFooter.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/TableHead.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/TableHead.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/TableHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/TableHeader.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/TableRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/TableRow.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/table/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/table/utils.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tabs/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tabs/Tabs.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tabs/TabsContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tabs/TabsContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tabs/TabsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tabs/TabsList.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tabs/TabsTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tabs/TabsTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tabs/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tags-input/TagsInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tags-input/TagsInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tags-input/TagsInputInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tags-input/TagsInputInput.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tags-input/TagsInputItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tags-input/TagsInputItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tags-input/TagsInputItemDelete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tags-input/TagsInputItemDelete.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tags-input/TagsInputItemText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tags-input/TagsInputItemText.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tags-input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tags-input/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/textarea/Textarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/textarea/Textarea.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/textarea/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/textarea/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/toggle-group/ToggleGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/toggle-group/ToggleGroup.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/toggle-group/ToggleGroupItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/toggle-group/ToggleGroupItem.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/toggle-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/toggle-group/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/toggle/Toggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/toggle/Toggle.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/toggle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/toggle/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tooltip/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tooltip/Tooltip.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tooltip/TooltipContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tooltip/TooltipContent.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tooltip/TooltipProvider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tooltip/TooltipProvider.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tooltip/TooltipTrigger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tooltip/TooltipTrigger.vue -------------------------------------------------------------------------------- /apps/dashboard/app/components/ui/tooltip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/components/ui/tooltip/index.ts -------------------------------------------------------------------------------- /apps/dashboard/app/composables/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/composables/auth.ts -------------------------------------------------------------------------------- /apps/dashboard/app/composables/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/composables/fetch.ts -------------------------------------------------------------------------------- /apps/dashboard/app/composables/useFocusTrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/composables/useFocusTrap.ts -------------------------------------------------------------------------------- /apps/dashboard/app/composables/useFormErrorHandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/composables/useFormErrorHandling.ts -------------------------------------------------------------------------------- /apps/dashboard/app/composables/useUnsavedChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/composables/useUnsavedChanges.ts -------------------------------------------------------------------------------- /apps/dashboard/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/globals.css -------------------------------------------------------------------------------- /apps/dashboard/app/layouts/auth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/layouts/auth.vue -------------------------------------------------------------------------------- /apps/dashboard/app/layouts/dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/layouts/dashboard.vue -------------------------------------------------------------------------------- /apps/dashboard/app/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/lib/utils.ts -------------------------------------------------------------------------------- /apps/dashboard/app/middleware/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/middleware/admin.ts -------------------------------------------------------------------------------- /apps/dashboard/app/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/middleware/auth.ts -------------------------------------------------------------------------------- /apps/dashboard/app/middleware/guest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/middleware/guest.ts -------------------------------------------------------------------------------- /apps/dashboard/app/pages/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/pages/app.vue -------------------------------------------------------------------------------- /apps/dashboard/app/pages/app/admin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/pages/app/admin.vue -------------------------------------------------------------------------------- /apps/dashboard/app/pages/app/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/pages/app/index.vue -------------------------------------------------------------------------------- /apps/dashboard/app/pages/app/server/[guildId].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/pages/app/server/[guildId].vue -------------------------------------------------------------------------------- /apps/dashboard/app/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/pages/index.vue -------------------------------------------------------------------------------- /apps/dashboard/app/plugins/auth.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/plugins/auth.client.ts -------------------------------------------------------------------------------- /apps/dashboard/app/stores/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/stores/counter.ts -------------------------------------------------------------------------------- /apps/dashboard/app/types/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/app/types/server.ts -------------------------------------------------------------------------------- /apps/dashboard/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/components.json -------------------------------------------------------------------------------- /apps/dashboard/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/nuxt.config.ts -------------------------------------------------------------------------------- /apps/dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/package.json -------------------------------------------------------------------------------- /apps/dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/public/favicon.ico -------------------------------------------------------------------------------- /apps/dashboard/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /apps/dashboard/server/api/auth/[...all].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/auth/[...all].ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds.get.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds/[guildId].get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds/[guildId].get.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds/[guildId]/automod.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds/[guildId]/automod.get.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds/[guildId]/automod.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds/[guildId]/automod.post.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds/[guildId]/automod/[ruleId].delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds/[guildId]/automod/[ruleId].delete.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds/[guildId]/automod/[ruleId].put.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds/[guildId]/automod/[ruleId].put.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds/[guildId]/channels.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds/[guildId]/channels.get.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds/[guildId]/config.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds/[guildId]/config.get.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/guilds/[guildId]/config.put.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/guilds/[guildId]/config.put.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/stats.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/stats.get.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/bot/status.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/bot/status.get.ts -------------------------------------------------------------------------------- /apps/dashboard/server/api/discord/servers.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/api/discord/servers.get.ts -------------------------------------------------------------------------------- /apps/dashboard/server/plugins/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/plugins/bot.ts -------------------------------------------------------------------------------- /apps/dashboard/server/plugins/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/plugins/cors.ts -------------------------------------------------------------------------------- /apps/dashboard/server/plugins/logger.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/plugins/logger.dev.ts -------------------------------------------------------------------------------- /apps/dashboard/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /apps/dashboard/server/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/types.d.ts -------------------------------------------------------------------------------- /apps/dashboard/server/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/utils/auth.ts -------------------------------------------------------------------------------- /apps/dashboard/server/utils/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/utils/session.ts -------------------------------------------------------------------------------- /apps/dashboard/server/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/server/utils/utils.ts -------------------------------------------------------------------------------- /apps/dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/apps/dashboard/tsconfig.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/bun.lock -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- 1 | [install] 2 | linker = "isolated" 3 | -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/deploy.sh -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/docker/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /docker/grafana/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/docker/grafana/datasources/datasource.yml -------------------------------------------------------------------------------- /docker/lavalink/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/docker/lavalink/application.yml -------------------------------------------------------------------------------- /docker/otel-collector/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/docker/otel-collector/config.yaml -------------------------------------------------------------------------------- /docker/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/docker/prometheus/prometheus.yml -------------------------------------------------------------------------------- /docker/searxng/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/searxng/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/docker/searxng/uwsgi.ini -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/lefthook.yml -------------------------------------------------------------------------------- /opencode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/opencode.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/package.json -------------------------------------------------------------------------------- /packages/components-jsx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/.gitignore -------------------------------------------------------------------------------- /packages/components-jsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/package.json -------------------------------------------------------------------------------- /packages/components-jsx/src/ActionRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/ActionRow.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/Button.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/ComponentMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/ComponentMessage.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/Container.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/File.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/File.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/JSX.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/JSX.d.ts -------------------------------------------------------------------------------- /packages/components-jsx/src/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/Label.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/MediaGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/MediaGallery.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/MediaGalleryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/MediaGalleryItem.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/MediaItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/MediaItem.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/MentionableSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/MentionableSelect.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/RoleSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/RoleSelect.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/Section.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/Separator.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/StringSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/StringSelect.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/TextDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/TextDisplay.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/TextInput.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/Thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/Thumbnail.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/UserSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/UserSelect.tsx -------------------------------------------------------------------------------- /packages/components-jsx/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/index.ts -------------------------------------------------------------------------------- /packages/components-jsx/src/jsx-dev-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/jsx-dev-runtime.ts -------------------------------------------------------------------------------- /packages/components-jsx/src/jsx-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/jsx-runtime.ts -------------------------------------------------------------------------------- /packages/components-jsx/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/src/utils.ts -------------------------------------------------------------------------------- /packages/components-jsx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/tsconfig.json -------------------------------------------------------------------------------- /packages/components-jsx/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/components-jsx/tsdown.config.ts -------------------------------------------------------------------------------- /packages/database/.gitignore: -------------------------------------------------------------------------------- 1 | generated -------------------------------------------------------------------------------- /packages/database/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/package.json -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20240807110929_reset/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20240807110929_reset/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250721221104_frontend_better_auth_schemas/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250721221104_frontend_better_auth_schemas/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250727112318_config/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250727112318_config/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250727161848_message_events/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250727161848_message_events/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250910115945_add_query_engine_models/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250910115945_add_query_engine_models/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250910144617_query_engine_settings/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250910144617_query_engine_settings/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250910150428_query_engine_forum_channel_setting/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250910150428_query_engine_forum_channel_setting/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250911064657_query_engine_settings_changes/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250911064657_query_engine_settings_changes/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250911120800_rename_rag_system_prompt_to_system_prompt/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250911120800_rename_rag_system_prompt_to_system_prompt/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250912074209_prefill_system_prpmpt_and_example_qna/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250912074209_prefill_system_prpmpt_and_example_qna/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250913102439_dont_store_compiled_data/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250913102439_dont_store_compiled_data/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250917114853_automod/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250917114853_automod/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250926144927_personalities/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250926144927_personalities/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250927175053_personality_make_name_the_id/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250927175053_personality_make_name_the_id/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20250929173216_whitelisted_ai_channels_only/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20250929173216_whitelisted_ai_channels_only/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20251014211501_add_ai_tasks/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20251014211501_add_ai_tasks/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20251025170218_add_logging_features/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20251025170218_add_logging_features/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/20251030181254_user_personality/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/20251030181254_user_personality/migration.sql -------------------------------------------------------------------------------- /packages/database/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /packages/database/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/prisma/schema.prisma -------------------------------------------------------------------------------- /packages/database/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/src/index.ts -------------------------------------------------------------------------------- /packages/database/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/tsconfig.json -------------------------------------------------------------------------------- /packages/database/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/database/tsdown.config.ts -------------------------------------------------------------------------------- /packages/env/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/env/package.json -------------------------------------------------------------------------------- /packages/env/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/env/src/index.ts -------------------------------------------------------------------------------- /packages/env/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/env/tsconfig.json -------------------------------------------------------------------------------- /packages/inference-engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/.gitignore -------------------------------------------------------------------------------- /packages/inference-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/package.json -------------------------------------------------------------------------------- /packages/inference-engine/src/ai-tasks/evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/ai-tasks/evals.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/ai-tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/ai-tasks/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/ask-ai-engine/evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/ask-ai-engine/evals.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/ask-ai-engine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/ask-ai-engine/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/embedding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/embedding.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/fact-check/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/fact-check/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/image-generation/evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/image-generation/evals.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/image-generation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/image-generation/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/jsonrepair/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/jsonrepair/errors.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/jsonrepair/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/jsonrepair/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/jsonrepair/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/jsonrepair/utils.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/logger.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/client-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/client-manager.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/data-processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/data-processor.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/evals.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/memory-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/memory-system.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/personality-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/personality-manager.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/settings.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/tools/context-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/tools/context-builder.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/tools/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/personality-engine/tools/memory-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/personality-engine/tools/memory-tools.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/compiler.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/evals.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/markdown-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/markdown-reader.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/query-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/query-tool.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/sdk.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/seed.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/settings.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/query-engine/system-prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/query-engine/system-prompt.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/smugshroom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/smugshroom.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/utils.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/velvet/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/velvet/generated.ts -------------------------------------------------------------------------------- /packages/inference-engine/src/velvet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/src/velvet/index.ts -------------------------------------------------------------------------------- /packages/inference-engine/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/tsconfig.json -------------------------------------------------------------------------------- /packages/inference-engine/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/inference-engine/tsdown.config.ts -------------------------------------------------------------------------------- /packages/testing-library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/testing-library/.gitignore -------------------------------------------------------------------------------- /packages/testing-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/testing-library/README.md -------------------------------------------------------------------------------- /packages/testing-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/testing-library/package.json -------------------------------------------------------------------------------- /packages/testing-library/src/index.ts: -------------------------------------------------------------------------------- 1 | console.log('Hello via Bun!') 2 | -------------------------------------------------------------------------------- /packages/testing-library/src/lib/Client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/testing-library/src/lib/Client.test.ts -------------------------------------------------------------------------------- /packages/testing-library/src/lib/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/testing-library/src/lib/Client.ts -------------------------------------------------------------------------------- /packages/testing-library/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/testing-library/src/lib/index.ts -------------------------------------------------------------------------------- /packages/testing-library/src/lib/structures/TextChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/testing-library/src/lib/structures/TextChannel.ts -------------------------------------------------------------------------------- /packages/testing-library/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/testing-library/tsconfig.json -------------------------------------------------------------------------------- /packages/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/typescript-config/base.json -------------------------------------------------------------------------------- /packages/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/packages/typescript-config/package.json -------------------------------------------------------------------------------- /pncat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/pncat.config.ts -------------------------------------------------------------------------------- /x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taskylizard/kanikou/HEAD/x.py --------------------------------------------------------------------------------