this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add a test for gh-119 (#300)

authored by

Victor Berchet and committed by
GitHub
4d6bf1bc ef0b078e

+936 -63
+1 -1
examples/api/e2e/playwright.config.ts
··· 50 50 command: "pnpm preview:worker", 51 51 url: "http://localhost:8770", 52 52 reuseExistingServer: !process.env.CI, 53 - timeout: 100_000, 53 + timeout: 500_000, 54 54 }, 55 55 });
+1 -1
examples/api/open-next.config.ts
··· 1 - import type { OpenNextConfig } from "@opennextjs/aws/types/open-next"; 1 + import type { OpenNextConfig } from "@opennextjs/aws/types/open-next.js"; 2 2 3 3 const config: OpenNextConfig = { 4 4 default: {
+3
examples/bugs/gh-119/.eslintrc.json
··· 1 + { 2 + "extends": ["next/core-web-vitals", "next/typescript"] 3 + }
+47
examples/bugs/gh-119/.gitignore
··· 1 + # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 + 3 + # dependencies 4 + /node_modules 5 + /.pnp 6 + .pnp.* 7 + .yarn/* 8 + !.yarn/patches 9 + !.yarn/plugins 10 + !.yarn/releases 11 + !.yarn/versions 12 + 13 + # testing 14 + /coverage 15 + 16 + # next.js 17 + /.next/ 18 + /out/ 19 + 20 + # production 21 + /build 22 + 23 + # misc 24 + .DS_Store 25 + *.pem 26 + 27 + # debug 28 + npm-debug.log* 29 + yarn-debug.log* 30 + yarn-error.log* 31 + 32 + # env files (can opt-in for committing if needed) 33 + .env* 34 + 35 + # vercel 36 + .vercel 37 + 38 + # typescript 39 + *.tsbuildinfo 40 + next-env.d.ts 41 + 42 + # playwright 43 + /test-results/ 44 + /playwright-report/ 45 + /blob-report/ 46 + /playwright/.cache/ 47 +
+36
examples/bugs/gh-119/README.md
··· 1 + This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). 2 + 3 + ## Getting Started 4 + 5 + First, run the development server: 6 + 7 + ```bash 8 + npm run dev 9 + # or 10 + yarn dev 11 + # or 12 + pnpm dev 13 + # or 14 + bun dev 15 + ``` 16 + 17 + Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 18 + 19 + You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. 20 + 21 + This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. 22 + 23 + ## Learn More 24 + 25 + To learn more about Next.js, take a look at the following resources: 26 + 27 + - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 28 + - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 29 + 30 + You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! 31 + 32 + ## Deploy on Vercel 33 + 34 + The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 35 + 36 + Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
examples/bugs/gh-119/app/favicon.ico

This is a binary file and will not be displayed.

examples/bugs/gh-119/app/fonts/GeistMonoVF.woff

This is a binary file and will not be displayed.

examples/bugs/gh-119/app/fonts/GeistVF.woff

This is a binary file and will not be displayed.

+21
examples/bugs/gh-119/app/globals.css
··· 1 + @tailwind base; 2 + @tailwind components; 3 + @tailwind utilities; 4 + 5 + :root { 6 + --background: #ffffff; 7 + --foreground: #171717; 8 + } 9 + 10 + @media (prefers-color-scheme: dark) { 11 + :root { 12 + --background: #0a0a0a; 13 + --foreground: #ededed; 14 + } 15 + } 16 + 17 + body { 18 + color: var(--foreground); 19 + background: var(--background); 20 + font-family: Arial, Helvetica, sans-serif; 21 + }
+31
examples/bugs/gh-119/app/layout.tsx
··· 1 + import type { Metadata } from "next"; 2 + import localFont from "next/font/local"; 3 + import "./globals.css"; 4 + 5 + const geistSans = localFont({ 6 + src: "./fonts/GeistVF.woff", 7 + variable: "--font-geist-sans", 8 + weight: "100 900", 9 + }); 10 + const geistMono = localFont({ 11 + src: "./fonts/GeistMonoVF.woff", 12 + variable: "--font-geist-mono", 13 + weight: "100 900", 14 + }); 15 + 16 + export const metadata: Metadata = { 17 + title: "Create Next App", 18 + description: "Generated by create next app", 19 + }; 20 + 21 + export default function RootLayout({ 22 + children, 23 + }: Readonly<{ 24 + children: React.ReactNode; 25 + }>) { 26 + return ( 27 + <html lang="en"> 28 + <body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>{children}</body> 29 + </html> 30 + ); 31 + }
+70
examples/bugs/gh-119/app/page.tsx
··· 1 + import Image from "next/image"; 2 + 3 + export default function Home() { 4 + return ( 5 + <div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]"> 6 + <main className="flex flex-col gap-8 row-start-2 items-center sm:items-start"> 7 + <Image className="dark:invert" src="/next.svg" alt="Next.js logo" width={180} height={38} priority /> 8 + <ol className="list-inside list-decimal text-sm text-center sm:text-left font-[family-name:var(--font-geist-mono)]"> 9 + <li className="mb-2"> 10 + Get started by editing{" "} 11 + <code className="bg-black/[.05] dark:bg-white/[.06] px-1 py-0.5 rounded font-semibold"> 12 + app/page.tsx 13 + </code> 14 + . 15 + </li> 16 + <li>Save and see your changes instantly.</li> 17 + </ol> 18 + 19 + <div className="flex gap-4 items-center flex-col sm:flex-row"> 20 + <a 21 + className="rounded-full border border-solid border-transparent transition-colors flex items-center justify-center bg-foreground text-background gap-2 hover:bg-[#383838] dark:hover:bg-[#ccc] text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5" 22 + href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" 23 + target="_blank" 24 + rel="noopener noreferrer" 25 + > 26 + <Image className="dark:invert" src="/vercel.svg" alt="Vercel logomark" width={20} height={20} /> 27 + Deploy now 28 + </a> 29 + <a 30 + className="rounded-full border border-solid border-black/[.08] dark:border-white/[.145] transition-colors flex items-center justify-center hover:bg-[#f2f2f2] dark:hover:bg-[#1a1a1a] hover:border-transparent text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5 sm:min-w-44" 31 + href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" 32 + target="_blank" 33 + rel="noopener noreferrer" 34 + > 35 + Read our docs 36 + </a> 37 + </div> 38 + </main> 39 + <footer className="row-start-3 flex gap-6 flex-wrap items-center justify-center"> 40 + <a 41 + className="flex items-center gap-2 hover:underline hover:underline-offset-4" 42 + href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" 43 + target="_blank" 44 + rel="noopener noreferrer" 45 + > 46 + <Image aria-hidden src="/file.svg" alt="File icon" width={16} height={16} /> 47 + Learn 48 + </a> 49 + <a 50 + className="flex items-center gap-2 hover:underline hover:underline-offset-4" 51 + href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" 52 + target="_blank" 53 + rel="noopener noreferrer" 54 + > 55 + <Image aria-hidden src="/window.svg" alt="Window icon" width={16} height={16} /> 56 + Examples 57 + </a> 58 + <a 59 + className="flex items-center gap-2 hover:underline hover:underline-offset-4" 60 + href="https://nextjs.org?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app" 61 + target="_blank" 62 + rel="noopener noreferrer" 63 + > 64 + <Image aria-hidden src="/globe.svg" alt="Globe icon" width={16} height={16} /> 65 + Go to nextjs.org → 66 + </a> 67 + </footer> 68 + </div> 69 + ); 70 + }
+6
examples/bugs/gh-119/e2e/base.spec.ts
··· 1 + import { test, expect } from "@playwright/test"; 2 + 3 + test("the index page of the application shows the Next.js logo", async ({ page }) => { 4 + await page.goto("/"); 5 + await expect(page.getByAltText("Next.js logo")).toBeVisible(); 6 + });
+45
examples/bugs/gh-119/e2e/playwright.config.ts
··· 1 + import { defineConfig, devices } from "@playwright/test"; 2 + import type nodeProcess from "node:process"; 3 + 4 + declare const process: typeof nodeProcess; 5 + 6 + /** 7 + * See https://playwright.dev/docs/test-configuration. 8 + */ 9 + export default defineConfig({ 10 + testDir: "./", 11 + /* Run tests in files in parallel */ 12 + fullyParallel: true, 13 + /* Fail the build on CI if you accidentally left test.only in the source code. */ 14 + forbidOnly: !!process.env.CI, 15 + /* Retry on CI only */ 16 + retries: process.env.CI ? 2 : 0, 17 + /* Opt out of parallel tests on CI. */ 18 + workers: process.env.CI ? 1 : undefined, 19 + /* Reporter to use. See https://playwright.dev/docs/test-reporters */ 20 + reporter: "html", 21 + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ 22 + use: { 23 + /* Base URL to use in actions like `await page.goto('/')`. */ 24 + baseURL: "http://localhost:8750", 25 + 26 + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ 27 + trace: "on-first-retry", 28 + }, 29 + 30 + /* Configure projects for major browsers */ 31 + projects: [ 32 + { 33 + name: "chromium", 34 + use: { ...devices["Desktop Chrome"] }, 35 + }, 36 + ], 37 + 38 + /* Run your local dev server before starting the tests */ 39 + webServer: { 40 + command: "pnpm preview", 41 + url: "http://localhost:8750", 42 + reuseExistingServer: !process.env.CI, 43 + timeout: 500_000, 44 + }, 45 + });
+7
examples/bugs/gh-119/next.config.ts
··· 1 + import type { NextConfig } from "next"; 2 + 3 + const nextConfig: NextConfig = { 4 + /* config options here */ 5 + }; 6 + 7 + export default nextConfig;
+25
examples/bugs/gh-119/open-next.config.ts
··· 1 + import type { OpenNextConfig } from "@opennextjs/aws/types/open-next.js"; 2 + 3 + const config: OpenNextConfig = { 4 + default: { 5 + override: { 6 + wrapper: "cloudflare-node", 7 + converter: "edge", 8 + // Unused implementation 9 + incrementalCache: "dummy", 10 + tagCache: "dummy", 11 + queue: "dummy", 12 + }, 13 + }, 14 + 15 + middleware: { 16 + external: true, 17 + override: { 18 + wrapper: "cloudflare-edge", 19 + converter: "edge", 20 + proxyExternalRequest: "fetch", 21 + }, 22 + }, 23 + }; 24 + 25 + export default config;
+34
examples/bugs/gh-119/package.json
··· 1 + { 2 + "name": "gh-119", 3 + "version": "0.1.0", 4 + "private": true, 5 + "scripts": { 6 + "dev": "next dev", 7 + "build": "next build", 8 + "start": "next start", 9 + "lint": "next lint", 10 + "build:worker": "pnpm opennextjs-cloudflare", 11 + "dev:worker": "wrangler dev --port 8750 --inspector-port 9370", 12 + "preview": "pnpm build:worker && pnpm dev:worker", 13 + "e2e": "playwright test -c e2e/playwright.config.ts", 14 + "cf-typegen": "wrangler types --env-interface CloudflareEnv" 15 + }, 16 + "dependencies": { 17 + "next": "15.0.4", 18 + "react-dom": "^18.3.1", 19 + "react": "^18.3.1" 20 + }, 21 + "devDependencies": { 22 + "@opennextjs/cloudflare": "workspace:*", 23 + "@playwright/test": "catalog:", 24 + "@types/node": "^20", 25 + "@types/react-dom": "^18", 26 + "@types/react": "^18", 27 + "eslint-config-next": "15.0.4", 28 + "eslint": "^8", 29 + "postcss": "^8", 30 + "tailwindcss": "^3.4.1", 31 + "typescript": "^5", 32 + "wrangler": "catalog:" 33 + } 34 + }
+8
examples/bugs/gh-119/postcss.config.mjs
··· 1 + /** @type {import('postcss-load-config').Config} */ 2 + const config = { 3 + plugins: { 4 + tailwindcss: {}, 5 + }, 6 + }; 7 + 8 + export default config;
+1
examples/bugs/gh-119/public/file.svg
··· 1 + <svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
+1
examples/bugs/gh-119/public/globe.svg
··· 1 + <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
+1
examples/bugs/gh-119/public/next.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
+1
examples/bugs/gh-119/public/vercel.svg
··· 1 + <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>
+1
examples/bugs/gh-119/public/window.svg
··· 1 + <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
+18
examples/bugs/gh-119/tailwind.config.ts
··· 1 + import type { Config } from "tailwindcss"; 2 + 3 + export default { 4 + content: [ 5 + "./pages/**/*.{js,ts,jsx,tsx,mdx}", 6 + "./components/**/*.{js,ts,jsx,tsx,mdx}", 7 + "./app/**/*.{js,ts,jsx,tsx,mdx}", 8 + ], 9 + theme: { 10 + extend: { 11 + colors: { 12 + background: "var(--background)", 13 + foreground: "var(--foreground)", 14 + }, 15 + }, 16 + }, 17 + plugins: [], 18 + } satisfies Config;
+27
examples/bugs/gh-119/tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + "target": "ES2017", 4 + "lib": ["dom", "dom.iterable", "esnext"], 5 + "allowJs": true, 6 + "skipLibCheck": true, 7 + "strict": true, 8 + "noEmit": true, 9 + "esModuleInterop": true, 10 + "module": "esnext", 11 + "moduleResolution": "bundler", 12 + "resolveJsonModule": true, 13 + "isolatedModules": true, 14 + "jsx": "preserve", 15 + "incremental": true, 16 + "plugins": [ 17 + { 18 + "name": "next" 19 + } 20 + ], 21 + "paths": { 22 + "@/*": ["./*"] 23 + } 24 + }, 25 + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 26 + "exclude": ["node_modules", "open-next.config.ts"] 27 + }
+11
examples/bugs/gh-119/wrangler.json
··· 1 + { 2 + "$schema": "node_modules/wrangler/config-schema.json", 3 + "main": ".open-next/worker.js", 4 + "name": "gh-119", 5 + "compatibility_date": "2024-12-30", 6 + "compatibility_flags": ["nodejs_compat"], 7 + "assets": { 8 + "directory": ".open-next/assets", 9 + "binding": "ASSETS" 10 + } 11 + }
+1 -1
examples/create-next-app/e2e/playwright.config.ts
··· 50 50 command: "pnpm preview:worker", 51 51 url: "http://localhost:8771", 52 52 reuseExistingServer: !process.env.CI, 53 - timeout: 100_000, 53 + timeout: 500_000, 54 54 }, 55 55 });
+1 -1
examples/create-next-app/open-next.config.ts
··· 1 - import type { OpenNextConfig } from "@opennextjs/aws/types/open-next"; 1 + import type { OpenNextConfig } from "@opennextjs/aws/types/open-next.js"; 2 2 3 3 const config: OpenNextConfig = { 4 4 default: {
+1 -1
examples/e2e/app-pages-router/e2e/playwright.config.ts
··· 49 49 command: "pnpm preview", 50 50 url: "http://localhost:8792", 51 51 reuseExistingServer: !process.env.CI, 52 - timeout: 100_000, 52 + timeout: 500_000, 53 53 }, 54 54 });
+1 -1
examples/e2e/app-pages-router/open-next.config.ts
··· 1 - import type { OpenNextConfig } from "@opennextjs/aws/types/open-next"; 1 + import type { OpenNextConfig } from "@opennextjs/aws/types/open-next.js"; 2 2 3 3 const config: OpenNextConfig = { 4 4 default: {
+1 -1
examples/e2e/app-router/e2e/playwright.config.ts
··· 49 49 command: "pnpm preview", 50 50 url: "http://localhost:8790", 51 51 reuseExistingServer: !process.env.CI, 52 - timeout: 100_000, 52 + timeout: 500_000, 53 53 }, 54 54 });
+1 -1
examples/e2e/app-router/open-next.config.ts
··· 1 - import type { OpenNextConfig } from "@opennextjs/aws/types/open-next"; 1 + import type { OpenNextConfig } from "@opennextjs/aws/types/open-next.js"; 2 2 3 3 const config: OpenNextConfig = { 4 4 default: {
+1 -1
examples/e2e/pages-router/e2e/playwright.config.ts
··· 49 49 command: "pnpm preview", 50 50 url: "http://localhost:8791", 51 51 reuseExistingServer: !process.env.CI, 52 - timeout: 100_000, 52 + timeout: 500_000, 53 53 }, 54 54 });
+1 -1
examples/e2e/pages-router/open-next.config.ts
··· 1 - import type { OpenNextConfig } from "@opennextjs/aws/types/open-next"; 1 + import type { OpenNextConfig } from "@opennextjs/aws/types/open-next.js"; 2 2 3 3 const config: OpenNextConfig = { 4 4 default: {
+1 -1
examples/middleware/e2e/playwright.config.ts
··· 50 50 command: "pnpm preview:worker", 51 51 url: "http://localhost:8774", 52 52 reuseExistingServer: !process.env.CI, 53 - timeout: 100_000, 53 + timeout: 500_000, 54 54 }, 55 55 });
+1 -1
examples/middleware/open-next.config.ts
··· 1 - import type { OpenNextConfig } from "@opennextjs/aws/types/open-next"; 1 + import type { OpenNextConfig } from "@opennextjs/aws/types/open-next.js"; 2 2 3 3 const config: OpenNextConfig = { 4 4 default: {
+1 -1
examples/vercel-blog-starter/open-next.config.ts
··· 1 - import type { OpenNextConfig } from "@opennextjs/aws/types/open-next"; 1 + import type { OpenNextConfig } from "@opennextjs/aws/types/open-next.js"; 2 2 import cache from "@opennextjs/cloudflare/kvCache"; 3 3 4 4 const config: OpenNextConfig = {
+528 -50
pnpm-lock.yaml
··· 152 152 dependencies: 153 153 next: 154 154 specifier: 'catalog:' 155 - version: 14.2.11(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 155 + version: 14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 156 156 react: 157 157 specifier: 'catalog:' 158 158 version: 18.3.1 ··· 173 173 specifier: 'catalog:' 174 174 version: 3.106.0(@cloudflare/workers-types@4.20250109.0) 175 175 176 + examples/bugs/gh-119: 177 + dependencies: 178 + next: 179 + specifier: 15.0.4 180 + version: 15.0.4(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 181 + react: 182 + specifier: ^18.3.1 183 + version: 18.3.1 184 + react-dom: 185 + specifier: ^18.3.1 186 + version: 18.3.1(react@18.3.1) 187 + devDependencies: 188 + '@opennextjs/cloudflare': 189 + specifier: workspace:* 190 + version: link:../../../packages/cloudflare 191 + '@playwright/test': 192 + specifier: 'catalog:' 193 + version: 1.47.0 194 + '@types/node': 195 + specifier: ^20 196 + version: 20.17.6 197 + '@types/react': 198 + specifier: ^18 199 + version: 18.3.3 200 + '@types/react-dom': 201 + specifier: ^18 202 + version: 18.3.0 203 + eslint: 204 + specifier: ^8 205 + version: 8.57.1 206 + eslint-config-next: 207 + specifier: 15.0.4 208 + version: 15.0.4(eslint@8.57.1)(typescript@5.7.3) 209 + postcss: 210 + specifier: ^8 211 + version: 8.4.47 212 + tailwindcss: 213 + specifier: ^3.4.1 214 + version: 3.4.11(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)) 215 + typescript: 216 + specifier: ^5 217 + version: 5.7.3 218 + wrangler: 219 + specifier: 'catalog:' 220 + version: 3.106.0(@cloudflare/workers-types@4.20250109.0) 221 + 176 222 examples/create-next-app: 177 223 dependencies: 178 224 next: 179 225 specifier: 'catalog:' 180 - version: 14.2.11(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 226 + version: 14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 181 227 react: 182 228 specifier: 'catalog:' 183 229 version: 18.3.1 ··· 211 257 version: 8.4.31 212 258 tailwindcss: 213 259 specifier: ^3.4.1 214 - version: 3.4.11 260 + version: 3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)) 215 261 typescript: 216 262 specifier: 'catalog:' 217 263 version: 5.7.3 ··· 229 275 version: link:../../../packages/cloudflare 230 276 next: 231 277 specifier: catalog:e2e 232 - version: 15.1.0(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 278 + version: 15.1.0(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 233 279 react: 234 280 specifier: catalog:e2e 235 281 version: 19.0.0 ··· 257 303 version: 8.4.27 258 304 tailwindcss: 259 305 specifier: catalog:e2e 260 - version: 3.3.3 306 + version: 3.3.3(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)) 261 307 typescript: 262 308 specifier: catalog:default 263 309 version: 5.7.3 ··· 275 321 version: link:../../../packages/cloudflare 276 322 next: 277 323 specifier: catalog:e2e 278 - version: 15.1.0(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 324 + version: 15.1.0(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 279 325 react: 280 326 specifier: catalog:e2e 281 327 version: 19.0.0 ··· 303 349 version: 8.4.27 304 350 tailwindcss: 305 351 specifier: catalog:e2e 306 - version: 3.3.3 352 + version: 3.3.3(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)) 307 353 typescript: 308 354 specifier: catalog:default 309 355 version: 5.7.3 ··· 321 367 version: link:../../../packages/cloudflare 322 368 next: 323 369 specifier: catalog:e2e 324 - version: 15.1.0(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 370 + version: 15.1.0(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 325 371 react: 326 372 specifier: catalog:e2e 327 373 version: 19.0.0 ··· 349 395 version: 8.4.27 350 396 tailwindcss: 351 397 specifier: catalog:e2e 352 - version: 3.3.3 398 + version: 3.3.3(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)) 353 399 typescript: 354 400 specifier: catalog:default 355 401 version: 5.7.3 ··· 361 407 dependencies: 362 408 next: 363 409 specifier: catalog:e2e 364 - version: 15.1.0(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 410 + version: 15.1.0(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 365 411 react: 366 412 specifier: catalog:e2e 367 413 version: 19.0.0 ··· 380 426 dependencies: 381 427 '@clerk/nextjs': 382 428 specifier: 6.9.6 383 - version: 6.9.6(next@14.2.11(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 429 + version: 6.9.6(next@14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 384 430 next: 385 431 specifier: 'catalog:' 386 - version: 14.2.11(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 432 + version: 14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 387 433 react: 388 434 specifier: 'catalog:' 389 435 version: 18.3.1 ··· 429 475 version: 4.0.3 430 476 next: 431 477 specifier: 'catalog:' 432 - version: 14.2.11(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 478 + version: 14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 433 479 react: 434 480 specifier: 'catalog:' 435 481 version: 18.3.1 ··· 463 509 version: 8.4.47 464 510 tailwindcss: 465 511 specifier: ^3.4.4 466 - version: 3.4.11 512 + version: 3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)) 467 513 typescript: 468 514 specifier: 'catalog:' 469 515 version: 5.7.3 ··· 484 530 version: 2.1.1 485 531 geist: 486 532 specifier: ^1.3.1 487 - version: 1.3.1(next@15.0.0-canary.113(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730)) 533 + version: 1.3.1(next@15.0.0-canary.113(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730)) 488 534 next: 489 535 specifier: 15.0.0-canary.113 490 - version: 15.0.0-canary.113(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730) 536 + version: 15.0.0-canary.113(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730) 491 537 react: 492 538 specifier: 19.0.0-rc-3208e73e-20240730 493 539 version: 19.0.0-rc-3208e73e-20240730 ··· 503 549 version: link:../../packages/cloudflare 504 550 '@tailwindcss/container-queries': 505 551 specifier: ^0.1.1 506 - version: 0.1.1(tailwindcss@3.4.11) 552 + version: 0.1.1(tailwindcss@3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3))) 507 553 '@tailwindcss/typography': 508 554 specifier: ^0.5.13 509 - version: 0.5.15(tailwindcss@3.4.11) 555 + version: 0.5.15(tailwindcss@3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3))) 510 556 '@types/node': 511 557 specifier: 'catalog:' 512 558 version: 22.2.0 ··· 530 576 version: 0.6.8(prettier@3.3.3) 531 577 tailwindcss: 532 578 specifier: ^3.4.6 533 - version: 3.4.11 579 + version: 3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)) 534 580 typescript: 535 581 specifier: 'catalog:' 536 582 version: 5.7.3 ··· 603 649 version: 5.4.1 604 650 next: 605 651 specifier: 'catalog:' 606 - version: 14.2.11(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 652 + version: 14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 607 653 rimraf: 608 654 specifier: 'catalog:' 609 655 version: 6.0.1 ··· 615 661 version: 8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.7.3) 616 662 vitest: 617 663 specifier: 'catalog:' 618 - version: 2.1.1(@types/node@22.2.0)(terser@5.16.9) 664 + version: 2.1.1(@edge-runtime/vm@3.2.0)(@types/node@22.2.0)(terser@5.16.9) 619 665 620 666 packages: 621 667 ··· 1226 1272 engines: {bun: '>=1', deno: '>=2', node: '>=16'} 1227 1273 peerDependencies: 1228 1274 '@noble/ciphers': ^1.0.0 1275 + 1276 + '@edge-runtime/primitives@4.1.0': 1277 + resolution: {integrity: sha512-Vw0lbJ2lvRUqc7/soqygUX216Xb8T3WBZ987oywz6aJqRxcwSVWwr9e+Nqo2m9bxobA9mdbWNNoRY6S9eko1EQ==} 1278 + engines: {node: '>=16'} 1279 + 1280 + '@edge-runtime/vm@3.2.0': 1281 + resolution: {integrity: sha512-0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw==} 1282 + engines: {node: '>=16'} 1229 1283 1230 1284 '@emnapi/runtime@1.2.0': 1231 1285 resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} ··· 2186 2240 '@next/env@15.0.0-canary.113': 2187 2241 resolution: {integrity: sha512-hiD7ux+YPCUJi3up0dHnROYBYg/AuPErOcBBzjCkKQ1q4ufuUNBQms4oDeOiHG9+Qga8mN5+k2L5qm7rNhzU4g==} 2188 2242 2243 + '@next/env@15.0.4': 2244 + resolution: {integrity: sha512-WNRvtgnRVDD4oM8gbUcRc27IAhaL4eXQ/2ovGbgLnPGUvdyDr8UdXP4Q/IBDdAdojnD2eScryIDirv0YUCjUVw==} 2245 + 2189 2246 '@next/env@15.1.0': 2190 2247 resolution: {integrity: sha512-UcCO481cROsqJuszPPXJnb7GGuLq617ve4xuAyyNG4VSSocJNtMU5Fsx+Lp6mlN8c7W58aZLc5y6D/2xNmaK+w==} 2191 2248 2192 2249 '@next/eslint-plugin-next@14.2.14': 2193 2250 resolution: {integrity: sha512-kV+OsZ56xhj0rnTn6HegyTGkoa16Mxjrpk7pjWumyB2P8JVQb8S9qtkjy/ye0GnTr4JWtWG4x/2qN40lKZ3iVQ==} 2251 + 2252 + '@next/eslint-plugin-next@15.0.4': 2253 + resolution: {integrity: sha512-rbsF17XGzHtR7SDWzWpavSfum3/UdnF8bAaisnKwP//si3KWPTedVUsflAdjyK1zW3rweBjbALfKcavFneLGvg==} 2194 2254 2195 2255 '@next/swc-darwin-arm64@14.2.11': 2196 2256 resolution: {integrity: sha512-eiY9u7wEJZWp/Pga07Qy3ZmNEfALmmSS1HtsJF3y1QEyaExu7boENz11fWqDmZ3uvcyAxCMhTrA1jfVxITQW8g==} ··· 2204 2264 cpu: [arm64] 2205 2265 os: [darwin] 2206 2266 2267 + '@next/swc-darwin-arm64@15.0.4': 2268 + resolution: {integrity: sha512-QecQXPD0yRHxSXWL5Ff80nD+A56sUXZG9koUsjWJwA2Z0ZgVQfuy7gd0/otjxoOovPVHR2eVEvPMHbtZP+pf9w==} 2269 + engines: {node: '>= 10'} 2270 + cpu: [arm64] 2271 + os: [darwin] 2272 + 2207 2273 '@next/swc-darwin-arm64@15.1.0': 2208 2274 resolution: {integrity: sha512-ZU8d7xxpX14uIaFC3nsr4L++5ZS/AkWDm1PzPO6gD9xWhFkOj2hzSbSIxoncsnlJXB1CbLOfGVN4Zk9tg83PUw==} 2209 2275 engines: {node: '>= 10'} ··· 2222 2288 cpu: [x64] 2223 2289 os: [darwin] 2224 2290 2291 + '@next/swc-darwin-x64@15.0.4': 2292 + resolution: {integrity: sha512-pb7Bye3y1Og3PlCtnz2oO4z+/b3pH2/HSYkLbL0hbVuTGil7fPen8/3pyyLjdiTLcFJ+ymeU3bck5hd4IPFFCA==} 2293 + engines: {node: '>= 10'} 2294 + cpu: [x64] 2295 + os: [darwin] 2296 + 2225 2297 '@next/swc-darwin-x64@15.1.0': 2226 2298 resolution: {integrity: sha512-DQ3RiUoW2XC9FcSM4ffpfndq1EsLV0fj0/UY33i7eklW5akPUCo6OX2qkcLXZ3jyPdo4sf2flwAED3AAq3Om2Q==} 2227 2299 engines: {node: '>= 10'} ··· 2240 2312 cpu: [arm64] 2241 2313 os: [linux] 2242 2314 2315 + '@next/swc-linux-arm64-gnu@15.0.4': 2316 + resolution: {integrity: sha512-12oSaBFjGpB227VHzoXF3gJoK2SlVGmFJMaBJSu5rbpaoT5OjP5OuCLuR9/jnyBF1BAWMs/boa6mLMoJPRriMA==} 2317 + engines: {node: '>= 10'} 2318 + cpu: [arm64] 2319 + os: [linux] 2320 + 2243 2321 '@next/swc-linux-arm64-gnu@15.1.0': 2244 2322 resolution: {integrity: sha512-M+vhTovRS2F//LMx9KtxbkWk627l5Q7AqXWWWrfIzNIaUFiz2/NkOFkxCFyNyGACi5YbA8aekzCLtbDyfF/v5Q==} 2245 2323 engines: {node: '>= 10'} ··· 2258 2336 cpu: [arm64] 2259 2337 os: [linux] 2260 2338 2339 + '@next/swc-linux-arm64-musl@15.0.4': 2340 + resolution: {integrity: sha512-QARO88fR/a+wg+OFC3dGytJVVviiYFEyjc/Zzkjn/HevUuJ7qGUUAUYy5PGVWY1YgTzeRYz78akQrVQ8r+sMjw==} 2341 + engines: {node: '>= 10'} 2342 + cpu: [arm64] 2343 + os: [linux] 2344 + 2261 2345 '@next/swc-linux-arm64-musl@15.1.0': 2262 2346 resolution: {integrity: sha512-Qn6vOuwaTCx3pNwygpSGtdIu0TfS1KiaYLYXLH5zq1scoTXdwYfdZtwvJTpB1WrLgiQE2Ne2kt8MZok3HlFqmg==} 2263 2347 engines: {node: '>= 10'} ··· 2276 2360 cpu: [x64] 2277 2361 os: [linux] 2278 2362 2363 + '@next/swc-linux-x64-gnu@15.0.4': 2364 + resolution: {integrity: sha512-Z50b0gvYiUU1vLzfAMiChV8Y+6u/T2mdfpXPHraqpypP7yIT2UV9YBBhcwYkxujmCvGEcRTVWOj3EP7XW/wUnw==} 2365 + engines: {node: '>= 10'} 2366 + cpu: [x64] 2367 + os: [linux] 2368 + 2279 2369 '@next/swc-linux-x64-gnu@15.1.0': 2280 2370 resolution: {integrity: sha512-yeNh9ofMqzOZ5yTOk+2rwncBzucc6a1lyqtg8xZv0rH5znyjxHOWsoUtSq4cUTeeBIiXXX51QOOe+VoCjdXJRw==} 2281 2371 engines: {node: '>= 10'} ··· 2294 2384 cpu: [x64] 2295 2385 os: [linux] 2296 2386 2387 + '@next/swc-linux-x64-musl@15.0.4': 2388 + resolution: {integrity: sha512-7H9C4FAsrTAbA/ENzvFWsVytqRYhaJYKa2B3fyQcv96TkOGVMcvyS6s+sj4jZlacxxTcn7ygaMXUPkEk7b78zw==} 2389 + engines: {node: '>= 10'} 2390 + cpu: [x64] 2391 + os: [linux] 2392 + 2297 2393 '@next/swc-linux-x64-musl@15.1.0': 2298 2394 resolution: {integrity: sha512-t9IfNkHQs/uKgPoyEtU912MG6a1j7Had37cSUyLTKx9MnUpjj+ZDKw9OyqTI9OwIIv0wmkr1pkZy+3T5pxhJPg==} 2299 2395 engines: {node: '>= 10'} ··· 2308 2404 2309 2405 '@next/swc-win32-arm64-msvc@15.0.0-canary.113': 2310 2406 resolution: {integrity: sha512-VUGwcPda1WYpDfPPALntC31oJe5NJKyPLlQ7IIG5kFQQQeM37IxSA150r0TyaEXAI3Ug0xFsUuXvtZcKXKBs+g==} 2407 + engines: {node: '>= 10'} 2408 + cpu: [arm64] 2409 + os: [win32] 2410 + 2411 + '@next/swc-win32-arm64-msvc@15.0.4': 2412 + resolution: {integrity: sha512-Z/v3WV5xRaeWlgJzN9r4PydWD8sXV35ywc28W63i37G2jnUgScA4OOgS8hQdiXLxE3gqfSuHTicUhr7931OXPQ==} 2311 2413 engines: {node: '>= 10'} 2312 2414 cpu: [arm64] 2313 2415 os: [win32] ··· 2342 2444 cpu: [x64] 2343 2445 os: [win32] 2344 2446 2447 + '@next/swc-win32-x64-msvc@15.0.4': 2448 + resolution: {integrity: sha512-NGLchGruagh8lQpDr98bHLyWJXOBSmkEAfK980OiNBa7vNm6PsNoPvzTfstT78WyOeMRQphEQ455rggd7Eo+Dw==} 2449 + engines: {node: '>= 10'} 2450 + cpu: [x64] 2451 + os: [win32] 2452 + 2345 2453 '@next/swc-win32-x64-msvc@15.1.0': 2346 2454 resolution: {integrity: sha512-J1YdKuJv9xcixzXR24Dv+4SaDKc2jj31IVUEMdO5xJivMTXuE6MAdIi4qPjSymHuFG8O5wbfWKnhJUcHHpj5CA==} 2347 2455 engines: {node: '>= 10'} ··· 2452 2560 resolution: {tarball: https://pkg.pr.new/@opennextjs/aws@715} 2453 2561 version: 3.4.1 2454 2562 hasBin: true 2563 + 2564 + '@opentelemetry/api@1.9.0': 2565 + resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} 2566 + engines: {node: '>=8.0.0'} 2455 2567 2456 2568 '@pkgjs/parseargs@0.11.0': 2457 2569 resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} ··· 3115 3227 '@swc/helpers@0.5.12': 3116 3228 resolution: {integrity: sha512-KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==} 3117 3229 3230 + '@swc/helpers@0.5.13': 3231 + resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} 3232 + 3118 3233 '@swc/helpers@0.5.15': 3119 3234 resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} 3120 3235 ··· 3143 3258 '@ts-morph/common@0.24.0': 3144 3259 resolution: {integrity: sha512-c1xMmNHWpNselmpIqursHeOHHBTIsJLbB+NuovbTTRCNiTLEr/U9dbJ8qy0jd/O2x5pc3seWuOUN5R2IoOTp8A==} 3145 3260 3261 + '@tsconfig/node10@1.0.11': 3262 + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} 3263 + 3264 + '@tsconfig/node12@1.0.11': 3265 + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} 3266 + 3267 + '@tsconfig/node14@1.0.3': 3268 + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} 3269 + 3270 + '@tsconfig/node16@1.0.4': 3271 + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} 3272 + 3146 3273 '@tsconfig/node18@1.0.3': 3147 3274 resolution: {integrity: sha512-RbwvSJQsuN9TB04AQbGULYfOGE/RnSFk/FLQ5b0NmDf5Kx2q/lABZbHQPKCO1vZ6Fiwkplu+yb9pGdLy1iGseQ==} 3148 3275 ··· 3358 3485 anymatch@3.1.3: 3359 3486 resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 3360 3487 engines: {node: '>= 8'} 3488 + 3489 + arg@4.1.3: 3490 + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} 3361 3491 3362 3492 arg@5.0.2: 3363 3493 resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} ··· 3673 3803 core-js-compat@3.38.1: 3674 3804 resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==} 3675 3805 3806 + create-require@1.1.1: 3807 + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 3808 + 3676 3809 cross-spawn@5.1.0: 3677 3810 resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} 3678 3811 ··· 3805 3938 3806 3939 didyoumean@1.2.2: 3807 3940 resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 3941 + 3942 + diff@4.0.2: 3943 + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} 3944 + engines: {node: '>=0.3.1'} 3808 3945 3809 3946 dir-glob@3.0.1: 3810 3947 resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} ··· 3955 4092 typescript: 3956 4093 optional: true 3957 4094 4095 + eslint-config-next@15.0.4: 4096 + resolution: {integrity: sha512-97mLaAhbJKVQYXUBBrenRtEUAA6bNDPxWfaFEd6mEhKfpajP4wJrW4l7BUlHuYWxR8oQa9W014qBJpumpJQwWA==} 4097 + peerDependencies: 4098 + eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 4099 + typescript: '>=3.3.1' 4100 + peerDependenciesMeta: 4101 + typescript: 4102 + optional: true 4103 + 3958 4104 eslint-import-resolver-node@0.3.9: 3959 4105 resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 3960 4106 ··· 4044 4190 engines: {node: '>=10'} 4045 4191 peerDependencies: 4046 4192 eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 4193 + 4194 + eslint-plugin-react-hooks@5.1.0: 4195 + resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==} 4196 + engines: {node: '>=10'} 4197 + peerDependencies: 4198 + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 4047 4199 4048 4200 eslint-plugin-react@7.36.1: 4049 4201 resolution: {integrity: sha512-/qwbqNXZoq+VP30s1d4Nc1C5GTxjJQjk4Jzs4Wq2qzxFM7dSmuG2UkIjg2USMLh3A/aVcUNrK7v0J5U1XEGGwA==} ··· 4161 4313 4162 4314 fast-deep-equal@3.1.3: 4163 4315 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 4316 + 4317 + fast-glob@3.3.1: 4318 + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 4319 + engines: {node: '>=8.6.0'} 4164 4320 4165 4321 fast-glob@3.3.2: 4166 4322 resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} ··· 4804 4960 magic-string@0.30.11: 4805 4961 resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} 4806 4962 4963 + make-error@1.3.6: 4964 + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} 4965 + 4807 4966 map-obj@4.3.0: 4808 4967 resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} 4809 4968 engines: {node: '>=8'} ··· 5071 5230 sass: 5072 5231 optional: true 5073 5232 5233 + next@15.0.4: 5234 + resolution: {integrity: sha512-nuy8FH6M1FG0lktGotamQDCXhh5hZ19Vo0ht1AOIQWrYJLP598TIUagKtvJrfJ5AGwB/WmDqkKaKhMpVifvGPA==} 5235 + engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} 5236 + hasBin: true 5237 + peerDependencies: 5238 + '@opentelemetry/api': ^1.1.0 5239 + '@playwright/test': ^1.41.2 5240 + babel-plugin-react-compiler: '*' 5241 + react: ^18.2.0 || 19.0.0-rc-66855b96-20241106 || ^19.0.0 5242 + react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106 || ^19.0.0 5243 + sass: ^1.3.0 5244 + peerDependenciesMeta: 5245 + '@opentelemetry/api': 5246 + optional: true 5247 + '@playwright/test': 5248 + optional: true 5249 + babel-plugin-react-compiler: 5250 + optional: true 5251 + sass: 5252 + optional: true 5253 + 5074 5254 next@15.1.0: 5075 5255 resolution: {integrity: sha512-QKhzt6Y8rgLNlj30izdMbxAwjHMFANnLwDwZ+WQh5sMhyt4lEBqDK9QpvWHtIM4rINKPoJ8aiRZKg5ULSybVHw==} 5076 5256 engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} ··· 6051 6231 ts-morph@23.0.0: 6052 6232 resolution: {integrity: sha512-FcvFx7a9E8TUe6T3ShihXJLiJOiqyafzFKUO4aqIHDUCIvADdGNShcbc2W5PMr3LerXRv7mafvFZ9lRENxJmug==} 6053 6233 6234 + ts-node@10.9.1: 6235 + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} 6236 + hasBin: true 6237 + peerDependencies: 6238 + '@swc/core': '>=1.2.50' 6239 + '@swc/wasm': '>=1.2.50' 6240 + '@types/node': '*' 6241 + typescript: '>=2.7' 6242 + peerDependenciesMeta: 6243 + '@swc/core': 6244 + optional: true 6245 + '@swc/wasm': 6246 + optional: true 6247 + 6054 6248 tsconfig-paths@3.15.0: 6055 6249 resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 6056 6250 ··· 6217 6411 resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} 6218 6412 hasBin: true 6219 6413 6414 + v8-compile-cache-lib@3.0.1: 6415 + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} 6416 + 6220 6417 validate-npm-package-license@3.0.4: 6221 6418 resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 6222 6419 ··· 6379 6576 engines: {node: '>= 14'} 6380 6577 hasBin: true 6381 6578 6579 + yn@3.1.1: 6580 + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} 6581 + engines: {node: '>=6'} 6582 + 6382 6583 yocto-queue@0.1.0: 6383 6584 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 6384 6585 engines: {node: '>=10'} ··· 6390 6591 resolution: {integrity: sha512-Mb6GzuRyUEl8X+6V6xzHbd4XV0au/4gOYrYP+CAfHL32uPmGswES+v2YqonZiW1NZWVA3jkssCKSU2knonm/aQ==} 6391 6592 engines: {node: '>=20'} 6392 6593 6393 - zod@3.23.8: 6394 - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} 6594 + zod@3.24.1: 6595 + resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==} 6395 6596 6396 6597 zwitch@2.0.4: 6397 6598 resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} ··· 7948 8149 react-dom: 18.3.1(react@18.3.1) 7949 8150 tslib: 2.4.1 7950 8151 7951 - '@clerk/nextjs@6.9.6(next@14.2.11(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8152 + '@clerk/nextjs@6.9.6(next@14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7952 8153 dependencies: 7953 8154 '@clerk/backend': 1.21.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7954 8155 '@clerk/clerk-react': 5.21.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7955 8156 '@clerk/shared': 2.20.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7956 8157 '@clerk/types': 4.40.0 7957 8158 crypto-js: 4.2.0 7958 - next: 14.2.11(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8159 + next: 14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7959 8160 react: 18.3.1 7960 8161 react-dom: 18.3.1(react@18.3.1) 7961 8162 server-only: 0.0.1 ··· 8018 8219 dependencies: 8019 8220 '@noble/ciphers': 1.1.3 8020 8221 8222 + '@edge-runtime/primitives@4.1.0': 8223 + optional: true 8224 + 8225 + '@edge-runtime/vm@3.2.0': 8226 + dependencies: 8227 + '@edge-runtime/primitives': 4.1.0 8228 + optional: true 8229 + 8021 8230 '@emnapi/runtime@1.2.0': 8022 8231 dependencies: 8023 - tslib: 2.6.3 8232 + tslib: 2.8.1 8024 8233 optional: true 8025 8234 8026 8235 '@esbuild-plugins/node-globals-polyfill@0.2.3(esbuild@0.17.19)': ··· 8643 8852 8644 8853 '@next/env@15.0.0-canary.113': {} 8645 8854 8855 + '@next/env@15.0.4': {} 8856 + 8646 8857 '@next/env@15.1.0': {} 8647 8858 8648 8859 '@next/eslint-plugin-next@14.2.14': 8649 8860 dependencies: 8650 8861 glob: 10.3.10 8651 8862 8863 + '@next/eslint-plugin-next@15.0.4': 8864 + dependencies: 8865 + fast-glob: 3.3.1 8866 + 8652 8867 '@next/swc-darwin-arm64@14.2.11': 8653 8868 optional: true 8654 8869 8655 8870 '@next/swc-darwin-arm64@15.0.0-canary.113': 8656 8871 optional: true 8657 8872 8873 + '@next/swc-darwin-arm64@15.0.4': 8874 + optional: true 8875 + 8658 8876 '@next/swc-darwin-arm64@15.1.0': 8659 8877 optional: true 8660 8878 ··· 8664 8882 '@next/swc-darwin-x64@15.0.0-canary.113': 8665 8883 optional: true 8666 8884 8885 + '@next/swc-darwin-x64@15.0.4': 8886 + optional: true 8887 + 8667 8888 '@next/swc-darwin-x64@15.1.0': 8668 8889 optional: true 8669 8890 ··· 8673 8894 '@next/swc-linux-arm64-gnu@15.0.0-canary.113': 8674 8895 optional: true 8675 8896 8897 + '@next/swc-linux-arm64-gnu@15.0.4': 8898 + optional: true 8899 + 8676 8900 '@next/swc-linux-arm64-gnu@15.1.0': 8677 8901 optional: true 8678 8902 ··· 8680 8904 optional: true 8681 8905 8682 8906 '@next/swc-linux-arm64-musl@15.0.0-canary.113': 8907 + optional: true 8908 + 8909 + '@next/swc-linux-arm64-musl@15.0.4': 8683 8910 optional: true 8684 8911 8685 8912 '@next/swc-linux-arm64-musl@15.1.0': ··· 8689 8916 optional: true 8690 8917 8691 8918 '@next/swc-linux-x64-gnu@15.0.0-canary.113': 8919 + optional: true 8920 + 8921 + '@next/swc-linux-x64-gnu@15.0.4': 8692 8922 optional: true 8693 8923 8694 8924 '@next/swc-linux-x64-gnu@15.1.0': ··· 8700 8930 '@next/swc-linux-x64-musl@15.0.0-canary.113': 8701 8931 optional: true 8702 8932 8933 + '@next/swc-linux-x64-musl@15.0.4': 8934 + optional: true 8935 + 8703 8936 '@next/swc-linux-x64-musl@15.1.0': 8704 8937 optional: true 8705 8938 ··· 8707 8940 optional: true 8708 8941 8709 8942 '@next/swc-win32-arm64-msvc@15.0.0-canary.113': 8943 + optional: true 8944 + 8945 + '@next/swc-win32-arm64-msvc@15.0.4': 8710 8946 optional: true 8711 8947 8712 8948 '@next/swc-win32-arm64-msvc@15.1.0': ··· 8724 8960 '@next/swc-win32-x64-msvc@15.0.0-canary.113': 8725 8961 optional: true 8726 8962 8963 + '@next/swc-win32-x64-msvc@15.0.4': 8964 + optional: true 8965 + 8727 8966 '@next/swc-win32-x64-msvc@15.1.0': 8728 8967 optional: true 8729 8968 ··· 8860 9099 - aws-crt 8861 9100 - supports-color 8862 9101 9102 + '@opentelemetry/api@1.9.0': 9103 + optional: true 9104 + 8863 9105 '@pkgjs/parseargs@0.11.0': 8864 9106 optional: true 8865 9107 ··· 8894 9136 '@react-aria/ssr': 3.9.5(react@19.0.0-rc-3208e73e-20240730) 8895 9137 '@react-stately/utils': 3.10.3(react@19.0.0-rc-3208e73e-20240730) 8896 9138 '@react-types/shared': 3.24.1(react@19.0.0-rc-3208e73e-20240730) 8897 - '@swc/helpers': 0.5.12 9139 + '@swc/helpers': 0.5.15 8898 9140 clsx: 2.1.1 8899 9141 react: 19.0.0-rc-3208e73e-20240730 8900 9142 8901 9143 '@react-stately/utils@3.10.3(react@19.0.0-rc-3208e73e-20240730)': 8902 9144 dependencies: 8903 - '@swc/helpers': 0.5.12 9145 + '@swc/helpers': 0.5.15 8904 9146 react: 19.0.0-rc-3208e73e-20240730 8905 9147 8906 9148 '@react-types/shared@3.24.1(react@19.0.0-rc-3208e73e-20240730)': ··· 9821 10063 dependencies: 9822 10064 tslib: 2.6.3 9823 10065 10066 + '@swc/helpers@0.5.13': 10067 + dependencies: 10068 + tslib: 2.8.1 10069 + 9824 10070 '@swc/helpers@0.5.15': 9825 10071 dependencies: 9826 10072 tslib: 2.8.1 ··· 9830 10076 '@swc/counter': 0.1.3 9831 10077 tslib: 2.6.3 9832 10078 9833 - '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.11)': 10079 + '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)))': 9834 10080 dependencies: 9835 - tailwindcss: 3.4.11 10081 + tailwindcss: 3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)) 9836 10082 9837 - '@tailwindcss/typography@0.5.15(tailwindcss@3.4.11)': 10083 + '@tailwindcss/typography@0.5.15(tailwindcss@3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)))': 9838 10084 dependencies: 9839 10085 lodash.castarray: 4.4.0 9840 10086 lodash.isplainobject: 4.0.6 9841 10087 lodash.merge: 4.6.2 9842 10088 postcss-selector-parser: 6.0.10 9843 - tailwindcss: 3.4.11 10089 + tailwindcss: 3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)) 9844 10090 9845 10091 '@tanstack/react-virtual@3.10.8(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730)': 9846 10092 dependencies: ··· 9857 10103 mkdirp: 3.0.1 9858 10104 path-browserify: 1.0.1 9859 10105 10106 + '@tsconfig/node10@1.0.11': 10107 + optional: true 10108 + 10109 + '@tsconfig/node12@1.0.11': 10110 + optional: true 10111 + 10112 + '@tsconfig/node14@1.0.3': 10113 + optional: true 10114 + 10115 + '@tsconfig/node16@1.0.4': 10116 + optional: true 10117 + 9860 10118 '@tsconfig/node18@1.0.3': {} 9861 10119 9862 10120 '@tsconfig/strictest@2.0.5': {} ··· 9883 10141 9884 10142 '@types/mock-fs@4.13.4': 9885 10143 dependencies: 9886 - '@types/node': 22.2.0 10144 + '@types/node': 20.17.6 9887 10145 9888 10146 '@types/ms@0.7.34': {} 9889 10147 ··· 10152 10410 normalize-path: 3.0.0 10153 10411 picomatch: 2.3.1 10154 10412 10413 + arg@4.1.3: 10414 + optional: true 10415 + 10155 10416 arg@5.0.2: {} 10156 10417 10157 10418 argparse@1.0.10: ··· 10480 10741 dependencies: 10481 10742 browserslist: 4.24.0 10482 10743 10744 + create-require@1.1.1: 10745 + optional: true 10746 + 10483 10747 cross-spawn@5.1.0: 10484 10748 dependencies: 10485 10749 lru-cache: 4.1.5 ··· 10604 10868 10605 10869 didyoumean@1.2.2: {} 10606 10870 10871 + diff@4.0.2: 10872 + optional: true 10873 + 10607 10874 dir-glob@3.0.1: 10608 10875 dependencies: 10609 10876 path-type: 4.0.0 ··· 10927 11194 - eslint-plugin-import-x 10928 11195 - supports-color 10929 11196 11197 + eslint-config-next@15.0.4(eslint@8.57.1)(typescript@5.7.3): 11198 + dependencies: 11199 + '@next/eslint-plugin-next': 15.0.4 11200 + '@rushstack/eslint-patch': 1.10.4 11201 + '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3) 11202 + '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.7.3) 11203 + eslint: 8.57.1 11204 + eslint-import-resolver-node: 0.3.9 11205 + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1) 11206 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) 11207 + eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1) 11208 + eslint-plugin-react: 7.36.1(eslint@8.57.1) 11209 + eslint-plugin-react-hooks: 5.1.0(eslint@8.57.1) 11210 + optionalDependencies: 11211 + typescript: 5.7.3 11212 + transitivePeerDependencies: 11213 + - eslint-import-resolver-webpack 11214 + - eslint-plugin-import-x 11215 + - supports-color 11216 + 10930 11217 eslint-import-resolver-node@0.3.9: 10931 11218 dependencies: 10932 11219 debug: 3.2.7 ··· 10954 11241 - eslint-import-resolver-webpack 10955 11242 - supports-color 10956 11243 11244 + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1): 11245 + dependencies: 11246 + '@nolyfill/is-core-module': 1.0.39 11247 + debug: 4.3.6 11248 + enhanced-resolve: 5.17.1 11249 + eslint: 8.57.1 11250 + eslint-module-utils: 2.11.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) 11251 + fast-glob: 3.3.2 11252 + get-tsconfig: 4.8.0 11253 + is-bun-module: 1.2.1 11254 + is-glob: 4.0.3 11255 + optionalDependencies: 11256 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) 11257 + transitivePeerDependencies: 11258 + - '@typescript-eslint/parser' 11259 + - eslint-import-resolver-node 11260 + - eslint-import-resolver-webpack 11261 + - supports-color 11262 + 10957 11263 eslint-module-utils@2.11.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): 10958 11264 dependencies: 10959 11265 debug: 3.2.7 ··· 10961 11267 '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.7.3) 10962 11268 eslint: 8.57.1 10963 11269 eslint-import-resolver-node: 0.3.9 10964 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1) 11270 + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1) 11271 + transitivePeerDependencies: 11272 + - supports-color 11273 + 11274 + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): 11275 + dependencies: 11276 + debug: 3.2.7 11277 + optionalDependencies: 11278 + '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.7.3) 11279 + eslint: 8.57.1 11280 + eslint-import-resolver-node: 0.3.9 11281 + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1) 10965 11282 transitivePeerDependencies: 10966 11283 - supports-color 10967 11284 ··· 11003 11320 - eslint-import-resolver-webpack 11004 11321 - supports-color 11005 11322 11323 + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): 11324 + dependencies: 11325 + '@rtsao/scc': 1.1.0 11326 + array-includes: 3.1.8 11327 + array.prototype.findlastindex: 1.2.5 11328 + array.prototype.flat: 1.3.2 11329 + array.prototype.flatmap: 1.3.2 11330 + debug: 3.2.7 11331 + doctrine: 2.1.0 11332 + eslint: 8.57.1 11333 + eslint-import-resolver-node: 0.3.9 11334 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) 11335 + hasown: 2.0.2 11336 + is-core-module: 2.15.1 11337 + is-glob: 4.0.3 11338 + minimatch: 3.1.2 11339 + object.fromentries: 2.0.8 11340 + object.groupby: 1.0.3 11341 + object.values: 1.2.0 11342 + semver: 6.3.1 11343 + string.prototype.trimend: 1.0.8 11344 + tsconfig-paths: 3.15.0 11345 + optionalDependencies: 11346 + '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.7.3) 11347 + transitivePeerDependencies: 11348 + - eslint-import-resolver-typescript 11349 + - eslint-import-resolver-webpack 11350 + - supports-color 11351 + 11006 11352 eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.7.0(eslint@9.11.1(jiti@1.21.6))(typescript@5.7.3))(eslint@9.11.1(jiti@1.21.6)): 11007 11353 dependencies: 11008 11354 '@rtsao/scc': 1.1.0 ··· 11056 11402 dependencies: 11057 11403 eslint: 8.57.1 11058 11404 11405 + eslint-plugin-react-hooks@5.1.0(eslint@8.57.1): 11406 + dependencies: 11407 + eslint: 8.57.1 11408 + 11059 11409 eslint-plugin-react@7.36.1(eslint@8.57.1): 11060 11410 dependencies: 11061 11411 array-includes: 3.1.8 ··· 11304 11654 11305 11655 fast-deep-equal@3.1.3: {} 11306 11656 11657 + fast-glob@3.3.1: 11658 + dependencies: 11659 + '@nodelib/fs.stat': 2.0.5 11660 + '@nodelib/fs.walk': 1.2.8 11661 + glob-parent: 5.1.2 11662 + merge2: 1.4.1 11663 + micromatch: 4.0.7 11664 + 11307 11665 fast-glob@3.3.2: 11308 11666 dependencies: 11309 11667 '@nodelib/fs.stat': 2.0.5 ··· 11429 11787 11430 11788 functions-have-names@1.2.3: {} 11431 11789 11432 - geist@1.3.1(next@15.0.0-canary.113(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730)): 11790 + geist@1.3.1(next@15.0.0-canary.113(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730)): 11433 11791 dependencies: 11434 - next: 15.0.0-canary.113(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730) 11792 + next: 15.0.0-canary.113(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730) 11435 11793 11436 11794 get-east-asian-width@1.3.0: {} 11437 11795 ··· 11942 12300 dependencies: 11943 12301 '@jridgewell/sourcemap-codec': 1.5.0 11944 12302 12303 + make-error@1.3.6: 12304 + optional: true 12305 + 11945 12306 map-obj@4.3.0: {} 11946 12307 11947 12308 mdast-util-from-markdown@2.0.1: ··· 12176 12537 workerd: 1.20250124.0 12177 12538 ws: 8.18.0 12178 12539 youch: 3.3.3 12179 - zod: 3.23.8 12540 + zod: 3.24.1 12180 12541 transitivePeerDependencies: 12181 12542 - bufferutil 12182 12543 - supports-color ··· 12250 12611 12251 12612 negotiator@1.0.0: {} 12252 12613 12253 - next@14.2.11(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 12614 + next@14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 12254 12615 dependencies: 12255 12616 '@next/env': 14.2.11 12256 12617 '@swc/helpers': 0.5.5 ··· 12271 12632 '@next/swc-win32-arm64-msvc': 14.2.11 12272 12633 '@next/swc-win32-ia32-msvc': 14.2.11 12273 12634 '@next/swc-win32-x64-msvc': 14.2.11 12635 + '@opentelemetry/api': 1.9.0 12274 12636 '@playwright/test': 1.47.0 12275 12637 transitivePeerDependencies: 12276 12638 - '@babel/core' 12277 12639 - babel-plugin-macros 12278 12640 12279 - next@14.2.11(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 12641 + next@14.2.11(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 12280 12642 dependencies: 12281 12643 '@next/env': 14.2.11 12282 12644 '@swc/helpers': 0.5.5 ··· 12297 12659 '@next/swc-win32-arm64-msvc': 14.2.11 12298 12660 '@next/swc-win32-ia32-msvc': 14.2.11 12299 12661 '@next/swc-win32-x64-msvc': 14.2.11 12662 + '@opentelemetry/api': 1.9.0 12300 12663 '@playwright/test': 1.47.0 12301 12664 transitivePeerDependencies: 12302 12665 - '@babel/core' 12303 12666 - babel-plugin-macros 12304 12667 12305 - next@15.0.0-canary.113(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730): 12668 + next@15.0.0-canary.113(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0-rc-3208e73e-20240730(react@19.0.0-rc-3208e73e-20240730))(react@19.0.0-rc-3208e73e-20240730): 12306 12669 dependencies: 12307 12670 '@next/env': 15.0.0-canary.113 12308 12671 '@swc/counter': 0.1.3 ··· 12324 12687 '@next/swc-win32-arm64-msvc': 15.0.0-canary.113 12325 12688 '@next/swc-win32-ia32-msvc': 15.0.0-canary.113 12326 12689 '@next/swc-win32-x64-msvc': 15.0.0-canary.113 12690 + '@opentelemetry/api': 1.9.0 12327 12691 '@playwright/test': 1.47.0 12328 12692 sharp: 0.33.5 12329 12693 transitivePeerDependencies: 12330 12694 - '@babel/core' 12331 12695 - babel-plugin-macros 12332 12696 12333 - next@15.1.0(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 12697 + next@15.0.4(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 12698 + dependencies: 12699 + '@next/env': 15.0.4 12700 + '@swc/counter': 0.1.3 12701 + '@swc/helpers': 0.5.13 12702 + busboy: 1.6.0 12703 + caniuse-lite: 1.0.30001664 12704 + postcss: 8.4.31 12705 + react: 18.3.1 12706 + react-dom: 18.3.1(react@18.3.1) 12707 + styled-jsx: 5.1.6(react@18.3.1) 12708 + optionalDependencies: 12709 + '@next/swc-darwin-arm64': 15.0.4 12710 + '@next/swc-darwin-x64': 15.0.4 12711 + '@next/swc-linux-arm64-gnu': 15.0.4 12712 + '@next/swc-linux-arm64-musl': 15.0.4 12713 + '@next/swc-linux-x64-gnu': 15.0.4 12714 + '@next/swc-linux-x64-musl': 15.0.4 12715 + '@next/swc-win32-arm64-msvc': 15.0.4 12716 + '@next/swc-win32-x64-msvc': 15.0.4 12717 + '@opentelemetry/api': 1.9.0 12718 + '@playwright/test': 1.47.0 12719 + sharp: 0.33.5 12720 + transitivePeerDependencies: 12721 + - '@babel/core' 12722 + - babel-plugin-macros 12723 + 12724 + next@15.1.0(@opentelemetry/api@1.9.0)(@playwright/test@1.47.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 12334 12725 dependencies: 12335 12726 '@next/env': 15.1.0 12336 12727 '@swc/counter': 0.1.3 ··· 12350 12741 '@next/swc-linux-x64-musl': 15.1.0 12351 12742 '@next/swc-win32-arm64-msvc': 15.1.0 12352 12743 '@next/swc-win32-x64-msvc': 15.1.0 12744 + '@opentelemetry/api': 1.9.0 12353 12745 '@playwright/test': 1.47.0 12354 12746 sharp: 0.33.5 12355 12747 transitivePeerDependencies: ··· 12606 12998 camelcase-css: 2.0.1 12607 12999 postcss: 8.4.47 12608 13000 12609 - postcss-load-config@4.0.2(postcss@8.4.47): 13001 + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)): 13002 + dependencies: 13003 + lilconfig: 3.1.2 13004 + yaml: 2.7.0 13005 + optionalDependencies: 13006 + postcss: 8.4.47 13007 + ts-node: 10.9.1(@types/node@20.17.6)(typescript@5.7.3) 13008 + 13009 + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)): 12610 13010 dependencies: 12611 13011 lilconfig: 3.1.2 12612 13012 yaml: 2.7.0 12613 13013 optionalDependencies: 12614 13014 postcss: 8.4.47 13015 + ts-node: 10.9.1(@types/node@22.2.0)(typescript@5.7.3) 12615 13016 12616 13017 postcss-nested@6.2.0(postcss@8.4.47): 12617 13018 dependencies: ··· 12689 13090 quick-lru: 7.0.0 12690 13091 url-join: 5.0.0 12691 13092 validate-npm-package-name: 5.0.1 12692 - zod: 3.23.8 13093 + zod: 3.24.1 12693 13094 zod-package-json: 1.0.3 12694 13095 12695 13096 query-string@9.1.0: ··· 13223 13624 client-only: 0.0.1 13224 13625 react: 19.0.0 13225 13626 13627 + styled-jsx@5.1.6(react@18.3.1): 13628 + dependencies: 13629 + client-only: 0.0.1 13630 + react: 18.3.1 13631 + 13226 13632 styled-jsx@5.1.6(react@19.0.0): 13227 13633 dependencies: 13228 13634 client-only: 0.0.1 ··· 13261 13667 13262 13668 tabbable@6.2.0: {} 13263 13669 13264 - tailwindcss@3.3.3: 13670 + tailwindcss@3.3.3(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)): 13265 13671 dependencies: 13266 13672 '@alloc/quick-lru': 5.2.0 13267 13673 arg: 5.0.2 ··· 13280 13686 postcss: 8.4.47 13281 13687 postcss-import: 15.1.0(postcss@8.4.47) 13282 13688 postcss-js: 4.0.1(postcss@8.4.47) 13283 - postcss-load-config: 4.0.2(postcss@8.4.47) 13689 + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)) 13284 13690 postcss-nested: 6.2.0(postcss@8.4.47) 13285 13691 postcss-selector-parser: 6.1.2 13286 13692 resolve: 1.22.8 ··· 13288 13694 transitivePeerDependencies: 13289 13695 - ts-node 13290 13696 13291 - tailwindcss@3.4.11: 13697 + tailwindcss@3.4.11(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)): 13292 13698 dependencies: 13293 13699 '@alloc/quick-lru': 5.2.0 13294 13700 arg: 5.0.2 ··· 13307 13713 postcss: 8.4.47 13308 13714 postcss-import: 15.1.0(postcss@8.4.47) 13309 13715 postcss-js: 4.0.1(postcss@8.4.47) 13310 - postcss-load-config: 4.0.2(postcss@8.4.47) 13716 + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3)) 13717 + postcss-nested: 6.2.0(postcss@8.4.47) 13718 + postcss-selector-parser: 6.1.2 13719 + resolve: 1.22.8 13720 + sucrase: 3.35.0 13721 + transitivePeerDependencies: 13722 + - ts-node 13723 + 13724 + tailwindcss@3.4.11(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)): 13725 + dependencies: 13726 + '@alloc/quick-lru': 5.2.0 13727 + arg: 5.0.2 13728 + chokidar: 3.6.0 13729 + didyoumean: 1.2.2 13730 + dlv: 1.1.3 13731 + fast-glob: 3.3.2 13732 + glob-parent: 6.0.2 13733 + is-glob: 4.0.3 13734 + jiti: 1.21.6 13735 + lilconfig: 2.1.0 13736 + micromatch: 4.0.7 13737 + normalize-path: 3.0.0 13738 + object-hash: 3.0.0 13739 + picocolors: 1.0.1 13740 + postcss: 8.4.47 13741 + postcss-import: 15.1.0(postcss@8.4.47) 13742 + postcss-js: 4.0.1(postcss@8.4.47) 13743 + postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3)) 13311 13744 postcss-nested: 6.2.0(postcss@8.4.47) 13312 13745 postcss-selector-parser: 6.1.2 13313 13746 resolve: 1.22.8 ··· 13376 13809 '@ts-morph/common': 0.24.0 13377 13810 code-block-writer: 13.0.2 13378 13811 13812 + ts-node@10.9.1(@types/node@20.17.6)(typescript@5.7.3): 13813 + dependencies: 13814 + '@cspotcode/source-map-support': 0.8.1 13815 + '@tsconfig/node10': 1.0.11 13816 + '@tsconfig/node12': 1.0.11 13817 + '@tsconfig/node14': 1.0.3 13818 + '@tsconfig/node16': 1.0.4 13819 + '@types/node': 20.17.6 13820 + acorn: 8.14.0 13821 + acorn-walk: 8.3.3 13822 + arg: 4.1.3 13823 + create-require: 1.1.1 13824 + diff: 4.0.2 13825 + make-error: 1.3.6 13826 + typescript: 5.7.3 13827 + v8-compile-cache-lib: 3.0.1 13828 + yn: 3.1.1 13829 + optional: true 13830 + 13831 + ts-node@10.9.1(@types/node@22.2.0)(typescript@5.7.3): 13832 + dependencies: 13833 + '@cspotcode/source-map-support': 0.8.1 13834 + '@tsconfig/node10': 1.0.11 13835 + '@tsconfig/node12': 1.0.11 13836 + '@tsconfig/node14': 1.0.3 13837 + '@tsconfig/node16': 1.0.4 13838 + '@types/node': 22.2.0 13839 + acorn: 8.14.0 13840 + acorn-walk: 8.3.3 13841 + arg: 4.1.3 13842 + create-require: 1.1.1 13843 + diff: 4.0.2 13844 + make-error: 1.3.6 13845 + typescript: 5.7.3 13846 + v8-compile-cache-lib: 3.0.1 13847 + yn: 3.1.1 13848 + optional: true 13849 + 13379 13850 tsconfig-paths@3.15.0: 13380 13851 dependencies: 13381 13852 '@types/json5': 0.0.29 ··· 13558 14029 13559 14030 uuid@9.0.1: {} 13560 14031 14032 + v8-compile-cache-lib@3.0.1: 14033 + optional: true 14034 + 13561 14035 validate-npm-package-license@3.0.4: 13562 14036 dependencies: 13563 14037 spdx-correct: 3.2.0 ··· 13604 14078 fsevents: 2.3.3 13605 14079 terser: 5.16.9 13606 14080 13607 - vitest@2.1.1(@types/node@22.2.0)(terser@5.16.9): 14081 + vitest@2.1.1(@edge-runtime/vm@3.2.0)(@types/node@22.2.0)(terser@5.16.9): 13608 14082 dependencies: 13609 14083 '@vitest/expect': 2.1.1 13610 14084 '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(vite@5.4.6(@types/node@22.2.0)(terser@5.16.9)) ··· 13626 14100 vite-node: 2.1.1(@types/node@22.2.0)(terser@5.16.9) 13627 14101 why-is-node-running: 2.3.0 13628 14102 optionalDependencies: 14103 + '@edge-runtime/vm': 3.2.0 13629 14104 '@types/node': 22.2.0 13630 14105 transitivePeerDependencies: 13631 14106 - less ··· 13742 14217 13743 14218 yaml@2.7.0: {} 13744 14219 14220 + yn@3.1.1: 14221 + optional: true 14222 + 13745 14223 yocto-queue@0.1.0: {} 13746 14224 13747 14225 youch@3.3.3: ··· 13752 14230 13753 14231 zod-package-json@1.0.3: 13754 14232 dependencies: 13755 - zod: 3.23.8 14233 + zod: 3.24.1 13756 14234 13757 - zod@3.23.8: {} 14235 + zod@3.24.1: {} 13758 14236 13759 14237 zwitch@2.0.4: {}
+1
pnpm-workspace.yaml
··· 2 2 - packages/* 3 3 - examples/* 4 4 - examples/e2e/* 5 + - examples/bugs/* 5 6 - benchmarking 6 7 7 8 catalog: