chore: deps

This commit is contained in:
iCrawl
2024-03-11 17:50:39 +01:00
parent 5f2095b76c
commit 0d4c26ba4c
32 changed files with 2218 additions and 2304 deletions

View File

@@ -51,9 +51,9 @@
"@vercel/edge-config": "^1.1.0",
"@vercel/og": "^0.6.2",
"ariakit": "2.0.0-next.44",
"cmdk": "^0.2.1",
"cmdk": "^1.0.0",
"contentlayer": "^0.3.4",
"next": "14.1.0",
"next": "14.1.3",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"react": "^18.2.0",
@@ -65,13 +65,13 @@
"sharp": "^0.33.2"
},
"devDependencies": {
"@next/bundle-analyzer": "14.1.1",
"@next/bundle-analyzer": "14.1.3",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/html-escaper": "^3.0.2",
"@types/node": "18.18.8",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@unocss/eslint-plugin": "^0.58.5",
"@unocss/postcss": "^0.58.5",
"@unocss/reset": "^0.58.5",
@@ -81,16 +81,16 @@
"eslint": "^8.57.0",
"eslint-config-neon": "^0.1.59",
"eslint-formatter-pretty": "^6.0.1",
"happy-dom": "^13.6.2",
"happy-dom": "^13.7.3",
"hast-util-to-string": "^2.0.0",
"hastscript": "^8.0.0",
"html-escaper": "^3.0.3",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"unocss": "^0.58.5",
"vercel": "^33.5.3",
"vercel": "^33.5.5",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -22,8 +22,7 @@ export default withBundleAnalyzer({
},
webpack(config, { isServer }) {
if (!isServer) {
// Don't include any locale strings in the client JS bundle.
config.plugins.push(localesPlugin.webpack({ locales: [] }));
config.plugins.push(localesPlugin.webpack({ locales: ['en-US'] }));
}
return config;

View File

@@ -53,33 +53,33 @@
"@vercel/edge-config": "^1.1.0",
"@vercel/og": "^0.6.2",
"@vercel/postgres": "^0.7.2",
"cmdk": "^0.2.1",
"cmdk": "^1.0.0",
"geist": "^1.2.2",
"jotai": "^2.7.0",
"lucide-react": "^0.344.0",
"meilisearch": "^0.37.0",
"next": "14.1.2-canary.2",
"lucide-react": "^0.356.0",
"meilisearch": "^0.38.0",
"next": "14.2.0-canary.13",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"overlayscrollbars": "^2.5.0",
"overlayscrollbars": "^2.6.0",
"overlayscrollbars-react": "^0.5.4",
"react": "^18.2.0",
"react-aria-components": "^1.1.1",
"react-dom": "^18.2.0",
"sharp": "^0.33.2",
"usehooks-ts": "^2.15.1",
"usehooks-ts": "^3.0.1",
"vaul": "^0.9.0"
},
"devDependencies": {
"@next/bundle-analyzer": "14.1.2-canary.2",
"@next/bundle-analyzer": "14.2.0-canary.13",
"@react-aria/optimize-locales-plugin": "^1.0.2",
"@shikijs/rehype": "1.1.7",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "18.18.8",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"autoprefixer": "^10.4.18",
@@ -88,17 +88,17 @@
"eslint": "^8.57.0",
"eslint-config-neon": "^0.1.59",
"eslint-formatter-pretty": "^6.0.1",
"happy-dom": "^13.6.2",
"happy-dom": "^13.7.3",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"prettier-plugin-tailwindcss": "^0.5.12",
"remark-gfm": "^3.0.1",
"remark-rehype": "^11.1.0",
"shiki": "1.1.7",
"tailwindcss": "^3.4.1",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"vercel": "^33.5.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vercel": "^33.5.5",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -0,0 +1,16 @@
import Link from 'next/link';
export default function NotFound() {
return (
<div className="mx-auto flex min-h-[calc(100vh_-_100px)] max-w-lg flex-col place-content-center place-items-center gap-8 px-8 py-16 lg:px-6 lg:py-0">
<h1 className="text-[9rem] font-black leading-none md:text-[12rem]">404</h1>
<h2 className="text-[2rem] md:text-[3rem]">Not found.</h2>
<Link
className="inline-flex rounded-md border border-transparent bg-blurple px-6 py-2 font-medium text-white"
href="/docs"
>
Take me back
</Link>
</div>
);
}

View File

@@ -8,9 +8,13 @@ async function fetchLatestVersion(packageName: string): Promise<string> {
return 'main';
}
try {
const { rows } = await sql`select version from documentation where name = ${packageName} order by version desc`;
return rows.map((row) => row.version).at(1) ?? 'main';
} catch {
return '';
}
}
export default async function middleware(request: NextRequest) {

View File

@@ -10,21 +10,34 @@ export async function fetchDependencies({
readonly version: string;
}) {
if (ENV.IS_LOCAL_DEV) {
try {
const fileContent = await readFile(
join(process.cwd(), `../../packages/${packageName}/docs/${packageName}/split/${version}.dependencies.api.json`),
'utf8',
);
return JSON.parse(fileContent);
const parsedDependencies = JSON.parse(fileContent);
return Object.entries<string>(parsedDependencies)
.filter(([key]) => key.startsWith('@discordjs/') && !key.includes('api-extractor'))
.map(([key, value]) => `${key.replace('@discordjs/', '').replaceAll('.', '-')}-${value.replaceAll('.', '-')}`);
} catch {
return [];
}
}
try {
const isMainVersion = version === 'main';
const fileContent = await fetch(
`${process.env.BLOB_STORAGE_URL}/rewrite/${packageName}/${version}.dependencies.api.json`,
{ next: isMainVersion ? { revalidate: 0 } : { revalidate: 604_800 } },
);
const parsedDependencies = await fileContent.json();
return Object.entries<string>(parsedDependencies)
.filter(([key]) => key.startsWith('@discordjs/') && !key.includes('api-extractor'))
.map(([key, value]) => `${key.replace('@discordjs/', '').replaceAll('.', '-')}-${value.replaceAll('.', '-')}`);
} catch {
return [];
}
}

View File

@@ -6,7 +6,11 @@ export async function fetchLatestVersion(packageName: string): Promise<string> {
return 'main';
}
try {
const { rows } = await sql`select version from documentation where name = ${packageName} order by version desc`;
return rows.map((row) => row.version).at(1) ?? 'main';
} catch {
return '';
}
}

View File

@@ -1,5 +1,6 @@
import { readFile } from 'node:fs/promises';
import { join } from 'node:path';
import { notFound } from 'next/navigation';
import { ENV } from './env';
export async function fetchNode({
@@ -14,17 +15,27 @@ export async function fetchNode({
const normalizeItem = item.split(encodeURIComponent(':')).join('.').toLowerCase();
if (ENV.IS_LOCAL_DEV) {
try {
const fileContent = await readFile(
join(process.cwd(), `../../packages/${packageName}/docs/split/${version}.${normalizeItem}.api.json`),
'utf8',
);
return JSON.parse(fileContent);
} catch {
notFound();
}
}
try {
const isMainVersion = version === 'main';
const fileContent = await fetch(
`${process.env.BLOB_STORAGE_URL}/rewrite/${packageName}/${version}.${normalizeItem}.api.json`,
{ next: isMainVersion ? { revalidate: 0 } : { revalidate: 604_800 } },
);
return fileContent.json();
return await fileContent.json();
} catch {
notFound();
}
}

View File

@@ -1,5 +1,6 @@
import { readFile } from 'node:fs/promises';
import { join } from 'node:path';
import { notFound } from 'next/navigation';
import { ENV } from './env';
export async function fetchSitemap({
@@ -10,17 +11,27 @@ export async function fetchSitemap({
readonly version: string;
}) {
if (ENV.IS_LOCAL_DEV) {
try {
const fileContent = await readFile(
join(process.cwd(), `../../packages/${packageName}/docs/split/${version}.sitemap.api.json`),
'utf8',
);
return JSON.parse(fileContent);
} catch {
notFound();
}
}
try {
const isMainVersion = version === 'main';
const fileContent = await fetch(
`${process.env.BLOB_STORAGE_URL}/rewrite/${packageName}/${version}.sitemap.api.json`,
{ next: isMainVersion ? { revalidate: 0 } : { revalidate: 604_800 } },
);
return fileContent.json();
return await fileContent.json();
} catch {
notFound();
}
}

View File

@@ -51,7 +51,7 @@
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-angular": "^19.0.3",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@favware/npm-deprecate": "^1.0.7",
"@types/lodash.merge": "^4.6.9",
"@unocss/eslint-plugin": "^0.58.5",
@@ -65,11 +65,11 @@
"lodash.merge": "^4.6.2",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.0",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"typescript-eslint": "^7.1.1",
"unocss": "^0.58.5",
"vercel": "^33.5.3",
"vercel": "^33.5.5",
"vitest": "^1.3.1"
},
"pnpm": {

View File

@@ -45,10 +45,10 @@
"@discordjs/scripts": "workspace:^",
"@vercel/blob": "^0.22.1",
"@vercel/postgres": "^0.7.2",
"meilisearch": "^0.37.0",
"meilisearch": "^0.38.0",
"p-limit": "^5.0.0",
"tslib": "^2.6.2",
"undici": "6.7.0"
"undici": "6.7.1"
},
"devDependencies": {
"@types/node": "18.18.8",
@@ -59,8 +59,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -36,7 +36,7 @@
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.19.19",
"@types/node": "^18.19.22",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-neon": "^0.1.59",
@@ -44,6 +44,6 @@
"jest": "^29.7.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4"
"turbo": "^1.12.5"
}
}

View File

@@ -56,8 +56,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3"
"turbo": "^1.12.5",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18"

View File

@@ -60,14 +60,14 @@
"resolve": "~1.22.1",
"semver": "~7.5.4",
"source-map": "0.6.1",
"typescript": "^5.2.2"
"typescript": "^5.4.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.19",
"@types/node": "^18.19.22",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.5.7",
"@types/semver": "^7.5.8",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
@@ -76,6 +76,6 @@
"jest": "^29.7.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4"
"turbo": "^1.12.5"
}
}

View File

@@ -73,7 +73,7 @@
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "18.18.8",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -83,8 +83,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -75,7 +75,7 @@
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "16.18.60",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -86,8 +86,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -62,7 +62,7 @@
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "18.18.8",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -72,8 +72,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -74,7 +74,7 @@
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "18.18.8",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -84,8 +84,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -56,7 +56,7 @@
},
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "18.18.8",
"@types/prompts": "^2.4.9",
"@types/validate-npm-package-name": "^4.0.2",
@@ -66,9 +66,9 @@
"eslint-config-neon": "^0.1.59",
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"terser": "^5.28.1",
"terser": "^5.29.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -76,17 +76,17 @@
"fast-deep-equal": "3.1.3",
"lodash.snakecase": "4.1.1",
"tslib": "2.6.2",
"undici": "6.7.0",
"undici": "6.7.1",
"ws": "8.16.0"
},
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/docgen": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "3.0.0",
"@favware/cliff-jumper": "3.0.1",
"@types/node": "16.18.60",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"cross-env": "^7.0.3",
"dtslint": "4.2.1",
"eslint": "8.57.0",
@@ -95,8 +95,8 @@
"prettier": "3.2.5",
"tsd": "0.30.7",
"tslint": "6.1.3",
"turbo": "^1.12.4",
"typescript": "5.3.3"
"turbo": "^1.12.5",
"typescript": "5.4.2"
},
"engines": {
"node": ">=16.11.0"

View File

@@ -62,10 +62,10 @@
"commander": "^12.0.0",
"jsdoc-to-markdown": "^8.0.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.10"
"typedoc": "^0.25.12"
},
"devDependencies": {
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/jsdoc-to-markdown": "^7.0.6",
"@types/node": "18.18.8",
"cross-env": "^7.0.3",
@@ -74,8 +74,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3"
"turbo": "^1.12.5",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18"

View File

@@ -59,7 +59,7 @@
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "16.18.60",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -69,8 +69,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -76,7 +76,7 @@
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "18.18.8",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -86,8 +86,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -56,8 +56,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3"
"turbo": "^1.12.5",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18"

View File

@@ -67,12 +67,12 @@
"@discordjs/rest": "workspace:^",
"@discordjs/util": "workspace:^",
"tslib": "^2.6.2",
"undici": "6.7.0"
"undici": "6.7.1"
},
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "18.18.8",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^1.3.1",
@@ -84,8 +84,8 @@
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -88,14 +88,14 @@
"@sapphire/snowflake": "^3.5.3",
"@vladfrangu/async_event_emitter": "^2.2.4",
"discord-api-types": "0.37.61",
"magic-bytes.js": "^1.8.0",
"magic-bytes.js": "^1.10.0",
"tslib": "^2.6.2",
"undici": "6.7.0"
"undici": "6.7.1"
},
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "18.17.9",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -105,8 +105,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -67,11 +67,11 @@
"@vercel/postgres": "^0.7.2",
"commander": "^12.0.0",
"tslib": "^2.6.2",
"undici": "6.7.0",
"yaml": "2.4.0"
"undici": "6.7.1",
"yaml": "2.4.1"
},
"devDependencies": {
"@turbo/gen": "^1.12.4",
"@turbo/gen": "^1.12.5",
"@types/node": "18.18.8",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -81,8 +81,8 @@
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -57,35 +57,35 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@react-icons/all-files": "^4.1.0",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/blocks": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/testing-library": "^0.2.2",
"@types/node": "18.18.8",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@unocss/eslint-plugin": "^0.58.5",
"@unocss/reset": "^0.58.5",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"chromatic": "^11.0.0",
"chromatic": "^11.0.8",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-neon": "^0.1.59",
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"storybook": "^7.6.17",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"storybook": "^8.0.0",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"unocss": "^0.58.5",
"vite": "^5.1.4",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.3.1"
},

View File

@@ -63,7 +63,7 @@
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "16.18.60",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -74,8 +74,8 @@
"prettier": "^3.2.5",
"tsd": "^0.30.7",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"engines": {

View File

@@ -74,7 +74,7 @@
"@babel/preset-typescript": "^7.23.3",
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/jest": "^29.5.12",
"@types/node": "16.18.60",
"cross-env": "^7.0.3",
@@ -87,9 +87,9 @@
"mock-socket": "^9.3.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"turbo": "^1.12.5",
"tweetnacl": "^1.0.3",
"typescript": "^5.3.3"
"typescript": "^5.4.2"
},
"engines": {
"node": ">=16.11.0"

View File

@@ -85,7 +85,7 @@
"devDependencies": {
"@discordjs/api-extractor": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^3.0.0",
"@favware/cliff-jumper": "^3.0.1",
"@types/node": "18.17.9",
"@vitest/coverage-v8": "^1.3.1",
"cross-env": "^7.0.3",
@@ -97,9 +97,9 @@
"prettier": "^3.2.5",
"tsd": "^0.30.7",
"tsup": "^8.0.2",
"turbo": "^1.12.4",
"typescript": "^5.3.3",
"undici": "6.7.0",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"undici": "6.7.1",
"vitest": "^1.3.1",
"zlib-sync": "^0.1.9"
},

4158
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff