a homebrewed DnD campaign based in the Honkai: Star Rail universe
hsr honkaistarrail dnd

app/css: enable oxfmt tailwind sorting, organize css files #6

merged opened by samanthanguyen.me targeting main from css
  • deps: upgrade oxfmt from v0.19.0 to v0.26.0
  • deps: upgrade oxlint from v1.39.0 to v1.41.0
  • note: notably, doesn't sort tailwind in all files, since oxfmt doesn't support svelte just yet.
Labels

None yet.

priority

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:smd2mvg2dao4rqnnz6qexdov/sh.tangled.repo.pull/3mcsdfemktm22
+353 -389
Diff #3
+8 -1
.oxfmtrc.json
··· 4 4 "semi": false, 5 5 "singleQuote": true, 6 6 "trailingComma": "all", 7 - "ignorePatterns": ["app/src/generated/**"] 7 + "ignorePatterns": ["app/src/generated/**", "app/src/utilities.css"], 8 + "experimentalTailwindcss": { 9 + "stylesheet": "./app/src/app.css", 10 + "attributes": ["class", "className"], 11 + "functions": ["clsx", "cn", "tv"], 12 + "preserveDuplicates": false, 13 + "preserveWhitespace": false 14 + } 8 15 }
+2 -174
app/src/app.css
··· 1 1 @import 'tailwindcss'; 2 2 @import 'tw-animate-css'; 3 + @import './utilities.css'; 4 + @import './shadcn-svelte.css'; 3 5 @source './../../node_modules/@starlight/icons'; 4 6 5 7 @custom-variant dark (&:is(.dark *)); ··· 25 27 ); 26 28 background-size: 10px 10px; 27 29 } 28 - 29 - /** typography */ 30 - @utility small-caps { 31 - font-variant-caps: small-caps; 32 - } 33 - 34 - @utility max-w-10ch { 35 - max-width: 10ch; 36 - } 37 - 38 - @utility max-w-15ch { 39 - max-width: 15ch; 40 - } 41 - 42 - @utility max-w-20ch { 43 - max-width: 20ch; 44 - } 45 - 46 - @utility max-w-30ch { 47 - max-width: 30ch; 48 - } 49 - 50 - @utility max-w-40ch { 51 - max-width: 40ch; 52 - } 53 - 54 - @utility max-w-50ch { 55 - max-width: 50ch; 56 - } 57 - 58 - @utility max-w-60ch { 59 - max-width: 60ch; 60 - } 61 - 62 - @utility max-w-70ch { 63 - max-width: 70ch; 64 - } 65 - 66 - @utility max-w-80ch { 67 - max-width: 80ch; 68 - } 69 - 70 - @utility max-w-90ch { 71 - max-width: 90ch; 72 - } 73 - 74 - @utility max-w-100ch { 75 - max-width: 100ch; 76 - } 77 - 78 - @utility max-w-110ch { 79 - max-width: 110ch; 80 - } 81 - 82 - @utility max-w-120ch { 83 - max-width: 120ch; 84 - } 85 - 86 - :root { 87 - --radius: 0.625rem; 88 - --background: oklch(1 0 0); 89 - --foreground: oklch(0.129 0.042 264.695); 90 - --card: oklch(1 0 0); 91 - --card-foreground: oklch(0.129 0.042 264.695); 92 - --popover: oklch(1 0 0); 93 - --popover-foreground: oklch(0.129 0.042 264.695); 94 - --primary: oklch(0.208 0.042 265.755); 95 - --primary-foreground: oklch(0.984 0.003 247.858); 96 - --secondary: oklch(0.968 0.007 247.896); 97 - --secondary-foreground: oklch(0.208 0.042 265.755); 98 - --muted: oklch(0.968 0.007 247.896); 99 - --muted-foreground: oklch(0.554 0.046 257.417); 100 - --accent: oklch(0.968 0.007 247.896); 101 - --accent-foreground: oklch(0.208 0.042 265.755); 102 - --destructive: oklch(0.577 0.245 27.325); 103 - --border: oklch(0.929 0.013 255.508); 104 - --input: oklch(0.929 0.013 255.508); 105 - --ring: oklch(0.704 0.04 256.788); 106 - --chart-1: oklch(0.646 0.222 41.116); 107 - --chart-2: oklch(0.6 0.118 184.704); 108 - --chart-3: oklch(0.398 0.07 227.392); 109 - --chart-4: oklch(0.828 0.189 84.429); 110 - --chart-5: oklch(0.769 0.188 70.08); 111 - --sidebar: oklch(0.984 0.003 247.858); 112 - --sidebar-foreground: oklch(0.129 0.042 264.695); 113 - --sidebar-primary: oklch(0.208 0.042 265.755); 114 - --sidebar-primary-foreground: oklch(0.984 0.003 247.858); 115 - --sidebar-accent: oklch(0.968 0.007 247.896); 116 - --sidebar-accent-foreground: oklch(0.208 0.042 265.755); 117 - --sidebar-border: oklch(0.929 0.013 255.508); 118 - --sidebar-ring: oklch(0.704 0.04 256.788); 119 - } 120 - 121 - .dark { 122 - --background: oklch(0.129 0.042 264.695); 123 - --foreground: oklch(0.984 0.003 247.858); 124 - --card: oklch(0.208 0.042 265.755); 125 - --card-foreground: oklch(0.984 0.003 247.858); 126 - --popover: oklch(0.208 0.042 265.755); 127 - --popover-foreground: oklch(0.984 0.003 247.858); 128 - --primary: oklch(0.929 0.013 255.508); 129 - --primary-foreground: oklch(0.208 0.042 265.755); 130 - --secondary: oklch(0.279 0.041 260.031); 131 - --secondary-foreground: oklch(0.984 0.003 247.858); 132 - --muted: oklch(0.279 0.041 260.031); 133 - --muted-foreground: oklch(0.704 0.04 256.788); 134 - --accent: oklch(0.279 0.041 260.031); 135 - --accent-foreground: oklch(0.984 0.003 247.858); 136 - --destructive: oklch(0.704 0.191 22.216); 137 - --border: oklch(1 0 0 / 10%); 138 - --input: oklch(1 0 0 / 15%); 139 - --ring: oklch(0.551 0.027 264.364); 140 - --chart-1: oklch(0.488 0.243 264.376); 141 - --chart-2: oklch(0.696 0.17 162.48); 142 - --chart-3: oklch(0.769 0.188 70.08); 143 - --chart-4: oklch(0.627 0.265 303.9); 144 - --chart-5: oklch(0.645 0.246 16.439); 145 - --sidebar: oklch(0.208 0.042 265.755); 146 - --sidebar-foreground: oklch(0.984 0.003 247.858); 147 - --sidebar-primary: oklch(0.488 0.243 264.376); 148 - --sidebar-primary-foreground: oklch(0.984 0.003 247.858); 149 - --sidebar-accent: oklch(0.279 0.041 260.031); 150 - --sidebar-accent-foreground: oklch(0.984 0.003 247.858); 151 - --sidebar-border: oklch(1 0 0 / 10%); 152 - --sidebar-ring: oklch(0.551 0.027 264.364); 153 - } 154 - 155 - @theme inline { 156 - --radius-sm: calc(var(--radius) - 4px); 157 - --radius-md: calc(var(--radius) - 2px); 158 - --radius-lg: var(--radius); 159 - --radius-xl: calc(var(--radius) + 4px); 160 - --color-background: var(--background); 161 - --color-foreground: var(--foreground); 162 - --color-card: var(--card); 163 - --color-card-foreground: var(--card-foreground); 164 - --color-popover: var(--popover); 165 - --color-popover-foreground: var(--popover-foreground); 166 - --color-primary: var(--primary); 167 - --color-primary-foreground: var(--primary-foreground); 168 - --color-secondary: var(--secondary); 169 - --color-secondary-foreground: var(--secondary-foreground); 170 - --color-muted: var(--muted); 171 - --color-muted-foreground: var(--muted-foreground); 172 - --color-accent: var(--accent); 173 - --color-accent-foreground: var(--accent-foreground); 174 - --color-destructive: var(--destructive); 175 - --color-border: var(--border); 176 - --color-input: var(--input); 177 - --color-ring: var(--ring); 178 - --color-chart-1: var(--chart-1); 179 - --color-chart-2: var(--chart-2); 180 - --color-chart-3: var(--chart-3); 181 - --color-chart-4: var(--chart-4); 182 - --color-chart-5: var(--chart-5); 183 - --color-sidebar: var(--sidebar); 184 - --color-sidebar-foreground: var(--sidebar-foreground); 185 - --color-sidebar-primary: var(--sidebar-primary); 186 - --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); 187 - --color-sidebar-accent: var(--sidebar-accent); 188 - --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); 189 - --color-sidebar-border: var(--sidebar-border); 190 - --color-sidebar-ring: var(--sidebar-ring); 191 - } 192 - 193 - @layer base { 194 - * { 195 - @apply border-border outline-ring/50; 196 - } 197 - 198 - body { 199 - @apply bg-background text-foreground; 200 - } 201 - }
+9 -9
app/src/lib/components/Button/styles.ts
··· 8 8 export const buttonTv = tv({ 9 9 base: [ 10 10 'cursor-pointer', 11 - 'flex flex-row gap-2 items-center justify-center', 11 + 'flex flex-row items-center justify-center gap-2', 12 12 'border', 13 13 'text-center', 14 14 'transition-colors', ··· 16 16 ], 17 17 variants: { 18 18 isIconOnly: { 19 - false: 'py-2 px-4', 19 + false: 'px-4 py-2', 20 20 true: 'p-2', 21 21 }, 22 22 isRound: { ··· 24 24 }, 25 25 intent: { 26 26 primary: [ 27 - 'bg-stone-900 border-stone-800', 28 - 'dark:bg-white dark:border-zinc-200', 27 + 'border-stone-800 bg-stone-900', 28 + 'dark:border-zinc-200 dark:bg-white', 29 29 'text-white', 30 30 'dark:text-zinc-900', 31 31 'hover:border-hsr-gold/50', 32 - 'focus:outline-0 focus:ring-2 focus:ring-offset-2', 32 + 'focus:ring-2 focus:ring-offset-2 focus:outline-0', 33 33 'focus:border-hsr-gold', 34 34 'focus:ring-hsr-gold', 35 35 'focus:text-hsr-gold', 36 36 ], 37 37 secondary: [ 38 - 'bg-white border-zinc-200', 39 - 'dark:bg-stone-900 dark:border-stone-800', 38 + 'border-zinc-200 bg-white', 39 + 'dark:border-stone-800 dark:bg-stone-900', 40 40 'text-zinc-900', 41 41 'dark:text-white', 42 42 'hover:border-hsr-gold/50', 43 - 'focus:outline-0 focus:ring-2 focus:ring-offset-2', 43 + 'focus:ring-2 focus:ring-offset-2 focus:outline-0', 44 44 'focus:border-hsr-gold', 45 45 'focus:ring-hsr-gold', 46 46 'focus:text-hsr-gold', ··· 51 51 'dark:text-white', 52 52 'hover:bg-hsr-gold/30', 53 53 'hover:border-hsr-gold/30', 54 - 'focus:outline-0 focus:ring-1 focus:ring-offset-0 focus:ring-hsr-gold', 54 + 'focus:ring-1 focus:ring-hsr-gold focus:ring-offset-0 focus:outline-0', 55 55 'focus:text-hsr-gold', 56 56 ], 57 57 },
+3 -3
app/src/lib/components/Chip/variants.ts
··· 3 3 import { tv, type VariantProps } from 'tailwind-variants' 4 4 5 5 export const chip = tv({ 6 - base: ['inline-flex flex-row items-center', 'border-2 rounded-full', 'font-medium'], 6 + base: ['inline-flex flex-row items-center', 'rounded-full border-2', 'font-medium'], 7 7 variants: { 8 8 color: { 9 9 gold: 'border-hsr-gold', ··· 68 68 color: 'white', 69 69 style: 'outline', 70 70 class: [ 71 - 'text-hsr-dark border-hsr-dark [&_svg]:stroke-hsr-dark', 72 - 'dark:text-zinc-100 dark:border-zinc-100 dark:[&_svg]:stroke-zinc-100', 71 + 'border-hsr-dark text-hsr-dark [&_svg]:stroke-hsr-dark', 72 + 'dark:border-zinc-100 dark:text-zinc-100 dark:[&_svg]:stroke-zinc-100', 73 73 ], 74 74 }, 75 75 {
+116
app/src/shadcn-svelte.css
··· 1 + :root { 2 + --radius: 0.625rem; 3 + --background: oklch(1 0 0); 4 + --foreground: oklch(0.129 0.042 264.695); 5 + --card: oklch(1 0 0); 6 + --card-foreground: oklch(0.129 0.042 264.695); 7 + --popover: oklch(1 0 0); 8 + --popover-foreground: oklch(0.129 0.042 264.695); 9 + --primary: oklch(0.208 0.042 265.755); 10 + --primary-foreground: oklch(0.984 0.003 247.858); 11 + --secondary: oklch(0.968 0.007 247.896); 12 + --secondary-foreground: oklch(0.208 0.042 265.755); 13 + --muted: oklch(0.968 0.007 247.896); 14 + --muted-foreground: oklch(0.554 0.046 257.417); 15 + --accent: oklch(0.968 0.007 247.896); 16 + --accent-foreground: oklch(0.208 0.042 265.755); 17 + --destructive: oklch(0.577 0.245 27.325); 18 + --border: oklch(0.929 0.013 255.508); 19 + --input: oklch(0.929 0.013 255.508); 20 + --ring: oklch(0.704 0.04 256.788); 21 + --chart-1: oklch(0.646 0.222 41.116); 22 + --chart-2: oklch(0.6 0.118 184.704); 23 + --chart-3: oklch(0.398 0.07 227.392); 24 + --chart-4: oklch(0.828 0.189 84.429); 25 + --chart-5: oklch(0.769 0.188 70.08); 26 + --sidebar: oklch(0.984 0.003 247.858); 27 + --sidebar-foreground: oklch(0.129 0.042 264.695); 28 + --sidebar-primary: oklch(0.208 0.042 265.755); 29 + --sidebar-primary-foreground: oklch(0.984 0.003 247.858); 30 + --sidebar-accent: oklch(0.968 0.007 247.896); 31 + --sidebar-accent-foreground: oklch(0.208 0.042 265.755); 32 + --sidebar-border: oklch(0.929 0.013 255.508); 33 + --sidebar-ring: oklch(0.704 0.04 256.788); 34 + } 35 + 36 + .dark { 37 + --background: oklch(0.129 0.042 264.695); 38 + --foreground: oklch(0.984 0.003 247.858); 39 + --card: oklch(0.208 0.042 265.755); 40 + --card-foreground: oklch(0.984 0.003 247.858); 41 + --popover: oklch(0.208 0.042 265.755); 42 + --popover-foreground: oklch(0.984 0.003 247.858); 43 + --primary: oklch(0.929 0.013 255.508); 44 + --primary-foreground: oklch(0.208 0.042 265.755); 45 + --secondary: oklch(0.279 0.041 260.031); 46 + --secondary-foreground: oklch(0.984 0.003 247.858); 47 + --muted: oklch(0.279 0.041 260.031); 48 + --muted-foreground: oklch(0.704 0.04 256.788); 49 + --accent: oklch(0.279 0.041 260.031); 50 + --accent-foreground: oklch(0.984 0.003 247.858); 51 + --destructive: oklch(0.704 0.191 22.216); 52 + --border: oklch(1 0 0 / 10%); 53 + --input: oklch(1 0 0 / 15%); 54 + --ring: oklch(0.551 0.027 264.364); 55 + --chart-1: oklch(0.488 0.243 264.376); 56 + --chart-2: oklch(0.696 0.17 162.48); 57 + --chart-3: oklch(0.769 0.188 70.08); 58 + --chart-4: oklch(0.627 0.265 303.9); 59 + --chart-5: oklch(0.645 0.246 16.439); 60 + --sidebar: oklch(0.208 0.042 265.755); 61 + --sidebar-foreground: oklch(0.984 0.003 247.858); 62 + --sidebar-primary: oklch(0.488 0.243 264.376); 63 + --sidebar-primary-foreground: oklch(0.984 0.003 247.858); 64 + --sidebar-accent: oklch(0.279 0.041 260.031); 65 + --sidebar-accent-foreground: oklch(0.984 0.003 247.858); 66 + --sidebar-border: oklch(1 0 0 / 10%); 67 + --sidebar-ring: oklch(0.551 0.027 264.364); 68 + } 69 + 70 + @theme inline { 71 + --radius-sm: calc(var(--radius) - 4px); 72 + --radius-md: calc(var(--radius) - 2px); 73 + --radius-lg: var(--radius); 74 + --radius-xl: calc(var(--radius) + 4px); 75 + --color-background: var(--background); 76 + --color-foreground: var(--foreground); 77 + --color-card: var(--card); 78 + --color-card-foreground: var(--card-foreground); 79 + --color-popover: var(--popover); 80 + --color-popover-foreground: var(--popover-foreground); 81 + --color-primary: var(--primary); 82 + --color-primary-foreground: var(--primary-foreground); 83 + --color-secondary: var(--secondary); 84 + --color-secondary-foreground: var(--secondary-foreground); 85 + --color-muted: var(--muted); 86 + --color-muted-foreground: var(--muted-foreground); 87 + --color-accent: var(--accent); 88 + --color-accent-foreground: var(--accent-foreground); 89 + --color-destructive: var(--destructive); 90 + --color-border: var(--border); 91 + --color-input: var(--input); 92 + --color-ring: var(--ring); 93 + --color-chart-1: var(--chart-1); 94 + --color-chart-2: var(--chart-2); 95 + --color-chart-3: var(--chart-3); 96 + --color-chart-4: var(--chart-4); 97 + --color-chart-5: var(--chart-5); 98 + --color-sidebar: var(--sidebar); 99 + --color-sidebar-foreground: var(--sidebar-foreground); 100 + --color-sidebar-primary: var(--sidebar-primary); 101 + --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); 102 + --color-sidebar-accent: var(--sidebar-accent); 103 + --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); 104 + --color-sidebar-border: var(--sidebar-border); 105 + --color-sidebar-ring: var(--sidebar-ring); 106 + } 107 + 108 + @layer base { 109 + * { 110 + @apply border-border outline-ring/50; 111 + } 112 + 113 + body { 114 + @apply bg-background text-foreground; 115 + } 116 + }
+14
app/src/utilities.css
··· 1 + @utility small-caps { font-variant-caps: small-caps; } 2 + @utility max-w-10ch { max-width: 10ch; } 3 + @utility max-w-15ch { max-width: 15ch; } 4 + @utility max-w-20ch { max-width: 20ch; } 5 + @utility max-w-30ch { max-width: 30ch; } 6 + @utility max-w-40ch { max-width: 40ch; } 7 + @utility max-w-50ch { max-width: 50ch; } 8 + @utility max-w-60ch { max-width: 60ch; } 9 + @utility max-w-70ch { max-width: 70ch; } 10 + @utility max-w-80ch { max-width: 80ch; } 11 + @utility max-w-90ch { max-width: 90ch; } 12 + @utility max-w-100ch { max-width: 100ch; } 13 + @utility max-w-110ch { max-width: 110ch; } 14 + @utility max-w-120ch { max-width: 120ch; }
+199 -200
pnpm-lock.yaml
··· 17 17 version: 2.0.8 18 18 resend: 19 19 specifier: ^6.6.0 20 - version: 6.7.0 20 + version: 6.8.0 21 21 supabase: 22 22 specifier: ^2.70.5 23 23 version: 2.72.8 ··· 147 147 specifier: ^1.30.2 148 148 version: 1.30.2 149 149 oxfmt: 150 - specifier: ^0.19.0 151 - version: 0.19.0 150 + specifier: ^0.26.0 151 + version: 0.26.0 152 152 oxlint: 153 - specifier: ^1.39.0 154 - version: 1.39.0 153 + specifier: ^1.41.0 154 + version: 1.41.0 155 155 oxlint-tsgolint: 156 156 specifier: ^0.10.1 157 157 version: 0.10.1 ··· 184 184 version: 10.1.11(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)) 185 185 '@storybook/addon-docs': 186 186 specifier: catalog:storybook 187 - version: 10.1.11(@types/react@19.2.8)(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 187 + version: 10.1.11(@types/react@19.2.8)(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 188 188 '@storybook/addon-svelte-csf': 189 189 specifier: catalog:storybook 190 190 version: 5.0.10(@storybook/svelte@10.1.11(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0))(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) ··· 199 199 version: 10.1.11(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0) 200 200 '@storybook/sveltekit': 201 201 specifier: catalog:storybook 202 - version: 10.1.11(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 202 + version: 10.1.11(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 203 203 '@types/node': 204 204 specifier: catalog:dev 205 205 version: 25.0.9 ··· 220 220 version: 1.2.0 221 221 oxfmt: 222 222 specifier: catalog:voidzero 223 - version: 0.19.0 223 + version: 0.26.0 224 224 oxlint: 225 225 specifier: catalog:voidzero 226 - version: 1.39.0(oxlint-tsgolint@0.10.1) 226 + version: 1.41.0(oxlint-tsgolint@0.10.1) 227 227 oxlint-tsgolint: 228 228 specifier: catalog:voidzero 229 229 version: 0.10.1 ··· 338 338 version: 1.57.0 339 339 resend: 340 340 specifier: catalog:app 341 - version: 6.7.0 341 + version: 6.8.0 342 342 supabase: 343 343 specifier: catalog:app 344 344 version: 2.72.8 ··· 1069 1069 '@oxc-project/types@0.108.0': 1070 1070 resolution: {integrity: sha512-7lf13b2IA/kZO6xgnIZA88sq3vwrxWk+2vxf6cc+omwYCRTiA5e63Beqf3fz/v8jEviChWWmFYBwzfSeyrsj7Q==} 1071 1071 1072 - '@oxfmt/darwin-arm64@0.19.0': 1073 - resolution: {integrity: sha512-FfNpn3ximwbBZCaS8WL2vAXcFuQFQgvv/brO6D1WdmL4pnFOgfBIpFfkeFnKfdmdpxtg9O0wF8NTcdw5Iyl2Bg==} 1072 + '@oxfmt/darwin-arm64@0.26.0': 1073 + resolution: {integrity: sha512-AAGc+8CffkiWeVgtWf4dPfQwHEE5c/j/8NWH7VGVxxJRCZFdmWcqCXprvL2H6qZFewvDLrFbuSPRCqYCpYGaTQ==} 1074 1074 cpu: [arm64] 1075 1075 os: [darwin] 1076 1076 1077 - '@oxfmt/darwin-x64@0.19.0': 1078 - resolution: {integrity: sha512-31FWUHAgTdTzOslz0zoA60UDEdeZZpeM6wTzCdffetwLbHkK8ZuCuzd+DauHZPNlSU8G72iw4lF7Zve9pSkK9w==} 1077 + '@oxfmt/darwin-x64@0.26.0': 1078 + resolution: {integrity: sha512-xFx5ijCTjw577wJvFlZEMmKDnp3HSCcbYdCsLRmC5i3TZZiDe9DEYh3P46uqhzj8BkEw1Vm1ZCWdl48aEYAzvQ==} 1079 1079 cpu: [x64] 1080 1080 os: [darwin] 1081 1081 1082 - '@oxfmt/linux-arm64-gnu@0.19.0': 1083 - resolution: {integrity: sha512-BkU9h39xKj/8uko82uFDJUharM8VxZO+uXKglpBnEC8XxWRzXocVCX4wpLT/Tfk4NyBy6fRM9DeISdZvQKZCjA==} 1082 + '@oxfmt/linux-arm64-gnu@0.26.0': 1083 + resolution: {integrity: sha512-GubkQeQT5d3B/Jx/IiR7NMkSmXrCZcVI0BPh1i7mpFi8HgD1hQ/LbhiBKAMsMqs5bbugdQOgBEl8bOhe8JhW1g==} 1084 1084 cpu: [arm64] 1085 1085 os: [linux] 1086 1086 1087 - '@oxfmt/linux-arm64-musl@0.19.0': 1088 - resolution: {integrity: sha512-wWYk6Z/3iC+0zZAUkVCcEHui/IsUqsl+GEm9o6H7oARPLisXajbwCQcmqYslUD7eK6OXdYoWriBkEvSX/5dU4A==} 1087 + '@oxfmt/linux-arm64-musl@0.26.0': 1088 + resolution: {integrity: sha512-OEypUwK69bFPj+aa3/LYCnlIUPgoOLu//WNcriwpnWNmt47808Ht7RJSg+MNK8a7pSZHpXJ5/E6CRK/OTwFdaQ==} 1089 1089 cpu: [arm64] 1090 1090 os: [linux] 1091 1091 1092 - '@oxfmt/linux-x64-gnu@0.19.0': 1093 - resolution: {integrity: sha512-EB/b3or437E3uDie8QxeU3eA502JcmR1koyIBcH9rFidY0cMik58xvw54tXCY3WpMRxEXf37aHZzUSDP3qJnZg==} 1092 + '@oxfmt/linux-x64-gnu@0.26.0': 1093 + resolution: {integrity: sha512-xO6iEW2bC6ZHyOTPmPWrg/nM6xgzyRPaS84rATy6F8d79wz69LdRdJ3l/PXlkqhi7XoxhvX4ExysA0Nf10ZZEQ==} 1094 1094 cpu: [x64] 1095 1095 os: [linux] 1096 1096 1097 - '@oxfmt/linux-x64-musl@0.19.0': 1098 - resolution: {integrity: sha512-htMB45orYoa1oFSjSmoGgcBDsD47/0joDfqpa8TrTDI5qsW5kAedpFR5wSce8Is9oj7SJ07omhOj96P/QiekWA==} 1097 + '@oxfmt/linux-x64-musl@0.26.0': 1098 + resolution: {integrity: sha512-Z3KuZFC+MIuAyFCXBHY71kCsdRq1ulbsbzTe71v+hrEv7zVBn6yzql+/AZcgfIaKzWO9OXNuz5WWLWDmVALwow==} 1099 1099 cpu: [x64] 1100 1100 os: [linux] 1101 1101 1102 - '@oxfmt/win32-arm64@0.19.0': 1103 - resolution: {integrity: sha512-x7+3Eh/VWdXEda+BUmAKYlhGrRJVera7RfWw47Yx8PJUGtNqBfeYGDbf0W59ceK8Z3bY3OinrmOO3d1jOuXzMQ==} 1102 + '@oxfmt/win32-arm64@0.26.0': 1103 + resolution: {integrity: sha512-3zRbqwVWK1mDhRhTknlQFpRFL9GhEB5GfU6U7wawnuEwpvi39q91kJ+SRJvJnhyPCARkjZBd1V8XnweN5IFd1g==} 1104 1104 cpu: [arm64] 1105 1105 os: [win32] 1106 1106 1107 - '@oxfmt/win32-x64@0.19.0': 1108 - resolution: {integrity: sha512-X+FKXBg2jx4CxF5SJs3xpx1msMw5JfxaGD5qBZYqlHGdryQsy6zUY+bQwDDcuy3Ic/WNGD8ZNEuggeYNE7jx/Q==} 1107 + '@oxfmt/win32-x64@0.26.0': 1108 + resolution: {integrity: sha512-m8TfIljU22i9UEIkD+slGPifTFeaCwIUfxszN3E6ABWP1KQbtwSw9Ak0TdoikibvukF/dtbeyG3WW63jv9DnEg==} 1109 1109 cpu: [x64] 1110 1110 os: [win32] 1111 1111 ··· 1139 1139 cpu: [x64] 1140 1140 os: [win32] 1141 1141 1142 - '@oxlint/darwin-arm64@1.39.0': 1143 - resolution: {integrity: sha512-lT3hNhIa02xCujI6YGgjmYGg3Ht/X9ag5ipUVETaMpx5Rd4BbTNWUPif1WN1YZHxt3KLCIqaAe7zVhatv83HOQ==} 1142 + '@oxlint/darwin-arm64@1.41.0': 1143 + resolution: {integrity: sha512-K0Bs0cNW11oWdSrKmrollKF44HMM2HKr4QidZQHMlhJcSX8pozxv0V5FLdqB4sddzCY0J9Wuuw+oRAfR8sdRwA==} 1144 1144 cpu: [arm64] 1145 1145 os: [darwin] 1146 1146 1147 - '@oxlint/darwin-x64@1.39.0': 1148 - resolution: {integrity: sha512-UT+rfTWd+Yr7iJeSLd/7nF8X4gTYssKh+n77hxl6Oilp3NnG1CKRHxZDy3o3lIBnwgzJkdyUAiYWO1bTMXQ1lA==} 1147 + '@oxlint/darwin-x64@1.41.0': 1148 + resolution: {integrity: sha512-1LCCXCe9nN8LbrJ1QOGari2HqnxrZrveYKysWDIg8gFsQglIg00XF/8lRbA0kWHMdLgt4X0wfNYhhFz+c3XXLQ==} 1149 1149 cpu: [x64] 1150 1150 os: [darwin] 1151 1151 1152 - '@oxlint/linux-arm64-gnu@1.39.0': 1153 - resolution: {integrity: sha512-qocBkvS2V6rH0t9AT3DfQunMnj3xkM7srs5/Ycj2j5ZqMoaWd/FxHNVJDFP++35roKSvsRJoS0mtA8/77jqm6Q==} 1152 + '@oxlint/linux-arm64-gnu@1.41.0': 1153 + resolution: {integrity: sha512-Fow7H84Bs8XxuaK1yfSEWBC8HI7rfEQB9eR2A0J61un1WgCas7jNrt1HbT6+p6KmUH2bhR+r/RDu/6JFAvvj4g==} 1154 1154 cpu: [arm64] 1155 1155 os: [linux] 1156 1156 1157 - '@oxlint/linux-arm64-musl@1.39.0': 1158 - resolution: {integrity: sha512-arZzAc1PPcz9epvGBBCMHICeyQloKtHX3eoOe62B3Dskn7gf6Q14wnDHr1r9Vp4vtcBATNq6HlKV14smdlC/qA==} 1157 + '@oxlint/linux-arm64-musl@1.41.0': 1158 + resolution: {integrity: sha512-WoRRDNwgP5W3rjRh42Zdx8ferYnqpKoYCv2QQLenmdrLjRGYwAd52uywfkcS45mKEWHeY1RPwPkYCSROXiGb2w==} 1159 1159 cpu: [arm64] 1160 1160 os: [linux] 1161 1161 1162 - '@oxlint/linux-x64-gnu@1.39.0': 1163 - resolution: {integrity: sha512-ZVt5qsECpuNprdWxAPpDBwoixr1VTcZ4qAEQA2l/wmFyVPDYFD3oBY/SWACNnWBddMrswjTg9O8ALxYWoEpmXw==} 1162 + '@oxlint/linux-x64-gnu@1.41.0': 1163 + resolution: {integrity: sha512-75k3CKj3fOc/a/2aSgO81s3HsTZOFROthPJ+UI2Oatic1LhvH6eKjKfx3jDDyVpzeDS2qekPlc/y3N33iZz5Og==} 1164 1164 cpu: [x64] 1165 1165 os: [linux] 1166 1166 1167 - '@oxlint/linux-x64-musl@1.39.0': 1168 - resolution: {integrity: sha512-pB0hlGyKPbxr9NMIV783lD6cWL3MpaqnZRM9MWni4yBdHPTKyFNYdg5hGD0Bwg+UP4S2rOevq/+OO9x9Bi7E6g==} 1167 + '@oxlint/linux-x64-musl@1.41.0': 1168 + resolution: {integrity: sha512-8r82eBwGPoAPn67ZvdxTlX/Z3gVb+ZtN6nbkyFzwwHWAh8yGutX+VBcVkyrePSl6XgBP4QAaddPnHmkvJjqY0g==} 1169 1169 cpu: [x64] 1170 1170 os: [linux] 1171 1171 1172 - '@oxlint/win32-arm64@1.39.0': 1173 - resolution: {integrity: sha512-Gg2SFaJohI9+tIQVKXlPw3FsPQFi/eCSWiCgwPtPn5uzQxHRTeQEZKuluz1fuzR5U70TXubb2liZi4Dgl8LJQA==} 1172 + '@oxlint/win32-arm64@1.41.0': 1173 + resolution: {integrity: sha512-aK+DAcckQsNCOXKruatyYuY/ROjNiRejQB1PeJtkZwM21+8rV9ODYbvKNvt0pW+YCws7svftBSFMCpl3ke2unw==} 1174 1174 cpu: [arm64] 1175 1175 os: [win32] 1176 1176 1177 - '@oxlint/win32-x64@1.39.0': 1178 - resolution: {integrity: sha512-sbi25lfj74hH+6qQtb7s1wEvd1j8OQbTaH8v3xTcDjrwm579Cyh0HBv1YSZ2+gsnVwfVDiCTL1D0JsNqYXszVA==} 1177 + '@oxlint/win32-x64@1.41.0': 1178 + resolution: {integrity: sha512-dVBXkZ6MGLd3owV7jvuqJsZwiF3qw7kEkDVsYVpS/O96eEvlHcxVbaPjJjrTBgikXqyC22vg3dxBU7MW0utGfw==} 1179 1179 cpu: [x64] 1180 1180 os: [win32] 1181 1181 ··· 1361 1361 '@rolldown/pluginutils@1.0.0-beta.60': 1362 1362 resolution: {integrity: sha512-Jz4aqXRPVtqkH1E3jRDzLO5cgN5JwW+WG0wXGE4NiJd25nougv/AHzxmKCzmVQUYnxLmTM0M4wrZp+LlC2FKLg==} 1363 1363 1364 - '@rollup/rollup-android-arm-eabi@4.55.1': 1365 - resolution: {integrity: sha512-9R0DM/ykwfGIlNu6+2U09ga0WXeZ9MRC2Ter8jnz8415VbuIykVuc6bhdrbORFZANDmTDvq26mJrEVTl8TdnDg==} 1364 + '@rollup/rollup-android-arm-eabi@4.55.2': 1365 + resolution: {integrity: sha512-21J6xzayjy3O6NdnlO6aXi/urvSRjm6nCI6+nF6ra2YofKruGixN9kfT+dt55HVNwfDmpDHJcaS3JuP/boNnlA==} 1366 1366 cpu: [arm] 1367 1367 os: [android] 1368 1368 1369 - '@rollup/rollup-android-arm64@4.55.1': 1370 - resolution: {integrity: sha512-eFZCb1YUqhTysgW3sj/55du5cG57S7UTNtdMjCW7LwVcj3dTTcowCsC8p7uBdzKsZYa8J7IDE8lhMI+HX1vQvg==} 1369 + '@rollup/rollup-android-arm64@4.55.2': 1370 + resolution: {integrity: sha512-eXBg7ibkNUZ+sTwbFiDKou0BAckeV6kIigK7y5Ko4mB/5A1KLhuzEKovsmfvsL8mQorkoincMFGnQuIT92SKqA==} 1371 1371 cpu: [arm64] 1372 1372 os: [android] 1373 1373 1374 - '@rollup/rollup-darwin-arm64@4.55.1': 1375 - resolution: {integrity: sha512-p3grE2PHcQm2e8PSGZdzIhCKbMCw/xi9XvMPErPhwO17vxtvCN5FEA2mSLgmKlCjHGMQTP6phuQTYWUnKewwGg==} 1374 + '@rollup/rollup-darwin-arm64@4.55.2': 1375 + resolution: {integrity: sha512-UCbaTklREjrc5U47ypLulAgg4njaqfOVLU18VrCrI+6E5MQjuG0lSWaqLlAJwsD7NpFV249XgB0Bi37Zh5Sz4g==} 1376 1376 cpu: [arm64] 1377 1377 os: [darwin] 1378 1378 1379 - '@rollup/rollup-darwin-x64@4.55.1': 1380 - resolution: {integrity: sha512-rDUjG25C9qoTm+e02Esi+aqTKSBYwVTaoS1wxcN47/Luqef57Vgp96xNANwt5npq9GDxsH7kXxNkJVEsWEOEaQ==} 1379 + '@rollup/rollup-darwin-x64@4.55.2': 1380 + resolution: {integrity: sha512-dP67MA0cCMHFT2g5XyjtpVOtp7y4UyUxN3dhLdt11at5cPKnSm4lY+EhwNvDXIMzAMIo2KU+mc9wxaAQJTn7sQ==} 1381 1381 cpu: [x64] 1382 1382 os: [darwin] 1383 1383 1384 - '@rollup/rollup-freebsd-arm64@4.55.1': 1385 - resolution: {integrity: sha512-+JiU7Jbp5cdxekIgdte0jfcu5oqw4GCKr6i3PJTlXTCU5H5Fvtkpbs4XJHRmWNXF+hKmn4v7ogI5OQPaupJgOg==} 1384 + '@rollup/rollup-freebsd-arm64@4.55.2': 1385 + resolution: {integrity: sha512-WDUPLUwfYV9G1yxNRJdXcvISW15mpvod1Wv3ok+Ws93w1HjIVmCIFxsG2DquO+3usMNCpJQ0wqO+3GhFdl6Fow==} 1386 1386 cpu: [arm64] 1387 1387 os: [freebsd] 1388 1388 1389 - '@rollup/rollup-freebsd-x64@4.55.1': 1390 - resolution: {integrity: sha512-V5xC1tOVWtLLmr3YUk2f6EJK4qksksOYiz/TCsFHu/R+woubcLWdC9nZQmwjOAbmExBIVKsm1/wKmEy4z4u4Bw==} 1389 + '@rollup/rollup-freebsd-x64@4.55.2': 1390 + resolution: {integrity: sha512-Ng95wtHVEulRwn7R0tMrlUuiLVL/HXA8Lt/MYVpy88+s5ikpntzZba1qEulTuPnPIZuOPcW9wNEiqvZxZmgmqQ==} 1391 1391 cpu: [x64] 1392 1392 os: [freebsd] 1393 1393 1394 - '@rollup/rollup-linux-arm-gnueabihf@4.55.1': 1395 - resolution: {integrity: sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==} 1394 + '@rollup/rollup-linux-arm-gnueabihf@4.55.2': 1395 + resolution: {integrity: sha512-AEXMESUDWWGqD6LwO/HkqCZgUE1VCJ1OhbvYGsfqX2Y6w5quSXuyoy/Fg3nRqiwro+cJYFxiw5v4kB2ZDLhxrw==} 1396 1396 cpu: [arm] 1397 1397 os: [linux] 1398 1398 1399 - '@rollup/rollup-linux-arm-musleabihf@4.55.1': 1400 - resolution: {integrity: sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==} 1399 + '@rollup/rollup-linux-arm-musleabihf@4.55.2': 1400 + resolution: {integrity: sha512-ZV7EljjBDwBBBSv570VWj0hiNTdHt9uGznDtznBB4Caj3ch5rgD4I2K1GQrtbvJ/QiB+663lLgOdcADMNVC29Q==} 1401 1401 cpu: [arm] 1402 1402 os: [linux] 1403 1403 1404 - '@rollup/rollup-linux-arm64-gnu@4.55.1': 1405 - resolution: {integrity: sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==} 1404 + '@rollup/rollup-linux-arm64-gnu@4.55.2': 1405 + resolution: {integrity: sha512-uvjwc8NtQVPAJtq4Tt7Q49FOodjfbf6NpqXyW/rjXoV+iZ3EJAHLNAnKT5UJBc6ffQVgmXTUL2ifYiLABlGFqA==} 1406 1406 cpu: [arm64] 1407 1407 os: [linux] 1408 1408 1409 - '@rollup/rollup-linux-arm64-musl@4.55.1': 1410 - resolution: {integrity: sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==} 1409 + '@rollup/rollup-linux-arm64-musl@4.55.2': 1410 + resolution: {integrity: sha512-s3KoWVNnye9mm/2WpOZ3JeUiediUVw6AvY/H7jNA6qgKA2V2aM25lMkVarTDfiicn/DLq3O0a81jncXszoyCFA==} 1411 1411 cpu: [arm64] 1412 1412 os: [linux] 1413 1413 1414 - '@rollup/rollup-linux-loong64-gnu@4.55.1': 1415 - resolution: {integrity: sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==} 1414 + '@rollup/rollup-linux-loong64-gnu@4.55.2': 1415 + resolution: {integrity: sha512-gi21faacK+J8aVSyAUptML9VQN26JRxe484IbF+h3hpG+sNVoMXPduhREz2CcYr5my0NE3MjVvQ5bMKX71pfVA==} 1416 1416 cpu: [loong64] 1417 1417 os: [linux] 1418 1418 1419 - '@rollup/rollup-linux-loong64-musl@4.55.1': 1420 - resolution: {integrity: sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==} 1419 + '@rollup/rollup-linux-loong64-musl@4.55.2': 1420 + resolution: {integrity: sha512-qSlWiXnVaS/ceqXNfnoFZh4IiCA0EwvCivivTGbEu1qv2o+WTHpn1zNmCTAoOG5QaVr2/yhCoLScQtc/7RxshA==} 1421 1421 cpu: [loong64] 1422 1422 os: [linux] 1423 1423 1424 - '@rollup/rollup-linux-ppc64-gnu@4.55.1': 1425 - resolution: {integrity: sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==} 1424 + '@rollup/rollup-linux-ppc64-gnu@4.55.2': 1425 + resolution: {integrity: sha512-rPyuLFNoF1B0+wolH277E780NUKf+KoEDb3OyoLbAO18BbeKi++YN6gC/zuJoPPDlQRL3fIxHxCxVEWiem2yXw==} 1426 1426 cpu: [ppc64] 1427 1427 os: [linux] 1428 1428 1429 - '@rollup/rollup-linux-ppc64-musl@4.55.1': 1430 - resolution: {integrity: sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==} 1429 + '@rollup/rollup-linux-ppc64-musl@4.55.2': 1430 + resolution: {integrity: sha512-g+0ZLMook31iWV4PvqKU0i9E78gaZgYpSrYPed/4Bu+nGTgfOPtfs1h11tSSRPXSjC5EzLTjV/1A7L2Vr8pJoQ==} 1431 1431 cpu: [ppc64] 1432 1432 os: [linux] 1433 1433 1434 - '@rollup/rollup-linux-riscv64-gnu@4.55.1': 1435 - resolution: {integrity: sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==} 1434 + '@rollup/rollup-linux-riscv64-gnu@4.55.2': 1435 + resolution: {integrity: sha512-i+sGeRGsjKZcQRh3BRfpLsM3LX3bi4AoEVqmGDyc50L6KfYsN45wVCSz70iQMwPWr3E5opSiLOwsC9WB4/1pqg==} 1436 1436 cpu: [riscv64] 1437 1437 os: [linux] 1438 1438 1439 - '@rollup/rollup-linux-riscv64-musl@4.55.1': 1440 - resolution: {integrity: sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==} 1439 + '@rollup/rollup-linux-riscv64-musl@4.55.2': 1440 + resolution: {integrity: sha512-C1vLcKc4MfFV6I0aWsC7B2Y9QcsiEcvKkfxprwkPfLaN8hQf0/fKHwSF2lcYzA9g4imqnhic729VB9Fo70HO3Q==} 1441 1441 cpu: [riscv64] 1442 1442 os: [linux] 1443 1443 1444 - '@rollup/rollup-linux-s390x-gnu@4.55.1': 1445 - resolution: {integrity: sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==} 1444 + '@rollup/rollup-linux-s390x-gnu@4.55.2': 1445 + resolution: {integrity: sha512-68gHUK/howpQjh7g7hlD9DvTTt4sNLp1Bb+Yzw2Ki0xvscm2cOdCLZNJNhd2jW8lsTPrHAHuF751BygifW4bkQ==} 1446 1446 cpu: [s390x] 1447 1447 os: [linux] 1448 1448 1449 - '@rollup/rollup-linux-x64-gnu@4.55.1': 1450 - resolution: {integrity: sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==} 1449 + '@rollup/rollup-linux-x64-gnu@4.55.2': 1450 + resolution: {integrity: sha512-1e30XAuaBP1MAizaOBApsgeGZge2/Byd6wV4a8oa6jPdHELbRHBiw7wvo4dp7Ie2PE8TZT4pj9RLGZv9N4qwlw==} 1451 1451 cpu: [x64] 1452 1452 os: [linux] 1453 1453 1454 - '@rollup/rollup-linux-x64-musl@4.55.1': 1455 - resolution: {integrity: sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==} 1454 + '@rollup/rollup-linux-x64-musl@4.55.2': 1455 + resolution: {integrity: sha512-4BJucJBGbuGnH6q7kpPqGJGzZnYrpAzRd60HQSt3OpX/6/YVgSsJnNzR8Ot74io50SeVT4CtCWe/RYIAymFPwA==} 1456 1456 cpu: [x64] 1457 1457 os: [linux] 1458 1458 1459 - '@rollup/rollup-openbsd-x64@4.55.1': 1460 - resolution: {integrity: sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==} 1459 + '@rollup/rollup-openbsd-x64@4.55.2': 1460 + resolution: {integrity: sha512-cT2MmXySMo58ENv8p6/O6wI/h/gLnD3D6JoajwXFZH6X9jz4hARqUhWpGuQhOgLNXscfZYRQMJvZDtWNzMAIDw==} 1461 1461 cpu: [x64] 1462 1462 os: [openbsd] 1463 1463 1464 - '@rollup/rollup-openharmony-arm64@4.55.1': 1465 - resolution: {integrity: sha512-xzm44KgEP11te3S2HCSyYf5zIzWmx3n8HDCc7EE59+lTcswEWNpvMLfd9uJvVX8LCg9QWG67Xt75AuHn4vgsXw==} 1464 + '@rollup/rollup-openharmony-arm64@4.55.2': 1465 + resolution: {integrity: sha512-sZnyUgGkuzIXaK3jNMPmUIyJrxu/PjmATQrocpGA1WbCPX8H5tfGgRSuYtqBYAvLuIGp8SPRb1O4d1Fkb5fXaQ==} 1466 1466 cpu: [arm64] 1467 1467 os: [openharmony] 1468 1468 1469 - '@rollup/rollup-win32-arm64-msvc@4.55.1': 1470 - resolution: {integrity: sha512-yR6Bl3tMC/gBok5cz/Qi0xYnVbIxGx5Fcf/ca0eB6/6JwOY+SRUcJfI0OpeTpPls7f194as62thCt/2BjxYN8g==} 1469 + '@rollup/rollup-win32-arm64-msvc@4.55.2': 1470 + resolution: {integrity: sha512-sDpFbenhmWjNcEbBcoTV0PWvW5rPJFvu+P7XoTY0YLGRupgLbFY0XPfwIbJOObzO7QgkRDANh65RjhPmgSaAjQ==} 1471 1471 cpu: [arm64] 1472 1472 os: [win32] 1473 1473 1474 - '@rollup/rollup-win32-ia32-msvc@4.55.1': 1475 - resolution: {integrity: sha512-3fZBidchE0eY0oFZBnekYCfg+5wAB0mbpCBuofh5mZuzIU/4jIVkbESmd2dOsFNS78b53CYv3OAtwqkZZmU5nA==} 1474 + '@rollup/rollup-win32-ia32-msvc@4.55.2': 1475 + resolution: {integrity: sha512-GvJ03TqqaweWCigtKQVBErw2bEhu1tyfNQbarwr94wCGnczA9HF8wqEe3U/Lfu6EdeNP0p6R+APeHVwEqVxpUQ==} 1476 1476 cpu: [ia32] 1477 1477 os: [win32] 1478 1478 1479 - '@rollup/rollup-win32-x64-gnu@4.55.1': 1480 - resolution: {integrity: sha512-xGGY5pXj69IxKb4yv/POoocPy/qmEGhimy/FoTpTSVju3FYXUQQMFCaZZXJVidsmGxRioZAwpThl/4zX41gRKg==} 1479 + '@rollup/rollup-win32-x64-gnu@4.55.2': 1480 + resolution: {integrity: sha512-KvXsBvp13oZz9JGe5NYS7FNizLe99Ny+W8ETsuCyjXiKdiGrcz2/J/N8qxZ/RSwivqjQguug07NLHqrIHrqfYw==} 1481 1481 cpu: [x64] 1482 1482 os: [win32] 1483 1483 1484 - '@rollup/rollup-win32-x64-msvc@4.55.1': 1485 - resolution: {integrity: sha512-SPEpaL6DX4rmcXtnhdrQYgzQ5W2uW3SCJch88lB2zImhJRhIIK44fkUrgIV/Q8yUNfw5oyZ5vkeQsZLhCb06lw==} 1484 + '@rollup/rollup-win32-x64-msvc@4.55.2': 1485 + resolution: {integrity: sha512-xNO+fksQhsAckRtDSPWaMeT1uIM+JrDRXlerpnWNXhn1TdB3YZ6uKBMBTKP0eX9XtYEP978hHk1f8332i2AW8Q==} 1486 1486 cpu: [x64] 1487 1487 os: [win32] 1488 1488 ··· 2801 2801 node-domexception@1.0.0: 2802 2802 resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} 2803 2803 engines: {node: '>=10.5.0'} 2804 - deprecated: Use your platform's native DOMException instead 2805 2804 2806 2805 node-fetch-native@1.6.7: 2807 2806 resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} ··· 2849 2848 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 2850 2849 engines: {node: '>= 0.8.0'} 2851 2850 2852 - oxfmt@0.19.0: 2853 - resolution: {integrity: sha512-tPTa3j4kXdJBzBRlK9wR0/Lnd4J21rzg29cRr/VVqqfvdhZs6M+Q6TkL+rxI/IQpq8ZY8L3c+KZvga/RgeuMsg==} 2851 + oxfmt@0.26.0: 2852 + resolution: {integrity: sha512-UDD1wFNwfeorMm2ZY0xy1KRAAvJ5NjKBfbDmiMwGP7baEHTq65cYpC0aPP+BGHc8weXUbSZaK8MdGyvuRUvS4Q==} 2854 2853 engines: {node: ^20.19.0 || >=22.12.0} 2855 2854 hasBin: true 2856 2855 ··· 2858 2857 resolution: {integrity: sha512-EEHNdo5cW2w1xwYdBQ7d3IXDqWAtMkfVFrh+9gQ4kYbYJwygY4QXSh1eH80/xVipZdVKujAwBgg/nNNHk56kxQ==} 2859 2858 hasBin: true 2860 2859 2861 - oxlint@1.39.0: 2862 - resolution: {integrity: sha512-wSiLr0wjG+KTU6c1LpVoQk7JZ7l8HCKlAkVDVTJKWmCGazsNxexxnOXl7dsar92mQcRnzko5g077ggP3RINSjA==} 2860 + oxlint@1.41.0: 2861 + resolution: {integrity: sha512-Dyaoup82uhgAgp5xLNt4dPdvl5eSJTIzqzL7DcKbkooUE4PDViWURIPlSUF8hu5a+sCnNIp/LlQMDsKoyaLTBA==} 2863 2862 engines: {node: ^20.19.0 || >=22.12.0} 2864 2863 hasBin: true 2865 2864 peerDependencies: 2866 - oxlint-tsgolint: '>=0.10.0' 2865 + oxlint-tsgolint: '>=0.11.1' 2867 2866 peerDependenciesMeta: 2868 2867 oxlint-tsgolint: 2869 2868 optional: true ··· 3048 3047 resolution: {integrity: sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==} 3049 3048 engines: {node: '>=8'} 3050 3049 3051 - resend@6.7.0: 3052 - resolution: {integrity: sha512-2ZV0NDZsh4Gh+Nd1hvluZIitmGJ59O4+OxMufymG6Y8uz1Jgt2uS1seSENnkIUlmwg7/dwmfIJC9rAufByz7wA==} 3050 + resend@6.8.0: 3051 + resolution: {integrity: sha512-fDOXGqafQfQXl8nXe93wr93pus8tW7YPpowenE3SmG7dJJf0hH3xUWm3xqacnPvhqjCQTJH9xETg07rmUeSuqQ==} 3053 3052 engines: {node: '>=20'} 3054 3053 peerDependencies: 3055 3054 '@react-email/render': '*' ··· 3093 3092 engines: {node: ^20.19.0 || >=22.12.0} 3094 3093 hasBin: true 3095 3094 3096 - rollup@4.55.1: 3097 - resolution: {integrity: sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==} 3095 + rollup@4.55.2: 3096 + resolution: {integrity: sha512-PggGy4dhwx5qaW+CKBilA/98Ql9keyfnb7lh4SR6shQ91QQQi1ORJ1v4UinkdP2i87OBs9AQFooQylcrrRfIcg==} 3098 3097 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 3099 3098 hasBin: true 3100 3099 ··· 4223 4222 4224 4223 '@oxc-project/types@0.108.0': {} 4225 4224 4226 - '@oxfmt/darwin-arm64@0.19.0': 4225 + '@oxfmt/darwin-arm64@0.26.0': 4227 4226 optional: true 4228 4227 4229 - '@oxfmt/darwin-x64@0.19.0': 4228 + '@oxfmt/darwin-x64@0.26.0': 4230 4229 optional: true 4231 4230 4232 - '@oxfmt/linux-arm64-gnu@0.19.0': 4231 + '@oxfmt/linux-arm64-gnu@0.26.0': 4233 4232 optional: true 4234 4233 4235 - '@oxfmt/linux-arm64-musl@0.19.0': 4234 + '@oxfmt/linux-arm64-musl@0.26.0': 4236 4235 optional: true 4237 4236 4238 - '@oxfmt/linux-x64-gnu@0.19.0': 4237 + '@oxfmt/linux-x64-gnu@0.26.0': 4239 4238 optional: true 4240 4239 4241 - '@oxfmt/linux-x64-musl@0.19.0': 4240 + '@oxfmt/linux-x64-musl@0.26.0': 4242 4241 optional: true 4243 4242 4244 - '@oxfmt/win32-arm64@0.19.0': 4243 + '@oxfmt/win32-arm64@0.26.0': 4245 4244 optional: true 4246 4245 4247 - '@oxfmt/win32-x64@0.19.0': 4246 + '@oxfmt/win32-x64@0.26.0': 4248 4247 optional: true 4249 4248 4250 4249 '@oxlint-tsgolint/darwin-arm64@0.10.1': ··· 4265 4264 '@oxlint-tsgolint/win32-x64@0.10.1': 4266 4265 optional: true 4267 4266 4268 - '@oxlint/darwin-arm64@1.39.0': 4267 + '@oxlint/darwin-arm64@1.41.0': 4269 4268 optional: true 4270 4269 4271 - '@oxlint/darwin-x64@1.39.0': 4270 + '@oxlint/darwin-x64@1.41.0': 4272 4271 optional: true 4273 4272 4274 - '@oxlint/linux-arm64-gnu@1.39.0': 4273 + '@oxlint/linux-arm64-gnu@1.41.0': 4275 4274 optional: true 4276 4275 4277 - '@oxlint/linux-arm64-musl@1.39.0': 4276 + '@oxlint/linux-arm64-musl@1.41.0': 4278 4277 optional: true 4279 4278 4280 - '@oxlint/linux-x64-gnu@1.39.0': 4279 + '@oxlint/linux-x64-gnu@1.41.0': 4281 4280 optional: true 4282 4281 4283 - '@oxlint/linux-x64-musl@1.39.0': 4282 + '@oxlint/linux-x64-musl@1.41.0': 4284 4283 optional: true 4285 4284 4286 - '@oxlint/win32-arm64@1.39.0': 4285 + '@oxlint/win32-arm64@1.41.0': 4287 4286 optional: true 4288 4287 4289 - '@oxlint/win32-x64@1.39.0': 4288 + '@oxlint/win32-x64@1.41.0': 4290 4289 optional: true 4291 4290 4292 4291 '@polka/url@1.0.0-next.29': {} ··· 4398 4397 4399 4398 '@rolldown/pluginutils@1.0.0-beta.60': {} 4400 4399 4401 - '@rollup/rollup-android-arm-eabi@4.55.1': 4400 + '@rollup/rollup-android-arm-eabi@4.55.2': 4402 4401 optional: true 4403 4402 4404 - '@rollup/rollup-android-arm64@4.55.1': 4403 + '@rollup/rollup-android-arm64@4.55.2': 4405 4404 optional: true 4406 4405 4407 - '@rollup/rollup-darwin-arm64@4.55.1': 4406 + '@rollup/rollup-darwin-arm64@4.55.2': 4408 4407 optional: true 4409 4408 4410 - '@rollup/rollup-darwin-x64@4.55.1': 4409 + '@rollup/rollup-darwin-x64@4.55.2': 4411 4410 optional: true 4412 4411 4413 - '@rollup/rollup-freebsd-arm64@4.55.1': 4412 + '@rollup/rollup-freebsd-arm64@4.55.2': 4414 4413 optional: true 4415 4414 4416 - '@rollup/rollup-freebsd-x64@4.55.1': 4415 + '@rollup/rollup-freebsd-x64@4.55.2': 4417 4416 optional: true 4418 4417 4419 - '@rollup/rollup-linux-arm-gnueabihf@4.55.1': 4418 + '@rollup/rollup-linux-arm-gnueabihf@4.55.2': 4420 4419 optional: true 4421 4420 4422 - '@rollup/rollup-linux-arm-musleabihf@4.55.1': 4421 + '@rollup/rollup-linux-arm-musleabihf@4.55.2': 4423 4422 optional: true 4424 4423 4425 - '@rollup/rollup-linux-arm64-gnu@4.55.1': 4424 + '@rollup/rollup-linux-arm64-gnu@4.55.2': 4426 4425 optional: true 4427 4426 4428 - '@rollup/rollup-linux-arm64-musl@4.55.1': 4427 + '@rollup/rollup-linux-arm64-musl@4.55.2': 4429 4428 optional: true 4430 4429 4431 - '@rollup/rollup-linux-loong64-gnu@4.55.1': 4430 + '@rollup/rollup-linux-loong64-gnu@4.55.2': 4432 4431 optional: true 4433 4432 4434 - '@rollup/rollup-linux-loong64-musl@4.55.1': 4433 + '@rollup/rollup-linux-loong64-musl@4.55.2': 4435 4434 optional: true 4436 4435 4437 - '@rollup/rollup-linux-ppc64-gnu@4.55.1': 4436 + '@rollup/rollup-linux-ppc64-gnu@4.55.2': 4438 4437 optional: true 4439 4438 4440 - '@rollup/rollup-linux-ppc64-musl@4.55.1': 4439 + '@rollup/rollup-linux-ppc64-musl@4.55.2': 4441 4440 optional: true 4442 4441 4443 - '@rollup/rollup-linux-riscv64-gnu@4.55.1': 4442 + '@rollup/rollup-linux-riscv64-gnu@4.55.2': 4444 4443 optional: true 4445 4444 4446 - '@rollup/rollup-linux-riscv64-musl@4.55.1': 4445 + '@rollup/rollup-linux-riscv64-musl@4.55.2': 4447 4446 optional: true 4448 4447 4449 - '@rollup/rollup-linux-s390x-gnu@4.55.1': 4448 + '@rollup/rollup-linux-s390x-gnu@4.55.2': 4450 4449 optional: true 4451 4450 4452 - '@rollup/rollup-linux-x64-gnu@4.55.1': 4451 + '@rollup/rollup-linux-x64-gnu@4.55.2': 4453 4452 optional: true 4454 4453 4455 - '@rollup/rollup-linux-x64-musl@4.55.1': 4454 + '@rollup/rollup-linux-x64-musl@4.55.2': 4456 4455 optional: true 4457 4456 4458 - '@rollup/rollup-openbsd-x64@4.55.1': 4457 + '@rollup/rollup-openbsd-x64@4.55.2': 4459 4458 optional: true 4460 4459 4461 - '@rollup/rollup-openharmony-arm64@4.55.1': 4460 + '@rollup/rollup-openharmony-arm64@4.55.2': 4462 4461 optional: true 4463 4462 4464 - '@rollup/rollup-win32-arm64-msvc@4.55.1': 4463 + '@rollup/rollup-win32-arm64-msvc@4.55.2': 4465 4464 optional: true 4466 4465 4467 - '@rollup/rollup-win32-ia32-msvc@4.55.1': 4466 + '@rollup/rollup-win32-ia32-msvc@4.55.2': 4468 4467 optional: true 4469 4468 4470 - '@rollup/rollup-win32-x64-gnu@4.55.1': 4469 + '@rollup/rollup-win32-x64-gnu@4.55.2': 4471 4470 optional: true 4472 4471 4473 - '@rollup/rollup-win32-x64-msvc@4.55.1': 4472 + '@rollup/rollup-win32-x64-msvc@4.55.2': 4474 4473 optional: true 4475 4474 4476 4475 '@sideway/address@4.1.5': ··· 4498 4497 axe-core: 4.11.1 4499 4498 storybook: 10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) 4500 4499 4501 - '@storybook/addon-docs@10.1.11(@types/react@19.2.8)(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4500 + '@storybook/addon-docs@10.1.11(@types/react@19.2.8)(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4502 4501 dependencies: 4503 4502 '@mdx-js/react': 3.1.1(@types/react@19.2.8)(react@19.2.3) 4504 - '@storybook/csf-plugin': 10.1.11(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4503 + '@storybook/csf-plugin': 10.1.11(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4505 4504 '@storybook/icons': 2.0.1(react-dom@19.2.3(react@19.2.3))(react@19.2.3) 4506 4505 '@storybook/react-dom-shim': 10.1.11(react-dom@19.2.3(react@19.2.3))(react@19.2.3)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)) 4507 4506 react: 19.2.3 ··· 4551 4550 - react 4552 4551 - react-dom 4553 4552 4554 - '@storybook/builder-vite@10.1.11(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4553 + '@storybook/builder-vite@10.1.11(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4555 4554 dependencies: 4556 - '@storybook/csf-plugin': 10.1.11(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4555 + '@storybook/csf-plugin': 10.1.11(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4557 4556 '@vitest/mocker': 3.2.4(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4558 4557 storybook: 10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) 4559 4558 ts-dedent: 2.2.0 ··· 4564 4563 - rollup 4565 4564 - webpack 4566 4565 4567 - '@storybook/csf-plugin@10.1.11(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4566 + '@storybook/csf-plugin@10.1.11(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4568 4567 dependencies: 4569 4568 storybook: 10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) 4570 4569 unplugin: 2.3.11 4571 4570 optionalDependencies: 4572 4571 esbuild: 0.27.2 4573 - rollup: 4.55.1 4572 + rollup: 4.55.2 4574 4573 vite: 7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2) 4575 4574 4576 4575 '@storybook/csf@0.1.13': ··· 4590 4589 react-dom: 19.2.3(react@19.2.3) 4591 4590 storybook: 10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) 4592 4591 4593 - '@storybook/svelte-vite@10.1.11(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4592 + '@storybook/svelte-vite@10.1.11(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4594 4593 dependencies: 4595 - '@storybook/builder-vite': 10.1.11(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4594 + '@storybook/builder-vite': 10.1.11(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4596 4595 '@storybook/svelte': 10.1.11(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0) 4597 4596 '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4598 4597 magic-string: 0.30.21 ··· 4614 4613 ts-dedent: 2.2.0 4615 4614 type-fest: 2.19.0 4616 4615 4617 - '@storybook/sveltekit@10.1.11(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4616 + '@storybook/sveltekit@10.1.11(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2))': 4618 4617 dependencies: 4619 - '@storybook/builder-vite': 10.1.11(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4618 + '@storybook/builder-vite': 10.1.11(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4620 4619 '@storybook/svelte': 10.1.11(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0) 4621 - '@storybook/svelte-vite': 10.1.11(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(esbuild@0.27.2)(rollup@4.55.1)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4620 + '@storybook/svelte-vite': 10.1.11(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)))(esbuild@0.27.2)(rollup@4.55.2)(storybook@10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3))(svelte@5.47.0)(vite@7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2)) 4622 4621 storybook: 10.1.11(@testing-library/dom@10.4.1)(react-dom@19.2.3(react@19.2.3))(react@19.2.3) 4623 4622 svelte: 5.47.0 4624 4623 vite: 7.3.1(@types/node@25.0.9)(jiti@2.6.1)(lightningcss@1.30.2) ··· 5940 5939 type-check: 0.4.0 5941 5940 word-wrap: 1.2.5 5942 5941 5943 - oxfmt@0.19.0: 5942 + oxfmt@0.26.0: 5944 5943 dependencies: 5945 5944 tinypool: 2.0.0 5946 5945 optionalDependencies: 5947 - '@oxfmt/darwin-arm64': 0.19.0 5948 - '@oxfmt/darwin-x64': 0.19.0 5949 - '@oxfmt/linux-arm64-gnu': 0.19.0 5950 - '@oxfmt/linux-arm64-musl': 0.19.0 5951 - '@oxfmt/linux-x64-gnu': 0.19.0 5952 - '@oxfmt/linux-x64-musl': 0.19.0 5953 - '@oxfmt/win32-arm64': 0.19.0 5954 - '@oxfmt/win32-x64': 0.19.0 5946 + '@oxfmt/darwin-arm64': 0.26.0 5947 + '@oxfmt/darwin-x64': 0.26.0 5948 + '@oxfmt/linux-arm64-gnu': 0.26.0 5949 + '@oxfmt/linux-arm64-musl': 0.26.0 5950 + '@oxfmt/linux-x64-gnu': 0.26.0 5951 + '@oxfmt/linux-x64-musl': 0.26.0 5952 + '@oxfmt/win32-arm64': 0.26.0 5953 + '@oxfmt/win32-x64': 0.26.0 5955 5954 5956 5955 oxlint-tsgolint@0.10.1: 5957 5956 optionalDependencies: ··· 5962 5961 '@oxlint-tsgolint/win32-arm64': 0.10.1 5963 5962 '@oxlint-tsgolint/win32-x64': 0.10.1 5964 5963 5965 - oxlint@1.39.0(oxlint-tsgolint@0.10.1): 5964 + oxlint@1.41.0(oxlint-tsgolint@0.10.1): 5966 5965 optionalDependencies: 5967 - '@oxlint/darwin-arm64': 1.39.0 5968 - '@oxlint/darwin-x64': 1.39.0 5969 - '@oxlint/linux-arm64-gnu': 1.39.0 5970 - '@oxlint/linux-arm64-musl': 1.39.0 5971 - '@oxlint/linux-x64-gnu': 1.39.0 5972 - '@oxlint/linux-x64-musl': 1.39.0 5973 - '@oxlint/win32-arm64': 1.39.0 5974 - '@oxlint/win32-x64': 1.39.0 5966 + '@oxlint/darwin-arm64': 1.41.0 5967 + '@oxlint/darwin-x64': 1.41.0 5968 + '@oxlint/linux-arm64-gnu': 1.41.0 5969 + '@oxlint/linux-arm64-musl': 1.41.0 5970 + '@oxlint/linux-x64-gnu': 1.41.0 5971 + '@oxlint/linux-x64-musl': 1.41.0 5972 + '@oxlint/win32-arm64': 1.41.0 5973 + '@oxlint/win32-x64': 1.41.0 5975 5974 oxlint-tsgolint: 0.10.1 5976 5975 5977 5976 p-limit@3.1.0: ··· 6123 6122 6124 6123 regexparam@3.0.0: {} 6125 6124 6126 - resend@6.7.0: 6125 + resend@6.8.0: 6127 6126 dependencies: 6128 6127 svix: 1.84.1 6129 6128 ··· 6185 6184 '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.60 6186 6185 '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.60 6187 6186 6188 - rollup@4.55.1: 6187 + rollup@4.55.2: 6189 6188 dependencies: 6190 6189 '@types/estree': 1.0.8 6191 6190 optionalDependencies: 6192 - '@rollup/rollup-android-arm-eabi': 4.55.1 6193 - '@rollup/rollup-android-arm64': 4.55.1 6194 - '@rollup/rollup-darwin-arm64': 4.55.1 6195 - '@rollup/rollup-darwin-x64': 4.55.1 6196 - '@rollup/rollup-freebsd-arm64': 4.55.1 6197 - '@rollup/rollup-freebsd-x64': 4.55.1 6198 - '@rollup/rollup-linux-arm-gnueabihf': 4.55.1 6199 - '@rollup/rollup-linux-arm-musleabihf': 4.55.1 6200 - '@rollup/rollup-linux-arm64-gnu': 4.55.1 6201 - '@rollup/rollup-linux-arm64-musl': 4.55.1 6202 - '@rollup/rollup-linux-loong64-gnu': 4.55.1 6203 - '@rollup/rollup-linux-loong64-musl': 4.55.1 6204 - '@rollup/rollup-linux-ppc64-gnu': 4.55.1 6205 - '@rollup/rollup-linux-ppc64-musl': 4.55.1 6206 - '@rollup/rollup-linux-riscv64-gnu': 4.55.1 6207 - '@rollup/rollup-linux-riscv64-musl': 4.55.1 6208 - '@rollup/rollup-linux-s390x-gnu': 4.55.1 6209 - '@rollup/rollup-linux-x64-gnu': 4.55.1 6210 - '@rollup/rollup-linux-x64-musl': 4.55.1 6211 - '@rollup/rollup-openbsd-x64': 4.55.1 6212 - '@rollup/rollup-openharmony-arm64': 4.55.1 6213 - '@rollup/rollup-win32-arm64-msvc': 4.55.1 6214 - '@rollup/rollup-win32-ia32-msvc': 4.55.1 6215 - '@rollup/rollup-win32-x64-gnu': 4.55.1 6216 - '@rollup/rollup-win32-x64-msvc': 4.55.1 6191 + '@rollup/rollup-android-arm-eabi': 4.55.2 6192 + '@rollup/rollup-android-arm64': 4.55.2 6193 + '@rollup/rollup-darwin-arm64': 4.55.2 6194 + '@rollup/rollup-darwin-x64': 4.55.2 6195 + '@rollup/rollup-freebsd-arm64': 4.55.2 6196 + '@rollup/rollup-freebsd-x64': 4.55.2 6197 + '@rollup/rollup-linux-arm-gnueabihf': 4.55.2 6198 + '@rollup/rollup-linux-arm-musleabihf': 4.55.2 6199 + '@rollup/rollup-linux-arm64-gnu': 4.55.2 6200 + '@rollup/rollup-linux-arm64-musl': 4.55.2 6201 + '@rollup/rollup-linux-loong64-gnu': 4.55.2 6202 + '@rollup/rollup-linux-loong64-musl': 4.55.2 6203 + '@rollup/rollup-linux-ppc64-gnu': 4.55.2 6204 + '@rollup/rollup-linux-ppc64-musl': 4.55.2 6205 + '@rollup/rollup-linux-riscv64-gnu': 4.55.2 6206 + '@rollup/rollup-linux-riscv64-musl': 4.55.2 6207 + '@rollup/rollup-linux-s390x-gnu': 4.55.2 6208 + '@rollup/rollup-linux-x64-gnu': 4.55.2 6209 + '@rollup/rollup-linux-x64-musl': 4.55.2 6210 + '@rollup/rollup-openbsd-x64': 4.55.2 6211 + '@rollup/rollup-openharmony-arm64': 4.55.2 6212 + '@rollup/rollup-win32-arm64-msvc': 4.55.2 6213 + '@rollup/rollup-win32-ia32-msvc': 4.55.2 6214 + '@rollup/rollup-win32-x64-gnu': 4.55.2 6215 + '@rollup/rollup-win32-x64-msvc': 4.55.2 6217 6216 fsevents: 2.3.3 6218 6217 6219 6218 run-applescript@7.1.0: {} ··· 6672 6671 fdir: 6.5.0(picomatch@4.0.3) 6673 6672 picomatch: 4.0.3 6674 6673 postcss: 8.5.6 6675 - rollup: 4.55.1 6674 + rollup: 4.55.2 6676 6675 tinyglobby: 0.2.15 6677 6676 optionalDependencies: 6678 6677 '@types/node': 25.0.9
+2 -2
pnpm-workspace.yaml
··· 54 54 '@vitest/coverage-v8': ^4.0.17 55 55 '@vitest/ui': ^4.0.17 56 56 lightningcss: ^1.30.2 57 - oxfmt: ^0.19.0 58 - oxlint: ^1.39.0 57 + oxfmt: ^0.26.0 58 + oxlint: ^1.41.0 59 59 oxlint-tsgolint: ^0.10.1 60 60 playwright: ^1.57.0 61 61 publint: ^0.3.16

History

4 rounds 0 comments
sign up or login to add to the discussion
2 commits
expand
app/css: enable oxfmt tailwind sorting, organize css files
deps: sync pnpm lockfile
expand 0 comments
pull request successfully merged
2 commits
expand
app/css: enable oxfmt tailwind sorting, organize css files
deps: sync pnpm lockfile
4/4 success
expand
expand 0 comments
1 commit
expand
app/css: enable oxfmt tailwind sorting, organize css files
2/2 success
expand
expand 0 comments
1 commit
expand
app/css: enable oxfmt tailwind sorting, organize css files
4/4 failed
expand
expand 0 comments