├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── commands ├── pro.ts └── test.ts ├── eslint.config.ts ├── events ├── interactionCreate.ts ├── messageCreate.ts └── ready.ts ├── index.ts ├── modules ├── anti-spam.ts └── link-moderation.ts ├── package.json ├── pnpm-lock.yaml ├── prettier.config.mjs ├── tsconfig.json └── types └── commands.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/README.md -------------------------------------------------------------------------------- /commands/pro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/commands/pro.ts -------------------------------------------------------------------------------- /commands/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/commands/test.ts -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /events/interactionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/events/interactionCreate.ts -------------------------------------------------------------------------------- /events/messageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/events/messageCreate.ts -------------------------------------------------------------------------------- /events/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/events/ready.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/index.ts -------------------------------------------------------------------------------- /modules/anti-spam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/modules/anti-spam.ts -------------------------------------------------------------------------------- /modules/link-moderation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/modules/link-moderation.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/4DC/HEAD/types/commands.ts --------------------------------------------------------------------------------