├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── models ├── levels.js └── rewards.js ├── package.json └── test └── README.md /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | test.js 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/index.js -------------------------------------------------------------------------------- /models/levels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/models/levels.js -------------------------------------------------------------------------------- /models/rewards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/models/rewards.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/package.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAugu/discord-xp/HEAD/test/README.md --------------------------------------------------------------------------------