├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── jsdoc-deploy.yml │ └── npm-publish.yml ├── .gitignore ├── .jsdoc.json ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── esm.mjs ├── examples ├── custom-databases │ ├── enmap.js │ ├── mongoose.js │ ├── mysql.js │ ├── nano.js │ ├── quick.db.js │ ├── quick.replit.js │ ├── quickmongo.js │ └── replit.js ├── sharding.js └── simple.js ├── giveaways.json ├── index.js ├── package.json ├── src ├── Constants.js ├── Giveaway.js ├── Manager.js └── utils.js ├── tsconfig.json └── typings └── index.d.ts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/jsdoc-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.github/workflows/jsdoc-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.jsdoc.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/README.md -------------------------------------------------------------------------------- /esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/esm.mjs -------------------------------------------------------------------------------- /examples/custom-databases/enmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/custom-databases/enmap.js -------------------------------------------------------------------------------- /examples/custom-databases/mongoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/custom-databases/mongoose.js -------------------------------------------------------------------------------- /examples/custom-databases/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/custom-databases/mysql.js -------------------------------------------------------------------------------- /examples/custom-databases/nano.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/custom-databases/nano.js -------------------------------------------------------------------------------- /examples/custom-databases/quick.db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/custom-databases/quick.db.js -------------------------------------------------------------------------------- /examples/custom-databases/quick.replit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/custom-databases/quick.replit.js -------------------------------------------------------------------------------- /examples/custom-databases/quickmongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/custom-databases/quickmongo.js -------------------------------------------------------------------------------- /examples/custom-databases/replit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/custom-databases/replit.js -------------------------------------------------------------------------------- /examples/sharding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/examples/sharding.js -------------------------------------------------------------------------------- /examples/simple.js: -------------------------------------------------------------------------------- 1 | // Example bot available at https://github.com/Androz2091/discord-giveaways-bot 2 | -------------------------------------------------------------------------------- /giveaways.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/package.json -------------------------------------------------------------------------------- /src/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/src/Constants.js -------------------------------------------------------------------------------- /src/Giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/src/Giveaway.js -------------------------------------------------------------------------------- /src/Manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/src/Manager.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/src/utils.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-giveaways/HEAD/typings/index.d.ts --------------------------------------------------------------------------------