build(deps-dev): bump @biomejs/biome from 2.3.13 to 2.3.14 (#4741)

* build(deps-dev): bump @biomejs/biome from 2.3.13 to 2.3.14

Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 2.3.13 to 2.3.14.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.14/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps-dev): bump @biomejs/biome from 2.3.13 to 2.3.14 in /website (#4749)

* build(deps-dev): bump @types/react from 19.2.8 to 19.2.13 in /website (#4750)

Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 19.2.8 to 19.2.13.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: "@types/react"
  dependency-version: 19.2.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fleny <Fleny113@outlook.com>

* build(deps-dev): bump @biomejs/biome from 2.3.13 to 2.3.14 in /website

Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 2.3.13 to 2.3.14.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.14/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fleny <Fleny113@outlook.com>

* Update biome schema version

* biome format --write

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fleny <Fleny113@outlook.com>
This commit is contained in:
dependabot[bot]
2026-02-10 19:39:48 +01:00
committed by GitHub
parent 384d754e53
commit cf26d35f29
12 changed files with 129 additions and 127 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
"root": true,
"formatter": {
"enabled": true,
+1 -1
View File
@@ -25,7 +25,7 @@
"postinstall": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@biomejs/biome": "2.3.14",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^2.8.4",
+1 -1
View File
@@ -31,7 +31,7 @@
"@discordeno/utils": "workspace:^"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@biomejs/biome": "2.3.14",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.11",
"@types/chai": "^5.2.3",
+40 -38
View File
@@ -964,13 +964,14 @@ export enum DesiredPropertiesBehavior {
}
/** @private This is subject to breaking changes without notices */
export type RemoveKeyIfUndesired<Key, T, TProps extends TransformersDesiredProperties> = IsKeyDesired<
Key,
TransformersDesiredPropertiesMetadata[KeyByValue<TransformersObjects, T>]['dependencies'],
TProps[KeyByValue<TransformersObjects, T>]
> extends true
? Key
: never;
export type RemoveKeyIfUndesired<Key, T, TProps extends TransformersDesiredProperties> =
IsKeyDesired<
Key,
TransformersDesiredPropertiesMetadata[KeyByValue<TransformersObjects, T>]['dependencies'],
TProps[KeyByValue<TransformersObjects, T>]
> extends true
? Key
: never;
/** @private This is subject to breaking changes without notices */
export type GetErrorWhenUndesired<
@@ -1003,39 +1004,40 @@ export type IsObject<T> = T extends object ? (T extends Function ? false : true)
/**
* Transform a generic object properties based on the desired properties and behavior for other transformer objects in the object.
*/
export type TransformProperty<T, TProps extends TransformersDesiredProperties, TBehavior extends DesiredPropertiesBehavior> = T extends Array<infer U> // is it an array?
? // Yes, apply the desired props
TransformProperty<U, TProps, TBehavior>[]
: // No, is it a collection?
T extends Collection<infer U, infer UObj>
? // Yes, check for nested proprieties
Collection<U, TransformProperty<UObj, TProps, TBehavior>>
: // No, is it a Bot?
Equals<T, Bot> extends true
? // Yes, return a bot with the correct set of props & behavior
Bot<TProps, TBehavior>
: // No, is it a transformed object?
T extends TransformersObjects[keyof TransformersObjects]
? // Yes, apply the desired props
SetupDesiredProps<T, TProps, TBehavior>
: // No, is it an interaction resolved data member? | We need to check this here because the type itself has not way of getting the desired props
Equals<T, InteractionResolvedDataMember<TransformersDesiredProperties, DesiredPropertiesBehavior>> extends true
export type TransformProperty<T, TProps extends TransformersDesiredProperties, TBehavior extends DesiredPropertiesBehavior> =
T extends Array<infer U> // is it an array?
? // Yes, apply the desired props
TransformProperty<U, TProps, TBehavior>[]
: // No, is it a collection?
T extends Collection<infer U, infer UObj>
? // Yes, check for nested proprieties
Collection<U, TransformProperty<UObj, TProps, TBehavior>>
: // No, is it a Bot?
Equals<T, Bot> extends true
? // Yes, return a bot with the correct set of props & behavior
Bot<TProps, TBehavior>
: // No, is it a transformed object?
T extends TransformersObjects[keyof TransformersObjects]
? // Yes, apply the desired props
InteractionResolvedDataMember<TProps, TBehavior>
: // No, is it an interaction resolved data channel? | We need to check this here because the type itself has not way of getting the desired props
Equals<T, InteractionResolvedDataChannel<TransformersDesiredProperties, DesiredPropertiesBehavior>> extends true
SetupDesiredProps<T, TProps, TBehavior>
: // No, is it an interaction resolved data member? | We need to check this here because the type itself has not way of getting the desired props
Equals<T, InteractionResolvedDataMember<TransformersDesiredProperties, DesiredPropertiesBehavior>> extends true
? // Yes, apply the desired props
InteractionResolvedDataChannel<TProps, TBehavior>
: // Is it a function?
T extends (...args: infer P) => Promise<infer R>
? // Yes, we need to ensure we transform the return type as well
(...args: P) => Promise<TransformProperty<R, TProps, TBehavior>>
: // Is it an object?
IsObject<T> extends true
? // Yes, we need to ensure we transform the nested properties as well
{ [K in keyof T]: TransformProperty<T[K], TProps, TBehavior> }
: // No, this is a normal value such as string / bigint / number
T;
InteractionResolvedDataMember<TProps, TBehavior>
: // No, is it an interaction resolved data channel? | We need to check this here because the type itself has not way of getting the desired props
Equals<T, InteractionResolvedDataChannel<TransformersDesiredProperties, DesiredPropertiesBehavior>> extends true
? // Yes, apply the desired props
InteractionResolvedDataChannel<TProps, TBehavior>
: // Is it a function?
T extends (...args: infer P) => Promise<infer R>
? // Yes, we need to ensure we transform the return type as well
(...args: P) => Promise<TransformProperty<R, TProps, TBehavior>>
: // Is it an object?
IsObject<T> extends true
? // Yes, we need to ensure we transform the nested properties as well
{ [K in keyof T]: TransformProperty<T[K], TProps, TBehavior> }
: // No, this is a normal value such as string / bigint / number
T;
/**
* Apply desired properties to an object.
+1 -1
View File
@@ -31,7 +31,7 @@
"@discordeno/utils": "workspace:^"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@biomejs/biome": "2.3.14",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.11",
"@types/chai": "^5.2.3",
+1 -1
View File
@@ -33,7 +33,7 @@
"fzstd": "^0.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@biomejs/biome": "2.3.14",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.11",
"@types/chai": "^5.2.3",
+1 -1
View File
@@ -29,7 +29,7 @@
"@discordeno/utils": "workspace:^"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@biomejs/biome": "2.3.14",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.11",
"@types/chai": "^5.2.3",
+1 -1
View File
@@ -24,7 +24,7 @@
"test:type": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@biomejs/biome": "2.3.14",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.11",
"@types/mocha": "^10.0.10",
+1 -1
View File
@@ -27,7 +27,7 @@
"@discordeno/types": "workspace:^"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@biomejs/biome": "2.3.14",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.11",
"@types/chai": "^5.2.3",
+1 -1
View File
@@ -31,7 +31,7 @@
"react-dom": "^19.2.4"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@biomejs/biome": "2.3.14",
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
+37 -37
View File
@@ -5361,18 +5361,18 @@ __metadata:
languageName: node
linkType: hard
"@biomejs/biome@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/biome@npm:2.3.13"
"@biomejs/biome@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/biome@npm:2.3.14"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:2.3.13"
"@biomejs/cli-darwin-x64": "npm:2.3.13"
"@biomejs/cli-linux-arm64": "npm:2.3.13"
"@biomejs/cli-linux-arm64-musl": "npm:2.3.13"
"@biomejs/cli-linux-x64": "npm:2.3.13"
"@biomejs/cli-linux-x64-musl": "npm:2.3.13"
"@biomejs/cli-win32-arm64": "npm:2.3.13"
"@biomejs/cli-win32-x64": "npm:2.3.13"
"@biomejs/cli-darwin-arm64": "npm:2.3.14"
"@biomejs/cli-darwin-x64": "npm:2.3.14"
"@biomejs/cli-linux-arm64": "npm:2.3.14"
"@biomejs/cli-linux-arm64-musl": "npm:2.3.14"
"@biomejs/cli-linux-x64": "npm:2.3.14"
"@biomejs/cli-linux-x64-musl": "npm:2.3.14"
"@biomejs/cli-win32-arm64": "npm:2.3.14"
"@biomejs/cli-win32-x64": "npm:2.3.14"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
@@ -5392,62 +5392,62 @@ __metadata:
optional: true
bin:
biome: bin/biome
checksum: 10c0/920c44c755ab8efa2114b441baf74b8f5fae8e6ad98a301ce02228f546d20ef6ab7c33b990b0a4acd1ffc8f5985ae839cf1fec59a6f169732a0f86c14308728b
checksum: 10c0/7dc4c0354c59046a24cc23e69465e0d7def81ba85e2039268b828461c5f0978693c68d917e08c554474392314a9b7039fed50487e8fc4b96d039f2f63b1b829a
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-darwin-arm64@npm:2.3.13"
"@biomejs/cli-darwin-arm64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-darwin-arm64@npm:2.3.14"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-darwin-x64@npm:2.3.13"
"@biomejs/cli-darwin-x64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-darwin-x64@npm:2.3.14"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.3.13"
"@biomejs/cli-linux-arm64-musl@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.3.14"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-linux-arm64@npm:2.3.13"
"@biomejs/cli-linux-arm64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-linux-arm64@npm:2.3.14"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-linux-x64-musl@npm:2.3.13"
"@biomejs/cli-linux-x64-musl@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-linux-x64-musl@npm:2.3.14"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-linux-x64@npm:2.3.13"
"@biomejs/cli-linux-x64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-linux-x64@npm:2.3.14"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-win32-arm64@npm:2.3.13"
"@biomejs/cli-win32-arm64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-win32-arm64@npm:2.3.14"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-win32-x64@npm:2.3.13"
"@biomejs/cli-win32-x64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-win32-x64@npm:2.3.14"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -20857,7 +20857,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "website@workspace:."
dependencies:
"@biomejs/biome": "npm:2.3.13"
"@biomejs/biome": "npm:2.3.14"
"@docusaurus/core": "npm:^3.9.2"
"@docusaurus/faster": "npm:^3.9.2"
"@docusaurus/module-type-aliases": "npm:^3.9.2"
+43 -43
View File
@@ -12,18 +12,18 @@ __metadata:
languageName: node
linkType: hard
"@biomejs/biome@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/biome@npm:2.3.13"
"@biomejs/biome@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/biome@npm:2.3.14"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:2.3.13"
"@biomejs/cli-darwin-x64": "npm:2.3.13"
"@biomejs/cli-linux-arm64": "npm:2.3.13"
"@biomejs/cli-linux-arm64-musl": "npm:2.3.13"
"@biomejs/cli-linux-x64": "npm:2.3.13"
"@biomejs/cli-linux-x64-musl": "npm:2.3.13"
"@biomejs/cli-win32-arm64": "npm:2.3.13"
"@biomejs/cli-win32-x64": "npm:2.3.13"
"@biomejs/cli-darwin-arm64": "npm:2.3.14"
"@biomejs/cli-darwin-x64": "npm:2.3.14"
"@biomejs/cli-linux-arm64": "npm:2.3.14"
"@biomejs/cli-linux-arm64-musl": "npm:2.3.14"
"@biomejs/cli-linux-x64": "npm:2.3.14"
"@biomejs/cli-linux-x64-musl": "npm:2.3.14"
"@biomejs/cli-win32-arm64": "npm:2.3.14"
"@biomejs/cli-win32-x64": "npm:2.3.14"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
@@ -43,62 +43,62 @@ __metadata:
optional: true
bin:
biome: bin/biome
checksum: 10c0/920c44c755ab8efa2114b441baf74b8f5fae8e6ad98a301ce02228f546d20ef6ab7c33b990b0a4acd1ffc8f5985ae839cf1fec59a6f169732a0f86c14308728b
checksum: 10c0/7dc4c0354c59046a24cc23e69465e0d7def81ba85e2039268b828461c5f0978693c68d917e08c554474392314a9b7039fed50487e8fc4b96d039f2f63b1b829a
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-darwin-arm64@npm:2.3.13"
"@biomejs/cli-darwin-arm64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-darwin-arm64@npm:2.3.14"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-darwin-x64@npm:2.3.13"
"@biomejs/cli-darwin-x64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-darwin-x64@npm:2.3.14"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.3.13"
"@biomejs/cli-linux-arm64-musl@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.3.14"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-linux-arm64@npm:2.3.13"
"@biomejs/cli-linux-arm64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-linux-arm64@npm:2.3.14"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-linux-x64-musl@npm:2.3.13"
"@biomejs/cli-linux-x64-musl@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-linux-x64-musl@npm:2.3.14"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-linux-x64@npm:2.3.13"
"@biomejs/cli-linux-x64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-linux-x64@npm:2.3.14"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-win32-arm64@npm:2.3.13"
"@biomejs/cli-win32-arm64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-win32-arm64@npm:2.3.14"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:2.3.13":
version: 2.3.13
resolution: "@biomejs/cli-win32-x64@npm:2.3.13"
"@biomejs/cli-win32-x64@npm:2.3.14":
version: 2.3.14
resolution: "@biomejs/cli-win32-x64@npm:2.3.14"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -116,7 +116,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@discordeno/bot@workspace:packages/bot"
dependencies:
"@biomejs/biome": "npm:2.3.13"
"@biomejs/biome": "npm:2.3.14"
"@discordeno/gateway": "workspace:^"
"@discordeno/rest": "workspace:^"
"@discordeno/types": "workspace:^"
@@ -141,7 +141,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@discordeno/gateway@workspace:packages/gateway"
dependencies:
"@biomejs/biome": "npm:2.3.13"
"@biomejs/biome": "npm:2.3.14"
"@discordeno/types": "workspace:^"
"@discordeno/utils": "workspace:^"
"@swc/cli": "npm:^0.8.0"
@@ -170,7 +170,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@discordeno/rest@workspace:packages/rest"
dependencies:
"@biomejs/biome": "npm:2.3.13"
"@biomejs/biome": "npm:2.3.14"
"@discordeno/types": "workspace:^"
"@discordeno/utils": "workspace:^"
"@swc/cli": "npm:^0.8.0"
@@ -196,7 +196,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@discordeno/types@workspace:packages/types"
dependencies:
"@biomejs/biome": "npm:2.3.13"
"@biomejs/biome": "npm:2.3.14"
"@swc/cli": "npm:^0.8.0"
"@swc/core": "npm:^1.15.11"
"@types/mocha": "npm:^10.0.10"
@@ -213,7 +213,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@discordeno/utils@workspace:packages/utils"
dependencies:
"@biomejs/biome": "npm:2.3.13"
"@biomejs/biome": "npm:2.3.14"
"@discordeno/types": "workspace:^"
"@swc/cli": "npm:^0.8.0"
"@swc/core": "npm:^1.15.11"
@@ -1442,7 +1442,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "discordeno-monorepo@workspace:."
dependencies:
"@biomejs/biome": "npm:2.3.13"
"@biomejs/biome": "npm:2.3.14"
husky: "npm:^9.1.7"
lint-staged: "npm:^16.2.7"
turbo: "npm:^2.8.4"
@@ -1456,7 +1456,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "discordeno@workspace:packages/discordeno"
dependencies:
"@biomejs/biome": "npm:2.3.13"
"@biomejs/biome": "npm:2.3.14"
"@discordeno/bot": "workspace:^"
"@discordeno/gateway": "workspace:^"
"@discordeno/rest": "workspace:^"