├── .github └── FUNDING.yml ├── src ├── vite-env.d.ts ├── elementReady.ts └── pdfjs-viewer-element.ts ├── image.webp ├── types ├── elementReady.d.ts └── pdfjs-viewer-element.d.ts ├── tsconfig.node.json ├── .gitignore ├── demo ├── basic.html ├── viewer-custom-theme.css ├── dark-theme.html ├── go-to-nameddest.html ├── viewer-prebuilt-from-npm-package.html ├── extra-styles.html ├── extra-styles-urls.html ├── opened-findbar.html └── pdf-data-load.html ├── tsconfig.json ├── vite.config.ts ├── package.json ├── tests ├── utils.ts └── basic.test.ts ├── index.html ├── README.md └── pnpm-lock.yaml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: oleksandrshevchuk 2 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekswebnet/pdfjs-viewer-element/HEAD/image.webp -------------------------------------------------------------------------------- /types/elementReady.d.ts: -------------------------------------------------------------------------------- 1 | export declare const elementReady: (selector: string, document: Document | ShadowRoot) => Promise; 2 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node", 6 | "allowSyntheticDefaultImports": true 7 | }, 8 | "include": ["vite.config.ts"] 9 | } 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | public 12 | dist 13 | dist-ssr 14 | *.local 15 | 16 | # Editor directories and files 17 | .vscode/* 18 | !.vscode/extensions.json 19 | .idea 20 | .DS_Store 21 | *.suo 22 | *.ntvs* 23 | *.njsproj 24 | *.sln 25 | *.sw? 26 | -------------------------------------------------------------------------------- /src/elementReady.ts: -------------------------------------------------------------------------------- 1 | export const elementReady = (selector: string, document: Document | ShadowRoot) => { 2 | return new Promise((resolve) => { 3 | let el = document.querySelector(selector); 4 | if (el) { 5 | resolve(el); 6 | return 7 | } 8 | new MutationObserver((_mutationRecords, observer) => { 9 | Array.from(document.querySelectorAll(selector)).forEach((element) => { 10 | resolve(element); 11 | observer.disconnect(); 12 | }); 13 | }) 14 | .observe(document, { 15 | childList: true, 16 | subtree: true 17 | }); 18 | }); 19 | } -------------------------------------------------------------------------------- /demo/basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element | Basic demo 7 | 8 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /demo/viewer-custom-theme.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --main-color: #5755FE; 3 | --toolbar-icon-bg-color: #0200a8; 4 | --field-color: #5755FE; 5 | --separator-color: #5755FE; 6 | --toolbar-border-color: #5755FE; 7 | --field-border-color: #5755FE; 8 | --toolbar-bg-color: rgba(139, 147, 255, .1); 9 | --body-bg-color: rgba(255, 247, 252, .7); 10 | --button-hover-color: rgba(139, 147, 255, .1); 11 | --toolbar-icon-hover-bg-color: #0200a8; 12 | --toggled-btn-color: #0200a8; 13 | --toggled-btn-bg-color: rgba(139, 147, 255, .1); 14 | --toggled-hover-active-btn-color: #5755FE; 15 | --doorhanger-hover-bg-color: rgba(139, 147, 255, .1); 16 | --doorhanger-hover-color: #0200a8; 17 | --dropdown-btn-bg-color: rgba(139, 147, 255, .1); 18 | } -------------------------------------------------------------------------------- /demo/dark-theme.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element | Dark theme demo 7 | 8 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /demo/go-to-nameddest.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element | Disable font face demo 7 | 8 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /demo/viewer-prebuilt-from-npm-package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element | Viewer prebuilt from npm package demo 7 | 8 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /demo/extra-styles.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element | Extra styles demo 7 | 8 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /demo/extra-styles-urls.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element | Extra styles demo 7 | 8 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "ESNext", 4 | "lib": ["ES2020", "DOM", "DOM.Iterable", "dom"], 5 | "declaration": true, 6 | "emitDeclarationOnly": true, 7 | "outDir": "./types", 8 | "strict": true, 9 | "noUnusedLocals": true, 10 | "noUnusedParameters": true, 11 | "noImplicitReturns": true, 12 | "noFallthroughCasesInSwitch": true, 13 | "moduleResolution": "Node", 14 | "isolatedModules": true, 15 | "allowSyntheticDefaultImports": true, 16 | "experimentalDecorators": true, 17 | "forceConsistentCasingInFileNames": true, 18 | "useDefineForClassFields": false, 19 | "skipLibCheck": true, 20 | "target": "es5" 21 | }, 22 | "include": ["src/**/*.ts"], 23 | "references": [{ "path": "./tsconfig.node.json" }], 24 | } 25 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { defineConfig } from 'vite' 3 | import terser from '@rollup/plugin-terser' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | build: { 8 | lib: { 9 | name: 'PdfjsViewerElement', 10 | fileName: 'pdfjs-viewer-element', 11 | entry: 'src/pdfjs-viewer-element.ts', 12 | formats: ['es'] 13 | }, 14 | copyPublicDir: false, 15 | rollupOptions: { 16 | plugins: [terser()] 17 | } 18 | }, 19 | test: { 20 | browser: { 21 | provider: 'webdriverio', 22 | enabled: true, 23 | // at least one instance is required 24 | instances: [ 25 | { browser: 'firefox' } 26 | ] 27 | } 28 | }, 29 | optimizeDeps: { 30 | // Prevent resolve external deps of the prebuild from v.4.0.189 31 | exclude: ['canvas', 'path2d-polyfill', 'path2d'] 32 | }, 33 | }) 34 | -------------------------------------------------------------------------------- /demo/opened-findbar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element | Opened find bar demo 7 | 8 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pdfjs-viewer-element", 3 | "version": "2.7.4", 4 | "license": "MIT", 5 | "author": { 6 | "name": "Oleksandr Shevchuk", 7 | "email": "alekswebnet@gmail.com" 8 | }, 9 | "keywords": [ 10 | "pdf", 11 | "pdfjs", 12 | "pdf viewer", 13 | "pdfjs viewer", 14 | "web component", 15 | "pdfjs viewer element", 16 | "pdf" 17 | ], 18 | "main": "./dist/pdfjs-viewer-element.js", 19 | "module": "./dist/pdfjs-viewer-element.js", 20 | "types": "types/pdfjs-viewer-element.d.ts", 21 | "type": "module", 22 | "repository": { 23 | "type": "git", 24 | "url": "git+https://github.com/alekswebnet/pdfjs-viewer-element.git" 25 | }, 26 | "homepage": "https://alekswebnet.github.io/pdfjs-viewer-element/", 27 | "bugs": { 28 | "url": "https://github.com/alekswebnet/pdfjs-viewer-element/issues" 29 | }, 30 | "files": [ 31 | "dist", 32 | "types" 33 | ], 34 | "scripts": { 35 | "dev": "vite", 36 | "build": "tsc && vite build", 37 | "test": "vitest", 38 | "coverage": "vitest run --coverage" 39 | }, 40 | "devDependencies": { 41 | "@awlsn/pdfjs-full": "^4.3.1", 42 | "@rollup/plugin-terser": "^0.4.4", 43 | "@types/node": "^22.18.8", 44 | "@vitest/browser": "^3.2.4", 45 | "jsdom": "^26.1.0", 46 | "typescript": "^5.9.3", 47 | "vite": "^6.3.6", 48 | "vitest": "^3.2.4", 49 | "webdriverio": "^9.20.0" 50 | }, 51 | "packageManager": "pnpm@9.7.0+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf", 52 | "dependencies": { 53 | "perfect-debounce": "^1.0.0" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /types/pdfjs-viewer-element.d.ts: -------------------------------------------------------------------------------- 1 | export declare const ViewerCssTheme: { 2 | readonly AUTOMATIC: 0; 3 | readonly LIGHT: 1; 4 | readonly DARK: 2; 5 | }; 6 | export declare const hardRefreshAttributes: string[]; 7 | export declare class PdfjsViewerElement extends HTMLElement { 8 | constructor(); 9 | iframe: PdfjsViewerElementIframe; 10 | static get observedAttributes(): string[]; 11 | connectedCallback(): void; 12 | attributeChangedCallback(name: string): void; 13 | private onIframeReady; 14 | private getIframeSrc; 15 | private mountViewer; 16 | private getFullPath; 17 | private getCssThemeOption; 18 | private setCssTheme; 19 | private setViewerExtraStyles; 20 | private injectExtraStylesLinks; 21 | initialize: () => Promise; 22 | } 23 | declare global { 24 | interface Window { 25 | PdfjsViewerElement: typeof PdfjsViewerElement; 26 | } 27 | } 28 | export interface IPdfjsViewerElement extends HTMLElement { 29 | initialize: () => Promise; 30 | } 31 | export interface PdfjsViewerElementIframeWindow extends Window { 32 | PDFViewerApplication: { 33 | initializedPromise: Promise; 34 | initialized: boolean; 35 | eventBus: Record; 36 | open: (data: Uint8Array) => void; 37 | }; 38 | PDFViewerApplicationOptions: { 39 | set: (name: string, value: string | boolean | number) => void; 40 | getAll: () => Record; 41 | }; 42 | } 43 | export interface PdfjsViewerElementIframe extends HTMLIFrameElement { 44 | contentWindow: PdfjsViewerElementIframeWindow; 45 | } 46 | export default PdfjsViewerElement; 47 | -------------------------------------------------------------------------------- /tests/utils.ts: -------------------------------------------------------------------------------- 1 | import { IPdfjsViewerElement, PdfjsViewerElementIframe } from "../src/pdfjs-viewer-element" 2 | 3 | export const getIframe = (): PdfjsViewerElementIframe => { 4 | return document.body.querySelector('pdfjs-viewer-element')?.shadowRoot?.querySelector('iframe') as PdfjsViewerElementIframe 5 | } 6 | 7 | export const getViewerElement = (element = '#outerContainer'): HTMLElement | null | undefined => { 8 | return getIframe()?.contentDocument?.querySelector(element) 9 | } 10 | 11 | export const mountViewer = async (template: string) => { 12 | document.body.innerHTML = '' 13 | document.body.innerHTML = template 14 | 15 | const viewer = document.body.querySelector('pdfjs-viewer-element') 16 | return await (viewer as IPdfjsViewerElement).initialize() 17 | } 18 | 19 | export const getFileData = () => { 20 | const baseStr = 21 | 'JVBERi0xLjcKCjEgMCBvYmogICUgZW50cnkgcG9pbnQKPDwKICAvVHlwZSAvQ2F0YWxvZwog' + 22 | 'IC9QYWdlcyAyIDAgUgo+PgplbmRvYmoKCjIgMCBvYmoKPDwKICAvVHlwZSAvUGFnZXMKICAv' + 23 | 'TWVkaWFCb3ggWyAwIDAgMjAwIDIwMCBdCiAgL0NvdW50IDEKICAvS2lkcyBbIDMgMCBSIF0K' + 24 | 'Pj4KZW5kb2JqCgozIDAgb2JqCjw8CiAgL1R5cGUgL1BhZ2UKICAvUGFyZW50IDIgMCBSCiAg' + 25 | 'L1Jlc291cmNlcyA8PAogICAgL0ZvbnQgPDwKICAgICAgL0YxIDQgMCBSIAogICAgPj4KICA+' + 26 | 'PgogIC9Db250ZW50cyA1IDAgUgo+PgplbmRvYmoKCjQgMCBvYmoKPDwKICAvVHlwZSAvRm9u' + 27 | 'dAogIC9TdWJ0eXBlIC9UeXBlMQogIC9CYXNlRm9udCAvVGltZXMtUm9tYW4KPj4KZW5kb2Jq' + 28 | 'Cgo1IDAgb2JqICAlIHBhZ2UgY29udGVudAo8PAogIC9MZW5ndGggNDQKPj4Kc3RyZWFtCkJU' + 29 | 'CjcwIDUwIFRECi9GMSAxMiBUZgooSGVsbG8sIHdvcmxkISkgVGoKRVQKZW5kc3RyZWFtCmVu' + 30 | 'ZG9iagoKeHJlZgowIDYKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMDEwIDAwMDAwIG4g' + 31 | 'CjAwMDAwMDAwNzkgMDAwMDAgbiAKMDAwMDAwMDE3MyAwMDAwMCBuIAowMDAwMDAwMzAxIDAw' + 32 | 'MDAwIG4gCjAwMDAwMDAzODAgMDAwMDAgbiAKdHJhaWxlcgo8PAogIC9TaXplIDYKICAvUm9v' + 33 | 'dCAxIDAgUgo+PgpzdGFydHhyZWYKNDkyCiUlRU9G' 34 | 35 | return fetch(baseStr) 36 | .then(b => b.arrayBuffer()) 37 | .then(buff => new Uint8Array(buff)) 38 | } -------------------------------------------------------------------------------- /demo/pdf-data-load.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element | Basic demo 7 | 8 | 14 | 15 | 16 | 17 | 21 | 22 | 23 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /tests/basic.test.ts: -------------------------------------------------------------------------------- 1 | import { describe, expect, it } from 'vitest' 2 | import { getFileData, getViewerElement, mountViewer, getIframe } from './utils' 3 | import '../src/pdfjs-viewer-element' 4 | 5 | describe('Basic tests', async () => { 6 | it('should render the PDF file', async () => { 7 | const viewerApp = await mountViewer(` 8 | ` 12 | ) 13 | expect(getViewerElement()).exist 14 | 15 | viewerApp.eventBus.on('pagesloaded', () => { 16 | expect(getViewerElement('#numPages')?.textContent).contain('37') 17 | }) 18 | }) 19 | 20 | it('should not render PDF with wrong url', async () => { 21 | await mountViewer(` 22 | ` 26 | ) 27 | expect(getViewerElement()).exist 28 | expect(getViewerElement('#viewer .page')).not.exist 29 | }) 30 | 31 | it('should not render the viewer with wrong viewer path', async () => { 32 | await mountViewer(` 33 | ` 37 | ) 38 | expect(getViewerElement()).not.exist 39 | }) 40 | 41 | it('should open the external file with base64 source', async () => { 42 | const viewerApp = await mountViewer(` 43 | ` 46 | ) 47 | 48 | expect(getViewerElement()).exist 49 | 50 | const file = await getFileData() 51 | viewerApp.open(file) 52 | 53 | viewerApp.eventBus.on('pagesloaded', () => { 54 | expect(getViewerElement('#viewer .page')).exist 55 | }) 56 | }) 57 | 58 | it('should load the dark theme', async () => { 59 | await mountViewer(` 60 | ` 65 | ) 66 | 67 | expect(getViewerElement()).exist 68 | expect(getComputedStyle(getViewerElement()!).getPropertyValue('--body-bg-color')).toMatch('rgb(42 42 46)') 69 | }) 70 | 71 | it('should hide the download button', async () => { 72 | await mountViewer(` 73 | ` 78 | ) 79 | 80 | expect(getViewerElement()).exist 81 | expect(getComputedStyle(getViewerElement('#downloadButton')!).display).eq('none') 82 | }) 83 | 84 | it('should add a title attribute to the iframe', async () => { 85 | const viewerApp = await mountViewer(` 86 | ` 91 | ) 92 | expect(getViewerElement()).exist 93 | expect(getIframe().title).eq('Custom title') 94 | }) 95 | }) -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | pdfjs-viewer-element 7 | 8 | 9 | 10 | 11 | 15 | 16 | 24 | 25 | 26 | 27 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 54 | 55 | 56 | 57 | 85 | 86 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # pdfjs-viewer-element 2 | 3 | Custom element that embeds [PDF.js default viewer](https://mozilla.github.io/pdf.js/web/viewer.html) using the `iframe`. 4 | 5 | The package provides a custom element, based on PDF.js [viewer options](https://github.com/mozilla/pdf.js/wiki/Viewer-options) and [URL parameters](https://github.com/mozilla/pdf.js/wiki/Debugging-PDF.js#url-parameters) API. 6 | 7 | Supported in all [major browsers](https://caniuse.com/custom-elementsv1), and works with most [JS frameworks](https://custom-elements-everywhere.com/). 8 | 9 | [![npm version](https://img.shields.io/npm/v/pdfjs-viewer-element?logo=npm&logoColor=fff)](https://www.npmjs.com/package/pdfjs-viewer-element) 10 | [![Package Quality](https://packagequality.com/shield/pdfjs-viewer-element.svg)](https://packagequality.com/#?package=pdfjs-viewer-element) 11 | [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/pdfjs-viewer-element) 12 | 13 | ![PDF.js viewer](image.webp) 14 | 15 | ## Features 16 | 17 | - Simple PDF.js viewer integration to any web application 18 | - PDF.js viewer options and parameters support, access the viewer application instance 19 | - Customize viewer styles and themes 20 | 21 | ## Docs 22 | 23 | [Getting started](https://alekswebnet.github.io/pdfjs-viewer-element/) 24 | 25 | [API playground](https://alekswebnet.github.io/pdfjs-viewer-element/#api) 26 | 27 | [Usage with frameworks](https://alekswebnet.github.io/pdfjs-viewer-element/#demo) 28 | 29 | [Various usecases](https://github.com/alekswebnet/pdfjs-viewer-element/tree/master/demo) 30 | 31 | ## Support via Ko-fi 32 | 33 | If you find `pdfjs-viewer-element` useful and want to support its development, consider making a donation via Ko-fi: 34 | 35 | [![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/oleksandrshevchuk) 36 | 37 | > ❤️ Your support helps with maintenance, bug fixes, and long-term improvements. 38 | 39 | ## How it works 40 | 41 | **⚠️ This is an important part, please read this FIRST !!!** 42 | 43 | **You should download and place the PDF.js prebuilt files in the project.** 44 | 45 | `pdfjs-viewer-element` requires [PDF.js prebuilt](http://mozilla.github.io/pdf.js/getting_started/), that includes the generic build of PDF.js and the viewer. 46 | 47 | The prebuilt comes with each PDF.js release. [PDF.JS releases](https://github.com/mozilla/pdf.js/releases) 48 | 49 | ✅ All v3, v4 and v5 releases are fully supported. 50 | 51 | After placing the prebuild specify the path to the directory with the `viewer-path` property (`/pdfjs` by default) and PDF file URL with `src` property (should refer to the [same origin](https://github.com/mozilla/pdf.js/wiki/Frequently-Asked-Questions#can-i-load-a-pdf-from-another-server-cross-domain-request)). 52 | 53 | ## Install 54 | 55 | ### Using module bundlers: 56 | 57 | ```bash 58 | # With npm 59 | npm install pdfjs-viewer-element 60 | # With yarn 61 | yarn add pdfjs-viewer-element 62 | # With pnpm 63 | pnpm add pdfjs-viewer-element 64 | ``` 65 | 66 | ```javascript 67 | import 'pdfjs-viewer-element' 68 | ``` 69 | 70 | ### Using browser and CDN: 71 | 72 | ```html 73 | 74 | ``` 75 | 76 | ## Usage 77 | 78 | ```html 79 | 80 | ``` 81 | 82 | ## Attributes 83 | 84 | `src` - PDF file URL, should refer to the [same origin](https://github.com/mozilla/pdf.js/wiki/Frequently-Asked-Questions#can-i-load-a-pdf-from-another-server-cross-domain-request) 85 | 86 | `viewer-path` - Path to PDF.js [prebuilt](http://mozilla.github.io/pdf.js/getting_started/) 87 | 88 | `iframe-title` - The title of the `iframe` element, required for better accessibility 89 | 90 | `page` - Page number. 91 | 92 | `nameddest` - Go to a named destination. 93 | 94 | `search` - Search text. 95 | 96 | `phrase` - Search by phrase, `true` to enable. 97 | 98 | `zoom` - Zoom level. 99 | 100 | `pagemode` - Page mode, `thumbs | bookmarks | attachments | layers | none`. 101 | 102 | `disable-worker` - Disables the worker, `true` to enable. 103 | 104 | `text-layer` - Disables or reveals the text layer that is used for text selection, `off | visible | shadow | hover`. 105 | 106 | `disable-font-face` - Disables standard `@font-face` font loading and uses the internal font renderer instead, `true` to enable. 107 | 108 | `disable-range` - Disables HTTP range requests when fetching the document, `true` to enable. 109 | 110 | `disable-stream` - Disables streaming when fetching the document, `true` to enable. 111 | 112 | `disable-auto-fetch`- Disables auto fetching of the document; only gets necessary data to display the current view. Note: streaming also needs to be disabled for this to have any effect, `true` to enable. 113 | 114 | `verbosity`- Specifies the verbosity level of console messages. `0` - only errors, `1` - warnings and errors, `5` - warnings, errors and information messages. 115 | 116 | `locale` - Specifies which language to use in the viewer UI, `en-US | ...`. [Available locales](https://github.com/mozilla/pdf.js/tree/master/l10n) 117 | 118 | `viewer-css-theme` - Apply automatic, light, or dark theme, `AUTOMATIC | LIGHT | DARK` 119 | 120 | `viewer-extra-styles` - Add your CSS rules to the viewer application, pass a string with styles. 121 | 122 | `viewer-extra-styles-urls` - Add external CSS files to the viewer application, pass an array with URLs. 123 | 124 | Play with attributes on [Api docs page](https://alekswebnet.github.io/pdfjs-viewer-element/#api). 125 | 126 | ## Viewer CSS theme 127 | 128 | Use `viewer-css-theme` attribute to set light or dark theme manually: 129 | 130 | ```html 131 | 135 | 136 | ``` 137 | 138 | ## Viewer custom styles 139 | 140 | You can add your own CSS rules to the viewer application using `viewer-extra-styles` or `viewer-extra-styles-urls` attribute: 141 | 142 | ```html 143 | 148 | 149 | ``` 150 | Build your own theme with viewer's custom variables and `viewer-extra-styles-urls` attribute: 151 | 152 | ```css 153 | :root { 154 | --main-color: #5755FE; 155 | --toolbar-icon-bg-color: #0200a8; 156 | --field-color: #5755FE; 157 | --separator-color: #5755FE; 158 | --toolbar-border-color: #5755FE; 159 | --field-border-color: #5755FE; 160 | --toolbar-bg-color: rgba(139, 147, 255, .1); 161 | --body-bg-color: rgba(255, 247, 252, .7); 162 | --button-hover-color: rgba(139, 147, 255, .1); 163 | --toolbar-icon-hover-bg-color: #0200a8; 164 | --toggled-btn-color: #0200a8; 165 | --toggled-btn-bg-color: rgba(139, 147, 255, .1); 166 | --toggled-hover-active-btn-color: #5755FE; 167 | --doorhanger-hover-bg-color: rgba(139, 147, 255, .1); 168 | --doorhanger-hover-color: #0200a8; 169 | --dropdown-btn-bg-color: rgba(139, 147, 255, .1); 170 | } 171 | ``` 172 | 173 | ## PDF.js Viewer Application 174 | 175 | `initialize` - using this method you can access PDFViewerApplication and use methods and events of PDF.js default viewer 176 | 177 | ```html 178 | 179 | ``` 180 | 181 | ```javascript 182 | const viewer = document.querySelector('pdfjs-viewer-element') 183 | // Wait for the viewer initialization, receive PDFViewerApplication 184 | const viewerApp = await viewer.initialize() 185 | // Open PDF file data using Uint8Array instead of URL 186 | viewerApp.open({ data: pdfData }) 187 | ``` 188 | 189 | ## Accessiblity 190 | 191 | Use `iframe-title` to add a title to the `iframe` element and improve accessibility. 192 | 193 | ## Known issues 194 | 195 | ### The `.mjs` files support 196 | 197 | Since v4 PDF.js requires `.mjs` files support, make sure your server has it. 198 | 199 | In case of `nginx` this may causes to errors, see https://github.com/mozilla/pdf.js/issues/17296 200 | 201 | Add `.mjs` files support for `nginx` example: 202 | 203 | ```bash 204 | server { 205 | # ... 206 | 207 | location / { 208 | root /usr/share/nginx/html; 209 | index index.html; 210 | 211 | location ~* \.mjs$ { 212 | types { 213 | text/javascript mjs; 214 | } 215 | } 216 | } 217 | } 218 | ``` 219 | 220 | ### Problem with range requests / streaming 221 | 222 | Sometimes a PDF file fails to load when working with range requests / streaming. 223 | If you encounter this issue, you can try disabling the broken functionality of PDF.js: 224 | 225 | `disable-range="true"` 226 | 227 | 228 | ## License 229 | [MIT](http://opensource.org/licenses/MIT) 230 | -------------------------------------------------------------------------------- /src/pdfjs-viewer-element.ts: -------------------------------------------------------------------------------- 1 | import { elementReady } from './elementReady' 2 | import { debounce } from 'perfect-debounce' 3 | 4 | const DEFAULTS = { 5 | viewerPath: '/pdfjs', 6 | viewerEntry: '/web/viewer.html', 7 | src: '', 8 | iframeTitle: 'PDF viewer window', 9 | page: '', 10 | search: '', 11 | phrase: '', 12 | zoom: '', 13 | pagemode: 'none', 14 | locale: '', 15 | disableWorker: '', 16 | textLayer: '', 17 | disableFontFace: '', 18 | disableRange: '', 19 | disableStream: '', 20 | disableAutoFetch: '', 21 | verbosity: '', 22 | viewerCssTheme: 'AUTOMATIC', 23 | viewerExtraStyles: '', 24 | viewerExtraStylesUrls: '', 25 | nameddest: '' 26 | } as const 27 | 28 | export const ViewerCssTheme = { 29 | AUTOMATIC: 0, // Default value. 30 | LIGHT: 1, 31 | DARK: 2, 32 | } as const 33 | 34 | export const hardRefreshAttributes = [ 35 | 'src', 'viewer-path', 36 | 'disable-worker', 'text-layer', 'disable-font-face', 'disable-range', 'disable-stream', 'disable-auto-fetch', 'verbosity', 'locale', 37 | 'viewer-css-theme', 'viewer-extra-styles', 'viewer-extra-styles-urls' 38 | ] 39 | 40 | export class PdfjsViewerElement extends HTMLElement { 41 | constructor() { 42 | super() 43 | const shadowRoot = this.attachShadow({ mode: 'open' }) 44 | const template = document.createElement('template') 45 | template.innerHTML = ` 46 | 47 | 48 | ` 49 | shadowRoot.appendChild(template.content.cloneNode(true)) 50 | } 51 | 52 | public iframe!: PdfjsViewerElementIframe 53 | 54 | static get observedAttributes() { 55 | return [ 56 | 'src', 'viewer-path', 'page', 'search', 'phrase', 'zoom', 'pagemode', 57 | 'disable-worker', 'text-layer', 'disable-font-face', 'disable-range', 'disable-stream', 'disable-auto-fetch', 'verbosity', 'locale', 58 | 'viewer-css-theme', 'viewer-extra-styles', 'viewer-extra-styles-urls', 'nameddest', 'iframe-title' 59 | ] 60 | } 61 | 62 | connectedCallback() { 63 | this.iframe = this.shadowRoot?.querySelector('iframe') as PdfjsViewerElementIframe 64 | document.addEventListener('webviewerloaded', async () => { 65 | this.setCssTheme(this.getCssThemeOption()) 66 | this.injectExtraStylesLinks(this.getAttribute('viewer-extra-styles-urls') ?? DEFAULTS.viewerExtraStylesUrls) 67 | this.setViewerExtraStyles(this.getAttribute('viewer-extra-styles') ?? DEFAULTS.viewerExtraStyles) 68 | if (this.getAttribute('src') !== DEFAULTS.src) this.iframe.contentWindow?.PDFViewerApplicationOptions?.set('defaultUrl', '') 69 | this.iframe.contentWindow?.PDFViewerApplicationOptions?.set('disablePreferences', true) 70 | this.iframe.contentWindow?.PDFViewerApplicationOptions?.set('pdfBugEnabled', true) 71 | this.iframe.contentWindow?.PDFViewerApplicationOptions?.set('eventBusDispatchToDOM', true) 72 | }) 73 | } 74 | 75 | attributeChangedCallback(name: string) { 76 | if (!hardRefreshAttributes.includes(name)) { 77 | this.onIframeReady(() => { 78 | this.iframe.src = this.getIframeSrc() 79 | }) 80 | return 81 | } 82 | this.onIframeReady(() => this.mountViewer(this.getIframeSrc())) 83 | } 84 | 85 | private onIframeReady = debounce(async (callback: () => void) => { 86 | await elementReady('iframe', this.shadowRoot!) 87 | callback() 88 | }, 0, { leading: true }) 89 | 90 | private getIframeSrc() { 91 | const src = this.getFullPath(this.getAttribute('src') || DEFAULTS.src) 92 | const viewerPath = this.getFullPath(this.getAttribute('viewer-path') || DEFAULTS.viewerPath) 93 | const page = this.getAttribute('page') || DEFAULTS.page 94 | const search = this.getAttribute('search') || DEFAULTS.search 95 | const phrase = this.getAttribute('phrase') || DEFAULTS.phrase 96 | const zoom = this.getAttribute('zoom') || DEFAULTS.zoom 97 | const pagemode = this.getAttribute('pagemode') || DEFAULTS.pagemode 98 | 99 | const disableWorker = this.getAttribute('disable-worker') || DEFAULTS.disableWorker 100 | const textLayer = this.getAttribute('text-layer') || DEFAULTS.textLayer 101 | const disableFontFace = this.getAttribute('disable-font-face') || DEFAULTS.disableFontFace 102 | const disableRange = this.getAttribute('disable-range') || DEFAULTS.disableRange 103 | const disableStream = this.getAttribute('disable-stream') || DEFAULTS.disableStream 104 | const disableAutoFetch = this.getAttribute('disable-auto-fetch') || DEFAULTS.disableAutoFetch 105 | const verbosity = this.getAttribute('verbosity') || DEFAULTS.verbosity 106 | const locale = this.getAttribute('locale') || DEFAULTS.locale 107 | 108 | const viewerCssTheme = this.getAttribute('viewer-css-theme') || DEFAULTS.viewerCssTheme 109 | const viewerExtraStyles = Boolean(this.getAttribute('viewer-extra-styles') || DEFAULTS.viewerExtraStyles) 110 | const nameddest = this.getAttribute('nameddest') || DEFAULTS.nameddest 111 | 112 | return ` 113 | ${viewerPath}${DEFAULTS.viewerEntry}?file= 114 | ${encodeURIComponent(src)}#page=${page}&zoom=${zoom}&pagemode=${pagemode}&search=${search}&phrase=${phrase}&textLayer= 115 | ${textLayer}&disableWorker= 116 | ${disableWorker}&disableFontFace= 117 | ${disableFontFace}&disableRange= 118 | ${disableRange}&disableStream= 119 | ${disableStream}&disableAutoFetch= 120 | ${disableAutoFetch}&verbosity= 121 | ${verbosity} 122 | ${locale ? '&locale='+locale : ''}&viewerCssTheme= 123 | ${viewerCssTheme}&viewerExtraStyles= 124 | ${viewerExtraStyles} 125 | ${nameddest ? '&nameddest=' + nameddest : ''}` 126 | } 127 | 128 | private mountViewer(src: string) { 129 | if (!src || !this.iframe) return 130 | this.shadowRoot?.replaceChild(this.iframe.cloneNode(), this.iframe) 131 | this.iframe = this.shadowRoot?.querySelector('iframe') as PdfjsViewerElementIframe 132 | this.iframe.src = src 133 | this.iframe.setAttribute('title', this.getAttribute('iframe-title') || DEFAULTS.iframeTitle) 134 | } 135 | 136 | private getFullPath(path: string) { 137 | return path.startsWith('/') ? `${window.location.origin}${path}` : path 138 | } 139 | 140 | private getCssThemeOption() { 141 | const attrValue = this.getAttribute('viewer-css-theme') as keyof typeof ViewerCssTheme 142 | return Object.keys(ViewerCssTheme).includes(attrValue) 143 | ? ViewerCssTheme[attrValue] 144 | : ViewerCssTheme[DEFAULTS.viewerCssTheme] 145 | } 146 | 147 | private setCssTheme(theme: 0 | 1 | 2) { 148 | if (theme === ViewerCssTheme.DARK) { 149 | if (!this.iframe.contentDocument?.styleSheets.length) return 150 | for (const styleSheet of Array.from(this.iframe.contentDocument.styleSheets)) { 151 | if (styleSheet.href?.includes('/web/viewer.css')) { 152 | const cssRules = styleSheet?.cssRules || [] 153 | const rules = Object.keys(cssRules) 154 | .filter((key) => (cssRules[Number(key)] as CSSMediaRule)?.conditionText === "(prefers-color-scheme: dark)") 155 | .map((key) => { 156 | const rule = cssRules[Number(key)] 157 | return rule.cssText.split('@media (prefers-color-scheme: dark) {\n')[1].split('\n}')[0] 158 | }) 159 | this.setViewerExtraStyles(rules.join(''), 'theme') 160 | } 161 | } 162 | } 163 | else { 164 | this.iframe.contentDocument?.head.querySelector('style[theme]')?.remove() 165 | } 166 | this.iframe.contentWindow?.PDFViewerApplicationOptions?.set('viewerCssTheme', theme) 167 | } 168 | 169 | private setViewerExtraStyles = (styles?: string | null, id = 'extra') => { 170 | if (!styles) { 171 | this.iframe.contentDocument?.head.querySelector(`style[${id}]`)?.remove() 172 | return 173 | } 174 | if (this.iframe.contentDocument?.head.querySelector(`style[${id}]`)?.innerHTML === styles) return 175 | const style = document.createElement('style') 176 | style.innerHTML = styles 177 | style.setAttribute(id, '') 178 | this.iframe.contentDocument?.head.appendChild(style) 179 | } 180 | 181 | private injectExtraStylesLinks = (rawLinks?: string) => { 182 | if (!rawLinks) return 183 | const linksArray = rawLinks.replace(/'|]|\[/g, '').split(',').map((link) => link.trim()) 184 | linksArray.forEach((url) => { 185 | const linkExists = this.iframe.contentDocument?.head.querySelector(`link[href="${url}"]`); 186 | if (linkExists) return 187 | const linkEl = document.createElement('link') 188 | linkEl.rel = 'stylesheet' 189 | linkEl.href = url 190 | this.iframe.contentDocument?.head.appendChild(linkEl) 191 | }) 192 | } 193 | 194 | public initialize = (): Promise => new Promise(async (resolve) => { 195 | await elementReady('iframe', this.shadowRoot as ShadowRoot) 196 | this.iframe?.addEventListener('load', async () => { 197 | await this.iframe.contentWindow?.PDFViewerApplication?.initializedPromise 198 | resolve(this.iframe.contentWindow?.PDFViewerApplication) 199 | }, { once: true }) 200 | }) 201 | } 202 | 203 | declare global { 204 | interface Window { 205 | PdfjsViewerElement: typeof PdfjsViewerElement 206 | } 207 | } 208 | 209 | export interface IPdfjsViewerElement extends HTMLElement { 210 | initialize: () => Promise 211 | } 212 | 213 | export interface PdfjsViewerElementIframeWindow extends Window { 214 | PDFViewerApplication: { 215 | initializedPromise: Promise; 216 | initialized: boolean; 217 | eventBus: Record; 218 | open: (data: Uint8Array) => void; 219 | }, 220 | PDFViewerApplicationOptions: { 221 | set: (name: string, value: string | boolean | number) => void, 222 | getAll: () => Record 223 | } 224 | } 225 | 226 | export interface PdfjsViewerElementIframe extends HTMLIFrameElement { 227 | contentWindow: PdfjsViewerElementIframeWindow 228 | } 229 | 230 | export default PdfjsViewerElement 231 | 232 | if (!window.customElements.get('pdfjs-viewer-element')) { 233 | window.PdfjsViewerElement = PdfjsViewerElement 234 | window.customElements.define('pdfjs-viewer-element', PdfjsViewerElement) 235 | } -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | perfect-debounce: 12 | specifier: ^1.0.0 13 | version: 1.0.0 14 | devDependencies: 15 | '@awlsn/pdfjs-full': 16 | specifier: ^4.3.1 17 | version: 4.3.1 18 | '@rollup/plugin-terser': 19 | specifier: ^0.4.4 20 | version: 0.4.4(rollup@4.52.4) 21 | '@types/node': 22 | specifier: ^22.18.8 23 | version: 22.18.8 24 | '@vitest/browser': 25 | specifier: ^3.2.4 26 | version: 3.2.4(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(vite@6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0))(vitest@3.2.4)(webdriverio@9.20.0) 27 | jsdom: 28 | specifier: ^26.1.0 29 | version: 26.1.0 30 | typescript: 31 | specifier: ^5.9.3 32 | version: 5.9.3 33 | vite: 34 | specifier: ^6.3.6 35 | version: 6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0) 36 | vitest: 37 | specifier: ^3.2.4 38 | version: 3.2.4(@types/node@22.18.8)(@vitest/browser@3.2.4)(jiti@2.6.1)(jsdom@26.1.0)(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(terser@5.44.0) 39 | webdriverio: 40 | specifier: ^9.20.0 41 | version: 9.20.0 42 | 43 | packages: 44 | 45 | '@asamuzakjp/css-color@3.2.0': 46 | resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} 47 | 48 | '@awlsn/pdfjs-full@4.3.1': 49 | resolution: {integrity: sha512-YQ1jw9fbEcq9Lo4e9q/N2ueDPxChyGMhBS+qMLARxkq4vkS6DEwHTqpju5gUt/ZIi0saGdGRhxcL3PSEQoXIPw==} 50 | 51 | '@babel/code-frame@7.27.1': 52 | resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 53 | engines: {node: '>=6.9.0'} 54 | 55 | '@babel/helper-validator-identifier@7.27.1': 56 | resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 57 | engines: {node: '>=6.9.0'} 58 | 59 | '@babel/runtime@7.28.4': 60 | resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} 61 | engines: {node: '>=6.9.0'} 62 | 63 | '@bundled-es-modules/cookie@2.0.1': 64 | resolution: {integrity: sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==} 65 | 66 | '@bundled-es-modules/statuses@1.0.1': 67 | resolution: {integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==} 68 | 69 | '@bundled-es-modules/tough-cookie@0.1.6': 70 | resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==} 71 | 72 | '@csstools/color-helpers@5.1.0': 73 | resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==} 74 | engines: {node: '>=18'} 75 | 76 | '@csstools/css-calc@2.1.4': 77 | resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==} 78 | engines: {node: '>=18'} 79 | peerDependencies: 80 | '@csstools/css-parser-algorithms': ^3.0.5 81 | '@csstools/css-tokenizer': ^3.0.4 82 | 83 | '@csstools/css-color-parser@3.1.0': 84 | resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==} 85 | engines: {node: '>=18'} 86 | peerDependencies: 87 | '@csstools/css-parser-algorithms': ^3.0.5 88 | '@csstools/css-tokenizer': ^3.0.4 89 | 90 | '@csstools/css-parser-algorithms@3.0.5': 91 | resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==} 92 | engines: {node: '>=18'} 93 | peerDependencies: 94 | '@csstools/css-tokenizer': ^3.0.4 95 | 96 | '@csstools/css-tokenizer@3.0.4': 97 | resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==} 98 | engines: {node: '>=18'} 99 | 100 | '@esbuild/aix-ppc64@0.25.10': 101 | resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} 102 | engines: {node: '>=18'} 103 | cpu: [ppc64] 104 | os: [aix] 105 | 106 | '@esbuild/android-arm64@0.25.10': 107 | resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} 108 | engines: {node: '>=18'} 109 | cpu: [arm64] 110 | os: [android] 111 | 112 | '@esbuild/android-arm@0.25.10': 113 | resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} 114 | engines: {node: '>=18'} 115 | cpu: [arm] 116 | os: [android] 117 | 118 | '@esbuild/android-x64@0.25.10': 119 | resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} 120 | engines: {node: '>=18'} 121 | cpu: [x64] 122 | os: [android] 123 | 124 | '@esbuild/darwin-arm64@0.25.10': 125 | resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} 126 | engines: {node: '>=18'} 127 | cpu: [arm64] 128 | os: [darwin] 129 | 130 | '@esbuild/darwin-x64@0.25.10': 131 | resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} 132 | engines: {node: '>=18'} 133 | cpu: [x64] 134 | os: [darwin] 135 | 136 | '@esbuild/freebsd-arm64@0.25.10': 137 | resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} 138 | engines: {node: '>=18'} 139 | cpu: [arm64] 140 | os: [freebsd] 141 | 142 | '@esbuild/freebsd-x64@0.25.10': 143 | resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} 144 | engines: {node: '>=18'} 145 | cpu: [x64] 146 | os: [freebsd] 147 | 148 | '@esbuild/linux-arm64@0.25.10': 149 | resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} 150 | engines: {node: '>=18'} 151 | cpu: [arm64] 152 | os: [linux] 153 | 154 | '@esbuild/linux-arm@0.25.10': 155 | resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} 156 | engines: {node: '>=18'} 157 | cpu: [arm] 158 | os: [linux] 159 | 160 | '@esbuild/linux-ia32@0.25.10': 161 | resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} 162 | engines: {node: '>=18'} 163 | cpu: [ia32] 164 | os: [linux] 165 | 166 | '@esbuild/linux-loong64@0.25.10': 167 | resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} 168 | engines: {node: '>=18'} 169 | cpu: [loong64] 170 | os: [linux] 171 | 172 | '@esbuild/linux-mips64el@0.25.10': 173 | resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} 174 | engines: {node: '>=18'} 175 | cpu: [mips64el] 176 | os: [linux] 177 | 178 | '@esbuild/linux-ppc64@0.25.10': 179 | resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} 180 | engines: {node: '>=18'} 181 | cpu: [ppc64] 182 | os: [linux] 183 | 184 | '@esbuild/linux-riscv64@0.25.10': 185 | resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} 186 | engines: {node: '>=18'} 187 | cpu: [riscv64] 188 | os: [linux] 189 | 190 | '@esbuild/linux-s390x@0.25.10': 191 | resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} 192 | engines: {node: '>=18'} 193 | cpu: [s390x] 194 | os: [linux] 195 | 196 | '@esbuild/linux-x64@0.25.10': 197 | resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} 198 | engines: {node: '>=18'} 199 | cpu: [x64] 200 | os: [linux] 201 | 202 | '@esbuild/netbsd-arm64@0.25.10': 203 | resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} 204 | engines: {node: '>=18'} 205 | cpu: [arm64] 206 | os: [netbsd] 207 | 208 | '@esbuild/netbsd-x64@0.25.10': 209 | resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} 210 | engines: {node: '>=18'} 211 | cpu: [x64] 212 | os: [netbsd] 213 | 214 | '@esbuild/openbsd-arm64@0.25.10': 215 | resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} 216 | engines: {node: '>=18'} 217 | cpu: [arm64] 218 | os: [openbsd] 219 | 220 | '@esbuild/openbsd-x64@0.25.10': 221 | resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} 222 | engines: {node: '>=18'} 223 | cpu: [x64] 224 | os: [openbsd] 225 | 226 | '@esbuild/openharmony-arm64@0.25.10': 227 | resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} 228 | engines: {node: '>=18'} 229 | cpu: [arm64] 230 | os: [openharmony] 231 | 232 | '@esbuild/sunos-x64@0.25.10': 233 | resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} 234 | engines: {node: '>=18'} 235 | cpu: [x64] 236 | os: [sunos] 237 | 238 | '@esbuild/win32-arm64@0.25.10': 239 | resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} 240 | engines: {node: '>=18'} 241 | cpu: [arm64] 242 | os: [win32] 243 | 244 | '@esbuild/win32-ia32@0.25.10': 245 | resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} 246 | engines: {node: '>=18'} 247 | cpu: [ia32] 248 | os: [win32] 249 | 250 | '@esbuild/win32-x64@0.25.10': 251 | resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} 252 | engines: {node: '>=18'} 253 | cpu: [x64] 254 | os: [win32] 255 | 256 | '@inquirer/ansi@1.0.0': 257 | resolution: {integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==} 258 | engines: {node: '>=18'} 259 | 260 | '@inquirer/confirm@5.1.18': 261 | resolution: {integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==} 262 | engines: {node: '>=18'} 263 | peerDependencies: 264 | '@types/node': '>=18' 265 | peerDependenciesMeta: 266 | '@types/node': 267 | optional: true 268 | 269 | '@inquirer/core@10.2.2': 270 | resolution: {integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==} 271 | engines: {node: '>=18'} 272 | peerDependencies: 273 | '@types/node': '>=18' 274 | peerDependenciesMeta: 275 | '@types/node': 276 | optional: true 277 | 278 | '@inquirer/figures@1.0.13': 279 | resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==} 280 | engines: {node: '>=18'} 281 | 282 | '@inquirer/type@3.0.8': 283 | resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==} 284 | engines: {node: '>=18'} 285 | peerDependencies: 286 | '@types/node': '>=18' 287 | peerDependenciesMeta: 288 | '@types/node': 289 | optional: true 290 | 291 | '@isaacs/cliui@8.0.2': 292 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 293 | engines: {node: '>=12'} 294 | 295 | '@jridgewell/gen-mapping@0.3.13': 296 | resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 297 | 298 | '@jridgewell/resolve-uri@3.1.2': 299 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 300 | engines: {node: '>=6.0.0'} 301 | 302 | '@jridgewell/source-map@0.3.11': 303 | resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} 304 | 305 | '@jridgewell/sourcemap-codec@1.5.5': 306 | resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 307 | 308 | '@jridgewell/trace-mapping@0.3.31': 309 | resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 310 | 311 | '@mswjs/interceptors@0.37.6': 312 | resolution: {integrity: sha512-wK+5pLK5XFmgtH3aQ2YVvA3HohS3xqV/OxuVOdNx9Wpnz7VE/fnC+e1A7ln6LFYeck7gOJ/dsZV6OLplOtAJ2w==} 313 | engines: {node: '>=18'} 314 | 315 | '@open-draft/deferred-promise@2.2.0': 316 | resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==} 317 | 318 | '@open-draft/logger@0.3.0': 319 | resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==} 320 | 321 | '@open-draft/until@2.1.0': 322 | resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==} 323 | 324 | '@pkgjs/parseargs@0.11.0': 325 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 326 | engines: {node: '>=14'} 327 | 328 | '@polka/url@1.0.0-next.29': 329 | resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} 330 | 331 | '@promptbook/utils@0.69.5': 332 | resolution: {integrity: sha512-xm5Ti/Hp3o4xHrsK9Yy3MS6KbDxYbq485hDsFvxqaNA7equHLPdo8H8faTitTeb14QCDfLW4iwCxdVYu5sn6YQ==} 333 | 334 | '@puppeteer/browsers@2.10.10': 335 | resolution: {integrity: sha512-3ZG500+ZeLql8rE0hjfhkycJjDj0pI/btEh3L9IkWUYcOrgP0xCNRq3HbtbqOPbvDhFaAWD88pDFtlLv8ns8gA==} 336 | engines: {node: '>=18'} 337 | hasBin: true 338 | 339 | '@rollup/plugin-terser@0.4.4': 340 | resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} 341 | engines: {node: '>=14.0.0'} 342 | peerDependencies: 343 | rollup: ^2.0.0||^3.0.0||^4.0.0 344 | peerDependenciesMeta: 345 | rollup: 346 | optional: true 347 | 348 | '@rollup/rollup-android-arm-eabi@4.52.4': 349 | resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==} 350 | cpu: [arm] 351 | os: [android] 352 | 353 | '@rollup/rollup-android-arm64@4.52.4': 354 | resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==} 355 | cpu: [arm64] 356 | os: [android] 357 | 358 | '@rollup/rollup-darwin-arm64@4.52.4': 359 | resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==} 360 | cpu: [arm64] 361 | os: [darwin] 362 | 363 | '@rollup/rollup-darwin-x64@4.52.4': 364 | resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==} 365 | cpu: [x64] 366 | os: [darwin] 367 | 368 | '@rollup/rollup-freebsd-arm64@4.52.4': 369 | resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==} 370 | cpu: [arm64] 371 | os: [freebsd] 372 | 373 | '@rollup/rollup-freebsd-x64@4.52.4': 374 | resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==} 375 | cpu: [x64] 376 | os: [freebsd] 377 | 378 | '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 379 | resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==} 380 | cpu: [arm] 381 | os: [linux] 382 | 383 | '@rollup/rollup-linux-arm-musleabihf@4.52.4': 384 | resolution: {integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==} 385 | cpu: [arm] 386 | os: [linux] 387 | 388 | '@rollup/rollup-linux-arm64-gnu@4.52.4': 389 | resolution: {integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==} 390 | cpu: [arm64] 391 | os: [linux] 392 | 393 | '@rollup/rollup-linux-arm64-musl@4.52.4': 394 | resolution: {integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==} 395 | cpu: [arm64] 396 | os: [linux] 397 | 398 | '@rollup/rollup-linux-loong64-gnu@4.52.4': 399 | resolution: {integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==} 400 | cpu: [loong64] 401 | os: [linux] 402 | 403 | '@rollup/rollup-linux-ppc64-gnu@4.52.4': 404 | resolution: {integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==} 405 | cpu: [ppc64] 406 | os: [linux] 407 | 408 | '@rollup/rollup-linux-riscv64-gnu@4.52.4': 409 | resolution: {integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==} 410 | cpu: [riscv64] 411 | os: [linux] 412 | 413 | '@rollup/rollup-linux-riscv64-musl@4.52.4': 414 | resolution: {integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==} 415 | cpu: [riscv64] 416 | os: [linux] 417 | 418 | '@rollup/rollup-linux-s390x-gnu@4.52.4': 419 | resolution: {integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==} 420 | cpu: [s390x] 421 | os: [linux] 422 | 423 | '@rollup/rollup-linux-x64-gnu@4.52.4': 424 | resolution: {integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==} 425 | cpu: [x64] 426 | os: [linux] 427 | 428 | '@rollup/rollup-linux-x64-musl@4.52.4': 429 | resolution: {integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==} 430 | cpu: [x64] 431 | os: [linux] 432 | 433 | '@rollup/rollup-openharmony-arm64@4.52.4': 434 | resolution: {integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==} 435 | cpu: [arm64] 436 | os: [openharmony] 437 | 438 | '@rollup/rollup-win32-arm64-msvc@4.52.4': 439 | resolution: {integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==} 440 | cpu: [arm64] 441 | os: [win32] 442 | 443 | '@rollup/rollup-win32-ia32-msvc@4.52.4': 444 | resolution: {integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==} 445 | cpu: [ia32] 446 | os: [win32] 447 | 448 | '@rollup/rollup-win32-x64-gnu@4.52.4': 449 | resolution: {integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==} 450 | cpu: [x64] 451 | os: [win32] 452 | 453 | '@rollup/rollup-win32-x64-msvc@4.52.4': 454 | resolution: {integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==} 455 | cpu: [x64] 456 | os: [win32] 457 | 458 | '@testing-library/dom@10.4.1': 459 | resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==} 460 | engines: {node: '>=18'} 461 | 462 | '@testing-library/user-event@14.6.1': 463 | resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==} 464 | engines: {node: '>=12', npm: '>=6'} 465 | peerDependencies: 466 | '@testing-library/dom': '>=7.21.4' 467 | 468 | '@tootallnate/quickjs-emscripten@0.23.0': 469 | resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} 470 | 471 | '@types/aria-query@5.0.4': 472 | resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} 473 | 474 | '@types/chai@5.2.2': 475 | resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} 476 | 477 | '@types/cookie@0.6.0': 478 | resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 479 | 480 | '@types/deep-eql@4.0.2': 481 | resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} 482 | 483 | '@types/estree@1.0.8': 484 | resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 485 | 486 | '@types/node@20.19.19': 487 | resolution: {integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==} 488 | 489 | '@types/node@22.18.8': 490 | resolution: {integrity: sha512-pAZSHMiagDR7cARo/cch1f3rXy0AEXwsVsVH09FcyeJVAzCnGgmYis7P3JidtTUjyadhTeSo8TgRPswstghDaw==} 491 | 492 | '@types/sinonjs__fake-timers@8.1.5': 493 | resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==} 494 | 495 | '@types/statuses@2.0.6': 496 | resolution: {integrity: sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==} 497 | 498 | '@types/tough-cookie@4.0.5': 499 | resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} 500 | 501 | '@types/which@2.0.2': 502 | resolution: {integrity: sha512-113D3mDkZDjo+EeUEHCFy0qniNc1ZpecGiAU7WSo7YDoSzolZIQKpYFHrPpjkB2nuyahcKfrmLXeQlh7gqJYdw==} 503 | 504 | '@types/ws@8.18.1': 505 | resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} 506 | 507 | '@types/yauzl@2.10.3': 508 | resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} 509 | 510 | '@vitest/browser@3.2.4': 511 | resolution: {integrity: sha512-tJxiPrWmzH8a+w9nLKlQMzAKX/7VjFs50MWgcAj7p9XQ7AQ9/35fByFYptgPELyLw+0aixTnC4pUWV+APcZ/kw==} 512 | peerDependencies: 513 | playwright: '*' 514 | safaridriver: '*' 515 | vitest: 3.2.4 516 | webdriverio: ^7.0.0 || ^8.0.0 || ^9.0.0 517 | peerDependenciesMeta: 518 | playwright: 519 | optional: true 520 | safaridriver: 521 | optional: true 522 | webdriverio: 523 | optional: true 524 | 525 | '@vitest/expect@3.2.4': 526 | resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} 527 | 528 | '@vitest/mocker@3.2.4': 529 | resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} 530 | peerDependencies: 531 | msw: ^2.4.9 532 | vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 533 | peerDependenciesMeta: 534 | msw: 535 | optional: true 536 | vite: 537 | optional: true 538 | 539 | '@vitest/pretty-format@3.2.4': 540 | resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} 541 | 542 | '@vitest/runner@3.2.4': 543 | resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} 544 | 545 | '@vitest/snapshot@3.2.4': 546 | resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} 547 | 548 | '@vitest/spy@3.2.4': 549 | resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} 550 | 551 | '@vitest/utils@3.2.4': 552 | resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} 553 | 554 | '@wdio/config@9.20.0': 555 | resolution: {integrity: sha512-ggwd3EMsVj/LTcbYw2h+hma+/7fQ1cTXMuy9B5WTkLjDlOtbLjsqs9QLt4BLIo1cdsxvAw/UVpRVUuYy7rTmtQ==} 556 | engines: {node: '>=18.20.0'} 557 | 558 | '@wdio/logger@9.18.0': 559 | resolution: {integrity: sha512-HdzDrRs+ywAqbXGKqe1i/bLtCv47plz4TvsHFH3j729OooT5VH38ctFn5aLXgECmiAKDkmH/A6kOq2Zh5DIxww==} 560 | engines: {node: '>=18.20.0'} 561 | 562 | '@wdio/protocols@9.16.2': 563 | resolution: {integrity: sha512-h3k97/lzmyw5MowqceAuY3HX/wGJojXHkiPXA3WlhGPCaa2h4+GovV2nJtRvknCKsE7UHA1xB5SWeI8MzloBew==} 564 | 565 | '@wdio/repl@9.16.2': 566 | resolution: {integrity: sha512-FLTF0VL6+o5BSTCO7yLSXocm3kUnu31zYwzdsz4n9s5YWt83sCtzGZlZpt7TaTzb3jVUfxuHNQDTb8UMkCu0lQ==} 567 | engines: {node: '>=18.20.0'} 568 | 569 | '@wdio/types@9.20.0': 570 | resolution: {integrity: sha512-zMmAtse2UMCSOW76mvK3OejauAdcFGuKopNRH7crI0gwKTZtvV89yXWRziz9cVXpFgfmJCjf9edxKFWdhuF5yw==} 571 | engines: {node: '>=18.20.0'} 572 | 573 | '@wdio/utils@9.20.0': 574 | resolution: {integrity: sha512-T1ze005kncUTocYImSBQc/FAVcOwP/vOU4MDJFgzz/RTcps600qcKX98sVdWM5/ukXCVkjOufWteDHIbX5/tEA==} 575 | engines: {node: '>=18.20.0'} 576 | 577 | '@zip.js/zip.js@2.8.7': 578 | resolution: {integrity: sha512-8daf29EMM3gUpH/vSBSCYo2bY/wbamgRPxPpE2b+cDnbOLBHAcZikWad79R4Guemth/qtipzEHrZMq1lFXxWIA==} 579 | engines: {bun: '>=0.7.0', deno: '>=1.0.0', node: '>=18.0.0'} 580 | 581 | abort-controller@3.0.0: 582 | resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 583 | engines: {node: '>=6.5'} 584 | 585 | acorn@8.15.0: 586 | resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} 587 | engines: {node: '>=0.4.0'} 588 | hasBin: true 589 | 590 | agent-base@7.1.4: 591 | resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} 592 | engines: {node: '>= 14'} 593 | 594 | ansi-regex@5.0.1: 595 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 596 | engines: {node: '>=8'} 597 | 598 | ansi-regex@6.2.2: 599 | resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} 600 | engines: {node: '>=12'} 601 | 602 | ansi-styles@4.3.0: 603 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 604 | engines: {node: '>=8'} 605 | 606 | ansi-styles@5.2.0: 607 | resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 608 | engines: {node: '>=10'} 609 | 610 | ansi-styles@6.2.3: 611 | resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} 612 | engines: {node: '>=12'} 613 | 614 | archiver-utils@5.0.2: 615 | resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==} 616 | engines: {node: '>= 14'} 617 | 618 | archiver@7.0.1: 619 | resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} 620 | engines: {node: '>= 14'} 621 | 622 | aria-query@5.3.0: 623 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 624 | 625 | aria-query@5.3.2: 626 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 627 | engines: {node: '>= 0.4'} 628 | 629 | assertion-error@2.0.1: 630 | resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 631 | engines: {node: '>=12'} 632 | 633 | ast-types@0.13.4: 634 | resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} 635 | engines: {node: '>=4'} 636 | 637 | async@3.2.6: 638 | resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} 639 | 640 | b4a@1.7.3: 641 | resolution: {integrity: sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==} 642 | peerDependencies: 643 | react-native-b4a: '*' 644 | peerDependenciesMeta: 645 | react-native-b4a: 646 | optional: true 647 | 648 | balanced-match@1.0.2: 649 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 650 | 651 | bare-events@2.7.0: 652 | resolution: {integrity: sha512-b3N5eTW1g7vXkw+0CXh/HazGTcO5KYuu/RCNaJbDMPI6LHDi+7qe8EmxKUVe1sUbY2KZOVZFyj62x0OEz9qyAA==} 653 | 654 | bare-fs@4.4.5: 655 | resolution: {integrity: sha512-TCtu93KGLu6/aiGWzMr12TmSRS6nKdfhAnzTQRbXoSWxkbb9eRd53jQ51jG7g1gYjjtto3hbBrrhzg6djcgiKg==} 656 | engines: {bare: '>=1.16.0'} 657 | peerDependencies: 658 | bare-buffer: '*' 659 | peerDependenciesMeta: 660 | bare-buffer: 661 | optional: true 662 | 663 | bare-os@3.6.2: 664 | resolution: {integrity: sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==} 665 | engines: {bare: '>=1.14.0'} 666 | 667 | bare-path@3.0.0: 668 | resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} 669 | 670 | bare-stream@2.7.0: 671 | resolution: {integrity: sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==} 672 | peerDependencies: 673 | bare-buffer: '*' 674 | bare-events: '*' 675 | peerDependenciesMeta: 676 | bare-buffer: 677 | optional: true 678 | bare-events: 679 | optional: true 680 | 681 | bare-url@2.2.2: 682 | resolution: {integrity: sha512-g+ueNGKkrjMazDG3elZO1pNs3HY5+mMmOet1jtKyhOaCnkLzitxf26z7hoAEkDNgdNmnc1KIlt/dw6Po6xZMpA==} 683 | 684 | base64-js@1.5.1: 685 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 686 | 687 | basic-ftp@5.0.5: 688 | resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} 689 | engines: {node: '>=10.0.0'} 690 | 691 | boolbase@1.0.0: 692 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 693 | 694 | brace-expansion@2.0.2: 695 | resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} 696 | 697 | buffer-crc32@0.2.13: 698 | resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} 699 | 700 | buffer-crc32@1.0.0: 701 | resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} 702 | engines: {node: '>=8.0.0'} 703 | 704 | buffer-from@1.1.2: 705 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 706 | 707 | buffer@6.0.3: 708 | resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 709 | 710 | cac@6.7.14: 711 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 712 | engines: {node: '>=8'} 713 | 714 | chai@5.3.3: 715 | resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} 716 | engines: {node: '>=18'} 717 | 718 | chalk@4.1.2: 719 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 720 | engines: {node: '>=10'} 721 | 722 | chalk@5.6.2: 723 | resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} 724 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 725 | 726 | check-error@2.1.1: 727 | resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} 728 | engines: {node: '>= 16'} 729 | 730 | cheerio-select@2.1.0: 731 | resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} 732 | 733 | cheerio@1.1.2: 734 | resolution: {integrity: sha512-IkxPpb5rS/d1IiLbHMgfPuS0FgiWTtFIm/Nj+2woXDLTZ7fOT2eqzgYbdMlLweqlHbsZjxEChoVK+7iph7jyQg==} 735 | engines: {node: '>=20.18.1'} 736 | 737 | cli-width@4.1.0: 738 | resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} 739 | engines: {node: '>= 12'} 740 | 741 | cliui@8.0.1: 742 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 743 | engines: {node: '>=12'} 744 | 745 | color-convert@2.0.1: 746 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 747 | engines: {node: '>=7.0.0'} 748 | 749 | color-name@1.1.4: 750 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 751 | 752 | commander@2.20.3: 753 | resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} 754 | 755 | commander@9.5.0: 756 | resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} 757 | engines: {node: ^12.20.0 || >=14} 758 | 759 | compress-commons@6.0.2: 760 | resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} 761 | engines: {node: '>= 14'} 762 | 763 | cookie@0.7.2: 764 | resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 765 | engines: {node: '>= 0.6'} 766 | 767 | core-util-is@1.0.3: 768 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 769 | 770 | crc-32@1.2.2: 771 | resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} 772 | engines: {node: '>=0.8'} 773 | hasBin: true 774 | 775 | crc32-stream@6.0.0: 776 | resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} 777 | engines: {node: '>= 14'} 778 | 779 | cross-spawn@7.0.6: 780 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 781 | engines: {node: '>= 8'} 782 | 783 | css-select@5.2.2: 784 | resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} 785 | 786 | css-shorthand-properties@1.1.2: 787 | resolution: {integrity: sha512-C2AugXIpRGQTxaCW0N7n5jD/p5irUmCrwl03TrnMFBHDbdq44CFWR2zO7rK9xPN4Eo3pUxC4vQzQgbIpzrD1PQ==} 788 | 789 | css-value@0.0.1: 790 | resolution: {integrity: sha512-FUV3xaJ63buRLgHrLQVlVgQnQdR4yqdLGaDu7g8CQcWjInDfM9plBTPI9FRfpahju1UBSaMckeb2/46ApS/V1Q==} 791 | 792 | css-what@6.2.2: 793 | resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} 794 | engines: {node: '>= 6'} 795 | 796 | cssstyle@4.6.0: 797 | resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==} 798 | engines: {node: '>=18'} 799 | 800 | data-uri-to-buffer@4.0.1: 801 | resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} 802 | engines: {node: '>= 12'} 803 | 804 | data-uri-to-buffer@6.0.2: 805 | resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} 806 | engines: {node: '>= 14'} 807 | 808 | data-urls@5.0.0: 809 | resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} 810 | engines: {node: '>=18'} 811 | 812 | debug@4.4.3: 813 | resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 814 | engines: {node: '>=6.0'} 815 | peerDependencies: 816 | supports-color: '*' 817 | peerDependenciesMeta: 818 | supports-color: 819 | optional: true 820 | 821 | decamelize@6.0.1: 822 | resolution: {integrity: sha512-G7Cqgaelq68XHJNGlZ7lrNQyhZGsFqpwtGFexqUv4IQdjKoSYF7ipZ9UuTJZUSQXFj/XaoBLuEVIVqr8EJngEQ==} 823 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 824 | 825 | decimal.js@10.6.0: 826 | resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} 827 | 828 | deep-eql@5.0.2: 829 | resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} 830 | engines: {node: '>=6'} 831 | 832 | deepmerge-ts@7.1.5: 833 | resolution: {integrity: sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==} 834 | engines: {node: '>=16.0.0'} 835 | 836 | degenerator@5.0.1: 837 | resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} 838 | engines: {node: '>= 14'} 839 | 840 | dequal@2.0.3: 841 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 842 | engines: {node: '>=6'} 843 | 844 | dom-accessibility-api@0.5.16: 845 | resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} 846 | 847 | dom-serializer@2.0.0: 848 | resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} 849 | 850 | domelementtype@2.3.0: 851 | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 852 | 853 | domhandler@5.0.3: 854 | resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} 855 | engines: {node: '>= 4'} 856 | 857 | domutils@3.2.2: 858 | resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} 859 | 860 | eastasianwidth@0.2.0: 861 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 862 | 863 | edge-paths@3.0.5: 864 | resolution: {integrity: sha512-sB7vSrDnFa4ezWQk9nZ/n0FdpdUuC6R1EOrlU3DL+bovcNFK28rqu2emmAUjujYEJTWIgQGqgVVWUZXMnc8iWg==} 865 | engines: {node: '>=14.0.0'} 866 | 867 | edgedriver@6.1.2: 868 | resolution: {integrity: sha512-UvFqd/IR81iPyWMcxXbUNi+xKWR7JjfoHjfuwjqsj9UHQKn80RpQmS0jf+U25IPi+gKVPcpOSKm0XkqgGMq4zQ==} 869 | engines: {node: '>=18.0.0'} 870 | hasBin: true 871 | 872 | emoji-regex@8.0.0: 873 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 874 | 875 | emoji-regex@9.2.2: 876 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 877 | 878 | encoding-sniffer@0.2.1: 879 | resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==} 880 | 881 | end-of-stream@1.4.5: 882 | resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} 883 | 884 | entities@4.5.0: 885 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 886 | engines: {node: '>=0.12'} 887 | 888 | entities@6.0.1: 889 | resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 890 | engines: {node: '>=0.12'} 891 | 892 | es-module-lexer@1.7.0: 893 | resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} 894 | 895 | esbuild@0.25.10: 896 | resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} 897 | engines: {node: '>=18'} 898 | hasBin: true 899 | 900 | escalade@3.2.0: 901 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 902 | engines: {node: '>=6'} 903 | 904 | escodegen@2.1.0: 905 | resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} 906 | engines: {node: '>=6.0'} 907 | hasBin: true 908 | 909 | esprima@4.0.1: 910 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 911 | engines: {node: '>=4'} 912 | hasBin: true 913 | 914 | estraverse@5.3.0: 915 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 916 | engines: {node: '>=4.0'} 917 | 918 | estree-walker@3.0.3: 919 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 920 | 921 | esutils@2.0.3: 922 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 923 | engines: {node: '>=0.10.0'} 924 | 925 | event-target-shim@5.0.1: 926 | resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 927 | engines: {node: '>=6'} 928 | 929 | events-universal@1.0.1: 930 | resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==} 931 | 932 | events@3.3.0: 933 | resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 934 | engines: {node: '>=0.8.x'} 935 | 936 | expect-type@1.2.2: 937 | resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} 938 | engines: {node: '>=12.0.0'} 939 | 940 | extract-zip@2.0.1: 941 | resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} 942 | engines: {node: '>= 10.17.0'} 943 | hasBin: true 944 | 945 | fast-deep-equal@2.0.1: 946 | resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} 947 | 948 | fast-fifo@1.3.2: 949 | resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} 950 | 951 | fast-xml-parser@5.3.0: 952 | resolution: {integrity: sha512-gkWGshjYcQCF+6qtlrqBqELqNqnt4CxruY6UVAWWnqb3DQ6qaNFEIKqzYep1XzHLM/QtrHVCxyPOtTk4LTQ7Aw==} 953 | hasBin: true 954 | 955 | fd-slicer@1.1.0: 956 | resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} 957 | 958 | fdir@6.5.0: 959 | resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 960 | engines: {node: '>=12.0.0'} 961 | peerDependencies: 962 | picomatch: ^3 || ^4 963 | peerDependenciesMeta: 964 | picomatch: 965 | optional: true 966 | 967 | fetch-blob@3.2.0: 968 | resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} 969 | engines: {node: ^12.20 || >= 14.13} 970 | 971 | foreground-child@3.3.1: 972 | resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 973 | engines: {node: '>=14'} 974 | 975 | formdata-polyfill@4.0.10: 976 | resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} 977 | engines: {node: '>=12.20.0'} 978 | 979 | fsevents@2.3.3: 980 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 981 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 982 | os: [darwin] 983 | 984 | geckodriver@5.0.0: 985 | resolution: {integrity: sha512-vn7TtQ3b9VMJtVXsyWtQQl1fyBVFhQy7UvJF96kPuuJ0or5THH496AD3eUyaDD11+EqCxH9t6V+EP9soZQk4YQ==} 986 | engines: {node: '>=18.0.0'} 987 | hasBin: true 988 | 989 | get-caller-file@2.0.5: 990 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 991 | engines: {node: 6.* || 8.* || >= 10.*} 992 | 993 | get-port@7.1.0: 994 | resolution: {integrity: sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw==} 995 | engines: {node: '>=16'} 996 | 997 | get-stream@5.2.0: 998 | resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} 999 | engines: {node: '>=8'} 1000 | 1001 | get-uri@6.0.5: 1002 | resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} 1003 | engines: {node: '>= 14'} 1004 | 1005 | glob@10.4.5: 1006 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 1007 | hasBin: true 1008 | 1009 | graceful-fs@4.2.11: 1010 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1011 | 1012 | grapheme-splitter@1.0.4: 1013 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 1014 | 1015 | graphql@16.11.0: 1016 | resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==} 1017 | engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} 1018 | 1019 | has-flag@4.0.0: 1020 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1021 | engines: {node: '>=8'} 1022 | 1023 | headers-polyfill@4.0.3: 1024 | resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==} 1025 | 1026 | html-encoding-sniffer@4.0.0: 1027 | resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} 1028 | engines: {node: '>=18'} 1029 | 1030 | htmlfy@0.8.1: 1031 | resolution: {integrity: sha512-xWROBw9+MEGwxpotll0h672KCaLrKKiCYzsyN8ZgL9cQbVumFnyvsk2JqiB9ELAV1GLj1GG/jxZUjV9OZZi/yQ==} 1032 | 1033 | htmlparser2@10.0.0: 1034 | resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==} 1035 | 1036 | http-proxy-agent@7.0.2: 1037 | resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} 1038 | engines: {node: '>= 14'} 1039 | 1040 | https-proxy-agent@7.0.6: 1041 | resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} 1042 | engines: {node: '>= 14'} 1043 | 1044 | iconv-lite@0.6.3: 1045 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 1046 | engines: {node: '>=0.10.0'} 1047 | 1048 | ieee754@1.2.1: 1049 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1050 | 1051 | immediate@3.0.6: 1052 | resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} 1053 | 1054 | import-meta-resolve@4.2.0: 1055 | resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} 1056 | 1057 | inherits@2.0.4: 1058 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1059 | 1060 | ip-address@10.0.1: 1061 | resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==} 1062 | engines: {node: '>= 12'} 1063 | 1064 | is-fullwidth-code-point@3.0.0: 1065 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1066 | engines: {node: '>=8'} 1067 | 1068 | is-node-process@1.2.0: 1069 | resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} 1070 | 1071 | is-plain-obj@4.1.0: 1072 | resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 1073 | engines: {node: '>=12'} 1074 | 1075 | is-potential-custom-element-name@1.0.1: 1076 | resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} 1077 | 1078 | is-stream@2.0.1: 1079 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 1080 | engines: {node: '>=8'} 1081 | 1082 | isarray@1.0.0: 1083 | resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 1084 | 1085 | isexe@2.0.0: 1086 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1087 | 1088 | isexe@3.1.1: 1089 | resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} 1090 | engines: {node: '>=16'} 1091 | 1092 | jackspeak@3.4.3: 1093 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 1094 | 1095 | jiti@2.6.1: 1096 | resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} 1097 | hasBin: true 1098 | 1099 | js-tokens@4.0.0: 1100 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1101 | 1102 | js-tokens@9.0.1: 1103 | resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} 1104 | 1105 | jsdom@26.1.0: 1106 | resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==} 1107 | engines: {node: '>=18'} 1108 | peerDependencies: 1109 | canvas: ^3.0.0 1110 | peerDependenciesMeta: 1111 | canvas: 1112 | optional: true 1113 | 1114 | jszip@3.10.1: 1115 | resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} 1116 | 1117 | lazystream@1.0.1: 1118 | resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} 1119 | engines: {node: '>= 0.6.3'} 1120 | 1121 | lie@3.3.0: 1122 | resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} 1123 | 1124 | locate-app@2.5.0: 1125 | resolution: {integrity: sha512-xIqbzPMBYArJRmPGUZD9CzV9wOqmVtQnaAn3wrj3s6WYW0bQvPI7x+sPYUGmDTYMHefVK//zc6HEYZ1qnxIK+Q==} 1126 | 1127 | lodash.clonedeep@4.5.0: 1128 | resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} 1129 | 1130 | lodash.zip@4.2.0: 1131 | resolution: {integrity: sha512-C7IOaBBK/0gMORRBd8OETNx3kmOkgIWIPvyDpZSCTwUrpYmgZwJkjZeOD8ww4xbOUOs4/attY+pciKvadNfFbg==} 1132 | 1133 | lodash@4.17.21: 1134 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1135 | 1136 | loglevel-plugin-prefix@0.8.4: 1137 | resolution: {integrity: sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==} 1138 | 1139 | loglevel@1.9.2: 1140 | resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==} 1141 | engines: {node: '>= 0.6.0'} 1142 | 1143 | loupe@3.2.1: 1144 | resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} 1145 | 1146 | lru-cache@10.4.3: 1147 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1148 | 1149 | lru-cache@7.18.3: 1150 | resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} 1151 | engines: {node: '>=12'} 1152 | 1153 | lz-string@1.5.0: 1154 | resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} 1155 | hasBin: true 1156 | 1157 | magic-string@0.30.19: 1158 | resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} 1159 | 1160 | minimatch@5.1.6: 1161 | resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} 1162 | engines: {node: '>=10'} 1163 | 1164 | minimatch@9.0.5: 1165 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1166 | engines: {node: '>=16 || 14 >=14.17'} 1167 | 1168 | minipass@7.1.2: 1169 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1170 | engines: {node: '>=16 || 14 >=14.17'} 1171 | 1172 | mitt@3.0.1: 1173 | resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} 1174 | 1175 | mrmime@2.0.1: 1176 | resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 1177 | engines: {node: '>=10'} 1178 | 1179 | ms@2.1.3: 1180 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1181 | 1182 | msw@2.7.3: 1183 | resolution: {integrity: sha512-+mycXv8l2fEAjFZ5sjrtjJDmm2ceKGjrNbBr1durRg6VkU9fNUE/gsmQ51hWbHqs+l35W1iM+ZsmOD9Fd6lspw==} 1184 | engines: {node: '>=18'} 1185 | hasBin: true 1186 | peerDependencies: 1187 | typescript: '>= 4.8.x' 1188 | peerDependenciesMeta: 1189 | typescript: 1190 | optional: true 1191 | 1192 | mute-stream@2.0.0: 1193 | resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} 1194 | engines: {node: ^18.17.0 || >=20.5.0} 1195 | 1196 | nanoid@3.3.11: 1197 | resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 1198 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1199 | hasBin: true 1200 | 1201 | netmask@2.0.2: 1202 | resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} 1203 | engines: {node: '>= 0.4.0'} 1204 | 1205 | node-domexception@1.0.0: 1206 | resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} 1207 | engines: {node: '>=10.5.0'} 1208 | deprecated: Use your platform's native DOMException instead 1209 | 1210 | node-fetch@3.3.2: 1211 | resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} 1212 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1213 | 1214 | normalize-path@3.0.0: 1215 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1216 | engines: {node: '>=0.10.0'} 1217 | 1218 | nth-check@2.1.1: 1219 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1220 | 1221 | nwsapi@2.2.22: 1222 | resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==} 1223 | 1224 | once@1.4.0: 1225 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1226 | 1227 | outvariant@1.4.3: 1228 | resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==} 1229 | 1230 | pac-proxy-agent@7.2.0: 1231 | resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} 1232 | engines: {node: '>= 14'} 1233 | 1234 | pac-resolver@7.0.1: 1235 | resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} 1236 | engines: {node: '>= 14'} 1237 | 1238 | package-json-from-dist@1.0.1: 1239 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 1240 | 1241 | pako@1.0.11: 1242 | resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} 1243 | 1244 | parse5-htmlparser2-tree-adapter@7.1.0: 1245 | resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==} 1246 | 1247 | parse5-parser-stream@7.1.2: 1248 | resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==} 1249 | 1250 | parse5@7.3.0: 1251 | resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 1252 | 1253 | path-key@3.1.1: 1254 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1255 | engines: {node: '>=8'} 1256 | 1257 | path-scurry@1.11.1: 1258 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 1259 | engines: {node: '>=16 || 14 >=14.18'} 1260 | 1261 | path-to-regexp@6.3.0: 1262 | resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} 1263 | 1264 | pathe@2.0.3: 1265 | resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 1266 | 1267 | pathval@2.0.1: 1268 | resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} 1269 | engines: {node: '>= 14.16'} 1270 | 1271 | pend@1.2.0: 1272 | resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} 1273 | 1274 | perfect-debounce@1.0.0: 1275 | resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} 1276 | 1277 | picocolors@1.1.1: 1278 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1279 | 1280 | picomatch@4.0.3: 1281 | resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 1282 | engines: {node: '>=12'} 1283 | 1284 | postcss@8.5.6: 1285 | resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 1286 | engines: {node: ^10 || ^12 || >=14} 1287 | 1288 | pretty-format@27.5.1: 1289 | resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} 1290 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1291 | 1292 | process-nextick-args@2.0.1: 1293 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 1294 | 1295 | process@0.11.10: 1296 | resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 1297 | engines: {node: '>= 0.6.0'} 1298 | 1299 | progress@2.0.3: 1300 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} 1301 | engines: {node: '>=0.4.0'} 1302 | 1303 | proxy-agent@6.5.0: 1304 | resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==} 1305 | engines: {node: '>= 14'} 1306 | 1307 | proxy-from-env@1.1.0: 1308 | resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} 1309 | 1310 | psl@1.15.0: 1311 | resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} 1312 | 1313 | pump@3.0.3: 1314 | resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} 1315 | 1316 | punycode@2.3.1: 1317 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1318 | engines: {node: '>=6'} 1319 | 1320 | query-selector-shadow-dom@1.0.1: 1321 | resolution: {integrity: sha512-lT5yCqEBgfoMYpf3F2xQRK7zEr1rhIIZuceDK6+xRkJQ4NMbHTwXqk4NkwDwQMNqXgG9r9fyHnzwNVs6zV5KRw==} 1322 | 1323 | querystringify@2.2.0: 1324 | resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} 1325 | 1326 | randombytes@2.1.0: 1327 | resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} 1328 | 1329 | react-is@17.0.2: 1330 | resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 1331 | 1332 | readable-stream@2.3.8: 1333 | resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 1334 | 1335 | readable-stream@4.7.0: 1336 | resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} 1337 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1338 | 1339 | readdir-glob@1.1.3: 1340 | resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} 1341 | 1342 | require-directory@2.1.1: 1343 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1344 | engines: {node: '>=0.10.0'} 1345 | 1346 | requires-port@1.0.0: 1347 | resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} 1348 | 1349 | resq@1.11.0: 1350 | resolution: {integrity: sha512-G10EBz+zAAy3zUd/CDoBbXRL6ia9kOo3xRHrMDsHljI0GDkhYlyjwoCx5+3eCC4swi1uCoZQhskuJkj7Gp57Bw==} 1351 | 1352 | ret@0.5.0: 1353 | resolution: {integrity: sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==} 1354 | engines: {node: '>=10'} 1355 | 1356 | rgb2hex@0.2.5: 1357 | resolution: {integrity: sha512-22MOP1Rh7sAo1BZpDG6R5RFYzR2lYEgwq7HEmyW2qcsOqR2lQKmn+O//xV3YG/0rrhMC6KVX2hU+ZXuaw9a5bw==} 1358 | 1359 | rollup@4.52.4: 1360 | resolution: {integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==} 1361 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1362 | hasBin: true 1363 | 1364 | rrweb-cssom@0.8.0: 1365 | resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} 1366 | 1367 | safaridriver@1.0.0: 1368 | resolution: {integrity: sha512-J92IFbskyo7OYB3Dt4aTdyhag1GlInrfbPCmMteb7aBK7PwlnGz1HI0+oyNN97j7pV9DqUAVoVgkNRMrfY47mQ==} 1369 | engines: {node: '>=18.0.0'} 1370 | 1371 | safe-buffer@5.1.2: 1372 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 1373 | 1374 | safe-buffer@5.2.1: 1375 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1376 | 1377 | safe-regex2@5.0.0: 1378 | resolution: {integrity: sha512-YwJwe5a51WlK7KbOJREPdjNrpViQBI3p4T50lfwPuDhZnE3XGVTlGvi+aolc5+RvxDD6bnUmjVsU9n1eboLUYw==} 1379 | 1380 | safer-buffer@2.1.2: 1381 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 1382 | 1383 | saxes@6.0.0: 1384 | resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} 1385 | engines: {node: '>=v12.22.7'} 1386 | 1387 | semver@7.7.2: 1388 | resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 1389 | engines: {node: '>=10'} 1390 | hasBin: true 1391 | 1392 | serialize-error@12.0.0: 1393 | resolution: {integrity: sha512-ZYkZLAvKTKQXWuh5XpBw7CdbSzagarX39WyZ2H07CDLC5/KfsRGlIXV8d4+tfqX1M7916mRqR1QfNHSij+c9Pw==} 1394 | engines: {node: '>=18'} 1395 | 1396 | serialize-javascript@6.0.2: 1397 | resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} 1398 | 1399 | setimmediate@1.0.5: 1400 | resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} 1401 | 1402 | shebang-command@2.0.0: 1403 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1404 | engines: {node: '>=8'} 1405 | 1406 | shebang-regex@3.0.0: 1407 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1408 | engines: {node: '>=8'} 1409 | 1410 | siginfo@2.0.0: 1411 | resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 1412 | 1413 | signal-exit@4.1.0: 1414 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1415 | engines: {node: '>=14'} 1416 | 1417 | sirv@3.0.2: 1418 | resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} 1419 | engines: {node: '>=18'} 1420 | 1421 | smart-buffer@4.2.0: 1422 | resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} 1423 | engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} 1424 | 1425 | smob@1.5.0: 1426 | resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==} 1427 | 1428 | socks-proxy-agent@8.0.5: 1429 | resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} 1430 | engines: {node: '>= 14'} 1431 | 1432 | socks@2.8.7: 1433 | resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==} 1434 | engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} 1435 | 1436 | source-map-js@1.2.1: 1437 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1438 | engines: {node: '>=0.10.0'} 1439 | 1440 | source-map-support@0.5.21: 1441 | resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} 1442 | 1443 | source-map@0.6.1: 1444 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 1445 | engines: {node: '>=0.10.0'} 1446 | 1447 | spacetrim@0.11.59: 1448 | resolution: {integrity: sha512-lLYsktklSRKprreOm7NXReW8YiX2VBjbgmXYEziOoGf/qsJqAEACaDvoTtUOycwjpaSh+bT8eu0KrJn7UNxiCg==} 1449 | 1450 | split2@4.2.0: 1451 | resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 1452 | engines: {node: '>= 10.x'} 1453 | 1454 | stackback@0.0.2: 1455 | resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 1456 | 1457 | statuses@2.0.2: 1458 | resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==} 1459 | engines: {node: '>= 0.8'} 1460 | 1461 | std-env@3.9.0: 1462 | resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} 1463 | 1464 | streamx@2.23.0: 1465 | resolution: {integrity: sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==} 1466 | 1467 | strict-event-emitter@0.5.1: 1468 | resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==} 1469 | 1470 | string-width@4.2.3: 1471 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1472 | engines: {node: '>=8'} 1473 | 1474 | string-width@5.1.2: 1475 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1476 | engines: {node: '>=12'} 1477 | 1478 | string_decoder@1.1.1: 1479 | resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 1480 | 1481 | string_decoder@1.3.0: 1482 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 1483 | 1484 | strip-ansi@6.0.1: 1485 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1486 | engines: {node: '>=8'} 1487 | 1488 | strip-ansi@7.1.2: 1489 | resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} 1490 | engines: {node: '>=12'} 1491 | 1492 | strip-literal@3.1.0: 1493 | resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} 1494 | 1495 | strnum@2.1.1: 1496 | resolution: {integrity: sha512-7ZvoFTiCnGxBtDqJ//Cu6fWtZtc7Y3x+QOirG15wztbdngGSkht27o2pyGWrVy0b4WAy3jbKmnoK6g5VlVNUUw==} 1497 | 1498 | supports-color@7.2.0: 1499 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1500 | engines: {node: '>=8'} 1501 | 1502 | symbol-tree@3.2.4: 1503 | resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} 1504 | 1505 | tar-fs@3.1.1: 1506 | resolution: {integrity: sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==} 1507 | 1508 | tar-stream@3.1.7: 1509 | resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} 1510 | 1511 | terser@5.44.0: 1512 | resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==} 1513 | engines: {node: '>=10'} 1514 | hasBin: true 1515 | 1516 | text-decoder@1.2.3: 1517 | resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} 1518 | 1519 | tinybench@2.9.0: 1520 | resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 1521 | 1522 | tinyexec@0.3.2: 1523 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 1524 | 1525 | tinyglobby@0.2.15: 1526 | resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 1527 | engines: {node: '>=12.0.0'} 1528 | 1529 | tinypool@1.1.1: 1530 | resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} 1531 | engines: {node: ^18.0.0 || >=20.0.0} 1532 | 1533 | tinyrainbow@2.0.0: 1534 | resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} 1535 | engines: {node: '>=14.0.0'} 1536 | 1537 | tinyspy@4.0.4: 1538 | resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} 1539 | engines: {node: '>=14.0.0'} 1540 | 1541 | tldts-core@6.1.86: 1542 | resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} 1543 | 1544 | tldts@6.1.86: 1545 | resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} 1546 | hasBin: true 1547 | 1548 | totalist@3.0.1: 1549 | resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} 1550 | engines: {node: '>=6'} 1551 | 1552 | tough-cookie@4.1.4: 1553 | resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} 1554 | engines: {node: '>=6'} 1555 | 1556 | tough-cookie@5.1.2: 1557 | resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} 1558 | engines: {node: '>=16'} 1559 | 1560 | tr46@5.1.1: 1561 | resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} 1562 | engines: {node: '>=18'} 1563 | 1564 | tslib@2.8.1: 1565 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1566 | 1567 | type-fest@4.26.0: 1568 | resolution: {integrity: sha512-OduNjVJsFbifKb57UqZ2EMP1i4u64Xwow3NYXUtBbD4vIwJdQd4+xl8YDou1dlm4DVrtwT/7Ky8z8WyCULVfxw==} 1569 | engines: {node: '>=16'} 1570 | 1571 | type-fest@4.41.0: 1572 | resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} 1573 | engines: {node: '>=16'} 1574 | 1575 | typescript@5.9.3: 1576 | resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} 1577 | engines: {node: '>=14.17'} 1578 | hasBin: true 1579 | 1580 | undici-types@6.21.0: 1581 | resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} 1582 | 1583 | undici@6.22.0: 1584 | resolution: {integrity: sha512-hU/10obOIu62MGYjdskASR3CUAiYaFTtC9Pa6vHyf//mAipSvSQg6od2CnJswq7fvzNS3zJhxoRkgNVaHurWKw==} 1585 | engines: {node: '>=18.17'} 1586 | 1587 | undici@7.16.0: 1588 | resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==} 1589 | engines: {node: '>=20.18.1'} 1590 | 1591 | universalify@0.2.0: 1592 | resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} 1593 | engines: {node: '>= 4.0.0'} 1594 | 1595 | url-parse@1.5.10: 1596 | resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} 1597 | 1598 | urlpattern-polyfill@10.1.0: 1599 | resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==} 1600 | 1601 | userhome@1.0.1: 1602 | resolution: {integrity: sha512-5cnLm4gseXjAclKowC4IjByaGsjtAoV6PrOQOljplNB54ReUYJP8HdAFq2muHinSDAh09PPX/uXDPfdxRHvuSA==} 1603 | engines: {node: '>= 0.8.0'} 1604 | 1605 | util-deprecate@1.0.2: 1606 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1607 | 1608 | vite-node@3.2.4: 1609 | resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} 1610 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1611 | hasBin: true 1612 | 1613 | vite@6.3.6: 1614 | resolution: {integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==} 1615 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1616 | hasBin: true 1617 | peerDependencies: 1618 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 1619 | jiti: '>=1.21.0' 1620 | less: '*' 1621 | lightningcss: ^1.21.0 1622 | sass: '*' 1623 | sass-embedded: '*' 1624 | stylus: '*' 1625 | sugarss: '*' 1626 | terser: ^5.16.0 1627 | tsx: ^4.8.1 1628 | yaml: ^2.4.2 1629 | peerDependenciesMeta: 1630 | '@types/node': 1631 | optional: true 1632 | jiti: 1633 | optional: true 1634 | less: 1635 | optional: true 1636 | lightningcss: 1637 | optional: true 1638 | sass: 1639 | optional: true 1640 | sass-embedded: 1641 | optional: true 1642 | stylus: 1643 | optional: true 1644 | sugarss: 1645 | optional: true 1646 | terser: 1647 | optional: true 1648 | tsx: 1649 | optional: true 1650 | yaml: 1651 | optional: true 1652 | 1653 | vitest@3.2.4: 1654 | resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} 1655 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1656 | hasBin: true 1657 | peerDependencies: 1658 | '@edge-runtime/vm': '*' 1659 | '@types/debug': ^4.1.12 1660 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 1661 | '@vitest/browser': 3.2.4 1662 | '@vitest/ui': 3.2.4 1663 | happy-dom: '*' 1664 | jsdom: '*' 1665 | peerDependenciesMeta: 1666 | '@edge-runtime/vm': 1667 | optional: true 1668 | '@types/debug': 1669 | optional: true 1670 | '@types/node': 1671 | optional: true 1672 | '@vitest/browser': 1673 | optional: true 1674 | '@vitest/ui': 1675 | optional: true 1676 | happy-dom: 1677 | optional: true 1678 | jsdom: 1679 | optional: true 1680 | 1681 | w3c-xmlserializer@5.0.0: 1682 | resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} 1683 | engines: {node: '>=18'} 1684 | 1685 | wait-port@1.1.0: 1686 | resolution: {integrity: sha512-3e04qkoN3LxTMLakdqeWth8nih8usyg+sf1Bgdf9wwUkp05iuK1eSY/QpLvscT/+F/gA89+LpUmmgBtesbqI2Q==} 1687 | engines: {node: '>=10'} 1688 | hasBin: true 1689 | 1690 | web-streams-polyfill@3.3.3: 1691 | resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} 1692 | engines: {node: '>= 8'} 1693 | 1694 | webdriver@9.20.0: 1695 | resolution: {integrity: sha512-Kk+AGV1xWLNHVpzUynQJDULMzbcO3IjXo3s0BzfC30OpGxhpaNmoazMQodhtv0Lp242Mb1VYXD89dCb4oAHc4w==} 1696 | engines: {node: '>=18.20.0'} 1697 | 1698 | webdriverio@9.20.0: 1699 | resolution: {integrity: sha512-cqaXfahTzCFaQLlk++feZaze6tAsW8OSdaVRgmOGJRII1z2A4uh4YGHtusTpqOiZAST7OBPqycOwfh01G/Ktbg==} 1700 | engines: {node: '>=18.20.0'} 1701 | peerDependencies: 1702 | puppeteer-core: '>=22.x || <=24.x' 1703 | peerDependenciesMeta: 1704 | puppeteer-core: 1705 | optional: true 1706 | 1707 | webidl-conversions@7.0.0: 1708 | resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} 1709 | engines: {node: '>=12'} 1710 | 1711 | whatwg-encoding@3.1.1: 1712 | resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} 1713 | engines: {node: '>=18'} 1714 | 1715 | whatwg-mimetype@4.0.0: 1716 | resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} 1717 | engines: {node: '>=18'} 1718 | 1719 | whatwg-url@14.2.0: 1720 | resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} 1721 | engines: {node: '>=18'} 1722 | 1723 | which@2.0.2: 1724 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1725 | engines: {node: '>= 8'} 1726 | hasBin: true 1727 | 1728 | which@5.0.0: 1729 | resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==} 1730 | engines: {node: ^18.17.0 || >=20.5.0} 1731 | hasBin: true 1732 | 1733 | why-is-node-running@2.3.0: 1734 | resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 1735 | engines: {node: '>=8'} 1736 | hasBin: true 1737 | 1738 | wrap-ansi@6.2.0: 1739 | resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 1740 | engines: {node: '>=8'} 1741 | 1742 | wrap-ansi@7.0.0: 1743 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1744 | engines: {node: '>=10'} 1745 | 1746 | wrap-ansi@8.1.0: 1747 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1748 | engines: {node: '>=12'} 1749 | 1750 | wrappy@1.0.2: 1751 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1752 | 1753 | ws@8.18.3: 1754 | resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} 1755 | engines: {node: '>=10.0.0'} 1756 | peerDependencies: 1757 | bufferutil: ^4.0.1 1758 | utf-8-validate: '>=5.0.2' 1759 | peerDependenciesMeta: 1760 | bufferutil: 1761 | optional: true 1762 | utf-8-validate: 1763 | optional: true 1764 | 1765 | xml-name-validator@5.0.0: 1766 | resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} 1767 | engines: {node: '>=18'} 1768 | 1769 | xmlchars@2.2.0: 1770 | resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} 1771 | 1772 | y18n@5.0.8: 1773 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 1774 | engines: {node: '>=10'} 1775 | 1776 | yargs-parser@21.1.1: 1777 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1778 | engines: {node: '>=12'} 1779 | 1780 | yargs@17.7.2: 1781 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 1782 | engines: {node: '>=12'} 1783 | 1784 | yauzl@2.10.0: 1785 | resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} 1786 | 1787 | yoctocolors-cjs@2.1.3: 1788 | resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} 1789 | engines: {node: '>=18'} 1790 | 1791 | zip-stream@6.0.1: 1792 | resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==} 1793 | engines: {node: '>= 14'} 1794 | 1795 | snapshots: 1796 | 1797 | '@asamuzakjp/css-color@3.2.0': 1798 | dependencies: 1799 | '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) 1800 | '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) 1801 | '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) 1802 | '@csstools/css-tokenizer': 3.0.4 1803 | lru-cache: 10.4.3 1804 | 1805 | '@awlsn/pdfjs-full@4.3.1': {} 1806 | 1807 | '@babel/code-frame@7.27.1': 1808 | dependencies: 1809 | '@babel/helper-validator-identifier': 7.27.1 1810 | js-tokens: 4.0.0 1811 | picocolors: 1.1.1 1812 | 1813 | '@babel/helper-validator-identifier@7.27.1': {} 1814 | 1815 | '@babel/runtime@7.28.4': {} 1816 | 1817 | '@bundled-es-modules/cookie@2.0.1': 1818 | dependencies: 1819 | cookie: 0.7.2 1820 | optional: true 1821 | 1822 | '@bundled-es-modules/statuses@1.0.1': 1823 | dependencies: 1824 | statuses: 2.0.2 1825 | optional: true 1826 | 1827 | '@bundled-es-modules/tough-cookie@0.1.6': 1828 | dependencies: 1829 | '@types/tough-cookie': 4.0.5 1830 | tough-cookie: 4.1.4 1831 | optional: true 1832 | 1833 | '@csstools/color-helpers@5.1.0': {} 1834 | 1835 | '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': 1836 | dependencies: 1837 | '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) 1838 | '@csstools/css-tokenizer': 3.0.4 1839 | 1840 | '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': 1841 | dependencies: 1842 | '@csstools/color-helpers': 5.1.0 1843 | '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) 1844 | '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) 1845 | '@csstools/css-tokenizer': 3.0.4 1846 | 1847 | '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)': 1848 | dependencies: 1849 | '@csstools/css-tokenizer': 3.0.4 1850 | 1851 | '@csstools/css-tokenizer@3.0.4': {} 1852 | 1853 | '@esbuild/aix-ppc64@0.25.10': 1854 | optional: true 1855 | 1856 | '@esbuild/android-arm64@0.25.10': 1857 | optional: true 1858 | 1859 | '@esbuild/android-arm@0.25.10': 1860 | optional: true 1861 | 1862 | '@esbuild/android-x64@0.25.10': 1863 | optional: true 1864 | 1865 | '@esbuild/darwin-arm64@0.25.10': 1866 | optional: true 1867 | 1868 | '@esbuild/darwin-x64@0.25.10': 1869 | optional: true 1870 | 1871 | '@esbuild/freebsd-arm64@0.25.10': 1872 | optional: true 1873 | 1874 | '@esbuild/freebsd-x64@0.25.10': 1875 | optional: true 1876 | 1877 | '@esbuild/linux-arm64@0.25.10': 1878 | optional: true 1879 | 1880 | '@esbuild/linux-arm@0.25.10': 1881 | optional: true 1882 | 1883 | '@esbuild/linux-ia32@0.25.10': 1884 | optional: true 1885 | 1886 | '@esbuild/linux-loong64@0.25.10': 1887 | optional: true 1888 | 1889 | '@esbuild/linux-mips64el@0.25.10': 1890 | optional: true 1891 | 1892 | '@esbuild/linux-ppc64@0.25.10': 1893 | optional: true 1894 | 1895 | '@esbuild/linux-riscv64@0.25.10': 1896 | optional: true 1897 | 1898 | '@esbuild/linux-s390x@0.25.10': 1899 | optional: true 1900 | 1901 | '@esbuild/linux-x64@0.25.10': 1902 | optional: true 1903 | 1904 | '@esbuild/netbsd-arm64@0.25.10': 1905 | optional: true 1906 | 1907 | '@esbuild/netbsd-x64@0.25.10': 1908 | optional: true 1909 | 1910 | '@esbuild/openbsd-arm64@0.25.10': 1911 | optional: true 1912 | 1913 | '@esbuild/openbsd-x64@0.25.10': 1914 | optional: true 1915 | 1916 | '@esbuild/openharmony-arm64@0.25.10': 1917 | optional: true 1918 | 1919 | '@esbuild/sunos-x64@0.25.10': 1920 | optional: true 1921 | 1922 | '@esbuild/win32-arm64@0.25.10': 1923 | optional: true 1924 | 1925 | '@esbuild/win32-ia32@0.25.10': 1926 | optional: true 1927 | 1928 | '@esbuild/win32-x64@0.25.10': 1929 | optional: true 1930 | 1931 | '@inquirer/ansi@1.0.0': 1932 | optional: true 1933 | 1934 | '@inquirer/confirm@5.1.18(@types/node@22.18.8)': 1935 | dependencies: 1936 | '@inquirer/core': 10.2.2(@types/node@22.18.8) 1937 | '@inquirer/type': 3.0.8(@types/node@22.18.8) 1938 | optionalDependencies: 1939 | '@types/node': 22.18.8 1940 | optional: true 1941 | 1942 | '@inquirer/core@10.2.2(@types/node@22.18.8)': 1943 | dependencies: 1944 | '@inquirer/ansi': 1.0.0 1945 | '@inquirer/figures': 1.0.13 1946 | '@inquirer/type': 3.0.8(@types/node@22.18.8) 1947 | cli-width: 4.1.0 1948 | mute-stream: 2.0.0 1949 | signal-exit: 4.1.0 1950 | wrap-ansi: 6.2.0 1951 | yoctocolors-cjs: 2.1.3 1952 | optionalDependencies: 1953 | '@types/node': 22.18.8 1954 | optional: true 1955 | 1956 | '@inquirer/figures@1.0.13': 1957 | optional: true 1958 | 1959 | '@inquirer/type@3.0.8(@types/node@22.18.8)': 1960 | optionalDependencies: 1961 | '@types/node': 22.18.8 1962 | optional: true 1963 | 1964 | '@isaacs/cliui@8.0.2': 1965 | dependencies: 1966 | string-width: 5.1.2 1967 | string-width-cjs: string-width@4.2.3 1968 | strip-ansi: 7.1.2 1969 | strip-ansi-cjs: strip-ansi@6.0.1 1970 | wrap-ansi: 8.1.0 1971 | wrap-ansi-cjs: wrap-ansi@7.0.0 1972 | 1973 | '@jridgewell/gen-mapping@0.3.13': 1974 | dependencies: 1975 | '@jridgewell/sourcemap-codec': 1.5.5 1976 | '@jridgewell/trace-mapping': 0.3.31 1977 | 1978 | '@jridgewell/resolve-uri@3.1.2': {} 1979 | 1980 | '@jridgewell/source-map@0.3.11': 1981 | dependencies: 1982 | '@jridgewell/gen-mapping': 0.3.13 1983 | '@jridgewell/trace-mapping': 0.3.31 1984 | 1985 | '@jridgewell/sourcemap-codec@1.5.5': {} 1986 | 1987 | '@jridgewell/trace-mapping@0.3.31': 1988 | dependencies: 1989 | '@jridgewell/resolve-uri': 3.1.2 1990 | '@jridgewell/sourcemap-codec': 1.5.5 1991 | 1992 | '@mswjs/interceptors@0.37.6': 1993 | dependencies: 1994 | '@open-draft/deferred-promise': 2.2.0 1995 | '@open-draft/logger': 0.3.0 1996 | '@open-draft/until': 2.1.0 1997 | is-node-process: 1.2.0 1998 | outvariant: 1.4.3 1999 | strict-event-emitter: 0.5.1 2000 | optional: true 2001 | 2002 | '@open-draft/deferred-promise@2.2.0': 2003 | optional: true 2004 | 2005 | '@open-draft/logger@0.3.0': 2006 | dependencies: 2007 | is-node-process: 1.2.0 2008 | outvariant: 1.4.3 2009 | optional: true 2010 | 2011 | '@open-draft/until@2.1.0': 2012 | optional: true 2013 | 2014 | '@pkgjs/parseargs@0.11.0': 2015 | optional: true 2016 | 2017 | '@polka/url@1.0.0-next.29': {} 2018 | 2019 | '@promptbook/utils@0.69.5': 2020 | dependencies: 2021 | spacetrim: 0.11.59 2022 | 2023 | '@puppeteer/browsers@2.10.10': 2024 | dependencies: 2025 | debug: 4.4.3 2026 | extract-zip: 2.0.1 2027 | progress: 2.0.3 2028 | proxy-agent: 6.5.0 2029 | semver: 7.7.2 2030 | tar-fs: 3.1.1 2031 | yargs: 17.7.2 2032 | transitivePeerDependencies: 2033 | - bare-buffer 2034 | - react-native-b4a 2035 | - supports-color 2036 | 2037 | '@rollup/plugin-terser@0.4.4(rollup@4.52.4)': 2038 | dependencies: 2039 | serialize-javascript: 6.0.2 2040 | smob: 1.5.0 2041 | terser: 5.44.0 2042 | optionalDependencies: 2043 | rollup: 4.52.4 2044 | 2045 | '@rollup/rollup-android-arm-eabi@4.52.4': 2046 | optional: true 2047 | 2048 | '@rollup/rollup-android-arm64@4.52.4': 2049 | optional: true 2050 | 2051 | '@rollup/rollup-darwin-arm64@4.52.4': 2052 | optional: true 2053 | 2054 | '@rollup/rollup-darwin-x64@4.52.4': 2055 | optional: true 2056 | 2057 | '@rollup/rollup-freebsd-arm64@4.52.4': 2058 | optional: true 2059 | 2060 | '@rollup/rollup-freebsd-x64@4.52.4': 2061 | optional: true 2062 | 2063 | '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 2064 | optional: true 2065 | 2066 | '@rollup/rollup-linux-arm-musleabihf@4.52.4': 2067 | optional: true 2068 | 2069 | '@rollup/rollup-linux-arm64-gnu@4.52.4': 2070 | optional: true 2071 | 2072 | '@rollup/rollup-linux-arm64-musl@4.52.4': 2073 | optional: true 2074 | 2075 | '@rollup/rollup-linux-loong64-gnu@4.52.4': 2076 | optional: true 2077 | 2078 | '@rollup/rollup-linux-ppc64-gnu@4.52.4': 2079 | optional: true 2080 | 2081 | '@rollup/rollup-linux-riscv64-gnu@4.52.4': 2082 | optional: true 2083 | 2084 | '@rollup/rollup-linux-riscv64-musl@4.52.4': 2085 | optional: true 2086 | 2087 | '@rollup/rollup-linux-s390x-gnu@4.52.4': 2088 | optional: true 2089 | 2090 | '@rollup/rollup-linux-x64-gnu@4.52.4': 2091 | optional: true 2092 | 2093 | '@rollup/rollup-linux-x64-musl@4.52.4': 2094 | optional: true 2095 | 2096 | '@rollup/rollup-openharmony-arm64@4.52.4': 2097 | optional: true 2098 | 2099 | '@rollup/rollup-win32-arm64-msvc@4.52.4': 2100 | optional: true 2101 | 2102 | '@rollup/rollup-win32-ia32-msvc@4.52.4': 2103 | optional: true 2104 | 2105 | '@rollup/rollup-win32-x64-gnu@4.52.4': 2106 | optional: true 2107 | 2108 | '@rollup/rollup-win32-x64-msvc@4.52.4': 2109 | optional: true 2110 | 2111 | '@testing-library/dom@10.4.1': 2112 | dependencies: 2113 | '@babel/code-frame': 7.27.1 2114 | '@babel/runtime': 7.28.4 2115 | '@types/aria-query': 5.0.4 2116 | aria-query: 5.3.0 2117 | dom-accessibility-api: 0.5.16 2118 | lz-string: 1.5.0 2119 | picocolors: 1.1.1 2120 | pretty-format: 27.5.1 2121 | 2122 | '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)': 2123 | dependencies: 2124 | '@testing-library/dom': 10.4.1 2125 | 2126 | '@tootallnate/quickjs-emscripten@0.23.0': {} 2127 | 2128 | '@types/aria-query@5.0.4': {} 2129 | 2130 | '@types/chai@5.2.2': 2131 | dependencies: 2132 | '@types/deep-eql': 4.0.2 2133 | 2134 | '@types/cookie@0.6.0': 2135 | optional: true 2136 | 2137 | '@types/deep-eql@4.0.2': {} 2138 | 2139 | '@types/estree@1.0.8': {} 2140 | 2141 | '@types/node@20.19.19': 2142 | dependencies: 2143 | undici-types: 6.21.0 2144 | 2145 | '@types/node@22.18.8': 2146 | dependencies: 2147 | undici-types: 6.21.0 2148 | 2149 | '@types/sinonjs__fake-timers@8.1.5': {} 2150 | 2151 | '@types/statuses@2.0.6': 2152 | optional: true 2153 | 2154 | '@types/tough-cookie@4.0.5': 2155 | optional: true 2156 | 2157 | '@types/which@2.0.2': {} 2158 | 2159 | '@types/ws@8.18.1': 2160 | dependencies: 2161 | '@types/node': 22.18.8 2162 | 2163 | '@types/yauzl@2.10.3': 2164 | dependencies: 2165 | '@types/node': 22.18.8 2166 | optional: true 2167 | 2168 | '@vitest/browser@3.2.4(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(vite@6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0))(vitest@3.2.4)(webdriverio@9.20.0)': 2169 | dependencies: 2170 | '@testing-library/dom': 10.4.1 2171 | '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) 2172 | '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(vite@6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0)) 2173 | '@vitest/utils': 3.2.4 2174 | magic-string: 0.30.19 2175 | sirv: 3.0.2 2176 | tinyrainbow: 2.0.0 2177 | vitest: 3.2.4(@types/node@22.18.8)(@vitest/browser@3.2.4)(jiti@2.6.1)(jsdom@26.1.0)(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(terser@5.44.0) 2178 | ws: 8.18.3 2179 | optionalDependencies: 2180 | webdriverio: 9.20.0 2181 | transitivePeerDependencies: 2182 | - bufferutil 2183 | - msw 2184 | - utf-8-validate 2185 | - vite 2186 | 2187 | '@vitest/expect@3.2.4': 2188 | dependencies: 2189 | '@types/chai': 5.2.2 2190 | '@vitest/spy': 3.2.4 2191 | '@vitest/utils': 3.2.4 2192 | chai: 5.3.3 2193 | tinyrainbow: 2.0.0 2194 | 2195 | '@vitest/mocker@3.2.4(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(vite@6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0))': 2196 | dependencies: 2197 | '@vitest/spy': 3.2.4 2198 | estree-walker: 3.0.3 2199 | magic-string: 0.30.19 2200 | optionalDependencies: 2201 | msw: 2.7.3(@types/node@22.18.8)(typescript@5.9.3) 2202 | vite: 6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0) 2203 | 2204 | '@vitest/pretty-format@3.2.4': 2205 | dependencies: 2206 | tinyrainbow: 2.0.0 2207 | 2208 | '@vitest/runner@3.2.4': 2209 | dependencies: 2210 | '@vitest/utils': 3.2.4 2211 | pathe: 2.0.3 2212 | strip-literal: 3.1.0 2213 | 2214 | '@vitest/snapshot@3.2.4': 2215 | dependencies: 2216 | '@vitest/pretty-format': 3.2.4 2217 | magic-string: 0.30.19 2218 | pathe: 2.0.3 2219 | 2220 | '@vitest/spy@3.2.4': 2221 | dependencies: 2222 | tinyspy: 4.0.4 2223 | 2224 | '@vitest/utils@3.2.4': 2225 | dependencies: 2226 | '@vitest/pretty-format': 3.2.4 2227 | loupe: 3.2.1 2228 | tinyrainbow: 2.0.0 2229 | 2230 | '@wdio/config@9.20.0': 2231 | dependencies: 2232 | '@wdio/logger': 9.18.0 2233 | '@wdio/types': 9.20.0 2234 | '@wdio/utils': 9.20.0 2235 | deepmerge-ts: 7.1.5 2236 | glob: 10.4.5 2237 | import-meta-resolve: 4.2.0 2238 | jiti: 2.6.1 2239 | transitivePeerDependencies: 2240 | - bare-buffer 2241 | - react-native-b4a 2242 | - supports-color 2243 | 2244 | '@wdio/logger@9.18.0': 2245 | dependencies: 2246 | chalk: 5.6.2 2247 | loglevel: 1.9.2 2248 | loglevel-plugin-prefix: 0.8.4 2249 | safe-regex2: 5.0.0 2250 | strip-ansi: 7.1.2 2251 | 2252 | '@wdio/protocols@9.16.2': {} 2253 | 2254 | '@wdio/repl@9.16.2': 2255 | dependencies: 2256 | '@types/node': 20.19.19 2257 | 2258 | '@wdio/types@9.20.0': 2259 | dependencies: 2260 | '@types/node': 20.19.19 2261 | 2262 | '@wdio/utils@9.20.0': 2263 | dependencies: 2264 | '@puppeteer/browsers': 2.10.10 2265 | '@wdio/logger': 9.18.0 2266 | '@wdio/types': 9.20.0 2267 | decamelize: 6.0.1 2268 | deepmerge-ts: 7.1.5 2269 | edgedriver: 6.1.2 2270 | geckodriver: 5.0.0 2271 | get-port: 7.1.0 2272 | import-meta-resolve: 4.2.0 2273 | locate-app: 2.5.0 2274 | mitt: 3.0.1 2275 | safaridriver: 1.0.0 2276 | split2: 4.2.0 2277 | wait-port: 1.1.0 2278 | transitivePeerDependencies: 2279 | - bare-buffer 2280 | - react-native-b4a 2281 | - supports-color 2282 | 2283 | '@zip.js/zip.js@2.8.7': {} 2284 | 2285 | abort-controller@3.0.0: 2286 | dependencies: 2287 | event-target-shim: 5.0.1 2288 | 2289 | acorn@8.15.0: {} 2290 | 2291 | agent-base@7.1.4: {} 2292 | 2293 | ansi-regex@5.0.1: {} 2294 | 2295 | ansi-regex@6.2.2: {} 2296 | 2297 | ansi-styles@4.3.0: 2298 | dependencies: 2299 | color-convert: 2.0.1 2300 | 2301 | ansi-styles@5.2.0: {} 2302 | 2303 | ansi-styles@6.2.3: {} 2304 | 2305 | archiver-utils@5.0.2: 2306 | dependencies: 2307 | glob: 10.4.5 2308 | graceful-fs: 4.2.11 2309 | is-stream: 2.0.1 2310 | lazystream: 1.0.1 2311 | lodash: 4.17.21 2312 | normalize-path: 3.0.0 2313 | readable-stream: 4.7.0 2314 | 2315 | archiver@7.0.1: 2316 | dependencies: 2317 | archiver-utils: 5.0.2 2318 | async: 3.2.6 2319 | buffer-crc32: 1.0.0 2320 | readable-stream: 4.7.0 2321 | readdir-glob: 1.1.3 2322 | tar-stream: 3.1.7 2323 | zip-stream: 6.0.1 2324 | transitivePeerDependencies: 2325 | - react-native-b4a 2326 | 2327 | aria-query@5.3.0: 2328 | dependencies: 2329 | dequal: 2.0.3 2330 | 2331 | aria-query@5.3.2: {} 2332 | 2333 | assertion-error@2.0.1: {} 2334 | 2335 | ast-types@0.13.4: 2336 | dependencies: 2337 | tslib: 2.8.1 2338 | 2339 | async@3.2.6: {} 2340 | 2341 | b4a@1.7.3: {} 2342 | 2343 | balanced-match@1.0.2: {} 2344 | 2345 | bare-events@2.7.0: {} 2346 | 2347 | bare-fs@4.4.5: 2348 | dependencies: 2349 | bare-events: 2.7.0 2350 | bare-path: 3.0.0 2351 | bare-stream: 2.7.0(bare-events@2.7.0) 2352 | bare-url: 2.2.2 2353 | fast-fifo: 1.3.2 2354 | transitivePeerDependencies: 2355 | - react-native-b4a 2356 | optional: true 2357 | 2358 | bare-os@3.6.2: 2359 | optional: true 2360 | 2361 | bare-path@3.0.0: 2362 | dependencies: 2363 | bare-os: 3.6.2 2364 | optional: true 2365 | 2366 | bare-stream@2.7.0(bare-events@2.7.0): 2367 | dependencies: 2368 | streamx: 2.23.0 2369 | optionalDependencies: 2370 | bare-events: 2.7.0 2371 | transitivePeerDependencies: 2372 | - react-native-b4a 2373 | optional: true 2374 | 2375 | bare-url@2.2.2: 2376 | dependencies: 2377 | bare-path: 3.0.0 2378 | optional: true 2379 | 2380 | base64-js@1.5.1: {} 2381 | 2382 | basic-ftp@5.0.5: {} 2383 | 2384 | boolbase@1.0.0: {} 2385 | 2386 | brace-expansion@2.0.2: 2387 | dependencies: 2388 | balanced-match: 1.0.2 2389 | 2390 | buffer-crc32@0.2.13: {} 2391 | 2392 | buffer-crc32@1.0.0: {} 2393 | 2394 | buffer-from@1.1.2: {} 2395 | 2396 | buffer@6.0.3: 2397 | dependencies: 2398 | base64-js: 1.5.1 2399 | ieee754: 1.2.1 2400 | 2401 | cac@6.7.14: {} 2402 | 2403 | chai@5.3.3: 2404 | dependencies: 2405 | assertion-error: 2.0.1 2406 | check-error: 2.1.1 2407 | deep-eql: 5.0.2 2408 | loupe: 3.2.1 2409 | pathval: 2.0.1 2410 | 2411 | chalk@4.1.2: 2412 | dependencies: 2413 | ansi-styles: 4.3.0 2414 | supports-color: 7.2.0 2415 | 2416 | chalk@5.6.2: {} 2417 | 2418 | check-error@2.1.1: {} 2419 | 2420 | cheerio-select@2.1.0: 2421 | dependencies: 2422 | boolbase: 1.0.0 2423 | css-select: 5.2.2 2424 | css-what: 6.2.2 2425 | domelementtype: 2.3.0 2426 | domhandler: 5.0.3 2427 | domutils: 3.2.2 2428 | 2429 | cheerio@1.1.2: 2430 | dependencies: 2431 | cheerio-select: 2.1.0 2432 | dom-serializer: 2.0.0 2433 | domhandler: 5.0.3 2434 | domutils: 3.2.2 2435 | encoding-sniffer: 0.2.1 2436 | htmlparser2: 10.0.0 2437 | parse5: 7.3.0 2438 | parse5-htmlparser2-tree-adapter: 7.1.0 2439 | parse5-parser-stream: 7.1.2 2440 | undici: 7.16.0 2441 | whatwg-mimetype: 4.0.0 2442 | 2443 | cli-width@4.1.0: 2444 | optional: true 2445 | 2446 | cliui@8.0.1: 2447 | dependencies: 2448 | string-width: 4.2.3 2449 | strip-ansi: 6.0.1 2450 | wrap-ansi: 7.0.0 2451 | 2452 | color-convert@2.0.1: 2453 | dependencies: 2454 | color-name: 1.1.4 2455 | 2456 | color-name@1.1.4: {} 2457 | 2458 | commander@2.20.3: {} 2459 | 2460 | commander@9.5.0: {} 2461 | 2462 | compress-commons@6.0.2: 2463 | dependencies: 2464 | crc-32: 1.2.2 2465 | crc32-stream: 6.0.0 2466 | is-stream: 2.0.1 2467 | normalize-path: 3.0.0 2468 | readable-stream: 4.7.0 2469 | 2470 | cookie@0.7.2: 2471 | optional: true 2472 | 2473 | core-util-is@1.0.3: {} 2474 | 2475 | crc-32@1.2.2: {} 2476 | 2477 | crc32-stream@6.0.0: 2478 | dependencies: 2479 | crc-32: 1.2.2 2480 | readable-stream: 4.7.0 2481 | 2482 | cross-spawn@7.0.6: 2483 | dependencies: 2484 | path-key: 3.1.1 2485 | shebang-command: 2.0.0 2486 | which: 2.0.2 2487 | 2488 | css-select@5.2.2: 2489 | dependencies: 2490 | boolbase: 1.0.0 2491 | css-what: 6.2.2 2492 | domhandler: 5.0.3 2493 | domutils: 3.2.2 2494 | nth-check: 2.1.1 2495 | 2496 | css-shorthand-properties@1.1.2: {} 2497 | 2498 | css-value@0.0.1: {} 2499 | 2500 | css-what@6.2.2: {} 2501 | 2502 | cssstyle@4.6.0: 2503 | dependencies: 2504 | '@asamuzakjp/css-color': 3.2.0 2505 | rrweb-cssom: 0.8.0 2506 | 2507 | data-uri-to-buffer@4.0.1: {} 2508 | 2509 | data-uri-to-buffer@6.0.2: {} 2510 | 2511 | data-urls@5.0.0: 2512 | dependencies: 2513 | whatwg-mimetype: 4.0.0 2514 | whatwg-url: 14.2.0 2515 | 2516 | debug@4.4.3: 2517 | dependencies: 2518 | ms: 2.1.3 2519 | 2520 | decamelize@6.0.1: {} 2521 | 2522 | decimal.js@10.6.0: {} 2523 | 2524 | deep-eql@5.0.2: {} 2525 | 2526 | deepmerge-ts@7.1.5: {} 2527 | 2528 | degenerator@5.0.1: 2529 | dependencies: 2530 | ast-types: 0.13.4 2531 | escodegen: 2.1.0 2532 | esprima: 4.0.1 2533 | 2534 | dequal@2.0.3: {} 2535 | 2536 | dom-accessibility-api@0.5.16: {} 2537 | 2538 | dom-serializer@2.0.0: 2539 | dependencies: 2540 | domelementtype: 2.3.0 2541 | domhandler: 5.0.3 2542 | entities: 4.5.0 2543 | 2544 | domelementtype@2.3.0: {} 2545 | 2546 | domhandler@5.0.3: 2547 | dependencies: 2548 | domelementtype: 2.3.0 2549 | 2550 | domutils@3.2.2: 2551 | dependencies: 2552 | dom-serializer: 2.0.0 2553 | domelementtype: 2.3.0 2554 | domhandler: 5.0.3 2555 | 2556 | eastasianwidth@0.2.0: {} 2557 | 2558 | edge-paths@3.0.5: 2559 | dependencies: 2560 | '@types/which': 2.0.2 2561 | which: 2.0.2 2562 | 2563 | edgedriver@6.1.2: 2564 | dependencies: 2565 | '@wdio/logger': 9.18.0 2566 | '@zip.js/zip.js': 2.8.7 2567 | decamelize: 6.0.1 2568 | edge-paths: 3.0.5 2569 | fast-xml-parser: 5.3.0 2570 | http-proxy-agent: 7.0.2 2571 | https-proxy-agent: 7.0.6 2572 | node-fetch: 3.3.2 2573 | which: 5.0.0 2574 | transitivePeerDependencies: 2575 | - supports-color 2576 | 2577 | emoji-regex@8.0.0: {} 2578 | 2579 | emoji-regex@9.2.2: {} 2580 | 2581 | encoding-sniffer@0.2.1: 2582 | dependencies: 2583 | iconv-lite: 0.6.3 2584 | whatwg-encoding: 3.1.1 2585 | 2586 | end-of-stream@1.4.5: 2587 | dependencies: 2588 | once: 1.4.0 2589 | 2590 | entities@4.5.0: {} 2591 | 2592 | entities@6.0.1: {} 2593 | 2594 | es-module-lexer@1.7.0: {} 2595 | 2596 | esbuild@0.25.10: 2597 | optionalDependencies: 2598 | '@esbuild/aix-ppc64': 0.25.10 2599 | '@esbuild/android-arm': 0.25.10 2600 | '@esbuild/android-arm64': 0.25.10 2601 | '@esbuild/android-x64': 0.25.10 2602 | '@esbuild/darwin-arm64': 0.25.10 2603 | '@esbuild/darwin-x64': 0.25.10 2604 | '@esbuild/freebsd-arm64': 0.25.10 2605 | '@esbuild/freebsd-x64': 0.25.10 2606 | '@esbuild/linux-arm': 0.25.10 2607 | '@esbuild/linux-arm64': 0.25.10 2608 | '@esbuild/linux-ia32': 0.25.10 2609 | '@esbuild/linux-loong64': 0.25.10 2610 | '@esbuild/linux-mips64el': 0.25.10 2611 | '@esbuild/linux-ppc64': 0.25.10 2612 | '@esbuild/linux-riscv64': 0.25.10 2613 | '@esbuild/linux-s390x': 0.25.10 2614 | '@esbuild/linux-x64': 0.25.10 2615 | '@esbuild/netbsd-arm64': 0.25.10 2616 | '@esbuild/netbsd-x64': 0.25.10 2617 | '@esbuild/openbsd-arm64': 0.25.10 2618 | '@esbuild/openbsd-x64': 0.25.10 2619 | '@esbuild/openharmony-arm64': 0.25.10 2620 | '@esbuild/sunos-x64': 0.25.10 2621 | '@esbuild/win32-arm64': 0.25.10 2622 | '@esbuild/win32-ia32': 0.25.10 2623 | '@esbuild/win32-x64': 0.25.10 2624 | 2625 | escalade@3.2.0: {} 2626 | 2627 | escodegen@2.1.0: 2628 | dependencies: 2629 | esprima: 4.0.1 2630 | estraverse: 5.3.0 2631 | esutils: 2.0.3 2632 | optionalDependencies: 2633 | source-map: 0.6.1 2634 | 2635 | esprima@4.0.1: {} 2636 | 2637 | estraverse@5.3.0: {} 2638 | 2639 | estree-walker@3.0.3: 2640 | dependencies: 2641 | '@types/estree': 1.0.8 2642 | 2643 | esutils@2.0.3: {} 2644 | 2645 | event-target-shim@5.0.1: {} 2646 | 2647 | events-universal@1.0.1: 2648 | dependencies: 2649 | bare-events: 2.7.0 2650 | 2651 | events@3.3.0: {} 2652 | 2653 | expect-type@1.2.2: {} 2654 | 2655 | extract-zip@2.0.1: 2656 | dependencies: 2657 | debug: 4.4.3 2658 | get-stream: 5.2.0 2659 | yauzl: 2.10.0 2660 | optionalDependencies: 2661 | '@types/yauzl': 2.10.3 2662 | transitivePeerDependencies: 2663 | - supports-color 2664 | 2665 | fast-deep-equal@2.0.1: {} 2666 | 2667 | fast-fifo@1.3.2: {} 2668 | 2669 | fast-xml-parser@5.3.0: 2670 | dependencies: 2671 | strnum: 2.1.1 2672 | 2673 | fd-slicer@1.1.0: 2674 | dependencies: 2675 | pend: 1.2.0 2676 | 2677 | fdir@6.5.0(picomatch@4.0.3): 2678 | optionalDependencies: 2679 | picomatch: 4.0.3 2680 | 2681 | fetch-blob@3.2.0: 2682 | dependencies: 2683 | node-domexception: 1.0.0 2684 | web-streams-polyfill: 3.3.3 2685 | 2686 | foreground-child@3.3.1: 2687 | dependencies: 2688 | cross-spawn: 7.0.6 2689 | signal-exit: 4.1.0 2690 | 2691 | formdata-polyfill@4.0.10: 2692 | dependencies: 2693 | fetch-blob: 3.2.0 2694 | 2695 | fsevents@2.3.3: 2696 | optional: true 2697 | 2698 | geckodriver@5.0.0: 2699 | dependencies: 2700 | '@wdio/logger': 9.18.0 2701 | '@zip.js/zip.js': 2.8.7 2702 | decamelize: 6.0.1 2703 | http-proxy-agent: 7.0.2 2704 | https-proxy-agent: 7.0.6 2705 | node-fetch: 3.3.2 2706 | tar-fs: 3.1.1 2707 | which: 5.0.0 2708 | transitivePeerDependencies: 2709 | - bare-buffer 2710 | - react-native-b4a 2711 | - supports-color 2712 | 2713 | get-caller-file@2.0.5: {} 2714 | 2715 | get-port@7.1.0: {} 2716 | 2717 | get-stream@5.2.0: 2718 | dependencies: 2719 | pump: 3.0.3 2720 | 2721 | get-uri@6.0.5: 2722 | dependencies: 2723 | basic-ftp: 5.0.5 2724 | data-uri-to-buffer: 6.0.2 2725 | debug: 4.4.3 2726 | transitivePeerDependencies: 2727 | - supports-color 2728 | 2729 | glob@10.4.5: 2730 | dependencies: 2731 | foreground-child: 3.3.1 2732 | jackspeak: 3.4.3 2733 | minimatch: 9.0.5 2734 | minipass: 7.1.2 2735 | package-json-from-dist: 1.0.1 2736 | path-scurry: 1.11.1 2737 | 2738 | graceful-fs@4.2.11: {} 2739 | 2740 | grapheme-splitter@1.0.4: {} 2741 | 2742 | graphql@16.11.0: 2743 | optional: true 2744 | 2745 | has-flag@4.0.0: {} 2746 | 2747 | headers-polyfill@4.0.3: 2748 | optional: true 2749 | 2750 | html-encoding-sniffer@4.0.0: 2751 | dependencies: 2752 | whatwg-encoding: 3.1.1 2753 | 2754 | htmlfy@0.8.1: {} 2755 | 2756 | htmlparser2@10.0.0: 2757 | dependencies: 2758 | domelementtype: 2.3.0 2759 | domhandler: 5.0.3 2760 | domutils: 3.2.2 2761 | entities: 6.0.1 2762 | 2763 | http-proxy-agent@7.0.2: 2764 | dependencies: 2765 | agent-base: 7.1.4 2766 | debug: 4.4.3 2767 | transitivePeerDependencies: 2768 | - supports-color 2769 | 2770 | https-proxy-agent@7.0.6: 2771 | dependencies: 2772 | agent-base: 7.1.4 2773 | debug: 4.4.3 2774 | transitivePeerDependencies: 2775 | - supports-color 2776 | 2777 | iconv-lite@0.6.3: 2778 | dependencies: 2779 | safer-buffer: 2.1.2 2780 | 2781 | ieee754@1.2.1: {} 2782 | 2783 | immediate@3.0.6: {} 2784 | 2785 | import-meta-resolve@4.2.0: {} 2786 | 2787 | inherits@2.0.4: {} 2788 | 2789 | ip-address@10.0.1: {} 2790 | 2791 | is-fullwidth-code-point@3.0.0: {} 2792 | 2793 | is-node-process@1.2.0: 2794 | optional: true 2795 | 2796 | is-plain-obj@4.1.0: {} 2797 | 2798 | is-potential-custom-element-name@1.0.1: {} 2799 | 2800 | is-stream@2.0.1: {} 2801 | 2802 | isarray@1.0.0: {} 2803 | 2804 | isexe@2.0.0: {} 2805 | 2806 | isexe@3.1.1: {} 2807 | 2808 | jackspeak@3.4.3: 2809 | dependencies: 2810 | '@isaacs/cliui': 8.0.2 2811 | optionalDependencies: 2812 | '@pkgjs/parseargs': 0.11.0 2813 | 2814 | jiti@2.6.1: {} 2815 | 2816 | js-tokens@4.0.0: {} 2817 | 2818 | js-tokens@9.0.1: {} 2819 | 2820 | jsdom@26.1.0: 2821 | dependencies: 2822 | cssstyle: 4.6.0 2823 | data-urls: 5.0.0 2824 | decimal.js: 10.6.0 2825 | html-encoding-sniffer: 4.0.0 2826 | http-proxy-agent: 7.0.2 2827 | https-proxy-agent: 7.0.6 2828 | is-potential-custom-element-name: 1.0.1 2829 | nwsapi: 2.2.22 2830 | parse5: 7.3.0 2831 | rrweb-cssom: 0.8.0 2832 | saxes: 6.0.0 2833 | symbol-tree: 3.2.4 2834 | tough-cookie: 5.1.2 2835 | w3c-xmlserializer: 5.0.0 2836 | webidl-conversions: 7.0.0 2837 | whatwg-encoding: 3.1.1 2838 | whatwg-mimetype: 4.0.0 2839 | whatwg-url: 14.2.0 2840 | ws: 8.18.3 2841 | xml-name-validator: 5.0.0 2842 | transitivePeerDependencies: 2843 | - bufferutil 2844 | - supports-color 2845 | - utf-8-validate 2846 | 2847 | jszip@3.10.1: 2848 | dependencies: 2849 | lie: 3.3.0 2850 | pako: 1.0.11 2851 | readable-stream: 2.3.8 2852 | setimmediate: 1.0.5 2853 | 2854 | lazystream@1.0.1: 2855 | dependencies: 2856 | readable-stream: 2.3.8 2857 | 2858 | lie@3.3.0: 2859 | dependencies: 2860 | immediate: 3.0.6 2861 | 2862 | locate-app@2.5.0: 2863 | dependencies: 2864 | '@promptbook/utils': 0.69.5 2865 | type-fest: 4.26.0 2866 | userhome: 1.0.1 2867 | 2868 | lodash.clonedeep@4.5.0: {} 2869 | 2870 | lodash.zip@4.2.0: {} 2871 | 2872 | lodash@4.17.21: {} 2873 | 2874 | loglevel-plugin-prefix@0.8.4: {} 2875 | 2876 | loglevel@1.9.2: {} 2877 | 2878 | loupe@3.2.1: {} 2879 | 2880 | lru-cache@10.4.3: {} 2881 | 2882 | lru-cache@7.18.3: {} 2883 | 2884 | lz-string@1.5.0: {} 2885 | 2886 | magic-string@0.30.19: 2887 | dependencies: 2888 | '@jridgewell/sourcemap-codec': 1.5.5 2889 | 2890 | minimatch@5.1.6: 2891 | dependencies: 2892 | brace-expansion: 2.0.2 2893 | 2894 | minimatch@9.0.5: 2895 | dependencies: 2896 | brace-expansion: 2.0.2 2897 | 2898 | minipass@7.1.2: {} 2899 | 2900 | mitt@3.0.1: {} 2901 | 2902 | mrmime@2.0.1: {} 2903 | 2904 | ms@2.1.3: {} 2905 | 2906 | msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3): 2907 | dependencies: 2908 | '@bundled-es-modules/cookie': 2.0.1 2909 | '@bundled-es-modules/statuses': 1.0.1 2910 | '@bundled-es-modules/tough-cookie': 0.1.6 2911 | '@inquirer/confirm': 5.1.18(@types/node@22.18.8) 2912 | '@mswjs/interceptors': 0.37.6 2913 | '@open-draft/deferred-promise': 2.2.0 2914 | '@open-draft/until': 2.1.0 2915 | '@types/cookie': 0.6.0 2916 | '@types/statuses': 2.0.6 2917 | graphql: 16.11.0 2918 | headers-polyfill: 4.0.3 2919 | is-node-process: 1.2.0 2920 | outvariant: 1.4.3 2921 | path-to-regexp: 6.3.0 2922 | picocolors: 1.1.1 2923 | strict-event-emitter: 0.5.1 2924 | type-fest: 4.41.0 2925 | yargs: 17.7.2 2926 | optionalDependencies: 2927 | typescript: 5.9.3 2928 | transitivePeerDependencies: 2929 | - '@types/node' 2930 | optional: true 2931 | 2932 | mute-stream@2.0.0: 2933 | optional: true 2934 | 2935 | nanoid@3.3.11: {} 2936 | 2937 | netmask@2.0.2: {} 2938 | 2939 | node-domexception@1.0.0: {} 2940 | 2941 | node-fetch@3.3.2: 2942 | dependencies: 2943 | data-uri-to-buffer: 4.0.1 2944 | fetch-blob: 3.2.0 2945 | formdata-polyfill: 4.0.10 2946 | 2947 | normalize-path@3.0.0: {} 2948 | 2949 | nth-check@2.1.1: 2950 | dependencies: 2951 | boolbase: 1.0.0 2952 | 2953 | nwsapi@2.2.22: {} 2954 | 2955 | once@1.4.0: 2956 | dependencies: 2957 | wrappy: 1.0.2 2958 | 2959 | outvariant@1.4.3: 2960 | optional: true 2961 | 2962 | pac-proxy-agent@7.2.0: 2963 | dependencies: 2964 | '@tootallnate/quickjs-emscripten': 0.23.0 2965 | agent-base: 7.1.4 2966 | debug: 4.4.3 2967 | get-uri: 6.0.5 2968 | http-proxy-agent: 7.0.2 2969 | https-proxy-agent: 7.0.6 2970 | pac-resolver: 7.0.1 2971 | socks-proxy-agent: 8.0.5 2972 | transitivePeerDependencies: 2973 | - supports-color 2974 | 2975 | pac-resolver@7.0.1: 2976 | dependencies: 2977 | degenerator: 5.0.1 2978 | netmask: 2.0.2 2979 | 2980 | package-json-from-dist@1.0.1: {} 2981 | 2982 | pako@1.0.11: {} 2983 | 2984 | parse5-htmlparser2-tree-adapter@7.1.0: 2985 | dependencies: 2986 | domhandler: 5.0.3 2987 | parse5: 7.3.0 2988 | 2989 | parse5-parser-stream@7.1.2: 2990 | dependencies: 2991 | parse5: 7.3.0 2992 | 2993 | parse5@7.3.0: 2994 | dependencies: 2995 | entities: 6.0.1 2996 | 2997 | path-key@3.1.1: {} 2998 | 2999 | path-scurry@1.11.1: 3000 | dependencies: 3001 | lru-cache: 10.4.3 3002 | minipass: 7.1.2 3003 | 3004 | path-to-regexp@6.3.0: 3005 | optional: true 3006 | 3007 | pathe@2.0.3: {} 3008 | 3009 | pathval@2.0.1: {} 3010 | 3011 | pend@1.2.0: {} 3012 | 3013 | perfect-debounce@1.0.0: {} 3014 | 3015 | picocolors@1.1.1: {} 3016 | 3017 | picomatch@4.0.3: {} 3018 | 3019 | postcss@8.5.6: 3020 | dependencies: 3021 | nanoid: 3.3.11 3022 | picocolors: 1.1.1 3023 | source-map-js: 1.2.1 3024 | 3025 | pretty-format@27.5.1: 3026 | dependencies: 3027 | ansi-regex: 5.0.1 3028 | ansi-styles: 5.2.0 3029 | react-is: 17.0.2 3030 | 3031 | process-nextick-args@2.0.1: {} 3032 | 3033 | process@0.11.10: {} 3034 | 3035 | progress@2.0.3: {} 3036 | 3037 | proxy-agent@6.5.0: 3038 | dependencies: 3039 | agent-base: 7.1.4 3040 | debug: 4.4.3 3041 | http-proxy-agent: 7.0.2 3042 | https-proxy-agent: 7.0.6 3043 | lru-cache: 7.18.3 3044 | pac-proxy-agent: 7.2.0 3045 | proxy-from-env: 1.1.0 3046 | socks-proxy-agent: 8.0.5 3047 | transitivePeerDependencies: 3048 | - supports-color 3049 | 3050 | proxy-from-env@1.1.0: {} 3051 | 3052 | psl@1.15.0: 3053 | dependencies: 3054 | punycode: 2.3.1 3055 | optional: true 3056 | 3057 | pump@3.0.3: 3058 | dependencies: 3059 | end-of-stream: 1.4.5 3060 | once: 1.4.0 3061 | 3062 | punycode@2.3.1: {} 3063 | 3064 | query-selector-shadow-dom@1.0.1: {} 3065 | 3066 | querystringify@2.2.0: 3067 | optional: true 3068 | 3069 | randombytes@2.1.0: 3070 | dependencies: 3071 | safe-buffer: 5.2.1 3072 | 3073 | react-is@17.0.2: {} 3074 | 3075 | readable-stream@2.3.8: 3076 | dependencies: 3077 | core-util-is: 1.0.3 3078 | inherits: 2.0.4 3079 | isarray: 1.0.0 3080 | process-nextick-args: 2.0.1 3081 | safe-buffer: 5.1.2 3082 | string_decoder: 1.1.1 3083 | util-deprecate: 1.0.2 3084 | 3085 | readable-stream@4.7.0: 3086 | dependencies: 3087 | abort-controller: 3.0.0 3088 | buffer: 6.0.3 3089 | events: 3.3.0 3090 | process: 0.11.10 3091 | string_decoder: 1.3.0 3092 | 3093 | readdir-glob@1.1.3: 3094 | dependencies: 3095 | minimatch: 5.1.6 3096 | 3097 | require-directory@2.1.1: {} 3098 | 3099 | requires-port@1.0.0: 3100 | optional: true 3101 | 3102 | resq@1.11.0: 3103 | dependencies: 3104 | fast-deep-equal: 2.0.1 3105 | 3106 | ret@0.5.0: {} 3107 | 3108 | rgb2hex@0.2.5: {} 3109 | 3110 | rollup@4.52.4: 3111 | dependencies: 3112 | '@types/estree': 1.0.8 3113 | optionalDependencies: 3114 | '@rollup/rollup-android-arm-eabi': 4.52.4 3115 | '@rollup/rollup-android-arm64': 4.52.4 3116 | '@rollup/rollup-darwin-arm64': 4.52.4 3117 | '@rollup/rollup-darwin-x64': 4.52.4 3118 | '@rollup/rollup-freebsd-arm64': 4.52.4 3119 | '@rollup/rollup-freebsd-x64': 4.52.4 3120 | '@rollup/rollup-linux-arm-gnueabihf': 4.52.4 3121 | '@rollup/rollup-linux-arm-musleabihf': 4.52.4 3122 | '@rollup/rollup-linux-arm64-gnu': 4.52.4 3123 | '@rollup/rollup-linux-arm64-musl': 4.52.4 3124 | '@rollup/rollup-linux-loong64-gnu': 4.52.4 3125 | '@rollup/rollup-linux-ppc64-gnu': 4.52.4 3126 | '@rollup/rollup-linux-riscv64-gnu': 4.52.4 3127 | '@rollup/rollup-linux-riscv64-musl': 4.52.4 3128 | '@rollup/rollup-linux-s390x-gnu': 4.52.4 3129 | '@rollup/rollup-linux-x64-gnu': 4.52.4 3130 | '@rollup/rollup-linux-x64-musl': 4.52.4 3131 | '@rollup/rollup-openharmony-arm64': 4.52.4 3132 | '@rollup/rollup-win32-arm64-msvc': 4.52.4 3133 | '@rollup/rollup-win32-ia32-msvc': 4.52.4 3134 | '@rollup/rollup-win32-x64-gnu': 4.52.4 3135 | '@rollup/rollup-win32-x64-msvc': 4.52.4 3136 | fsevents: 2.3.3 3137 | 3138 | rrweb-cssom@0.8.0: {} 3139 | 3140 | safaridriver@1.0.0: {} 3141 | 3142 | safe-buffer@5.1.2: {} 3143 | 3144 | safe-buffer@5.2.1: {} 3145 | 3146 | safe-regex2@5.0.0: 3147 | dependencies: 3148 | ret: 0.5.0 3149 | 3150 | safer-buffer@2.1.2: {} 3151 | 3152 | saxes@6.0.0: 3153 | dependencies: 3154 | xmlchars: 2.2.0 3155 | 3156 | semver@7.7.2: {} 3157 | 3158 | serialize-error@12.0.0: 3159 | dependencies: 3160 | type-fest: 4.41.0 3161 | 3162 | serialize-javascript@6.0.2: 3163 | dependencies: 3164 | randombytes: 2.1.0 3165 | 3166 | setimmediate@1.0.5: {} 3167 | 3168 | shebang-command@2.0.0: 3169 | dependencies: 3170 | shebang-regex: 3.0.0 3171 | 3172 | shebang-regex@3.0.0: {} 3173 | 3174 | siginfo@2.0.0: {} 3175 | 3176 | signal-exit@4.1.0: {} 3177 | 3178 | sirv@3.0.2: 3179 | dependencies: 3180 | '@polka/url': 1.0.0-next.29 3181 | mrmime: 2.0.1 3182 | totalist: 3.0.1 3183 | 3184 | smart-buffer@4.2.0: {} 3185 | 3186 | smob@1.5.0: {} 3187 | 3188 | socks-proxy-agent@8.0.5: 3189 | dependencies: 3190 | agent-base: 7.1.4 3191 | debug: 4.4.3 3192 | socks: 2.8.7 3193 | transitivePeerDependencies: 3194 | - supports-color 3195 | 3196 | socks@2.8.7: 3197 | dependencies: 3198 | ip-address: 10.0.1 3199 | smart-buffer: 4.2.0 3200 | 3201 | source-map-js@1.2.1: {} 3202 | 3203 | source-map-support@0.5.21: 3204 | dependencies: 3205 | buffer-from: 1.1.2 3206 | source-map: 0.6.1 3207 | 3208 | source-map@0.6.1: {} 3209 | 3210 | spacetrim@0.11.59: {} 3211 | 3212 | split2@4.2.0: {} 3213 | 3214 | stackback@0.0.2: {} 3215 | 3216 | statuses@2.0.2: 3217 | optional: true 3218 | 3219 | std-env@3.9.0: {} 3220 | 3221 | streamx@2.23.0: 3222 | dependencies: 3223 | events-universal: 1.0.1 3224 | fast-fifo: 1.3.2 3225 | text-decoder: 1.2.3 3226 | transitivePeerDependencies: 3227 | - react-native-b4a 3228 | 3229 | strict-event-emitter@0.5.1: 3230 | optional: true 3231 | 3232 | string-width@4.2.3: 3233 | dependencies: 3234 | emoji-regex: 8.0.0 3235 | is-fullwidth-code-point: 3.0.0 3236 | strip-ansi: 6.0.1 3237 | 3238 | string-width@5.1.2: 3239 | dependencies: 3240 | eastasianwidth: 0.2.0 3241 | emoji-regex: 9.2.2 3242 | strip-ansi: 7.1.2 3243 | 3244 | string_decoder@1.1.1: 3245 | dependencies: 3246 | safe-buffer: 5.1.2 3247 | 3248 | string_decoder@1.3.0: 3249 | dependencies: 3250 | safe-buffer: 5.2.1 3251 | 3252 | strip-ansi@6.0.1: 3253 | dependencies: 3254 | ansi-regex: 5.0.1 3255 | 3256 | strip-ansi@7.1.2: 3257 | dependencies: 3258 | ansi-regex: 6.2.2 3259 | 3260 | strip-literal@3.1.0: 3261 | dependencies: 3262 | js-tokens: 9.0.1 3263 | 3264 | strnum@2.1.1: {} 3265 | 3266 | supports-color@7.2.0: 3267 | dependencies: 3268 | has-flag: 4.0.0 3269 | 3270 | symbol-tree@3.2.4: {} 3271 | 3272 | tar-fs@3.1.1: 3273 | dependencies: 3274 | pump: 3.0.3 3275 | tar-stream: 3.1.7 3276 | optionalDependencies: 3277 | bare-fs: 4.4.5 3278 | bare-path: 3.0.0 3279 | transitivePeerDependencies: 3280 | - bare-buffer 3281 | - react-native-b4a 3282 | 3283 | tar-stream@3.1.7: 3284 | dependencies: 3285 | b4a: 1.7.3 3286 | fast-fifo: 1.3.2 3287 | streamx: 2.23.0 3288 | transitivePeerDependencies: 3289 | - react-native-b4a 3290 | 3291 | terser@5.44.0: 3292 | dependencies: 3293 | '@jridgewell/source-map': 0.3.11 3294 | acorn: 8.15.0 3295 | commander: 2.20.3 3296 | source-map-support: 0.5.21 3297 | 3298 | text-decoder@1.2.3: 3299 | dependencies: 3300 | b4a: 1.7.3 3301 | transitivePeerDependencies: 3302 | - react-native-b4a 3303 | 3304 | tinybench@2.9.0: {} 3305 | 3306 | tinyexec@0.3.2: {} 3307 | 3308 | tinyglobby@0.2.15: 3309 | dependencies: 3310 | fdir: 6.5.0(picomatch@4.0.3) 3311 | picomatch: 4.0.3 3312 | 3313 | tinypool@1.1.1: {} 3314 | 3315 | tinyrainbow@2.0.0: {} 3316 | 3317 | tinyspy@4.0.4: {} 3318 | 3319 | tldts-core@6.1.86: {} 3320 | 3321 | tldts@6.1.86: 3322 | dependencies: 3323 | tldts-core: 6.1.86 3324 | 3325 | totalist@3.0.1: {} 3326 | 3327 | tough-cookie@4.1.4: 3328 | dependencies: 3329 | psl: 1.15.0 3330 | punycode: 2.3.1 3331 | universalify: 0.2.0 3332 | url-parse: 1.5.10 3333 | optional: true 3334 | 3335 | tough-cookie@5.1.2: 3336 | dependencies: 3337 | tldts: 6.1.86 3338 | 3339 | tr46@5.1.1: 3340 | dependencies: 3341 | punycode: 2.3.1 3342 | 3343 | tslib@2.8.1: {} 3344 | 3345 | type-fest@4.26.0: {} 3346 | 3347 | type-fest@4.41.0: {} 3348 | 3349 | typescript@5.9.3: {} 3350 | 3351 | undici-types@6.21.0: {} 3352 | 3353 | undici@6.22.0: {} 3354 | 3355 | undici@7.16.0: {} 3356 | 3357 | universalify@0.2.0: 3358 | optional: true 3359 | 3360 | url-parse@1.5.10: 3361 | dependencies: 3362 | querystringify: 2.2.0 3363 | requires-port: 1.0.0 3364 | optional: true 3365 | 3366 | urlpattern-polyfill@10.1.0: {} 3367 | 3368 | userhome@1.0.1: {} 3369 | 3370 | util-deprecate@1.0.2: {} 3371 | 3372 | vite-node@3.2.4(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0): 3373 | dependencies: 3374 | cac: 6.7.14 3375 | debug: 4.4.3 3376 | es-module-lexer: 1.7.0 3377 | pathe: 2.0.3 3378 | vite: 6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0) 3379 | transitivePeerDependencies: 3380 | - '@types/node' 3381 | - jiti 3382 | - less 3383 | - lightningcss 3384 | - sass 3385 | - sass-embedded 3386 | - stylus 3387 | - sugarss 3388 | - supports-color 3389 | - terser 3390 | - tsx 3391 | - yaml 3392 | 3393 | vite@6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0): 3394 | dependencies: 3395 | esbuild: 0.25.10 3396 | fdir: 6.5.0(picomatch@4.0.3) 3397 | picomatch: 4.0.3 3398 | postcss: 8.5.6 3399 | rollup: 4.52.4 3400 | tinyglobby: 0.2.15 3401 | optionalDependencies: 3402 | '@types/node': 22.18.8 3403 | fsevents: 2.3.3 3404 | jiti: 2.6.1 3405 | terser: 5.44.0 3406 | 3407 | vitest@3.2.4(@types/node@22.18.8)(@vitest/browser@3.2.4)(jiti@2.6.1)(jsdom@26.1.0)(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(terser@5.44.0): 3408 | dependencies: 3409 | '@types/chai': 5.2.2 3410 | '@vitest/expect': 3.2.4 3411 | '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(vite@6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0)) 3412 | '@vitest/pretty-format': 3.2.4 3413 | '@vitest/runner': 3.2.4 3414 | '@vitest/snapshot': 3.2.4 3415 | '@vitest/spy': 3.2.4 3416 | '@vitest/utils': 3.2.4 3417 | chai: 5.3.3 3418 | debug: 4.4.3 3419 | expect-type: 1.2.2 3420 | magic-string: 0.30.19 3421 | pathe: 2.0.3 3422 | picomatch: 4.0.3 3423 | std-env: 3.9.0 3424 | tinybench: 2.9.0 3425 | tinyexec: 0.3.2 3426 | tinyglobby: 0.2.15 3427 | tinypool: 1.1.1 3428 | tinyrainbow: 2.0.0 3429 | vite: 6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0) 3430 | vite-node: 3.2.4(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0) 3431 | why-is-node-running: 2.3.0 3432 | optionalDependencies: 3433 | '@types/node': 22.18.8 3434 | '@vitest/browser': 3.2.4(msw@2.7.3(@types/node@22.18.8)(typescript@5.9.3))(vite@6.3.6(@types/node@22.18.8)(jiti@2.6.1)(terser@5.44.0))(vitest@3.2.4)(webdriverio@9.20.0) 3435 | jsdom: 26.1.0 3436 | transitivePeerDependencies: 3437 | - jiti 3438 | - less 3439 | - lightningcss 3440 | - msw 3441 | - sass 3442 | - sass-embedded 3443 | - stylus 3444 | - sugarss 3445 | - supports-color 3446 | - terser 3447 | - tsx 3448 | - yaml 3449 | 3450 | w3c-xmlserializer@5.0.0: 3451 | dependencies: 3452 | xml-name-validator: 5.0.0 3453 | 3454 | wait-port@1.1.0: 3455 | dependencies: 3456 | chalk: 4.1.2 3457 | commander: 9.5.0 3458 | debug: 4.4.3 3459 | transitivePeerDependencies: 3460 | - supports-color 3461 | 3462 | web-streams-polyfill@3.3.3: {} 3463 | 3464 | webdriver@9.20.0: 3465 | dependencies: 3466 | '@types/node': 20.19.19 3467 | '@types/ws': 8.18.1 3468 | '@wdio/config': 9.20.0 3469 | '@wdio/logger': 9.18.0 3470 | '@wdio/protocols': 9.16.2 3471 | '@wdio/types': 9.20.0 3472 | '@wdio/utils': 9.20.0 3473 | deepmerge-ts: 7.1.5 3474 | https-proxy-agent: 7.0.6 3475 | undici: 6.22.0 3476 | ws: 8.18.3 3477 | transitivePeerDependencies: 3478 | - bare-buffer 3479 | - bufferutil 3480 | - react-native-b4a 3481 | - supports-color 3482 | - utf-8-validate 3483 | 3484 | webdriverio@9.20.0: 3485 | dependencies: 3486 | '@types/node': 20.19.19 3487 | '@types/sinonjs__fake-timers': 8.1.5 3488 | '@wdio/config': 9.20.0 3489 | '@wdio/logger': 9.18.0 3490 | '@wdio/protocols': 9.16.2 3491 | '@wdio/repl': 9.16.2 3492 | '@wdio/types': 9.20.0 3493 | '@wdio/utils': 9.20.0 3494 | archiver: 7.0.1 3495 | aria-query: 5.3.2 3496 | cheerio: 1.1.2 3497 | css-shorthand-properties: 1.1.2 3498 | css-value: 0.0.1 3499 | grapheme-splitter: 1.0.4 3500 | htmlfy: 0.8.1 3501 | is-plain-obj: 4.1.0 3502 | jszip: 3.10.1 3503 | lodash.clonedeep: 4.5.0 3504 | lodash.zip: 4.2.0 3505 | query-selector-shadow-dom: 1.0.1 3506 | resq: 1.11.0 3507 | rgb2hex: 0.2.5 3508 | serialize-error: 12.0.0 3509 | urlpattern-polyfill: 10.1.0 3510 | webdriver: 9.20.0 3511 | transitivePeerDependencies: 3512 | - bare-buffer 3513 | - bufferutil 3514 | - react-native-b4a 3515 | - supports-color 3516 | - utf-8-validate 3517 | 3518 | webidl-conversions@7.0.0: {} 3519 | 3520 | whatwg-encoding@3.1.1: 3521 | dependencies: 3522 | iconv-lite: 0.6.3 3523 | 3524 | whatwg-mimetype@4.0.0: {} 3525 | 3526 | whatwg-url@14.2.0: 3527 | dependencies: 3528 | tr46: 5.1.1 3529 | webidl-conversions: 7.0.0 3530 | 3531 | which@2.0.2: 3532 | dependencies: 3533 | isexe: 2.0.0 3534 | 3535 | which@5.0.0: 3536 | dependencies: 3537 | isexe: 3.1.1 3538 | 3539 | why-is-node-running@2.3.0: 3540 | dependencies: 3541 | siginfo: 2.0.0 3542 | stackback: 0.0.2 3543 | 3544 | wrap-ansi@6.2.0: 3545 | dependencies: 3546 | ansi-styles: 4.3.0 3547 | string-width: 4.2.3 3548 | strip-ansi: 6.0.1 3549 | optional: true 3550 | 3551 | wrap-ansi@7.0.0: 3552 | dependencies: 3553 | ansi-styles: 4.3.0 3554 | string-width: 4.2.3 3555 | strip-ansi: 6.0.1 3556 | 3557 | wrap-ansi@8.1.0: 3558 | dependencies: 3559 | ansi-styles: 6.2.3 3560 | string-width: 5.1.2 3561 | strip-ansi: 7.1.2 3562 | 3563 | wrappy@1.0.2: {} 3564 | 3565 | ws@8.18.3: {} 3566 | 3567 | xml-name-validator@5.0.0: {} 3568 | 3569 | xmlchars@2.2.0: {} 3570 | 3571 | y18n@5.0.8: {} 3572 | 3573 | yargs-parser@21.1.1: {} 3574 | 3575 | yargs@17.7.2: 3576 | dependencies: 3577 | cliui: 8.0.1 3578 | escalade: 3.2.0 3579 | get-caller-file: 2.0.5 3580 | require-directory: 2.1.1 3581 | string-width: 4.2.3 3582 | y18n: 5.0.8 3583 | yargs-parser: 21.1.1 3584 | 3585 | yauzl@2.10.0: 3586 | dependencies: 3587 | buffer-crc32: 0.2.13 3588 | fd-slicer: 1.1.0 3589 | 3590 | yoctocolors-cjs@2.1.3: 3591 | optional: true 3592 | 3593 | zip-stream@6.0.1: 3594 | dependencies: 3595 | archiver-utils: 5.0.2 3596 | compress-commons: 6.0.2 3597 | readable-stream: 4.7.0 3598 | --------------------------------------------------------------------------------