aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--apps/browser-extension/package.json6
-rw-r--r--apps/cli/package.json7
-rw-r--r--apps/cli/src/index.ts1
-rw-r--r--apps/cli/vite.config.mts9
-rw-r--r--apps/landing/package.json4
-rw-r--r--apps/mcp/package.json4
-rw-r--r--apps/mobile/package.json2
-rw-r--r--apps/web/package.json8
-rw-r--r--apps/workers/package.json2
-rw-r--r--packages/api/package.json2
-rw-r--r--packages/db/package.json2
-rw-r--r--packages/e2e_tests/package.json2
-rw-r--r--packages/open-api/package.json2
-rw-r--r--packages/sdk/package.json4
-rw-r--r--packages/shared-react/package.json2
-rw-r--r--packages/shared/package.json2
-rw-r--r--packages/trpc/package.json2
-rw-r--r--pnpm-lock.yaml1850
18 files changed, 847 insertions, 1064 deletions
diff --git a/apps/browser-extension/package.json b/apps/browser-extension/package.json
index ec989a7e..92bd3856 100644
--- a/apps/browser-extension/package.json
+++ b/apps/browser-extension/package.json
@@ -21,7 +21,7 @@
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
- "@tanstack/react-query": "^5.69.0",
+ "@tanstack/react-query": "^5.80.3",
"@trpc/client": "^11.4.3",
"@trpc/react-query": "^11.4.3",
"@trpc/server": "^11.4.3",
@@ -46,12 +46,12 @@
"@types/chrome": "^0.0.260",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "@vitejs/plugin-react-swc": "^3.5.0",
+ "@vitejs/plugin-react-swc": "^3.11.0",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.8.3",
- "vite": "^5.1.0"
+ "vite": "^7.0.6"
},
"prettier": "@karakeep/prettier-config"
}
diff --git a/apps/cli/package.json b/apps/cli/package.json
index 778433ee..2b6f2cd5 100644
--- a/apps/cli/package.json
+++ b/apps/cli/package.json
@@ -26,11 +26,12 @@
"commander": "^12.0.0",
"superjson": "^2.2.1",
"table": "^6.8.2",
- "tsx": "^4.7.1",
- "vite": "^5.1.0"
+ "tsx": "^4.8.1",
+ "vite": "^7.0.6",
+ "vite-tsconfig-paths": "^4.3.1"
},
"scripts": {
- "build": "vite build",
+ "build": "vite build && chmod +x dist/index.mjs",
"run": "tsx src/index.ts",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts
index 7d6c1472..cfb1d520 100644
--- a/apps/cli/src/index.ts
+++ b/apps/cli/src/index.ts
@@ -1,4 +1,3 @@
-#! /usr/bin/env node
import { bookmarkCmd } from "@/commands/bookmarks";
import { listsCmd } from "@/commands/lists";
import { tagsCmd } from "@/commands/tags";
diff --git a/apps/cli/vite.config.mts b/apps/cli/vite.config.mts
index 81717bff..161d206a 100644
--- a/apps/cli/vite.config.mts
+++ b/apps/cli/vite.config.mts
@@ -9,9 +9,14 @@ export default defineConfig({
input: "src/index.ts",
output: {
dir: "dist",
+ format: "es",
+ entryFileNames: "index.mjs",
+ banner: "#!/usr/bin/env node",
},
+ external: ["node:fs", "node:path", "node:url", "node:process"],
},
ssr: true,
+ target: "node18",
},
ssr: {
// bundle everything except for Node built-ins
@@ -23,4 +28,8 @@ export default defineConfig({
process.env.npm_package_version,
),
},
+ esbuild: {
+ // Handle shebang in source files
+ banner: "",
+ },
});
diff --git a/apps/landing/package.json b/apps/landing/package.json
index ed396b85..2ffa198b 100644
--- a/apps/landing/package.json
+++ b/apps/landing/package.json
@@ -34,11 +34,11 @@
"@tailwindcss/typography": "^0.5.10",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
- "@vitejs/plugin-react": "^4.3.4",
+ "@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
- "vite": "^5.1.0",
+ "vite": "^7.0.6",
"vite-plugin-svgr": "^4.3.0"
},
"prettier": "@karakeep/prettier-config"
diff --git a/apps/mcp/package.json b/apps/mcp/package.json
index bfa9d833..9eaa2feb 100644
--- a/apps/mcp/package.json
+++ b/apps/mcp/package.json
@@ -19,8 +19,8 @@
"@tsconfig/node22": "^22.0.0",
"@types/turndown": "^5.0.5",
"shx": "^0.4.0",
- "tsx": "^4.7.1",
- "vite": "^5.1.0"
+ "tsx": "^4.8.1",
+ "vite": "^7.0.6"
},
"scripts": {
"build": "vite build && shx chmod +x dist/index.js",
diff --git a/apps/mobile/package.json b/apps/mobile/package.json
index 00010ba6..8acf458a 100644
--- a/apps/mobile/package.json
+++ b/apps/mobile/package.json
@@ -20,7 +20,7 @@
"@karakeep/trpc": "workspace:^0.1.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-menu/menu": "^1.1.6",
- "@tanstack/react-query": "^5.69.0",
+ "@tanstack/react-query": "^5.80.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"expo": "~52.0.46",
diff --git a/apps/web/package.json b/apps/web/package.json
index 23507949..b5fb1a50 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -48,8 +48,8 @@
"@radix-ui/react-toggle": "^1.1.9",
"@radix-ui/react-tooltip": "^1.2.7",
"@svgr/webpack": "^8.1.0",
- "@tanstack/react-query": "^5.69.0",
- "@tanstack/react-query-devtools": "^5.69.0",
+ "@tanstack/react-query": "^5.80.3",
+ "@tanstack/react-query-devtools": "^5.80.3",
"@trpc/client": "^11.4.3",
"@trpc/react-query": "^11.4.3",
"@trpc/server": "^11.4.3",
@@ -58,7 +58,7 @@
"clsx": "^2.1.0",
"cmdk": "^1.1.1",
"csv-parse": "^5.5.6",
- "date-fns": "^4.1.0",
+ "date-fns": "^3.6.0",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.44.2",
"fastest-levenshtein": "^1.0.16",
@@ -109,7 +109,7 @@
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"vite-tsconfig-paths": "^4.3.1",
- "vitest": "^1.6.1"
+ "vitest": "^3.2.4"
},
"prettier": "@karakeep/prettier-config"
}
diff --git a/apps/workers/package.json b/apps/workers/package.json
index 18cb2bf9..03f864df 100644
--- a/apps/workers/package.json
+++ b/apps/workers/package.json
@@ -43,7 +43,7 @@
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rss-parser": "^3.13.0",
"tesseract.js": "^5.1.1",
- "tsx": "^4.7.1",
+ "tsx": "^4.8.1",
"typescript": "^5.8.3",
"zod": "^3.24.2"
},
diff --git a/packages/api/package.json b/packages/api/package.json
index 18d70501..0717b825 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -30,7 +30,7 @@
"@types/deep-equal": "^1.0.4",
"@types/rss": "^0.0.32",
"vite-tsconfig-paths": "^4.3.1",
- "vitest": "^1.6.1"
+ "vitest": "^3.2.4"
},
"prettier": "@karakeep/prettier-config"
}
diff --git a/packages/db/package.json b/packages/db/package.json
index 4230befe..c87a95ab 100644
--- a/packages/db/package.json
+++ b/packages/db/package.json
@@ -18,7 +18,7 @@
"dotenv": "^16.4.1",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.2",
- "tsx": "^4.7.1"
+ "tsx": "^4.8.1"
},
"devDependencies": {
"@karakeep/prettier-config": "workspace:^0.1.0",
diff --git a/packages/e2e_tests/package.json b/packages/e2e_tests/package.json
index 0cbb8fb3..4061f73b 100644
--- a/packages/e2e_tests/package.json
+++ b/packages/e2e_tests/package.json
@@ -25,7 +25,7 @@
"@karakeep/prettier-config": "workspace:^0.1.0",
"@karakeep/tsconfig": "workspace:^0.1.0",
"vite-tsconfig-paths": "^4.3.1",
- "vitest": "^1.6.1"
+ "vitest": "^3.2.4"
},
"prettier": "@karakeep/prettier-config"
}
diff --git a/packages/open-api/package.json b/packages/open-api/package.json
index a2a20ef7..5897b9e0 100644
--- a/packages/open-api/package.json
+++ b/packages/open-api/package.json
@@ -12,7 +12,7 @@
"devDependencies": {
"@karakeep/prettier-config": "workspace:^0.1.0",
"@karakeep/tsconfig": "workspace:^0.1.0",
- "tsx": "^4.7.1"
+ "tsx": "^4.8.1"
},
"scripts": {
"typecheck": "tsc --noEmit",
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 05d9245f..9b9c42be 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -22,8 +22,8 @@
"@karakeep/tsconfig": "workspace:^0.1.0",
"@tsconfig/node22": "^22.0.0",
"openapi-typescript": "^7.6.1",
- "tsx": "^4.7.1",
- "vite": "^5.1.0",
+ "tsx": "^4.8.1",
+ "vite": "^7.0.6",
"vite-plugin-dts": "^4.4.0"
},
"scripts": {
diff --git a/packages/shared-react/package.json b/packages/shared-react/package.json
index df948215..5659301c 100644
--- a/packages/shared-react/package.json
+++ b/packages/shared-react/package.json
@@ -6,7 +6,7 @@
"dependencies": {
"@karakeep/shared": "workspace:^0.1.0",
"@karakeep/trpc": "workspace:^0.1.0",
- "@tanstack/react-query": "^5.69.0",
+ "@tanstack/react-query": "^5.80.3",
"@trpc/client": "^11.4.3",
"superjson": "^2.2.1"
},
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 547a014f..0df0b371 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -24,7 +24,7 @@
"@karakeep/tsconfig": "workspace:^0.1.0",
"@types/html-to-text": "^9.0.4",
"@types/nodemailer": "^6.4.17",
- "vitest": "^1.6.1"
+ "vitest": "^3.2.4"
},
"scripts": {
"typecheck": "tsc --noEmit",
diff --git a/packages/trpc/package.json b/packages/trpc/package.json
index 14684198..469536b3 100644
--- a/packages/trpc/package.json
+++ b/packages/trpc/package.json
@@ -33,7 +33,7 @@
"@types/deep-equal": "^1.0.4",
"@types/nodemailer": "^6.4.17",
"vite-tsconfig-paths": "^4.3.1",
- "vitest": "^1.6.1"
+ "vitest": "^3.2.4"
},
"prettier": "@karakeep/prettier-config"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f09ed740..4e6e2eb2 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -60,14 +60,14 @@ importers:
specifier: ^1.2.3
version: 1.2.3(@types/react@18.3.12)(react@18.3.1)
'@tanstack/react-query':
- specifier: ^5.69.0
- version: 5.69.0(react@18.3.1)
+ specifier: ^5.80.3
+ version: 5.83.0(react@18.3.1)
'@trpc/client':
specifier: ^11.4.3
version: 11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3)
'@trpc/react-query':
specifier: ^11.4.3
- version: 11.4.3(@tanstack/react-query@5.69.0(react@18.3.1))(@trpc/client@11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.4.3(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)
+ version: 11.4.3(@tanstack/react-query@5.83.0(react@18.3.1))(@trpc/client@11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.4.3(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)
'@trpc/server':
specifier: ^11.4.3
version: 11.4.3(typescript@5.8.3)
@@ -130,8 +130,8 @@ importers:
specifier: ^18.3.1
version: 18.3.7(@types/react@18.3.12)
'@vitejs/plugin-react-swc':
- specifier: ^3.5.0
- version: 3.6.0(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))
+ specifier: ^3.11.0
+ version: 3.11.0(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
autoprefixer:
specifier: ^10.4.17
version: 10.4.21(postcss@8.5.4)
@@ -145,8 +145,8 @@ importers:
specifier: ^5.8.3
version: 5.8.3
vite:
- specifier: ^5.1.0
- version: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
apps/cli:
devDependencies:
@@ -187,11 +187,14 @@ importers:
specifier: ^6.8.2
version: 6.9.0
tsx:
- specifier: ^4.7.1
- version: 4.7.1
+ specifier: ^4.8.1
+ version: 4.20.3
vite:
- specifier: ^5.1.0
- version: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
+ vite-tsconfig-paths:
+ specifier: ^4.3.1
+ version: 4.3.2(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
apps/landing:
dependencies:
@@ -248,8 +251,8 @@ importers:
specifier: ^18.3.1
version: 18.3.7(@types/react@18.3.12)
'@vitejs/plugin-react':
- specifier: ^4.3.4
- version: 4.5.1(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))
+ specifier: ^4.7.0
+ version: 4.7.0(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
autoprefixer:
specifier: ^10.4.17
version: 10.4.21(postcss@8.5.4)
@@ -260,11 +263,11 @@ importers:
specifier: ^3.4.1
version: 3.4.1
vite:
- specifier: ^5.1.0
- version: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
vite-plugin-svgr:
specifier: ^4.3.0
- version: 4.3.0(rollup@4.42.0)(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))
+ version: 4.3.0(rollup@4.42.0)(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
apps/mcp:
dependencies:
@@ -297,11 +300,11 @@ importers:
specifier: ^0.4.0
version: 0.4.0
tsx:
- specifier: ^4.7.1
- version: 4.7.1
+ specifier: ^4.8.1
+ version: 4.20.3
vite:
- specifier: ^5.1.0
- version: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
apps/mobile:
dependencies:
@@ -321,8 +324,8 @@ importers:
specifier: ^1.1.6
version: 1.1.6(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)
'@tanstack/react-query':
- specifier: ^5.69.0
- version: 5.69.0(react@18.3.1)
+ specifier: ^5.80.3
+ version: 5.83.0(react@18.3.1)
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
@@ -568,17 +571,17 @@ importers:
specifier: ^8.1.0
version: 8.1.0(typescript@5.8.3)
'@tanstack/react-query':
- specifier: ^5.69.0
- version: 5.69.0(react@18.3.1)
+ specifier: ^5.80.3
+ version: 5.83.0(react@18.3.1)
'@tanstack/react-query-devtools':
- specifier: ^5.69.0
- version: 5.69.0(@tanstack/react-query@5.69.0(react@18.3.1))(react@18.3.1)
+ specifier: ^5.80.3
+ version: 5.83.0(@tanstack/react-query@5.83.0(react@18.3.1))(react@18.3.1)
'@trpc/client':
specifier: ^11.4.3
version: 11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3)
'@trpc/react-query':
specifier: ^11.4.3
- version: 11.4.3(@tanstack/react-query@5.69.0(react@18.3.1))(@trpc/client@11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.4.3(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)
+ version: 11.4.3(@tanstack/react-query@5.83.0(react@18.3.1))(@trpc/client@11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.4.3(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)
'@trpc/server':
specifier: ^11.4.3
version: 11.4.3(typescript@5.8.3)
@@ -598,8 +601,8 @@ importers:
specifier: ^5.5.6
version: 5.6.0
date-fns:
- specifier: ^4.1.0
- version: 4.1.0
+ specifier: ^3.6.0
+ version: 3.6.0
dayjs:
specifier: ^1.11.10
version: 1.11.10
@@ -647,7 +650,7 @@ importers:
version: 18.3.1
react-day-picker:
specifier: 8.10.1
- version: 8.10.1(date-fns@4.1.0)(react@18.3.1)
+ version: 8.10.1(date-fns@3.6.0)(react@18.3.1)
react-dom:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
@@ -744,10 +747,10 @@ importers:
version: 3.4.1
vite-tsconfig-paths:
specifier: ^4.3.1
- version: 4.3.2(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))
+ version: 4.3.2(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
vitest:
- specifier: ^1.6.1
- version: 1.6.1(@types/node@22.15.30)(happy-dom@17.4.9)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^3.2.4
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.15.30)(happy-dom@17.4.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
apps/workers:
dependencies:
@@ -869,8 +872,8 @@ importers:
specifier: ^5.1.1
version: 5.1.1(encoding@0.1.13)
tsx:
- specifier: ^4.7.1
- version: 4.7.1
+ specifier: ^4.8.1
+ version: 4.20.3
typescript:
specifier: ^5.8.3
version: 5.8.3
@@ -984,10 +987,10 @@ importers:
version: 0.0.32
vite-tsconfig-paths:
specifier: ^4.3.1
- version: 4.3.2(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))
+ version: 4.3.2(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
vitest:
- specifier: ^1.6.1
- version: 1.6.1(@types/node@22.15.30)(happy-dom@17.4.9)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^3.2.4
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.15.30)(happy-dom@17.4.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
packages/db:
dependencies:
@@ -1013,8 +1016,8 @@ importers:
specifier: ^0.44.2
version: 0.44.2(@opentelemetry/api@1.9.0)(@types/better-sqlite3@7.6.13)(better-sqlite3@11.3.0)(gel@2.1.0)
tsx:
- specifier: ^4.7.1
- version: 4.7.1
+ specifier: ^4.8.1
+ version: 4.20.3
devDependencies:
'@karakeep/prettier-config':
specifier: workspace:^0.1.0
@@ -1055,10 +1058,10 @@ importers:
version: link:../../tooling/typescript
vite-tsconfig-paths:
specifier: ^4.3.1
- version: 4.3.2(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))
+ version: 4.3.2(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
vitest:
- specifier: ^1.6.1
- version: 1.6.1(@types/node@22.15.30)(happy-dom@17.4.9)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^3.2.4
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.15.30)(happy-dom@17.4.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
packages/open-api:
dependencies:
@@ -1079,8 +1082,8 @@ importers:
specifier: workspace:^0.1.0
version: link:../../tooling/typescript
tsx:
- specifier: ^4.7.1
- version: 4.7.1
+ specifier: ^4.8.1
+ version: 4.20.3
packages/sdk:
dependencies:
@@ -1101,14 +1104,14 @@ importers:
specifier: ^7.6.1
version: 7.8.0(typescript@5.8.3)
tsx:
- specifier: ^4.7.1
- version: 4.7.1
+ specifier: ^4.8.1
+ version: 4.20.3
vite:
- specifier: ^5.1.0
- version: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^7.0.6
+ version: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
vite-plugin-dts:
specifier: ^4.4.0
- version: 4.5.4(@types/node@22.15.30)(rollup@4.42.0)(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))
+ version: 4.5.4(@types/node@22.15.30)(rollup@4.42.0)(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
packages/shared:
dependencies:
@@ -1165,8 +1168,8 @@ importers:
specifier: ^6.4.17
version: 6.4.17
vitest:
- specifier: ^1.6.1
- version: 1.6.1(@types/node@22.15.30)(happy-dom@17.4.9)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^3.2.4
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.15.30)(happy-dom@17.4.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
packages/shared-react:
dependencies:
@@ -1177,8 +1180,8 @@ importers:
specifier: workspace:^0.1.0
version: link:../trpc
'@tanstack/react-query':
- specifier: ^5.69.0
- version: 5.69.0(react@18.3.1)
+ specifier: ^5.80.3
+ version: 5.83.0(react@18.3.1)
'@trpc/client':
specifier: ^11.4.3
version: 11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3)
@@ -1255,10 +1258,10 @@ importers:
version: 6.4.17
vite-tsconfig-paths:
specifier: ^4.3.1
- version: 4.3.2(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))
+ version: 4.3.2(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
vitest:
- specifier: ^1.6.1
- version: 1.6.1(@types/node@22.15.30)(happy-dom@17.4.9)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ specifier: ^3.2.4
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.15.30)(happy-dom@17.4.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
tooling/github: {}
@@ -1290,7 +1293,7 @@ importers:
version: 0.5.16(tailwindcss@3.4.1)
nativewind:
specifier: ^4.1.23
- version: 4.1.23(react-native-reanimated@3.18.0(@babel/core@7.27.4)(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.1)
+ version: 4.1.23(react-native-reanimated@3.18.0(@babel/core@7.28.0)(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.1)
postcss:
specifier: ^8.4.35
version: 8.5.4
@@ -1628,8 +1631,8 @@ packages:
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.27.4':
- resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==}
+ '@babel/core@7.28.0':
+ resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.27.5':
@@ -2901,12 +2904,6 @@ packages:
resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
deprecated: 'Merged into tsx: https://tsx.is'
- '@esbuild/aix-ppc64@0.19.12':
- resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/aix-ppc64@0.25.6':
resolution: {integrity: sha512-ShbM/3XxwuxjFiuVBHA+d3j5dyac0aEVVq1oluIDf71hUw0aRF59dV/efUsIwFnR6m8JNM2FjZOzmaZ8yG61kw==}
engines: {node: '>=18'}
@@ -2919,12 +2916,6 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.19.12':
- resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
'@esbuild/android-arm64@0.25.6':
resolution: {integrity: sha512-hd5zdUarsK6strW+3Wxi5qWws+rJhCCbMiC9QZyzoxfk5uHRIE8T287giQxzVpEvCwuJ9Qjg6bEjcRJcgfLqoA==}
engines: {node: '>=18'}
@@ -2937,12 +2928,6 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.19.12':
- resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-arm@0.25.6':
resolution: {integrity: sha512-S8ToEOVfg++AU/bHwdksHNnyLyVM+eMVAOf6yRKFitnwnbwwPNqKr3srzFRe7nzV69RQKb5DgchIX5pt3L53xg==}
engines: {node: '>=18'}
@@ -2955,12 +2940,6 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.19.12':
- resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
'@esbuild/android-x64@0.25.6':
resolution: {integrity: sha512-0Z7KpHSr3VBIO9A/1wcT3NTy7EB4oNC4upJ5ye3R7taCc2GUdeynSLArnon5G8scPwaU866d3H4BCrE5xLW25A==}
engines: {node: '>=18'}
@@ -2973,12 +2952,6 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.19.12':
- resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-arm64@0.25.6':
resolution: {integrity: sha512-FFCssz3XBavjxcFxKsGy2DYK5VSvJqa6y5HXljKzhRZ87LvEi13brPrf/wdyl/BbpbMKJNOr1Sd0jtW4Ge1pAA==}
engines: {node: '>=18'}
@@ -2991,12 +2964,6 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.19.12':
- resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.25.6':
resolution: {integrity: sha512-GfXs5kry/TkGM2vKqK2oyiLFygJRqKVhawu3+DOCk7OxLy/6jYkWXhlHwOoTb0WqGnWGAS7sooxbZowy+pK9Yg==}
engines: {node: '>=18'}
@@ -3009,12 +2976,6 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.19.12':
- resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-arm64@0.25.6':
resolution: {integrity: sha512-aoLF2c3OvDn2XDTRvn8hN6DRzVVpDlj2B/F66clWd/FHLiHaG3aVZjxQX2DYphA5y/evbdGvC6Us13tvyt4pWg==}
engines: {node: '>=18'}
@@ -3027,12 +2988,6 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.19.12':
- resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
'@esbuild/freebsd-x64@0.25.6':
resolution: {integrity: sha512-2SkqTjTSo2dYi/jzFbU9Plt1vk0+nNg8YC8rOXXea+iA3hfNJWebKYPs3xnOUf9+ZWhKAaxnQNUf2X9LOpeiMQ==}
engines: {node: '>=18'}
@@ -3045,12 +3000,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.19.12':
- resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm64@0.25.6':
resolution: {integrity: sha512-b967hU0gqKd9Drsh/UuAm21Khpoh6mPBSgz8mKRq4P5mVK8bpA+hQzmm/ZwGVULSNBzKdZPQBRT3+WuVavcWsQ==}
engines: {node: '>=18'}
@@ -3063,12 +3012,6 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.19.12':
- resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-arm@0.25.6':
resolution: {integrity: sha512-SZHQlzvqv4Du5PrKE2faN0qlbsaW/3QQfUUc6yO2EjFcA83xnwm91UbEEVx4ApZ9Z5oG8Bxz4qPE+HFwtVcfyw==}
engines: {node: '>=18'}
@@ -3081,12 +3024,6 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.19.12':
- resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-ia32@0.25.6':
resolution: {integrity: sha512-aHWdQ2AAltRkLPOsKdi3xv0mZ8fUGPdlKEjIEhxCPm5yKEThcUjHpWB1idN74lfXGnZ5SULQSgtr5Qos5B0bPw==}
engines: {node: '>=18'}
@@ -3099,12 +3036,6 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.19.12':
- resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.25.6':
resolution: {integrity: sha512-VgKCsHdXRSQ7E1+QXGdRPlQ/e08bN6WMQb27/TMfV+vPjjTImuT9PmLXupRlC90S1JeNNW5lzkAEO/McKeJ2yg==}
engines: {node: '>=18'}
@@ -3117,12 +3048,6 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.19.12':
- resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-mips64el@0.25.6':
resolution: {integrity: sha512-WViNlpivRKT9/py3kCmkHnn44GkGXVdXfdc4drNmRl15zVQ2+D2uFwdlGh6IuK5AAnGTo2qPB1Djppj+t78rzw==}
engines: {node: '>=18'}
@@ -3135,12 +3060,6 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.19.12':
- resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
'@esbuild/linux-ppc64@0.25.6':
resolution: {integrity: sha512-wyYKZ9NTdmAMb5730I38lBqVu6cKl4ZfYXIs31Baf8aoOtB4xSGi3THmDYt4BTFHk7/EcVixkOV2uZfwU3Q2Jw==}
engines: {node: '>=18'}
@@ -3153,12 +3072,6 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.19.12':
- resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.25.6':
resolution: {integrity: sha512-KZh7bAGGcrinEj4qzilJ4hqTY3Dg2U82c8bv+e1xqNqZCrCyc+TL9AUEn5WGKDzm3CfC5RODE/qc96OcbIe33w==}
engines: {node: '>=18'}
@@ -3171,12 +3084,6 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.19.12':
- resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-s390x@0.25.6':
resolution: {integrity: sha512-9N1LsTwAuE9oj6lHMyyAM+ucxGiVnEqUdp4v7IaMmrwb06ZTEVCIs3oPPplVsnjPfyjmxwHxHMF8b6vzUVAUGw==}
engines: {node: '>=18'}
@@ -3189,12 +3096,6 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.19.12':
- resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/linux-x64@0.25.6':
resolution: {integrity: sha512-A6bJB41b4lKFWRKNrWoP2LHsjVzNiaurf7wyj/XtFNTsnPuxwEBWHLty+ZE0dWBKuSK1fvKgrKaNjBS7qbFKig==}
engines: {node: '>=18'}
@@ -3213,12 +3114,6 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.19.12':
- resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/netbsd-x64@0.25.6':
resolution: {integrity: sha512-dUXuZr5WenIDlMHdMkvDc1FAu4xdWixTCRgP7RQLBOkkGgwuuzaGSYcOpW4jFxzpzL1ejb8yF620UxAqnBrR9g==}
engines: {node: '>=18'}
@@ -3237,12 +3132,6 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.19.12':
- resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
'@esbuild/openbsd-x64@0.25.6':
resolution: {integrity: sha512-hKrmDa0aOFOr71KQ/19JC7az1P0GWtCN1t2ahYAf4O007DHZt/dW8ym5+CUdJhQ/qkZmI1HAF8KkJbEFtCL7gw==}
engines: {node: '>=18'}
@@ -3261,12 +3150,6 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.19.12':
- resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/sunos-x64@0.25.6':
resolution: {integrity: sha512-dyCGxv1/Br7MiSC42qinGL8KkG4kX0pEsdb0+TKhmJZgCUDBGmyo1/ArCjNGiOLiIAgdbWgmWgib4HoCi5t7kA==}
engines: {node: '>=18'}
@@ -3279,12 +3162,6 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.19.12':
- resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-arm64@0.25.6':
resolution: {integrity: sha512-42QOgcZeZOvXfsCBJF5Afw73t4veOId//XD3i+/9gSkhSV6Gk3VPlWncctI+JcOyERv85FUo7RxuxGy+z8A43Q==}
engines: {node: '>=18'}
@@ -3297,12 +3174,6 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.19.12':
- resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-ia32@0.25.6':
resolution: {integrity: sha512-4AWhgXmDuYN7rJI6ORB+uU9DHLq/erBbuMoAuB4VWJTu5KtCgcKYPynF0YI1VkBNuEfjNlLrFr9KZPJzrtLkrQ==}
engines: {node: '>=18'}
@@ -3315,12 +3186,6 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.19.12':
- resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
'@esbuild/win32-x64@0.25.6':
resolution: {integrity: sha512-NgJPHHbEpLQgDH2MjQu90pzW/5vvXIZ7KOnPyNBm92A6WgZ/7b6fJyUBjoumLqeOQQGqY2QjQxRo97ah4Sj0cA==}
engines: {node: '>=18'}
@@ -4934,12 +4799,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@rolldown/pluginutils@1.0.0-beta.27':
+ resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
+
'@rolldown/pluginutils@1.0.0-beta.28':
resolution: {integrity: sha512-fe3/1HZ3qJmXvkGv1kacKq2b+x9gbcyF1hnmLBVrRFEQWoOcRapQjXf8+hgyxI0EJAbnKEtrp5yhohQCFCjycw==}
- '@rolldown/pluginutils@1.0.0-beta.9':
- resolution: {integrity: sha512-e9MeMtVWo186sgvFFJOPGy7/d2j2mZhLJIdVW0C/xDluuOvymEATqz6zKsP0ZmXGzQtqlyjz5sC1sYQUoJG98w==}
-
'@rollup/plugin-babel@5.3.1':
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
@@ -5444,68 +5309,68 @@ packages:
resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==}
engines: {node: '>=14'}
- '@swc/core-darwin-arm64@1.11.31':
- resolution: {integrity: sha512-NTEaYOts0OGSbJZc0O74xsji+64JrF1stmBii6D5EevWEtrY4wlZhm8SiP/qPrOB+HqtAihxWIukWkP2aSdGSQ==}
+ '@swc/core-darwin-arm64@1.13.2':
+ resolution: {integrity: sha512-44p7ivuLSGFJ15Vly4ivLJjg3ARo4879LtEBAabcHhSZygpmkP8eyjyWxrH3OxkY1eRZSIJe8yRZPFw4kPXFPw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.11.31':
- resolution: {integrity: sha512-THSGaSwT96JwXDwuXQ6yFBbn+xDMdyw7OmBpnweAWsh5DhZmQkALEm1DgdQO3+rrE99MkmzwAfclc0UmYro/OA==}
+ '@swc/core-darwin-x64@1.13.2':
+ resolution: {integrity: sha512-Lb9EZi7X2XDAVmuUlBm2UvVAgSCbD3qKqDCxSI4jEOddzVOpNCnyZ/xEampdngUIyDDhhJLYU9duC+Mcsv5Y+A==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.11.31':
- resolution: {integrity: sha512-laKtQFnW7KHgE57Hx32os2SNAogcuIDxYE+3DYIOmDMqD7/1DCfJe6Rln2N9WcOw6HuDbDpyQavIwZNfSAa8vQ==}
+ '@swc/core-linux-arm-gnueabihf@1.13.2':
+ resolution: {integrity: sha512-9TDe/92ee1x57x+0OqL1huG4BeljVx0nWW4QOOxp8CCK67Rpc/HHl2wciJ0Kl9Dxf2NvpNtkPvqj9+BUmM9WVA==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.11.31':
- resolution: {integrity: sha512-T+vGw9aPE1YVyRxRr1n7NAdkbgzBzrXCCJ95xAZc/0+WUwmL77Z+js0J5v1KKTRxw4FvrslNCOXzMWrSLdwPSA==}
+ '@swc/core-linux-arm64-gnu@1.13.2':
+ resolution: {integrity: sha512-KJUSl56DBk7AWMAIEcU83zl5mg3vlQYhLELhjwRFkGFMvghQvdqQ3zFOYa4TexKA7noBZa3C8fb24rI5sw9Exg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.11.31':
- resolution: {integrity: sha512-Mztp5NZkyd5MrOAG+kl+QSn0lL4Uawd4CK4J7wm97Hs44N9DHGIG5nOz7Qve1KZo407Y25lTxi/PqzPKHo61zQ==}
+ '@swc/core-linux-arm64-musl@1.13.2':
+ resolution: {integrity: sha512-teU27iG1oyWpNh9CzcGQ48ClDRt/RCem7mYO7ehd2FY102UeTws2+OzLESS1TS1tEZipq/5xwx3FzbVgiolCiQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.11.31':
- resolution: {integrity: sha512-DDVE0LZcXOWwOqFU1Xi7gdtiUg3FHA0vbGb3trjWCuI1ZtDZHEQYL4M3/2FjqKZtIwASrDvO96w91okZbXhvMg==}
+ '@swc/core-linux-x64-gnu@1.13.2':
+ resolution: {integrity: sha512-dRPsyPyqpLD0HMRCRpYALIh4kdOir8pPg4AhNQZLehKowigRd30RcLXGNVZcc31Ua8CiPI4QSgjOIxK+EQe4LQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.11.31':
- resolution: {integrity: sha512-mJA1MzPPRIfaBUHZi0xJQ4vwL09MNWDeFtxXb0r4Yzpf0v5Lue9ymumcBPmw/h6TKWms+Non4+TDquAsweuKSw==}
+ '@swc/core-linux-x64-musl@1.13.2':
+ resolution: {integrity: sha512-CCxETW+KkYEQDqz1SYC15YIWYheqFC+PJVOW76Maa/8yu8Biw+HTAcblKf2isrlUtK8RvrQN94v3UXkC2NzCEw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.11.31':
- resolution: {integrity: sha512-RdtakUkNVAb/FFIMw3LnfNdlH1/ep6KgiPDRlmyUfd0WdIQ3OACmeBegEFNFTzi7gEuzy2Yxg4LWf4IUVk8/bg==}
+ '@swc/core-win32-arm64-msvc@1.13.2':
+ resolution: {integrity: sha512-Wv/QTA6PjyRLlmKcN6AmSI4jwSMRl0VTLGs57PHTqYRwwfwd7y4s2fIPJVBNbAlXd795dOEP6d/bGSQSyhOX3A==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.11.31':
- resolution: {integrity: sha512-hErXdCGsg7swWdG1fossuL8542I59xV+all751mYlBoZ8kOghLSKObGQTkBbuNvc0sUKWfWg1X0iBuIhAYar+w==}
+ '@swc/core-win32-ia32-msvc@1.13.2':
+ resolution: {integrity: sha512-PuCdtNynEkUNbUXX/wsyUC+t4mamIU5y00lT5vJcAvco3/r16Iaxl5UCzhXYaWZSNVZMzPp9qN8NlSL8M5pPxw==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.11.31':
- resolution: {integrity: sha512-5t7SGjUBMMhF9b5j17ml/f/498kiBJNf4vZFNM421UGUEETdtjPN9jZIuQrowBkoFGJTCVL/ECM4YRtTH30u/A==}
+ '@swc/core-win32-x64-msvc@1.13.2':
+ resolution: {integrity: sha512-qlmMkFZJus8cYuBURx1a3YAG2G7IW44i+FEYV5/32ylKkzGNAr9tDJSA53XNnNXkAB5EXSPsOz7bn5C3JlEtdQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.11.31':
- resolution: {integrity: sha512-mAby9aUnKRjMEA7v8cVZS9Ah4duoRBnX7X6r5qrhTxErx+68MoY1TPrVwj/66/SWN3Bl+jijqAqoB8Qx0QE34A==}
+ '@swc/core@1.13.2':
+ resolution: {integrity: sha512-YWqn+0IKXDhqVLKoac4v2tV6hJqB/wOh8/Br8zjqeqBkKa77Qb0Kw2i7LOFzjFNZbZaPH6AlMGlBwNrxaauaAg==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '>=0.5.17'
@@ -5519,8 +5384,8 @@ packages:
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
- '@swc/types@0.1.22':
- resolution: {integrity: sha512-D13mY/ZA4PPEFSy6acki9eBT/3WgjMoRqNcdpIvjaYLQ44Xk5BdaL7UkDxAh6Z9UOe7tCCp67BVmZCojYp9owg==}
+ '@swc/types@0.1.23':
+ resolution: {integrity: sha512-u1iIVZV9Q0jxY+yM2vw/hZGDNudsN85bBpTqzAQ9rzkxW9D+e3aEM4Han+ow518gSewkXgjmEK0BD79ZcNVgPw==}
'@szmarczak/http-timer@4.0.6':
resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
@@ -5535,20 +5400,20 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1'
- '@tanstack/query-core@5.69.0':
- resolution: {integrity: sha512-Kn410jq6vs1P8Nm+ZsRj9H+U3C0kjuEkYLxbiCyn3MDEiYor1j2DGVULqAz62SLZtUZ/e9Xt6xMXiJ3NJ65WyQ==}
+ '@tanstack/query-core@5.83.0':
+ resolution: {integrity: sha512-0M8dA+amXUkyz5cVUm/B+zSk3xkQAcuXuz5/Q/LveT4ots2rBpPTZOzd7yJa2Utsf8D2Upl5KyjhHRY+9lB/XA==}
- '@tanstack/query-devtools@5.67.2':
- resolution: {integrity: sha512-O4QXFFd7xqp6EX7sdvc9tsVO8nm4lpWBqwpgjpVLW5g7IeOY6VnS/xvs/YzbRhBVkKTMaJMOUGU7NhSX+YGoNg==}
+ '@tanstack/query-devtools@5.81.2':
+ resolution: {integrity: sha512-jCeJcDCwKfoyyBXjXe9+Lo8aTkavygHHsUHAlxQKKaDeyT0qyQNLKl7+UyqYH2dDF6UN/14873IPBHchcsU+Zg==}
- '@tanstack/react-query-devtools@5.69.0':
- resolution: {integrity: sha512-sYklnou3IKAemqB5wJeBwjmG5bUGDKAL5/I4pVA+aqSnsNibVLt8/pAU976uuJ5K71w71bHtI/AMxiIs3gtkEA==}
+ '@tanstack/react-query-devtools@5.83.0':
+ resolution: {integrity: sha512-yfp8Uqd3I1jgx8gl0lxbSSESu5y4MO2ThOPBnGNTYs0P+ZFu+E9g5IdOngyUGuo6Uz6Qa7p9TLdZEX3ntik2fQ==}
peerDependencies:
- '@tanstack/react-query': ^5.69.0
+ '@tanstack/react-query': ^5.83.0
react: ^18 || ^19
- '@tanstack/react-query@5.69.0':
- resolution: {integrity: sha512-Ift3IUNQqTcaFa1AiIQ7WCb/PPy8aexZdq9pZWLXhfLcLxH0+PZqJ2xFImxCpdDZrFRZhLJrh76geevS5xjRhA==}
+ '@tanstack/react-query@5.83.0':
+ resolution: {integrity: sha512-/XGYhZ3foc5H0VM2jLSD/NyBRIOK4q9kfeml4+0x2DlL6xVuAcVEW+hTlTapAmejObg0i3eNqhkr2dT+eciwoQ==}
peerDependencies:
react: ^18 || ^19
@@ -5613,6 +5478,9 @@ packages:
'@types/cacheable-request@6.0.3':
resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
+ '@types/chai@5.2.2':
+ resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+
'@types/chrome@0.0.260':
resolution: {integrity: sha512-lX6QpgfsZRTDpNcCJ+3vzfFnFXq9bScFRTlfhbK5oecSAjamsno+ejFTCbNtc5O/TPnVK9Tja/PyecvWQe0F2w==}
@@ -5632,6 +5500,9 @@ packages:
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+ '@types/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
+
'@types/deep-equal@1.0.4':
resolution: {integrity: sha512-tqdiS4otQP4KmY0PR3u6KbZ5EWvhNdUoS/jc93UuK23C220lOZ/9TvjfxdPcKvqwwDVtmtSCrnr0p/2dirAxkA==}
@@ -5900,31 +5771,45 @@ packages:
peerDependencies:
'@urql/core': ^5.0.0
- '@vitejs/plugin-react-swc@3.6.0':
- resolution: {integrity: sha512-XFRbsGgpGxGzEV5i5+vRiro1bwcIaZDIdBRP16qwm+jP68ue/S8FJTBEgOeojtVDYrbSua3XFp71kC8VJE6v+g==}
+ '@vitejs/plugin-react-swc@3.11.0':
+ resolution: {integrity: sha512-YTJCGFdNMHCMfjODYtxRNVAYmTWQ1Lb8PulP/2/f/oEEtglw8oKxKIZmmRkyXrVrHfsKOaVkAc3NT9/dMutO5w==}
peerDependencies:
- vite: ^4 || ^5
+ vite: ^4 || ^5 || ^6 || ^7
- '@vitejs/plugin-react@4.5.1':
- resolution: {integrity: sha512-uPZBqSI0YD4lpkIru6M35sIfylLGTyhGHvDZbNLuMA73lMlwJKz5xweH7FajfcCAc2HnINciejA9qTz0dr0M7A==}
+ '@vitejs/plugin-react@4.7.0':
+ resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- '@vitest/expect@1.6.1':
- resolution: {integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==}
+ '@vitest/expect@3.2.4':
+ resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
- '@vitest/runner@1.6.1':
- resolution: {integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==}
+ '@vitest/mocker@3.2.4':
+ resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
+ peerDependencies:
+ msw: ^2.4.9
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
+
+ '@vitest/pretty-format@3.2.4':
+ resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
+
+ '@vitest/runner@3.2.4':
+ resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==}
- '@vitest/snapshot@1.6.1':
- resolution: {integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==}
+ '@vitest/snapshot@3.2.4':
+ resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==}
- '@vitest/spy@1.6.1':
- resolution: {integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==}
+ '@vitest/spy@3.2.4':
+ resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
- '@vitest/utils@1.6.1':
- resolution: {integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==}
+ '@vitest/utils@3.2.4':
+ resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
'@volar/language-core@2.4.14':
resolution: {integrity: sha512-X6beusV0DvuVseaOEy7GoagS4rYHgDHnTrdOj5jeUb49fW5ceQyP9Ej5rBhqgz2wJggl+2fDbbojq1XKaxDi6w==}
@@ -6243,8 +6128,9 @@ packages:
asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- assertion-error@1.1.0:
- resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+ assertion-error@2.0.1:
+ resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
+ engines: {node: '>=12'}
ast-kit@2.1.1:
resolution: {integrity: sha512-mfh6a7gKXE8pDlxTvqIc/syH/P3RkzbOF6LeHdcKztLEzYe6IMsRCL7N8vI7hqTGWNxpkCuuRTpT21xNWqhRtQ==}
@@ -6632,9 +6518,9 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@4.5.0:
- resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
- engines: {node: '>=4'}
+ chai@5.2.1:
+ resolution: {integrity: sha512-5nFxhUrX0PqtyogoYOA8IPswy5sZFTOsBFl/9bNsmDLgsxYTzSZQJDPppDnZPTQbzSEm0hqGjWPzRemQCYbD6A==}
+ engines: {node: '>=18'}
chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
@@ -6683,8 +6569,9 @@ packages:
resolution: {integrity: sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==}
engines: {node: '>=4.0.0'}
- check-error@1.0.3:
- resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ check-error@2.1.1:
+ resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
+ engines: {node: '>= 16'}
cheerio-select@2.1.0:
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
@@ -7242,8 +7129,8 @@ packages:
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
- date-fns@4.1.0:
- resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
+ date-fns@3.6.0:
+ resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
dayjs@1.11.10:
resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
@@ -7301,8 +7188,8 @@ packages:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
- deep-eql@4.1.4:
- resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
+ deep-eql@5.0.2:
+ resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
deep-equal@2.2.3:
@@ -7416,10 +7303,6 @@ packages:
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- diff-sequences@29.6.3:
- resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
diff@5.2.0:
resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
engines: {node: '>=0.3.1'}
@@ -7871,11 +7754,6 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.19.12:
- resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.25.6:
resolution: {integrity: sha512-GVuzuUwtdsghE3ocJ9Bs8PNoF13HNQ5TXbEi2AhvVb8xU1Iwt9Fos9FEamfoee+u/TOsn7GUWc04lz46n2bbTg==}
engines: {node: '>=18'}
@@ -8042,10 +7920,6 @@ packages:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
- execa@8.0.1:
- resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
- engines: {node: '>=16.17'}
-
execa@9.3.1:
resolution: {integrity: sha512-gdhefCCNy/8tpH/2+ajP9IQc14vXchNdd0weyzSJEFURhRMGncQ+zKFxwjAufIewPEJm9BPOaJnvg2UtlH2gPQ==}
engines: {node: ^18.19.0 || >=20.5.0}
@@ -8057,6 +7931,10 @@ packages:
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
engines: {node: '>=6'}
+ expect-type@1.2.2:
+ resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==}
+ engines: {node: '>=12.0.0'}
+
expo-asset@11.0.5:
resolution: {integrity: sha512-TL60LmMBGVzs3NQcO8ylWqBumMh4sx0lmeJsn7+9C88fylGDhyyVnKZ1PyTXo9CVDBkndutZx2JUEQWM9BaiXw==}
peerDependencies:
@@ -8348,8 +8226,8 @@ packages:
fbjs@3.0.5:
resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==}
- fdir@6.4.5:
- resolution: {integrity: sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==}
+ fdir@6.4.6:
+ resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -8650,9 +8528,6 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-func-name@2.0.2:
- resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
-
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
@@ -8684,10 +8559,6 @@ packages:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- get-stream@8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
-
get-stream@9.0.1:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
@@ -9060,10 +8931,6 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- human-signals@5.0.0:
- resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
- engines: {node: '>=16.17.0'}
-
human-signals@8.0.1:
resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==}
engines: {node: '>=18.18.0'}
@@ -9446,10 +9313,6 @@ packages:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- is-stream@3.0.0:
- resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
is-stream@4.0.1:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
@@ -9966,10 +9829,6 @@ packages:
resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
engines: {node: '>= 12.13.0'}
- local-pkg@0.5.1:
- resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
- engines: {node: '>=14'}
-
local-pkg@1.1.1:
resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
engines: {node: '>=14'}
@@ -10035,8 +9894,8 @@ packages:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@2.3.7:
- resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ loupe@3.2.0:
+ resolution: {integrity: sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==}
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -10660,10 +10519,6 @@ packages:
resolution: {integrity: sha512-PiVO95TKvhiwgSwg1IdLYlCTdul38yZxZMIcnDSFIBUm4BNZha2qpQ4GpJ++15bHoKDtrW2D69lMfFwdFYtNZQ==}
engines: {node: '>=8'}
- mimic-fn@4.0.0:
- resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
- engines: {node: '>=12'}
-
mimic-response@1.0.1:
resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
engines: {node: '>=4'}
@@ -11138,10 +10993,6 @@ packages:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
-
open@7.4.2:
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
engines: {node: '>=8'}
@@ -11234,10 +11085,6 @@ packages:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- p-limit@5.0.0:
- resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
- engines: {node: '>=18'}
-
p-locate@3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
engines: {node: '>=6'}
@@ -11419,14 +11266,12 @@ packages:
path@0.12.7:
resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==}
- pathe@1.1.2:
- resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
-
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- pathval@1.1.1:
- resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+ pathval@2.0.1:
+ resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
+ engines: {node: '>= 14.16'}
pdf2json@3.1.5:
resolution: {integrity: sha512-djZPInDLNuJU+o6GaJNvcoUh6MtUAx3IYTQCTxywHzeg1jC5YWgz/XzlgmduxxBblpMTqY2fjcWwvyRdGPTyrQ==}
@@ -11461,6 +11306,10 @@ packages:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
+ picomatch@4.0.3:
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
+ engines: {node: '>=12'}
+
pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
@@ -11978,6 +11827,10 @@ packages:
resolution: {integrity: sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
+ engines: {node: ^10 || ^12 || >=14}
+
postman-code-generators@1.14.2:
resolution: {integrity: sha512-qZAyyowfQAFE4MSCu2KtMGGQE/+oG1JhMZMJNMdZHYCSfQiVVeKxgk3oI4+KJ3d1y5rrm2D6C6x+Z+7iyqm+fA==}
engines: {node: '>=12'}
@@ -13540,10 +13393,6 @@ packages:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
- engines: {node: '>=12'}
-
strip-final-newline@4.0.0:
resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
engines: {node: '>=18'}
@@ -13556,8 +13405,8 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strip-literal@2.1.1:
- resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
+ strip-literal@3.0.0:
+ resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
stripe@18.3.0:
resolution: {integrity: sha512-FkxrTUUcWB4CVN2yzgsfF/YHD6WgYHduaa7VmokCy5TLCgl5UNJkwortxcedrxSavQ8Qfa4Ir4JxcbIYiBsyLg==}
@@ -13779,6 +13628,9 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+ tinyexec@0.3.2:
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+
tinyexec@1.0.1:
resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
@@ -13786,12 +13638,16 @@ packages:
resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
engines: {node: '>=12.0.0'}
- tinypool@0.8.4:
- resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
+ tinypool@1.1.1:
+ resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+
+ tinyrainbow@2.0.0:
+ resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@2.2.1:
- resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
+ tinyspy@4.0.3:
+ resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
engines: {node: '>=14.0.0'}
tlds@1.259.0:
@@ -13896,8 +13752,8 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsx@4.7.1:
- resolution: {integrity: sha512-8d6VuibXHtlN5E3zFkgY8u4DX7Y3Z27zvvPKVmLon/D4AjuKzarkUBTLDBgj9iTQ0hg5xM7c/mYiRVM+HETf0g==}
+ tsx@4.20.3:
+ resolution: {integrity: sha512-qjbnuR9Tr+FJOMBqJCW5ehvIo/buZq7vH7qD7JziU98h6l3qGy0a/yPFjwO+y0/T7GFpNgNAvEcPPVfyT8rrPQ==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -13949,10 +13805,6 @@ packages:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
- type-detect@4.1.0:
- resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
- engines: {node: '>=4'}
-
type-fest@0.16.0:
resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
engines: {node: '>=10'}
@@ -14336,9 +14188,9 @@ packages:
resolution: {integrity: sha512-TriMl18BHEsh2KuuSA065tbu4SNAC9fge7k8uKoTTofTq89+Xsg4K1BGbmSVETwUZhqSjd9KwRCNwXAW/buXMg==}
engines: {node: '>=0.10.0'}
- vite-node@1.6.1:
- resolution: {integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vite-node@3.2.4:
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
vite-plugin-dts@4.5.4:
@@ -14363,48 +14215,63 @@ packages:
vite:
optional: true
- vite@5.1.4:
- resolution: {integrity: sha512-n+MPqzq+d9nMVTKyewqw6kSt+R3CkvF9QAKY8obiQn8g1fwTscKxyfaYnC632HtBXAQGc1Yjomphwn1dtwGAHg==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vite@7.0.6:
+ resolution: {integrity: sha512-MHFiOENNBd+Bd9uvc8GEsIzdkn1JxMmEeYX35tI3fv0sJBUTfW5tQsoaOwuY4KhBI09A3dUJ/DXf2yxPVPUceg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
+ '@types/node': ^20.19.0 || >=22.12.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
peerDependenciesMeta:
'@types/node':
optional: true
+ jiti:
+ optional: true
less:
optional: true
lightningcss:
optional: true
sass:
optional: true
+ sass-embedded:
+ optional: true
stylus:
optional: true
sugarss:
optional: true
terser:
optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
- vitest@1.6.1:
- resolution: {integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vitest@3.2.4:
+ resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
- '@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.6.1
- '@vitest/ui': 1.6.1
+ '@types/debug': ^4.1.12
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ '@vitest/browser': 3.2.4
+ '@vitest/ui': 3.2.4
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
'@edge-runtime/vm':
optional: true
+ '@types/debug':
+ optional: true
'@types/node':
optional: true
'@vitest/browser':
@@ -15550,18 +15417,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.27.4':
+ '@babel/core@7.28.0':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.27.1
- '@babel/generator': 7.27.5
+ '@babel/generator': 7.28.0
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
'@babel/helpers': 7.27.6
- '@babel/parser': 7.27.5
+ '@babel/parser': 7.28.0
'@babel/template': 7.27.2
- '@babel/traverse': 7.27.4
- '@babel/types': 7.27.6
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
convert-source-map: 2.0.0
debug: 4.4.1(supports-color@10.0.0)
gensync: 1.0.0-beta.2
@@ -15611,13 +15478,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.4)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
'@babel/traverse': 7.27.4
semver: 6.3.1
@@ -15631,9 +15498,9 @@ snapshots:
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.4)':
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 6.2.0
semver: 6.3.1
@@ -15649,9 +15516,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.27.4)':
+ '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
debug: 4.4.1(supports-color@10.0.0)
@@ -15664,8 +15531,8 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.27.4
- '@babel/types': 7.27.6
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
@@ -15685,9 +15552,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.4)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-module-imports': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
'@babel/traverse': 7.27.4
@@ -15696,7 +15563,7 @@ snapshots:
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.27.6
+ '@babel/types': 7.28.1
'@babel/helper-plugin-utils@7.27.1': {}
@@ -15709,9 +15576,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.4)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-wrap-function': 7.27.1
'@babel/traverse': 7.27.4
@@ -15727,9 +15594,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.4)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
'@babel/traverse': 7.27.4
@@ -15752,7 +15619,7 @@ snapshots:
'@babel/helper-wrap-function@7.27.1':
dependencies:
'@babel/template': 7.27.2
- '@babel/traverse': 7.27.4
+ '@babel/traverse': 7.28.0
'@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
@@ -15785,9 +15652,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/traverse': 7.27.4
transitivePeerDependencies:
@@ -15798,9 +15665,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.26.0)':
@@ -15808,9 +15675,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.26.0)':
@@ -15822,12 +15689,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0)
transitivePeerDependencies:
- supports-color
@@ -15839,9 +15706,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/traverse': 7.27.4
transitivePeerDependencies:
@@ -15869,9 +15736,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-proposal-export-default-from@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.0)':
@@ -15893,18 +15760,18 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.4)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)':
@@ -15912,9 +15779,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
@@ -15922,9 +15789,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
@@ -15932,9 +15799,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.26.0)':
@@ -15947,9 +15814,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.26.0)':
@@ -15957,9 +15824,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-export-default-from@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-flow@7.27.1(@babel/core@7.26.0)':
@@ -15967,9 +15834,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.26.0)':
@@ -15977,9 +15844,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.26.0)':
@@ -15987,9 +15854,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
@@ -15997,9 +15864,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
@@ -16007,9 +15874,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.26.0)':
@@ -16017,9 +15884,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
@@ -16027,9 +15894,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
@@ -16037,9 +15904,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
@@ -16047,9 +15914,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
@@ -16057,9 +15924,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
@@ -16067,9 +15934,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
@@ -16077,9 +15944,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
@@ -16087,9 +15954,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
@@ -16097,9 +15964,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.26.0)':
@@ -16107,9 +15974,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
@@ -16118,10 +15985,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.4)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.26.0)':
@@ -16129,9 +15996,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.26.0)':
@@ -16143,11 +16010,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0)
'@babel/traverse': 7.27.4
transitivePeerDependencies:
- supports-color
@@ -16161,12 +16028,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0)
transitivePeerDependencies:
- supports-color
@@ -16175,9 +16042,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-block-scoping@7.27.5(@babel/core@7.26.0)':
@@ -16185,9 +16052,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.27.5(@babel/core@7.27.4)':
+ '@babel/plugin-transform-block-scoping@7.27.5(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.26.0)':
@@ -16198,10 +16065,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -16214,10 +16081,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -16234,13 +16101,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-classes@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0)
'@babel/traverse': 7.27.4
globals: 11.12.0
transitivePeerDependencies:
@@ -16252,9 +16119,9 @@ snapshots:
'@babel/helper-plugin-utils': 7.27.1
'@babel/template': 7.27.2
- '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/template': 7.27.2
@@ -16263,9 +16130,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.27.4)':
+ '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.26.0)':
@@ -16274,10 +16141,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.26.0)':
@@ -16285,9 +16152,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.26.0)':
@@ -16296,10 +16163,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.26.0)':
@@ -16307,9 +16174,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.26.0)':
@@ -16317,9 +16184,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.0)':
@@ -16327,9 +16194,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.26.0)':
@@ -16338,11 +16205,11 @@ snapshots:
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.26.0)
- '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.0)
'@babel/plugin-transform-for-of@7.27.1(@babel/core@7.26.0)':
dependencies:
@@ -16352,9 +16219,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
@@ -16369,9 +16236,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
'@babel/traverse': 7.27.4
@@ -16383,9 +16250,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-literals@7.27.1(@babel/core@7.26.0)':
@@ -16393,9 +16260,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.26.0)':
@@ -16403,9 +16270,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.26.0)':
@@ -16413,9 +16280,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.26.0)':
@@ -16426,10 +16293,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -16442,10 +16309,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -16460,10 +16327,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
'@babel/traverse': 7.27.4
@@ -16478,10 +16345,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -16492,10 +16359,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-new-target@7.27.1(@babel/core@7.26.0)':
@@ -16503,9 +16370,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.26.0)':
@@ -16513,9 +16380,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.26.0)':
@@ -16523,9 +16390,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.26.0)':
@@ -16536,13 +16403,13 @@ snapshots:
'@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.26.0)
'@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.27.4)':
+ '@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.4)
- '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.28.0)
+ '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.28.0)
'@babel/plugin-transform-object-super@7.27.1(@babel/core@7.26.0)':
dependencies:
@@ -16552,11 +16419,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0)
transitivePeerDependencies:
- supports-color
@@ -16565,9 +16432,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.26.0)':
@@ -16578,9 +16445,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
@@ -16591,9 +16458,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.26.0)':
@@ -16604,10 +16471,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -16621,11 +16488,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -16635,9 +16502,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.26.0)':
@@ -16650,9 +16517,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-display-name@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-react-display-name@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.26.0)':
@@ -16667,9 +16534,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.26.0)':
@@ -16677,9 +16544,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.26.0)':
@@ -16693,13 +16560,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0)
'@babel/types': 7.27.6
transitivePeerDependencies:
- supports-color
@@ -16715,9 +16582,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.27.5(@babel/core@7.27.4)':
+ '@babel/plugin-transform-regenerator@7.27.5(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.26.0)':
@@ -16726,10 +16593,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.26.0)':
@@ -16737,9 +16604,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-runtime@7.27.4(@babel/core@7.26.0)':
@@ -16754,14 +16621,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-runtime@7.27.4(@babel/core@7.27.4)':
+ '@babel/plugin-transform-runtime@7.27.4(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
- babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.4)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.4)
- babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.4)
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.28.0)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.28.0)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.28.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -16771,9 +16638,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-spread@7.27.1(@babel/core@7.26.0)':
@@ -16784,9 +16651,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
@@ -16797,9 +16664,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.26.0)':
@@ -16807,9 +16674,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.26.0)':
@@ -16817,9 +16684,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-typescript@7.27.1(@babel/core@7.26.0)':
@@ -16833,14 +16700,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.0)
transitivePeerDependencies:
- supports-color
@@ -16849,9 +16716,9 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.26.0)':
@@ -16860,10 +16727,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.26.0)':
@@ -16872,10 +16739,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.26.0)':
@@ -16884,10 +16751,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.27.4)':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/preset-env@7.27.2(@babel/core@7.26.0)':
@@ -16965,76 +16832,76 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.27.2(@babel/core@7.27.4)':
+ '@babel/preset-env@7.27.2(@babel/core@7.28.0)':
dependencies:
'@babel/compat-data': 7.27.5
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.4)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.27.4)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-block-scoping': 7.27.5(@babel/core@7.27.4)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.4)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.27.4)
- '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-regenerator': 7.27.5(@babel/core@7.27.4)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.27.4)
- babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.4)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.4)
- babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.4)
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.0)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.0)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-block-scoping': 7.27.5(@babel/core@7.28.0)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.28.0)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.28.0)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-regenerator': 7.27.5(@babel/core@7.28.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.0)
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.28.0)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.28.0)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.28.0)
core-js-compat: 3.42.0
semver: 6.3.1
transitivePeerDependencies:
@@ -17054,9 +16921,9 @@ snapshots:
'@babel/types': 7.27.6
esutils: 2.0.3
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.27.4)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/types': 7.27.6
esutils: 2.0.3
@@ -17084,14 +16951,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.27.1(@babel/core@7.27.4)':
+ '@babel/preset-typescript@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.28.0)
transitivePeerDependencies:
- supports-color
@@ -18339,153 +18206,102 @@ snapshots:
'@esbuild-kit/core-utils': 3.3.2
get-tsconfig: 4.10.1
- '@esbuild/aix-ppc64@0.19.12':
- optional: true
-
'@esbuild/aix-ppc64@0.25.6':
optional: true
'@esbuild/android-arm64@0.18.20':
optional: true
- '@esbuild/android-arm64@0.19.12':
- optional: true
-
'@esbuild/android-arm64@0.25.6':
optional: true
'@esbuild/android-arm@0.18.20':
optional: true
- '@esbuild/android-arm@0.19.12':
- optional: true
-
'@esbuild/android-arm@0.25.6':
optional: true
'@esbuild/android-x64@0.18.20':
optional: true
- '@esbuild/android-x64@0.19.12':
- optional: true
-
'@esbuild/android-x64@0.25.6':
optional: true
'@esbuild/darwin-arm64@0.18.20':
optional: true
- '@esbuild/darwin-arm64@0.19.12':
- optional: true
-
'@esbuild/darwin-arm64@0.25.6':
optional: true
'@esbuild/darwin-x64@0.18.20':
optional: true
- '@esbuild/darwin-x64@0.19.12':
- optional: true
-
'@esbuild/darwin-x64@0.25.6':
optional: true
'@esbuild/freebsd-arm64@0.18.20':
optional: true
- '@esbuild/freebsd-arm64@0.19.12':
- optional: true
-
'@esbuild/freebsd-arm64@0.25.6':
optional: true
'@esbuild/freebsd-x64@0.18.20':
optional: true
- '@esbuild/freebsd-x64@0.19.12':
- optional: true
-
'@esbuild/freebsd-x64@0.25.6':
optional: true
'@esbuild/linux-arm64@0.18.20':
optional: true
- '@esbuild/linux-arm64@0.19.12':
- optional: true
-
'@esbuild/linux-arm64@0.25.6':
optional: true
'@esbuild/linux-arm@0.18.20':
optional: true
- '@esbuild/linux-arm@0.19.12':
- optional: true
-
'@esbuild/linux-arm@0.25.6':
optional: true
'@esbuild/linux-ia32@0.18.20':
optional: true
- '@esbuild/linux-ia32@0.19.12':
- optional: true
-
'@esbuild/linux-ia32@0.25.6':
optional: true
'@esbuild/linux-loong64@0.18.20':
optional: true
- '@esbuild/linux-loong64@0.19.12':
- optional: true
-
'@esbuild/linux-loong64@0.25.6':
optional: true
'@esbuild/linux-mips64el@0.18.20':
optional: true
- '@esbuild/linux-mips64el@0.19.12':
- optional: true
-
'@esbuild/linux-mips64el@0.25.6':
optional: true
'@esbuild/linux-ppc64@0.18.20':
optional: true
- '@esbuild/linux-ppc64@0.19.12':
- optional: true
-
'@esbuild/linux-ppc64@0.25.6':
optional: true
'@esbuild/linux-riscv64@0.18.20':
optional: true
- '@esbuild/linux-riscv64@0.19.12':
- optional: true
-
'@esbuild/linux-riscv64@0.25.6':
optional: true
'@esbuild/linux-s390x@0.18.20':
optional: true
- '@esbuild/linux-s390x@0.19.12':
- optional: true
-
'@esbuild/linux-s390x@0.25.6':
optional: true
'@esbuild/linux-x64@0.18.20':
optional: true
- '@esbuild/linux-x64@0.19.12':
- optional: true
-
'@esbuild/linux-x64@0.25.6':
optional: true
@@ -18495,9 +18311,6 @@ snapshots:
'@esbuild/netbsd-x64@0.18.20':
optional: true
- '@esbuild/netbsd-x64@0.19.12':
- optional: true
-
'@esbuild/netbsd-x64@0.25.6':
optional: true
@@ -18507,9 +18320,6 @@ snapshots:
'@esbuild/openbsd-x64@0.18.20':
optional: true
- '@esbuild/openbsd-x64@0.19.12':
- optional: true
-
'@esbuild/openbsd-x64@0.25.6':
optional: true
@@ -18519,36 +18329,24 @@ snapshots:
'@esbuild/sunos-x64@0.18.20':
optional: true
- '@esbuild/sunos-x64@0.19.12':
- optional: true
-
'@esbuild/sunos-x64@0.25.6':
optional: true
'@esbuild/win32-arm64@0.18.20':
optional: true
- '@esbuild/win32-arm64@0.19.12':
- optional: true
-
'@esbuild/win32-arm64@0.25.6':
optional: true
'@esbuild/win32-ia32@0.18.20':
optional: true
- '@esbuild/win32-ia32@0.19.12':
- optional: true
-
'@esbuild/win32-ia32@0.25.6':
optional: true
'@esbuild/win32-x64@0.18.20':
optional: true
- '@esbuild/win32-x64@0.19.12':
- optional: true
-
'@esbuild/win32-x64@0.25.6':
optional: true
@@ -20301,9 +20099,9 @@ snapshots:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-plugin-codegen@0.76.9(@babel/preset-env@7.27.2(@babel/core@7.27.4))':
+ '@react-native/babel-plugin-codegen@0.76.9(@babel/preset-env@7.27.2(@babel/core@7.28.0))':
dependencies:
- '@react-native/codegen': 0.76.9(@babel/preset-env@7.27.2(@babel/core@7.27.4))
+ '@react-native/codegen': 0.76.9(@babel/preset-env@7.27.2(@babel/core@7.28.0))
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
@@ -20359,52 +20157,52 @@ snapshots:
- '@babel/preset-env'
- supports-color
- '@react-native/babel-preset@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))':
- dependencies:
- '@babel/core': 7.27.4
- '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-block-scoping': 7.27.5(@babel/core@7.27.4)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.4)
- '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.27.4)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-react-display-name': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-regenerator': 7.27.5(@babel/core@7.27.4)
- '@babel/plugin-transform-runtime': 7.27.4(@babel/core@7.27.4)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.4)
+ '@react-native/babel-preset@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-syntax-export-default-from': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-block-scoping': 7.27.5(@babel/core@7.28.0)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.28.0)
+ '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.28.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-display-name': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-regenerator': 7.27.5(@babel/core@7.28.0)
+ '@babel/plugin-transform-runtime': 7.27.4(@babel/core@7.28.0)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.0)
'@babel/template': 7.27.2
- '@react-native/babel-plugin-codegen': 0.76.9(@babel/preset-env@7.27.2(@babel/core@7.27.4))
+ '@react-native/babel-plugin-codegen': 0.76.9(@babel/preset-env@7.27.2(@babel/core@7.28.0))
babel-plugin-syntax-hermes-parser: 0.25.1
- babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.27.4)
+ babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.28.0)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
@@ -20424,14 +20222,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@react-native/codegen@0.76.9(@babel/preset-env@7.27.2(@babel/core@7.27.4))':
+ '@react-native/codegen@0.76.9(@babel/preset-env@7.27.2(@babel/core@7.28.0))':
dependencies:
'@babel/parser': 7.27.5
- '@babel/preset-env': 7.27.2(@babel/core@7.27.4)
+ '@babel/preset-env': 7.27.2(@babel/core@7.28.0)
glob: 7.2.3
hermes-parser: 0.23.1
invariant: 2.2.4
- jscodeshift: 0.14.0(@babel/preset-env@7.27.2(@babel/core@7.27.4))
+ jscodeshift: 0.14.0(@babel/preset-env@7.27.2(@babel/core@7.28.0))
mkdirp: 0.5.6
nullthrows: 1.1.1
yargs: 17.7.2
@@ -20459,10 +20257,10 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/community-cli-plugin@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(encoding@0.1.13)':
+ '@react-native/community-cli-plugin@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(encoding@0.1.13)':
dependencies:
'@react-native/dev-middleware': 0.76.9
- '@react-native/metro-babel-transformer': 0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))
+ '@react-native/metro-babel-transformer': 0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))
chalk: 4.1.2
execa: 5.1.1
invariant: 2.2.4
@@ -20515,10 +20313,10 @@ snapshots:
- '@babel/preset-env'
- supports-color
- '@react-native/metro-babel-transformer@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))':
+ '@react-native/metro-babel-transformer@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))':
dependencies:
- '@babel/core': 7.27.4
- '@react-native/babel-preset': 0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))
+ '@babel/core': 7.28.0
+ '@react-native/babel-preset': 0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))
hermes-parser: 0.23.1
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -20540,12 +20338,12 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.12
- '@react-native/virtualized-lists@0.76.9(@types/react@18.3.12)(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.76.9(@types/react@18.3.12)(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.3.1
- react-native: 0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
+ react-native: 0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.12
@@ -20702,9 +20500,9 @@ snapshots:
'@rolldown/binding-win32-x64-msvc@1.0.0-beta.28':
optional: true
- '@rolldown/pluginutils@1.0.0-beta.28': {}
+ '@rolldown/pluginutils@1.0.0-beta.27': {}
- '@rolldown/pluginutils@1.0.0-beta.9': {}
+ '@rolldown/pluginutils@1.0.0-beta.28': {}
'@rollup/plugin-babel@5.3.1(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@2.79.2)':
dependencies:
@@ -21332,51 +21130,51 @@ snapshots:
- supports-color
- typescript
- '@swc/core-darwin-arm64@1.11.31':
+ '@swc/core-darwin-arm64@1.13.2':
optional: true
- '@swc/core-darwin-x64@1.11.31':
+ '@swc/core-darwin-x64@1.13.2':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.11.31':
+ '@swc/core-linux-arm-gnueabihf@1.13.2':
optional: true
- '@swc/core-linux-arm64-gnu@1.11.31':
+ '@swc/core-linux-arm64-gnu@1.13.2':
optional: true
- '@swc/core-linux-arm64-musl@1.11.31':
+ '@swc/core-linux-arm64-musl@1.13.2':
optional: true
- '@swc/core-linux-x64-gnu@1.11.31':
+ '@swc/core-linux-x64-gnu@1.13.2':
optional: true
- '@swc/core-linux-x64-musl@1.11.31':
+ '@swc/core-linux-x64-musl@1.13.2':
optional: true
- '@swc/core-win32-arm64-msvc@1.11.31':
+ '@swc/core-win32-arm64-msvc@1.13.2':
optional: true
- '@swc/core-win32-ia32-msvc@1.11.31':
+ '@swc/core-win32-ia32-msvc@1.13.2':
optional: true
- '@swc/core-win32-x64-msvc@1.11.31':
+ '@swc/core-win32-x64-msvc@1.13.2':
optional: true
- '@swc/core@1.11.31':
+ '@swc/core@1.13.2':
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.22
+ '@swc/types': 0.1.23
optionalDependencies:
- '@swc/core-darwin-arm64': 1.11.31
- '@swc/core-darwin-x64': 1.11.31
- '@swc/core-linux-arm-gnueabihf': 1.11.31
- '@swc/core-linux-arm64-gnu': 1.11.31
- '@swc/core-linux-arm64-musl': 1.11.31
- '@swc/core-linux-x64-gnu': 1.11.31
- '@swc/core-linux-x64-musl': 1.11.31
- '@swc/core-win32-arm64-msvc': 1.11.31
- '@swc/core-win32-ia32-msvc': 1.11.31
- '@swc/core-win32-x64-msvc': 1.11.31
+ '@swc/core-darwin-arm64': 1.13.2
+ '@swc/core-darwin-x64': 1.13.2
+ '@swc/core-linux-arm-gnueabihf': 1.13.2
+ '@swc/core-linux-arm64-gnu': 1.13.2
+ '@swc/core-linux-arm64-musl': 1.13.2
+ '@swc/core-linux-x64-gnu': 1.13.2
+ '@swc/core-linux-x64-musl': 1.13.2
+ '@swc/core-win32-arm64-msvc': 1.13.2
+ '@swc/core-win32-ia32-msvc': 1.13.2
+ '@swc/core-win32-x64-msvc': 1.13.2
'@swc/counter@0.1.3': {}
@@ -21385,7 +21183,7 @@ snapshots:
'@swc/counter': 0.1.3
tslib: 2.8.1
- '@swc/types@0.1.22':
+ '@swc/types@0.1.23':
dependencies:
'@swc/counter': 0.1.3
@@ -21405,19 +21203,19 @@ snapshots:
postcss-selector-parser: 6.0.10
tailwindcss: 3.4.1
- '@tanstack/query-core@5.69.0': {}
+ '@tanstack/query-core@5.83.0': {}
- '@tanstack/query-devtools@5.67.2': {}
+ '@tanstack/query-devtools@5.81.2': {}
- '@tanstack/react-query-devtools@5.69.0(@tanstack/react-query@5.69.0(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-query-devtools@5.83.0(@tanstack/react-query@5.83.0(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tanstack/query-devtools': 5.67.2
- '@tanstack/react-query': 5.69.0(react@18.3.1)
+ '@tanstack/query-devtools': 5.81.2
+ '@tanstack/react-query': 5.83.0(react@18.3.1)
react: 18.3.1
- '@tanstack/react-query@5.69.0(react@18.3.1)':
+ '@tanstack/react-query@5.83.0(react@18.3.1)':
dependencies:
- '@tanstack/query-core': 5.69.0
+ '@tanstack/query-core': 5.83.0
react: 18.3.1
'@trpc/client@11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3)':
@@ -21425,9 +21223,9 @@ snapshots:
'@trpc/server': 11.4.3(typescript@5.8.3)
typescript: 5.8.3
- '@trpc/react-query@11.4.3(@tanstack/react-query@5.69.0(react@18.3.1))(@trpc/client@11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.4.3(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)':
+ '@trpc/react-query@11.4.3(@tanstack/react-query@5.83.0(react@18.3.1))(@trpc/client@11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.4.3(typescript@5.8.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)':
dependencies:
- '@tanstack/react-query': 5.69.0(react@18.3.1)
+ '@tanstack/react-query': 5.83.0(react@18.3.1)
'@trpc/client': 11.4.3(@trpc/server@11.4.3(typescript@5.8.3))(typescript@5.8.3)
'@trpc/server': 11.4.3(typescript@5.8.3)
react: 18.3.1
@@ -21451,24 +21249,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.27.5
- '@babel/types': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.1
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.7
'@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.27.6
+ '@babel/types': 7.28.1
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.27.5
- '@babel/types': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.1
'@types/babel__traverse@7.20.7':
dependencies:
- '@babel/types': 7.27.6
+ '@babel/types': 7.28.1
'@types/bcryptjs@2.4.6': {}
@@ -21492,6 +21290,10 @@ snapshots:
'@types/node': 22.15.30
'@types/responselike': 1.0.3
+ '@types/chai@5.2.2':
+ dependencies:
+ '@types/deep-eql': 4.0.2
+
'@types/chrome@0.0.260':
dependencies:
'@types/filesystem': 0.0.36
@@ -21516,6 +21318,8 @@ snapshots:
dependencies:
'@types/ms': 2.1.0
+ '@types/deep-eql@4.0.2': {}
+
'@types/deep-equal@1.0.4': {}
'@types/emoji-mart@3.0.14':
@@ -21693,7 +21497,7 @@ snapshots:
'@types/react-redux@7.1.34':
dependencies:
'@types/hoist-non-react-statics': 3.3.6
- '@types/react': 19.1.8
+ '@types/react': 18.3.12
hoist-non-react-statics: 3.3.2
redux: 4.2.1
@@ -21815,53 +21619,67 @@ snapshots:
'@urql/core': 5.1.1
wonka: 6.3.5
- '@vitejs/plugin-react-swc@3.6.0(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))':
+ '@vitejs/plugin-react-swc@3.11.0(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))':
dependencies:
- '@swc/core': 1.11.31
- vite: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ '@rolldown/pluginutils': 1.0.0-beta.27
+ '@swc/core': 1.13.2
+ vite: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
transitivePeerDependencies:
- '@swc/helpers'
- '@vitejs/plugin-react@4.5.1(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0))':
+ '@vitejs/plugin-react@4.7.0(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))':
dependencies:
- '@babel/core': 7.27.4
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.4)
- '@rolldown/pluginutils': 1.0.0-beta.9
+ '@babel/core': 7.28.0
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.0)
+ '@rolldown/pluginutils': 1.0.0-beta.27
'@types/babel__core': 7.20.5
react-refresh: 0.17.0
- vite: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ vite: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@1.6.1':
+ '@vitest/expect@3.2.4':
+ dependencies:
+ '@types/chai': 5.2.2
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.2.1
+ tinyrainbow: 2.0.0
+
+ '@vitest/mocker@3.2.4(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))':
dependencies:
- '@vitest/spy': 1.6.1
- '@vitest/utils': 1.6.1
- chai: 4.5.0
+ '@vitest/spy': 3.2.4
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ optionalDependencies:
+ vite: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
- '@vitest/runner@1.6.1':
+ '@vitest/pretty-format@3.2.4':
dependencies:
- '@vitest/utils': 1.6.1
- p-limit: 5.0.0
- pathe: 1.1.2
+ tinyrainbow: 2.0.0
+
+ '@vitest/runner@3.2.4':
+ dependencies:
+ '@vitest/utils': 3.2.4
+ pathe: 2.0.3
+ strip-literal: 3.0.0
- '@vitest/snapshot@1.6.1':
+ '@vitest/snapshot@3.2.4':
dependencies:
+ '@vitest/pretty-format': 3.2.4
magic-string: 0.30.17
- pathe: 1.1.2
- pretty-format: 29.7.0
+ pathe: 2.0.3
- '@vitest/spy@1.6.1':
+ '@vitest/spy@3.2.4':
dependencies:
- tinyspy: 2.2.1
+ tinyspy: 4.0.3
- '@vitest/utils@1.6.1':
+ '@vitest/utils@3.2.4':
dependencies:
- diff-sequences: 29.6.3
- estree-walker: 3.0.3
- loupe: 2.3.7
- pretty-format: 29.7.0
+ '@vitest/pretty-format': 3.2.4
+ loupe: 3.2.0
+ tinyrainbow: 2.0.0
'@volar/language-core@2.4.14':
dependencies:
@@ -21877,7 +21695,7 @@ snapshots:
'@vue/compiler-core@3.5.16':
dependencies:
- '@babel/parser': 7.27.5
+ '@babel/parser': 7.28.0
'@vue/shared': 3.5.16
entities: 4.5.0
estree-walker: 2.0.2
@@ -22214,7 +22032,7 @@ snapshots:
asap@2.0.6: {}
- assertion-error@1.1.0: {}
+ assertion-error@2.0.1: {}
ast-kit@2.1.1:
dependencies:
@@ -22286,13 +22104,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-jest@29.7.0(@babel/core@7.27.4):
+ babel-jest@29.7.0(@babel/core@7.28.0):
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.27.4)
+ babel-preset-jest: 29.6.3(@babel/core@7.28.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -22332,7 +22150,7 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
'@babel/template': 7.27.2
- '@babel/types': 7.27.6
+ '@babel/types': 7.28.1
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.7
@@ -22351,11 +22169,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.27.4):
+ babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.28.0):
dependencies:
'@babel/compat-data': 7.27.5
- '@babel/core': 7.27.4
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.28.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -22368,10 +22186,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.4):
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.28.0):
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.28.0)
core-js-compat: 3.42.0
transitivePeerDependencies:
- supports-color
@@ -22383,10 +22201,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.27.4):
+ babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.28.0):
dependencies:
- '@babel/core': 7.27.4
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.28.0)
transitivePeerDependencies:
- supports-color
@@ -22406,9 +22224,9 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.27.4):
+ babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.28.0):
dependencies:
- '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.4)
+ '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.28.0)
transitivePeerDependencies:
- '@babel/core'
@@ -22431,24 +22249,24 @@ snapshots:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
- babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.4):
- dependencies:
- '@babel/core': 7.27.4
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.4)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.4)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.4)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.27.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.4)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.27.4)
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.28.0):
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.0)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.0)
babel-preset-expo@12.0.11(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0)):
dependencies:
@@ -22472,11 +22290,11 @@ snapshots:
babel-plugin-jest-hoist: 29.6.3
babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
- babel-preset-jest@29.6.3(@babel/core@7.27.4):
+ babel-preset-jest@29.6.3(@babel/core@7.28.0):
dependencies:
- '@babel/core': 7.27.4
+ '@babel/core': 7.28.0
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.28.0)
bail@2.0.2: {}
@@ -22767,15 +22585,13 @@ snapshots:
ccount@2.0.1: {}
- chai@4.5.0:
+ chai@5.2.1:
dependencies:
- assertion-error: 1.1.0
- check-error: 1.0.3
- deep-eql: 4.1.4
- get-func-name: 2.0.2
- loupe: 2.3.7
- pathval: 1.1.1
- type-detect: 4.1.0
+ assertion-error: 2.0.1
+ check-error: 2.1.1
+ deep-eql: 5.0.2
+ loupe: 3.2.0
+ pathval: 2.0.1
chalk@2.4.2:
dependencies:
@@ -22812,9 +22628,7 @@ snapshots:
charset@1.0.1: {}
- check-error@1.0.3:
- dependencies:
- get-func-name: 2.0.2
+ check-error@2.1.1: {}
cheerio-select@2.1.0:
dependencies:
@@ -23434,7 +23248,7 @@ snapshots:
es-errors: 1.3.0
is-data-view: 1.0.2
- date-fns@4.1.0: {}
+ date-fns@3.6.0: {}
dayjs@1.11.10: {}
@@ -23484,9 +23298,7 @@ snapshots:
dependencies:
mimic-response: 3.1.0
- deep-eql@4.1.4:
- dependencies:
- type-detect: 4.1.0
+ deep-eql@5.0.2: {}
deep-equal@2.2.3:
dependencies:
@@ -23616,8 +23428,6 @@ snapshots:
didyoumean@1.2.2: {}
- diff-sequences@29.6.3: {}
-
diff@5.2.0: {}
diff@8.0.2: {}
@@ -24046,32 +23856,6 @@ snapshots:
'@esbuild/win32-ia32': 0.18.20
'@esbuild/win32-x64': 0.18.20
- esbuild@0.19.12:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.19.12
- '@esbuild/android-arm': 0.19.12
- '@esbuild/android-arm64': 0.19.12
- '@esbuild/android-x64': 0.19.12
- '@esbuild/darwin-arm64': 0.19.12
- '@esbuild/darwin-x64': 0.19.12
- '@esbuild/freebsd-arm64': 0.19.12
- '@esbuild/freebsd-x64': 0.19.12
- '@esbuild/linux-arm': 0.19.12
- '@esbuild/linux-arm64': 0.19.12
- '@esbuild/linux-ia32': 0.19.12
- '@esbuild/linux-loong64': 0.19.12
- '@esbuild/linux-mips64el': 0.19.12
- '@esbuild/linux-ppc64': 0.19.12
- '@esbuild/linux-riscv64': 0.19.12
- '@esbuild/linux-s390x': 0.19.12
- '@esbuild/linux-x64': 0.19.12
- '@esbuild/netbsd-x64': 0.19.12
- '@esbuild/openbsd-x64': 0.19.12
- '@esbuild/sunos-x64': 0.19.12
- '@esbuild/win32-arm64': 0.19.12
- '@esbuild/win32-ia32': 0.19.12
- '@esbuild/win32-x64': 0.19.12
-
esbuild@0.25.6:
optionalDependencies:
'@esbuild/aix-ppc64': 0.25.6
@@ -24297,18 +24081,6 @@ snapshots:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- execa@8.0.1:
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
execa@9.3.1:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
@@ -24328,6 +24100,8 @@ snapshots:
expand-template@2.0.3: {}
+ expect-type@1.2.2: {}
+
expo-asset@11.0.5(expo@52.0.46(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0))(@expo/metro-runtime@4.0.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)))(encoding@0.1.13)(react-native-webview@13.14.1(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1):
dependencies:
'@expo/image-utils': 0.6.5
@@ -24735,9 +24509,9 @@ snapshots:
transitivePeerDependencies:
- encoding
- fdir@6.4.5(picomatch@4.0.2):
+ fdir@6.4.6(picomatch@4.0.3):
optionalDependencies:
- picomatch: 4.0.2
+ picomatch: 4.0.3
fecha@4.2.3: {}
@@ -25050,8 +24824,6 @@ snapshots:
get-caller-file@2.0.5: {}
- get-func-name@2.0.2: {}
-
get-intrinsic@1.3.0:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -25086,8 +24858,6 @@ snapshots:
get-stream@6.0.1: {}
- get-stream@8.0.1: {}
-
get-stream@9.0.1:
dependencies:
'@sec-ant/readable-stream': 0.4.1
@@ -25639,8 +25409,6 @@ snapshots:
human-signals@2.1.0: {}
- human-signals@5.0.0: {}
-
human-signals@8.0.1: {}
humanize-ms@1.2.1:
@@ -25947,8 +25715,6 @@ snapshots:
is-stream@2.0.1: {}
- is-stream@3.0.0: {}
-
is-stream@4.0.1: {}
is-string@1.1.1:
@@ -26019,7 +25785,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.26.0
- '@babel/parser': 7.27.5
+ '@babel/parser': 7.28.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -26199,7 +25965,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jscodeshift@0.14.0(@babel/preset-env@7.27.2(@babel/core@7.27.4)):
+ jscodeshift@0.14.0(@babel/preset-env@7.27.2(@babel/core@7.28.0)):
dependencies:
'@babel/core': 7.26.0
'@babel/parser': 7.27.5
@@ -26207,7 +25973,7 @@ snapshots:
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.0)
'@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.0)
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.0)
- '@babel/preset-env': 7.27.2(@babel/core@7.27.4)
+ '@babel/preset-env': 7.27.2(@babel/core@7.28.0)
'@babel/preset-flow': 7.27.1(@babel/core@7.26.0)
'@babel/preset-typescript': 7.27.1(@babel/core@7.26.0)
'@babel/register': 7.27.1(@babel/core@7.26.0)
@@ -26533,11 +26299,6 @@ snapshots:
loader-utils@3.3.1: {}
- local-pkg@0.5.1:
- dependencies:
- mlly: 1.7.4
- pkg-types: 1.3.1
-
local-pkg@1.1.1:
dependencies:
mlly: 1.7.4
@@ -26600,9 +26361,7 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- loupe@2.3.7:
- dependencies:
- get-func-name: 2.0.2
+ loupe@3.2.0: {}
lower-case@2.0.2:
dependencies:
@@ -27290,9 +27049,9 @@ snapshots:
metro-transform-plugins@0.81.5:
dependencies:
'@babel/core': 7.26.0
- '@babel/generator': 7.27.5
+ '@babel/generator': 7.28.0
'@babel/template': 7.27.2
- '@babel/traverse': 7.27.4
+ '@babel/traverse': 7.28.0
flow-enums-runtime: 0.0.6
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -27301,9 +27060,9 @@ snapshots:
metro-transform-worker@0.81.5:
dependencies:
'@babel/core': 7.26.0
- '@babel/generator': 7.27.5
- '@babel/parser': 7.27.5
- '@babel/types': 7.27.6
+ '@babel/generator': 7.28.0
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.1
flow-enums-runtime: 0.0.6
metro: 0.81.5
metro-babel-transformer: 0.81.5
@@ -27882,8 +27641,6 @@ snapshots:
mimic-fn@3.0.0: {}
- mimic-fn@4.0.0: {}
-
mimic-response@1.0.1: {}
mimic-response@3.1.0: {}
@@ -28028,11 +27785,11 @@ snapshots:
- react-native-svg
- supports-color
- nativewind@4.1.23(react-native-reanimated@3.18.0(@babel/core@7.27.4)(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.1):
+ nativewind@4.1.23(react-native-reanimated@3.18.0(@babel/core@7.28.0)(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.1):
dependencies:
comment-json: 4.2.5
debug: 4.4.1(supports-color@10.0.0)
- react-native-css-interop: 0.1.22(react-native-reanimated@3.18.0(@babel/core@7.27.4)(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.1)
+ react-native-css-interop: 0.1.22(react-native-reanimated@3.18.0(@babel/core@7.28.0)(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.1)
tailwindcss: 3.4.1
transitivePeerDependencies:
- react
@@ -28374,10 +28131,6 @@ snapshots:
dependencies:
mimic-fn: 2.1.0
- onetime@6.0.0:
- dependencies:
- mimic-fn: 4.0.0
-
open@7.4.2:
dependencies:
is-docker: 2.2.1
@@ -28511,10 +28264,6 @@ snapshots:
dependencies:
yocto-queue: 1.2.1
- p-limit@5.0.0:
- dependencies:
- yocto-queue: 1.2.1
-
p-locate@3.0.0:
dependencies:
p-limit: 2.3.0
@@ -28691,11 +28440,9 @@ snapshots:
process: 0.11.10
util: 0.10.4
- pathe@1.1.2: {}
-
pathe@2.0.3: {}
- pathval@1.1.1: {}
+ pathval@2.0.1: {}
pdf2json@3.1.5: {}
@@ -28719,6 +28466,8 @@ snapshots:
picomatch@4.0.2: {}
+ picomatch@4.0.3: {}
+
pify@2.3.0: {}
pify@4.0.1: {}
@@ -29265,6 +29014,12 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ postcss@8.5.6:
+ dependencies:
+ nanoid: 3.3.11
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
postman-code-generators@1.14.2:
dependencies:
async: 3.2.2
@@ -29546,9 +29301,9 @@ snapshots:
got: 11.8.6
p-reflect: 2.1.0
- react-day-picker@8.10.1(date-fns@4.1.0)(react@18.3.1):
+ react-day-picker@8.10.1(date-fns@3.6.0)(react@18.3.1):
dependencies:
- date-fns: 4.1.0
+ date-fns: 3.6.0
react: 18.3.1
react-dev-utils@12.0.1(eslint@9.29.0(jiti@2.4.2))(typescript@5.8.3)(webpack@5.99.9):
@@ -29774,7 +29529,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-native-css-interop@0.1.22(react-native-reanimated@3.18.0(@babel/core@7.27.4)(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.1):
+ react-native-css-interop@0.1.22(react-native-reanimated@3.18.0(@babel/core@7.28.0)(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1))(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.1):
dependencies:
'@babel/helper-module-imports': 7.27.1
'@babel/traverse': 7.27.4
@@ -29782,8 +29537,8 @@ snapshots:
debug: 4.4.1(supports-color@10.0.0)
lightningcss: 1.30.1
react: 18.3.1
- react-native: 0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
- react-native-reanimated: 3.18.0(@babel/core@7.27.4)(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)
+ react-native: 0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
+ react-native-reanimated: 3.18.0(@babel/core@7.28.0)(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)
semver: 7.7.2
tailwindcss: 3.4.1
transitivePeerDependencies:
@@ -29819,10 +29574,10 @@ snapshots:
react: 18.3.1
react-native: 0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
- react-native-is-edge-to-edge@1.1.7(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1):
+ react-native-is-edge-to-edge@1.1.7(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
- react-native: 0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
+ react-native: 0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
react-native-markdown-display@7.0.2(react-native@0.76.9(@babel/core@7.26.0)(@babel/preset-env@7.27.2(@babel/core@7.26.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1):
dependencies:
@@ -29861,23 +29616,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-native-reanimated@3.18.0(@babel/core@7.27.4)(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1):
+ react-native-reanimated@3.18.0(@babel/core@7.28.0)(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/core': 7.27.4
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.4)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.4)
- '@babel/preset-typescript': 7.27.1(@babel/core@7.27.4)
+ '@babel/core': 7.28.0
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.28.0)
convert-source-map: 2.0.0
invariant: 2.2.4
react: 18.3.1
- react-native: 0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
- react-native-is-edge-to-edge: 1.1.7(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)
+ react-native: 0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1)
+ react-native-is-edge-to-edge: 1.1.7(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- supports-color
@@ -29960,20 +29715,20 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1):
+ react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native/assets-registry': 0.76.9
- '@react-native/codegen': 0.76.9(@babel/preset-env@7.27.2(@babel/core@7.27.4))
- '@react-native/community-cli-plugin': 0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(encoding@0.1.13)
+ '@react-native/codegen': 0.76.9(@babel/preset-env@7.27.2(@babel/core@7.28.0))
+ '@react-native/community-cli-plugin': 0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(encoding@0.1.13)
'@react-native/gradle-plugin': 0.76.9
'@react-native/js-polyfills': 0.76.9
'@react-native/normalize-colors': 0.76.9
- '@react-native/virtualized-lists': 0.76.9(@types/react@18.3.12)(react-native@0.76.9(@babel/core@7.27.4)(@babel/preset-env@7.27.2(@babel/core@7.27.4))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.76.9(@types/react@18.3.12)(react-native@0.76.9(@babel/core@7.28.0)(@babel/preset-env@7.27.2(@babel/core@7.28.0))(@types/react@18.3.12)(encoding@0.1.13)(react@18.3.1))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
- babel-jest: 29.7.0(@babel/core@7.27.4)
+ babel-jest: 29.7.0(@babel/core@7.28.0)
babel-plugin-syntax-hermes-parser: 0.23.1
base64-js: 1.5.1
chalk: 4.1.2
@@ -31271,15 +31026,13 @@ snapshots:
strip-final-newline@2.0.0: {}
- strip-final-newline@3.0.0: {}
-
strip-final-newline@4.0.0: {}
strip-json-comments@2.0.1: {}
strip-json-comments@3.1.1: {}
- strip-literal@2.1.1:
+ strip-literal@3.0.0:
dependencies:
js-tokens: 9.0.1
@@ -31561,16 +31314,20 @@ snapshots:
tinybench@2.9.0: {}
+ tinyexec@0.3.2: {}
+
tinyexec@1.0.1: {}
tinyglobby@0.2.14:
dependencies:
- fdir: 6.4.5(picomatch@4.0.2)
- picomatch: 4.0.2
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
- tinypool@0.8.4: {}
+ tinypool@1.1.1: {}
- tinyspy@2.2.1: {}
+ tinyrainbow@2.0.0: {}
+
+ tinyspy@4.0.3: {}
tlds@1.259.0: {}
@@ -31658,9 +31415,9 @@ snapshots:
tslib@2.8.1: {}
- tsx@4.7.1:
+ tsx@4.20.3:
dependencies:
- esbuild: 0.19.12
+ esbuild: 0.25.6
get-tsconfig: 4.10.1
optionalDependencies:
fsevents: 2.3.3
@@ -31707,8 +31464,6 @@ snapshots:
type-detect@4.0.8: {}
- type-detect@4.1.0: {}
-
type-fest@0.16.0: {}
type-fest@0.21.3: {}
@@ -32100,24 +31855,28 @@ snapshots:
video-extensions@1.2.0: {}
- vite-node@1.6.1(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0):
+ vite-node@3.2.4(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0):
dependencies:
cac: 6.7.14
debug: 4.4.1(supports-color@10.0.0)
- pathe: 1.1.2
- picocolors: 1.1.1
- vite: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ es-module-lexer: 1.7.0
+ pathe: 2.0.3
+ vite: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
transitivePeerDependencies:
- '@types/node'
+ - jiti
- less
- lightningcss
- sass
+ - sass-embedded
- stylus
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
- vite-plugin-dts@4.5.4(@types/node@22.15.30)(rollup@4.42.0)(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)):
+ vite-plugin-dts@4.5.4(@types/node@22.15.30)(rollup@4.42.0)(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)):
dependencies:
'@microsoft/api-extractor': 7.52.8(@types/node@22.15.30)
'@rollup/pluginutils': 5.1.4(rollup@4.42.0)
@@ -32130,80 +31889,95 @@ snapshots:
magic-string: 0.30.17
typescript: 5.8.3
optionalDependencies:
- vite: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ vite: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-svgr@4.3.0(rollup@4.42.0)(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)):
+ vite-plugin-svgr@4.3.0(rollup@4.42.0)(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)):
dependencies:
'@rollup/pluginutils': 5.1.4(rollup@4.42.0)
'@svgr/core': 8.1.0(typescript@5.8.3)
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.8.3))
- vite: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ vite: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
transitivePeerDependencies:
- rollup
- supports-color
- typescript
- vite-tsconfig-paths@4.3.2(typescript@5.8.3)(vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)):
+ vite-tsconfig-paths@4.3.2(typescript@5.8.3)(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)):
dependencies:
debug: 4.4.1(supports-color@10.0.0)
globrex: 0.1.2
tsconfck: 3.1.6(typescript@5.8.3)
optionalDependencies:
- vite: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ vite: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0):
+ vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0):
dependencies:
- esbuild: 0.19.12
- postcss: 8.5.4
+ esbuild: 0.25.6
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
rollup: 4.42.0
+ tinyglobby: 0.2.14
optionalDependencies:
'@types/node': 22.15.30
fsevents: 2.3.3
+ jiti: 2.4.2
lightningcss: 1.30.1
sass: 1.89.1
terser: 5.41.0
+ tsx: 4.20.3
+ yaml: 2.8.0
- vitest@1.6.1(@types/node@22.15.30)(happy-dom@17.4.9)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0):
- dependencies:
- '@vitest/expect': 1.6.1
- '@vitest/runner': 1.6.1
- '@vitest/snapshot': 1.6.1
- '@vitest/spy': 1.6.1
- '@vitest/utils': 1.6.1
- acorn-walk: 8.3.4
- chai: 4.5.0
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.15.30)(happy-dom@17.4.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0):
+ dependencies:
+ '@types/chai': 5.2.2
+ '@vitest/expect': 3.2.4
+ '@vitest/mocker': 3.2.4(vite@7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0))
+ '@vitest/pretty-format': 3.2.4
+ '@vitest/runner': 3.2.4
+ '@vitest/snapshot': 3.2.4
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.2.1
debug: 4.4.1(supports-color@10.0.0)
- execa: 8.0.1
- local-pkg: 0.5.1
+ expect-type: 1.2.2
magic-string: 0.30.17
- pathe: 1.1.2
- picocolors: 1.1.1
+ pathe: 2.0.3
+ picomatch: 4.0.2
std-env: 3.9.0
- strip-literal: 2.1.1
tinybench: 2.9.0
- tinypool: 0.8.4
- vite: 5.1.4(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
- vite-node: 1.6.1(@types/node@22.15.30)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)
+ tinyexec: 0.3.2
+ tinyglobby: 0.2.14
+ tinypool: 1.1.1
+ tinyrainbow: 2.0.0
+ vite: 7.0.6(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
+ vite-node: 3.2.4(@types/node@22.15.30)(jiti@2.4.2)(lightningcss@1.30.1)(sass@1.89.1)(terser@5.41.0)(tsx@4.20.3)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
+ '@types/debug': 4.1.12
'@types/node': 22.15.30
happy-dom: 17.4.9
jsdom: 26.1.0
transitivePeerDependencies:
+ - jiti
- less
- lightningcss
+ - msw
- sass
+ - sass-embedded
- stylus
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
vlq@1.0.1: {}