├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── example.env ├── package.json └── src ├── bot.mjs ├── commands ├── ping.mjs ├── test.mjs └── uptime.mjs ├── data ├── BotTypes.mjs ├── Cooldowns.mjs ├── SlashCommandDirSetup.mjs └── ValidColors.mjs ├── events ├── client │ └── ready.mjs └── guild │ └── interaction │ └── interactionCreate.mjs ├── extenders └── antiCrash.mjs ├── handlers └── SlashCommandHandler.mjs ├── index.mjs ├── structures ├── BotClient.mjs └── Sharder.mjs └── utils ├── Logger.mjs ├── Permissions.mjs └── TimeUtils.mjs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/README.md -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/example.env -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/package.json -------------------------------------------------------------------------------- /src/bot.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/bot.mjs -------------------------------------------------------------------------------- /src/commands/ping.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/commands/ping.mjs -------------------------------------------------------------------------------- /src/commands/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/commands/test.mjs -------------------------------------------------------------------------------- /src/commands/uptime.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/commands/uptime.mjs -------------------------------------------------------------------------------- /src/data/BotTypes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/data/BotTypes.mjs -------------------------------------------------------------------------------- /src/data/Cooldowns.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/data/Cooldowns.mjs -------------------------------------------------------------------------------- /src/data/SlashCommandDirSetup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/data/SlashCommandDirSetup.mjs -------------------------------------------------------------------------------- /src/data/ValidColors.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/data/ValidColors.mjs -------------------------------------------------------------------------------- /src/events/client/ready.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/events/client/ready.mjs -------------------------------------------------------------------------------- /src/events/guild/interaction/interactionCreate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/events/guild/interaction/interactionCreate.mjs -------------------------------------------------------------------------------- /src/extenders/antiCrash.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/extenders/antiCrash.mjs -------------------------------------------------------------------------------- /src/handlers/SlashCommandHandler.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/handlers/SlashCommandHandler.mjs -------------------------------------------------------------------------------- /src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/index.mjs -------------------------------------------------------------------------------- /src/structures/BotClient.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/structures/BotClient.mjs -------------------------------------------------------------------------------- /src/structures/Sharder.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/structures/Sharder.mjs -------------------------------------------------------------------------------- /src/utils/Logger.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/utils/Logger.mjs -------------------------------------------------------------------------------- /src/utils/Permissions.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/utils/Permissions.mjs -------------------------------------------------------------------------------- /src/utils/TimeUtils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-js-v14-handler/HEAD/src/utils/TimeUtils.mjs --------------------------------------------------------------------------------