├── .env.example ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierignore ├── .sapphirerc.json ├── README.md ├── package.json ├── src ├── commands │ ├── Development │ │ ├── eval.ts │ │ └── reload.ts │ ├── General │ │ └── ping.ts │ └── Guardian │ │ └── limits.ts ├── index.ts ├── lib │ ├── constants.ts │ ├── env-parser.ts │ ├── setup.ts │ └── utils.ts ├── listeners │ ├── commands │ │ ├── chatInputCommandDenied.ts │ │ ├── chatInputCommandError.ts │ │ ├── commandSuccessLogger.ts │ │ ├── contextMenuCommandDenied.ts │ │ └── contextMenuCommandError.ts │ └── ready.ts └── preconditions │ └── OwnerOnly.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ -------------------------------------------------------------------------------- /.sapphirerc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/.sapphirerc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/Development/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/commands/Development/eval.ts -------------------------------------------------------------------------------- /src/commands/Development/reload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/commands/Development/reload.ts -------------------------------------------------------------------------------- /src/commands/General/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/commands/General/ping.ts -------------------------------------------------------------------------------- /src/commands/Guardian/limits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/commands/Guardian/limits.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/env-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/lib/env-parser.ts -------------------------------------------------------------------------------- /src/lib/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/lib/setup.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/listeners/commands/chatInputCommandDenied.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/listeners/commands/chatInputCommandDenied.ts -------------------------------------------------------------------------------- /src/listeners/commands/chatInputCommandError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/listeners/commands/chatInputCommandError.ts -------------------------------------------------------------------------------- /src/listeners/commands/commandSuccessLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/listeners/commands/commandSuccessLogger.ts -------------------------------------------------------------------------------- /src/listeners/commands/contextMenuCommandDenied.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/listeners/commands/contextMenuCommandDenied.ts -------------------------------------------------------------------------------- /src/listeners/commands/contextMenuCommandError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/listeners/commands/contextMenuCommandError.ts -------------------------------------------------------------------------------- /src/listeners/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/listeners/ready.ts -------------------------------------------------------------------------------- /src/preconditions/OwnerOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/src/preconditions/OwnerOnly.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorencerri/discord-bot-template/HEAD/tsconfig.json --------------------------------------------------------------------------------