repo
stringclasses
341 values
file_path
stringlengths
29
173
language
stringclasses
2 values
file_type
stringclasses
4 values
code
stringlengths
2
1.66M
tokens
int64
2
598k
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lib/init.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> export type Asset = { IconName: string, -- "icon-name" Id: number, -- 123456789 Url: string, -- "rbxassetid://123456789" ImageRectSize: Vector2, -- Vector2.new(48, 48) ImageRectOffset: Vector2, -- Vector2.new(648, 266) } local ...
1,916
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lune/compile-icons.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> local fs = require("@lune/fs") local stdio = require("@lune/stdio") local process = require("@lune/process") local Log = require("modules/Log") local CommandUtils = require("modules/CommandUtils") local StringUtils = require("modules/StringUtils")...
634
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lune/generate-md-index.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> local fs = require("@lune/fs") local StringUtils = require("modules/StringUtils") local IconSourcesDir = "icons/src" local IconDisplayDir = "icons/compiled/48px" local IconDisplayFileType = "png" local OutputPath = "md/icon-index.md" local Outpu...
283
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lune/make.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> local fs = require("@lune/fs") local process = require("@lune/process") local Log = require("modules/Log") local Run = require("modules/Run") local VersionInfo = require("../version-info") local RojoOutputPath = "build/lucide-roblox.rbxm" local ...
454
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lune/modules/CommandUtils.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> local process = require("@lune/process") local CommandUtils = {} -- We'll check some required commands in a sec function CommandUtils.CommandExists(binary: string): boolean if process.os ~= "windows" then -- Unix-compliance is simple!...
181
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lune/modules/ParseArgs.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> type OptionsInput = {[string]: {string | number | boolean | nil}} type OptionsOutput = {[string]: string | number | boolean | nil} local process = require("@lune/process") local Log = require("Log") local function ParseArgs(args: {string}, optio...
485
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lune/modules/Run.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> local process = require("@lune/process") local Log = require("Log") local function Run(command: string, args: {string}?, directRun: boolean?, errorHandler: (string) -> ()?): process.SpawnResult local Args = args or {} local DirectRun = if...
219
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lune/modules/StringUtils.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> local StringUtils = {} function StringUtils.FileType(filePath: string): string? local Match = string.match(filePath, ".%.([^%.]+)$") if Match then Match = string.lower(Match) end return Match end function StringUtils.File...
876
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/lune/tarmac-sync.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> -- Yes, this gets a bit hacky; we're reading from the manifest directly, so.. local fs = require("@lune/fs") local serde = require("@lune/serde") local Log = require("modules/Log") local StringUtils = require("modules/StringUtils") local LuaEncode...
688
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/stories/Lucide.story.luau
luau
.luau
-- MIT License | Copyright (c) 2023 Latte Softworks <https://latte.to> local ServerStorage = game:GetService("ServerStorage") local Lucide = require(ServerStorage.Lucide) local function ApplyToInstance(object: Instance, properties: {[string]: any}): Instance if properties then for Property, Value in prop...
350
latte-soft/lucide-roblox
latte-soft-lucide-roblox-11213a3/version-info.luau
luau
.luau
return { PackageVersion = "0.1.3", -- The version of the `lucide-roblox` package LucideVersion = "0.363.0", -- The version of the Lucide icon set itself the package ver noted above is on }
59
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/10/clear.luau
luau
.luau
--[[ @name clear @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] return table.freeze({ name = "clear", rank = 0, aliases = { "cls", "clr" }, description = "Clears the console output.", run = function(context) return context.reply("cleared") end, })
89
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/10/close.luau
luau
.luau
--[[ @name close @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] return table.freeze({ name = "close", rank = 0, aliases = { "exit" }, description = "Closes the console UI.", run = function(context) return context.reply("closed") end, })
85
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/10/cmds.luau
luau
.luau
--!strict --[[ @name cmds @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] local Imports = { Kommand = require("../../core/shared/kommand"), } local Types = require("../../types/sharedTypes") export type Definition = Types.Definition local function formatArg(arg: Types.Argument): stri...
369
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/10/ranks.luau
luau
.luau
--!strict --[[ @name ranks @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] local Types = require("../../types/sharedTypes") export type Definition = Types.Definition return table.freeze({ name = "ranks", rank = 10, aliases = { "ranklist", "roles" }, description = "Lists every rank...
258
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/100/ban.luau
luau
.luau
--!strict --[[ @name ban @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] local Types = require("../../types/sharedTypes") export type Definition = Types.Definition return table.freeze({ name = "ban", rank = 100, aliases = {}, description = "Bans the target player from this server."...
181
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/100/kick.luau
luau
.luau
--!strict --[[ @name kick @author driftingAurora, dullflowerr, alias; kioukaii @time June 23, 2026 ]] local Types = require("../../types/sharedTypes") export type Definition = Types.Definition return table.freeze({ name = "kick", rank = 100, aliases = { "boot" }, description = "Kicks the target player.", se...
179
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/100/kill.luau
luau
.luau
--!strict --[[ @name kill @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] local Types = require("../../types/sharedTypes") export type Definition = Types.Definition return table.freeze({ name = "kill", rank = 100, aliases = { "slay" }, description = "Kills the target player.", se...
142
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/100/unban.luau
luau
.luau
--!strict --[[ @name unban @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] local Types = require("../../types/sharedTypes") export type Definition = Types.Definition local DefinitionData: Definition = { name = "unban", rank = 100, aliases = {}, description = "Unbans a user ID from ...
139
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/50/bring.luau
luau
.luau
--!strict --[[ @name bring @author driftingAurora, dullflowerr, alias; kioukaii @time June 23, 2026 ]] local Types = require("../../types/sharedTypes") export type Definition = Types.Definition return table.freeze({ name = "bring", rank = 50, aliases = { "fetch" }, description = "Teleports the target players...
146
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/50/tp.luau
luau
.luau
--!strict --[[ @name tp @author driftingAurora, dullflowerr, alias; kioukaii @time June 23, 2026 ]] local Types = require("../../types/sharedTypes") export type Definition = Types.Definition return table.freeze({ name = "tp", rank = 50, aliases = { "teleport", "goto" }, description = "Teleports you to the ta...
135
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/init.luau
luau
.luau
--!strict --[[ @name cmds @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] local Imports = { Unban = require("@self/100/unban"), Bring = require("@self/50/bring"), Ranks = require("@self/10/ranks"), Clear = require("@self/10/clear"), Close = require("@self/10/close"), Server = req...
350
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/server/banServer.luau
luau
.luau
--!strict --[[ @name ban @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] local Imports = { Players = game:GetService("Players"), } local Types = require("../../types/sharedTypes") local bans: { [number]: string } = {} local Server = {} function Server.ban(player: Player, reason: stri...
279
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/server/bringServer.luau
luau
.luau
--!strict --[[ @name bringServer @author driftingAurora, dullflowerr, alias; kioukaii @time June 23, 2026 ]] local Types = require("../../types/sharedTypes") return function(context: Types.Context, targets: { Player }) local to = context.entity and context.entity.Character if not to then return context.err("n...
208
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/server/init.luau
luau
.luau
--!strict --[[ @name server @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] local Types = require("../types/sharedTypes") export type Run = Types.Run local Imports = { BringServer = require("@self/bringServer"), BanServer = require("@self/banServer").run, KickServer = require("@sel...
202
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/server/kickServer.luau
luau
.luau
--!strict --[[ @name kickServer @author driftingAurora, dullflowerr, alias; kioukaii @time June 23, 2026 ]] local Types = require("../../types/sharedTypes") return function(context: Types.Context, target: Player?, reason: string?) if not target then return context.err("no-target", "no player to kick") end t...
115
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/server/killServer.luau
luau
.luau
--!strict --[[ @name killServer @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] local Types = require("../../types/sharedTypes") return function(context: Types.Context, target: Player?) local character = target and target.Character local humanoid = character and character:FindFirstCh...
137
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/server/tpServer.luau
luau
.luau
--!strict --[[ @name tpServer @author driftingAurora, dullflowerr, alias; kioukaii @time June 23, 2026 ]] local Types = require("../../types/sharedTypes") return function(context: Types.Context, target: Player?) local from = context.entity and context.entity.Character local to = target and target.Character if ...
153
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/cmds/server/unbanServer.luau
luau
.luau
--!strict --[[ @name ban @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] local Imports = { BanServer = require("./banServer"), } local Types = require("../../types/sharedTypes") return function(context: Types.Context, userId: number) local removed = Imports.BanServer.unban(userId) r...
110
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/config.luau
luau
.luau
--!strict --[[ @name config @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] local Types = require("./types/uiTypes") export type TransparencyGroup = Types.TransparencyGroup export type ConfigOverrides = Types.ConfigOverrides export type PanelPosition = Types.PanelPosition export type ...
1,185
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/init.luau
luau
.luau
--!strict --[[ @name core @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { Shared = require("@self/shared"), UI = require("@self/ui"), } --// public api local Core = { shared = Imports.Shared, ui = Imports.UI, } return table.freeze(Core)
92
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/shared/chat/init.luau
luau
.luau
--!strict --[[ @name chat @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] --// imports local Imports = { RunService = game:GetService("RunService"), TextChatService = game:GetService("TextChatService"), Config = require("../../config"), } local Types = require("../../types/sharedTyp...
388
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/shared/dispatch/ranks.luau
luau
.luau
--!strict --[[ @name ranks @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { RunService = game:GetService("RunService"), } local Types = require("../../../types/sharedTypes") --// types export type Resolver = Types.Resolver export type Rank = Types.Rank ...
945
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/shared/init.luau
luau
.luau
--!strict --[[ @name shared @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { Arguments = require("@self/kommand/arguments"), Ranks = require("@self/dispatch/ranks"), Table = require("@self/kommand/table"), Dispatch = require("@self/dispatch"), Kommand...
167
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/shared/kommand/arguments.luau
luau
.luau
--!strict --[[ @name arguments @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { Players = game:GetService("Players"), } local Types = require("../../../types/sharedTypes") --// types export type Converters = Types.Converters export type Converter = Types...
1,438
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/shared/kommand/init.luau
luau
.luau
--!strict --[[ @name kommand @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { Ranks = require("./dispatch/ranks"), Table = require("@self/table"), } local Types = require("../../types/sharedTypes") --// types export type Definition = Types.Definition ex...
1,159
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/shared/kommand/table.luau
luau
.luau
--!strict --[[ @name table @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// public api local Table = {} function Table.callable(value: any): boolean if type(value) == "function" then return true end local meta = getmetatable(value :: any) return type(meta) == "table"...
194
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/backend/formatter.luau
luau
.luau
--!strict --[[ @name formatter @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { Text = require("../misc/text"), } local Types = require("../../../../types/uiTypes") --// types export type RenderResult = Types.RenderResult type Colors = Types.FormatterCo...
928
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/backend/history.luau
luau
.luau
--!strict --[[ @name history @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { TextService = game:GetService("TextService"), Formatter = require("./formatter"), Text = require("../misc/text"), } local Types = require("../../../../types/uiTypes") --// t...
778
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/backend/result.luau
luau
.luau
--!strict --[[ @name result @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Types = require("../../../../types/uiTypes") --// types export type ResultOptions = Types.ResultOptions export type RenderResult = Types.RenderResult --// locals local function cloneRows(row...
814
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/frontend/hints.luau
luau
.luau
--[[ @name hints @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { UserInputService = game:GetService("UserInputService"), TextService = game:GetService("TextService"), Players = game:GetService("Players"), Arguments = require("../../../shared/kommand/ar...
4,850
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/frontend/panel.luau
luau
.luau
--[[ @name panel @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { TextService = game:GetService("TextService"), Workspace = game:GetService("Workspace"), Shape = require("../../motion/math/shape"), Placement = require("../misc/placement"), ...
4,994
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/frontend/providers.luau
luau
.luau
--!strict --[[ @name providers @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { Players = game:GetService("Players"), } local Types = require("../../../../types/sharedTypes") --// types export type Argument = Types.Argument type Provider = Types.Provider...
399
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/frontend/session.luau
luau
.luau
--[[ @name session @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { UserInputService = game:GetService("UserInputService"), Dragging = require("../../motion/math/dragging"), Reveal = require("../../motion/suggest/reveal"), Scroll = require("../../motion...
7,581
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/frontend/suggestions.luau
luau
.luau
--[[ @name suggestions @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { Suggest = require("../../motion/suggest"), Providers = require("./providers"), Text = require("../misc/text"), View = require("../misc/view"), } --// locals local function s...
2,985
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/misc/placement.luau
luau
.luau
--!strict --[[ @name placement @author driftingAurora, dullflowerr, alias; kioukaii @time July 22, 2026 ]] local Types = require("../../../../types/uiTypes") export type Preset = Types.PlacementPreset local bottomCenter = Vector2.new(0.5, 1) local presetAnchors: { [string]: Vector2 } = { br = Vector2.new(1, 1)...
817
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/misc/text.luau
luau
.luau
--!strict --[[ @name text @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// public api local Text = {} local function stringValue(value: any): string return tostring(value or "") end function Text.callable(value: any): boolean if type(value) == "function" then retur...
842
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/elements/misc/view.luau
luau
.luau
--[[ @name view @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { Placement = require("./placement"), Text = require("./text"), } local Types = require("../../../../types/uiTypes") type Properties = Types.ViewProperties type Make = Types.ViewMake -...
4,245
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/init.luau
luau
.luau
--!strict --[[ @name ui @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { Render = require("@self/render"), } --// public api local UI = { render = Imports.Render, } return table.freeze(UI)
78
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/math/ease.luau
luau
.luau
--!strict --[[ @name ease @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] local Types = require("../../../../types/uiTypes") --// types export type EaseGroup = Types.EaseGroup --// public api local Ease: EaseGroup = { direction = Enum.EasingDirection.Out, style = Enum.EasingStyle.Qu...
108
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/math/init.luau
luau
.luau
--!strict --[[ @name math @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { Dragging = require("@self/dragging"), Scroll = require("@self/scroll"), Slide = require("@self/slide"), Tween = require("@self/tween"), Ease = require("@self/ease"), } local M...
140
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/math/scroll.luau
luau
.luau
--!strict --[[ @name scroll @author driftingAurora, dullflowerr, alias; kioukaii @time July 11, 2026 ]] --// imports local Imports = { TweenService = game:GetService("TweenService"), } local Types = require("../../../../types/uiTypes") --// types type State = Types.ScrollState --// locals local states: { [Scro...
409
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/math/shape.luau
luau
.luau
--[[ @name shape @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { Placement = require("../../elements/misc/placement"), Math = require("../math"), } local Tween = Imports.Math.tween --// locals local function layoutMain(session, time, width, mainHeight, ...
4,104
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/math/slide.luau
luau
.luau
--!strict --[[ @name slide @author driftingAurora, dullflowerr, alias; kioukaii @time July 3, 2026 ]] --// imports local Imports = { Tween = require("./tween"), } --// public api local Slide = {} function Slide.history(session: any, channel: number): () local contentName = channel == 2 and "secondHistoryCon...
237
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/math/tween.luau
luau
.luau
--!strict --[[ @name tween @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { TweenService = game:GetService("TweenService"), Ease = require("./ease"), } --// public api local Tween = {} function Tween.to( instance: Instance?, props: { [string]: any },...
230
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/suggest/hint.luau
luau
.luau
--[[ @name hint @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { Math = require("../math"), } local Tween = Imports.Math.tween --// locals local function rowPosition(offset) return UDim2.new(0, offset, 0.5, 0) end --// public api local Hint = {} functi...
239
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/suggest/init.luau
luau
.luau
--[[ @name suggest @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { Placement = require("../elements/misc/placement"), Math = require("./math"), } local Tween = Imports.Math.tween local function suggestionWidth(session) local refs = session.refs local ...
1,079
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/motion/suggest/reveal.luau
luau
.luau
--[[ @name reveal @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// imports local Imports = { Placement = require("../../elements/misc/placement"), Math = require("../math"), } local Tween = Imports.Math.tween --// locals local function savedPosition(session, key, root) local pos...
2,445
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/core/ui/render.luau
luau
.luau
--!strict --[[ @name render @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local ConfigModule = require("../../config") local Imports = { Config = ConfigModule, Controller = require("./elements/backend/controller"), Formatter = require("./elements/backend/formatter"),...
204
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/init.luau
luau
.luau
--!strict --[[ @name Konsole @author driftingAurora, dullflowerr, alias; kioukaii @time June 12, 2026 ]] --// imports local Imports = { RunService = game:GetService("RunService"), Config = require("@self/config"), Cmds = require("@self/cmds"), Core = require("@self/core"), } local Types = require("@self/type...
2,241
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/types/init.luau
luau
.luau
--!strict --[[ @name types @author driftingAurora, dullflowerr, alias; kioukaii @time July 11, 2026 ]] --// imports local Types = { SharedTypes = require("@self/sharedTypes"), UITypes = require("@self/uiTypes"), } return table.freeze(Types)
77
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/types/sharedTypes.luau
luau
.luau
--!strict --[[ @name sharedTypes @author driftingAurora, dullflowerr, alias; kioukaii @time June 13, 2026 ]] --// types export type Converter = (token: string, caller: Caller) -> (boolean, any) export type Converters = { [string]: Converter } export type Caller = Player? export type Argument = { suggestions: (...
586
KYRORBLX/Konsole
KYRORBLX-Konsole-c7db773/src/types/uiTypes.luau
luau
.luau
--!strict --[[ @name uiTypes @author driftingAurora, dullflowerr, alias; kioukaii @time June 30, 2026 ]] local Types = require("./sharedTypes") --// types export type ResultKind = "text" | "table" | "error" | "warn" export type RenderResult = { rows: { { [string]: any } }, code: string?, ok: boolean, column...
1,989
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/build.luau
luau
.luau
local collectPackages = require("@lune-lib/utils/collect-packages") local fs = require("@lune/fs") local path = require("@lune-lib/utils/path") local process = require("@lune/process") local roblox = require("@lune/roblox") local rootConfig = require("@lune-lib/root-config") local selectPackages = require("@lune-lib/ut...
3,108
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/configure.luau
luau
.luau
-- Repository export type RootPublisher = { scope: string, registry: string, } local function publisher(x: RootPublisher) return table.freeze(x) end export type RepoConfig = { repository: string, homepage: string, packageDir: string, defaults: { authors: { string }, license: string, version: string, },...
363
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/root-config.luau
luau
.luau
local rootConfig = require("../../prvd.config") return rootConfig
14
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local tiniest_plugin = require("./tiniest_plugin") type Context = DescribeContext | RunContext type DescribeContext = { type: "describe", labels: { string }, add_test: (Test) -> (), } type RunContext = { type: "run", } export type ErrorReport = { type: "tin...
1,328
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_expect.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local tiniest_quote = require("./tiniest_quote") local tiniest_expect = {} type Context = { target: unknown, test: string, params: { unknown }, } local context: Context = { target = nil, test = "", params = {}, } local function fail(message: string?): neve...
1,033
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_for_lune.luau
luau
.luau
-- From dphfox/tiniest, licensed under BSD3 --!strict local tiniest = require("./tiniest") local tiniest_expect = require("./tiniest_expect") local tiniest_pretty = require("./tiniest_pretty") local tiniest_snapshot = require("./tiniest_snapshot") local tiniest_time = require("./tiniest_time") local fs = require("@lu...
832
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_plugin.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict export type Plugin = { is_tiniest_plugin: true, } local tiniest_plugin = {} function tiniest_plugin.configure(plugins: { any }?) if plugins ~= nil then for index, plugin in plugins do if not plugin.is_tiniest_plugin then error(`sanity check: plugin #{in...
180
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_pretty.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local tiniest = require("./tiniest") local tiniest_plugin = require("./tiniest_plugin") type Test = tiniest.Test type TestRunResult = tiniest.TestRunResult type RunResult = tiniest.RunResult export type Options = { plugins: nil | { tiniest_plugin.Plugin }, disabl...
1,762
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_quote.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local function tiniest_quote(x: unknown, given_indent_amount: number?): string if type(x) == "nil" or type(x) == "number" or type(x) == "boolean" or type(x) == "userdata" then return tostring(x) elseif type(x) == "string" then return string.format("%q", x) el...
367
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_snapshot.luau
luau
.luau
-- From dphfox/tiniest, licensed under BSD3 --!strict local tiniest = require("./tiniest") local tiniest_quote = require("./tiniest_quote") type Test = tiniest.Test export type TestRunResult = tiniest.TestRunResult & { num_snapshots_updated: number, num_snapshots_obsolete: number, } export type RunResult = tiniest....
1,218
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/tiniest/tiniest_time.luau
luau
.luau
-- From dphfox/tiniest, licenced under BSD --!strict local tiniest = require("./tiniest") local tiniest_pretty = require("./tiniest_pretty") type Test = tiniest.Test export type TestRunResult = tiniest.TestRunResult & { duration: number, } export type RunResult = tiniest.RunResult & { duration: number, } export ty...
615
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/types.luau
luau
.luau
local configure = require("@lune-lib/configure") export type PackageContext = { rootDir: string, outDir: string, outWorkDir: string, packagesDir: string, packages: { [string]: Package }, } export type Package = { absolutePath: string, relativePath: string, config: configure.PackageConfig, } return nil
76
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/utils/collect-packages.luau
luau
.luau
local configure = require("@lune-lib/configure") local fs = require("@lune/fs") local path = require("@lune-lib/utils/path") local types = require("@lune-lib/types") local function collectPackages(rootPath: string, packageDir: string) local packages: { types.Package } = {} local packageDirPath = path(rootPath, packa...
290
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/utils/path.luau
luau
.luau
local process = require("@lune/process") local delimiter = if process.os == "windows" then "\\" else "/" local function path(...: string) return table.concat({ ... }, delimiter) end return path
44
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/utils/print-divider.luau
luau
.luau
local styles = require("./styles") local LINE_COUNT = 80 local bold = styles.bold local dim = styles.dim local function printDivider(str: string, lineCount: number?) local dashRepeats = ((lineCount or LINE_COUNT) - str:len()) * 0.5 local extraIfUneven = if str:len() % 2 ~= 0 then 1 else 0 return print(bold(`{dim(...
126
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/lib/utils/select-packages.luau
luau
.luau
local process = require("@lune/process") local stdio = require("@lune/stdio") local types = require("@lune-lib/types") local function selectPackages(packages: { types.Package }): { names: { string }, nameToPackage: { [string]: types.Package }, selected: { string }, } local packageNames = {} local nameToPackage = ...
254
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/pesde-scripts/roblox_sync_config_generator.luau
luau
.luau
return (require)("./../../lune_packages/.pesde/pesde+scripts_rojo/0.1.0/scripts_rojo/roblox_sync_config_generator")
35
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/pesde-scripts/sourcemap-generator.luau
luau
.luau
return (require)("./../../lune_packages/.pesde/pesde+scripts_rojo/0.1.0/scripts_rojo/sourcemap_generator")
34
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/.lune/tiniest.luau
luau
.luau
local fs = require("@lune/fs") local tiniest = require("@lune-lib/tiniest/tiniest_for_lune").configure({}) local tests = tiniest.collect_tests(function() local function visitDir(path: string, luauPath: string) for _, entry in fs.readDir(path) do local fullPath = path .. "/" .. entry local fullLuauPath = luauP...
218
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/depend.luau
luau
.luau
local logger = require("./logger") local types = require("./types") local function useBeforeConstructed(unresolved: types.UnresolvedDependency) logger:fatalError({ template = logger.useBeforeConstructed, unresolved.dependency.name or "subdependency" }) end local unresolvedMt = { __metatable = "This metatable is loc...
202
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/init.luau
luau
.luau
local depend = require("@self/depend") local processDependencies = require("@self/process-dependencies") local sortByPriority = require("@self/sort-by-priority") local types = require("@self/types") export type Dependency<Self, Dependencies = nil, NewArgs... = ()> = types.Dependency<Self, Dependencies, NewArgs...> re...
90
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/logger.luau
luau
.luau
local logger = require("../logger") return logger.create("@prvdmwrong/dependencies", logger.standardErrorInfoUrl("dependencies"), { useBeforeConstructed = "Cannot use %s before it is constructed. Are you using the dependency outside a class method?", alreadyDestroyed = "Cannot destroy an already destroyed Root.", a...
74
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/process-dependencies.luau
luau
.luau
local lifecycles = require("../lifecycles") local types = require("./types") export type ProccessDependencyResult = { sortedDependencies: { types.Dependency<any> }, lifecycles: { lifecycles.Lifecycle }, } type Set<T> = { [T]: true } local function processDependencies(dependencies: Set<types.Dependency<any>>): Proc...
386
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/prvd.config.luau
luau
.luau
local configure = require("@lune-lib/configure") return configure.package({ name = "dependencies", description = "Dependency resolution logic for Prvd 'M Wrong", types = table.freeze({ ["Dependency<Self, Dependencies = nil, NewArgs... = ()>"] = "Dependency<Self, Dependencies, NewArgs...>", }), dependencies = ...
91
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/sort-by-priority.luau
luau
.luau
local types = require("./types") local function sortByPriority(dependencies: { types.Dependency<unknown> }) table.sort(dependencies, function(left: any, right: any) if left.priority ~= right.priority then return (left.priority or 1) > (right.priority or 1) end local leftIndex = table.find(dependencies, left)...
104
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/dependencies/types.luau
luau
.luau
export type Dependency<Self, Dependencies = nil, NewArgs... = ()> = Self & { dependencies: Dependencies, priority: number?, new: (dependencies: Dependencies, NewArgs...) -> Dependency<Self, Dependencies, NewArgs...>, } export type UnresolvedDependency = { type: "UnresolvedDependency", dependency: Dependency<any>,...
88
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/create.luau
luau
.luau
local await = require("./methods/await") local clear = require("./methods/unregister-all") local destroy = require("./methods/destroy") local lifecycleConstructed = require("./hooks/lifecycle-constructed") local methodToLifecycles = require("./method-to-lifecycles") local onRegistered = require("./methods/on-registered...
307
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/handlers/fire-concurrent.luau
luau
.luau
local runtime = require("../../runtime") local types = require("../types") local function fireConcurrent<Args...>(lifecycle: types.Lifecycle<Args...>, ...: Args...) for _, callback in lifecycle.callbacks do runtime.threadpool.spawn(callback, ...) end end return fireConcurrent
63
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/handlers/fire-sequential.luau
luau
.luau
local types = require("../types") local function fireSequential<Args...>(lifecycle: types.Lifecycle<Args...>, ...: Args...) for _, callback in lifecycle.callbacks do callback(...) end end return fireSequential
48
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/hooks/lifecycle-constructed.luau
luau
.luau
local types = require("../types") local callbacks: { (lifecycle: types.Lifecycle) -> () } = {} local function onLifecycleConstructed(listener: (lifecycle: types.Lifecycle) -> ()): () -> () table.insert(callbacks, listener) return function() table.remove(callbacks, table.find(callbacks, listener)) end end return...
90
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/hooks/lifecycle-destroyed.luau
luau
.luau
local types = require("../types") local callbacks: { (lifecycle: types.Lifecycle) -> () } = {} local function onLifecycleDestroyed(listener: (lifecycle: types.Lifecycle) -> ()): () -> () table.insert(callbacks, listener) return function() table.remove(callbacks, table.find(callbacks, listener)) end end return t...
90
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/hooks/lifecycle-registered.luau
luau
.luau
local types = require("../types") local callbacks: { (lifecycle: types.Lifecycle, callback: (...unknown) -> ()) -> () } = {} local function onLifecycleRegistered<Args...>( listener: ( lifecycle: types.Lifecycle<Args...>, callback: (Args...) -> () ) -> () ): () -> () table.insert(callbacks, listener :: any) re...
120
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/hooks/lifecycle-unregistered.luau
luau
.luau
local types = require("../types") local callbacks: { (lifecycle: types.Lifecycle, callback: (...unknown) -> ()) -> () } = {} local function onLifecycleUnregistered<Args...>( listener: ( lifecycle: types.Lifecycle<Args...>, callback: (Args...) -> () ) -> () ): () -> () table.insert(callbacks, listener :: any) ...
123
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/init.luau
luau
.luau
local create = require("@self/create") local fireConcurrent = require("@self/handlers/fire-concurrent") local fireSequential = require("@self/handlers/fire-sequential") local lifecycleConstructed = require("@self/hooks/lifecycle-constructed") local lifecycleDestroyed = require("@self/hooks/lifecycle-destroyed") local l...
247
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/logger.luau
luau
.luau
local logger = require("../logger") return logger.create("@prvdmwrong/lifecycles", logger.standardErrorInfoUrl("lifecycles"), { useAfterDestroy = "Cannot use Lifecycle after it is destroyed.", alreadyDestroyed = "Cannot destroy an already destroyed Lifecycle.", })
58
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/method-to-lifecycles.luau
luau
.luau
local types = require("./types") local methodToLifecycles: { [string]: { types.Lifecycle } } = {} return methodToLifecycles
35
welcomestohell/prvdmwrong
welcomestohell-prvdmwrong-a935ae2/packages/lifecycles/methods/await.luau
luau
.luau
local logger = require("../logger") local types = require("../types") local function await<Args...>(lifecycle: types.Self<Args...>): Args... if lifecycle._isDestroyed then logger:fatalError({ template = logger.useAfterDestroy }) end local currentThread = coroutine.running() local function callback(...: Args...) ...
104