agent-log-viewer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +124 -0
- package/bin/cli.mjs +479 -0
- package/bin/tailscale.mjs +193 -0
- package/dist/standalone/.next/BUILD_ID +1 -0
- package/dist/standalone/.next/app-path-routes-manifest.json +14 -0
- package/dist/standalone/.next/build-manifest.json +20 -0
- package/dist/standalone/.next/package.json +1 -0
- package/dist/standalone/.next/prerender-manifest.json +114 -0
- package/dist/standalone/.next/react-loadable-manifest.json +8 -0
- package/dist/standalone/.next/required-server-files.json +342 -0
- package/dist/standalone/.next/routes-manifest.json +117 -0
- package/dist/standalone/.next/server/app/_global-error/page.js +32 -0
- package/dist/standalone/.next/server/app/_global-error/page.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/_global-error/page_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/_global-error.html +1 -0
- package/dist/standalone/.next/server/app/_global-error.meta +16 -0
- package/dist/standalone/.next/server/app/_global-error.rsc +14 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_full.segment.rsc +14 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_global-error.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_head.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_index.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -0
- package/dist/standalone/.next/server/app/_not-found/page.js +2 -0
- package/dist/standalone/.next/server/app/_not-found/page.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/_not-found.html +1 -0
- package/dist/standalone/.next/server/app/_not-found.meta +16 -0
- package/dist/standalone/.next/server/app/_not-found.rsc +16 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_full.segment.rsc +16 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_head.segment.rsc +6 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_index.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_not-found.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -0
- package/dist/standalone/.next/server/app/api/access/route.js +1 -0
- package/dist/standalone/.next/server/app/api/access/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/access/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/files/route.js +1 -0
- package/dist/standalone/.next/server/app/api/files/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/files/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/log/route.js +1 -0
- package/dist/standalone/.next/server/app/api/log/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/log/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/proc/route.js +1 -0
- package/dist/standalone/.next/server/app/api/proc/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/proc/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/spawn/route.js +1 -0
- package/dist/standalone/.next/server/app/api/spawn/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/spawn/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/timeline/route.js +1 -0
- package/dist/standalone/.next/server/app/api/timeline/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/timeline/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/tmux/route.js +2 -0
- package/dist/standalone/.next/server/app/api/tmux/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/tmux/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/api/transcribe/route.js +1 -0
- package/dist/standalone/.next/server/app/api/transcribe/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/api/transcribe/route_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app/favicon.ico/route.js +1 -0
- package/dist/standalone/.next/server/app/favicon.ico/route.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/favicon.ico.body +0 -0
- package/dist/standalone/.next/server/app/favicon.ico.meta +1 -0
- package/dist/standalone/.next/server/app/index.html +1 -0
- package/dist/standalone/.next/server/app/index.meta +14 -0
- package/dist/standalone/.next/server/app/index.rsc +15 -0
- package/dist/standalone/.next/server/app/index.segments/__PAGE__.segment.rsc +6 -0
- package/dist/standalone/.next/server/app/index.segments/_full.segment.rsc +15 -0
- package/dist/standalone/.next/server/app/index.segments/_head.segment.rsc +6 -0
- package/dist/standalone/.next/server/app/index.segments/_index.segment.rsc +5 -0
- package/dist/standalone/.next/server/app/index.segments/_tree.segment.rsc +2 -0
- package/dist/standalone/.next/server/app/page.js +3 -0
- package/dist/standalone/.next/server/app/page.js.nft.json +1 -0
- package/dist/standalone/.next/server/app/page_client-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/app-paths-manifest.json +14 -0
- package/dist/standalone/.next/server/chunks/319.js +45 -0
- package/dist/standalone/.next/server/chunks/344.js +1 -0
- package/dist/standalone/.next/server/chunks/445.js +18 -0
- package/dist/standalone/.next/server/chunks/459.js +1 -0
- package/dist/standalone/.next/server/chunks/813.js +1 -0
- package/dist/standalone/.next/server/chunks/918.js +1 -0
- package/dist/standalone/.next/server/chunks/998.js +1 -0
- package/dist/standalone/.next/server/functions-config-manifest.json +22 -0
- package/dist/standalone/.next/server/middleware-build-manifest.js +1 -0
- package/dist/standalone/.next/server/middleware-manifest.json +6 -0
- package/dist/standalone/.next/server/middleware-react-loadable-manifest.js +1 -0
- package/dist/standalone/.next/server/middleware.js +18 -0
- package/dist/standalone/.next/server/next-font-manifest.js +1 -0
- package/dist/standalone/.next/server/next-font-manifest.json +1 -0
- package/dist/standalone/.next/server/pages/404.html +1 -0
- package/dist/standalone/.next/server/pages/500.html +1 -0
- package/dist/standalone/.next/server/pages-manifest.json +4 -0
- package/dist/standalone/.next/server/prefetch-hints.json +1 -0
- package/dist/standalone/.next/server/server-reference-manifest.js +1 -0
- package/dist/standalone/.next/server/server-reference-manifest.json +1 -0
- package/dist/standalone/.next/server/webpack-runtime.js +1 -0
- package/dist/standalone/.next/static/OlOoOx99h_Y7pD3fJA_ji/_buildManifest.js +1 -0
- package/dist/standalone/.next/static/OlOoOx99h_Y7pD3fJA_ji/_ssgManifest.js +1 -0
- package/dist/standalone/.next/static/chunks/206-33d2c732d1a7b380.js +1 -0
- package/dist/standalone/.next/static/chunks/4bd1b696-215e5051988c3dde.js +1 -0
- package/dist/standalone/.next/static/chunks/768.73ba102ef0b9391b.js +1 -0
- package/dist/standalone/.next/static/chunks/794-0fc36bf1952fbc29.js +32 -0
- package/dist/standalone/.next/static/chunks/app/_global-error/page-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/_not-found/page-51e53d11a3244389.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/access/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/files/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/log/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/proc/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/spawn/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/timeline/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/tmux/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/api/transcribe/route-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/app/layout-fdd4e6d70b3c92cb.js +1 -0
- package/dist/standalone/.next/static/chunks/app/page-6fed5a912688e46f.js +2 -0
- package/dist/standalone/.next/static/chunks/framework-93cda6578f6c76ec.js +1 -0
- package/dist/standalone/.next/static/chunks/main-3cec32f88450e0e3.js +5 -0
- package/dist/standalone/.next/static/chunks/main-app-518cea4217042452.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/app-error-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/forbidden-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/global-error-d958576418125130.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/not-found-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/next/dist/client/components/builtin/unauthorized-a6af3b0a9feab800.js +1 -0
- package/dist/standalone/.next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
- package/dist/standalone/.next/static/chunks/webpack-7dc14fd5ff1227ce.js +1 -0
- package/dist/standalone/.next/static/css/6295a760ad8588f2.css +1 -0
- package/dist/standalone/node_modules/@next/env/dist/index.js +1 -0
- package/dist/standalone/node_modules/@next/env/package.json +35 -0
- package/dist/standalone/node_modules/@swc/helpers/_/_interop_require_default/package.json +4 -0
- package/dist/standalone/node_modules/@swc/helpers/_/_interop_require_wildcard/package.json +4 -0
- package/dist/standalone/node_modules/@swc/helpers/cjs/_interop_require_default.cjs +6 -0
- package/dist/standalone/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs +38 -0
- package/dist/standalone/node_modules/@swc/helpers/package.json +471 -0
- package/dist/standalone/node_modules/baseline-browser-mapping/dist/index.cjs +1 -0
- package/dist/standalone/node_modules/baseline-browser-mapping/package.json +68 -0
- package/dist/standalone/node_modules/caniuse-lite/data/agents.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/browserVersions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/browsers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/aac.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/apng.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/array-find.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/audio.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/av1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/avif.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/beacon.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/bigint.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/border-image.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/brotli.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/calc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/canvas.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/classlist.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/colr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/console-time.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/const.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/cors.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/cross-document-view-transitions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-all.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-grid-lanes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-has.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-if.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-table.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/customevent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/customizable-select.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/datalist.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dataset.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/datauri.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/decorators.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/details.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dialog.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/download.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/eme.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/eot.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es5.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/es6.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fetch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/filereader.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/flac.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fontface.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/forms.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/heif.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/hevc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/hidden.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/history.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/http2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/http3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ime.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/imports.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/innertext.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-color.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-event.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-number.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-range.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-search.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/json.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/let.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/loading-lazy-media.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mathml.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/menu.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/meter.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/midi.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mp3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/notifications.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/object-values.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ogv.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/online-status.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/opus.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/outline.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/path2d.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/picture.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ping.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pointer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/portals.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/progress.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/promises.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/proximity.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/proxy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/push-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rellist.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rem.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ruby.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/run-in.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/script-async.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sdch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sni.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/spdy.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/srcset.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/stream.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/streams.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/svg.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/sxg.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/template.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/temporal.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/touch.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/ttf.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/u2f.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/url.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/vibration.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/video.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wasm.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wav.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/web-share.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webgl.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webhid.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webm.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webp.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/websockets.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webusb.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webvr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/webxr.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/will-change.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/woff.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/woff2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/word-break.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features/zstd.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/features.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/data/versionGroups.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/feature.js +81 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
- package/dist/standalone/node_modules/caniuse-lite/dist/unpacker/versionGroups.js +1 -0
- package/dist/standalone/node_modules/caniuse-lite/package.json +34 -0
- package/dist/standalone/node_modules/client-only/index.js +0 -0
- package/dist/standalone/node_modules/client-only/package.json +19 -0
- package/dist/standalone/node_modules/nanoid/non-secure/index.cjs +24 -0
- package/dist/standalone/node_modules/nanoid/non-secure/package.json +6 -0
- package/dist/standalone/node_modules/nanoid/package.json +89 -0
- package/dist/standalone/node_modules/next/dist/build/adapter/setup-node-env.external.js +15 -0
- package/dist/standalone/node_modules/next/dist/build/analysis/extract-const-value.js +220 -0
- package/dist/standalone/node_modules/next/dist/build/analysis/get-page-static-info.js +636 -0
- package/dist/standalone/node_modules/next/dist/build/analysis/parse-module.js +20 -0
- package/dist/standalone/node_modules/next/dist/build/babel/loader/get-config.js +429 -0
- package/dist/standalone/node_modules/next/dist/build/babel/loader/index.js +56 -0
- package/dist/standalone/node_modules/next/dist/build/babel/loader/transform.js +103 -0
- package/dist/standalone/node_modules/next/dist/build/babel/loader/util.js +20 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/commonjs.js +42 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/next-font-unsupported.js +36 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/next-page-config.js +104 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/next-page-disallow-re-export-all-exports.js +29 -0
- package/dist/standalone/node_modules/next/dist/build/babel/plugins/next-ssg-transform.js +345 -0
- package/dist/standalone/node_modules/next/dist/build/build-context.js +58 -0
- package/dist/standalone/node_modules/next/dist/build/create-compiler-aliases.js +438 -0
- package/dist/standalone/node_modules/next/dist/build/define-env.js +255 -0
- package/dist/standalone/node_modules/next/dist/build/duration-to-string.js +99 -0
- package/dist/standalone/node_modules/next/dist/build/entries.js +558 -0
- package/dist/standalone/node_modules/next/dist/build/file-classifier.js +76 -0
- package/dist/standalone/node_modules/next/dist/build/get-babel-config-file.js +35 -0
- package/dist/standalone/node_modules/next/dist/build/get-babel-loader-config.js +109 -0
- package/dist/standalone/node_modules/next/dist/build/get-static-info-including-layouts.js +81 -0
- package/dist/standalone/node_modules/next/dist/build/get-supported-browsers.js +38 -0
- package/dist/standalone/node_modules/next/dist/build/handle-externals.js +290 -0
- package/dist/standalone/node_modules/next/dist/build/load-entrypoint.js +30 -0
- package/dist/standalone/node_modules/next/dist/build/load-jsconfig.js +162 -0
- package/dist/standalone/node_modules/next/dist/build/lockfile.js +241 -0
- package/dist/standalone/node_modules/next/dist/build/next-config-ts/require-hook.js +85 -0
- package/dist/standalone/node_modules/next/dist/build/next-config-ts/transpile-config.js +251 -0
- package/dist/standalone/node_modules/next/dist/build/next-dir-paths.js +37 -0
- package/dist/standalone/node_modules/next/dist/build/normalize-catchall-routes.js +76 -0
- package/dist/standalone/node_modules/next/dist/build/output/format.js +84 -0
- package/dist/standalone/node_modules/next/dist/build/output/index.js +186 -0
- package/dist/standalone/node_modules/next/dist/build/output/log.js +135 -0
- package/dist/standalone/node_modules/next/dist/build/output/store.js +204 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/fetch/index.js +6 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/fetch/whatwg-fetch.js +7 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object-assign.js +6 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object.assign/auto.js +4 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object.assign/implementation.js +4 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object.assign/polyfill.js +6 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/object.assign/shim.js +6 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/polyfill-nomodule.js +1 -0
- package/dist/standalone/node_modules/next/dist/build/polyfills/process.js +5 -0
- package/dist/standalone/node_modules/next/dist/build/print-build-errors.js +72 -0
- package/dist/standalone/node_modules/next/dist/build/route-discovery.js +353 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/app/app-segment-config.js +162 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/app/app-segments.js +137 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/app/collect-root-param-keys.js +52 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/middleware/middleware-config.js +121 -0
- package/dist/standalone/node_modules/next/dist/build/segment-config/pages/pages-segment-config.js +62 -0
- package/dist/standalone/node_modules/next/dist/build/sort-by-page-exts.js +30 -0
- package/dist/standalone/node_modules/next/dist/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js +137 -0
- package/dist/standalone/node_modules/next/dist/build/static-paths/app.js +736 -0
- package/dist/standalone/node_modules/next/dist/build/static-paths/pages.js +169 -0
- package/dist/standalone/node_modules/next/dist/build/static-paths/utils.js +119 -0
- package/dist/standalone/node_modules/next/dist/build/swc/index.js +1348 -0
- package/dist/standalone/node_modules/next/dist/build/swc/install-bindings.js +30 -0
- package/dist/standalone/node_modules/next/dist/build/swc/loaderWorkerPool.js +40 -0
- package/dist/standalone/node_modules/next/dist/build/swc/options.js +403 -0
- package/dist/standalone/node_modules/next/dist/build/utils.js +1216 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/cache-invalidation.js +91 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/base.js +82 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/index.js +573 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/client.js +49 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/file-resolve.js +21 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/getCssModuleLocalIdent.js +37 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/global.js +67 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/index.js +22 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/modules.js +88 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/loaders/next-font.js +63 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/messages.js +45 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/css/plugins.js +190 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/images/index.js +42 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/blocks/images/messages.js +16 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/helpers.js +78 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/index.js +47 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/config/utils.js +13 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/CssSyntaxError.js +32 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/camelcase.js +93 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js +288 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/index.js +36 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-icss-parser.js +105 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-import-parser.js +220 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-url-parser.js +314 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js +83 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/getUrl.js +23 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/css-loader/src/utils.js +459 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/get-module-build-info.js +15 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/codegen.js +156 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/index.js +27 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/interface.js +17 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/loader.js +438 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/minify.js +94 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/utils.js +58 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/next-flight-css-loader.js +56 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/next-flight-loader/index.js +211 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/next-middleware-loader.js +61 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js +141 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/Error.js +40 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/Warning.js +35 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js +125 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/utils.js +86 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js +101 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/file-protocol.js +78 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/join-function.js +190 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/postcss.js +92 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/value-processor.js +97 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/loaders/utils.js +100 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/build-manifest-plugin-utils.js +65 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/build-manifest-plugin.js +183 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/copy-file-plugin.js +67 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/css-chunking-plugin.js +277 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/css-minimizer-plugin.js +92 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/deferred-entries-plugin.js +106 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/devtools-ignore-list-plugin.js +78 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/eval-source-map-dev-tool-plugin.js +191 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/flight-client-entry-plugin.js +801 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.js +433 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/force-complete-runtime.js +42 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/jsconfig-paths-plugin.js +219 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/memory-with-gc-cache-plugin.js +114 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/middleware-plugin.js +633 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/mini-css-extract-plugin.js +24 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/minify-webpack-plugin/src/index.js +188 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.js +120 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/next-trace-entrypoints-plugin.js +542 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/next-types-plugin/index.js +429 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/next-types-plugin/shared.js +14 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/nextjs-require-cache-hot-reloader.js +53 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/optional-peer-dependency-resolve-plugin.js +45 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.js +146 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/profiling-plugin.js +282 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/react-loadable-plugin.js +169 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/rspack-flight-client-entry-plugin.js +97 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/rspack-profiling-plugin.js +62 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/slow-module-detection-plugin.js +190 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.js +62 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/telemetry-plugin/telemetry-plugin.js +188 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/telemetry-plugin/use-cache-tracker-utils.js +43 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/getModuleTrace.js +89 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/index.js +43 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parse-dynamic-code-evaluation-error.js +19 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseBabel.js +29 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseCss.js +29 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextAppLoaderError.js +26 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextFontError.js +33 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextInvalidImportError.js +26 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNotFoundError.js +180 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseScss.js +43 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/simpleWebpackError.js +18 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/webpackModuleError.js +138 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/stringify-request.js +15 -0
- package/dist/standalone/node_modules/next/dist/build/webpack/utils.js +109 -0
- package/dist/standalone/node_modules/next/dist/build/webpack-config-rules/resolve.js +55 -0
- package/dist/standalone/node_modules/next/dist/build/webpack-config.js +2353 -0
- package/dist/standalone/node_modules/next/dist/cli/next-test.js +170 -0
- package/dist/standalone/node_modules/next/dist/client/add-base-path.js +24 -0
- package/dist/standalone/node_modules/next/dist/client/add-locale.js +25 -0
- package/dist/standalone/node_modules/next/dist/client/app-call-server.js +34 -0
- package/dist/standalone/node_modules/next/dist/client/app-find-source-map-url.js +39 -0
- package/dist/standalone/node_modules/next/dist/client/assign-location.js +29 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router-announcer.js +78 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router-headers.js +138 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router-instance.js +397 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router-utils.js +62 -0
- package/dist/standalone/node_modules/next/dist/client/components/app-router.js +514 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/app-error.js +71 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/default.js +35 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/error-styles.js +165 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/global-error.js +100 -0
- package/dist/standalone/node_modules/next/dist/client/components/builtin/global-not-found.js +31 -0
- package/dist/standalone/node_modules/next/dist/client/components/dev-root-http-access-fallback-boundary.js +52 -0
- package/dist/standalone/node_modules/next/dist/client/components/error-boundary.js +144 -0
- package/dist/standalone/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js +86 -0
- package/dist/standalone/node_modules/next/dist/client/components/errors/root-error-boundary.js +41 -0
- package/dist/standalone/node_modules/next/dist/client/components/forbidden.js +48 -0
- package/dist/standalone/node_modules/next/dist/client/components/handle-isr-error.js +30 -0
- package/dist/standalone/node_modules/next/dist/client/components/hooks-server-context.js +42 -0
- package/dist/standalone/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js +125 -0
- package/dist/standalone/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js +65 -0
- package/dist/standalone/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js +72 -0
- package/dist/standalone/node_modules/next/dist/client/components/is-next-router-error.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/components/links.js +299 -0
- package/dist/standalone/node_modules/next/dist/client/components/match-segments.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/components/nav-failure-handler.js +61 -0
- package/dist/standalone/node_modules/next/dist/client/components/navigation-devtools.js +126 -0
- package/dist/standalone/node_modules/next/dist/client/components/navigation-untracked.js +67 -0
- package/dist/standalone/node_modules/next/dist/client/components/navigation.js +225 -0
- package/dist/standalone/node_modules/next/dist/client/components/navigation.react-server.js +75 -0
- package/dist/standalone/node_modules/next/dist/client/components/noop-head.js +21 -0
- package/dist/standalone/node_modules/next/dist/client/components/not-found.js +42 -0
- package/dist/standalone/node_modules/next/dist/client/components/readonly-url-search-params.js +41 -0
- package/dist/standalone/node_modules/next/dist/client/components/redirect-boundary.js +107 -0
- package/dist/standalone/node_modules/next/dist/client/components/redirect-error.js +43 -0
- package/dist/standalone/node_modules/next/dist/client/components/redirect-status-code.js +24 -0
- package/dist/standalone/node_modules/next/dist/client/components/redirect.js +91 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js +201 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js +21 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js +153 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js +457 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js +59 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js +1341 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/committed-state.js +49 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js +63 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js +38 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js +56 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js +83 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js +62 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js +320 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js +58 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js +70 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/router-reducer.js +66 -0
- package/dist/standalone/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js +66 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/bfcache.js +128 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/cache-key.js +28 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/cache-map.js +305 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/cache.js +1933 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/lru.js +152 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/navigation-testing-lock.js +194 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/navigation.js +597 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/optimistic-routes.js +543 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/prefetch.js +31 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/scheduler.js +1249 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/types.js +69 -0
- package/dist/standalone/node_modules/next/dist/client/components/segment-cache/vary-path.js +278 -0
- package/dist/standalone/node_modules/next/dist/client/components/static-generation-bailout.js +42 -0
- package/dist/standalone/node_modules/next/dist/client/components/styles/access-error-styles.js +48 -0
- package/dist/standalone/node_modules/next/dist/client/components/unauthorized.js +49 -0
- package/dist/standalone/node_modules/next/dist/client/components/unrecognized-action-error.js +39 -0
- package/dist/standalone/node_modules/next/dist/client/components/unresolved-thenable.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/components/unstable-rethrow.browser.js +28 -0
- package/dist/standalone/node_modules/next/dist/client/components/unstable-rethrow.js +25 -0
- package/dist/standalone/node_modules/next/dist/client/components/unstable-rethrow.server.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/components/use-action-queue.js +148 -0
- package/dist/standalone/node_modules/next/dist/client/detect-domain-locale.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/dev/debug-channel.js +172 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/app/hot-reloader-app.js +517 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/app/web-socket.js +238 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/get-socket-url.js +38 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/pages/hot-reloader-pages.js +452 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/pages/websocket.js +106 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/shared.js +39 -0
- package/dist/standalone/node_modules/next/dist/client/dev/hot-reloader/turbopack-hot-reloader-common.js +128 -0
- package/dist/standalone/node_modules/next/dist/client/dev/report-hmr-latency.js +49 -0
- package/dist/standalone/node_modules/next/dist/client/dev/runtime-error-handler.js +21 -0
- package/dist/standalone/node_modules/next/dist/client/flight-data-helpers.js +232 -0
- package/dist/standalone/node_modules/next/dist/client/has-base-path.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/lib/console.js +177 -0
- package/dist/standalone/node_modules/next/dist/client/lib/javascript-url.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/lib/promise.js +53 -0
- package/dist/standalone/node_modules/next/dist/client/navigation-build-id.js +53 -0
- package/dist/standalone/node_modules/next/dist/client/normalize-trailing-slash.js +36 -0
- package/dist/standalone/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js +66 -0
- package/dist/standalone/node_modules/next/dist/client/react-client-callbacks/report-global-error.js +23 -0
- package/dist/standalone/node_modules/next/dist/client/remove-base-path.js +32 -0
- package/dist/standalone/node_modules/next/dist/client/remove-locale.js +28 -0
- package/dist/standalone/node_modules/next/dist/client/request-idle-callback.js +44 -0
- package/dist/standalone/node_modules/next/dist/client/resolve-href.js +106 -0
- package/dist/standalone/node_modules/next/dist/client/route-loader.js +312 -0
- package/dist/standalone/node_modules/next/dist/client/route-params.js +247 -0
- package/dist/standalone/node_modules/next/dist/client/router.js +187 -0
- package/dist/standalone/node_modules/next/dist/client/script.js +348 -0
- package/dist/standalone/node_modules/next/dist/client/set-attributes-from-props.js +68 -0
- package/dist/standalone/node_modules/next/dist/client/trusted-types.js +38 -0
- package/dist/standalone/node_modules/next/dist/client/with-router.js +37 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js +339 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/cookies/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/ponyfill/index.js +46 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/ponyfill/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/abort-controller.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/console.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/events.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/index.js +5 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/load.js +18713 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/stream.js +44 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/timers.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@edge-runtime/primitives/url.js.text.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@hapi/accept/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@hapi/accept/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@modelcontextprotocol/sdk/server/mcp.js +3 -0
- package/dist/standalone/node_modules/next/dist/compiled/@modelcontextprotocol/sdk/server/streamableHttp.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@mswjs/interceptors/ClientRequest/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@mswjs/interceptors/ClientRequest/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@napi-rs/triples/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@napi-rs/triples/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/constants.js +10 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/fontkit/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/format-available-values.js +9 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/fetch-css-from-google-fonts.js +28 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/fetch-font-file.js +24 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/fetch-resource.js +46 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/find-font-files-in-css.js +34 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/font-data.json +18866 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/get-fallback-font-override-metrics.js +62 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/get-font-axes.js +66 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/get-google-fonts-url.js +55 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/get-proxy-agent.js +23 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/google-fonts-metadata.js +8 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/loader.js +175 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/retry.js +17 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/sort-fonts-variant-values.js +26 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/google/validate-google-font-function-call.js +101 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/local/get-fallback-metrics-from-font-file.js +85 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/local/loader.js +77 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/local/pick-font-file-for-fallback-generation.js +85 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/local/validate-local-font-function-call.js +66 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/dist/next-font-error.js +11 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/google/loader.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/local/loader.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/font/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/ReactRefreshRspackPlugin.js +18 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/ReactRefreshWebpackPlugin.js +137 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/ReactRefreshModule.runtime.js +69 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/RspackReactRefresh.js +86 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js +170 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/loader.js +21 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/rspack-runtime.js +19 -0
- package/dist/standalone/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js +27 -0
- package/dist/standalone/node_modules/next/dist/compiled/@opentelemetry/api/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@opentelemetry/api/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/@vercel/nft/LICENSE +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/@vercel/nft/index.js +24 -0
- package/dist/standalone/node_modules/next/dist/compiled/@vercel/nft/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/acorn/acorn.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/acorn/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/assert/assert.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/assert/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/async-retry/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/async-retry/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/async-sema/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/async-sema/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/bundle.js +227 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-block-hoist-plugin.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-config.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-normalize-file.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-normalize-opts.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core-lib-plugin-pass.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/core.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/generator.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/parser.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/plugin-transform-define.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/plugin-transform-modules-commonjs.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/traverse.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel/types.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel-packages/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/babel-packages/packages-bundle.js +335 -0
- package/dist/standalone/node_modules/next/dist/compiled/browserify-zlib/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/browserify-zlib/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/browserslist/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/browserslist/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/buffer/index.js +9 -0
- package/dist/standalone/node_modules/next/dist/compiled/buffer/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/busboy/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/busboy/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/bytes/index.js +8 -0
- package/dist/standalone/node_modules/next/dist/compiled/bytes/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ci-info/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ci-info/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/commander/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/commander/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/comment-json/index.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/comment-json/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/compression/index.js +58 -0
- package/dist/standalone/node_modules/next/dist/compiled/compression/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/conf/index.js +15 -0
- package/dist/standalone/node_modules/next/dist/compiled/conf/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/constants-browserify/constants.json +209 -0
- package/dist/standalone/node_modules/next/dist/compiled/constants-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/content-disposition/index.js +6 -0
- package/dist/standalone/node_modules/next/dist/compiled/content-disposition/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/content-type/index.js +6 -0
- package/dist/standalone/node_modules/next/dist/compiled/content-type/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/cookie/index.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/cookie/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/cross-spawn/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/cross-spawn/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/crypto-browserify/index.js +3 -0
- package/dist/standalone/node_modules/next/dist/compiled/crypto-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/cssnano-simple/index.js +320 -0
- package/dist/standalone/node_modules/next/dist/compiled/data-uri-to-buffer/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/data-uri-to-buffer/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/debug/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/debug/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/devalue/devalue.umd.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/devalue/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/domain-browser/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/domain-browser/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/edge-runtime/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/edge-runtime/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/events/events.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/events/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/find-up/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/find-up/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/fresh/index.js +8 -0
- package/dist/standalone/node_modules/next/dist/compiled/fresh/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/glob/glob.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/glob/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/gzip-size/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/gzip-size/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/http-proxy/index.js +34 -0
- package/dist/standalone/node_modules/next/dist/compiled/http-proxy/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/http-proxy-agent/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/http-proxy-agent/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/https-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/https-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/https-proxy-agent/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/https-proxy-agent/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/icss-utils/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/icss-utils/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ignore-loader/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ignore-loader/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/image-detector/detector.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/image-size/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/image-size/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ipaddr.js/ipaddr.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ipaddr.js/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-animated/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-animated/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-docker/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-docker/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-wsl/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/is-wsl/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jest-worker/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jest-worker/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jest-worker/processChild.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jest-worker/threadChild.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/json5/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/json5/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/jsonwebtoken/index.js +11 -0
- package/dist/standalone/node_modules/next/dist/compiled/jsonwebtoken/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/loader-utils2/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/loader-utils2/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/loader-utils3/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/loader-utils3/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/lodash.curry/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/lodash.curry/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/lru-cache/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/lru-cache/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/mini-css-extract-plugin/cjs.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/mini-css-extract-plugin/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/mini-css-extract-plugin/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/nanoid/index.cjs +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/nanoid/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/native-url/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/native-url/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/neo-async/async.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/neo-async/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-devtools/index.js +3835 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-page-experimental.runtime.prod.js +54 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js +54 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js +54 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js +54 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js +6 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/pages-turbo.runtime.prod.js +20 -0
- package/dist/standalone/node_modules/next/dist/compiled/next-server/pages.runtime.prod.js +20 -0
- package/dist/standalone/node_modules/next/dist/compiled/os-browserify/browser.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/os-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/p-limit/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/p-limit/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/p-queue/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/p-queue/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/path-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/path-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/path-to-regexp/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/path-to-regexp/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/picomatch/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/picomatch/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-flexbugs-fixes/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-flexbugs-fixes/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-extract-imports/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-extract-imports/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-local-by-default/index.js +2 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-local-by-default/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-scope/index.js +2 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-scope/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-values/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-modules-values/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-plugin-stub-for-cssnano-simple/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-preset-env/index.cjs +94 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-preset-env/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-scss/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-scss/scss-syntax.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-value-parser/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/postcss-value-parser/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/process/browser.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/process/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/punycode/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/punycode/punycode.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/querystring-es3/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/querystring-es3/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/raw-body/index.js +51 -0
- package/dist/standalone/node_modules/next/dist/compiled/raw-body/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-is/cjs/react-is.development.js +133 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-is/cjs/react-is.production.js +130 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-is/index.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-is/package.json +26 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/babel.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-babel.development.js +842 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-babel.production.min.js +24 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js +658 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.production.min.js +10 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/package.json +39 -0
- package/dist/standalone/node_modules/next/dist/compiled/react-refresh/runtime.js +7 -0
- package/dist/standalone/node_modules/next/dist/compiled/regenerator-runtime/package.json +19 -0
- package/dist/standalone/node_modules/next/dist/compiled/regenerator-runtime/runtime.js +729 -0
- package/dist/standalone/node_modules/next/dist/compiled/safe-stable-stringify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/safe-stable-stringify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/sass-loader/cjs.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/sass-loader/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/schema-utils3/index.js +3 -0
- package/dist/standalone/node_modules/next/dist/compiled/schema-utils3/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/semver/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/semver/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/send/index.js +70 -0
- package/dist/standalone/node_modules/next/dist/compiled/send/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/setimmediate/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/setimmediate/setImmediate.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/shell-quote/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/shell-quote/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/source-map/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/source-map/source-map.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/source-map08/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/source-map08/source-map.js +3002 -0
- package/dist/standalone/node_modules/next/dist/compiled/stacktrace-parser/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stream-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stream-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stream-http/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/stream-http/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/string-hash/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/string-hash/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/string_decoder/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/string_decoder/string_decoder.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/strip-ansi/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/strip-ansi/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/superstruct/index.cjs +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/superstruct/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/tar/index.min.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/tar/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/text-table/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/text-table/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/timers-browserify/main.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/timers-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/tty-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/tty-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/unistore/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/unistore/unistore.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/util/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/util/util.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/vm-browserify/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/vm-browserify/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/watchpack/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/watchpack/watchpack.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/webpack-sources3/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/webpack-sources3/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ws/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/ws/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/zod/index.cjs +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/zod/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/zod-validation-error/index.js +1 -0
- package/dist/standalone/node_modules/next/dist/compiled/zod-validation-error/package.json +1 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/context.js +57 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/fetch.js +142 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/httpget.js +26 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/server-edge.js +32 -0
- package/dist/standalone/node_modules/next/dist/experimental/testmode/server.js +62 -0
- package/dist/standalone/node_modules/next/dist/export/helpers/create-incremental-cache.js +61 -0
- package/dist/standalone/node_modules/next/dist/export/utils.js +24 -0
- package/dist/standalone/node_modules/next/dist/lib/batcher.js +65 -0
- package/dist/standalone/node_modules/next/dist/lib/build-custom-route.js +46 -0
- package/dist/standalone/node_modules/next/dist/lib/bundler.js +97 -0
- package/dist/standalone/node_modules/next/dist/lib/client-and-server-references.js +54 -0
- package/dist/standalone/node_modules/next/dist/lib/coalesced-function.js +39 -0
- package/dist/standalone/node_modules/next/dist/lib/compile-error.js +14 -0
- package/dist/standalone/node_modules/next/dist/lib/constants.js +420 -0
- package/dist/standalone/node_modules/next/dist/lib/create-client-router-filter.js +67 -0
- package/dist/standalone/node_modules/next/dist/lib/default-transpiled-packages.json +1 -0
- package/dist/standalone/node_modules/next/dist/lib/detached-promise.js +32 -0
- package/dist/standalone/node_modules/next/dist/lib/detect-typo.js +51 -0
- package/dist/standalone/node_modules/next/dist/lib/download-swc.js +183 -0
- package/dist/standalone/node_modules/next/dist/lib/error-telemetry-utils.js +42 -0
- package/dist/standalone/node_modules/next/dist/lib/fallback.js +100 -0
- package/dist/standalone/node_modules/next/dist/lib/fatal-error.js +14 -0
- package/dist/standalone/node_modules/next/dist/lib/file-exists.js +53 -0
- package/dist/standalone/node_modules/next/dist/lib/find-config.js +102 -0
- package/dist/standalone/node_modules/next/dist/lib/find-pages-dir.js +65 -0
- package/dist/standalone/node_modules/next/dist/lib/find-root.js +126 -0
- package/dist/standalone/node_modules/next/dist/lib/format-dynamic-import-path.js +24 -0
- package/dist/standalone/node_modules/next/dist/lib/format-server-error.js +75 -0
- package/dist/standalone/node_modules/next/dist/lib/framework/boundary-components.js +62 -0
- package/dist/standalone/node_modules/next/dist/lib/framework/boundary-constants.js +36 -0
- package/dist/standalone/node_modules/next/dist/lib/fs/rename.js +87 -0
- package/dist/standalone/node_modules/next/dist/lib/fs/write-atomic.js +28 -0
- package/dist/standalone/node_modules/next/dist/lib/generate-interception-routes-rewrites.js +52 -0
- package/dist/standalone/node_modules/next/dist/lib/get-network-host.js +44 -0
- package/dist/standalone/node_modules/next/dist/lib/get-project-dir.js +51 -0
- package/dist/standalone/node_modules/next/dist/lib/has-necessary-dependencies.js +49 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/get-cache-directory.js +66 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/get-online.js +50 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/get-pkg-manager.js +63 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/get-registry.js +45 -0
- package/dist/standalone/node_modules/next/dist/lib/helpers/install.js +83 -0
- package/dist/standalone/node_modules/next/dist/lib/install-dependencies.js +40 -0
- package/dist/standalone/node_modules/next/dist/lib/interop-default.js +16 -0
- package/dist/standalone/node_modules/next/dist/lib/is-api-route.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/is-app-page-route.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/is-app-route-route.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/is-edge-runtime.js +16 -0
- package/dist/standalone/node_modules/next/dist/lib/is-error.js +78 -0
- package/dist/standalone/node_modules/next/dist/lib/is-interception-route-rewrite.js +18 -0
- package/dist/standalone/node_modules/next/dist/lib/is-internal-component.js +36 -0
- package/dist/standalone/node_modules/next/dist/lib/is-serializable-props.js +106 -0
- package/dist/standalone/node_modules/next/dist/lib/known-edge-safe-packages.json +1 -0
- package/dist/standalone/node_modules/next/dist/lib/load-custom-routes.js +594 -0
- package/dist/standalone/node_modules/next/dist/lib/memory/trace.js +109 -0
- package/dist/standalone/node_modules/next/dist/lib/metadata/get-metadata-route.js +123 -0
- package/dist/standalone/node_modules/next/dist/lib/metadata/is-metadata-route.js +221 -0
- package/dist/standalone/node_modules/next/dist/lib/metadata/metadata-context.js +18 -0
- package/dist/standalone/node_modules/next/dist/lib/multi-file-writer.js +75 -0
- package/dist/standalone/node_modules/next/dist/lib/needs-experimental-react.js +16 -0
- package/dist/standalone/node_modules/next/dist/lib/non-nullable.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/normalize-path.js +21 -0
- package/dist/standalone/node_modules/next/dist/lib/oxford-comma-list.js +15 -0
- package/dist/standalone/node_modules/next/dist/lib/page-types.js +18 -0
- package/dist/standalone/node_modules/next/dist/lib/patch-incorrect-lockfile.js +185 -0
- package/dist/standalone/node_modules/next/dist/lib/pick.js +19 -0
- package/dist/standalone/node_modules/next/dist/lib/picocolors.js +177 -0
- package/dist/standalone/node_modules/next/dist/lib/realpath.js +20 -0
- package/dist/standalone/node_modules/next/dist/lib/recursive-delete.js +137 -0
- package/dist/standalone/node_modules/next/dist/lib/recursive-readdir.js +124 -0
- package/dist/standalone/node_modules/next/dist/lib/redirect-status.js +46 -0
- package/dist/standalone/node_modules/next/dist/lib/resolve-from.js +65 -0
- package/dist/standalone/node_modules/next/dist/lib/route-pattern-normalizer.js +107 -0
- package/dist/standalone/node_modules/next/dist/lib/scheduler.js +64 -0
- package/dist/standalone/node_modules/next/dist/lib/semver-noop.js +18 -0
- package/dist/standalone/node_modules/next/dist/lib/static-env.js +92 -0
- package/dist/standalone/node_modules/next/dist/lib/try-to-parse-path.js +67 -0
- package/dist/standalone/node_modules/next/dist/lib/turbopack-warning.js +185 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/diagnosticFormatter.js +243 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/getTypeScriptConfiguration.js +153 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/getTypeScriptIntent.js +52 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/missingDependencyError.js +27 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/runTypeCheck.js +149 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/type-paths.js +51 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/writeAppTypeDeclarations.js +75 -0
- package/dist/standalone/node_modules/next/dist/lib/typescript/writeConfigurationDefaults.js +395 -0
- package/dist/standalone/node_modules/next/dist/lib/url.js +75 -0
- package/dist/standalone/node_modules/next/dist/lib/verify-partytown-setup.js +115 -0
- package/dist/standalone/node_modules/next/dist/lib/verify-typescript-setup.js +228 -0
- package/dist/standalone/node_modules/next/dist/lib/wait.js +19 -0
- package/dist/standalone/node_modules/next/dist/lib/with-promise-cache.js +24 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/attach-nodejs-debugger-middleware.js +55 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/dev-indicator-middleware.js +42 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/devtools-config-middleware.js +82 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/font/get-dev-overlay-font-middleware.js +71 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/get-next-error-feedback-middleware.js +42 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/launch-editor.js +469 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/middleware-response.js +55 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/restart-dev-server-middleware.js +78 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/server/shared.js +57 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/console-error.js +47 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/deepmerge.js +41 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/devtools-config-schema.js +45 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/forward-logs-shared.js +56 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/react-18-hydration-error.js +68 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/react-19-hydration-error.js +95 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/shared/webpack-module-path.js +47 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/app-dev-overlay-error-boundary.js +91 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/errors/replay-ssr-only-errors.js +72 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/errors/stitched-error.js +76 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/errors/use-error-handler.js +139 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/forward-logs-utils.js +95 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/forward-logs.js +510 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js +159 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/app/terminal-logging-config.js +41 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/pages/hydration-error-state.js +161 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/pages/pages-dev-overlay-error-boundary.js +37 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/pages/pages-dev-overlay-setup.js +112 -0
- package/dist/standalone/node_modules/next/dist/next-devtools/userspace/use-app-dev-rendering-indicator.js +34 -0
- package/dist/standalone/node_modules/next/dist/server/ReactDOMServerPages.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/accept-header.js +132 -0
- package/dist/standalone/node_modules/next/dist/server/after/after-context.js +140 -0
- package/dist/standalone/node_modules/next/dist/server/after/awaiter.js +74 -0
- package/dist/standalone/node_modules/next/dist/server/after/builtin-request-context.js +38 -0
- package/dist/standalone/node_modules/next/dist/server/after/run-with-after.js +35 -0
- package/dist/standalone/node_modules/next/dist/server/api-utils/get-cookie-parser.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/api-utils/index.js +201 -0
- package/dist/standalone/node_modules/next/dist/server/api-utils/node/parse-body.js +79 -0
- package/dist/standalone/node_modules/next/dist/server/api-utils/node/try-get-preview-data.js +86 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/action-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/action-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/action-handler.js +1027 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/after-task-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/app-render-prerender-utils.js +167 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/app-render-render-utils.js +76 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/app-render-scheduling.js +188 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/app-render.js +4522 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/async-local-storage.js +76 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/cache-signal.js +181 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/console-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/console-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/create-component-styles-and-scripts.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/create-component-tree.js +870 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/create-error-handler.js +189 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/create-flight-router-state-from-loader-tree.js +102 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/csrf-protection.js +86 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/debug-channel-server.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/debug-channel-server.web.js +71 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/dynamic-rendering.js +1144 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/encryption-utils-server.js +114 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/encryption-utils.js +93 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/flight-render-result.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-asset-query-string.js +29 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-css-inlined-link-tags.js +49 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-layer-assets.js +65 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-preloadable-fonts.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-script-nonce-from-header.js +32 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/get-short-dynamic-param-type.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/has-loading-component-in-tree.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/boundary-tracking.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/instant-config.js +181 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/instant-samples-client.js +128 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/instant-samples.js +432 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/instant-validation-error.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/instant-validation/stream-utils.js +96 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/interop-default.js +17 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/make-get-server-inserted-html.js +92 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/manifests-singleton.js +264 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/metadata-insertion/create-server-inserted-metadata.js +29 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js +32 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js +66 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/parse-and-validate-flight-router-state.js +49 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/postponed-state.js +157 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/prospective-render-utils.js +74 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/react-large-shell-error.js +17 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/react-server.node.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/render-css-resource.js +52 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/required-scripts.js +76 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/segment-explorer-path.js +128 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/server-inserted-html.js +77 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/staged-rendering.js +343 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/stale-time.js +111 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/stream-ops.js +106 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/stream-ops.web.js +163 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/strip-flight-headers.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/types.js +65 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/use-flight-response.js +214 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/vary-params.js +336 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/walk-tree-with-flight-router-state.js +232 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/work-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/work-async-storage.external.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js +14 -0
- package/dist/standalone/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js +280 -0
- package/dist/standalone/node_modules/next/dist/server/async-storage/draft-mode-provider.js +62 -0
- package/dist/standalone/node_modules/next/dist/server/async-storage/request-store.js +144 -0
- package/dist/standalone/node_modules/next/dist/server/async-storage/work-store.js +92 -0
- package/dist/standalone/node_modules/next/dist/server/base-http/helpers.js +36 -0
- package/dist/standalone/node_modules/next/dist/server/base-http/index.js +54 -0
- package/dist/standalone/node_modules/next/dist/server/base-http/node.js +147 -0
- package/dist/standalone/node_modules/next/dist/server/base-server.js +1882 -0
- package/dist/standalone/node_modules/next/dist/server/body-streams.js +114 -0
- package/dist/standalone/node_modules/next/dist/server/cache-dir.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/capsize-font-metrics.json +181516 -0
- package/dist/standalone/node_modules/next/dist/server/ci-info.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/client-component-renderer-logger.js +70 -0
- package/dist/standalone/node_modules/next/dist/server/config-schema.js +727 -0
- package/dist/standalone/node_modules/next/dist/server/config-shared.js +369 -0
- package/dist/standalone/node_modules/next/dist/server/config-utils.js +185 -0
- package/dist/standalone/node_modules/next/dist/server/config.js +1545 -0
- package/dist/standalone/node_modules/next/dist/server/crypto-utils.js +70 -0
- package/dist/standalone/node_modules/next/dist/server/dev/browser-logs/file-logger.js +186 -0
- package/dist/standalone/node_modules/next/dist/server/dev/browser-logs/receive-logs.js +558 -0
- package/dist/standalone/node_modules/next/dist/server/dev/browser-logs/source-map.js +222 -0
- package/dist/standalone/node_modules/next/dist/server/dev/debug-channel.js +87 -0
- package/dist/standalone/node_modules/next/dist/server/dev/dev-indicator-server-state.js +15 -0
- package/dist/standalone/node_modules/next/dist/server/dev/get-source-map-from-file.js +100 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-middleware.js +274 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-rspack.js +171 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-shared-utils.js +56 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-turbopack.js +1480 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-types.js +58 -0
- package/dist/standalone/node_modules/next/dist/server/dev/hot-reloader-webpack.js +1386 -0
- package/dist/standalone/node_modules/next/dist/server/dev/log-requests.js +149 -0
- package/dist/standalone/node_modules/next/dist/server/dev/messages.js +74 -0
- package/dist/standalone/node_modules/next/dist/server/dev/middleware-turbopack.js +403 -0
- package/dist/standalone/node_modules/next/dist/server/dev/middleware-webpack.js +483 -0
- package/dist/standalone/node_modules/next/dist/server/dev/next-dev-server.js +731 -0
- package/dist/standalone/node_modules/next/dist/server/dev/node-stack-frames.js +72 -0
- package/dist/standalone/node_modules/next/dist/server/dev/on-demand-entry-handler.js +773 -0
- package/dist/standalone/node_modules/next/dist/server/dev/parse-version-info.js +108 -0
- package/dist/standalone/node_modules/next/dist/server/dev/require-cache.js +79 -0
- package/dist/standalone/node_modules/next/dist/server/dev/serialized-errors.js +67 -0
- package/dist/standalone/node_modules/next/dist/server/dev/server-action-logger.js +37 -0
- package/dist/standalone/node_modules/next/dist/server/dev/static-paths-worker.js +105 -0
- package/dist/standalone/node_modules/next/dist/server/dev/turbopack-utils.js +687 -0
- package/dist/standalone/node_modules/next/dist/server/dynamic-rendering-utils.js +108 -0
- package/dist/standalone/node_modules/next/dist/server/font-utils.js +43 -0
- package/dist/standalone/node_modules/next/dist/server/get-app-route-from-entrypoint.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/get-route-from-entrypoint.js +35 -0
- package/dist/standalone/node_modules/next/dist/server/image-optimizer.js +1240 -0
- package/dist/standalone/node_modules/next/dist/server/instrumentation/utils.js +21 -0
- package/dist/standalone/node_modules/next/dist/server/internal-utils.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/is-private-ip.js +36 -0
- package/dist/standalone/node_modules/next/dist/server/lib/app-dir-module.js +59 -0
- package/dist/standalone/node_modules/next/dist/server/lib/app-info-log.js +132 -0
- package/dist/standalone/node_modules/next/dist/server/lib/async-callback-set.js +29 -0
- package/dist/standalone/node_modules/next/dist/server/lib/cache-control.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/lib/cache-handlers/default.js +160 -0
- package/dist/standalone/node_modules/next/dist/server/lib/chrome-devtools-workspace.js +116 -0
- package/dist/standalone/node_modules/next/dist/server/lib/clone-response.js +77 -0
- package/dist/standalone/node_modules/next/dist/server/lib/cpu-profile.js +59 -0
- package/dist/standalone/node_modules/next/dist/server/lib/decode-query-path-parameter.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/lib/dedupe-fetch.js +163 -0
- package/dist/standalone/node_modules/next/dist/server/lib/dev-bundler-service.js +95 -0
- package/dist/standalone/node_modules/next/dist/server/lib/disk-lru-cache.external.js +57 -0
- package/dist/standalone/node_modules/next/dist/server/lib/encode-cache-tag.js +45 -0
- package/dist/standalone/node_modules/next/dist/server/lib/etag.js +56 -0
- package/dist/standalone/node_modules/next/dist/server/lib/experimental/create-env-definitions.js +48 -0
- package/dist/standalone/node_modules/next/dist/server/lib/experimental/ppr.js +47 -0
- package/dist/standalone/node_modules/next/dist/server/lib/find-page-file.js +147 -0
- package/dist/standalone/node_modules/next/dist/server/lib/fix-mojibake.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/lib/format-hostname.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/lib/i18n-provider.js +129 -0
- package/dist/standalone/node_modules/next/dist/server/lib/implicit-tags.js +80 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js +335 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/index.js +501 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js +57 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js +73 -0
- package/dist/standalone/node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/lib/install-code-frame.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/lib/is-ipv6.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/lib/is-rsc-request.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/lib/lazy-result.js +46 -0
- package/dist/standalone/node_modules/next/dist/server/lib/lru-cache.js +191 -0
- package/dist/standalone/node_modules/next/dist/server/lib/match-next-data-pathname.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/lib/mock-request.js +441 -0
- package/dist/standalone/node_modules/next/dist/server/lib/module-loader/node-module-loader.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/lib/node-fs-methods.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/lib/parse-stack.js +46 -0
- package/dist/standalone/node_modules/next/dist/server/lib/patch-fetch.js +982 -0
- package/dist/standalone/node_modules/next/dist/server/lib/patch-set-header.js +45 -0
- package/dist/standalone/node_modules/next/dist/server/lib/postponed-request-body.js +64 -0
- package/dist/standalone/node_modules/next/dist/server/lib/render-server.js +155 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-server.js +699 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/block-cross-site-dev.js +110 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/build-data-route.js +48 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/cache-life-type-utils.js +211 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/decode-path-params.js +42 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/filesystem.js +591 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js +89 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js +96 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/is-postpone.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/proxy-request.js +118 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/resolve-routes.js +643 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/route-types-utils.js +286 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/router-server-context.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.js +970 -0
- package/dist/standalone/node_modules/next/dist/server/lib/router-utils/typegen.js +858 -0
- package/dist/standalone/node_modules/next/dist/server/lib/server-action-request-meta.js +53 -0
- package/dist/standalone/node_modules/next/dist/server/lib/server-ipc/utils.js +83 -0
- package/dist/standalone/node_modules/next/dist/server/lib/source-maps.js +196 -0
- package/dist/standalone/node_modules/next/dist/server/lib/start-server.js +494 -0
- package/dist/standalone/node_modules/next/dist/server/lib/streaming-metadata.js +38 -0
- package/dist/standalone/node_modules/next/dist/server/lib/to-route.js +37 -0
- package/dist/standalone/node_modules/next/dist/server/lib/trace/constants.js +203 -0
- package/dist/standalone/node_modules/next/dist/server/lib/trace/tracer.js +280 -0
- package/dist/standalone/node_modules/next/dist/server/lib/trace/utils.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/lib/utils.js +278 -0
- package/dist/standalone/node_modules/next/dist/server/load-components.js +179 -0
- package/dist/standalone/node_modules/next/dist/server/load-default-error-components.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/load-manifest.external.js +117 -0
- package/dist/standalone/node_modules/next/dist/server/match-bundle.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/get-mcp-middleware.js +49 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/get-or-create-mcp-server.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/mcp-telemetry-tracker.js +82 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-errors.js +114 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-logs.js +67 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-page-metadata.js +188 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-project-metadata.js +59 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-routes.js +136 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/get-server-action-by-id.js +121 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/next-instance-error-state.js +31 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/utils/browser-communication.js +90 -0
- package/dist/standalone/node_modules/next/dist/server/mcp/tools/utils/format-errors.js +137 -0
- package/dist/standalone/node_modules/next/dist/server/next-server.js +1429 -0
- package/dist/standalone/node_modules/next/dist/server/next-typescript.js +13 -0
- package/dist/standalone/node_modules/next/dist/server/next.js +455 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-baseline.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/console-dim.external.js +301 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/console-exit.js +49 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/console-file.js +56 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/date.js +52 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/error-inspect.js +8 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js +577 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/global-behaviors.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/io-utils.js +195 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/node-crypto.js +103 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/process-error-handlers.js +91 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/random.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js +508 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment-extensions/web-crypto.js +45 -0
- package/dist/standalone/node_modules/next/dist/server/node-environment.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/node-polyfill-crypto.js +21 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/absolute-filename-normalizer.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/app-bundle-path-normalizer.js +54 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/app-filename-normalizer.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/app-page-normalizer.js +40 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/app-pathname-normalizer.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/app/index.js +42 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/index.js +44 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/pages-bundle-path-normalizer.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/pages-filename-normalizer.js +22 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/pages-page-normalizer.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/built/pages/pages-pathname-normalizer.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/locale-route-normalizer.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/normalizers.js +23 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/prefixing-normalizer.js +26 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/base-path.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/next-data.js +38 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/prefix.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/rsc.js +19 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/segment-prefix-rsc.js +33 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/request/suffix.js +27 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/underscore-normalizer.js +17 -0
- package/dist/standalone/node_modules/next/dist/server/normalizers/wrap-normalizer-fn.js +17 -0
- package/dist/standalone/node_modules/next/dist/server/patch-error-inspect.js +453 -0
- package/dist/standalone/node_modules/next/dist/server/pipe-readable.js +140 -0
- package/dist/standalone/node_modules/next/dist/server/post-process.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/render-result.js +204 -0
- package/dist/standalone/node_modules/next/dist/server/render.js +1148 -0
- package/dist/standalone/node_modules/next/dist/server/request/fallback-params.js +95 -0
- package/dist/standalone/node_modules/next/dist/server/request-meta.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/require-hook.js +82 -0
- package/dist/standalone/node_modules/next/dist/server/require.js +109 -0
- package/dist/standalone/node_modules/next/dist/server/response-cache/index.js +311 -0
- package/dist/standalone/node_modules/next/dist/server/response-cache/types.js +41 -0
- package/dist/standalone/node_modules/next/dist/server/response-cache/utils.js +104 -0
- package/dist/standalone/node_modules/next/dist/server/resume-data-cache/cache-store.js +96 -0
- package/dist/standalone/node_modules/next/dist/server/resume-data-cache/resume-data-cache.js +124 -0
- package/dist/standalone/node_modules/next/dist/server/revalidation-utils.js +157 -0
- package/dist/standalone/node_modules/next/dist/server/route-definitions/app-page-route-definition.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/route-kind.js +32 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-managers/default-route-matcher-manager.js +239 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-managers/dev-route-matcher-manager.js +120 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/app-page-route-matcher-provider.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/app-route-route-matcher-provider.js +43 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/dev-app-page-route-matcher-provider.js +91 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/dev-app-route-route-matcher-provider.js +112 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/dev-pages-api-route-matcher-provider.js +77 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/dev-pages-route-matcher-provider.js +77 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/file-cache-route-matcher-provider.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/helpers/file-reader/batched-file-reader.js +106 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/dev/helpers/file-reader/default-file-reader.js +42 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/helpers/cached-route-matcher-provider.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/helpers/manifest-loaders/node-manifest-loader.js +34 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/helpers/manifest-loaders/server-manifest-loader.js +20 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/manifest-route-matcher-provider.js +21 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/pages-api-route-matcher-provider.js +55 -0
- package/dist/standalone/node_modules/next/dist/server/route-matcher-providers/pages-route-matcher-provider.js +64 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/app-page-route-matcher.js +18 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/app-route-route-matcher.js +15 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/locale-route-matcher.js +68 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/pages-api-route-matcher.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/pages-route-matcher.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/route-matchers/route-matcher.js +54 -0
- package/dist/standalone/node_modules/next/dist/server/route-matches/pages-api-route-match.js +16 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/helpers/prerender-manifest-matcher.js +51 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/module.compiled.js +36 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/module.js +162 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/module.render.js +24 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/normalize-request-url.js +25 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/entrypoints.js +87 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/entrypoints.js +140 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/entrypoints.js +125 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/checks.js +45 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/builtin/_error.js +100 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/module.compiled.js +20 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/module.js +92 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/module.render.js +24 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/pages-handler.js +545 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/app-router-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/entrypoints.js +102 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/head-manager-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/hooks-client-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/html-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/image-config-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/loadable-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/loadable.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/router-context.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/pages/vendored/contexts/server-inserted-html.js +4 -0
- package/dist/standalone/node_modules/next/dist/server/route-modules/route-module.js +660 -0
- package/dist/standalone/node_modules/next/dist/server/runtime-reacts.external.js +46 -0
- package/dist/standalone/node_modules/next/dist/server/send-payload.js +88 -0
- package/dist/standalone/node_modules/next/dist/server/send-response.js +70 -0
- package/dist/standalone/node_modules/next/dist/server/serve-static.js +66 -0
- package/dist/standalone/node_modules/next/dist/server/server-route-utils.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/server-utils.js +340 -0
- package/dist/standalone/node_modules/next/dist/server/setup-http-agent-env.js +31 -0
- package/dist/standalone/node_modules/next/dist/server/stream-utils/encoded-tags.js +122 -0
- package/dist/standalone/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js +918 -0
- package/dist/standalone/node_modules/next/dist/server/stream-utils/uint8array-helpers.js +74 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/constant.js +98 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/index.js +199 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/client-boundary.js +97 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/config.js +512 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/entry.js +149 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/error.js +38 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/metadata.js +234 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/server-boundary.js +115 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/rules/server.js +79 -0
- package/dist/standalone/node_modules/next/dist/server/typescript/utils.js +212 -0
- package/dist/standalone/node_modules/next/dist/server/use-cache/constants.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/use-cache/handlers.js +121 -0
- package/dist/standalone/node_modules/next/dist/server/utils.js +73 -0
- package/dist/standalone/node_modules/next/dist/server/web/adapter.js +395 -0
- package/dist/standalone/node_modules/next/dist/server/web/error.js +54 -0
- package/dist/standalone/node_modules/next/dist/server/web/get-edge-preview-props.js +23 -0
- package/dist/standalone/node_modules/next/dist/server/web/globals.js +128 -0
- package/dist/standalone/node_modules/next/dist/server/web/http.js +39 -0
- package/dist/standalone/node_modules/next/dist/server/web/next-url.js +199 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/context.js +462 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/fetch-inline-assets.js +35 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/index.js +28 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/resource-managers.js +88 -0
- package/dist/standalone/node_modules/next/dist/server/web/sandbox/sandbox.js +137 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/adapters/headers.js +192 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js +142 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js +30 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.js +211 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/cookies.js +29 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/fetch-event.js +98 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/request.js +99 -0
- package/dist/standalone/node_modules/next/dist/server/web/spec-extension/response.js +136 -0
- package/dist/standalone/node_modules/next/dist/server/web/utils.js +151 -0
- package/dist/standalone/node_modules/next/dist/server/web/web-on-close.js +87 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/action-revalidation-kind.js +31 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js +50 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/app-router-types.js +46 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/bloom-filter.js +85 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/constants.js +448 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/deep-freeze.js +30 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/deployment-id.js +63 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/dset.js +34 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/encode-uri-path.js +15 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/entry-constants.js +36 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/error-source.js +36 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/canary-only-config-error.js +39 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/code-frame.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/constants.js +19 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/empty-generate-static-params-error.js +24 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/errors/hard-deprecated-config-error.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/escape-regexp.js +22 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/format-webpack-messages.js +184 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/get-hostname.js +23 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/get-rspack.js +35 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/get-webpack-bundler.js +22 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/hash.js +42 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/head.js +163 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js +60 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/html-context.shared-runtime.js +40 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/htmlescape.js +52 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js +25 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/i18n/get-locale-redirect.js +59 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js +54 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/image-blur-svg.js +22 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js +19 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/image-config.js +77 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/invariant-error.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/is-internal.js +41 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/is-plain-object.js +42 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/is-thenable.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/isomorphic/path.js +14 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js +37 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/loadable-context.shared-runtime.js +19 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/loadable.shared-runtime.js +246 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/magic-identifier.js +218 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/match-local-pattern.js +46 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/match-remote-pattern.js +63 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/mitt.js +46 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/modern-browserslist-target.js +15 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/no-fallback-error.external.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/normalized-asset-prefix.js +28 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/absolute-path-to-page.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/get-page-paths.js +40 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/normalize-data-path.js +23 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js +19 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/page-path/remove-page-path-tail.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/promise-with-resolvers.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/adapters.js +136 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/router.js +1814 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/routes/app.js +134 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/add-locale.js +28 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/app-paths.js +62 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js +17 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js +70 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/compare-states.js +34 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js +43 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/escape-path-delimiters.js +16 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js +27 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/format-url.js +111 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js +174 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js +52 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-route-from-asset-path.js +25 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js +90 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/html-bots.js +17 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/index.js +30 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/interception-prefix-from-param-type.js +33 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/interception-routes.js +108 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js +53 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/is-bot.js +57 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/is-local-url.js +26 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.js +31 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/omit.js +21 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js +30 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/parse-path.js +33 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js +43 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/parse-url.js +38 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js +20 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/path-match.js +49 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js +292 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/querystring.js +79 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/relativize-url.js +40 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js +39 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js +21 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/resolve-param-value.js +116 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js +118 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js +113 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/route-matcher.js +45 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/route-regex.js +256 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js +244 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/router-context.shared-runtime.js +18 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js +99 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/segment-cache/vary-params-decoding.js +32 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/segment.js +102 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js +35 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/server-reference-info.js +56 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/side-effect.js +63 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/size-limit.js +40 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/compilation-events.js +83 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/entry-key.js +39 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/internal-error.js +53 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/manifest-loader.js +498 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/turbopack/utils.js +267 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/utils/reflect-utils.js +69 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/utils/warn-once.js +22 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/utils.js +207 -0
- package/dist/standalone/node_modules/next/dist/shared/lib/zod.js +101 -0
- package/dist/standalone/node_modules/next/dist/telemetry/anonymous-meta.js +89 -0
- package/dist/standalone/node_modules/next/dist/telemetry/detached-flush.js +56 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/build.js +174 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/error-feedback.js +31 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/index.js +41 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/plugins.js +51 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/swc-load-failure.js +55 -0
- package/dist/standalone/node_modules/next/dist/telemetry/events/version.js +66 -0
- package/dist/standalone/node_modules/next/dist/telemetry/flush-telemetry.js +19 -0
- package/dist/standalone/node_modules/next/dist/telemetry/post-telemetry-payload.js +48 -0
- package/dist/standalone/node_modules/next/dist/telemetry/project-id.js +48 -0
- package/dist/standalone/node_modules/next/dist/telemetry/storage.js +301 -0
- package/dist/standalone/node_modules/next/dist/trace/index.js +58 -0
- package/dist/standalone/node_modules/next/dist/trace/report/index.js +37 -0
- package/dist/standalone/node_modules/next/dist/trace/report/to-json-build.js +40 -0
- package/dist/standalone/node_modules/next/dist/trace/report/to-json.js +165 -0
- package/dist/standalone/node_modules/next/dist/trace/report/to-telemetry.js +36 -0
- package/dist/standalone/node_modules/next/dist/trace/shared.js +39 -0
- package/dist/standalone/node_modules/next/dist/trace/trace.js +211 -0
- package/dist/standalone/node_modules/next/font/google/target.css +1 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/at-rule.js +25 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/comment.js +13 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/container.js +439 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/css-syntax-error.js +100 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/declaration.js +24 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/document.js +33 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/fromJSON.js +54 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/input.js +248 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/lazy-result.js +550 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/list.js +58 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/map-generator.js +359 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/no-work-result.js +135 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/node.js +381 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/parse.js +42 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/parser.js +610 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/postcss.js +101 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/previous-map.js +142 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/processor.js +67 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/result.js +42 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/root.js +61 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/rule.js +27 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/stringifier.js +353 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/stringify.js +11 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/symbols.js +5 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/tokenize.js +266 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/warn-once.js +13 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/lib/warning.js +37 -0
- package/dist/standalone/node_modules/next/node_modules/postcss/package.json +88 -0
- package/dist/standalone/node_modules/next/package.json +136 -0
- package/dist/standalone/node_modules/picocolors/package.json +25 -0
- package/dist/standalone/node_modules/picocolors/picocolors.js +75 -0
- package/dist/standalone/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/dist/standalone/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/dist/standalone/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/dist/standalone/node_modules/react/cjs/react.development.js +1284 -0
- package/dist/standalone/node_modules/react/cjs/react.production.js +542 -0
- package/dist/standalone/node_modules/react/compiler-runtime.js +14 -0
- package/dist/standalone/node_modules/react/index.js +7 -0
- package/dist/standalone/node_modules/react/jsx-dev-runtime.js +7 -0
- package/dist/standalone/node_modules/react/jsx-runtime.js +7 -0
- package/dist/standalone/node_modules/react/package.json +51 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +6603 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.js +6692 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server.browser.production.js +7410 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server.edge.production.js +7512 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom-server.node.production.js +7707 -0
- package/dist/standalone/node_modules/react-dom/cjs/react-dom.production.js +210 -0
- package/dist/standalone/node_modules/react-dom/index.js +38 -0
- package/dist/standalone/node_modules/react-dom/package.json +117 -0
- package/dist/standalone/node_modules/react-dom/server.browser.js +16 -0
- package/dist/standalone/node_modules/react-dom/server.edge.js +17 -0
- package/dist/standalone/node_modules/react-dom/server.js +3 -0
- package/dist/standalone/node_modules/react-dom/server.node.js +18 -0
- package/dist/standalone/node_modules/react-dom/static.js +3 -0
- package/dist/standalone/node_modules/react-dom/static.node.js +14 -0
- package/dist/standalone/node_modules/source-map-js/lib/array-set.js +121 -0
- package/dist/standalone/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/dist/standalone/node_modules/source-map-js/lib/base64.js +67 -0
- package/dist/standalone/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/dist/standalone/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/dist/standalone/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/dist/standalone/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/dist/standalone/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/dist/standalone/node_modules/source-map-js/lib/source-node.js +413 -0
- package/dist/standalone/node_modules/source-map-js/lib/util.js +594 -0
- package/dist/standalone/node_modules/source-map-js/package.json +71 -0
- package/dist/standalone/node_modules/source-map-js/source-map.js +8 -0
- package/dist/standalone/node_modules/styled-jsx/dist/index/index.js +499 -0
- package/dist/standalone/node_modules/styled-jsx/index.js +1 -0
- package/dist/standalone/node_modules/styled-jsx/package.json +132 -0
- package/dist/standalone/node_modules/styled-jsx/style.js +1 -0
- package/dist/standalone/package.json +54 -0
- package/dist/standalone/scripts/whisper_transcribe.py +41 -0
- package/dist/standalone/server.js +38 -0
- package/package.json +54 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"_E"},B:{"1":"_J"},C:{"1":"_uH","2":"_qG"},D:{"1":"_rP _kD","4":"_HO"},E:{"1":"_PB","4":"_TB"},F:{"1":"_H _uB","2":"_T","4":"_nE"},G:{"1":"_q","4":"_2"},H:{"2":"sD"},I:{"1":"I","4":"_G"},J:{"4":"_B"},K:{"1":"H","2":"_D"},L:{"1":"I"},M:{"1":"TC"},N:{"1":"_A"},O:{"1":"WC"},P:{"1":"_F"},Q:{"1":"AE"},R:{"1":"BE"},S:{"1":"_C"}},B:4,C:"CSS3 word-break",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"4":"_E"},B:{"1":"_II","4":"_xF"},C:{"1":"_xD","2":"_g","4":"_oG _L"},D:{"1":"_TO","4":"_ZJ"},E:{"1":"_iB","4":"_4C"},F:{"1":"_tF","2":"_eB","4":"_5 _yQ"},G:{"1":"_z","4":"_n"},H:{"4":"sD"},I:{"1":"_X","4":"_W"},J:{"1":"A","4":"D"},K:{"1":"H","4":"_D"},L:{"1":"I"},M:{"1":"TC"},N:{"4":"_A"},O:{"1":"WC"},P:{"1":"_F"},Q:{"1":"AE"},R:{"1":"BE"},S:{"1":"DE","4":"CE"}},B:4,C:"CSS3 Overflow-wrap",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"_GB","132":"_wC","260":"_A"},B:{"1":"_J"},C:{"1":"_dD","2":"8C"},D:{"1":"_Q"},E:{"1":"_CB","2":"_e"},F:{"1":"_nB","2":"F"},G:{"1":"_M"},H:{"1":"sD"},I:{"1":"_O"},J:{"1":"_B"},K:{"1":"_N"},L:{"1":"I"},M:{"1":"TC"},N:{"4":"_A"},O:{"1":"WC"},P:{"1":"_F"},Q:{"1":"AE"},R:{"1":"BE"},S:{"1":"_C"}},B:1,C:"Cross-document messaging",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"_KC","2":"_GB"},B:{"1":"_I","4":"_K"},C:{"1":"_DL _uE _qL","4":"_H _aL _fT _XC","16":"_f"},D:{"4":"_GF","16":"_bJ"},E:{"4":"_XB","16":"_3"},F:{"4":"_cD","16":"_6C"},G:{"4":"_z","16":"_n"},H:{"2":"sD"},I:{"4":"_RE","16":"_KB"},J:{"4":"_B"},K:{"4":"_YB","16":"_bB"},L:{"4":"I"},M:{"4":"TC"},N:{"1":"_A"},O:{"4":"WC"},P:{"4":"_F"},Q:{"4":"AE"},R:{"4":"BE"},S:{"1":"CE","4":"DE"}},B:6,C:"X-Frame-Options HTTP header",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"_Z","1156":"_A"},B:{"1":"_K","1028":"_I"},C:{"1":"_9L","2":"_g","1028":"_v _TH","1284":"_A","1412":"_QC","1924":"_EU"},D:{"1":"_wL","16":"_vB","1028":"_0O","1156":"_qB","1412":"_JN _lK"},E:{"1":"_NC","2":"_i","1028":"_KC _bR","1156":"D GD","1412":"hB _eG"},F:{"1":"_gO","2":"_wD","132":"_aF","1028":"C _DL _WJ VC"},G:{"1":"_AB","2":"_d","1028":"_lC _ID","1156":"YD","1412":"_xC"},H:{"2":"sD"},I:{"1":"I","2":"_k","1028":"yD","1412":"xD","1924":"_9E"},J:{"1156":"A","1412":"D"},K:{"1":"H","2":"_fB","1028":"_AL"},L:{"1":"I"},M:{"1":"TC"},N:{"1156":"_A"},O:{"1":"WC"},P:{"1":"_U","1028":"J"},Q:{"1":"AE"},R:{"1":"BE"},S:{"1":"_C"}},B:1,C:"XMLHttpRequest advanced features",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"_V","2":"_c"},B:{"1":"_J"},C:{"1":"_S"},D:{"1":"_Q"},E:{"1":"_R"},F:{"1":"_b"},G:{"1":"_M"},H:{"1":"sD"},I:{"1":"_O"},J:{"1":"_B"},K:{"1":"_N"},L:{"1":"I"},M:{"1":"TC"},N:{"1":"_A"},O:{"1":"WC"},P:{"1":"_F"},Q:{"1":"AE"},R:{"1":"BE"},S:{"1":"_C"}},B:1,C:"XHTML served as application/xhtml+xml",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"_AR","4":"_FB"},B:{"2":"_I","8":"_K"},C:{"8":"_S"},D:{"8":"_Q"},E:{"8":"_R"},F:{"8":"_b"},G:{"8":"_M"},H:{"8":"sD"},I:{"8":"_O"},J:{"8":"_B"},K:{"8":"_N"},L:{"8":"I"},M:{"8":"TC"},N:{"2":"_A"},O:{"8":"WC"},P:{"8":"_F"},Q:{"8":"AE"},R:{"8":"BE"},S:{"8":"_C"}},B:7,C:"XHTML+SMIL animation",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"1":"_A","260":"_Z"},B:{"1":"_J"},C:{"1":"_YQ _JC","132":"B","260":"_FS","516":"_0H"},D:{"1":"_H _FC","132":"_Y _nE"},E:{"1":"_PI","132":"_5C"},F:{"1":"_wK _YF","16":"_lB","132":"_5 _aF _3M"},G:{"1":"_8B","132":"_DB"},H:{"132":"sD"},I:{"1":"_X","132":"_W"},J:{"132":"_B"},K:{"1":"H","16":"A","132":"_ZD"},L:{"1":"I"},M:{"1":"TC"},N:{"1":"_A"},O:{"1":"WC"},P:{"1":"_F"},Q:{"1":"AE"},R:{"1":"BE"},S:{"1":"_C"}},B:4,C:"DOM Parsing and Serialization",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={A:{A:{"2":"_E"},B:{"1":"_TG _o","2":"_IF _BO","194":"_8G _9G"},C:{"1":"_oH","2":"_OC _WT"},D:{"1":"_TG _p","2":"_IF _uG","194":"_8G _9G"},E:{"2":"_sR","260":"_WP 1C","516":"K 2C _yN"},F:{"1":"_H t _hH CB","2":"_7 _SG s _P"},G:{"1":"2C _BG","2":"_qR","260":"_WP 1C"},H:{"2":"sD"},I:{"1":"I","2":"_G"},J:{"2":"_B"},K:{"2":"_N"},L:{"1":"I"},M:{"1":"TC"},N:{"2":"_A"},O:{"2":"WC"},P:{"2":"_F"},Q:{"2":"AE"},R:{"2":"BE"},S:{"2":"_C"}},B:6,C:"zstd (Zstandard) content-encoding",D:true};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cross-document-view-transitions":require("./features/cross-document-view-transitions"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-anchor-positioning":require("./features/css-anchor-positioning"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-cascade-scope":require("./features/css-cascade-scope"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries-style":require("./features/css-container-queries-style"),"css-container-queries":require("./features/css-container-queries"),"css-container-query-units":require("./features/css-container-query-units"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid-animation":require("./features/css-grid-animation"),"css-grid-lanes":require("./features/css-grid-lanes"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphens":require("./features/css-hyphens"),"css-if":require("./features/css-if"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-range-syntax":require("./features/css-media-range-syntax"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-module-scripts":require("./features/css-module-scripts"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-relative-colors":require("./features/css-relative-colors"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-box-trim":require("./features/css-text-box-trim"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-text-wrap-balance":require("./features/css-text-wrap-balance"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"customizable-select":require("./features/customizable-select"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"loading-lazy-media":require("./features/loading-lazy-media"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"mdn-css-backdrop-pseudo-element":require("./features/mdn-css-backdrop-pseudo-element"),"mdn-css-unicode-bidi-isolate-override":require("./features/mdn-css-unicode-bidi-isolate-override"),"mdn-css-unicode-bidi-isolate":require("./features/mdn-css-unicode-bidi-isolate"),"mdn-css-unicode-bidi-plaintext":require("./features/mdn-css-unicode-bidi-plaintext"),"mdn-text-decoration-color":require("./features/mdn-text-decoration-color"),"mdn-text-decoration-line":require("./features/mdn-text-decoration-line"),"mdn-text-decoration-shorthand":require("./features/mdn-text-decoration-shorthand"),"mdn-text-decoration-style":require("./features/mdn-text-decoration-style"),"media-fragments":require("./features/media-fragments"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passkeys":require("./features/passkeys"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-bundling":require("./features/subresource-bundling"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"view-transitions":require("./features/view-transitions"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm-bigint":require("./features/wasm-bigint"),"wasm-bulk-memory":require("./features/wasm-bulk-memory"),"wasm-extended-const":require("./features/wasm-extended-const"),"wasm-gc":require("./features/wasm-gc"),"wasm-multi-memory":require("./features/wasm-multi-memory"),"wasm-multi-value":require("./features/wasm-multi-value"),"wasm-mutable-globals":require("./features/wasm-mutable-globals"),"wasm-nontrapping-fptoint":require("./features/wasm-nontrapping-fptoint"),"wasm-reference-types":require("./features/wasm-reference-types"),"wasm-relaxed-simd":require("./features/wasm-relaxed-simd"),"wasm-signext":require("./features/wasm-signext"),"wasm-simd":require("./features/wasm-simd"),"wasm-tail-calls":require("./features/wasm-tail-calls"),"wasm-threads":require("./features/wasm-threads"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webcodecs":require("./features/webcodecs"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webtransport":require("./features/webtransport"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer"),"zstd":require("./features/zstd")};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports={"0":"_I _IB","1":"_d WD","2":"_qS _nI","3":"_4 _e","4":"J hB","5":"B C","6":"_Y _OF","7":"_vS _jI","8":"_DE _AB","9":"dD _AB",A:"A B",B:"D A",C:"CE DE",D:"_FE _cP",E:"_RC 7C",F:"J _U",G:"_GD _rS",H:"_PC _KP",I:"_v _UB",J:"_SH _mI",K:"_H _mI",L:"CD DD",M:"_2 _q",N:"_FE _sS",O:"_GG _rS",P:"_NH _rE",Q:"_pI _CC",R:"_4T _QH",S:"_tS _vE",T:"_h _P",U:"_EB _tE",V:"F _A",W:"_GD _hK",X:"I _w",Y:"_4 _fC",Z:"_QC 7C",a:"_H _hM",b:"_UC _uS",c:"_FB 7C",d:"gC _DG",e:"ED gC",f:"_g _L",g:"8C aC",h:"F _5",i:"J _e",j:"tD uD",k:"_j vD",l:"_g _6",m:"_g _Y",n:"_d _xC",o:"_bS _UK",p:"_o _ZK",q:"_ID _AB",r:"E _wS",s:"_4 _PH",t:"_p _yB",u:"_6 _eC",v:"C _BC",w:"xD yD",x:"_pI _tB",y:"_zE 7C",z:"_VC _q",AB:"_iK _jB",BB:"_5 _sS",CB:"_iM _kM",DB:"_n YD",EB:"_DH _NB",FB:"_eD E",GB:"_eD 7C",HB:"_sI _QH",IB:"R _4D",JB:"C M",KB:"aC _k",LB:"_jM _QH",MB:"_5D _MP",NB:"_8F _qB",OB:"_2 _gC",PB:"F _OD",QB:"_tI _RH",RB:"_GG _1S",SB:"_TC _RH",TB:"_MG _nM",UB:"_AC _9B",VB:"_eC dC",WB:"_2 _ID",XB:"_5T _kM",YB:"H VC",ZB:"_v _AC",aB:"_l _VB",bB:"_FE _sB",cB:"_5T _eP",dB:"_3S _wS",eB:"F _bK",fB:"_A _sB",gB:"_EB _kU",hB:"_OB cD",iB:"_0S _eP",jB:"_gK _hD",kB:"_uE _tB",lB:"F QD",mB:"hB _XB",nB:"_lM _uS",oB:"_sI _xS",pB:"_QB hC",qB:"LB MB",rB:"CC DC",sB:"UC 5C",tB:"_VB _gM",uB:"_8D _iD",vB:"_4 L",wB:"_EB _6T",xB:"_EB _BU",yB:"_iU BD",zB:"_qE ID","0B":"FB _DC","1B":"_cC _QK","2B":"J _MH","3B":"_vS BC","4B":"_v G","5B":"EB _0B","6B":"_XP _CU","7B":"_GG _qI","8B":"_lC _q","9B":"P Q",AC:"G O",BC:"M N",CC:"_eC _BE",DC:"_CH _NB",EC:"_Y G",FC:"_uE _CC",GC:"_OF _CC",HC:"_Y _jD",IC:"_4 _eD",JC:"_OF _tB",KC:"_wC _A",LC:"_aK _mC",MC:"_g CD",NC:"_jK _xS",OC:"_tS _VB",PC:"_IF _8G",QC:"_eD _wC",RC:"_QC _A",SC:"_WK _cI",TC:"_4 _QC",UC:"_H _h",VC:"E _eM",WC:"_GE _hE",XC:"_KD _gM",YC:"_yC _pE",ZC:"_vB _jP",aC:"tB uB",bC:"vB wB",cC:"_UB iB",dC:"_KF _NF",eC:"_lE _MF",fC:"_RC _v",gC:"aD bD",hC:"_mE _FD",iC:"D _wC",jC:"iB _EB",kC:"_MF _BE",lC:"E ZD",mC:"_dP _jB",nC:"4B _iE",oC:"_BD GC",pC:"_2B 1D",qC:"F _NH",rC:"J zD",sC:"gC VD",tC:"_JH _jI",uC:"_pI _vE",vC:"_BT _sE",wC:"E F",xC:"WD XD",yC:"_WB _iK",zC:"_m _jD","0C":"_WB eD","1C":"K _sE","2C":"_g _EU","3C":"_IG _FU","4C":"_vB _PH","5C":"_IC _jP","6C":"_PD _sB","7C":"_0S _AU","8C":"_RD _q","9C":"_lP _mI",AD:"_tK _hD",BD:"_rB _uT",CD:"_JF _o",DD:"bC BC",ED:"_oE _fS",FD:"_DD cC",GD:"aC J",HD:"hC UC",ID:"_gC _DE",JD:"_HH _FD",KD:"_MF dC",LD:"_HG _KF",MD:"_WB _EG",ND:"J _kI",OD:"_jM _fP",PD:"_mM _NH",QD:"_HH _oI",RD:"E _7T",SD:"_fI _KE",TD:"FD _zB",UD:"_PF _gP",VD:"C _YB",WD:"I yD",XD:"_H _GC",YD:"_Y _VH",ZD:"_5 _cP",aD:"_JE _pE",bD:"_iP _pK",cD:"_qK _wI",dD:"_lU _vE",eD:"L D",fD:"qB rB",gD:"_kE _iE",hD:"_ED _AE",iD:"_mE _oI",jD:"_9D _7D",kD:"_JD _CC",lD:"_LF _FD",mD:"_A _v",nD:"_KD _iI",oD:"_HE _VM",pD:"_5D V",qD:"_5D _LP",rD:"_rB EC",sD:"E _nI",tD:"_PC 4",uD:"_EB _nU",vD:"_bC xB",wD:"_PD _cK",xD:"_5S _yE",yD:"_nP _zS",zD:"_ZH R","0D":"_0M _zS","1D":"_GU _GC","2D":"_IU _L","3D":"_mU _eK","4D":"H S","5D":"T U","6D":"_FH _jE","7D":"_GH _SC","8D":"_6D _dC","9D":"_nE _8D",AE:"_wT _BG",BE:"_CD _ZK",CE:"VC JD",DE:"cD dD",EE:"_mS _oS",FE:"_A C",GE:"_MB _SK",HE:"_BD _VP",IE:"O _9B",JE:"_EC _jU",KE:"_dK _jB",LE:"_hC _CC",ME:"_Y _9D",NE:"_kK CB",OE:"_8D _7D",PE:"_HD _CE",QE:"_fK _hD",RE:"J _KU",SE:"K _NT",TE:"_H _zS",UE:"_gD 7B",VE:"_hS _SD",WE:"_1T _hD",XE:"_h _7I",YE:"_UH 6D",ZE:"_RF _VG",aE:"_xI _9T",bE:"_OG _mI",cE:"_5S _kD",dE:"_qP _9T",eE:"_JT _jB",fE:"_LU _sE",gE:"AB BB",hE:"_rT _UI",iE:"5B 6B",jE:"mB nB",kE:"3B 4B",lE:"_BD _YK",mE:"_7D _HH",nE:"_cC _EB",oE:"ZC uC",pE:"XC _eI",qE:"GD HD",rE:"_cK VC",sE:"_fK _eK",tE:"_kI _fM",uE:"_8D _hC",vE:"_tB _L",wE:"_cC _DH",xE:"_MB _PK",yE:"_JD _tB",zE:"_QC A","0E":"_IB dC","1E":"_gD _EH","2E":"_PF M","3E":"_Y _HG","4E":"_Y _LD","5E":"_H _LG","6E":"_H _pM","7E":"_EB _fM","8E":"_gC cD","9E":"_GD _KH",AF:"_m _OU",BF:"_MD hD",CF:"_oC HC",DF:"_xI _hP",EF:"_8S _yE",FF:"_rP _QD",GF:"_yM _FC",HF:"W X",IF:"0 1",JF:"_MB _RM",KF:"oB pB",LF:"_EH _WM",MF:"_XM _IB",NF:"_dI _aC",OF:"_JH _FD",PF:"_IG C",QF:"_wE IB",RF:"_MD _hI",SF:"HB _NB",TF:"_KP _gE",UF:"_MB _TS",VF:"_hC _tB",WF:"_h _jD",XF:"_mK mB",YF:"_jC _uB",ZF:"_cC DB",aF:"_AC P",bF:"_MB _HP",cF:"_bM ND",dF:"_Y _2S",eF:"_GE _rT",fF:"_HC _1E",gF:"_UH _aP",hF:"HD ID",iF:"_ND hC",jF:"_yC _gK",kF:"J _KH",lF:"_H _yE",mF:"_H _DU",nF:"_EB _kS",oF:"_EB _QU",pF:"_Y _tM",qF:"_Y _ZF",rF:"_OH _yS",sF:"_pI _eC",tF:"_a VC",uF:"_x DD",vF:"_iP _yK",wF:"_3B _P",xF:"_ZB P",yF:"_RF nD",zF:"_kP _uB","0F":"_pC 2D","1F":"_7S _kD","2F":"_SG _OS","3F":"_AT _kB","4F":"_HT _nD","5F":"_oU _bP","6F":"v w","7F":"_PS _JP","8F":"IB _sT","9F":"OC PC",AG:"_aI _QP",BG:"3C 4C",CG:"_YM _ZM",DG:"VD 6C",EG:"eD _aK",FG:"_HD _lI",GG:"_GD I",HG:"_nE _6D",IG:"_4 _RC",JG:"_ZS _SC",KG:"KB _qB",LG:"_dC _iD",MG:"_4 _FB",NG:"_WM _FD",OG:"_H _IE",PG:"_rI _CC",QG:"_lE _9F",RG:"_kE 5B",SG:"_oM _AH",TG:"_pT _gE",UG:"_JF _bS",VG:"_lS iC",WG:"_nK 1B",XG:"_H _0B",YG:"_GH _WK",ZG:"_oK kB",aG:"_kK _t",bG:"_lE OC",cG:"_JE _fK",dG:"B _sB",eG:"L FD",fG:"1 _8G",gG:"bD _8",hG:"_PC _9G",iG:"_IB _pD",jG:"_IB _qD",kG:"_H _OM",lG:"_HH BC",mG:"_Y _cC",nG:"_Y _wE",oG:"_Y _nK",pG:"_oE _vT",qG:"_m _L",rG:"_uE _eC",sG:"_iM _pU",tG:"_W xD",uG:"_u _WC",vG:"_JE _cF",wG:"_iP _3M",xG:"_aB _WT",yG:"_eB SD",zG:"_TF _p","0G":"_kP _FC","1G":"_UF _IP","2G":"_xM _uB","3G":"_bF d","4G":"_fH _dI","5G":"_HU _P","6G":"_TT _CC","7G":"_qU _sK","8G":"2 3","9G":"4 _nT",AH:"p _QS",BH:"DB EB",CH:"GB HB",DH:"_QK _CH",EH:"7B 8B",FH:"jB _aS",GH:"_bC _ZS",HH:"_gD _LF",IH:"nC oC",JH:"_9D _mE",KH:"wD 6C",LH:"hD _hS",MH:"zD 0D",NH:"_bK _gI",OH:"G K",PH:"_e FD",QH:"_FG _sE",RH:"_PH _zB",SH:"_H _I",TH:"_9D _GH",UH:"_ND _dM",VH:"_LD _dI",WH:"_PM _RK",XH:"_cC _BH",YH:"_xE _PS",ZH:"_lE _XM",aH:"_h _9D",bH:"_uI _p",cH:"_uI _o",dH:"K _KG",eH:"_wC _mD",fH:"_6D _KF",gH:"_bM qD",hH:"u _RK",iH:"rB _vI",jH:"yB _SC",kH:"_nT _TG",lH:"_IC _nM",mH:"N G",nH:"mD _KE",oH:"_gE _t",pH:"_IB _BE",qH:"_IB _WC",rH:"_PK _7F",sH:"_H h",tH:"_H _kD",uH:"_H _JC",vH:"_H _6S",wH:"_H _PG",xH:"_H _bH",yH:"_H _cH",zH:"_H _hH","0H":"_wC A","1H":"_FH mB","2H":"_Y _5I","3H":"_6 _lE","4H":"_2 aD","5H":"_jK _hP","6H":"_TC _nM","7H":"_zE _TD","8H":"_1E 9B","9H":"_OG _7M",AI:"_TF _o",BI:"_7S _QD",CI:"_YH k",DI:"_0C fD",EI:"_2E _tU",FI:"_1M _p",GI:"_dF KD",HI:"_fF 9B",II:"_wK _mI",JI:"_4M _LG",KI:"_5M _pM",LI:"_XG _kB",MI:"_tP _zI",NI:"_DJ _iD",OI:"_MT _LE",PI:"_ZT _AU",QI:"_SU _L",RI:"_TU _P",SI:"_rU _P",TI:"_sU _L",UI:"y z",VI:"7 8",WI:"n o",XI:"Z a",YI:"_OS u",ZI:"RB SB",aI:"NB OB",bI:"_SP NC",cI:"1B 2B",dI:"_fD sB",eI:"kC _cS",fI:"lD mD",gI:"SD TD",hI:"_LH _fI",iI:"_JF CB",jI:"BC _VB",kI:"_MH _pS",lI:"_CE _EE",mI:"_IB _CD",nI:"_xC _eM",oI:"_jI _iI",pI:"_H _6",qI:"_KH _w",rI:"_dC _hC",sI:"B _jK",tI:"_TC A",uI:"_XI _RM",vI:"sB _aC",wI:"UD VC",xI:"_BC _OH",yI:"_aS _jE",zI:"_LF _oI","0I":"_lD _tB","1I":"_lK LB","2I":"hB _fC","3I":"pB _NF","4I":"_IH _2T","5I":"_TH zB","6I":"_ID _EG","7I":"_NH _cK","8I":"AC _FD","9I":"FC _YK",AJ:"_Y _JH",BJ:"_m _9D",CJ:"_qT _OK",DJ:"_H uB",EJ:"BC cC",FJ:"_H _4S",GJ:"_H _vI",HJ:"_8D _mE",IJ:"_JH BC",JJ:"D E",KJ:"iB _DH",LJ:"K _DT",MJ:"PC _VK",NJ:"FD _qE",OJ:"gD _mC",PJ:"_H _4D",QJ:"_H _0I",RJ:"_H _NE",SJ:"_H _jH",TJ:"_H _QT",UJ:"_H _EN",VJ:"_EB _vU",WJ:"_6D oB",XJ:"_7D 3B",YJ:"_fC G",ZJ:"_Y _1B",aJ:"_Y _lK",bJ:"_Y _QF",cJ:"_Y _1I",dJ:"_Y _2M",eJ:"_MH 1D",fJ:"_GD _qI",gJ:"_FE M",hJ:"_SH _IB",iJ:"_iC _A",jJ:"_MD _LH",kJ:"_u _5D",lJ:"_HC _RG",mJ:"_0 _5D",nJ:"_kK _o",oJ:"_lC _6I",pJ:"_iP _rE",qJ:"_oD LC",rJ:"_zC _UU",sJ:"_zC _uU",tJ:"_lP _YF",uJ:"_UF f",vJ:"_QG QC",wJ:"_ME _bC",xJ:"_oP _LE",yJ:"_oP _VF",zJ:"_vM _LE","0J":"_UG _tT","1J":"_UD VC","2J":"_CT _LG","3J":"_3E oB","4J":"_xK _FC","5J":"_ET _o","6J":"_ET _p","7J":"_9M _kD","8J":"_PT _kC","9J":"_1K _gK",AK:"_2K q",BK:"_FN _nD",CK:"_vP _DU",DK:"_yP n",EK:"_aT _tE",FK:"_bT _GC",GK:"_cT CB",HK:"_VU _L",IK:"_wU _P",JK:"_xU _P",KK:"_yU _P",LK:"_zU _L",MK:"_0U _L",NK:"_1U _P",OK:"_IP h",PK:"_TS _OK",QK:"_BH FB",RK:"_hE _gE",SK:"_PK _QM",TK:"cB dB",UK:"_tT _UM",VK:"_TP SC",WK:"zB 0B",XK:"_VM _bI",YK:"_VP _XK",ZK:"eC _eS",aK:"fD gD",bK:"QD RD",cK:"_sB UD",dK:"_lS _nS",eK:"_hD PD",fK:"_bM _2T",gK:"_bM _3T",hK:"_k _KH",iK:"_EG _dP",jK:"_v _OH",kK:"_QM _RK",lK:"_wE _8F",mK:"_nE _FH",nK:"_TH _WK",oK:"_nE jB",pK:"_gI _rE",qK:"_qM _hM",rK:"_sT _qB",sK:"_mS iC",tK:"_IH _3T",uK:"_lD _CC",vK:"_0E _iI",wK:"_H Q",xK:"_H MB",yK:"TD _rE",zK:"IC _XK","0K":"_LH lD","1K":"_ID _iK","2K":"_oM p","3K":"_oD _SP","4K":"_H _WH","5K":"_JF _AG","6K":"_UP _uM","7K":"F A","8K":"B _v","9K":"_QG _TP",AL:"C VC",BL:"C _cP",CL:"C _wI",DL:"Q _jC",EL:"J _qI",FL:"J _WU",GL:"K _eK",HL:"5C _wI",IL:"_oT _WI",JL:"_AH _OS",KL:"_H _OK",LL:"_H _tB",ML:"_H _m",NL:"_H _iD",OL:"_H _uK",PL:"_H _JN",QL:"_H _zP",RL:"_H _3U",SL:"_wC _OD",TL:"_EB _bP",UL:"_JF _aI",VL:"_LF BC",WL:"_MF _pD",XL:"_Y _UB",YL:"_Y _oK",ZL:"_Y _XH",aL:"_Y _aF",bL:"_Y _WG",cL:"_fS _AE",dL:"_ED _wT",eL:"_GD _HN",fL:"_EG _hI",gL:"_xC YD",hL:"_HD VC",iL:"_FG _fK",jL:"_hC _eC",kL:"_m _JH",lL:"_m _dT",mL:"_m _YU",nL:"_m _ZU",oL:"_l _4U",pL:"_jC _FC",qL:"_HE JC",rL:"_0 _oM",sL:"_kK _p",tL:"_IE _jC",uL:"_qK VC",vL:"_7S _yE",wL:"_8S _kD",xL:"_nP _GC",yL:"_oP _iD",zL:"_qP _yS","0L":"_vM _VF","1L":"_rP _yE","2L":"_xM _FC","3L":"_1M _o","4L":"_tP _0I","5L":"_6M _zI","6L":"_6M _uK","7L":"_FT _0I","8L":"_GT _uB","9L":"_8M _yE",AM:"_OT _JC",BM:"_GJ _iD",CM:"_HJ BC",DM:"_NU _P",EM:"_NU _XU",FM:"_VT _XC",GM:"_GN _tE",HM:"_IN _L",IM:"_0P _CC",JM:"_1P _kC",KM:"_5U _iI",LM:"_6U _P",MM:"_7U _P",NM:"_8U _L",OM:"_HF Y",PM:"_AH _YI",QM:"_7F _PM",RM:"_SK _RK",SM:"TB UB",TM:"eB fB",UM:"_TM _US",VM:"JC KC",WM:"9B AC",XM:"_9F _VK",YM:"YC pC",ZM:"qC rC",aM:"1C 2C",bM:"_pE _IH",cM:"YC _zT",dM:"hC _0T",eM:"YD ZD",fM:"_dM _bP",gM:"_BE _yB",hM:"_JH _oI",iM:"_Y _OH",jM:"_A _jK",kM:"FD _eP",lM:"_H _5",mM:"F B",nM:"_PH _qE",oM:"_xE _7F",pM:"_rI _tB",qM:"_H C",rM:"_uT _YK",sM:"0B _cI",tM:"_1B GB",uM:"_UK _ZK",vM:"_H _aC",wM:"_YS _XK",xM:"_H _SF",yM:"_H _rK",zM:"LD _oS","0M":"_H N","1M":"_H _8T","2M":"_QF _SS","3M":"RD _pK","4M":"_H nB","5M":"_H _jE","6M":"_H 6B","7M":"_jC _kB","8M":"_H _SC","9M":"_H _JG",AN:"_H _YK",BN:"_H _9S",CN:"_QF JB",DN:"_0E _gM",EN:"NC _nD",FN:"_H _bI",GN:"J _DH",HN:"vD _KH",IN:"_m _LD",JN:"_iC _mD",KN:"_H _JU",LN:"_UM _ZK",MN:"_GH zB",NN:"_V _v",ON:"_yC _gH",PN:"UC _lI",QN:"_H _zK",RN:"_H _XT",SN:"_PE _sK",TN:"C _sS",UN:"N _UB",VN:"J _tE",WN:"EB _eT",XN:"IB JB",YN:"wB _ZS",ZN:"RD SD",aN:"6C _w",bN:"mD _dK",cN:"_9B _jC",dN:"_PM _hE",eN:"_H _IB",fN:"_H _kC",gN:"_H _5B",hN:"_H _YF",iN:"_H _NN",jN:"_H _2P",kN:"_H _9U",lN:"_RC C",mN:"_US _ZK",nN:"_WS _uM",oN:"_QP _6K",pN:"_UP _UK",qN:"_WM _oI",rN:"_KF _dI",sN:"_8D _MN",tN:"_mE BC",uN:"_Y _AC",vN:"_Y _TH",wN:"_Y _mK",xN:"_dS _AE",yN:"_BG PD",zN:"_GD _k","0N":"_GD _1S","1N":"_6 CC","2N":"_m _EV","3N":"_4T _cU","4N":"_xE i","5N":"_GE v","6N":"_MD _0K","7N":"_u _MB","8N":"_HC 3B","9N":"_HC _kE",AO:"_HC _gD",BO:"_0 _WC",CO:"_0 _eF",DO:"_IE iB",EO:"_mD G",FO:"_qD Z",GO:"_kP _kB",HO:"_ME vB",IO:"_vM _iD",JO:"_OE 3B",KO:"_OE _gD",LO:"_9S _dC",MO:"_AT _uB",NO:"_CT _pM",OO:"_CT _PG",PO:"_xK _uB",QO:"_4M _pM",RO:"_5M _LG",SO:"_FT _zI",TO:"_GT _FC",UO:"_AJ bC",VO:"_AJ _DD",WO:"_IT _CV",XO:"_BJ _L",YO:"_BJ _DV",ZO:"_CJ _aG",aO:"_uP CB",bO:"_KT _kB",cO:"_KT _FC",dO:"_8M _kD",eO:"_LT _uB",fO:"_LT _FC",gO:"_MT _iD",hO:"_HU _BV",iO:"_iF 4D",jO:"_AN _kC",kO:"_AN _XC",lO:"_BN _pM",mO:"_BN _PG",nO:"_kH _t",oO:"_OT _GC",pO:"_RT _nI",qO:"_RT _wS",rO:"_UT _kC",sO:"_UT _XC",tO:"_YT _bH",uO:"_4K _o",vO:"_5K _RP",wO:"_KN _t",xO:"_LN _yB",yO:"_ON _CG",zO:"_3P _DN","0O":"_4P 1B","1O":"_5P YC","2O":"_gT _aU","3O":"_hT _hD","4O":"_iT fD","5O":"_bU _GC","6O":"_dU _P","7O":"_AV _tE","8O":"_FV _P","9O":"_GV _P",AP:"_HV _P",BP:"_IV _P",CP:"_JV _L",DP:"_KV _L",EP:"_LV _L",FP:"_MV _L",GP:"_NV _P",HP:"b c",IP:"f g",JP:"_RS _WI",KP:"_9G _pT",LP:"V _OM",MP:"_LP _XI",NP:"WB XB",OP:"YB ZB",PP:"CB QB",QP:"PB _PP",RP:"_ZI _SM",SP:"LC MC",TP:"QC RC",UP:"_RP _WS",VP:"GC _YS",WP:"zC 0C",XP:"jC WC",YP:"sC tC",ZP:"jD kD",aP:"6D 7D",bP:"_aP _kS",cP:"_sB VC",dP:"_hI _dK",eP:"_zB _QH",fP:"ID _QH",gP:"_RH _HD",hP:"_lI _sE",iP:"_lM _hM",jP:"_PH GD",kP:"_H _NB",lP:"_H _9B",mP:"wB _JG",nP:"_H _BC",oP:"_H _NF",pP:"_XP MD",qP:"N _OH",rP:"_H _mP",sP:"aC _6",tP:"_H _nC",uP:"_H _RM",vP:"_H 8B",wP:"_H _dH",xP:"_H _PU",yP:"_YH _RS",zP:"RC SC","0P":"_H _8I","1P":"_H _9I","2P":"X Y","3P":"_H SC","4P":"_8D _YG","5P":"_gF _gS","6P":"B _4B","7P":"g h","8P":"MC NC","9P":"UC VC",AQ:"_H _FD",BQ:"_H _iH",CQ:"_H _EJ",DQ:"L 7C",EQ:"9 _gE",FQ:"C H",GQ:"C _rE",HQ:"R H",IQ:"m _WI",JQ:"J gC",KQ:"hB FD",LQ:"iB _QK",MQ:"IB _SS",NQ:"K _hU",OQ:"jB kB",PQ:"nB _dC",QQ:"nB _rI",RQ:"4B 5B",SQ:"dC _gM",TQ:"5C VC",UQ:"uD vD",VQ:"_4D _BE",WQ:"_IF 2",XQ:"_IB _5D",YQ:"_H _v",ZQ:"_H _LE",aQ:"_H _VF",bQ:"_H _DN",cQ:"_H _8K",dQ:"_H _7P",eQ:"_H _OV",fQ:"_H _PV",gQ:"_H _SV",hQ:"_BC _UB",iQ:"_wC _hF",jQ:"_EB _zT",kQ:"_EB _cM",lQ:"_WS _UK",mQ:"_KF qB",nQ:"_iE _LF",oQ:"_BD _L",pQ:"_4 FD",qQ:"_8D vB",rQ:"_fC _HG",sQ:"_Y _XF",tQ:"_YP _eU",uQ:"_ED _WP",vQ:"_5 _3M",wQ:"_5 _9P",xQ:"_dM _aP",yQ:"_gI _cK",zQ:"_6 _BD","0Q":"_6 _HE","1Q":"_6 _oC","2Q":"_6 _rD","3Q":"_6 _bG","4Q":"_zB hC","5Q":"_zB _SN","6Q":"_h _VV","7Q":"_GG _fU","8Q":"_uE _VB","9Q":"_jD 3B",AR:"_V 7C",BR:"_GE _6F",CR:"_IG _gP",DR:"_u _SG",ER:"_u _eF",FR:"_JE XC",GR:"_uI CB",HR:"_PD UC",IR:"_3B _XV",JR:"_7 _UV",KR:"_7 _gV",LR:"_zC _L",MR:"_pD _HF",NR:"_3S _nI",OR:"_NG _tB",PR:"_qK _rE",QR:"_WF _RV",RR:"_WF _WV",SR:"_8S _QD",TR:"_uM _yB",UR:"_2E _2S",VR:"_AT _FC",WR:"_wM _lT",XR:"_6I _hI",YR:"_6I _0K",ZR:"_aH _P",aR:"_yM _kB",bR:"_hF hC",cR:"_wK _7M",dR:"_FT _uK",eR:"_GT _kB",fR:"_HT _XC",gR:"_IT _P",hR:"_CJ _QM",iR:"_uP _o",jR:"_uP _p",kR:"_KT _uB",lR:"_9M _QD",mR:"_LT _kB",nR:"_4E qB",oR:"_FJ _o",pR:"_FJ _p",qR:"_jF _ED",rR:"_PT _XC",sR:"_cG _ED",tR:"_VT _kC",uR:"_lH PD",vR:"_YT _cH",wR:"_wP _uB",xR:"_wP _kB",yR:"_xP _o",zR:"_xP _p","0R":"_IJ _3K","1R":"_7K _jT","2R":"_9K _L","3R":"_QN _XC","4R":"_RN _NE","5R":"_6P _PN","6R":"_8P _KD","7R":"_AQ _CC","8R":"_BQ _LE","9R":"_CQ _tB",AS:"_kT _o",BS:"_mT cB",CS:"_gU _kC",DS:"_QV _DT",ES:"_TV CB",FS:"_YV _L",GS:"_ZV _P",HS:"_aV _P",IS:"_bV _P",JS:"_cV _L",KS:"_dV _L",LS:"_eV _L",MS:"_fV _L",NS:"_hV _P",OS:"s t",PS:"i j",QS:"q r",RS:"k _oT",SS:"JB K",TS:"_HP _qT",US:"gB I",VS:"aB bB",WS:"VB _NP",XS:"_OP _VS",YS:"HC IC",ZS:"xB yB",aS:"kB lB",bS:"_AG _UP",cS:"lC mC",dS:"xC yC",eS:"TC fC",fS:"_vT _dS",gS:"8D XC",hS:"iD _ZP",iS:"_xT OD",jS:"2D 3D",kS:"_gS _cM",lS:"nD oD",mS:"KD LD",nS:"_yT pD",oS:"_yT MD",pS:"1D _jS",qS:"E _d",rS:"_hK _w",sS:"H _cP",tS:"_H _l",uS:"_hM _P",vS:"_h _JH",wS:"_nI _q",xS:"UC _hP",yS:"_EE _sE",zS:"_UB _mI","0S":"_iC _jM","1S":"vD _qI","2S":"_gP _CE","3S":"E _DG","4S":"_UI _gE","5S":"_H _cI","6S":"_YI _RK","7S":"_H _sM","8S":"_H 2B","9S":"lB _jE",AT:"_H _qB",BT:"K _pP",CT:"_H _yI",DT:"_AE PD",ET:"_H _RK",FT:"_H _iE",GT:"_H _DC",HT:"_H _rM",IT:"_h _LD",JT:"oD _nS",KT:"_H _EB",LT:"_H _KG",MT:"_H _3I",NT:"_4I _eK",OT:"_H _fC",PT:"_H _wM",QT:"_VK _vK",RT:"E 6C",ST:"_QS _6S",TT:"_H cC",UT:"_H _XK",VT:"_H _MU",WT:"_WC _L",XT:"e _OK",YT:"_H Y",ZT:"_wC _jM",aT:"J _QK",bT:"_H _eH",cT:"_H _ST",dT:"_TH _L",eT:"FB _CH",fT:"KC _bI",gT:"_wC _FE",hT:"_YP rD",iT:"_ID eD",jT:"ID hC",kT:"_H _2U",lT:"_nD _P",mT:"_UG _XS",nT:"5 6",oT:"l m",pT:"_VI 9",qT:"d e",rT:"_6F x",sT:"_SS KB",tT:"_XS _TK",uT:"EC FC",vT:"vC wC",wT:"_WP _aM",xT:"_CG _YP",yT:"iC _XP",zT:"ZC 9D","0T":"4D 5D","1T":"_xT rD","2T":"ND _iS","3T":"qD _1T","4T":"_iM _RH","5T":"_fC _OH","6T":"_pS _fM","7T":"XD _eM","8T":"_MP _RM","9T":"JD _yS",AU:"HD _fP",BU:"_jS _fM",CU:"pD _jB",DU:"_NG _CC",EU:"_4 _L",FU:"_RH hC",GU:"_H _2I",HU:"_h _HG",IU:"_m _lK",JU:"x _4S",KU:"I _qI",LU:"_OH _zM",MU:"DC _rM",NU:"_h _VH",OU:"_XH _L",PU:"U _8T",QU:"3D _fM",RU:"_JP _WH",SU:"_m _HG",TU:"_aH vB",UU:"_kE _L",VU:"_g _TC",WU:"DB _tE",XU:"tB _P",YU:"_UB _L",ZU:"_nE _L",aU:"ID _HD",bU:"_H _mD",cU:"_FG _QE",dU:"_IT _fD",eU:"OD _eK",fU:"uD _1S",gU:"_H _fT",hU:"_fS _DT",iU:"9C AD",jU:"_RH _FG",kU:"0D _6T",lU:"_H _sP",mU:"K _iS",nU:"7D _kS",oU:"_EB _0T",pU:"gC _kM",qU:"_EC _2S",rU:"_h _wE",sU:"_m _ZG",tU:"_gP VC",uU:"3B _L",vU:"5D _bP",wU:"_h _tM",xU:"_h _XF",yU:"_h _2M",zU:"_m _wE","0U":"_m _5I","1U":"_WF _RG","2U":"a _RM","3U":"r _6S","4U":"CC _L","5U":"_H _VB","6U":"_h _oK","7U":"_h _1I","8U":"_m _nK","9U":"j _RU",AV:"J _BH",BV:"oB _P",CV:"qB _P",DV:"vB _L",EV:"_AC _L",FV:"_h _1B",GV:"_h _mK",HV:"_h _WG",IV:"_h _CN",JV:"_m _QF",KV:"_m _mK",LV:"_m _oK",MV:"_m _1I",NV:"_3B _oD",OV:"o _WH",PV:"w _JU",QV:"K _dS",RV:"3B _P",SV:"PC _QT",TV:"_H _RU",UV:"_MB _P",VV:"_UB _P",WV:"_kE _P",XV:"_BD _P",YV:"_g _IC",ZV:"_h _TH",aV:"_h _lK",bV:"_h _XH",cV:"_m _tM",dV:"_m _XF",eV:"_m _aF",fV:"_m _CN",gV:"_xE _P",hV:"_3B _3K"};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
1: 'ls', // WHATWG Living Standard
|
|
3
|
+
2: 'rec', // W3C Recommendation
|
|
4
|
+
3: 'pr', // W3C Proposed Recommendation
|
|
5
|
+
4: 'cr', // W3C Candidate Recommendation
|
|
6
|
+
5: 'wd', // W3C Working Draft
|
|
7
|
+
6: 'other', // Non-W3C, but reputable
|
|
8
|
+
7: 'unoff' // Unofficial, Editor's Draft or W3C "Note"
|
|
9
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const browsers = require('./browsers').browsers
|
|
4
|
+
const versions = require('./browserVersions').browserVersions
|
|
5
|
+
const agentsData = require('../../data/agents')
|
|
6
|
+
|
|
7
|
+
function unpackBrowserVersions(versionsData) {
|
|
8
|
+
return Object.keys(versionsData).reduce((usage, version) => {
|
|
9
|
+
usage[versions[version]] = versionsData[version]
|
|
10
|
+
return usage
|
|
11
|
+
}, {})
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
module.exports.agents = Object.keys(agentsData).reduce((map, key) => {
|
|
15
|
+
let versionsData = agentsData[key]
|
|
16
|
+
map[browsers[key]] = Object.keys(versionsData).reduce((data, entry) => {
|
|
17
|
+
if (entry === 'A') {
|
|
18
|
+
data.usage_global = unpackBrowserVersions(versionsData[entry])
|
|
19
|
+
} else if (entry === 'C') {
|
|
20
|
+
data.versions = versionsData[entry].reduce((list, version) => {
|
|
21
|
+
if (version === '') {
|
|
22
|
+
list.push(null)
|
|
23
|
+
} else {
|
|
24
|
+
list.push(versions[version])
|
|
25
|
+
}
|
|
26
|
+
return list
|
|
27
|
+
}, [])
|
|
28
|
+
} else if (entry === 'D') {
|
|
29
|
+
data.prefix_exceptions = unpackBrowserVersions(versionsData[entry])
|
|
30
|
+
} else if (entry === 'E') {
|
|
31
|
+
data.browser = versionsData[entry]
|
|
32
|
+
} else if (entry === 'F') {
|
|
33
|
+
data.release_date = Object.keys(versionsData[entry]).reduce(
|
|
34
|
+
(map2, key2) => {
|
|
35
|
+
map2[versions[key2]] = versionsData[entry][key2]
|
|
36
|
+
return map2
|
|
37
|
+
},
|
|
38
|
+
{}
|
|
39
|
+
)
|
|
40
|
+
} else {
|
|
41
|
+
// entry is B
|
|
42
|
+
data.prefix = versionsData[entry]
|
|
43
|
+
}
|
|
44
|
+
return data
|
|
45
|
+
}, {})
|
|
46
|
+
return map
|
|
47
|
+
}, {})
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports.browserVersions = require('../../data/browserVersions')
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports.browsers = require('../../data/browsers')
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const statuses = require('../lib/statuses')
|
|
4
|
+
const supported = require('../lib/supported')
|
|
5
|
+
const browsers = require('./browsers').browsers
|
|
6
|
+
const versions = require('./browserVersions').browserVersions
|
|
7
|
+
const versionGroups = require('./versionGroups.js').versionGroups
|
|
8
|
+
|
|
9
|
+
const MATH2LOG = Math.log(2)
|
|
10
|
+
|
|
11
|
+
const groupCache = {}
|
|
12
|
+
|
|
13
|
+
function expandKey(key) {
|
|
14
|
+
let cached = groupCache[key]
|
|
15
|
+
if (cached === undefined) {
|
|
16
|
+
cached = groupCache[key] = expandGroups(versionGroups[key], [])
|
|
17
|
+
}
|
|
18
|
+
return cached
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function expandGroups(value, out) {
|
|
22
|
+
let start = 0
|
|
23
|
+
for (let i = 0, len = value.length; i <= len; i++) {
|
|
24
|
+
if (i === len || value.charCodeAt(i) === 32) {
|
|
25
|
+
if (i > start) {
|
|
26
|
+
if (value.charCodeAt(start) === 95) {
|
|
27
|
+
let group = expandKey(value.slice(start + 1, i))
|
|
28
|
+
for (let j = 0; j < group.length; j++) out.push(group[j])
|
|
29
|
+
} else {
|
|
30
|
+
out.push(value.slice(start, i))
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
start = i + 1
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
return out
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function unpackSupport(cipher) {
|
|
40
|
+
// bit flags
|
|
41
|
+
let stats = Object.keys(supported).reduce((list, support) => {
|
|
42
|
+
if (cipher & supported[support]) list.push(support)
|
|
43
|
+
return list
|
|
44
|
+
}, [])
|
|
45
|
+
|
|
46
|
+
// notes
|
|
47
|
+
let notes = cipher >> 7
|
|
48
|
+
let notesArray = []
|
|
49
|
+
while (notes) {
|
|
50
|
+
let note = Math.floor(Math.log(notes) / MATH2LOG) + 1
|
|
51
|
+
notesArray.unshift(`#${note}`)
|
|
52
|
+
notes -= Math.pow(2, note - 1)
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
return stats.concat(notesArray).join(' ')
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function unpackFeature(packed) {
|
|
59
|
+
let unpacked = {
|
|
60
|
+
status: statuses[packed.B],
|
|
61
|
+
title: packed.C,
|
|
62
|
+
shown: packed.D
|
|
63
|
+
}
|
|
64
|
+
unpacked.stats = Object.keys(packed.A).reduce((browserStats, key) => {
|
|
65
|
+
let browser = packed.A[key]
|
|
66
|
+
browserStats[browsers[key]] = Object.keys(browser).reduce(
|
|
67
|
+
(stats, support) => {
|
|
68
|
+
let packedVersions = expandGroups(browser[support], [])
|
|
69
|
+
let unpacked2 = unpackSupport(support)
|
|
70
|
+
packedVersions.forEach(v => (stats[versions[v]] = unpacked2))
|
|
71
|
+
return stats
|
|
72
|
+
},
|
|
73
|
+
{}
|
|
74
|
+
)
|
|
75
|
+
return browserStats
|
|
76
|
+
}, {})
|
|
77
|
+
return unpacked
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
module.exports = unpackFeature
|
|
81
|
+
module.exports.default = unpackFeature
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const browsers = require('./browsers').browsers
|
|
4
|
+
|
|
5
|
+
function unpackRegion(packed) {
|
|
6
|
+
return Object.keys(packed).reduce((list, browser) => {
|
|
7
|
+
let data = packed[browser]
|
|
8
|
+
list[browsers[browser]] = Object.keys(data).reduce((memo, key) => {
|
|
9
|
+
let stats = data[key]
|
|
10
|
+
if (key === '_') {
|
|
11
|
+
stats.split(' ').forEach(version => (memo[version] = null))
|
|
12
|
+
} else {
|
|
13
|
+
memo[key] = stats
|
|
14
|
+
}
|
|
15
|
+
return memo
|
|
16
|
+
}, {})
|
|
17
|
+
return list
|
|
18
|
+
}, {})
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
module.exports = unpackRegion
|
|
22
|
+
module.exports.default = unpackRegion
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports.versionGroups = require('../../data/versionGroups.js')
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "caniuse-lite",
|
|
3
|
+
"version": "1.0.30001800",
|
|
4
|
+
"description": "A smaller version of caniuse-db, with only the essentials!",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"support"
|
|
7
|
+
],
|
|
8
|
+
"license": "CC-BY-4.0",
|
|
9
|
+
"author": {
|
|
10
|
+
"name": "Ben Briggs",
|
|
11
|
+
"email": "beneb.info@gmail.com",
|
|
12
|
+
"url": "http://beneb.info"
|
|
13
|
+
},
|
|
14
|
+
"repository": "browserslist/caniuse-lite",
|
|
15
|
+
"funding": [
|
|
16
|
+
{
|
|
17
|
+
"type": "opencollective",
|
|
18
|
+
"url": "https://opencollective.com/browserslist"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"type": "tidelift",
|
|
22
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "github",
|
|
26
|
+
"url": "https://github.com/sponsors/ai"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"files": [
|
|
30
|
+
"data",
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"main": "dist/unpacker/index.js"
|
|
34
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "client-only",
|
|
3
|
+
"description": "This is a marker package to indicate that a module can only be used in Client Components.",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"react"
|
|
6
|
+
],
|
|
7
|
+
"version": "0.0.1",
|
|
8
|
+
"homepage": "https://reactjs.org/",
|
|
9
|
+
"bugs": "https://github.com/facebook/react/issues",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"files": ["index.js", "error.js"],
|
|
12
|
+
"main": "index.js",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"react-server": "./error.js",
|
|
16
|
+
"default": "./index.js"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
let urlAlphabet =
|
|
2
|
+
'useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict'
|
|
3
|
+
|
|
4
|
+
let customAlphabet = (alphabet, defaultSize = 21) => {
|
|
5
|
+
return (size = defaultSize) => {
|
|
6
|
+
let id = ''
|
|
7
|
+
let i = size | 0
|
|
8
|
+
while (i--) {
|
|
9
|
+
id += alphabet[(Math.random() * alphabet.length) | 0]
|
|
10
|
+
}
|
|
11
|
+
return id
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
let nanoid = (size = 21) => {
|
|
16
|
+
let id = ''
|
|
17
|
+
let i = size | 0
|
|
18
|
+
while (i--) {
|
|
19
|
+
id += urlAlphabet[(Math.random() * 64) | 0]
|
|
20
|
+
}
|
|
21
|
+
return id
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
module.exports = { nanoid, customAlphabet }
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nanoid",
|
|
3
|
+
"version": "3.3.15",
|
|
4
|
+
"description": "A tiny (116 bytes), secure URL-friendly unique string ID generator",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"uuid",
|
|
7
|
+
"random",
|
|
8
|
+
"id",
|
|
9
|
+
"url"
|
|
10
|
+
],
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
13
|
+
},
|
|
14
|
+
"funding": [
|
|
15
|
+
{
|
|
16
|
+
"type": "github",
|
|
17
|
+
"url": "https://github.com/sponsors/ai"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"repository": "ai/nanoid",
|
|
23
|
+
"browser": {
|
|
24
|
+
"./index.js": "./index.browser.js",
|
|
25
|
+
"./async/index.js": "./async/index.browser.js",
|
|
26
|
+
"./async/index.cjs": "./async/index.browser.cjs",
|
|
27
|
+
"./index.cjs": "./index.browser.cjs"
|
|
28
|
+
},
|
|
29
|
+
"react-native": "index.js",
|
|
30
|
+
"bin": "./bin/nanoid.cjs",
|
|
31
|
+
"sideEffects": false,
|
|
32
|
+
"types": "./index.d.ts",
|
|
33
|
+
"type": "module",
|
|
34
|
+
"main": "index.cjs",
|
|
35
|
+
"module": "index.js",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"react-native": "./index.browser.js",
|
|
39
|
+
"browser": "./index.browser.js",
|
|
40
|
+
"require": {
|
|
41
|
+
"types": "./index.d.cts",
|
|
42
|
+
"default": "./index.cjs"
|
|
43
|
+
},
|
|
44
|
+
"import": {
|
|
45
|
+
"types": "./index.d.ts",
|
|
46
|
+
"default": "./index.js"
|
|
47
|
+
},
|
|
48
|
+
"default": "./index.js"
|
|
49
|
+
},
|
|
50
|
+
"./package.json": "./package.json",
|
|
51
|
+
"./async/package.json": "./async/package.json",
|
|
52
|
+
"./async": {
|
|
53
|
+
"browser": "./async/index.browser.js",
|
|
54
|
+
"require": {
|
|
55
|
+
"types": "./index.d.cts",
|
|
56
|
+
"default": "./async/index.cjs"
|
|
57
|
+
},
|
|
58
|
+
"import": {
|
|
59
|
+
"types": "./index.d.ts",
|
|
60
|
+
"default": "./async/index.js"
|
|
61
|
+
},
|
|
62
|
+
"default": "./async/index.js"
|
|
63
|
+
},
|
|
64
|
+
"./non-secure/package.json": "./non-secure/package.json",
|
|
65
|
+
"./non-secure": {
|
|
66
|
+
"require": {
|
|
67
|
+
"types": "./index.d.cts",
|
|
68
|
+
"default": "./non-secure/index.cjs"
|
|
69
|
+
},
|
|
70
|
+
"import": {
|
|
71
|
+
"types": "./index.d.ts",
|
|
72
|
+
"default": "./non-secure/index.js"
|
|
73
|
+
},
|
|
74
|
+
"default": "./non-secure/index.js"
|
|
75
|
+
},
|
|
76
|
+
"./url-alphabet/package.json": "./url-alphabet/package.json",
|
|
77
|
+
"./url-alphabet": {
|
|
78
|
+
"require": {
|
|
79
|
+
"types": "./index.d.cts",
|
|
80
|
+
"default": "./url-alphabet/index.cjs"
|
|
81
|
+
},
|
|
82
|
+
"import": {
|
|
83
|
+
"types": "./index.d.ts",
|
|
84
|
+
"default": "./url-alphabet/index.js"
|
|
85
|
+
},
|
|
86
|
+
"default": "./url-alphabet/index.js"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// This is a minimal import that initializes the node
|
|
2
|
+
// environment, it is traced automatically for entries
|
|
3
|
+
// and can be used to ensure Node.js APIs are setup
|
|
4
|
+
// as expected without require `next-server`
|
|
5
|
+
"use strict";
|
|
6
|
+
if (process.env.NEXT_RUNTIME !== 'edge') {
|
|
7
|
+
// eslint-disable-next-line @next/internal/typechecked-require
|
|
8
|
+
require('next/dist/server/node-environment');
|
|
9
|
+
// eslint-disable-next-line @next/internal/typechecked-require
|
|
10
|
+
require('next/dist/server/require-hook');
|
|
11
|
+
// eslint-disable-next-line @next/internal/typechecked-require
|
|
12
|
+
require('next/dist/server/node-polyfill-crypto');
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=setup-node-env.external.js.map
|