Files
discord.js/packages/create-discord-bot/src/util/constants.ts
Almeida 00accf7470 fix: failed build in node and bad lints (#10444)
* fix: failed build in node and bad lints

* chore: update tsconfigs

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2024-08-20 22:40:37 +00:00

25 lines
535 B
TypeScript

/**
* The default package manager.
*/
export const DEFAULT_PACKAGE_MANAGER = 'npm' as const;
/**
* The default project name.
*/
export const DEFAULT_PROJECT_NAME = 'my-bot' as const;
/**
* The supported package managers.
*/
export const PACKAGE_MANAGERS = ['npm', 'pnpm', 'yarn', 'bun', 'deno'] as const;
/**
* The supported Node.js package managers.
*/
export const NODE_PACKAGE_MANAGERS = ['npm', 'pnpm', 'yarn'] as const;
/**
* The URL to the guide.
*/
export const GUIDE_URL = 'https://guide.discordjs.dev' as const;