├── .env.example ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 01-feature_request.yml │ └── config.yml └── dependabot.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── snippets.code-snippets ├── LICENSE ├── README.md ├── environment.d.ts ├── eslint.config.mjs ├── package.json ├── src ├── commands │ ├── context │ │ └── echo.ts │ └── general │ │ └── ping.ts ├── deploy-commands.ts ├── events │ ├── client │ │ └── ready.ts │ └── interaction │ │ └── command.ts ├── index.ts ├── misc │ ├── prerequisitesCheck.ts │ └── util.ts ├── remove-commands.ts └── structures │ ├── client.ts │ ├── command.ts │ └── event.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/.github/ISSUE_TEMPLATE/01-feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/README.md -------------------------------------------------------------------------------- /environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/environment.d.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/context/echo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/commands/context/echo.ts -------------------------------------------------------------------------------- /src/commands/general/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/commands/general/ping.ts -------------------------------------------------------------------------------- /src/deploy-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/deploy-commands.ts -------------------------------------------------------------------------------- /src/events/client/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/events/client/ready.ts -------------------------------------------------------------------------------- /src/events/interaction/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/events/interaction/command.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/misc/prerequisitesCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/misc/prerequisitesCheck.ts -------------------------------------------------------------------------------- /src/misc/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/misc/util.ts -------------------------------------------------------------------------------- /src/remove-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/remove-commands.ts -------------------------------------------------------------------------------- /src/structures/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/structures/client.ts -------------------------------------------------------------------------------- /src/structures/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/structures/command.ts -------------------------------------------------------------------------------- /src/structures/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/src/structures/event.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyk710/sample-discordjs-bot/HEAD/tsconfig.json --------------------------------------------------------------------------------