Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

rspack conversion

(cherry picked from commit b12cc016637f4bd0fc0608038e3933e2e52648c1)

checkpoint

(cherry picked from commit a75884edaa6525d773fa1647e463c71e3bd7ab6e)

bypass babel-loader for node_modules

separate babel plugins for web, remove dupe babel plugins, remove babel cache compression

bump rspack

uwx c32a206a 9adc9a81

+975 -44
+2
eslint.config.mjs
··· 38 38 '*.e2e.tsx', 39 39 'eslint.config.mjs', 40 40 '.jscodeshift/**', 41 + 'rspack.config.ts', 42 + 'scripts/post-web-build.js', 41 43 ], 42 44 }, 43 45
+2 -6
justfile
··· 21 21 22 22 [group('build')] 23 23 build-web: && postbuild-web 24 - yarn build-web 24 + NODE_ENV=production rspack build 25 25 26 26 [group('build')] 27 27 build-android-sideload: prebuild-android ··· 34 34 35 35 [group('build')] 36 36 postbuild-web: 37 - # build system outputs some srcs and hrefs like src="static/" 38 - # need to rewrite to be src="/static/" to handle non root pages 39 - sed -i 's/\(src\|href\)="static/\1="\/static/g' web-build/index.html 40 - 41 37 # we need to copy the static iframe html to support youtube embeds 42 38 cp -r bskyweb/static/iframe/ web-build/iframe 43 39 # copy well-known files to support app deeplinks too ··· 59 55 60 56 [group('dev')] 61 57 dev-web: 62 - yarn web 58 + rspack serve 63 59 64 60 [group('dev')] 65 61 dev-web-functions: build-web
+16 -6
package.json
··· 33 33 "android:prod": "expo run:android --variant release", 34 34 "android:profile": "BSKY_PROFILE=1 expo run:android --variant release", 35 35 "ios": "expo run:ios", 36 - "web": "expo start --web", 36 + "web": "rspack serve", 37 37 "use-build-number": "./scripts/useBuildNumberEnv.sh", 38 38 "use-build-number-with-bump": "./scripts/useBuildNumberEnvWithBump.sh", 39 - "build-web": "expo export:web && node ./scripts/post-web-build.js", 39 + "build-web": "NODE_ENV=production rspack build && node ./scripts/post-web-build.js", 40 40 "build-all": "yarn intl:build && yarn use-build-number-with-bump eas build --platform all", 41 41 "build-ios": "yarn use-build-number-with-bump eas build -p ios", 42 42 "build-android": "yarn use-build-number-with-bump eas build -p android", ··· 76 76 "export": "npx expo export --dump-sourcemap && yarn upload-native-sourcemaps", 77 77 "upload-native-sourcemaps": "npx sentry-expo-upload-sourcemaps dist", 78 78 "make-deploy-bundle": "bash scripts/bundleUpdate.sh", 79 - "generate-webpack-stats-file": "EXPO_PUBLIC_GENERATE_STATS=1 yarn build-web", 80 - "open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web", 79 + "generate-stats-file": "GENERATE_STATS=1 yarn build-web", 81 80 "icons:optimize": "svgo -f ./assets/icons" 82 81 }, 83 82 "dependencies": { ··· 138 137 "@types/invariant": "^2.2.37", 139 138 "@types/lodash.throttle": "^4.1.9", 140 139 "@types/node": "^20.14.3", 141 - "@uwx/exif-be-gone-web": "1.6.6", 140 + "@uwx/exif-be-gone-web": "1.6.7", 142 141 "array.prototype.findlast": "^1.2.3", 143 142 "babel-plugin-transform-remove-console": "^6.9.4", 144 143 "base64-js": "^1.5.1", ··· 248 247 }, 249 248 "devDependencies": { 250 249 "@babel/core": "7.25.2", 250 + "@babel/plugin-transform-flow-strip-types": "^7.27.1", 251 251 "@babel/preset-env": "^7.26.0", 252 - "@babel/runtime": "^7.25.9", 252 + "@babel/runtime": "7.25.9", 253 253 "@babel/traverse": "7.25.2", 254 254 "@crowdin/cli": "^4.14.1", 255 255 "@eslint/js": "^9.39.2", ··· 259 259 "@pmmmwh/react-refresh-webpack-plugin": "^0.5.15", 260 260 "@react-native/babel-preset": "0.81.5", 261 261 "@react-native/typescript-config": "^0.81.5", 262 + "@rolldown/plugin-babel": "^0.2.3", 263 + "@rspack/cli": "^2.0.0-canary.20260120", 264 + "@rspack/core": "^2.0.0-canary.20260120", 265 + "@rspack/dev-server": "^2.0.0-beta.7", 266 + "@sentry/vite-plugin": "^5.2.0", 262 267 "@sentry/webpack-plugin": "^3.2.2", 268 + "@swc/core": "^1.15.24", 263 269 "@testing-library/react-native": "^13.2.0", 264 270 "@types/chroma-js": "^3.1.2", 265 271 "@types/culori": "^4.0.1", ··· 271 277 "@types/react": "^19.1.12", 272 278 "@types/react-dom": "^19.1.9", 273 279 "babel-jest": "^29.7.0", 280 + "babel-loader": "^10.1.1", 274 281 "babel-plugin-module-resolver": "^5.0.2", 275 282 "babel-plugin-react-compiler": "^19.1.0-rc.3", 276 283 "babel-preset-expo": "~54.0.10", ··· 297 304 "prettier": "^3.6.0", 298 305 "react-native-dotenv": "^3.4.11", 299 306 "react-refresh": "^0.14.0", 307 + "rollup-plugin-define": "^1.0.1", 308 + "rspack-manifest-plugin": "^5.2.1", 300 309 "svgo": "^3.3.2", 310 + "swc-loader": "^0.2.7", 301 311 "ts-plugin-sort-import-suggestions": "^1.0.4", 302 312 "typescript": "^6.0.2", 303 313 "typescript-eslint": "^8.58.0",
+356
rspack.config.ts
··· 1 + import path from 'node:path' 2 + import rspack from '@rspack/core' 3 + import {RspackManifestPlugin} from 'rspack-manifest-plugin' 4 + import {sentryWebpackPlugin} from '@sentry/webpack-plugin' 5 + import {version} from './package.json' 6 + 7 + const GENERATE_STATS = process.env.GENERATE_STATS === '1' 8 + const isProduction = process.env.NODE_ENV === 'production' 9 + 10 + // Collect all EXPO_PUBLIC_* env vars so they're available at build time, 11 + // mirroring what @expo/webpack-config does automatically. 12 + const expoPublicEnv = Object.fromEntries( 13 + Object.entries(process.env) 14 + .filter(([key]) => key.startsWith('EXPO_PUBLIC_')) 15 + .map(([key, value]) => [`process.env.${key}`, JSON.stringify(value)]), 16 + ) 17 + 18 + // Packages in node_modules that ship untranspiled JSX/Flow/modern syntax 19 + // and need to be run through babel-loader. 20 + const TRANSPILE_MODULES = [ 21 + 'react-native', 22 + 'react-native-web', 23 + '@react-native', 24 + '@react-native-community', 25 + 'expo', 26 + '@expo', 27 + '@unimodules', 28 + 'unimodules', 29 + '@discord', 30 + 'react-navigation', 31 + '@react-navigation', 32 + 'native-base', 33 + 'normalize-url', 34 + 'react-native-svg', 35 + '@sentry/react-native', 36 + 'sentry-expo', 37 + 'bcp-47-match', 38 + 'nanoid', 39 + 'react-native-web-webview', 40 + ] 41 + 42 + /** Matches a file path against the TRANSPILE_MODULES list. */ 43 + function isTranspileModule(filePath: string) { 44 + return TRANSPILE_MODULES.some(mod => { 45 + const sep = path.sep === '\\' ? '\\\\' : '/' 46 + const pattern = new RegExp(`node_modules${sep}${mod.replace('/', sep)}`) 47 + return pattern.test(filePath) 48 + }) 49 + } 50 + 51 + /** @type {import('@rspack/core').Configuration} */ 52 + module.exports = { 53 + mode: isProduction ? 'production' : 'development', 54 + devtool: isProduction ? 'source-map' : 'eval-cheap-module-source-map', 55 + 56 + entry: { 57 + main: path.resolve(__dirname, 'index.web.js'), 58 + }, 59 + 60 + output: { 61 + path: path.resolve(__dirname, 'web-build'), 62 + filename: isProduction 63 + ? 'static/js/[name].[contenthash:8].js' 64 + : 'static/js/[name].js', 65 + chunkFilename: isProduction 66 + ? 'static/js/[name].[contenthash:8].chunk.js' 67 + : 'static/js/[name].chunk.js', 68 + assetModuleFilename: 'static/media/[name].[hash:8][ext]', 69 + publicPath: isProduction ? 'auto' : '/', 70 + clean: true, 71 + }, 72 + 73 + resolve: { 74 + extensions: [ 75 + '.web.tsx', 76 + '.web.ts', 77 + '.web.js', 78 + '.web.jsx', 79 + '.tsx', 80 + '.ts', 81 + '.jsx', 82 + '.js', 83 + '.json', 84 + ], 85 + alias: { 86 + // Path alias for src/ 87 + '#': path.resolve(__dirname, 'src'), 88 + // React Native Web 89 + 'react-native$': 'react-native-web', 90 + // Internal RN module mappings for compatibility 91 + 'react-native/Libraries/Components/View/ViewStylePropTypes$': 92 + 'react-native-web/dist/exports/View/ViewStylePropTypes', 93 + 'react-native/Libraries/EventEmitter/RCTDeviceEventEmitter$': 94 + 'react-native-web/dist/vendor/react-native/NativeEventEmitter/RCTDeviceEventEmitter', 95 + 'react-native/Libraries/vendor/emitter/EventEmitter$': 96 + 'react-native-web/dist/vendor/react-native/emitter/EventEmitter', 97 + 'react-native/Libraries/EventEmitter/NativeEventEmitter$': 98 + 'react-native-web/dist/vendor/react-native/NativeEventEmitter', 99 + // Webview shim 100 + 'react-native-webview': 'react-native-web-webview', 101 + // Crypto shim for expo-modules-core 102 + crypto: path.resolve(__dirname, 'src/platform/crypto.ts'), 103 + // Force ESM version of unicode-segmenter 104 + 'unicode-segmenter/grapheme': require 105 + .resolve('unicode-segmenter/grapheme') 106 + .replace(/\.cjs$/, '.js'), 107 + // Block packages that should not load on web 108 + 'react-native-gesture-handler': false, 109 + '@sentry-internal/replay': false, 110 + }, 111 + mainFields: ['browser', 'module', 'main'], 112 + // Allow importing without file extensions in ESM packages 113 + fullySpecified: false, 114 + }, 115 + 116 + module: { 117 + rules: [ 118 + // Disable fullySpecified for ESM packages that import without extensions 119 + // (e.g. react-navigation importing react-native-web/dist/exports/Platform) 120 + { 121 + test: /\.m?js$/, 122 + resolve: { 123 + fullySpecified: false, 124 + }, 125 + }, 126 + // Source files: use babel-loader for lingui macros, react-compiler, etc. 127 + { 128 + test: /\.[jt]sx?$/, 129 + exclude: /node_modules/, 130 + use: { 131 + loader: 'babel-loader', 132 + options: { 133 + configFile: false, // Don't look for a babel.config.json to avoid conflicts with the one in the root of the monorepo. 134 + babelrc: false, 135 + cacheDirectory: true, 136 + cacheCompression: false, // let rspack handle it 137 + sourceType: 'unambiguous', 138 + // based on babel.config.js but optimized for web and rspack 139 + presets: [ 140 + [ 141 + 'babel-preset-expo', 142 + { 143 + lazyImports: true, 144 + native: { 145 + // Disable ESM -> CJS compilation because rspack handles it. 146 + disableImportExportTransform: true, 147 + }, 148 + }, 149 + ], 150 + ], 151 + plugins: [ 152 + '@lingui/babel-plugin-lingui-macro', 153 + ['babel-plugin-react-compiler', {target: '19'}], 154 + // omitted: react-native-dotenv (we use DefinePlugin instead) 155 + // omitted: module-resolver (we use rspack's built-in aliasing instead) 156 + 'react-native-reanimated/plugin', // NOTE: this plugin MUST be last 157 + ], 158 + env: { 159 + production: { 160 + plugins: [], // omitted: transform-remove-console 161 + }, 162 + }, 163 + }, 164 + }, 165 + }, 166 + // node_modules that ship untranspiled JSX/Flow: use rspack's builtin 167 + // SWC loader which is much faster than babel for simple transforms. 168 + { 169 + test: /\.jsx?$/, 170 + include: isTranspileModule, 171 + use: { 172 + loader: 'swc-loader', // rspack swc-loader doesn't support flow yet 173 + options: { 174 + jsc: { 175 + parser: { 176 + syntax: 'flow', 177 + jsx: true, 178 + }, 179 + transform: { 180 + react: { 181 + runtime: 'automatic', 182 + }, 183 + }, 184 + }, 185 + }, 186 + }, 187 + }, 188 + { 189 + test: /\.tsx?$/, 190 + include: isTranspileModule, 191 + use: { 192 + loader: 'builtin:swc-loader', 193 + options: { 194 + jsc: { 195 + parser: { 196 + syntax: 'typescript', 197 + jsx: true, 198 + }, 199 + transform: { 200 + react: { 201 + runtime: 'automatic', 202 + }, 203 + }, 204 + }, 205 + }, 206 + }, 207 + }, 208 + // HTML file loader for react-native-web-webview's postMock.html 209 + { 210 + test: /postMock\.html$/, 211 + type: 'asset/resource', 212 + generator: { 213 + filename: 'static/[name][ext]', 214 + }, 215 + }, 216 + // CSS support — imported from JS/TS files 217 + { 218 + test: /\.css$/, 219 + type: 'css/auto', 220 + }, 221 + // Image assets 222 + { 223 + test: /\.(bmp|gif|jpe?g|png|svg|avif|webp)$/i, 224 + type: 'asset', 225 + parser: { 226 + dataUrlCondition: { 227 + maxSize: 8 * 1024, // 8KB 228 + }, 229 + }, 230 + }, 231 + // Font assets 232 + { 233 + test: /\.(woff|woff2|otf|ttf|eot)$/i, 234 + type: 'asset/resource', 235 + }, 236 + ], 237 + }, 238 + 239 + plugins: [ 240 + new rspack.HtmlRspackPlugin({ 241 + template: path.resolve(__dirname, 'web/index.html'), 242 + inject: true, 243 + }), 244 + new rspack.CopyRspackPlugin({ 245 + patterns: [ 246 + // Serve fonts at /static/fonts/ with stable names 247 + {from: 'web/static/fonts', to: 'static/fonts'}, 248 + // Serve the global stylesheet 249 + {from: 'src/style.css', to: 'static/style.css'}, 250 + ], 251 + }), 252 + new rspack.DefinePlugin({ 253 + __DEV__: JSON.stringify(!isProduction), 254 + 'process.env.NODE_ENV': JSON.stringify( 255 + isProduction ? 'production' : 'development', 256 + ), 257 + 'process.env.JEST_WORKER_ID': JSON.stringify(undefined), 258 + 'process.env.LIVE_EVENTS_DEV_URL': JSON.stringify( 259 + process.env.LIVE_EVENTS_DEV_URL || '', 260 + ), 261 + 'process.env.APP_CONFIG_DEV_URL': JSON.stringify( 262 + process.env.APP_CONFIG_DEV_URL || '', 263 + ), 264 + // provide sensible defaults for env vars that the web build expects but aren't defined in the environment 265 + 'process.env.EXPO_PUBLIC_ENV': JSON.stringify( 266 + isProduction ? 'production' : 'development', 267 + ), 268 + 'process.env.EAS_BUILD_PLATFORM': JSON.stringify('web'), 269 + 'process.env.SENTRY_AUTH_TOKEN': 'undefined', 270 + 'process.env.EXPO_PUBLIC_RELEASE_VERSION': 'undefined', 271 + 'process.env.EXPO_PUBLIC_LOG_LEVEL': '"debug"', 272 + 'process.env.EXPO_PUBLIC_LOG_DEBUG': '"*"', 273 + 'process.env.EXPO_PUBLIC_OAUTH_BASE_URL': 'undefined', 274 + 'process.env.EXPO_PUBLIC_OAUTH_CLIENT_NAME': 'undefined', 275 + 'process.env.EXPO_PUBLIC_BUNDLE_IDENTIFIER': 'undefined', 276 + 'process.env.EXPO_PUBLIC_BUNDLE_DATE': 'undefined', 277 + 'process.env.EXPO_PUBLIC_SENTRY_DSN': 'undefined', 278 + 'process.env.EXPO_PUBLIC_BLUESKY_PROXY_DID': 'undefined', 279 + 'process.env.EXPO_PUBLIC_CHAT_PROXY_DID': 'undefined', 280 + 'process.env.EXPO_PUBLIC_METRICS_API_HOST': 'undefined', 281 + 'process.env.EXPO_PUBLIC_GROWTHBOOK_API_HOST': 'undefined', 282 + 'process.env.EXPO_PUBLIC_GROWTHBOOK_CLIENT_KEY': 'undefined', 283 + 'process.env.EXPO_PUBLIC_BITDRIFT_API_KEY': 'undefined', 284 + 'process.env.EXPO_PUBLIC_GCP_PROJECT_ID': 'undefined', 285 + 'process.env.EXPO_PUBLIC_PUBLIC_BSKY_SERVICE': 'undefined', 286 + 'process.env.EXPO_PUBLIC_APPVIEW_DID_PROXY': 'undefined', 287 + 'process.env.APP_MANIFEST': 'undefined', 288 + 'process.env.__SENTRY_METRO_DEV_SERVER__': 'undefined', 289 + 'process.env.EXPO_OS': JSON.stringify('web'), 290 + // Inject all EXPO_PUBLIC_* env vars 291 + ...expoPublicEnv, 292 + }), 293 + // Generate asset-manifest.json matching the format the Go server expects. 294 + // The post-web-build script reads `entrypoints` from this manifest. 295 + new RspackManifestPlugin({ 296 + fileName: 'asset-manifest.json', 297 + generate: (seed, files, entrypoints) => { 298 + const entrypointFiles = entrypoints.main || [] 299 + return { 300 + files: files.reduce((manifest, file) => { 301 + manifest[file.name] = file.path 302 + return manifest 303 + }, seed), 304 + entrypoints: entrypointFiles.filter(f => !f.endsWith('.map')), 305 + } 306 + }, 307 + }), 308 + // Sentry source maps 309 + isProduction && 310 + process.env.SENTRY_AUTH_TOKEN && 311 + sentryWebpackPlugin({ 312 + org: 'blueskyweb', 313 + project: 'app', 314 + authToken: process.env.SENTRY_AUTH_TOKEN, 315 + release: { 316 + name: process.env.SENTRY_RELEASE || version, 317 + dist: process.env.SENTRY_DIST, 318 + }, 319 + }), 320 + ].filter(Boolean), 321 + 322 + optimization: { 323 + splitChunks: { 324 + chunks: 'all', 325 + cacheGroups: { 326 + vendor: { 327 + test: /[\\/]node_modules[\\/]/, 328 + name: 'vendor', 329 + chunks: 'all', 330 + priority: -10, 331 + }, 332 + }, 333 + }, 334 + runtimeChunk: 'single', 335 + minimize: isProduction, 336 + }, 337 + 338 + devServer: { 339 + static: { 340 + directory: path.resolve(__dirname, 'web'), 341 + }, 342 + port: 19006, 343 + hot: true, 344 + historyApiFallback: true, 345 + compress: true, 346 + }, 347 + 348 + // Don't bundle node built-ins (shouldn't be needed on web) 349 + externalsPresets: {node: false}, 350 + 351 + stats: GENERATE_STATS ? 'verbose' : 'normal', 352 + 353 + experiments: { 354 + css: true, 355 + }, 356 + }
+14 -4
scripts/post-web-build.js
··· 9 9 'scripts.html', 10 10 ) 11 11 12 - const {entrypoints} = require( 12 + const manifest = require( 13 13 path.join(projectRoot, 'web-build/asset-manifest.json'), 14 14 ) 15 + const entrypoints = manifest.entrypoints || [] 15 16 16 17 console.log(`Found ${entrypoints.length} entrypoints`) 17 18 console.log(`Writing ${templateFile}`) ··· 34 35 fs.writeFileSync(templateFile, outputFile) 35 36 36 37 function copyFiles(sourceDir, targetDir) { 37 - const files = fs.readdirSync(path.join(projectRoot, sourceDir)) 38 + const srcPath = path.join(projectRoot, sourceDir) 39 + if (!fs.existsSync(srcPath)) { 40 + console.log(`Skipping ${sourceDir} (does not exist)`) 41 + return 42 + } 43 + const tgtPath = path.join(projectRoot, targetDir) 44 + if (!fs.existsSync(tgtPath)) { 45 + fs.mkdirSync(tgtPath, {recursive: true}) 46 + } 47 + const files = fs.readdirSync(srcPath) 38 48 files.forEach(file => { 39 - const sourcePath = path.join(projectRoot, sourceDir, file) 40 - const targetPath = path.join(projectRoot, targetDir, file) 49 + const sourcePath = path.join(srcPath, file) 50 + const targetPath = path.join(tgtPath, file) 41 51 fs.copyFileSync(sourcePath, targetPath) 42 52 console.log(`Copied ${sourcePath} to ${targetPath}`) 43 53 })
+6 -6
web/index.html
··· 17 17 --> 18 18 <link rel="preconnect" href="https://bsky.social"> 19 19 <link rel="preconnect" href="https://go.bsky.app"> 20 - <title>%WEB_TITLE%</title> 20 + <title>Witchsky</title> 21 21 22 - <link rel="preload" as="font" type="font/woff2" href="/static/media/InterVariable.c504db5c06caaf7cdfba.woff2" crossorigin> 22 + <link rel="preload" as="font" type="font/woff2" href="/static/fonts/InterVariable.woff2" crossorigin> 23 23 <link rel="stylesheet" href="/static/style.css"> 24 24 25 25 <style> ··· 32 32 */ 33 33 @font-face { 34 34 font-family: 'InterVariable'; 35 - src: url(/static/media/InterVariable.c504db5c06caaf7cdfba.woff2) format('woff2'); 35 + src: url(/static/fonts/InterVariable.woff2) format('woff2'); 36 36 font-weight: 300 1000; 37 37 font-style: normal; 38 38 font-display: swap; 39 39 } 40 40 @font-face { 41 41 font-family: 'InterVariableItalic'; 42 - src: url(/static/media/InterVariable-Italic.01dcbad1bac635f9c9cd.woff2) format('woff2'); 42 + src: url(/static/fonts/InterVariable-Italic.woff2) format('woff2'); 43 43 font-weight: 300 1000; 44 44 font-style: italic; 45 45 font-display: swap; ··· 144 144 margin: 1em; 145 145 "> 146 146 <h1 lang="en">JavaScript Required</h1> 147 - <p lang="en">This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is. 148 - <p lang="en">Learn more about Bluesky at <a href="https://bsky.social">bsky.social</a> and <a href="https://atproto.com">atproto.com</a>, or this fork at <a href="https://tangled.org/jollywhoppers.com/witchsky.app/">https://tangled.org/jollywhoppers.com/witchsky.app/</a>. 147 + <p lang="en">This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.</p> 148 + <p lang="en">Learn more about Bluesky at <a href="https://bsky.social">bsky.social</a> and <a href="https://atproto.com">atproto.com</a>, or this fork at <a href="https://tangled.org/jollywhoppers.com/witchsky.app/">https://tangled.org/jollywhoppers.com/witchsky.app/</a>.</p> 149 149 </noscript> 150 150 151 151 <!-- The root element for your Expo app. -->
web/static/fonts/InterVariable-Italic.woff2

This is a binary file and will not be displayed.

web/static/fonts/InterVariable.woff2

This is a binary file and will not be displayed.

+579 -22
yarn.lock
··· 946 946 resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz#ddb2f876534ff8013e6c2b299bf4d39b3c51d44c" 947 947 integrity sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw== 948 948 949 + "@babel/helper-plugin-utils@^7.28.6": 950 + version "7.28.6" 951 + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz#6f13ea251b68c8532e985fd532f28741a8af9ac8" 952 + integrity sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug== 953 + 949 954 "@babel/helper-remap-async-to-generator@^7.25.9": 950 955 version "7.25.9" 951 956 resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz#e53956ab3d5b9fb88be04b3e2f31b523afd34b92" ··· 1426 1431 dependencies: 1427 1432 "@babel/helper-plugin-utils" "^7.25.9" 1428 1433 1434 + "@babel/plugin-syntax-flow@^7.27.1": 1435 + version "7.28.6" 1436 + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.28.6.tgz#447559a225e66c4cd477a3ffb1a74d8c1fe25a62" 1437 + integrity sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew== 1438 + dependencies: 1439 + "@babel/helper-plugin-utils" "^7.28.6" 1440 + 1429 1441 "@babel/plugin-syntax-import-assertions@^7.26.0": 1430 1442 version "7.26.0" 1431 1443 resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz#620412405058efa56e4a564903b79355020f445f" ··· 1710 1722 "@babel/helper-plugin-utils" "^7.25.9" 1711 1723 "@babel/plugin-syntax-flow" "^7.25.9" 1712 1724 1725 + "@babel/plugin-transform-flow-strip-types@^7.27.1": 1726 + version "7.27.1" 1727 + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.27.1.tgz#5def3e1e7730f008d683144fb79b724f92c5cdf9" 1728 + integrity sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg== 1729 + dependencies: 1730 + "@babel/helper-plugin-utils" "^7.27.1" 1731 + "@babel/plugin-syntax-flow" "^7.27.1" 1732 + 1713 1733 "@babel/plugin-transform-for-of@^7.24.7", "@babel/plugin-transform-for-of@^7.25.9": 1714 1734 version "7.25.9" 1715 1735 resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz#4bdc7d42a213397905d89f02350c5267866d5755" ··· 2263 2283 resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" 2264 2284 integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== 2265 2285 2286 + "@babel/runtime@7.25.9": 2287 + version "7.25.9" 2288 + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.9.tgz#65884fd6dc255a775402cc1d9811082918f4bf00" 2289 + integrity sha512-4zpTHZ9Cm6L9L+uIqghQX8ZXg8HKFcjYO3qHoO8zTmRm6HQUJ8SSJ+KRvbMBZn0EGVlT4DRYeQ/6hjlyXBh+Kg== 2290 + dependencies: 2291 + regenerator-runtime "^0.14.0" 2292 + 2266 2293 "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.6", "@babel/runtime@^7.20.0", "@babel/runtime@^7.8.4": 2267 2294 version "7.22.10" 2268 2295 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.10.tgz#ae3e9631fd947cb7e3610d3e9d8fef5f76696682" ··· 2625 2652 "@gorhom/portal" "1.0.14" 2626 2653 invariant "^2.2.4" 2627 2654 2628 - "@discoveryjs/json-ext@0.5.7": 2655 + "@discoveryjs/json-ext@0.5.7", "@discoveryjs/json-ext@^0.5.7": 2629 2656 version "0.5.7" 2630 2657 resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" 2631 2658 integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== ··· 2645 2672 "@emnapi/wasi-threads" "1.1.0" 2646 2673 tslib "^2.4.0" 2647 2674 2675 + "@emnapi/core@^1.5.0": 2676 + version "1.9.2" 2677 + resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.9.2.tgz#3870265ecffc7352d01ead62d8d83d8358a2d034" 2678 + integrity sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA== 2679 + dependencies: 2680 + "@emnapi/wasi-threads" "1.2.1" 2681 + tslib "^2.4.0" 2682 + 2648 2683 "@emnapi/runtime@^1.4.3": 2649 2684 version "1.8.1" 2650 2685 resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.8.1.tgz#550fa7e3c0d49c5fb175a116e8cd70614f9a22a5" ··· 2652 2687 dependencies: 2653 2688 tslib "^2.4.0" 2654 2689 2690 + "@emnapi/runtime@^1.5.0": 2691 + version "1.9.2" 2692 + resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.9.2.tgz#8b469a3db160817cadb1de9050211a9d1ea84fa2" 2693 + integrity sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw== 2694 + dependencies: 2695 + tslib "^2.4.0" 2696 + 2655 2697 "@emnapi/wasi-threads@1.1.0": 2656 2698 version "1.1.0" 2657 2699 resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz#60b2102fddc9ccb78607e4a3cf8403ea69be41bf" 2658 2700 integrity sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ== 2701 + dependencies: 2702 + tslib "^2.4.0" 2703 + 2704 + "@emnapi/wasi-threads@1.2.1": 2705 + version "1.2.1" 2706 + resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz#28fed21a1ba1ce797c44a070abc94d42f3ae8548" 2707 + integrity sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w== 2659 2708 dependencies: 2660 2709 tslib "^2.4.0" 2661 2710 ··· 3968 4017 resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" 3969 4018 integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== 3970 4019 3971 - "@jridgewell/sourcemap-codec@^1.5.0": 4020 + "@jridgewell/sourcemap-codec@^1.5.0", "@jridgewell/sourcemap-codec@^1.5.5": 3972 4021 version "1.5.5" 3973 4022 resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz#6912b00d2c631c0d15ce1a7ab57cd657f2a8f8ba" 3974 4023 integrity sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== ··· 4131 4180 dependencies: 4132 4181 "@expo/image-utils" "^0.8.7" 4133 4182 xcode "^3.0.1" 4183 + 4184 + "@napi-rs/wasm-runtime@1.0.7": 4185 + version "1.0.7" 4186 + resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.0.7.tgz#dcfea99a75f06209a235f3d941e3460a51e9b14c" 4187 + integrity sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw== 4188 + dependencies: 4189 + "@emnapi/core" "^1.5.0" 4190 + "@emnapi/runtime" "^1.5.0" 4191 + "@tybys/wasm-util" "^0.10.1" 4134 4192 4135 4193 "@napi-rs/wasm-runtime@^0.2.11": 4136 4194 version "0.2.12" ··· 5072 5130 resolved "https://registry.yarnpkg.com/@remirror/core-constants/-/core-constants-3.0.0.tgz#96fdb89d25c62e7b6a5d08caf0ce5114370e3b8f" 5073 5131 integrity sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg== 5074 5132 5133 + "@rolldown/plugin-babel@^0.2.3": 5134 + version "0.2.3" 5135 + resolved "https://registry.yarnpkg.com/@rolldown/plugin-babel/-/plugin-babel-0.2.3.tgz#94f2c897285160aab1a7cfe827cbca1b7233e4f4" 5136 + integrity sha512-+zEk16yGlz1F9STiRr6uG9hmIXb6nprjLczV/htGptYuLoCuxb+itZ03RKCEeOhBpDDd1NU7qF6x1VLMUp62bw== 5137 + dependencies: 5138 + picomatch "^4.0.4" 5139 + 5140 + "@rollup/pluginutils@^4.0.0": 5141 + version "4.2.1" 5142 + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d" 5143 + integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== 5144 + dependencies: 5145 + estree-walker "^2.0.1" 5146 + picomatch "^2.2.2" 5147 + 5148 + "@rspack/binding-darwin-arm64@2.0.0-canary.20260120": 5149 + version "2.0.0-canary.20260120" 5150 + resolved "https://registry.yarnpkg.com/@rspack/binding-darwin-arm64/-/binding-darwin-arm64-2.0.0-canary.20260120.tgz#3343598fc04cdf69ed7dd6e10e02503c0e636ced" 5151 + integrity sha512-X2F5jgQaCYwzIAYtiLMnI0C0NqKZ6KTRDkTk4JbAcp11CtmVblV/Rjmc88J/LGONCuRizJ3w0nAb7kin6GJqJg== 5152 + 5153 + "@rspack/binding-darwin-x64@2.0.0-canary.20260120": 5154 + version "2.0.0-canary.20260120" 5155 + resolved "https://registry.yarnpkg.com/@rspack/binding-darwin-x64/-/binding-darwin-x64-2.0.0-canary.20260120.tgz#c821a591fe011e57d7acc2613290bc25f0baef7a" 5156 + integrity sha512-3uKTDyGsQdVSeYD4h0eAe83yMdwXbUiiRMHkztG83O67GyRvy0zfbrL81Q3Dzw28PwqUNuCoRLs6Jh8OpSa1Qg== 5157 + 5158 + "@rspack/binding-linux-arm64-gnu@2.0.0-canary.20260120": 5159 + version "2.0.0-canary.20260120" 5160 + resolved "https://registry.yarnpkg.com/@rspack/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-2.0.0-canary.20260120.tgz#8cefcdf3d8747cf4e7f0666d977d29dccbec126d" 5161 + integrity sha512-8ubyIJXbNulld06mwcmLsuKcfpGcOdBRCskXVgvM7oD4zxtIuAQhtP7G8NUllLSYi2Tx6R4p6gxtLFoNlO/uYg== 5162 + 5163 + "@rspack/binding-linux-arm64-musl@2.0.0-canary.20260120": 5164 + version "2.0.0-canary.20260120" 5165 + resolved "https://registry.yarnpkg.com/@rspack/binding-linux-arm64-musl/-/binding-linux-arm64-musl-2.0.0-canary.20260120.tgz#ab51d04c4dec3de0581d0e845171e8e01357db06" 5166 + integrity sha512-jA86zCDh9VyNTGMGqxV4M0PmflkcZRAPKfp+As5BV6Nh4rwvSujtPqmVDlU6anH7Axoj7f/Jq553vhZ6GgLKjw== 5167 + 5168 + "@rspack/binding-linux-x64-gnu@2.0.0-canary.20260120": 5169 + version "2.0.0-canary.20260120" 5170 + resolved "https://registry.yarnpkg.com/@rspack/binding-linux-x64-gnu/-/binding-linux-x64-gnu-2.0.0-canary.20260120.tgz#3b5e22fe2f15562ca65aa4d8c9d69e96bcaf7f95" 5171 + integrity sha512-y4WstUStLwCSDVWr+6AugzVx7oUhqyB442GS5L2W+trc1w5AkepRsxzOt+lvGY9LeDQzOqxRCc/UD3HcdLSgAw== 5172 + 5173 + "@rspack/binding-linux-x64-musl@2.0.0-canary.20260120": 5174 + version "2.0.0-canary.20260120" 5175 + resolved "https://registry.yarnpkg.com/@rspack/binding-linux-x64-musl/-/binding-linux-x64-musl-2.0.0-canary.20260120.tgz#9208f32c0e4e78b733aa20149673749b5d680bb0" 5176 + integrity sha512-b9A8Qj0IrHJA6NOu5SPKScSnkiKLX3Xte8SYyvDa6qFHqJlF8MgNPI8WeypmLDG2ZU+RHuWwYweJ+oxxrbwF1g== 5177 + 5178 + "@rspack/binding-wasm32-wasi@2.0.0-canary.20260120": 5179 + version "2.0.0-canary.20260120" 5180 + resolved "https://registry.yarnpkg.com/@rspack/binding-wasm32-wasi/-/binding-wasm32-wasi-2.0.0-canary.20260120.tgz#1100de7c0e68c3d5261d1a4218f089e76c05da98" 5181 + integrity sha512-mEE4Erxidto/ZzVvkrgptUdv9En13I2Lq6sYSNPCce8Ixp+C/8I5LdhU66brOn8HEZA8gqUEbdxiUfm/bLNKkQ== 5182 + dependencies: 5183 + "@napi-rs/wasm-runtime" "1.0.7" 5184 + 5185 + "@rspack/binding-win32-arm64-msvc@2.0.0-canary.20260120": 5186 + version "2.0.0-canary.20260120" 5187 + resolved "https://registry.yarnpkg.com/@rspack/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-2.0.0-canary.20260120.tgz#3a50d8aa232bfc0960f1752e759aac24283f7200" 5188 + integrity sha512-1tPdUkKNp9Qnc7GnMpfp8OfUfCB92W+gH8cR5cYHuYhWsCHzCDXAtEwFWhoDpU30ughCtJJqFf49idw6Onko+Q== 5189 + 5190 + "@rspack/binding-win32-ia32-msvc@2.0.0-canary.20260120": 5191 + version "2.0.0-canary.20260120" 5192 + resolved "https://registry.yarnpkg.com/@rspack/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-2.0.0-canary.20260120.tgz#d4bfa59cf5820fa5d7c0102a928b0594843071fb" 5193 + integrity sha512-5pifP0LMAfdjsXDt1C2EBgDY7eC+eZbJqlYi6bVKVUP8H0p7ymTigaMcCwtueUAcjB9DcBEuOFEs556uOiXSmQ== 5194 + 5195 + "@rspack/binding-win32-x64-msvc@2.0.0-canary.20260120": 5196 + version "2.0.0-canary.20260120" 5197 + resolved "https://registry.yarnpkg.com/@rspack/binding-win32-x64-msvc/-/binding-win32-x64-msvc-2.0.0-canary.20260120.tgz#e3ee45188e6ba7a024f4ed7718752890e5a6596a" 5198 + integrity sha512-Y9s1TVPc7QXMAM6fSnCD19thvs8FBrr9YjfFwCXpunpafL8G//4uHKX3e+blHnufQ4b6m9mVuAaVLZoOEt5cUw== 5199 + 5200 + "@rspack/binding@2.0.0-canary.20260120": 5201 + version "2.0.0-canary.20260120" 5202 + resolved "https://registry.yarnpkg.com/@rspack/binding/-/binding-2.0.0-canary.20260120.tgz#f4307ce193045b1082ac8b6b45d2a9d5b9d0de8a" 5203 + integrity sha512-ThlYyPI15EEqfwXYbnvlIgp+5GBF8Ert0zMgKrkwqRLSvhR3t1mM5rUVSTrtWSlPAkB7eJQcCNjMXGKgKuDkMA== 5204 + optionalDependencies: 5205 + "@rspack/binding-darwin-arm64" "2.0.0-canary.20260120" 5206 + "@rspack/binding-darwin-x64" "2.0.0-canary.20260120" 5207 + "@rspack/binding-linux-arm64-gnu" "2.0.0-canary.20260120" 5208 + "@rspack/binding-linux-arm64-musl" "2.0.0-canary.20260120" 5209 + "@rspack/binding-linux-x64-gnu" "2.0.0-canary.20260120" 5210 + "@rspack/binding-linux-x64-musl" "2.0.0-canary.20260120" 5211 + "@rspack/binding-wasm32-wasi" "2.0.0-canary.20260120" 5212 + "@rspack/binding-win32-arm64-msvc" "2.0.0-canary.20260120" 5213 + "@rspack/binding-win32-ia32-msvc" "2.0.0-canary.20260120" 5214 + "@rspack/binding-win32-x64-msvc" "2.0.0-canary.20260120" 5215 + 5216 + "@rspack/cli@^2.0.0-canary.20260120": 5217 + version "2.0.0-canary.20260120" 5218 + resolved "https://registry.yarnpkg.com/@rspack/cli/-/cli-2.0.0-canary.20260120.tgz#00a55726c9236068d52d8bcc3861f097bf8ec813" 5219 + integrity sha512-objBGcmKC12BZazBk/hXIgtUheEEr2YVBCakwAFQ7Fb4ju/+v8d+kc5myjRtSXxQ7tTgBkQObYZVQeBlKCruAw== 5220 + dependencies: 5221 + "@discoveryjs/json-ext" "^0.5.7" 5222 + exit-hook "^4.0.0" 5223 + 5224 + "@rspack/core@^2.0.0-canary.20260120": 5225 + version "2.0.0-canary.20260120" 5226 + resolved "https://registry.yarnpkg.com/@rspack/core/-/core-2.0.0-canary.20260120.tgz#9ec17c175f62140d99c0648f3cce5d62dd887a3c" 5227 + integrity sha512-KNcPDTo2bZuGTcjQBB+gnqHk/95UMvGAIDsAnakQy3gzXhHGHozVDLTOUBlAYSaMO/wzpzA3s8aR3ptWupntFg== 5228 + dependencies: 5229 + "@rspack/binding" "2.0.0-canary.20260120" 5230 + "@rspack/lite-tapable" "1.1.0" 5231 + 5232 + "@rspack/dev-middleware@2.0.0-beta.2": 5233 + version "2.0.0-beta.2" 5234 + resolved "https://registry.yarnpkg.com/@rspack/dev-middleware/-/dev-middleware-2.0.0-beta.2.tgz#a5bb784c9f85e6dff893950306df54a124fb0eeb" 5235 + integrity sha512-cbCcloAUYrb65LPd0HLhMKOWKasEM1rGXb4P9aonQcoODC9ThTdzUuZhXEwlGrinBDcMmOzEk9TYfTg9PDUevw== 5236 + 5237 + "@rspack/dev-server@^2.0.0-beta.7": 5238 + version "2.0.0-beta.7" 5239 + resolved "https://registry.yarnpkg.com/@rspack/dev-server/-/dev-server-2.0.0-beta.7.tgz#97ebc8f35c2d1b5a77c808d652397182b06791df" 5240 + integrity sha512-/keLmG2PITbCCeUqDspj2DtDyxOXqlhKG8IiG7FKUky9jgiiRWu6F3S1t7hD72XeSnrxYEyFdeJ7uVuMQ73j0A== 5241 + dependencies: 5242 + "@rspack/dev-middleware" "2.0.0-beta.2" 5243 + "@types/ws" "^8.18.1" 5244 + chokidar "^5.0.0" 5245 + connect-history-api-fallback "^2.0.0" 5246 + connect-next "^4.0.0" 5247 + http-proxy-middleware "^3.0.5" 5248 + ipaddr.js "^2.3.0" 5249 + serve-static "^2.2.1" 5250 + ws "^8.19.0" 5251 + 5252 + "@rspack/lite-tapable@1.1.0", "@rspack/lite-tapable@^1.0.1": 5253 + version "1.1.0" 5254 + resolved "https://registry.yarnpkg.com/@rspack/lite-tapable/-/lite-tapable-1.1.0.tgz#3cfdafeed01078e116bd4f191b684c8b484de425" 5255 + integrity sha512-E2B0JhYFmVAwdDiG14+DW0Di4Ze4Jg10Pc4/lILUrd5DRCaklduz2OvJ5HYQ6G+hd+WTzqQb3QnDNfK4yvAFYw== 5256 + 5075 5257 "@sentry-internal/browser-utils@8.55.0": 5076 5258 version "8.55.0" 5077 5259 resolved "https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-8.55.0.tgz#d89bae423edd29c39f01285c8e2d59ce9289d9a6" ··· 5112 5294 resolved "https://registry.yarnpkg.com/@sentry/babel-plugin-component-annotate/-/babel-plugin-component-annotate-4.1.1.tgz#371415afc602f6b2ba0987b51123bd34d1603193" 5113 5295 integrity sha512-HUpqrCK7zDVojTV6KL6BO9ZZiYrEYQqvYQrscyMsq04z+WCupXaH6YEliiNRvreR8DBJgdsG3lBRpebhUGmvfA== 5114 5296 5297 + "@sentry/babel-plugin-component-annotate@5.2.0": 5298 + version "5.2.0" 5299 + resolved "https://registry.yarnpkg.com/@sentry/babel-plugin-component-annotate/-/babel-plugin-component-annotate-5.2.0.tgz#6d6f3c47d7f795f5dfbb9b59abef6ab33e5e7f2d" 5300 + integrity sha512-8LbOI5Kzb5F0+7LVQPi2+zGz1iPiRRFhM+7uZ/ZQ33L9BmDOYNIy3xWxCfMw2JCuMXXaxF47XCjGmR22/B0WPg== 5301 + 5115 5302 "@sentry/browser@8.55.0": 5116 5303 version "8.55.0" 5117 5304 resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-8.55.0.tgz#9a489e2a54d29c65e6271b4ee594b43679cab7bd" ··· 5137 5324 magic-string "0.30.8" 5138 5325 unplugin "1.0.1" 5139 5326 5327 + "@sentry/bundler-plugin-core@5.2.0": 5328 + version "5.2.0" 5329 + resolved "https://registry.yarnpkg.com/@sentry/bundler-plugin-core/-/bundler-plugin-core-5.2.0.tgz#805ab7820b23d21ba5267e97db7300df35aede88" 5330 + integrity sha512-+C0x4gEIJRgoMwyRFGx+TFiJ1Po2BZlT1v61+PnouiaprKL5qtZG8n5PXx/5LPLDsVjSIcXjnDrTz9aSm8SJ3w== 5331 + dependencies: 5332 + "@babel/core" "^7.18.5" 5333 + "@sentry/babel-plugin-component-annotate" "5.2.0" 5334 + "@sentry/cli" "^2.58.5" 5335 + dotenv "^16.3.1" 5336 + find-up "^5.0.0" 5337 + glob "^13.0.6" 5338 + magic-string "~0.30.8" 5339 + 5140 5340 "@sentry/cli-darwin@2.42.2": 5141 5341 version "2.42.2" 5142 5342 resolved "https://registry.yarnpkg.com/@sentry/cli-darwin/-/cli-darwin-2.42.2.tgz#a32a4f226e717122b37d9969e8d4d0e14779f720" ··· 5147 5347 resolved "https://registry.yarnpkg.com/@sentry/cli-darwin/-/cli-darwin-2.51.1.tgz#3a1db065651893f72dad3a502b2d7c2f5e6a7dd8" 5148 5348 integrity sha512-R1u8IQdn/7Rr8sf6bVVr0vJT4OqwCFdYsS44Y3OoWGVJW2aAQTWRJOTlV4ueclVLAyUQzmgBjfR8AtiUhd/M5w== 5149 5349 5350 + "@sentry/cli-darwin@2.58.5": 5351 + version "2.58.5" 5352 + resolved "https://registry.yarnpkg.com/@sentry/cli-darwin/-/cli-darwin-2.58.5.tgz#ea9c4ab41161f15c636d0d2dcf126202cb49a588" 5353 + integrity sha512-lYrNzenZFJftfwSya7gwrHGxtE+Kob/e1sr9lmHMFOd4utDlmq0XFDllmdZAMf21fxcPRI1GL28ejZ3bId01fQ== 5354 + 5150 5355 "@sentry/cli-linux-arm64@2.42.2": 5151 5356 version "2.42.2" 5152 5357 resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.42.2.tgz#1c06c83ff21f51ec23acf5be3b1f8c7553bf86b1" ··· 5157 5362 resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.51.1.tgz#b4c957a06bafc13623c48971eadb0cff7d3662a3" 5158 5363 integrity sha512-nvA/hdhsw4bKLhslgbBqqvETjXwN1FVmwHLOrRvRcejDO6zeIKUElDiL5UOjGG0NC+62AxyNw5ri8Wzp/7rg9Q== 5159 5364 5365 + "@sentry/cli-linux-arm64@2.58.5": 5366 + version "2.58.5" 5367 + resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.58.5.tgz#38e866ee11ca88f6fb2164a6afd6cff4156b33d4" 5368 + integrity sha512-/4gywFeBqRB6tR/iGMRAJ3HRqY6Z7Yp4l8ZCbl0TDLAfHNxu7schEw4tSnm2/Hh9eNMiOVy4z58uzAWlZXAYBQ== 5369 + 5160 5370 "@sentry/cli-linux-arm@2.42.2": 5161 5371 version "2.42.2" 5162 5372 resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm/-/cli-linux-arm-2.42.2.tgz#00cadc359ae3c051efb3e63873c033c61dbd1ca1" ··· 5167 5377 resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm/-/cli-linux-arm-2.51.1.tgz#f761d0c58d27be503471cee4ffc41875a7d9430b" 5168 5378 integrity sha512-Klro17OmSSKOOSaxVKBBNPXet2+HrIDZUTSp8NRl4LQsIubdc1S/aQ79cH/g52Muwzpl3aFwPxyXw+46isfEgA== 5169 5379 5380 + "@sentry/cli-linux-arm@2.58.5": 5381 + version "2.58.5" 5382 + resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm/-/cli-linux-arm-2.58.5.tgz#12da36dd10166c09275b8a91366ad0906a8482fd" 5383 + integrity sha512-KtHweSIomYL4WVDrBrYSYJricKAAzxUgX86kc6OnlikbyOhoK6Fy8Vs6vwd52P6dvWPjgrMpUYjW2M5pYXQDUw== 5384 + 5170 5385 "@sentry/cli-linux-i686@2.42.2": 5171 5386 version "2.42.2" 5172 5387 resolved "https://registry.yarnpkg.com/@sentry/cli-linux-i686/-/cli-linux-i686-2.42.2.tgz#3b817b715dd806c20dfbffd539725ad8089c310a" ··· 5177 5392 resolved "https://registry.yarnpkg.com/@sentry/cli-linux-i686/-/cli-linux-i686-2.51.1.tgz#62baaf83c5995e478186289a45315d0acd5bd3bf" 5178 5393 integrity sha512-jp4TmR8VXBdT9dLo6mHniQHN0xKnmJoPGVz9h9VDvO2Vp/8o96rBc555D4Am5wJOXmfuPlyjGcmwHlB3+kQRWw== 5179 5394 5395 + "@sentry/cli-linux-i686@2.58.5": 5396 + version "2.58.5" 5397 + resolved "https://registry.yarnpkg.com/@sentry/cli-linux-i686/-/cli-linux-i686-2.58.5.tgz#9434360fb67fee3028886de2b143fbed93c627ac" 5398 + integrity sha512-G7261dkmyxqlMdyvyP06b+RTIVzp1gZNgglj5UksxSouSUqRd/46W/2pQeOMPhloDYo9yLtCN2YFb3Mw4aUsWw== 5399 + 5180 5400 "@sentry/cli-linux-x64@2.42.2": 5181 5401 version "2.42.2" 5182 5402 resolved "https://registry.yarnpkg.com/@sentry/cli-linux-x64/-/cli-linux-x64-2.42.2.tgz#ddf906bc3071cc79ce6e633eddcb76bb9068e688" ··· 5187 5407 resolved "https://registry.yarnpkg.com/@sentry/cli-linux-x64/-/cli-linux-x64-2.51.1.tgz#0010fe24ad8ef492a917c12feb351ba768e72603" 5188 5408 integrity sha512-JuLt0MXM2KHNFmjqXjv23sly56mJmUQzGBWktkpY3r+jE08f5NLKPd5wQ6W/SoLXGIOKnwLz0WoUg7aBVyQdeQ== 5189 5409 5410 + "@sentry/cli-linux-x64@2.58.5": 5411 + version "2.58.5" 5412 + resolved "https://registry.yarnpkg.com/@sentry/cli-linux-x64/-/cli-linux-x64-2.58.5.tgz#405d1740dd2774d7f139e217f628d11e7446fd04" 5413 + integrity sha512-rP04494RSmt86xChkQ+ecBNRYSPbyXc4u0IA7R7N1pSLCyO74e5w5Al+LnAq35cMfVbZgz5Sm0iGLjyiUu4I1g== 5414 + 5190 5415 "@sentry/cli-win32-arm64@2.51.1": 5191 5416 version "2.51.1" 5192 5417 resolved "https://registry.yarnpkg.com/@sentry/cli-win32-arm64/-/cli-win32-arm64-2.51.1.tgz#0894f9a91e6ecb3021ca09fe644f995ff4ff826d" 5193 5418 integrity sha512-PiwjTdIFDazTQCTyDCutiSkt4omggYSKnO3HE1+LDjElsFrWY9pJs4fU3D40WAyE2oKu0MarjNH/WxYGdqEAlg== 5194 5419 5420 + "@sentry/cli-win32-arm64@2.58.5": 5421 + version "2.58.5" 5422 + resolved "https://registry.yarnpkg.com/@sentry/cli-win32-arm64/-/cli-win32-arm64-2.58.5.tgz#0807783f9fa67b32703154533c31c09355149d3c" 5423 + integrity sha512-AOJ2nCXlQL1KBaCzv38m3i2VmSHNurUpm7xVKd6yAHX+ZoVBI8VT0EgvwmtJR2TY2N2hNCC7UrgRmdUsQ152bA== 5424 + 5195 5425 "@sentry/cli-win32-i686@2.42.2": 5196 5426 version "2.42.2" 5197 5427 resolved "https://registry.yarnpkg.com/@sentry/cli-win32-i686/-/cli-win32-i686-2.42.2.tgz#9036085c7c6ce455ad45fda411c55ff39c06eb95" ··· 5202 5432 resolved "https://registry.yarnpkg.com/@sentry/cli-win32-i686/-/cli-win32-i686-2.51.1.tgz#6a6c6402cdce4fd038716b2c1e0bfa788b54f3e9" 5203 5433 integrity sha512-TMvZZpeiI2HmrDFNVQ0uOiTuYKvjEGOZdmUxe3WlhZW82A/2Oka7sQ24ljcOovbmBOj5+fjCHRUMYvLMCWiysA== 5204 5434 5435 + "@sentry/cli-win32-i686@2.58.5": 5436 + version "2.58.5" 5437 + resolved "https://registry.yarnpkg.com/@sentry/cli-win32-i686/-/cli-win32-i686-2.58.5.tgz#79586eab70341ebde3bbcb0be6d436da3840ef64" 5438 + integrity sha512-EsuboLSOnlrN7MMPJ1eFvfMDm+BnzOaSWl8eYhNo8W/BIrmNgpRUdBwnWn9Q2UOjJj5ZopukmsiMYtU/D7ml9g== 5439 + 5205 5440 "@sentry/cli-win32-x64@2.42.2": 5206 5441 version "2.42.2" 5207 5442 resolved "https://registry.yarnpkg.com/@sentry/cli-win32-x64/-/cli-win32-x64-2.42.2.tgz#7d6464b63f32c9f97fff428f246b1f039b402233" ··· 5211 5446 version "2.51.1" 5212 5447 resolved "https://registry.yarnpkg.com/@sentry/cli-win32-x64/-/cli-win32-x64-2.51.1.tgz#d361e37146c9269d40c37459271a6c2cfa1fa8a6" 5213 5448 integrity sha512-v2hreYUPPTNK1/N7+DeX7XBN/zb7p539k+2Osf0HFyVBaoUC3Y3+KBwSf4ASsnmgTAK7HCGR+X0NH1vP+icw4w== 5449 + 5450 + "@sentry/cli-win32-x64@2.58.5": 5451 + version "2.58.5" 5452 + resolved "https://registry.yarnpkg.com/@sentry/cli-win32-x64/-/cli-win32-x64-2.58.5.tgz#4937c0821abfd346da50a3cf1ecbd752f75f8ef4" 5453 + integrity sha512-IZf+XIMiQwj+5NzqbOQfywlOitmCV424Vtf9c+ep61AaVScUFD1TSrQbOcJJv5xGxhlxNOMNgMeZhdexdzrKZg== 5214 5454 5215 5455 "@sentry/cli@2.42.2": 5216 5456 version "2.42.2" ··· 5250 5490 "@sentry/cli-win32-arm64" "2.51.1" 5251 5491 "@sentry/cli-win32-i686" "2.51.1" 5252 5492 "@sentry/cli-win32-x64" "2.51.1" 5493 + 5494 + "@sentry/cli@^2.58.5": 5495 + version "2.58.5" 5496 + resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-2.58.5.tgz#160a89235ba2add4c198f666d8c14547a1459ae8" 5497 + integrity sha512-tavJ7yGUZV+z3Ct2/ZB6mg339i08sAk6HDkgqmSRuQEu2iLS5sl9HIvuXfM6xjv8fwlgFOSy++WNABNAcGHUbg== 5498 + dependencies: 5499 + https-proxy-agent "^5.0.0" 5500 + node-fetch "^2.6.7" 5501 + progress "^2.0.3" 5502 + proxy-from-env "^1.1.0" 5503 + which "^2.0.2" 5504 + optionalDependencies: 5505 + "@sentry/cli-darwin" "2.58.5" 5506 + "@sentry/cli-linux-arm" "2.58.5" 5507 + "@sentry/cli-linux-arm64" "2.58.5" 5508 + "@sentry/cli-linux-i686" "2.58.5" 5509 + "@sentry/cli-linux-x64" "2.58.5" 5510 + "@sentry/cli-win32-arm64" "2.58.5" 5511 + "@sentry/cli-win32-i686" "2.58.5" 5512 + "@sentry/cli-win32-x64" "2.58.5" 5253 5513 5254 5514 "@sentry/core@8.55.0": 5255 5515 version "8.55.0" ··· 5278 5538 "@sentry/core" "8.55.0" 5279 5539 hoist-non-react-statics "^3.3.2" 5280 5540 5541 + "@sentry/rollup-plugin@5.2.0": 5542 + version "5.2.0" 5543 + resolved "https://registry.yarnpkg.com/@sentry/rollup-plugin/-/rollup-plugin-5.2.0.tgz#41601fa35fdcf9a43cff9807cdca012780d2fd5b" 5544 + integrity sha512-a8LfpvcYMFtFSroro5MpCcOoS528LeLfUHzxWURnpofOnY+Aso9Si4y4dFlna+RKqxCXjmFbn6CLnfI+YrHysQ== 5545 + dependencies: 5546 + "@sentry/bundler-plugin-core" "5.2.0" 5547 + magic-string "~0.30.8" 5548 + 5281 5549 "@sentry/types@8.55.0": 5282 5550 version "8.55.0" 5283 5551 resolved "https://registry.yarnpkg.com/@sentry/types/-/types-8.55.0.tgz#af157791277c09debaca278c02522bd5bd548c32" ··· 5292 5560 dependencies: 5293 5561 "@sentry/core" "8.55.0" 5294 5562 5563 + "@sentry/vite-plugin@^5.2.0": 5564 + version "5.2.0" 5565 + resolved "https://registry.yarnpkg.com/@sentry/vite-plugin/-/vite-plugin-5.2.0.tgz#eca4c5eebe00696ded98e055f185faf846886f19" 5566 + integrity sha512-4Jo3ixBspso5HY81PDvZdRXkH9wYGVmcw/0a2IX9ejbyKBdHqkYg4IhAtNqGUAyGuHwwRS9Y1S+sCMvrXv6htw== 5567 + dependencies: 5568 + "@sentry/bundler-plugin-core" "5.2.0" 5569 + "@sentry/rollup-plugin" "5.2.0" 5570 + 5295 5571 "@sentry/webpack-plugin@^3.2.2": 5296 5572 version "3.2.2" 5297 5573 resolved "https://registry.yarnpkg.com/@sentry/webpack-plugin/-/webpack-plugin-3.2.2.tgz#716ab462279c25cea17490d02cb1d22b00f3f661" ··· 5320 5596 dependencies: 5321 5597 "@sinonjs/commons" "^3.0.0" 5322 5598 5599 + "@swc/core-darwin-arm64@1.15.24": 5600 + version "1.15.24" 5601 + resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.24.tgz#e812659bb23c5a078c05c8b18aad25e9d3a12e39" 5602 + integrity sha512-uM5ZGfFXjtvtJ+fe448PVBEbn/CSxS3UAyLj3O9xOqKIWy3S6hPTXSPbszxkSsGDYKi+YFhzAsR4r/eXLxEQ0g== 5603 + 5604 + "@swc/core-darwin-x64@1.15.24": 5605 + version "1.15.24" 5606 + resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.15.24.tgz#99e38bdb00a6975d54471f77c345b4ee9bbb4502" 5607 + integrity sha512-fMIb/Zfn929pw25VMBhV7Ji2Dl+lCWtUPNdYJQYOke+00E5fcQ9ynxtP8+qhUo/HZc+mYQb1gJxwHM9vty+lXg== 5608 + 5609 + "@swc/core-linux-arm-gnueabihf@1.15.24": 5610 + version "1.15.24" 5611 + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.24.tgz#3555ef64268825e4975409b7ed3e9f614e2f9759" 5612 + integrity sha512-vOkjsyjjxnoYx3hMEWcGxQrMgnNrRm6WAegBXrN8foHtDAR+zpdhpGF5a4lj1bNPgXAvmysjui8cM1ov/Clkaw== 5613 + 5614 + "@swc/core-linux-arm64-gnu@1.15.24": 5615 + version "1.15.24" 5616 + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.24.tgz#15677103362e56826bb8bc4e15090228f81ef448" 5617 + integrity sha512-h/oNu+upkXJ6Cicnq7YGVj9PkdfarLCdQa8l/FlHYvfv8CEiMaeeTnpLU7gSBH/rGxosM6Qkfa/J9mThGF9CLA== 5618 + 5619 + "@swc/core-linux-arm64-musl@1.15.24": 5620 + version "1.15.24" 5621 + resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.24.tgz#d1655edac4d0101b9c21193770fb8642ced7ef37" 5622 + integrity sha512-ZpF/pRe1guk6sKzQI9D1jAORtjTdNlyeXn9GDz8ophof/w2WhojRblvSDJaGe7rJjcPN8AaOkhwdRUh7q8oYIg== 5623 + 5624 + "@swc/core-linux-ppc64-gnu@1.15.24": 5625 + version "1.15.24" 5626 + resolved "https://registry.yarnpkg.com/@swc/core-linux-ppc64-gnu/-/core-linux-ppc64-gnu-1.15.24.tgz#65dc9265686cc24a63d5d8a41a01efe432993181" 5627 + integrity sha512-QZEsZfisHTSJlmyChgDFNmKPb3W6Lhbfo/O76HhIngfEdnQNmukS38/VSe1feho+xkV5A5hETyCbx3sALBZKAQ== 5628 + 5629 + "@swc/core-linux-s390x-gnu@1.15.24": 5630 + version "1.15.24" 5631 + resolved "https://registry.yarnpkg.com/@swc/core-linux-s390x-gnu/-/core-linux-s390x-gnu-1.15.24.tgz#89c575dbfa39fde1d83033bf4d13e1bf93c93f45" 5632 + integrity sha512-DLdJKVsJgglqQrJBuoUYNmzm3leI7kUZhLbZGHv42onfKsGf6JDS3+bzCUQfte/XOqDjh/tmmn1DR/CF/tCJFw== 5633 + 5634 + "@swc/core-linux-x64-gnu@1.15.24": 5635 + version "1.15.24" 5636 + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.24.tgz#5275c0b24b01b26fdb7a1b5da6bd062d94f9581f" 5637 + integrity sha512-IpLYfposPA/XLxYOKpRfeccl1p5dDa3+okZDHHTchBkXEaVCnq5MADPmIWwIYj1tudt7hORsEHccG5no6IUQRw== 5638 + 5639 + "@swc/core-linux-x64-musl@1.15.24": 5640 + version "1.15.24" 5641 + resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.24.tgz#e65e6f0d7215ded63c0711c2284fe13127772209" 5642 + integrity sha512-JHy3fMSc0t/EPWgo74+OK5TGr51aElnzqfUPaiRf2qJ/BfX5CUCfMiWVBuhI7qmVMBnk1jTRnL/xZnOSHDPLYg== 5643 + 5644 + "@swc/core-win32-arm64-msvc@1.15.24": 5645 + version "1.15.24" 5646 + resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.24.tgz#12dff91f148bc4e2e48d7990f175f108199f6f0d" 5647 + integrity sha512-Txj+qUH1z2bUd1P3JvwByfjKFti3cptlAxhWgmunBUUxy/IW3CXLZ6l6Gk4liANadKkU71nIU1X30Z5vpMT3BA== 5648 + 5649 + "@swc/core-win32-ia32-msvc@1.15.24": 5650 + version "1.15.24" 5651 + resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.24.tgz#eb3747533a3c078bfee5d857b086774647506a4a" 5652 + integrity sha512-15D/nl3XwrhFpMv+MADFOiVwv3FvH9j8c6Rf8EXBT3Q5LoMh8YnDnSgPYqw1JzPnksvsBX6QPXLiPqmcR/Z4qQ== 5653 + 5654 + "@swc/core-win32-x64-msvc@1.15.24": 5655 + version "1.15.24" 5656 + resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.24.tgz#a0ad3bb9b8755093efe656299aa167138a589708" 5657 + integrity sha512-PR0PlTlPra2JbaDphrOAzm6s0v9rA0F17YzB+XbWD95B4g2cWcZY9LAeTa4xll70VLw9Jr7xBrlohqlQmelMFQ== 5658 + 5659 + "@swc/core@^1.15.24": 5660 + version "1.15.24" 5661 + resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.15.24.tgz#258dd1f74c662d9a2535fcfa2aa8ff30fd23883d" 5662 + integrity sha512-5Hj8aNasue7yusUt8LGCUe/AjM7RMAce8ZoyDyiFwx7Al+GbYKL+yE7g4sJk8vEr1dKIkTRARkNIJENc4CjkBQ== 5663 + dependencies: 5664 + "@swc/counter" "^0.1.3" 5665 + "@swc/types" "^0.1.26" 5666 + optionalDependencies: 5667 + "@swc/core-darwin-arm64" "1.15.24" 5668 + "@swc/core-darwin-x64" "1.15.24" 5669 + "@swc/core-linux-arm-gnueabihf" "1.15.24" 5670 + "@swc/core-linux-arm64-gnu" "1.15.24" 5671 + "@swc/core-linux-arm64-musl" "1.15.24" 5672 + "@swc/core-linux-ppc64-gnu" "1.15.24" 5673 + "@swc/core-linux-s390x-gnu" "1.15.24" 5674 + "@swc/core-linux-x64-gnu" "1.15.24" 5675 + "@swc/core-linux-x64-musl" "1.15.24" 5676 + "@swc/core-win32-arm64-msvc" "1.15.24" 5677 + "@swc/core-win32-ia32-msvc" "1.15.24" 5678 + "@swc/core-win32-x64-msvc" "1.15.24" 5679 + 5680 + "@swc/counter@^0.1.3": 5681 + version "0.1.3" 5682 + resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9" 5683 + integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== 5684 + 5685 + "@swc/types@^0.1.26": 5686 + version "0.1.26" 5687 + resolved "https://registry.yarnpkg.com/@swc/types/-/types-0.1.26.tgz#2a976a1870caef1992316dda1464150ee36968b5" 5688 + integrity sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw== 5689 + dependencies: 5690 + "@swc/counter" "^0.1.3" 5691 + 5323 5692 "@tanstack/query-async-storage-persister@^5.96.2": 5324 5693 version "5.96.2" 5325 5694 resolved "https://registry.yarnpkg.com/@tanstack/query-async-storage-persister/-/query-async-storage-persister-5.96.2.tgz#29423b35f2d8c5f63afbf72475baa7799ffaf022" ··· 5475 5844 resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" 5476 5845 integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== 5477 5846 5478 - "@tybys/wasm-util@^0.10.0": 5847 + "@tybys/wasm-util@^0.10.0", "@tybys/wasm-util@^0.10.1": 5479 5848 version "0.10.1" 5480 5849 resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz#ecddd3205cf1e2d5274649ff0eedd2991ed7f414" 5481 5850 integrity sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg== ··· 5626 5995 resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.1.tgz#20172f9578b225f6c7da63446f56d4ce108d5a65" 5627 5996 integrity sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ== 5628 5997 5998 + "@types/http-proxy@^1.17.15": 5999 + version "1.17.17" 6000 + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.17.tgz#d9e2c4571fe3507343cb210cd41790375e59a533" 6001 + integrity sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw== 6002 + dependencies: 6003 + "@types/node" "*" 6004 + 5629 6005 "@types/http-proxy@^1.17.8": 5630 6006 version "1.17.11" 5631 6007 resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.11.tgz#0ca21949a5588d55ac2b659b69035c84bd5da293" ··· 5821 6197 version "0.0.6" 5822 6198 resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz#60be8d21baab8c305132eb9cb912ed497852aadc" 5823 6199 integrity sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg== 6200 + 6201 + "@types/ws@^8.18.1": 6202 + version "8.18.1" 6203 + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.18.1.tgz#48464e4bf2ddfd17db13d845467f6070ffea4aa9" 6204 + integrity sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg== 6205 + dependencies: 6206 + "@types/node" "*" 5824 6207 5825 6208 "@types/ws@^8.5.5": 5826 6209 version "8.5.5" ··· 6055 6438 "@urql/core" "^5.0.0" 6056 6439 wonka "^6.3.2" 6057 6440 6058 - "@uwx/exif-be-gone-web@1.6.6": 6059 - version "1.6.6" 6060 - resolved "https://registry.yarnpkg.com/@uwx/exif-be-gone-web/-/exif-be-gone-web-1.6.6.tgz#a2593a0dd19811a64e2386bae56d9b8343dba036" 6061 - integrity sha512-MTJ+TDh4Ez1DUVSuy1huh7DTl5HiDRfNMT7Mt6/Y/4eKGhHNlyQjcB9iyP6pg/JSh67yuF4Absux3yBfHtxTWw== 6441 + "@uwx/exif-be-gone-web@1.6.7": 6442 + version "1.6.7" 6443 + resolved "https://registry.yarnpkg.com/@uwx/exif-be-gone-web/-/exif-be-gone-web-1.6.7.tgz#617be556bbff9e95b257dbc7126324802ff7aa78" 6444 + integrity sha512-3JXz1ykXKeaHQB3bI5m9RdaQInMlBeuxtkldD9ajEzg2t7EAsArT1SFnjWsEEJMde4UtaDIr1XEKiClNmAL3hw== 6062 6445 dependencies: 6063 6446 fflate "^0.8.2" 6064 6447 uint8-encoding "^2.0.1" ··· 6643 7026 object-is "^1.0.1" 6644 7027 util "^0.12.0" 6645 7028 7029 + ast-matcher@^1.1.1: 7030 + version "1.2.0" 7031 + resolved "https://registry.yarnpkg.com/ast-matcher/-/ast-matcher-1.2.0.tgz#8f186f069d3670f5cfbe185208c33861917d8e1d" 7032 + integrity sha512-utVZ8dtrpkeWMntA9u0MZV4Qh4uj+0ePxqVRaBAfLW0HAMf+kx2AX64W8B6pLK1Pcrt+sPoBPtH6j0thqsSkcQ== 7033 + 6646 7034 ast-types-flow@^0.0.7: 6647 7035 version "0.0.7" 6648 7036 resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" ··· 6701 7089 graceful-fs "^4.2.9" 6702 7090 slash "^3.0.0" 6703 7091 7092 + babel-loader@^10.1.1: 7093 + version "10.1.1" 7094 + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-10.1.1.tgz#ce9748e85b7071eb88006e3cfa9e6cf14eeb97c5" 7095 + integrity sha512-JwKSzk2kjIe7mgPK+/lyZ2QAaJcpahNAdM+hgR2HI8D0OJVkdj8Rl6J3kaLYki9pwF7P2iWnD8qVv80Lq1ABtg== 7096 + dependencies: 7097 + find-up "^5.0.0" 7098 + 6704 7099 babel-loader@^8.3.0: 6705 7100 version "8.3.0" 6706 7101 resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8" ··· 7259 7654 optionalDependencies: 7260 7655 fsevents "~2.3.2" 7261 7656 7657 + chokidar@^5.0.0: 7658 + version "5.0.0" 7659 + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-5.0.0.tgz#949c126a9238a80792be9a0265934f098af369a5" 7660 + integrity sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw== 7661 + dependencies: 7662 + readdirp "^5.0.0" 7663 + 7262 7664 chownr@^3.0.0: 7263 7665 version "3.0.0" 7264 7666 resolved "https://registry.yarnpkg.com/chownr/-/chownr-3.0.0.tgz#9855e64ecd240a9cc4267ce8a4aa5d24a1da15e4" ··· 7556 7958 resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" 7557 7959 integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== 7558 7960 7961 + connect-next@^4.0.0: 7962 + version "4.0.1" 7963 + resolved "https://registry.yarnpkg.com/connect-next/-/connect-next-4.0.1.tgz#4063d92c11cdc58bca371c074ff24539468ae3a4" 7964 + integrity sha512-nkHJWto78sXAooScrgvRt9E9omtwHBUTjCWRgxe3NbwNVC9cW4Lu0il0m2O867pgzJV66YXi2tXtSPtZy3Zmeg== 7965 + 7559 7966 connect@^3.6.5, connect@^3.7.0: 7560 7967 version "3.7.0" 7561 7968 resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" ··· 7960 8367 dependencies: 7961 8368 ms "^2.1.1" 7962 8369 7963 - debug@^4.2.0, debug@^4.4.1, debug@^4.4.3: 8370 + debug@^4.2.0, debug@^4.3.6, debug@^4.4.1, debug@^4.4.3: 7964 8371 version "4.4.3" 7965 8372 resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" 7966 8373 integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== ··· 8093 8500 resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 8094 8501 integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== 8095 8502 8096 - depd@2.0.0: 8503 + depd@2.0.0, depd@~2.0.0: 8097 8504 version "2.0.0" 8098 8505 resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 8099 8506 integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== ··· 8347 8754 resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 8348 8755 integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 8349 8756 8757 + encodeurl@^2.0.0, encodeurl@~2.0.0: 8758 + version "2.0.0" 8759 + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" 8760 + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== 8761 + 8350 8762 encodeurl@~1.0.2: 8351 8763 version "1.0.2" 8352 8764 resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 8353 8765 integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== 8354 8766 8355 - encodeurl@~2.0.0: 8356 - version "2.0.0" 8357 - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" 8358 - integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== 8359 - 8360 8767 enhanced-resolve@^5.15.0: 8361 8768 version "5.15.0" 8362 8769 resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" ··· 8758 9165 resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" 8759 9166 integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== 8760 9167 8761 - escape-html@~1.0.3: 9168 + escape-html@^1.0.3, escape-html@~1.0.3: 8762 9169 version "1.0.3" 8763 9170 resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 8764 9171 integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== ··· 9024 9431 version "5.3.0" 9025 9432 resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 9026 9433 integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 9434 + 9435 + estree-walker@^2.0.1: 9436 + version "2.0.2" 9437 + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 9438 + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 9027 9439 9028 9440 esutils@^2.0.2: 9029 9441 version "2.0.3" 9030 9442 resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 9031 9443 integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 9032 9444 9033 - etag@~1.8.1: 9445 + etag@^1.8.1, etag@~1.8.1: 9034 9446 version "1.8.1" 9035 9447 resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 9036 9448 integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== ··· 9089 9501 onetime "^5.1.2" 9090 9502 signal-exit "^3.0.3" 9091 9503 strip-final-newline "^2.0.0" 9504 + 9505 + exit-hook@^4.0.0: 9506 + version "4.0.0" 9507 + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-4.0.0.tgz#c1e16ebd03d3166f837b1502dac755bb5c460d58" 9508 + integrity sha512-Fqs7ChZm72y40wKjOFXBKg7nJZvQJmewP5/7LtePDdnah/+FH9Hp5sgMujSCMPXlxOAW2//1jrW9pnsY7o20vQ== 9092 9509 9093 9510 exit@^0.1.2: 9094 9511 version "0.1.2" ··· 9802 10219 resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 9803 10220 integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== 9804 10221 10222 + fresh@^2.0.0: 10223 + version "2.0.0" 10224 + resolved "https://registry.yarnpkg.com/fresh/-/fresh-2.0.0.tgz#8dd7df6a1b3a1b3a5cf186c05a5dd267622635a4" 10225 + integrity sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A== 10226 + 9805 10227 fs-extra@^10.0.0: 9806 10228 version "10.1.0" 9807 10229 resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" ··· 10032 10454 minipass "^7.1.2" 10033 10455 path-scurry "^2.0.0" 10034 10456 10035 - glob@^13.0.3: 10457 + glob@^13.0.6: 10036 10458 version "13.0.6" 10037 10459 resolved "https://registry.yarnpkg.com/glob/-/glob-13.0.6.tgz#078666566a425147ccacfbd2e332deb66a2be71d" 10038 10460 integrity sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw== ··· 10374 10796 statuses "2.0.1" 10375 10797 toidentifier "1.0.1" 10376 10798 10799 + http-errors@^2.0.1: 10800 + version "2.0.1" 10801 + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.1.tgz#36d2f65bc909c8790018dd36fb4d93da6caae06b" 10802 + integrity sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ== 10803 + dependencies: 10804 + depd "~2.0.0" 10805 + inherits "~2.0.4" 10806 + setprototypeof "~1.2.0" 10807 + statuses "~2.0.2" 10808 + toidentifier "~1.0.1" 10809 + 10377 10810 http-errors@~1.6.2: 10378 10811 version "1.6.3" 10379 10812 resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" ··· 10409 10842 is-plain-obj "^3.0.0" 10410 10843 micromatch "^4.0.2" 10411 10844 10845 + http-proxy-middleware@^3.0.5: 10846 + version "3.0.5" 10847 + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-3.0.5.tgz#9dcde663edc44079bc5a9c63e03fe5e5d6037fab" 10848 + integrity sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg== 10849 + dependencies: 10850 + "@types/http-proxy" "^1.17.15" 10851 + debug "^4.3.6" 10852 + http-proxy "^1.18.1" 10853 + is-glob "^4.0.3" 10854 + is-plain-object "^5.0.0" 10855 + micromatch "^4.0.8" 10856 + 10412 10857 http-proxy@^1.18.1: 10413 10858 version "1.18.1" 10414 10859 resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" ··· 10544 10989 once "^1.3.0" 10545 10990 wrappy "1" 10546 10991 10547 - inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: 10992 + inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: 10548 10993 version "2.0.4" 10549 10994 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 10550 10995 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ··· 10600 11045 version "2.1.0" 10601 11046 resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f" 10602 11047 integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== 11048 + 11049 + ipaddr.js@^2.3.0: 11050 + version "2.3.0" 11051 + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.3.0.tgz#71dce70e1398122208996d1c22f2ba46a24b1abc" 11052 + integrity sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg== 10603 11053 10604 11054 is-alphabetical@^2.0.0: 10605 11055 version "2.0.1" ··· 12182 12632 dependencies: 12183 12633 "@jridgewell/sourcemap-codec" "^1.4.15" 12184 12634 12635 + magic-string@^0.25.7: 12636 + version "0.25.9" 12637 + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" 12638 + integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== 12639 + dependencies: 12640 + sourcemap-codec "^1.4.8" 12641 + 12642 + magic-string@~0.30.8: 12643 + version "0.30.21" 12644 + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.21.tgz#56763ec09a0fa8091df27879fd94d19078c00d91" 12645 + integrity sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ== 12646 + dependencies: 12647 + "@jridgewell/sourcemap-codec" "^1.5.5" 12648 + 12185 12649 make-dir@^3.0.2, make-dir@^3.1.0: 12186 12650 version "3.1.0" 12187 12651 resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" ··· 12520 12984 resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 12521 12985 integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 12522 12986 12987 + mime-db@^1.54.0: 12988 + version "1.54.0" 12989 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.54.0.tgz#cddb3ee4f9c64530dff640236661d42cb6a314f5" 12990 + integrity sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ== 12991 + 12523 12992 mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: 12524 12993 version "2.1.35" 12525 12994 resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" ··· 12527 12996 dependencies: 12528 12997 mime-db "1.52.0" 12529 12998 12999 + mime-types@^3.0.2: 13000 + version "3.0.2" 13001 + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-3.0.2.tgz#39002d4182575d5af036ffa118100f2524b2e2ab" 13002 + integrity sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A== 13003 + dependencies: 13004 + mime-db "^1.54.0" 13005 + 12530 13006 mime@1.6.0: 12531 13007 version "1.6.0" 12532 13008 resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" ··· 12981 13457 resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" 12982 13458 integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== 12983 13459 12984 - on-finished@2.4.1: 13460 + on-finished@2.4.1, on-finished@^2.4.1: 12985 13461 version "2.4.1" 12986 13462 resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" 12987 13463 integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== ··· 13200 13676 dependencies: 13201 13677 entities "^4.4.0" 13202 13678 13203 - parseurl@~1.3.2, parseurl@~1.3.3: 13679 + parseurl@^1.3.3, parseurl@~1.3.2, parseurl@~1.3.3: 13204 13680 version "1.3.3" 13205 13681 resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 13206 13682 integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== ··· 13327 13803 resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 13328 13804 integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 13329 13805 13806 + picomatch@^2.2.2: 13807 + version "2.3.2" 13808 + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.2.tgz#5a942915e26b372dc0f0e6753149a16e6b1c5601" 13809 + integrity sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA== 13810 + 13330 13811 picomatch@^3.0.1: 13331 13812 version "3.0.1" 13332 13813 resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-3.0.1.tgz#817033161def55ec9638567a2f3bbc876b3e7516" ··· 13336 13817 version "4.0.3" 13337 13818 resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042" 13338 13819 integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q== 13820 + 13821 + picomatch@^4.0.4: 13822 + version "4.0.4" 13823 + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.4.tgz#fd6f5e00a143086e074dffe4c924b8fb293b0589" 13824 + integrity sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A== 13339 13825 13340 13826 pidtree@0.6.0: 13341 13827 version "0.6.0" ··· 14483 14969 string_decoder "^1.1.1" 14484 14970 util-deprecate "^1.0.1" 14485 14971 14972 + readdirp@^5.0.0: 14973 + version "5.0.0" 14974 + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-5.0.0.tgz#fbf1f71a727891d685bb1786f9ba74084f6e2f91" 14975 + integrity sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ== 14976 + 14486 14977 readdirp@~3.5.0: 14487 14978 version "3.5.0" 14488 14979 resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" ··· 14825 15316 glob "^13.0.3" 14826 15317 package-json-from-dist "^1.0.1" 14827 15318 15319 + rollup-plugin-define@^1.0.1: 15320 + version "1.0.1" 15321 + resolved "https://registry.yarnpkg.com/rollup-plugin-define/-/rollup-plugin-define-1.0.1.tgz#45b027cec9d2e30df71118efa156170e3846fd3d" 15322 + integrity sha512-SM/CKFpLvWq5xBEf84ff/ooT3KodXPVITCkRliyNccuq8SZMpzthN/Bp7JkWScbGTX5lo1SF3cjxKKDjnnFCuA== 15323 + dependencies: 15324 + "@rollup/pluginutils" "^4.0.0" 15325 + ast-matcher "^1.1.1" 15326 + escape-string-regexp "^4.0.0" 15327 + magic-string "^0.25.7" 15328 + 14828 15329 rope-sequence@^1.3.0: 14829 15330 version "1.3.4" 14830 15331 resolved "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.4.tgz#df85711aaecd32f1e756f76e43a415171235d425" 14831 15332 integrity sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ== 15333 + 15334 + rspack-manifest-plugin@^5.2.1: 15335 + version "5.2.1" 15336 + resolved "https://registry.yarnpkg.com/rspack-manifest-plugin/-/rspack-manifest-plugin-5.2.1.tgz#e685c228ec60c65efec8f6bcf93e701c7efb9eee" 15337 + integrity sha512-H3qyCumiEiWy9zhcPIYPr3J3SWyvypVJJY5wxjG5L8gYny6dfNHfk0gyICg1tGO+g4uQzvVHER875ek/I/J8UA== 15338 + dependencies: 15339 + "@rspack/lite-tapable" "^1.0.1" 14832 15340 14833 15341 rtl-detect@^1.0.2: 14834 15342 version "1.0.4" ··· 15055 15563 range-parser "~1.2.1" 15056 15564 statuses "2.0.1" 15057 15565 15566 + send@^1.2.0: 15567 + version "1.2.1" 15568 + resolved "https://registry.yarnpkg.com/send/-/send-1.2.1.tgz#9eab743b874f3550f40a26867bf286ad60d3f3ed" 15569 + integrity sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ== 15570 + dependencies: 15571 + debug "^4.4.3" 15572 + encodeurl "^2.0.0" 15573 + escape-html "^1.0.3" 15574 + etag "^1.8.1" 15575 + fresh "^2.0.0" 15576 + http-errors "^2.0.1" 15577 + mime-types "^3.0.2" 15578 + ms "^2.1.3" 15579 + on-finished "^2.4.1" 15580 + range-parser "^1.2.1" 15581 + statuses "^2.0.2" 15582 + 15058 15583 serialize-error@^2.1.0: 15059 15584 version "2.1.0" 15060 15585 resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" ··· 15099 15624 escape-html "~1.0.3" 15100 15625 parseurl "~1.3.3" 15101 15626 send "0.19.0" 15627 + 15628 + serve-static@^2.2.1: 15629 + version "2.2.1" 15630 + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-2.2.1.tgz#7f186a4a4e5f5b663ad7a4294ff1bf37cf0e98a9" 15631 + integrity sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw== 15632 + dependencies: 15633 + encodeurl "^2.0.0" 15634 + escape-html "^1.0.3" 15635 + parseurl "^1.3.3" 15636 + send "^1.2.0" 15102 15637 15103 15638 server-only@^0.0.1: 15104 15639 version "0.0.1" ··· 15160 15695 resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 15161 15696 integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== 15162 15697 15163 - setprototypeof@1.2.0: 15698 + setprototypeof@1.2.0, setprototypeof@~1.2.0: 15164 15699 version "1.2.0" 15165 15700 resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" 15166 15701 integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== ··· 15406 15941 resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.6.tgz#a3658ab87e5b6429c8a1f3ba0083d4c61ca3ef02" 15407 15942 integrity sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ== 15408 15943 15944 + sourcemap-codec@^1.4.8: 15945 + version "1.4.8" 15946 + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 15947 + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 15948 + 15409 15949 spdy-transport@^3.0.0: 15410 15950 version "3.0.0" 15411 15951 resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" ··· 15511 16051 resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 15512 16052 integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== 15513 16053 16054 + statuses@^2.0.2, statuses@~2.0.2: 16055 + version "2.0.2" 16056 + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.2.tgz#8f75eecef765b5e1cfcdc080da59409ed424e382" 16057 + integrity sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw== 16058 + 15514 16059 stop-iteration-iterator@^1.1.0: 15515 16060 version "1.1.0" 15516 16061 resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz#f481ff70a548f6124d0312c3aa14cbfa7aa542ad" ··· 15860 16405 csso "^5.0.5" 15861 16406 picocolors "^1.0.0" 15862 16407 16408 + swc-loader@^0.2.7: 16409 + version "0.2.7" 16410 + resolved "https://registry.yarnpkg.com/swc-loader/-/swc-loader-0.2.7.tgz#2d1611ab314c5d8342d74aa5e5901b3fbf490de2" 16411 + integrity sha512-nwYWw3Fh9ame3Rtm7StS9SBLpHRRnYcK7bnpF3UKZmesAK0gw2/ADvlURFAINmPvKtDLzp+GBiP9yLoEjg6S9w== 16412 + dependencies: 16413 + "@swc/counter" "^0.1.3" 16414 + 15863 16415 symbol-tree@^3.2.4: 15864 16416 version "3.2.4" 15865 16417 resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" ··· 16023 16575 dependencies: 16024 16576 is-number "^7.0.0" 16025 16577 16026 - toidentifier@1.0.1: 16578 + toidentifier@1.0.1, toidentifier@~1.0.1: 16027 16579 version "1.0.1" 16028 16580 resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" 16029 16581 integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== ··· 16963 17515 version "8.13.0" 16964 17516 resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" 16965 17517 integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== 17518 + 17519 + ws@^8.19.0: 17520 + version "8.20.0" 17521 + resolved "https://registry.yarnpkg.com/ws/-/ws-8.20.0.tgz#4cd9532358eba60bc863aad1623dfb045a4d4af8" 17522 + integrity sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA== 16966 17523 16967 17524 xcode@^3.0.1: 16968 17525 version "3.0.1"