├── .env.example ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── renovate.json └── workflows │ ├── docker-build.yaml │ └── test.yaml ├── .gitignore ├── .node-version ├── .nvmrc ├── .replit ├── .swcrc ├── .vscode └── settings.json ├── DISCLAIMERS.md ├── Dockerfile ├── LICENSE ├── README.md ├── dev.env.example ├── docker-compose.yaml ├── eslint.config.js ├── index.js ├── lang ├── en.json ├── es.json ├── fr.json ├── id.json ├── ja.json ├── pt-BR.json ├── ru.json ├── tr.json ├── uk.json ├── vi.json ├── zh-CN.json └── zh-TW.json ├── package.json ├── play-dl-importer ├── index.d.ts └── index.js ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── replit.nix ├── src ├── bot.ts ├── commands │ ├── developers │ │ ├── EvalCommand.ts │ │ └── category.meta.ts │ ├── general │ │ ├── AboutCommand.ts │ │ ├── HelpCommand.ts │ │ ├── InviteCommand.ts │ │ ├── PingCommand.ts │ │ └── category.meta.ts │ └── music │ │ ├── DJCommand.ts │ │ ├── FilterCommand.ts │ │ ├── LyricsCommand.ts │ │ ├── NowPlayingCommand.ts │ │ ├── PauseCommand.ts │ │ ├── PlayCommand.ts │ │ ├── QueueCommand.ts │ │ ├── RemoveCommand.ts │ │ ├── RepeatCommand.ts │ │ ├── ResumeCommand.ts │ │ ├── SearchCommand.ts │ │ ├── ShuffleCommand.ts │ │ ├── SkipCommand.ts │ │ ├── SkipToCommand.ts │ │ ├── StayInQueueCommand.ts │ │ ├── StopCommand.ts │ │ ├── VolumeCommand.ts │ │ └── category.meta.ts ├── config │ ├── env.ts │ └── index.ts ├── events │ ├── ChannelUpdateEvent.ts │ ├── DebugEvent.ts │ ├── ErrorEvent.ts │ ├── GuildBanAddEvent.ts │ ├── GuildBanRemoveEvent.ts │ ├── InteractionCreateEvent.ts │ ├── MessageCreateEvent.ts │ ├── ReadyEvent.ts │ ├── VoiceStateUpdateEvent.ts │ └── WarnEvent.ts ├── index.ts ├── structures │ ├── BaseCommand.ts │ ├── BaseEvent.ts │ ├── CommandContext.ts │ ├── Rawon.ts │ └── ServerQueue.ts ├── typings │ ├── enum.ts │ └── index.d.ts └── utils │ ├── decorators │ ├── Command.ts │ ├── CommonUtil.ts │ ├── Event.ts │ ├── MusicUtil.ts │ ├── createCmdExecuteDecorator.ts │ └── createMethodDecorator.ts │ ├── functions │ ├── chunk.ts │ ├── createEmbed.ts │ ├── createProgressBar.ts │ ├── createTable.ts │ ├── ffmpegArgs.ts │ ├── formatMS.ts │ ├── importURLToString.ts │ ├── normalizeTime.ts │ ├── parseEnvValue.ts │ ├── parseHTMLElements.ts │ └── pathStringToURLString.ts │ ├── handlers │ ├── GeneralUtil.ts │ ├── SpotifyUtil.ts │ ├── YTDLUtil.ts │ ├── YouTubeUtil.ts │ └── general │ │ ├── checkQuery.ts │ │ ├── handleVideos.ts │ │ ├── play.ts │ │ └── searchTrack.ts │ └── structures │ ├── ButtonPagination.ts │ ├── ClientUtils.ts │ ├── CommandManager.ts │ ├── DebugLogManager.ts │ ├── EventsLoader.ts │ ├── JSONDataManager.ts │ ├── ModerationLogs.ts │ ├── NoStackError.ts │ ├── OperationManager.ts │ ├── RawonLogger.ts │ └── SongManager.ts ├── tsconfig.json └── yt-dlp-utils ├── index.d.ts └── index.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce UNIX newlines (LF) 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global 2 | * @mzrtamp @Tiramitzu @noxzym 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/docker-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.github/workflows/docker-build.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 24 -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | .node-version -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.replit -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.swcrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DISCLAIMERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/DISCLAIMERS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/README.md -------------------------------------------------------------------------------- /dev.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/dev.env.example -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/index.js -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/es.json -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/id.json -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/ja.json -------------------------------------------------------------------------------- /lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/pt-BR.json -------------------------------------------------------------------------------- /lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/ru.json -------------------------------------------------------------------------------- /lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/tr.json -------------------------------------------------------------------------------- /lang/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/uk.json -------------------------------------------------------------------------------- /lang/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/vi.json -------------------------------------------------------------------------------- /lang/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/zh-CN.json -------------------------------------------------------------------------------- /lang/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/lang/zh-TW.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/package.json -------------------------------------------------------------------------------- /play-dl-importer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/play-dl-importer/index.d.ts -------------------------------------------------------------------------------- /play-dl-importer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/play-dl-importer/index.js -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/replit.nix -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/commands/developers/EvalCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/developers/EvalCommand.ts -------------------------------------------------------------------------------- /src/commands/developers/category.meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/developers/category.meta.ts -------------------------------------------------------------------------------- /src/commands/general/AboutCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/general/AboutCommand.ts -------------------------------------------------------------------------------- /src/commands/general/HelpCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/general/HelpCommand.ts -------------------------------------------------------------------------------- /src/commands/general/InviteCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/general/InviteCommand.ts -------------------------------------------------------------------------------- /src/commands/general/PingCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/general/PingCommand.ts -------------------------------------------------------------------------------- /src/commands/general/category.meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/general/category.meta.ts -------------------------------------------------------------------------------- /src/commands/music/DJCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/DJCommand.ts -------------------------------------------------------------------------------- /src/commands/music/FilterCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/FilterCommand.ts -------------------------------------------------------------------------------- /src/commands/music/LyricsCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/LyricsCommand.ts -------------------------------------------------------------------------------- /src/commands/music/NowPlayingCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/NowPlayingCommand.ts -------------------------------------------------------------------------------- /src/commands/music/PauseCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/PauseCommand.ts -------------------------------------------------------------------------------- /src/commands/music/PlayCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/PlayCommand.ts -------------------------------------------------------------------------------- /src/commands/music/QueueCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/QueueCommand.ts -------------------------------------------------------------------------------- /src/commands/music/RemoveCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/RemoveCommand.ts -------------------------------------------------------------------------------- /src/commands/music/RepeatCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/RepeatCommand.ts -------------------------------------------------------------------------------- /src/commands/music/ResumeCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/ResumeCommand.ts -------------------------------------------------------------------------------- /src/commands/music/SearchCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/SearchCommand.ts -------------------------------------------------------------------------------- /src/commands/music/ShuffleCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/ShuffleCommand.ts -------------------------------------------------------------------------------- /src/commands/music/SkipCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/SkipCommand.ts -------------------------------------------------------------------------------- /src/commands/music/SkipToCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/SkipToCommand.ts -------------------------------------------------------------------------------- /src/commands/music/StayInQueueCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/StayInQueueCommand.ts -------------------------------------------------------------------------------- /src/commands/music/StopCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/StopCommand.ts -------------------------------------------------------------------------------- /src/commands/music/VolumeCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/VolumeCommand.ts -------------------------------------------------------------------------------- /src/commands/music/category.meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/commands/music/category.meta.ts -------------------------------------------------------------------------------- /src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/config/env.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/events/ChannelUpdateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/ChannelUpdateEvent.ts -------------------------------------------------------------------------------- /src/events/DebugEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/DebugEvent.ts -------------------------------------------------------------------------------- /src/events/ErrorEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/ErrorEvent.ts -------------------------------------------------------------------------------- /src/events/GuildBanAddEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/GuildBanAddEvent.ts -------------------------------------------------------------------------------- /src/events/GuildBanRemoveEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/GuildBanRemoveEvent.ts -------------------------------------------------------------------------------- /src/events/InteractionCreateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/InteractionCreateEvent.ts -------------------------------------------------------------------------------- /src/events/MessageCreateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/MessageCreateEvent.ts -------------------------------------------------------------------------------- /src/events/ReadyEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/ReadyEvent.ts -------------------------------------------------------------------------------- /src/events/VoiceStateUpdateEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/VoiceStateUpdateEvent.ts -------------------------------------------------------------------------------- /src/events/WarnEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/events/WarnEvent.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/structures/BaseCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/structures/BaseCommand.ts -------------------------------------------------------------------------------- /src/structures/BaseEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/structures/BaseEvent.ts -------------------------------------------------------------------------------- /src/structures/CommandContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/structures/CommandContext.ts -------------------------------------------------------------------------------- /src/structures/Rawon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/structures/Rawon.ts -------------------------------------------------------------------------------- /src/structures/ServerQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/structures/ServerQueue.ts -------------------------------------------------------------------------------- /src/typings/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/typings/enum.ts -------------------------------------------------------------------------------- /src/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/typings/index.d.ts -------------------------------------------------------------------------------- /src/utils/decorators/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/decorators/Command.ts -------------------------------------------------------------------------------- /src/utils/decorators/CommonUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/decorators/CommonUtil.ts -------------------------------------------------------------------------------- /src/utils/decorators/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/decorators/Event.ts -------------------------------------------------------------------------------- /src/utils/decorators/MusicUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/decorators/MusicUtil.ts -------------------------------------------------------------------------------- /src/utils/decorators/createCmdExecuteDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/decorators/createCmdExecuteDecorator.ts -------------------------------------------------------------------------------- /src/utils/decorators/createMethodDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/decorators/createMethodDecorator.ts -------------------------------------------------------------------------------- /src/utils/functions/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/chunk.ts -------------------------------------------------------------------------------- /src/utils/functions/createEmbed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/createEmbed.ts -------------------------------------------------------------------------------- /src/utils/functions/createProgressBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/createProgressBar.ts -------------------------------------------------------------------------------- /src/utils/functions/createTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/createTable.ts -------------------------------------------------------------------------------- /src/utils/functions/ffmpegArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/ffmpegArgs.ts -------------------------------------------------------------------------------- /src/utils/functions/formatMS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/formatMS.ts -------------------------------------------------------------------------------- /src/utils/functions/importURLToString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/importURLToString.ts -------------------------------------------------------------------------------- /src/utils/functions/normalizeTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/normalizeTime.ts -------------------------------------------------------------------------------- /src/utils/functions/parseEnvValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/parseEnvValue.ts -------------------------------------------------------------------------------- /src/utils/functions/parseHTMLElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/parseHTMLElements.ts -------------------------------------------------------------------------------- /src/utils/functions/pathStringToURLString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/functions/pathStringToURLString.ts -------------------------------------------------------------------------------- /src/utils/handlers/GeneralUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/handlers/GeneralUtil.ts -------------------------------------------------------------------------------- /src/utils/handlers/SpotifyUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/handlers/SpotifyUtil.ts -------------------------------------------------------------------------------- /src/utils/handlers/YTDLUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/handlers/YTDLUtil.ts -------------------------------------------------------------------------------- /src/utils/handlers/YouTubeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/handlers/YouTubeUtil.ts -------------------------------------------------------------------------------- /src/utils/handlers/general/checkQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/handlers/general/checkQuery.ts -------------------------------------------------------------------------------- /src/utils/handlers/general/handleVideos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/handlers/general/handleVideos.ts -------------------------------------------------------------------------------- /src/utils/handlers/general/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/handlers/general/play.ts -------------------------------------------------------------------------------- /src/utils/handlers/general/searchTrack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/handlers/general/searchTrack.ts -------------------------------------------------------------------------------- /src/utils/structures/ButtonPagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/ButtonPagination.ts -------------------------------------------------------------------------------- /src/utils/structures/ClientUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/ClientUtils.ts -------------------------------------------------------------------------------- /src/utils/structures/CommandManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/CommandManager.ts -------------------------------------------------------------------------------- /src/utils/structures/DebugLogManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/DebugLogManager.ts -------------------------------------------------------------------------------- /src/utils/structures/EventsLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/EventsLoader.ts -------------------------------------------------------------------------------- /src/utils/structures/JSONDataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/JSONDataManager.ts -------------------------------------------------------------------------------- /src/utils/structures/ModerationLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/ModerationLogs.ts -------------------------------------------------------------------------------- /src/utils/structures/NoStackError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/NoStackError.ts -------------------------------------------------------------------------------- /src/utils/structures/OperationManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/OperationManager.ts -------------------------------------------------------------------------------- /src/utils/structures/RawonLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/RawonLogger.ts -------------------------------------------------------------------------------- /src/utils/structures/SongManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/src/utils/structures/SongManager.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yt-dlp-utils/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/yt-dlp-utils/index.d.ts -------------------------------------------------------------------------------- /yt-dlp-utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegripe/rawon/HEAD/yt-dlp-utils/index.js --------------------------------------------------------------------------------