@@ -47,37 +47,37 @@ Follow these steps to set up and run your bot using this template:
4747
4848 Install the required dependencies:
4949 ` ` ` bash
50- npm install
50+ bun install
5151 ` ` `
5252 Start the bot in watch mode (auto-reload when code changes):
5353 ` ` ` bash
54- npm run dev
54+ bun dev
5555 ` ` `
5656
5757 ** Production Mode:**
5858
5959 Install only production dependencies:
6060 ` ` ` bash
61- npm install --only=prod
61+ bun install --only=prod
6262 ` ` `
6363
6464 Set ` DEBUG` environment variable to ` false` in your ` .env` file.
6565
6666 Start the bot in production mode:
6767 ` ` ` bash
68- npm run start:force # skip type checking and start
68+ bun run start:force # skip type checking and start
6969 # or
70- npm start # with type checking (requires development dependencies)
70+ bun start # with type checking (requires development dependencies)
7171 ` ` `
7272
7373# ## List of Available Commands
7474
75- - ` npm run lint` — Lint source code.
76- - ` npm run format` — Format source code.
77- - ` npm run typecheck` — Run type checking.
78- - ` npm run dev` — Start the bot in development mode.
79- - ` npm run start` — Start the bot.
80- - ` npm run start:force` — Starts the bot without type checking.
75+ - ` bun lint` — Lint source code.
76+ - ` bun format` — Format source code.
77+ - ` bun typecheck` — Run type checking.
78+ - ` bun dev` — Start the bot in development mode.
79+ - ` bun start` — Start the bot.
80+ - ` bun start:force` — Starts the bot without type checking.
8181
8282# ## Directory Structure
8383
0 commit comments