mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-15 11:03:30 +01:00
chore: deps
This commit is contained in:
@@ -45,10 +45,10 @@
|
||||
"@actions/glob": "^0.4.0",
|
||||
"@planetscale/database": "^1.7.0",
|
||||
"tslib": "^2.5.0",
|
||||
"undici": "^5.22.0"
|
||||
"undici": "^5.22.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.18.26",
|
||||
"@types/node": "16.18.29",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.40.0",
|
||||
@@ -56,7 +56,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -32,18 +32,18 @@
|
||||
},
|
||||
"homepage": "https://discord.js.org",
|
||||
"dependencies": {
|
||||
"@microsoft/api-extractor-model": "7.26.8",
|
||||
"@microsoft/api-extractor-model": "7.26.9",
|
||||
"@microsoft/tsdoc": "0.14.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.18.26",
|
||||
"@types/node": "16.18.29",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-config-neon": "^0.1.47",
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4"
|
||||
},
|
||||
"engines": {
|
||||
|
||||
@@ -59,13 +59,13 @@
|
||||
"homepage": "https://discord.js.org",
|
||||
"dependencies": {
|
||||
"@msgpack/msgpack": "^3.0.0-beta2",
|
||||
"@vladfrangu/async_event_emitter": "^2.2.1",
|
||||
"@vladfrangu/async_event_emitter": "^2.2.2",
|
||||
"ioredis": "^5.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "16.18.26",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "16.18.29",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.40.0",
|
||||
@@ -73,7 +73,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
"dependencies": {
|
||||
"@discordjs/formatters": "workspace:^",
|
||||
"@discordjs/util": "workspace:^",
|
||||
"@sapphire/shapeshift": "^3.8.2",
|
||||
"@sapphire/shapeshift": "^3.9.0",
|
||||
"discord-api-types": "^0.37.41",
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"ts-mixer": "^6.0.3",
|
||||
@@ -66,8 +66,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "16.18.26",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "16.18.29",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"downlevel-dts": "^0.11.0",
|
||||
@@ -77,7 +77,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -52,7 +52,7 @@ export class SlashCommandIntegerOption
|
||||
throw new RangeError('Autocomplete and choices are mutually exclusive to each other.');
|
||||
}
|
||||
|
||||
return { ...this };
|
||||
return { ...this } as APIApplicationCommandIntegerOption;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ export class SlashCommandNumberOption
|
||||
throw new RangeError('Autocomplete and choices are mutually exclusive to each other.');
|
||||
}
|
||||
|
||||
return { ...this };
|
||||
return { ...this } as APIApplicationCommandNumberOption;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ export class SlashCommandStringOption extends ApplicationCommandOptionBase {
|
||||
throw new RangeError('Autocomplete and choices are mutually exclusive to each other.');
|
||||
}
|
||||
|
||||
return { ...this };
|
||||
return { ...this } as APIApplicationCommandStringOption;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -53,8 +53,8 @@
|
||||
"homepage": "https://discord.js.org",
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "16.18.26",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "16.18.29",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"esbuild-plugin-version-injector": "^1.1.0",
|
||||
@@ -63,7 +63,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -57,14 +57,14 @@
|
||||
"@discordjs/rest": "workspace:^",
|
||||
"@discordjs/util": "workspace:^",
|
||||
"@discordjs/ws": "workspace:^",
|
||||
"@sapphire/snowflake": "^3.4.2",
|
||||
"@vladfrangu/async_event_emitter": "^2.2.1",
|
||||
"discord-api-types": "^0.37.41"
|
||||
"@sapphire/snowflake": "^3.5.1",
|
||||
"@vladfrangu/async_event_emitter": "^2.2.2",
|
||||
"discord-api-types": "^0.37.42"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "18.16.5",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "18.16.8",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"esbuild-plugin-version-injector": "^1.1.0",
|
||||
@@ -73,7 +73,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -51,8 +51,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "16.18.26",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "16.18.29",
|
||||
"@types/validate-npm-package-name": "^4.0.0",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
|
||||
@@ -56,19 +56,19 @@
|
||||
"@discordjs/rest": "^1.7.1",
|
||||
"@discordjs/util": "workspace:^",
|
||||
"@discordjs/ws": "^0.8.3",
|
||||
"@sapphire/snowflake": "^3.4.2",
|
||||
"@sapphire/snowflake": "^3.5.1",
|
||||
"@types/ws": "^8.5.4",
|
||||
"discord-api-types": "^0.37.41",
|
||||
"discord-api-types": "^0.37.42",
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"lodash.snakecase": "^4.1.1",
|
||||
"tslib": "^2.5.0",
|
||||
"undici": "^5.22.0",
|
||||
"undici": "^5.22.1",
|
||||
"ws": "^8.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@discordjs/docgen": "workspace:^",
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@types/node": "16.18.26",
|
||||
"@types/node": "16.18.29",
|
||||
"dtslint": "^4.2.1",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
@@ -76,7 +76,7 @@
|
||||
"prettier": "^2.8.8",
|
||||
"tsd": "^0.28.1",
|
||||
"tslint": "^6.1.3",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4"
|
||||
},
|
||||
"engines": {
|
||||
|
||||
@@ -44,19 +44,19 @@
|
||||
"commander": "^10.0.1",
|
||||
"jsdoc-to-markdown": "^8.0.0",
|
||||
"tslib": "^2.5.0",
|
||||
"typedoc": "^0.24.6"
|
||||
"typedoc": "^0.24.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@types/jsdoc-to-markdown": "^7.0.3",
|
||||
"@types/node": "16.18.26",
|
||||
"@types/node": "16.18.29",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-config-neon": "^0.1.47",
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4"
|
||||
},
|
||||
"engines": {
|
||||
|
||||
@@ -46,12 +46,12 @@
|
||||
},
|
||||
"homepage": "https://discord.js.org",
|
||||
"dependencies": {
|
||||
"discord-api-types": "^0.37.41"
|
||||
"discord-api-types": "^0.37.42"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "16.18.26",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "16.18.29",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.40.0",
|
||||
@@ -59,7 +59,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -60,12 +60,12 @@
|
||||
"@discordjs/rest": "workspace:^",
|
||||
"@discordjs/util": "workspace:^",
|
||||
"@discordjs/ws": "workspace:^",
|
||||
"discord-api-types": "^0.37.41"
|
||||
"discord-api-types": "^0.37.42"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "18.16.5",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "18.16.8",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"esbuild-plugin-version-injector": "^1.1.0",
|
||||
@@ -74,7 +74,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -49,14 +49,14 @@
|
||||
"tslib": "^2.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "18.16.5",
|
||||
"@types/node": "18.16.8",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-config-neon": "^0.1.47",
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4"
|
||||
},
|
||||
"engines": {
|
||||
|
||||
@@ -59,12 +59,12 @@
|
||||
"@discordjs/rest": "workspace:^",
|
||||
"@discordjs/util": "workspace:^",
|
||||
"tslib": "^2.5.0",
|
||||
"undici": "^5.22.0"
|
||||
"undici": "^5.22.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "18.16.5",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "18.16.8",
|
||||
"@types/supertest": "^2.0.12",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
@@ -74,7 +74,7 @@
|
||||
"prettier": "^2.8.8",
|
||||
"supertest": "^6.3.3",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -64,16 +64,16 @@
|
||||
"@discordjs/collection": "workspace:^",
|
||||
"@discordjs/util": "workspace:^",
|
||||
"@sapphire/async-queue": "^1.5.0",
|
||||
"@sapphire/snowflake": "^3.4.2",
|
||||
"discord-api-types": "^0.37.41",
|
||||
"file-type": "^18.3.0",
|
||||
"@sapphire/snowflake": "^3.5.1",
|
||||
"discord-api-types": "^0.37.42",
|
||||
"file-type": "^18.4.0",
|
||||
"tslib": "^2.5.0",
|
||||
"undici": "^5.22.0"
|
||||
"undici": "^5.22.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "18.16.5",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "18.16.8",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"esbuild-plugin-version-injector": "^1.1.0",
|
||||
@@ -82,7 +82,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -45,18 +45,18 @@
|
||||
"homepage": "https://discord.js.org",
|
||||
"dependencies": {
|
||||
"@discordjs/api-extractor-utils": "workspace:^",
|
||||
"@microsoft/api-extractor-model": "7.26.8",
|
||||
"@microsoft/api-extractor-model": "7.26.9",
|
||||
"@microsoft/tsdoc": "0.14.2",
|
||||
"@microsoft/tsdoc-config": "0.16.2",
|
||||
"commander": "^10.0.1",
|
||||
"fs-extra": "^11.1.1",
|
||||
"tslib": "^2.5.0",
|
||||
"undici": "^5.22.0",
|
||||
"undici": "^5.22.1",
|
||||
"yaml": "2.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/fs-extra": "^11.0.1",
|
||||
"@types/node": "16.18.26",
|
||||
"@types/node": "16.18.29",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.40.0",
|
||||
@@ -64,7 +64,7 @@
|
||||
"eslint-formatter-pretty": "^5.0.0",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -54,15 +54,15 @@
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@react-icons/all-files": "^4.1.0",
|
||||
"@storybook/addon-essentials": "^7.0.9",
|
||||
"@storybook/addon-interactions": "^7.0.9",
|
||||
"@storybook/addon-links": "^7.0.9",
|
||||
"@storybook/addon-styling": "^1.0.6",
|
||||
"@storybook/blocks": "^7.0.9",
|
||||
"@storybook/react": "^7.0.9",
|
||||
"@storybook/react-vite": "^7.0.9",
|
||||
"@storybook/addon-essentials": "^7.0.11",
|
||||
"@storybook/addon-interactions": "^7.0.11",
|
||||
"@storybook/addon-links": "^7.0.11",
|
||||
"@storybook/addon-styling": "^1.0.8",
|
||||
"@storybook/blocks": "^7.0.11",
|
||||
"@storybook/react": "^7.0.11",
|
||||
"@storybook/react-vite": "^7.0.11",
|
||||
"@storybook/testing-library": "^0.1.0",
|
||||
"@types/node": "16.18.26",
|
||||
"@types/node": "16.18.29",
|
||||
"@types/react": "^18.2.6",
|
||||
"@types/react-dom": "^18.2.4",
|
||||
"@unocss/eslint-config": "^0.51.12",
|
||||
@@ -77,8 +77,8 @@
|
||||
"eslint-plugin-storybook": "^0.6.12",
|
||||
"prettier": "^2.8.8",
|
||||
"prop-types": "^15.8.1",
|
||||
"storybook": "^7.0.9",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"storybook": "^7.0.11",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"unocss": "^0.51.12",
|
||||
"vite": "^4.3.5",
|
||||
|
||||
@@ -54,8 +54,8 @@
|
||||
"homepage": "https://discord.js.org",
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "16.18.26",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "16.18.29",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.40.0",
|
||||
@@ -64,7 +64,7 @@
|
||||
"prettier": "^2.8.8",
|
||||
"tsd": "^0.28.1",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"vitest": "^0.31.0"
|
||||
},
|
||||
|
||||
@@ -55,7 +55,7 @@
|
||||
"homepage": "https://discord.js.org",
|
||||
"dependencies": {
|
||||
"@types/ws": "^8.5.4",
|
||||
"discord-api-types": "^0.37.41",
|
||||
"discord-api-types": "^0.37.42",
|
||||
"prism-media": "^1.3.5",
|
||||
"tslib": "^2.5.0",
|
||||
"ws": "^8.13.0"
|
||||
@@ -65,9 +65,9 @@
|
||||
"@babel/preset-env": "^7.21.5",
|
||||
"@babel/preset-typescript": "^7.21.5",
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/jest": "^29.5.1",
|
||||
"@types/node": "16.18.26",
|
||||
"@types/node": "16.18.29",
|
||||
"cross-env": "^7.0.3",
|
||||
"esbuild-plugin-version-injector": "^1.1.0",
|
||||
"eslint": "^8.40.0",
|
||||
@@ -78,7 +78,7 @@
|
||||
"mock-socket": "^9.2.1",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"tweetnacl": "^1.0.3",
|
||||
"typescript": "^5.0.4"
|
||||
},
|
||||
|
||||
@@ -66,15 +66,15 @@
|
||||
"@discordjs/util": "workspace:^",
|
||||
"@sapphire/async-queue": "^1.5.0",
|
||||
"@types/ws": "^8.5.4",
|
||||
"@vladfrangu/async_event_emitter": "^2.2.1",
|
||||
"discord-api-types": "^0.37.41",
|
||||
"@vladfrangu/async_event_emitter": "^2.2.2",
|
||||
"discord-api-types": "^0.37.42",
|
||||
"tslib": "^2.5.0",
|
||||
"ws": "^8.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@favware/cliff-jumper": "^2.0.0",
|
||||
"@microsoft/api-extractor": "^7.34.8",
|
||||
"@types/node": "18.16.5",
|
||||
"@microsoft/api-extractor": "^7.34.9",
|
||||
"@types/node": "18.16.8",
|
||||
"@vitest/coverage-c8": "^0.31.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"esbuild-plugin-version-injector": "^1.1.0",
|
||||
@@ -84,9 +84,9 @@
|
||||
"mock-socket": "^9.2.1",
|
||||
"prettier": "^2.8.8",
|
||||
"tsup": "^6.7.0",
|
||||
"turbo": "^1.9.4-canary.10",
|
||||
"turbo": "^1.9.4",
|
||||
"typescript": "^5.0.4",
|
||||
"undici": "^5.22.0",
|
||||
"undici": "^5.22.1",
|
||||
"vitest": "^0.31.0",
|
||||
"zlib-sync": "^0.1.8"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user