├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE.md ├── README.md ├── config ├── bot.json └── keys.template ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts ├── shard.ts └── util │ ├── isInterface.ts │ └── logger.ts ├── tsconfig.json └── windows_ez_start.bat /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/README.md -------------------------------------------------------------------------------- /config/bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/config/bot.json -------------------------------------------------------------------------------- /config/keys.template: -------------------------------------------------------------------------------- 1 | { 2 | "discord": "" 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/shard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/src/shard.ts -------------------------------------------------------------------------------- /src/util/isInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/src/util/isInterface.ts -------------------------------------------------------------------------------- /src/util/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/src/util/logger.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /windows_ez_start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkaccino/vector-bot/HEAD/windows_ez_start.bat --------------------------------------------------------------------------------