chore: update create-discord-bot dependencies (#10878)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Danial Raza
2025-05-05 09:00:35 +02:00
committed by GitHub
parent 4646a74565
commit 4acb71496f
10 changed files with 15 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
import type { RESTPostAPIApplicationCommandsJSONBody, CommandInteraction } from 'npm:discord.js@^14.17.0';
import type { RESTPostAPIApplicationCommandsJSONBody, CommandInteraction } from 'npm:discord.js@^14.19.3';
import { z } from 'npm:zod@^3.24.1';
import type { StructurePredicate } from '../util/loaders.ts';

View File

@@ -1,4 +1,4 @@
import type { ClientEvents } from 'npm:discord.js@^14.17.0';
import type { ClientEvents } from 'npm:discord.js@^14.19.3';
import { z } from 'npm:zod@^3.24.1';
import type { StructurePredicate } from '../util/loaders.ts';

View File

@@ -1,4 +1,4 @@
import { Events } from 'npm:discord.js@^14.17.0';
import { Events } from 'npm:discord.js@^14.19.3';
import type { Event } from './index.ts';
export default {

View File

@@ -1,6 +1,6 @@
import 'https://deno.land/std@0.223.0/dotenv/load.ts';
import { URL } from 'node:url';
import { Client, GatewayIntentBits } from 'npm:discord.js@^14.17.0';
import { Client, GatewayIntentBits } from 'npm:discord.js@^14.19.3';
import { loadCommands, loadEvents } from './util/loaders.ts';
import { registerEvents } from './util/registerEvents.ts';

View File

@@ -1,7 +1,7 @@
import 'https://deno.land/std@0.223.0/dotenv/load.ts';
import { URL } from 'node:url';
import { API } from 'npm:@discordjs/core@^2.0.1/http-only';
import { REST } from 'npm:discord.js@^14.17.0';
import { API } from 'npm:@discordjs/core@^2.1.0/http-only';
import { REST } from 'npm:discord.js@^14.19.3';
import { loadCommands } from './loaders.ts';
const commands = await loadCommands(new URL('../commands/', import.meta.url));

View File

@@ -1,4 +1,4 @@
import { Events, type Client } from 'npm:discord.js@^14.17.0';
import { Events, type Client } from 'npm:discord.js@^14.19.3';
import type { Command } from '../commands/index.ts';
import type { Event } from '../events/index.ts';