├── .deepsource.toml ├── .env.example ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── banner.txt ├── languages ├── en-US │ ├── commands.json │ ├── commons.json │ ├── discord.json │ └── errors.json └── pt-BR │ ├── commands.json │ ├── commons.json │ ├── discord.json │ └── errors.json ├── package.json ├── prisma └── schema.prisma ├── src ├── @types │ ├── commands.d.ts │ ├── globals.d.ts │ ├── index.d.ts │ └── lavalink.d.ts ├── Redis.ts ├── Tune.ts ├── apis │ ├── Autocomplete.ts │ └── Lastfm.ts ├── commands │ ├── developer │ │ └── eval.ts │ └── music │ │ └── play.ts ├── events │ ├── CommandListener.ts │ ├── GuildListener.ts │ ├── MainListener.ts │ ├── RawListener.ts │ ├── discord │ │ ├── GuildEvents.ts │ │ └── UserEvents.ts │ └── music │ │ ├── StageEventListener.ts │ │ ├── TrackEndListener.ts │ │ ├── TrackExceptionListener.ts │ │ ├── TrackStartListener.ts │ │ └── TrackStuckListener.ts ├── structures │ ├── Connection.ts │ ├── EventListener.ts │ ├── Node.ts │ ├── Template.ts │ ├── command │ │ ├── Command.ts │ │ ├── CommandContext.ts │ │ ├── CommandError.ts │ │ ├── CommandRequirements.ts │ │ └── parameters │ │ │ ├── CommandParameters.ts │ │ │ └── types │ │ │ ├── ActivityParameter.ts │ │ │ ├── AttachmentParameter.ts │ │ │ ├── BooleanFlagParameter.ts │ │ │ ├── BooleanParameter.ts │ │ │ ├── ChannelParameter.ts │ │ │ ├── CommandParameter.ts │ │ │ ├── MemberParameter.ts │ │ │ ├── MessageParameter.ts │ │ │ ├── NumberParameter.ts │ │ │ ├── Parameter.ts │ │ │ ├── RoleParameter.ts │ │ │ ├── StringParameter.ts │ │ │ ├── UserParameter.ts │ │ │ └── index.ts │ └── logger │ │ └── Sentry.ts ├── templates │ └── UserProfile.ts └── utils │ ├── Autoplay.ts │ ├── Constants.ts │ ├── CustomPermissions.ts │ ├── File.ts │ ├── StringBuilder.ts │ └── Utils.ts ├── startup.ts ├── theme ├── active │ ├── avatar.png │ └── info.json └── default │ ├── avatar.png │ └── info.json └── tsconfig.json /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/README.md -------------------------------------------------------------------------------- /banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/banner.txt -------------------------------------------------------------------------------- /languages/en-US/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/languages/en-US/commands.json -------------------------------------------------------------------------------- /languages/en-US/commons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/languages/en-US/commons.json -------------------------------------------------------------------------------- /languages/en-US/discord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/languages/en-US/discord.json -------------------------------------------------------------------------------- /languages/en-US/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/languages/en-US/errors.json -------------------------------------------------------------------------------- /languages/pt-BR/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/languages/pt-BR/commands.json -------------------------------------------------------------------------------- /languages/pt-BR/commons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/languages/pt-BR/commons.json -------------------------------------------------------------------------------- /languages/pt-BR/discord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/languages/pt-BR/discord.json -------------------------------------------------------------------------------- /languages/pt-BR/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/languages/pt-BR/errors.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/package.json -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /src/@types/commands.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/@types/commands.d.ts -------------------------------------------------------------------------------- /src/@types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/@types/globals.d.ts -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/@types/index.d.ts -------------------------------------------------------------------------------- /src/@types/lavalink.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/@types/lavalink.d.ts -------------------------------------------------------------------------------- /src/Redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/Redis.ts -------------------------------------------------------------------------------- /src/Tune.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/Tune.ts -------------------------------------------------------------------------------- /src/apis/Autocomplete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/apis/Autocomplete.ts -------------------------------------------------------------------------------- /src/apis/Lastfm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/apis/Lastfm.ts -------------------------------------------------------------------------------- /src/commands/developer/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/commands/developer/eval.ts -------------------------------------------------------------------------------- /src/commands/music/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/commands/music/play.ts -------------------------------------------------------------------------------- /src/events/CommandListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/CommandListener.ts -------------------------------------------------------------------------------- /src/events/GuildListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/GuildListener.ts -------------------------------------------------------------------------------- /src/events/MainListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/MainListener.ts -------------------------------------------------------------------------------- /src/events/RawListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/RawListener.ts -------------------------------------------------------------------------------- /src/events/discord/GuildEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/discord/GuildEvents.ts -------------------------------------------------------------------------------- /src/events/discord/UserEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/discord/UserEvents.ts -------------------------------------------------------------------------------- /src/events/music/StageEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/music/StageEventListener.ts -------------------------------------------------------------------------------- /src/events/music/TrackEndListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/music/TrackEndListener.ts -------------------------------------------------------------------------------- /src/events/music/TrackExceptionListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/music/TrackExceptionListener.ts -------------------------------------------------------------------------------- /src/events/music/TrackStartListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/music/TrackStartListener.ts -------------------------------------------------------------------------------- /src/events/music/TrackStuckListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/events/music/TrackStuckListener.ts -------------------------------------------------------------------------------- /src/structures/Connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/Connection.ts -------------------------------------------------------------------------------- /src/structures/EventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/EventListener.ts -------------------------------------------------------------------------------- /src/structures/Node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/Node.ts -------------------------------------------------------------------------------- /src/structures/Template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/Template.ts -------------------------------------------------------------------------------- /src/structures/command/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/Command.ts -------------------------------------------------------------------------------- /src/structures/command/CommandContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/CommandContext.ts -------------------------------------------------------------------------------- /src/structures/command/CommandError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/CommandError.ts -------------------------------------------------------------------------------- /src/structures/command/CommandRequirements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/CommandRequirements.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/CommandParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/CommandParameters.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/ActivityParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/ActivityParameter.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/AttachmentParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/AttachmentParameter.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/BooleanFlagParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/BooleanFlagParameter.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/BooleanParameter.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/structures/command/parameters/types/ChannelParameter.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/structures/command/parameters/types/CommandParameter.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/structures/command/parameters/types/MemberParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/MemberParameter.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/MessageParameter.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/structures/command/parameters/types/NumberParameter.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/structures/command/parameters/types/Parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/Parameter.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/RoleParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/RoleParameter.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/StringParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/StringParameter.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/UserParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/UserParameter.ts -------------------------------------------------------------------------------- /src/structures/command/parameters/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/command/parameters/types/index.ts -------------------------------------------------------------------------------- /src/structures/logger/Sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/structures/logger/Sentry.ts -------------------------------------------------------------------------------- /src/templates/UserProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/templates/UserProfile.ts -------------------------------------------------------------------------------- /src/utils/Autoplay.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/utils/Constants.ts -------------------------------------------------------------------------------- /src/utils/CustomPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/utils/CustomPermissions.ts -------------------------------------------------------------------------------- /src/utils/File.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/utils/File.ts -------------------------------------------------------------------------------- /src/utils/StringBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/utils/StringBuilder.ts -------------------------------------------------------------------------------- /src/utils/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/src/utils/Utils.ts -------------------------------------------------------------------------------- /startup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/startup.ts -------------------------------------------------------------------------------- /theme/active/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/theme/active/avatar.png -------------------------------------------------------------------------------- /theme/active/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/theme/active/info.json -------------------------------------------------------------------------------- /theme/default/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/theme/default/avatar.png -------------------------------------------------------------------------------- /theme/default/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/theme/default/info.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuneMusicBot/Tune/HEAD/tsconfig.json --------------------------------------------------------------------------------