├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── babel.config.json ├── lib ├── imageResize.ts └── index.ts ├── package.json ├── rollup.config.mjs ├── tsconfig.json └── yarn.lock /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- 1 | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created 2 | # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages 3 | 4 | name: NPM Package Publish 5 | 6 | on: 7 | push: 8 | tags: 9 | - 'v*' 10 | 11 | jobs: 12 | publish-npm: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v3 16 | - uses: actions/setup-node@v3 17 | with: 18 | node-version: 18 19 | registry-url: https://registry.npmjs.org/ 20 | - run: yarn install 21 | - run: yarn build 22 | - run: yarn publish 23 | env: 24 | NODE_AUTH_TOKEN: ${{secrets.npm_token}} 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.tgz 4 | 5 | dist 6 | esm -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | tsconfig.json 4 | yarn.lock 5 | build.js 6 | lib/ 7 | 8 | rollup.config.mjs 9 | *.tgz 10 | *.test.ts 11 | babel.config.json 12 | 13 | .github/ 14 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2, 3 | "useTabs": false, 4 | "endOfLine": "lf", 5 | "singleQuote": true, 6 | "printWidth": 100, 7 | "trailingComma": "es5", 8 | "bracketSpacing": true 9 | } 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 SeongHyeon Bae 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # `tiptap-extension-resize-image` 2 | 3 | ![tiptap-extension-resize-image](https://github.com/bae-sh/tiptap-extension-resize-image/assets/37887690/e79f3d2a-c2df-4506-ac4a-fb71918569b4) 4 | 5 | [Tiptap](https://tiptap.dev/) is a suite of open source content editing and real-time collaboration tools for developers building apps like Notion or Google Docs. 6 | 7 | This package provides the ability to adjust the size of the tip tab image. It has been tested in [React](https://codesandbox.io/p/devbox/react-tiptap-image-extension-3ztv5s?file=%2Fsrc%2Ftiptap.tsx%3A5%2C26-5%2C55), [Vue](https://codesandbox.io/p/devbox/vue-tiptap-image-extension-tvxx62?file=%2Fsrc%2FTiptap.vue%3A9%2C1), and [NextJS](https://codesandbox.io/p/devbox/nextjs-tiptap-image-extension-nk6v7p?file=%2Fapp%2Ftiptap.tsx%3A17%2C1), and stability in VanillaJS may not be guaranteed. Additionally, it can align the image position. 8 | 9 | ## Installation 10 | 11 | You can install it using npm: 12 | 13 | ```bash 14 | $ npm install tiptap-extension-resize-image 15 | ``` 16 | 17 | ## Usage 18 | 19 | ```javascript 20 | import StarterKit from '@tiptap/starter-kit'; 21 | import ImageResize from 'tiptap-extension-resize-image'; 22 | import { EditorContent, useEditor } from '@tiptap/react'; 23 | 24 | const editor = useEditor({ 25 | extensions: [StarterKit, ImageResize], 26 | content: ``, 27 | }); 28 | ``` 29 | -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["@babel/preset-env", { "targets": { "node": "current" } }], 4 | "@babel/preset-typescript" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /lib/imageResize.ts: -------------------------------------------------------------------------------- 1 | import Image from '@tiptap/extension-image'; 2 | 3 | export const ImageResize = Image.extend({ 4 | addAttributes() { 5 | return { 6 | ...this.parent?.(), 7 | style: { 8 | default: 'width: 100%; height: auto; cursor: pointer;', 9 | parseHTML: (element) => { 10 | const width = element.getAttribute('width'); 11 | return width 12 | ? `width: ${width}px; height: auto; cursor: pointer;` 13 | : `${element.style.cssText}`; 14 | }, 15 | }, 16 | }; 17 | }, 18 | addNodeView() { 19 | return ({ node, editor, getPos }) => { 20 | const { 21 | view, 22 | options: { editable }, 23 | } = editor; 24 | const { style } = node.attrs; 25 | const $wrapper = document.createElement('div'); 26 | const $container = document.createElement('div'); 27 | const $img = document.createElement('img'); 28 | const iconStyle = 'width: 24px; height: 24px; cursor: pointer;'; 29 | 30 | const dispatchNodeView = () => { 31 | if (typeof getPos === 'function') { 32 | const newAttrs = { 33 | ...node.attrs, 34 | style: `${$img.style.cssText}`, 35 | }; 36 | view.dispatch(view.state.tr.setNodeMarkup(getPos(), null, newAttrs)); 37 | } 38 | }; 39 | const paintPositionContoller = () => { 40 | const $postionController = document.createElement('div'); 41 | 42 | const $leftController = document.createElement('img'); 43 | const $centerController = document.createElement('img'); 44 | const $rightController = document.createElement('img'); 45 | 46 | const controllerMouseOver = (e) => { 47 | e.target.style.opacity = 0.3; 48 | }; 49 | 50 | const controllerMouseOut = (e) => { 51 | e.target.style.opacity = 1; 52 | }; 53 | 54 | $postionController.setAttribute( 55 | 'style', 56 | 'position: absolute; top: 0%; left: 50%; width: 100px; height: 25px; z-index: 999; background-color: rgba(255, 255, 255, 0.7); border-radius: 4px; border: 2px solid #6C6C6C; cursor: pointer; transform: translate(-50%, -50%); display: flex; justify-content: space-between; align-items: center; padding: 0 10px;' 57 | ); 58 | 59 | $leftController.setAttribute( 60 | 'src', 61 | 'https://fonts.gstatic.com/s/i/short-term/release/materialsymbolsoutlined/format_align_left/default/20px.svg' 62 | ); 63 | $leftController.setAttribute('style', iconStyle); 64 | $leftController.addEventListener('mouseover', controllerMouseOver); 65 | $leftController.addEventListener('mouseout', controllerMouseOut); 66 | 67 | $centerController.setAttribute( 68 | 'src', 69 | 'https://fonts.gstatic.com/s/i/short-term/release/materialsymbolsoutlined/format_align_center/default/20px.svg' 70 | ); 71 | $centerController.setAttribute('style', iconStyle); 72 | $centerController.addEventListener('mouseover', controllerMouseOver); 73 | $centerController.addEventListener('mouseout', controllerMouseOut); 74 | 75 | $rightController.setAttribute( 76 | 'src', 77 | 'https://fonts.gstatic.com/s/i/short-term/release/materialsymbolsoutlined/format_align_right/default/20px.svg' 78 | ); 79 | $rightController.setAttribute('style', iconStyle); 80 | $rightController.addEventListener('mouseover', controllerMouseOver); 81 | $rightController.addEventListener('mouseout', controllerMouseOut); 82 | 83 | $leftController.addEventListener('click', () => { 84 | $img.setAttribute('style', `${$img.style.cssText} margin: 0 auto 0 0;`); 85 | dispatchNodeView(); 86 | }); 87 | $centerController.addEventListener('click', () => { 88 | $img.setAttribute('style', `${$img.style.cssText} margin: 0 auto;`); 89 | dispatchNodeView(); 90 | }); 91 | $rightController.addEventListener('click', () => { 92 | $img.setAttribute('style', `${$img.style.cssText} margin: 0 0 0 auto;`); 93 | dispatchNodeView(); 94 | }); 95 | 96 | $postionController.appendChild($leftController); 97 | $postionController.appendChild($centerController); 98 | $postionController.appendChild($rightController); 99 | 100 | $container.appendChild($postionController); 101 | }; 102 | 103 | $wrapper.setAttribute('style', `display: flex;`); 104 | $wrapper.appendChild($container); 105 | 106 | $container.setAttribute('style', `${style}`); 107 | $container.appendChild($img); 108 | 109 | Object.entries(node.attrs).forEach(([key, value]) => { 110 | if (value === undefined || value === null) return; 111 | $img.setAttribute(key, value); 112 | }); 113 | 114 | if (!editable) return { dom: $container }; 115 | const isMobile = document.documentElement.clientWidth < 768; 116 | const dotPosition = isMobile ? '-8px' : '-4px'; 117 | const dotsPosition = [ 118 | `top: ${dotPosition}; left: ${dotPosition}; cursor: nwse-resize;`, 119 | `top: ${dotPosition}; right: ${dotPosition}; cursor: nesw-resize;`, 120 | `bottom: ${dotPosition}; left: ${dotPosition}; cursor: nesw-resize;`, 121 | `bottom: ${dotPosition}; right: ${dotPosition}; cursor: nwse-resize;`, 122 | ]; 123 | 124 | let isResizing = false; 125 | let startX: number, startWidth: number; 126 | 127 | $container.addEventListener('click', (e) => { 128 | //remove remaining dots and position controller 129 | const isMobile = document.documentElement.clientWidth < 768; 130 | isMobile && (document.querySelector('.ProseMirror-focused') as HTMLElement)?.blur(); 131 | 132 | if ($container.childElementCount > 3) { 133 | for (let i = 0; i < 5; i++) { 134 | $container.removeChild($container.lastChild as Node); 135 | } 136 | } 137 | 138 | paintPositionContoller(); 139 | 140 | $container.setAttribute( 141 | 'style', 142 | `position: relative; border: 1px dashed #6C6C6C; ${style} cursor: pointer;` 143 | ); 144 | 145 | Array.from({ length: 4 }, (_, index) => { 146 | const $dot = document.createElement('div'); 147 | $dot.setAttribute( 148 | 'style', 149 | `position: absolute; width: ${isMobile ? 16 : 9}px; height: ${isMobile ? 16 : 9}px; border: 1.5px solid #6C6C6C; border-radius: 50%; ${dotsPosition[index]}` 150 | ); 151 | 152 | $dot.addEventListener('mousedown', (e) => { 153 | e.preventDefault(); 154 | isResizing = true; 155 | startX = e.clientX; 156 | startWidth = $container.offsetWidth; 157 | 158 | const onMouseMove = (e: MouseEvent) => { 159 | if (!isResizing) return; 160 | const deltaX = index % 2 === 0 ? -(e.clientX - startX) : e.clientX - startX; 161 | 162 | const newWidth = startWidth + deltaX; 163 | 164 | $container.style.width = newWidth + 'px'; 165 | 166 | $img.style.width = newWidth + 'px'; 167 | }; 168 | 169 | const onMouseUp = () => { 170 | if (isResizing) { 171 | isResizing = false; 172 | } 173 | dispatchNodeView(); 174 | 175 | document.removeEventListener('mousemove', onMouseMove); 176 | document.removeEventListener('mouseup', onMouseUp); 177 | }; 178 | 179 | document.addEventListener('mousemove', onMouseMove); 180 | document.addEventListener('mouseup', onMouseUp); 181 | }); 182 | 183 | $dot.addEventListener( 184 | 'touchstart', 185 | (e) => { 186 | e.cancelable && e.preventDefault(); 187 | isResizing = true; 188 | startX = e.touches[0].clientX; 189 | startWidth = $container.offsetWidth; 190 | 191 | const onTouchMove = (e: TouchEvent) => { 192 | if (!isResizing) return; 193 | const deltaX = 194 | index % 2 === 0 195 | ? -(e.touches[0].clientX - startX) 196 | : e.touches[0].clientX - startX; 197 | 198 | const newWidth = startWidth + deltaX; 199 | 200 | $container.style.width = newWidth + 'px'; 201 | 202 | $img.style.width = newWidth + 'px'; 203 | }; 204 | 205 | const onTouchEnd = () => { 206 | if (isResizing) { 207 | isResizing = false; 208 | } 209 | dispatchNodeView(); 210 | 211 | document.removeEventListener('touchmove', onTouchMove); 212 | document.removeEventListener('touchend', onTouchEnd); 213 | }; 214 | 215 | document.addEventListener('touchmove', onTouchMove); 216 | document.addEventListener('touchend', onTouchEnd); 217 | }, 218 | { passive: false } 219 | ); 220 | $container.appendChild($dot); 221 | }); 222 | }); 223 | 224 | document.addEventListener('click', (e: MouseEvent) => { 225 | const $target = e.target as HTMLElement; 226 | const isClickInside = $container.contains($target) || $target.style.cssText === iconStyle; 227 | 228 | if (!isClickInside) { 229 | const containerStyle = $container.getAttribute('style'); 230 | const newStyle = containerStyle?.replace('border: 1px dashed #6C6C6C;', ''); 231 | $container.setAttribute('style', newStyle as string); 232 | 233 | if ($container.childElementCount > 3) { 234 | for (let i = 0; i < 5; i++) { 235 | $container.removeChild($container.lastChild as Node); 236 | } 237 | } 238 | } 239 | }); 240 | 241 | return { 242 | dom: $wrapper, 243 | }; 244 | }; 245 | }, 246 | }); 247 | -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- 1 | import { ImageResize } from './imageResize.js'; 2 | 3 | export * from './imageResize.js'; 4 | 5 | export default ImageResize; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tiptap-extension-resize-image", 3 | "version": "1.2.2", 4 | "type": "module", 5 | "description": "A tiptap image resizing extension for React, Vue, Next, and VanillaJS. Additionally, it can align the image position.", 6 | "main": "dist/index.js", 7 | "exports": { 8 | ".": { 9 | "types": "./dist/index.d.ts", 10 | "require": "./dist/index.js", 11 | "import": "./esm/index.js" 12 | } 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/bae-sh/tiptap-extension-resize-image" 17 | }, 18 | "scripts": { 19 | "build": "yarn clean && yarn build:tsc && yarn build:rollup", 20 | "build:tsc": "yarn tsc --declaration --emitDeclarationOnly --declarationDir dist", 21 | "build:rollup": "rollup -c rollup.config.mjs", 22 | "clean": "rm -rf dist esm", 23 | "test": "jest" 24 | }, 25 | "author": "bae-sh ", 26 | "contributors": [ 27 | { 28 | "name": "dongyounyim", 29 | "email": "dyyim4725@gmail.com" 30 | } 31 | ], 32 | "directories": { 33 | "lib": "lib" 34 | }, 35 | "license": "MIT", 36 | "keywords": [ 37 | "tiptap", 38 | "tiptap extension", 39 | "image", 40 | "resize-image", 41 | "resizable image", 42 | "align image" 43 | ], 44 | "devDependencies": { 45 | "@babel/core": "^7.23.6", 46 | "@babel/preset-env": "^7.23.6", 47 | "@babel/preset-typescript": "^7.23.3", 48 | "@rollup/plugin-typescript": "^11.1.5", 49 | "@tiptap/core": "^2.1.13", 50 | "@tiptap/extension-image": "^2.1.13", 51 | "@tiptap/pm": "^2.1.13", 52 | "@types/node": "^20.10.4", 53 | "prettier": "^3.3.3", 54 | "rollup": "^4.8.0", 55 | "tslib": "^2.6.2", 56 | "typescript": "^4.9.5" 57 | }, 58 | "peerDependencies": { 59 | "@tiptap/core": "^2.0.0", 60 | "@tiptap/extension-image": "^2.0.0", 61 | "@tiptap/pm": "^2.0.0" 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- 1 | import typescript from '@rollup/plugin-typescript'; 2 | import tslib from 'tslib'; 3 | 4 | export default [ 5 | { 6 | input: 'lib/index.ts', 7 | output: [ 8 | { 9 | dir: './dist', 10 | format: 'cjs', 11 | sourcemap: true, 12 | }, 13 | ], 14 | plugins: [ 15 | typescript({ 16 | tslib, 17 | }), 18 | ], 19 | }, 20 | { 21 | input: 'lib/index.ts', 22 | output: [ 23 | { 24 | dir: './esm', 25 | format: 'esm', 26 | sourcemap: true, 27 | }, 28 | ], 29 | plugins: [ 30 | typescript({ 31 | outDir: './esm', 32 | declaration: false, 33 | tslib, 34 | }), 35 | ], 36 | }, 37 | ]; 38 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "esModuleInterop": true, 5 | "jsx": "react", 6 | "lib": ["es5", "es6", "dom"], 7 | "declaration": true, 8 | "outDir": "./dist", 9 | "moduleResolution": "node" 10 | }, 11 | "include": ["./lib/*"] 12 | } 13 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ampproject/remapping@^2.2.0": 6 | version "2.2.1" 7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" 8 | integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== 9 | dependencies: 10 | "@jridgewell/gen-mapping" "^0.3.0" 11 | "@jridgewell/trace-mapping" "^0.3.9" 12 | 13 | "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5": 14 | version "7.23.5" 15 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" 16 | integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== 17 | dependencies: 18 | "@babel/highlight" "^7.23.4" 19 | chalk "^2.4.2" 20 | 21 | "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.3", "@babel/compat-data@^7.23.5": 22 | version "7.23.5" 23 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" 24 | integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== 25 | 26 | "@babel/core@^7.23.6": 27 | version "7.23.6" 28 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.6.tgz#8be77cd77c55baadcc1eae1c33df90ab6d2151d4" 29 | integrity sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw== 30 | dependencies: 31 | "@ampproject/remapping" "^2.2.0" 32 | "@babel/code-frame" "^7.23.5" 33 | "@babel/generator" "^7.23.6" 34 | "@babel/helper-compilation-targets" "^7.23.6" 35 | "@babel/helper-module-transforms" "^7.23.3" 36 | "@babel/helpers" "^7.23.6" 37 | "@babel/parser" "^7.23.6" 38 | "@babel/template" "^7.22.15" 39 | "@babel/traverse" "^7.23.6" 40 | "@babel/types" "^7.23.6" 41 | convert-source-map "^2.0.0" 42 | debug "^4.1.0" 43 | gensync "^1.0.0-beta.2" 44 | json5 "^2.2.3" 45 | semver "^6.3.1" 46 | 47 | "@babel/generator@^7.23.6": 48 | version "7.23.6" 49 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" 50 | integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== 51 | dependencies: 52 | "@babel/types" "^7.23.6" 53 | "@jridgewell/gen-mapping" "^0.3.2" 54 | "@jridgewell/trace-mapping" "^0.3.17" 55 | jsesc "^2.5.1" 56 | 57 | "@babel/helper-annotate-as-pure@^7.22.5": 58 | version "7.22.5" 59 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" 60 | integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== 61 | dependencies: 62 | "@babel/types" "^7.22.5" 63 | 64 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.22.15": 65 | version "7.22.15" 66 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956" 67 | integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== 68 | dependencies: 69 | "@babel/types" "^7.22.15" 70 | 71 | "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": 72 | version "7.23.6" 73 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" 74 | integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== 75 | dependencies: 76 | "@babel/compat-data" "^7.23.5" 77 | "@babel/helper-validator-option" "^7.23.5" 78 | browserslist "^4.22.2" 79 | lru-cache "^5.1.1" 80 | semver "^6.3.1" 81 | 82 | "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.23.6": 83 | version "7.23.6" 84 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz#b04d915ce92ce363666f816a884cdcfc9be04953" 85 | integrity sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw== 86 | dependencies: 87 | "@babel/helper-annotate-as-pure" "^7.22.5" 88 | "@babel/helper-environment-visitor" "^7.22.20" 89 | "@babel/helper-function-name" "^7.23.0" 90 | "@babel/helper-member-expression-to-functions" "^7.23.0" 91 | "@babel/helper-optimise-call-expression" "^7.22.5" 92 | "@babel/helper-replace-supers" "^7.22.20" 93 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" 94 | "@babel/helper-split-export-declaration" "^7.22.6" 95 | semver "^6.3.1" 96 | 97 | "@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.15", "@babel/helper-create-regexp-features-plugin@^7.22.5": 98 | version "7.22.15" 99 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1" 100 | integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== 101 | dependencies: 102 | "@babel/helper-annotate-as-pure" "^7.22.5" 103 | regexpu-core "^5.3.1" 104 | semver "^6.3.1" 105 | 106 | "@babel/helper-define-polyfill-provider@^0.4.3": 107 | version "0.4.3" 108 | resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz#a71c10f7146d809f4a256c373f462d9bba8cf6ba" 109 | integrity sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug== 110 | dependencies: 111 | "@babel/helper-compilation-targets" "^7.22.6" 112 | "@babel/helper-plugin-utils" "^7.22.5" 113 | debug "^4.1.1" 114 | lodash.debounce "^4.0.8" 115 | resolve "^1.14.2" 116 | 117 | "@babel/helper-environment-visitor@^7.22.20": 118 | version "7.22.20" 119 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" 120 | integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== 121 | 122 | "@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0": 123 | version "7.23.0" 124 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" 125 | integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== 126 | dependencies: 127 | "@babel/template" "^7.22.15" 128 | "@babel/types" "^7.23.0" 129 | 130 | "@babel/helper-hoist-variables@^7.22.5": 131 | version "7.22.5" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" 133 | integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== 134 | dependencies: 135 | "@babel/types" "^7.22.5" 136 | 137 | "@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": 138 | version "7.23.0" 139 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" 140 | integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== 141 | dependencies: 142 | "@babel/types" "^7.23.0" 143 | 144 | "@babel/helper-module-imports@^7.22.15": 145 | version "7.22.15" 146 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" 147 | integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== 148 | dependencies: 149 | "@babel/types" "^7.22.15" 150 | 151 | "@babel/helper-module-transforms@^7.23.3": 152 | version "7.23.3" 153 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" 154 | integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== 155 | dependencies: 156 | "@babel/helper-environment-visitor" "^7.22.20" 157 | "@babel/helper-module-imports" "^7.22.15" 158 | "@babel/helper-simple-access" "^7.22.5" 159 | "@babel/helper-split-export-declaration" "^7.22.6" 160 | "@babel/helper-validator-identifier" "^7.22.20" 161 | 162 | "@babel/helper-optimise-call-expression@^7.22.5": 163 | version "7.22.5" 164 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" 165 | integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== 166 | dependencies: 167 | "@babel/types" "^7.22.5" 168 | 169 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": 170 | version "7.22.5" 171 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" 172 | integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== 173 | 174 | "@babel/helper-remap-async-to-generator@^7.22.20": 175 | version "7.22.20" 176 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" 177 | integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== 178 | dependencies: 179 | "@babel/helper-annotate-as-pure" "^7.22.5" 180 | "@babel/helper-environment-visitor" "^7.22.20" 181 | "@babel/helper-wrap-function" "^7.22.20" 182 | 183 | "@babel/helper-replace-supers@^7.22.20": 184 | version "7.22.20" 185 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" 186 | integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== 187 | dependencies: 188 | "@babel/helper-environment-visitor" "^7.22.20" 189 | "@babel/helper-member-expression-to-functions" "^7.22.15" 190 | "@babel/helper-optimise-call-expression" "^7.22.5" 191 | 192 | "@babel/helper-simple-access@^7.22.5": 193 | version "7.22.5" 194 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" 195 | integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== 196 | dependencies: 197 | "@babel/types" "^7.22.5" 198 | 199 | "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": 200 | version "7.22.5" 201 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" 202 | integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== 203 | dependencies: 204 | "@babel/types" "^7.22.5" 205 | 206 | "@babel/helper-split-export-declaration@^7.22.6": 207 | version "7.22.6" 208 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" 209 | integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== 210 | dependencies: 211 | "@babel/types" "^7.22.5" 212 | 213 | "@babel/helper-string-parser@^7.23.4": 214 | version "7.23.4" 215 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" 216 | integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== 217 | 218 | "@babel/helper-validator-identifier@^7.22.20": 219 | version "7.22.20" 220 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" 221 | integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== 222 | 223 | "@babel/helper-validator-option@^7.22.15", "@babel/helper-validator-option@^7.23.5": 224 | version "7.23.5" 225 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" 226 | integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== 227 | 228 | "@babel/helper-wrap-function@^7.22.20": 229 | version "7.22.20" 230 | resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569" 231 | integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== 232 | dependencies: 233 | "@babel/helper-function-name" "^7.22.5" 234 | "@babel/template" "^7.22.15" 235 | "@babel/types" "^7.22.19" 236 | 237 | "@babel/helpers@^7.23.6": 238 | version "7.23.6" 239 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.6.tgz#d03af2ee5fb34691eec0cda90f5ecbb4d4da145a" 240 | integrity sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA== 241 | dependencies: 242 | "@babel/template" "^7.22.15" 243 | "@babel/traverse" "^7.23.6" 244 | "@babel/types" "^7.23.6" 245 | 246 | "@babel/highlight@^7.23.4": 247 | version "7.23.4" 248 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" 249 | integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== 250 | dependencies: 251 | "@babel/helper-validator-identifier" "^7.22.20" 252 | chalk "^2.4.2" 253 | js-tokens "^4.0.0" 254 | 255 | "@babel/parser@^7.22.15", "@babel/parser@^7.23.6": 256 | version "7.23.6" 257 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" 258 | integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== 259 | 260 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": 261 | version "7.23.3" 262 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" 263 | integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== 264 | dependencies: 265 | "@babel/helper-plugin-utils" "^7.22.5" 266 | 267 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": 268 | version "7.23.3" 269 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" 270 | integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== 271 | dependencies: 272 | "@babel/helper-plugin-utils" "^7.22.5" 273 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" 274 | "@babel/plugin-transform-optional-chaining" "^7.23.3" 275 | 276 | "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.3": 277 | version "7.23.3" 278 | resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz#20c60d4639d18f7da8602548512e9d3a4c8d7098" 279 | integrity sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w== 280 | dependencies: 281 | "@babel/helper-environment-visitor" "^7.22.20" 282 | "@babel/helper-plugin-utils" "^7.22.5" 283 | 284 | "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": 285 | version "7.21.0-placeholder-for-preset-env.2" 286 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" 287 | integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== 288 | 289 | "@babel/plugin-syntax-async-generators@^7.8.4": 290 | version "7.8.4" 291 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 292 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 293 | dependencies: 294 | "@babel/helper-plugin-utils" "^7.8.0" 295 | 296 | "@babel/plugin-syntax-class-properties@^7.12.13": 297 | version "7.12.13" 298 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 299 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 300 | dependencies: 301 | "@babel/helper-plugin-utils" "^7.12.13" 302 | 303 | "@babel/plugin-syntax-class-static-block@^7.14.5": 304 | version "7.14.5" 305 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" 306 | integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== 307 | dependencies: 308 | "@babel/helper-plugin-utils" "^7.14.5" 309 | 310 | "@babel/plugin-syntax-dynamic-import@^7.8.3": 311 | version "7.8.3" 312 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" 313 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== 314 | dependencies: 315 | "@babel/helper-plugin-utils" "^7.8.0" 316 | 317 | "@babel/plugin-syntax-export-namespace-from@^7.8.3": 318 | version "7.8.3" 319 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" 320 | integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== 321 | dependencies: 322 | "@babel/helper-plugin-utils" "^7.8.3" 323 | 324 | "@babel/plugin-syntax-import-assertions@^7.23.3": 325 | version "7.23.3" 326 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" 327 | integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== 328 | dependencies: 329 | "@babel/helper-plugin-utils" "^7.22.5" 330 | 331 | "@babel/plugin-syntax-import-attributes@^7.23.3": 332 | version "7.23.3" 333 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" 334 | integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== 335 | dependencies: 336 | "@babel/helper-plugin-utils" "^7.22.5" 337 | 338 | "@babel/plugin-syntax-import-meta@^7.10.4": 339 | version "7.10.4" 340 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 341 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 342 | dependencies: 343 | "@babel/helper-plugin-utils" "^7.10.4" 344 | 345 | "@babel/plugin-syntax-json-strings@^7.8.3": 346 | version "7.8.3" 347 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 348 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 349 | dependencies: 350 | "@babel/helper-plugin-utils" "^7.8.0" 351 | 352 | "@babel/plugin-syntax-jsx@^7.23.3": 353 | version "7.23.3" 354 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" 355 | integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== 356 | dependencies: 357 | "@babel/helper-plugin-utils" "^7.22.5" 358 | 359 | "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": 360 | version "7.10.4" 361 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 362 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 363 | dependencies: 364 | "@babel/helper-plugin-utils" "^7.10.4" 365 | 366 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 367 | version "7.8.3" 368 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 369 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 370 | dependencies: 371 | "@babel/helper-plugin-utils" "^7.8.0" 372 | 373 | "@babel/plugin-syntax-numeric-separator@^7.10.4": 374 | version "7.10.4" 375 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 376 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 377 | dependencies: 378 | "@babel/helper-plugin-utils" "^7.10.4" 379 | 380 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 381 | version "7.8.3" 382 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 383 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 384 | dependencies: 385 | "@babel/helper-plugin-utils" "^7.8.0" 386 | 387 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 388 | version "7.8.3" 389 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 390 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 391 | dependencies: 392 | "@babel/helper-plugin-utils" "^7.8.0" 393 | 394 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 395 | version "7.8.3" 396 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 397 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 398 | dependencies: 399 | "@babel/helper-plugin-utils" "^7.8.0" 400 | 401 | "@babel/plugin-syntax-private-property-in-object@^7.14.5": 402 | version "7.14.5" 403 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" 404 | integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== 405 | dependencies: 406 | "@babel/helper-plugin-utils" "^7.14.5" 407 | 408 | "@babel/plugin-syntax-top-level-await@^7.14.5": 409 | version "7.14.5" 410 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 411 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 412 | dependencies: 413 | "@babel/helper-plugin-utils" "^7.14.5" 414 | 415 | "@babel/plugin-syntax-typescript@^7.23.3": 416 | version "7.23.3" 417 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f" 418 | integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== 419 | dependencies: 420 | "@babel/helper-plugin-utils" "^7.22.5" 421 | 422 | "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": 423 | version "7.18.6" 424 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" 425 | integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== 426 | dependencies: 427 | "@babel/helper-create-regexp-features-plugin" "^7.18.6" 428 | "@babel/helper-plugin-utils" "^7.18.6" 429 | 430 | "@babel/plugin-transform-arrow-functions@^7.23.3": 431 | version "7.23.3" 432 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" 433 | integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== 434 | dependencies: 435 | "@babel/helper-plugin-utils" "^7.22.5" 436 | 437 | "@babel/plugin-transform-async-generator-functions@^7.23.4": 438 | version "7.23.4" 439 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz#93ac8e3531f347fba519b4703f9ff2a75c6ae27a" 440 | integrity sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw== 441 | dependencies: 442 | "@babel/helper-environment-visitor" "^7.22.20" 443 | "@babel/helper-plugin-utils" "^7.22.5" 444 | "@babel/helper-remap-async-to-generator" "^7.22.20" 445 | "@babel/plugin-syntax-async-generators" "^7.8.4" 446 | 447 | "@babel/plugin-transform-async-to-generator@^7.23.3": 448 | version "7.23.3" 449 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" 450 | integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== 451 | dependencies: 452 | "@babel/helper-module-imports" "^7.22.15" 453 | "@babel/helper-plugin-utils" "^7.22.5" 454 | "@babel/helper-remap-async-to-generator" "^7.22.20" 455 | 456 | "@babel/plugin-transform-block-scoped-functions@^7.23.3": 457 | version "7.23.3" 458 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" 459 | integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== 460 | dependencies: 461 | "@babel/helper-plugin-utils" "^7.22.5" 462 | 463 | "@babel/plugin-transform-block-scoping@^7.23.4": 464 | version "7.23.4" 465 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" 466 | integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== 467 | dependencies: 468 | "@babel/helper-plugin-utils" "^7.22.5" 469 | 470 | "@babel/plugin-transform-class-properties@^7.23.3": 471 | version "7.23.3" 472 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" 473 | integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== 474 | dependencies: 475 | "@babel/helper-create-class-features-plugin" "^7.22.15" 476 | "@babel/helper-plugin-utils" "^7.22.5" 477 | 478 | "@babel/plugin-transform-class-static-block@^7.23.4": 479 | version "7.23.4" 480 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" 481 | integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== 482 | dependencies: 483 | "@babel/helper-create-class-features-plugin" "^7.22.15" 484 | "@babel/helper-plugin-utils" "^7.22.5" 485 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 486 | 487 | "@babel/plugin-transform-classes@^7.23.5": 488 | version "7.23.5" 489 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz#e7a75f815e0c534cc4c9a39c56636c84fc0d64f2" 490 | integrity sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg== 491 | dependencies: 492 | "@babel/helper-annotate-as-pure" "^7.22.5" 493 | "@babel/helper-compilation-targets" "^7.22.15" 494 | "@babel/helper-environment-visitor" "^7.22.20" 495 | "@babel/helper-function-name" "^7.23.0" 496 | "@babel/helper-optimise-call-expression" "^7.22.5" 497 | "@babel/helper-plugin-utils" "^7.22.5" 498 | "@babel/helper-replace-supers" "^7.22.20" 499 | "@babel/helper-split-export-declaration" "^7.22.6" 500 | globals "^11.1.0" 501 | 502 | "@babel/plugin-transform-computed-properties@^7.23.3": 503 | version "7.23.3" 504 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" 505 | integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== 506 | dependencies: 507 | "@babel/helper-plugin-utils" "^7.22.5" 508 | "@babel/template" "^7.22.15" 509 | 510 | "@babel/plugin-transform-destructuring@^7.23.3": 511 | version "7.23.3" 512 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" 513 | integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== 514 | dependencies: 515 | "@babel/helper-plugin-utils" "^7.22.5" 516 | 517 | "@babel/plugin-transform-dotall-regex@^7.23.3": 518 | version "7.23.3" 519 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" 520 | integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== 521 | dependencies: 522 | "@babel/helper-create-regexp-features-plugin" "^7.22.15" 523 | "@babel/helper-plugin-utils" "^7.22.5" 524 | 525 | "@babel/plugin-transform-duplicate-keys@^7.23.3": 526 | version "7.23.3" 527 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" 528 | integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== 529 | dependencies: 530 | "@babel/helper-plugin-utils" "^7.22.5" 531 | 532 | "@babel/plugin-transform-dynamic-import@^7.23.4": 533 | version "7.23.4" 534 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" 535 | integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== 536 | dependencies: 537 | "@babel/helper-plugin-utils" "^7.22.5" 538 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 539 | 540 | "@babel/plugin-transform-exponentiation-operator@^7.23.3": 541 | version "7.23.3" 542 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" 543 | integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== 544 | dependencies: 545 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" 546 | "@babel/helper-plugin-utils" "^7.22.5" 547 | 548 | "@babel/plugin-transform-export-namespace-from@^7.23.4": 549 | version "7.23.4" 550 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" 551 | integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== 552 | dependencies: 553 | "@babel/helper-plugin-utils" "^7.22.5" 554 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 555 | 556 | "@babel/plugin-transform-for-of@^7.23.6": 557 | version "7.23.6" 558 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e" 559 | integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== 560 | dependencies: 561 | "@babel/helper-plugin-utils" "^7.22.5" 562 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" 563 | 564 | "@babel/plugin-transform-function-name@^7.23.3": 565 | version "7.23.3" 566 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" 567 | integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== 568 | dependencies: 569 | "@babel/helper-compilation-targets" "^7.22.15" 570 | "@babel/helper-function-name" "^7.23.0" 571 | "@babel/helper-plugin-utils" "^7.22.5" 572 | 573 | "@babel/plugin-transform-json-strings@^7.23.4": 574 | version "7.23.4" 575 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" 576 | integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== 577 | dependencies: 578 | "@babel/helper-plugin-utils" "^7.22.5" 579 | "@babel/plugin-syntax-json-strings" "^7.8.3" 580 | 581 | "@babel/plugin-transform-literals@^7.23.3": 582 | version "7.23.3" 583 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" 584 | integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== 585 | dependencies: 586 | "@babel/helper-plugin-utils" "^7.22.5" 587 | 588 | "@babel/plugin-transform-logical-assignment-operators@^7.23.4": 589 | version "7.23.4" 590 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" 591 | integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== 592 | dependencies: 593 | "@babel/helper-plugin-utils" "^7.22.5" 594 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 595 | 596 | "@babel/plugin-transform-member-expression-literals@^7.23.3": 597 | version "7.23.3" 598 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" 599 | integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== 600 | dependencies: 601 | "@babel/helper-plugin-utils" "^7.22.5" 602 | 603 | "@babel/plugin-transform-modules-amd@^7.23.3": 604 | version "7.23.3" 605 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" 606 | integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== 607 | dependencies: 608 | "@babel/helper-module-transforms" "^7.23.3" 609 | "@babel/helper-plugin-utils" "^7.22.5" 610 | 611 | "@babel/plugin-transform-modules-commonjs@^7.23.3": 612 | version "7.23.3" 613 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" 614 | integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== 615 | dependencies: 616 | "@babel/helper-module-transforms" "^7.23.3" 617 | "@babel/helper-plugin-utils" "^7.22.5" 618 | "@babel/helper-simple-access" "^7.22.5" 619 | 620 | "@babel/plugin-transform-modules-systemjs@^7.23.3": 621 | version "7.23.3" 622 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz#fa7e62248931cb15b9404f8052581c302dd9de81" 623 | integrity sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ== 624 | dependencies: 625 | "@babel/helper-hoist-variables" "^7.22.5" 626 | "@babel/helper-module-transforms" "^7.23.3" 627 | "@babel/helper-plugin-utils" "^7.22.5" 628 | "@babel/helper-validator-identifier" "^7.22.20" 629 | 630 | "@babel/plugin-transform-modules-umd@^7.23.3": 631 | version "7.23.3" 632 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" 633 | integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== 634 | dependencies: 635 | "@babel/helper-module-transforms" "^7.23.3" 636 | "@babel/helper-plugin-utils" "^7.22.5" 637 | 638 | "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": 639 | version "7.22.5" 640 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" 641 | integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== 642 | dependencies: 643 | "@babel/helper-create-regexp-features-plugin" "^7.22.5" 644 | "@babel/helper-plugin-utils" "^7.22.5" 645 | 646 | "@babel/plugin-transform-new-target@^7.23.3": 647 | version "7.23.3" 648 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" 649 | integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== 650 | dependencies: 651 | "@babel/helper-plugin-utils" "^7.22.5" 652 | 653 | "@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": 654 | version "7.23.4" 655 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" 656 | integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== 657 | dependencies: 658 | "@babel/helper-plugin-utils" "^7.22.5" 659 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 660 | 661 | "@babel/plugin-transform-numeric-separator@^7.23.4": 662 | version "7.23.4" 663 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" 664 | integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== 665 | dependencies: 666 | "@babel/helper-plugin-utils" "^7.22.5" 667 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 668 | 669 | "@babel/plugin-transform-object-rest-spread@^7.23.4": 670 | version "7.23.4" 671 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz#2b9c2d26bf62710460bdc0d1730d4f1048361b83" 672 | integrity sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g== 673 | dependencies: 674 | "@babel/compat-data" "^7.23.3" 675 | "@babel/helper-compilation-targets" "^7.22.15" 676 | "@babel/helper-plugin-utils" "^7.22.5" 677 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 678 | "@babel/plugin-transform-parameters" "^7.23.3" 679 | 680 | "@babel/plugin-transform-object-super@^7.23.3": 681 | version "7.23.3" 682 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" 683 | integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== 684 | dependencies: 685 | "@babel/helper-plugin-utils" "^7.22.5" 686 | "@babel/helper-replace-supers" "^7.22.20" 687 | 688 | "@babel/plugin-transform-optional-catch-binding@^7.23.4": 689 | version "7.23.4" 690 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" 691 | integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== 692 | dependencies: 693 | "@babel/helper-plugin-utils" "^7.22.5" 694 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 695 | 696 | "@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": 697 | version "7.23.4" 698 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" 699 | integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== 700 | dependencies: 701 | "@babel/helper-plugin-utils" "^7.22.5" 702 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" 703 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 704 | 705 | "@babel/plugin-transform-parameters@^7.23.3": 706 | version "7.23.3" 707 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" 708 | integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== 709 | dependencies: 710 | "@babel/helper-plugin-utils" "^7.22.5" 711 | 712 | "@babel/plugin-transform-private-methods@^7.23.3": 713 | version "7.23.3" 714 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" 715 | integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== 716 | dependencies: 717 | "@babel/helper-create-class-features-plugin" "^7.22.15" 718 | "@babel/helper-plugin-utils" "^7.22.5" 719 | 720 | "@babel/plugin-transform-private-property-in-object@^7.23.4": 721 | version "7.23.4" 722 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" 723 | integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== 724 | dependencies: 725 | "@babel/helper-annotate-as-pure" "^7.22.5" 726 | "@babel/helper-create-class-features-plugin" "^7.22.15" 727 | "@babel/helper-plugin-utils" "^7.22.5" 728 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 729 | 730 | "@babel/plugin-transform-property-literals@^7.23.3": 731 | version "7.23.3" 732 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" 733 | integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== 734 | dependencies: 735 | "@babel/helper-plugin-utils" "^7.22.5" 736 | 737 | "@babel/plugin-transform-regenerator@^7.23.3": 738 | version "7.23.3" 739 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" 740 | integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== 741 | dependencies: 742 | "@babel/helper-plugin-utils" "^7.22.5" 743 | regenerator-transform "^0.15.2" 744 | 745 | "@babel/plugin-transform-reserved-words@^7.23.3": 746 | version "7.23.3" 747 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" 748 | integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== 749 | dependencies: 750 | "@babel/helper-plugin-utils" "^7.22.5" 751 | 752 | "@babel/plugin-transform-shorthand-properties@^7.23.3": 753 | version "7.23.3" 754 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" 755 | integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== 756 | dependencies: 757 | "@babel/helper-plugin-utils" "^7.22.5" 758 | 759 | "@babel/plugin-transform-spread@^7.23.3": 760 | version "7.23.3" 761 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" 762 | integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== 763 | dependencies: 764 | "@babel/helper-plugin-utils" "^7.22.5" 765 | "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" 766 | 767 | "@babel/plugin-transform-sticky-regex@^7.23.3": 768 | version "7.23.3" 769 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" 770 | integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== 771 | dependencies: 772 | "@babel/helper-plugin-utils" "^7.22.5" 773 | 774 | "@babel/plugin-transform-template-literals@^7.23.3": 775 | version "7.23.3" 776 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" 777 | integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== 778 | dependencies: 779 | "@babel/helper-plugin-utils" "^7.22.5" 780 | 781 | "@babel/plugin-transform-typeof-symbol@^7.23.3": 782 | version "7.23.3" 783 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" 784 | integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== 785 | dependencies: 786 | "@babel/helper-plugin-utils" "^7.22.5" 787 | 788 | "@babel/plugin-transform-typescript@^7.23.3": 789 | version "7.23.6" 790 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz#aa36a94e5da8d94339ae3a4e22d40ed287feb34c" 791 | integrity sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA== 792 | dependencies: 793 | "@babel/helper-annotate-as-pure" "^7.22.5" 794 | "@babel/helper-create-class-features-plugin" "^7.23.6" 795 | "@babel/helper-plugin-utils" "^7.22.5" 796 | "@babel/plugin-syntax-typescript" "^7.23.3" 797 | 798 | "@babel/plugin-transform-unicode-escapes@^7.23.3": 799 | version "7.23.3" 800 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" 801 | integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== 802 | dependencies: 803 | "@babel/helper-plugin-utils" "^7.22.5" 804 | 805 | "@babel/plugin-transform-unicode-property-regex@^7.23.3": 806 | version "7.23.3" 807 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" 808 | integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== 809 | dependencies: 810 | "@babel/helper-create-regexp-features-plugin" "^7.22.15" 811 | "@babel/helper-plugin-utils" "^7.22.5" 812 | 813 | "@babel/plugin-transform-unicode-regex@^7.23.3": 814 | version "7.23.3" 815 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" 816 | integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== 817 | dependencies: 818 | "@babel/helper-create-regexp-features-plugin" "^7.22.15" 819 | "@babel/helper-plugin-utils" "^7.22.5" 820 | 821 | "@babel/plugin-transform-unicode-sets-regex@^7.23.3": 822 | version "7.23.3" 823 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" 824 | integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== 825 | dependencies: 826 | "@babel/helper-create-regexp-features-plugin" "^7.22.15" 827 | "@babel/helper-plugin-utils" "^7.22.5" 828 | 829 | "@babel/preset-env@^7.23.6": 830 | version "7.23.6" 831 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.23.6.tgz#ad0ea799d5a3c07db5b9a172819bbd444092187a" 832 | integrity sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ== 833 | dependencies: 834 | "@babel/compat-data" "^7.23.5" 835 | "@babel/helper-compilation-targets" "^7.23.6" 836 | "@babel/helper-plugin-utils" "^7.22.5" 837 | "@babel/helper-validator-option" "^7.23.5" 838 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" 839 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" 840 | "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.3" 841 | "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" 842 | "@babel/plugin-syntax-async-generators" "^7.8.4" 843 | "@babel/plugin-syntax-class-properties" "^7.12.13" 844 | "@babel/plugin-syntax-class-static-block" "^7.14.5" 845 | "@babel/plugin-syntax-dynamic-import" "^7.8.3" 846 | "@babel/plugin-syntax-export-namespace-from" "^7.8.3" 847 | "@babel/plugin-syntax-import-assertions" "^7.23.3" 848 | "@babel/plugin-syntax-import-attributes" "^7.23.3" 849 | "@babel/plugin-syntax-import-meta" "^7.10.4" 850 | "@babel/plugin-syntax-json-strings" "^7.8.3" 851 | "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" 852 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 853 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" 854 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 855 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 856 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 857 | "@babel/plugin-syntax-private-property-in-object" "^7.14.5" 858 | "@babel/plugin-syntax-top-level-await" "^7.14.5" 859 | "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" 860 | "@babel/plugin-transform-arrow-functions" "^7.23.3" 861 | "@babel/plugin-transform-async-generator-functions" "^7.23.4" 862 | "@babel/plugin-transform-async-to-generator" "^7.23.3" 863 | "@babel/plugin-transform-block-scoped-functions" "^7.23.3" 864 | "@babel/plugin-transform-block-scoping" "^7.23.4" 865 | "@babel/plugin-transform-class-properties" "^7.23.3" 866 | "@babel/plugin-transform-class-static-block" "^7.23.4" 867 | "@babel/plugin-transform-classes" "^7.23.5" 868 | "@babel/plugin-transform-computed-properties" "^7.23.3" 869 | "@babel/plugin-transform-destructuring" "^7.23.3" 870 | "@babel/plugin-transform-dotall-regex" "^7.23.3" 871 | "@babel/plugin-transform-duplicate-keys" "^7.23.3" 872 | "@babel/plugin-transform-dynamic-import" "^7.23.4" 873 | "@babel/plugin-transform-exponentiation-operator" "^7.23.3" 874 | "@babel/plugin-transform-export-namespace-from" "^7.23.4" 875 | "@babel/plugin-transform-for-of" "^7.23.6" 876 | "@babel/plugin-transform-function-name" "^7.23.3" 877 | "@babel/plugin-transform-json-strings" "^7.23.4" 878 | "@babel/plugin-transform-literals" "^7.23.3" 879 | "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" 880 | "@babel/plugin-transform-member-expression-literals" "^7.23.3" 881 | "@babel/plugin-transform-modules-amd" "^7.23.3" 882 | "@babel/plugin-transform-modules-commonjs" "^7.23.3" 883 | "@babel/plugin-transform-modules-systemjs" "^7.23.3" 884 | "@babel/plugin-transform-modules-umd" "^7.23.3" 885 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" 886 | "@babel/plugin-transform-new-target" "^7.23.3" 887 | "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" 888 | "@babel/plugin-transform-numeric-separator" "^7.23.4" 889 | "@babel/plugin-transform-object-rest-spread" "^7.23.4" 890 | "@babel/plugin-transform-object-super" "^7.23.3" 891 | "@babel/plugin-transform-optional-catch-binding" "^7.23.4" 892 | "@babel/plugin-transform-optional-chaining" "^7.23.4" 893 | "@babel/plugin-transform-parameters" "^7.23.3" 894 | "@babel/plugin-transform-private-methods" "^7.23.3" 895 | "@babel/plugin-transform-private-property-in-object" "^7.23.4" 896 | "@babel/plugin-transform-property-literals" "^7.23.3" 897 | "@babel/plugin-transform-regenerator" "^7.23.3" 898 | "@babel/plugin-transform-reserved-words" "^7.23.3" 899 | "@babel/plugin-transform-shorthand-properties" "^7.23.3" 900 | "@babel/plugin-transform-spread" "^7.23.3" 901 | "@babel/plugin-transform-sticky-regex" "^7.23.3" 902 | "@babel/plugin-transform-template-literals" "^7.23.3" 903 | "@babel/plugin-transform-typeof-symbol" "^7.23.3" 904 | "@babel/plugin-transform-unicode-escapes" "^7.23.3" 905 | "@babel/plugin-transform-unicode-property-regex" "^7.23.3" 906 | "@babel/plugin-transform-unicode-regex" "^7.23.3" 907 | "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" 908 | "@babel/preset-modules" "0.1.6-no-external-plugins" 909 | babel-plugin-polyfill-corejs2 "^0.4.6" 910 | babel-plugin-polyfill-corejs3 "^0.8.5" 911 | babel-plugin-polyfill-regenerator "^0.5.3" 912 | core-js-compat "^3.31.0" 913 | semver "^6.3.1" 914 | 915 | "@babel/preset-modules@0.1.6-no-external-plugins": 916 | version "0.1.6-no-external-plugins" 917 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" 918 | integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== 919 | dependencies: 920 | "@babel/helper-plugin-utils" "^7.0.0" 921 | "@babel/types" "^7.4.4" 922 | esutils "^2.0.2" 923 | 924 | "@babel/preset-typescript@^7.23.3": 925 | version "7.23.3" 926 | resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz#14534b34ed5b6d435aa05f1ae1c5e7adcc01d913" 927 | integrity sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ== 928 | dependencies: 929 | "@babel/helper-plugin-utils" "^7.22.5" 930 | "@babel/helper-validator-option" "^7.22.15" 931 | "@babel/plugin-syntax-jsx" "^7.23.3" 932 | "@babel/plugin-transform-modules-commonjs" "^7.23.3" 933 | "@babel/plugin-transform-typescript" "^7.23.3" 934 | 935 | "@babel/regjsgen@^0.8.0": 936 | version "0.8.0" 937 | resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" 938 | integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== 939 | 940 | "@babel/runtime@^7.8.4": 941 | version "7.23.6" 942 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.6.tgz#c05e610dc228855dc92ef1b53d07389ed8ab521d" 943 | integrity sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ== 944 | dependencies: 945 | regenerator-runtime "^0.14.0" 946 | 947 | "@babel/template@^7.22.15": 948 | version "7.22.15" 949 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" 950 | integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== 951 | dependencies: 952 | "@babel/code-frame" "^7.22.13" 953 | "@babel/parser" "^7.22.15" 954 | "@babel/types" "^7.22.15" 955 | 956 | "@babel/traverse@^7.23.6": 957 | version "7.23.6" 958 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.6.tgz#b53526a2367a0dd6edc423637f3d2d0f2521abc5" 959 | integrity sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ== 960 | dependencies: 961 | "@babel/code-frame" "^7.23.5" 962 | "@babel/generator" "^7.23.6" 963 | "@babel/helper-environment-visitor" "^7.22.20" 964 | "@babel/helper-function-name" "^7.23.0" 965 | "@babel/helper-hoist-variables" "^7.22.5" 966 | "@babel/helper-split-export-declaration" "^7.22.6" 967 | "@babel/parser" "^7.23.6" 968 | "@babel/types" "^7.23.6" 969 | debug "^4.3.1" 970 | globals "^11.1.0" 971 | 972 | "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.4.4": 973 | version "7.23.6" 974 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" 975 | integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== 976 | dependencies: 977 | "@babel/helper-string-parser" "^7.23.4" 978 | "@babel/helper-validator-identifier" "^7.22.20" 979 | to-fast-properties "^2.0.0" 980 | 981 | "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": 982 | version "0.3.3" 983 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" 984 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== 985 | dependencies: 986 | "@jridgewell/set-array" "^1.0.1" 987 | "@jridgewell/sourcemap-codec" "^1.4.10" 988 | "@jridgewell/trace-mapping" "^0.3.9" 989 | 990 | "@jridgewell/resolve-uri@^3.1.0": 991 | version "3.1.1" 992 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" 993 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== 994 | 995 | "@jridgewell/set-array@^1.0.1": 996 | version "1.1.2" 997 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 998 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 999 | 1000 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 1001 | version "1.4.15" 1002 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 1003 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 1004 | 1005 | "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": 1006 | version "0.3.20" 1007 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" 1008 | integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== 1009 | dependencies: 1010 | "@jridgewell/resolve-uri" "^3.1.0" 1011 | "@jridgewell/sourcemap-codec" "^1.4.14" 1012 | 1013 | "@remirror/core-constants@^2.0.2": 1014 | version "2.0.2" 1015 | resolved "https://registry.yarnpkg.com/@remirror/core-constants/-/core-constants-2.0.2.tgz#f05eccdc69e3a65e7d524b52548f567904a11a1a" 1016 | integrity sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ== 1017 | 1018 | "@remirror/core-helpers@^3.0.0": 1019 | version "3.0.0" 1020 | resolved "https://registry.yarnpkg.com/@remirror/core-helpers/-/core-helpers-3.0.0.tgz#3a35c2346bc23ebc3cee585b7840b5567755c5f1" 1021 | integrity sha512-tusEgQJIqg4qKj6HSBUFcyRnWnziw3neh4T9wOmsPGHFC3w9kl5KSrDb9UAgE8uX6y32FnS7vJ955mWOl3n50A== 1022 | dependencies: 1023 | "@remirror/core-constants" "^2.0.2" 1024 | "@remirror/types" "^1.0.1" 1025 | "@types/object.omit" "^3.0.0" 1026 | "@types/object.pick" "^1.3.2" 1027 | "@types/throttle-debounce" "^2.1.0" 1028 | case-anything "^2.1.13" 1029 | dash-get "^1.0.2" 1030 | deepmerge "^4.3.1" 1031 | fast-deep-equal "^3.1.3" 1032 | make-error "^1.3.6" 1033 | object.omit "^3.0.0" 1034 | object.pick "^1.3.0" 1035 | throttle-debounce "^3.0.1" 1036 | 1037 | "@remirror/types@^1.0.1": 1038 | version "1.0.1" 1039 | resolved "https://registry.yarnpkg.com/@remirror/types/-/types-1.0.1.tgz#768502497a0fbbc23338a1586b893f729310cf70" 1040 | integrity sha512-VlZQxwGnt1jtQ18D6JqdIF+uFZo525WEqrfp9BOc3COPpK4+AWCgdnAWL+ho6imWcoINlGjR/+3b6y5C1vBVEA== 1041 | dependencies: 1042 | type-fest "^2.19.0" 1043 | 1044 | "@rollup/plugin-typescript@^11.1.5": 1045 | version "11.1.5" 1046 | resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-11.1.5.tgz#039c763bf943a5921f3f42be255895e75764cb91" 1047 | integrity sha512-rnMHrGBB0IUEv69Q8/JGRD/n4/n6b3nfpufUu26axhUcboUzv/twfZU8fIBbTOphRAe0v8EyxzeDpKXqGHfyDA== 1048 | dependencies: 1049 | "@rollup/pluginutils" "^5.0.1" 1050 | resolve "^1.22.1" 1051 | 1052 | "@rollup/pluginutils@^5.0.1": 1053 | version "5.1.0" 1054 | resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0" 1055 | integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g== 1056 | dependencies: 1057 | "@types/estree" "^1.0.0" 1058 | estree-walker "^2.0.2" 1059 | picomatch "^2.3.1" 1060 | 1061 | "@rollup/rollup-android-arm-eabi@4.22.4": 1062 | version "4.22.4" 1063 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.4.tgz#8b613b9725e8f9479d142970b106b6ae878610d5" 1064 | integrity sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w== 1065 | 1066 | "@rollup/rollup-android-arm64@4.22.4": 1067 | version "4.22.4" 1068 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.4.tgz#654ca1049189132ff602bfcf8df14c18da1f15fb" 1069 | integrity sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA== 1070 | 1071 | "@rollup/rollup-darwin-arm64@4.22.4": 1072 | version "4.22.4" 1073 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.4.tgz#6d241d099d1518ef0c2205d96b3fa52e0fe1954b" 1074 | integrity sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q== 1075 | 1076 | "@rollup/rollup-darwin-x64@4.22.4": 1077 | version "4.22.4" 1078 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.4.tgz#42bd19d292a57ee11734c980c4650de26b457791" 1079 | integrity sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw== 1080 | 1081 | "@rollup/rollup-linux-arm-gnueabihf@4.22.4": 1082 | version "4.22.4" 1083 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.4.tgz#f23555ee3d8fe941c5c5fd458cd22b65eb1c2232" 1084 | integrity sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ== 1085 | 1086 | "@rollup/rollup-linux-arm-musleabihf@4.22.4": 1087 | version "4.22.4" 1088 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.4.tgz#f3bbd1ae2420f5539d40ac1fde2b38da67779baa" 1089 | integrity sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg== 1090 | 1091 | "@rollup/rollup-linux-arm64-gnu@4.22.4": 1092 | version "4.22.4" 1093 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.4.tgz#7abe900120113e08a1f90afb84c7c28774054d15" 1094 | integrity sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw== 1095 | 1096 | "@rollup/rollup-linux-arm64-musl@4.22.4": 1097 | version "4.22.4" 1098 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.4.tgz#9e655285c8175cd44f57d6a1e8e5dedfbba1d820" 1099 | integrity sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA== 1100 | 1101 | "@rollup/rollup-linux-powerpc64le-gnu@4.22.4": 1102 | version "4.22.4" 1103 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.4.tgz#9a79ae6c9e9d8fe83d49e2712ecf4302db5bef5e" 1104 | integrity sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg== 1105 | 1106 | "@rollup/rollup-linux-riscv64-gnu@4.22.4": 1107 | version "4.22.4" 1108 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.4.tgz#67ac70eca4ace8e2942fabca95164e8874ab8128" 1109 | integrity sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA== 1110 | 1111 | "@rollup/rollup-linux-s390x-gnu@4.22.4": 1112 | version "4.22.4" 1113 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.4.tgz#9f883a7440f51a22ed7f99e1d070bd84ea5005fc" 1114 | integrity sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q== 1115 | 1116 | "@rollup/rollup-linux-x64-gnu@4.22.4": 1117 | version "4.22.4" 1118 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.4.tgz#70116ae6c577fe367f58559e2cffb5641a1dd9d0" 1119 | integrity sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg== 1120 | 1121 | "@rollup/rollup-linux-x64-musl@4.22.4": 1122 | version "4.22.4" 1123 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.4.tgz#f473f88219feb07b0b98b53a7923be716d1d182f" 1124 | integrity sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g== 1125 | 1126 | "@rollup/rollup-win32-arm64-msvc@4.22.4": 1127 | version "4.22.4" 1128 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.4.tgz#4349482d17f5d1c58604d1c8900540d676f420e0" 1129 | integrity sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw== 1130 | 1131 | "@rollup/rollup-win32-ia32-msvc@4.22.4": 1132 | version "4.22.4" 1133 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.4.tgz#a6fc39a15db618040ec3c2a24c1e26cb5f4d7422" 1134 | integrity sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g== 1135 | 1136 | "@rollup/rollup-win32-x64-msvc@4.22.4": 1137 | version "4.22.4" 1138 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.4.tgz#3dd5d53e900df2a40841882c02e56f866c04d202" 1139 | integrity sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q== 1140 | 1141 | "@tiptap/core@^2.1.13": 1142 | version "2.1.13" 1143 | resolved "https://registry.yarnpkg.com/@tiptap/core/-/core-2.1.13.tgz#e21f566e81688c826c6f26d2940886734189e193" 1144 | integrity sha512-cMC8bgTN63dj1Mv82iDeeLl6sa9kY0Pug8LSalxVEptRmyFVsVxGgu2/6Y3T+9aCYScxfS06EkA8SdzFMAwYTQ== 1145 | 1146 | "@tiptap/extension-image@^2.1.13": 1147 | version "2.1.13" 1148 | resolved "https://registry.yarnpkg.com/@tiptap/extension-image/-/extension-image-2.1.13.tgz#835fc6759b2c1184fb54d3704c538029d523dbf6" 1149 | integrity sha512-7oVAos+BU4KR/zQsfltrd8hgIxKxyxZ19dhwb1BJI2Nt3Mnx+yFPRlRSehID6RT9dYqgW4UW5d6vh/3HQcYYYw== 1150 | 1151 | "@tiptap/pm@^2.1.13": 1152 | version "2.1.13" 1153 | resolved "https://registry.yarnpkg.com/@tiptap/pm/-/pm-2.1.13.tgz#857753691580be760da13629fab2712c52750741" 1154 | integrity sha512-zNbA7muWsHuVg12GrTgN/j119rLePPq5M8dZgkKxUwdw8VmU3eUyBp1SihPEXJ2U0MGdZhNhFX7Y74g11u66sg== 1155 | dependencies: 1156 | prosemirror-changeset "^2.2.0" 1157 | prosemirror-collab "^1.3.0" 1158 | prosemirror-commands "^1.3.1" 1159 | prosemirror-dropcursor "^1.5.0" 1160 | prosemirror-gapcursor "^1.3.1" 1161 | prosemirror-history "^1.3.0" 1162 | prosemirror-inputrules "^1.2.0" 1163 | prosemirror-keymap "^1.2.0" 1164 | prosemirror-markdown "^1.10.1" 1165 | prosemirror-menu "^1.2.1" 1166 | prosemirror-model "^1.18.1" 1167 | prosemirror-schema-basic "^1.2.0" 1168 | prosemirror-schema-list "^1.2.2" 1169 | prosemirror-state "^1.4.1" 1170 | prosemirror-tables "^1.3.0" 1171 | prosemirror-trailing-node "^2.0.2" 1172 | prosemirror-transform "^1.7.0" 1173 | prosemirror-view "^1.28.2" 1174 | 1175 | "@types/estree@1.0.5", "@types/estree@^1.0.0": 1176 | version "1.0.5" 1177 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" 1178 | integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== 1179 | 1180 | "@types/node@^20.10.4": 1181 | version "20.10.4" 1182 | resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.4.tgz#b246fd84d55d5b1b71bf51f964bd514409347198" 1183 | integrity sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg== 1184 | dependencies: 1185 | undici-types "~5.26.4" 1186 | 1187 | "@types/object.omit@^3.0.0": 1188 | version "3.0.3" 1189 | resolved "https://registry.yarnpkg.com/@types/object.omit/-/object.omit-3.0.3.tgz#cc52b1d9774c1619b5c6fc50229d087f01eabd68" 1190 | integrity sha512-xrq4bQTBGYY2cw+gV4PzoG2Lv3L0pjZ1uXStRRDQoATOYW1lCsFQHhQ+OkPhIcQoqLjAq7gYif7D14Qaa6Zbew== 1191 | 1192 | "@types/object.pick@^1.3.2": 1193 | version "1.3.4" 1194 | resolved "https://registry.yarnpkg.com/@types/object.pick/-/object.pick-1.3.4.tgz#1a38b6e69a35f36ec2dcc8b9f5ffd555c1c4d7fc" 1195 | integrity sha512-5PjwB0uP2XDp3nt5u5NJAG2DORHIRClPzWT/TTZhJ2Ekwe8M5bA9tvPdi9NO/n2uvu2/ictat8kgqvLfcIE1SA== 1196 | 1197 | "@types/throttle-debounce@^2.1.0": 1198 | version "2.1.0" 1199 | resolved "https://registry.yarnpkg.com/@types/throttle-debounce/-/throttle-debounce-2.1.0.tgz#1c3df624bfc4b62f992d3012b84c56d41eab3776" 1200 | integrity sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ== 1201 | 1202 | ansi-styles@^3.2.1: 1203 | version "3.2.1" 1204 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1205 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1206 | dependencies: 1207 | color-convert "^1.9.0" 1208 | 1209 | argparse@^2.0.1: 1210 | version "2.0.1" 1211 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 1212 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 1213 | 1214 | babel-plugin-polyfill-corejs2@^0.4.6: 1215 | version "0.4.6" 1216 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz#b2df0251d8e99f229a8e60fc4efa9a68b41c8313" 1217 | integrity sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q== 1218 | dependencies: 1219 | "@babel/compat-data" "^7.22.6" 1220 | "@babel/helper-define-polyfill-provider" "^0.4.3" 1221 | semver "^6.3.1" 1222 | 1223 | babel-plugin-polyfill-corejs3@^0.8.5: 1224 | version "0.8.6" 1225 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz#25c2d20002da91fe328ff89095c85a391d6856cf" 1226 | integrity sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ== 1227 | dependencies: 1228 | "@babel/helper-define-polyfill-provider" "^0.4.3" 1229 | core-js-compat "^3.33.1" 1230 | 1231 | babel-plugin-polyfill-regenerator@^0.5.3: 1232 | version "0.5.3" 1233 | resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz#d4c49e4b44614607c13fb769bcd85c72bb26a4a5" 1234 | integrity sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw== 1235 | dependencies: 1236 | "@babel/helper-define-polyfill-provider" "^0.4.3" 1237 | 1238 | browserslist@^4.22.2: 1239 | version "4.22.2" 1240 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.2.tgz#704c4943072bd81ea18997f3bd2180e89c77874b" 1241 | integrity sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A== 1242 | dependencies: 1243 | caniuse-lite "^1.0.30001565" 1244 | electron-to-chromium "^1.4.601" 1245 | node-releases "^2.0.14" 1246 | update-browserslist-db "^1.0.13" 1247 | 1248 | caniuse-lite@^1.0.30001565: 1249 | version "1.0.30001568" 1250 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001568.tgz#53fa9297273c9a977a560663f48cbea1767518b7" 1251 | integrity sha512-vSUkH84HontZJ88MiNrOau1EBrCqEQYgkC5gIySiDlpsm8sGVrhU7Kx4V6h0tnqaHzIHZv08HlJIwPbL4XL9+A== 1252 | 1253 | case-anything@^2.1.13: 1254 | version "2.1.13" 1255 | resolved "https://registry.yarnpkg.com/case-anything/-/case-anything-2.1.13.tgz#0cdc16278cb29a7fcdeb072400da3f342ba329e9" 1256 | integrity sha512-zlOQ80VrQ2Ue+ymH5OuM/DlDq64mEm+B9UTdHULv5osUMD6HalNTblf2b1u/m6QecjsnOkBpqVZ+XPwIVsy7Ng== 1257 | 1258 | chalk@^2.4.2: 1259 | version "2.4.2" 1260 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1261 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1262 | dependencies: 1263 | ansi-styles "^3.2.1" 1264 | escape-string-regexp "^1.0.5" 1265 | supports-color "^5.3.0" 1266 | 1267 | color-convert@^1.9.0: 1268 | version "1.9.3" 1269 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1270 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1271 | dependencies: 1272 | color-name "1.1.3" 1273 | 1274 | color-name@1.1.3: 1275 | version "1.1.3" 1276 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1277 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 1278 | 1279 | convert-source-map@^2.0.0: 1280 | version "2.0.0" 1281 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" 1282 | integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== 1283 | 1284 | core-js-compat@^3.31.0, core-js-compat@^3.33.1: 1285 | version "3.34.0" 1286 | resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.34.0.tgz#61a4931a13c52f8f08d924522bba65f8c94a5f17" 1287 | integrity sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA== 1288 | dependencies: 1289 | browserslist "^4.22.2" 1290 | 1291 | crelt@^1.0.0: 1292 | version "1.0.6" 1293 | resolved "https://registry.yarnpkg.com/crelt/-/crelt-1.0.6.tgz#7cc898ea74e190fb6ef9dae57f8f81cf7302df72" 1294 | integrity sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g== 1295 | 1296 | dash-get@^1.0.2: 1297 | version "1.0.2" 1298 | resolved "https://registry.yarnpkg.com/dash-get/-/dash-get-1.0.2.tgz#4c9e9ad5ef04c4bf9d3c9a451f6f7997298dcc7c" 1299 | integrity sha512-4FbVrHDwfOASx7uQVxeiCTo7ggSdYZbqs8lH+WU6ViypPlDbe9y6IP5VVUDQBv9DcnyaiPT5XT0UWHgJ64zLeQ== 1300 | 1301 | debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: 1302 | version "4.3.4" 1303 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 1304 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 1305 | dependencies: 1306 | ms "2.1.2" 1307 | 1308 | deepmerge@^4.3.1: 1309 | version "4.3.1" 1310 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" 1311 | integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== 1312 | 1313 | electron-to-chromium@^1.4.601: 1314 | version "1.4.609" 1315 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.609.tgz#5790a70aaa96de232501b56e14b64d17aff93988" 1316 | integrity sha512-ihiCP7PJmjoGNuLpl7TjNA8pCQWu09vGyjlPYw1Rqww4gvNuCcmvl+44G+2QyJ6S2K4o+wbTS++Xz0YN8Q9ERw== 1317 | 1318 | entities@^4.4.0: 1319 | version "4.5.0" 1320 | resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" 1321 | integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== 1322 | 1323 | escalade@^3.1.1: 1324 | version "3.1.1" 1325 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1326 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1327 | 1328 | escape-string-regexp@^1.0.5: 1329 | version "1.0.5" 1330 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1331 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1332 | 1333 | escape-string-regexp@^4.0.0: 1334 | version "4.0.0" 1335 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 1336 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1337 | 1338 | estree-walker@^2.0.2: 1339 | version "2.0.2" 1340 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 1341 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 1342 | 1343 | esutils@^2.0.2: 1344 | version "2.0.3" 1345 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1346 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1347 | 1348 | fast-deep-equal@^3.1.3: 1349 | version "3.1.3" 1350 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1351 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1352 | 1353 | fsevents@~2.3.2: 1354 | version "2.3.3" 1355 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 1356 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 1357 | 1358 | function-bind@^1.1.2: 1359 | version "1.1.2" 1360 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" 1361 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 1362 | 1363 | gensync@^1.0.0-beta.2: 1364 | version "1.0.0-beta.2" 1365 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1366 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1367 | 1368 | globals@^11.1.0: 1369 | version "11.12.0" 1370 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1371 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1372 | 1373 | has-flag@^3.0.0: 1374 | version "3.0.0" 1375 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1376 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1377 | 1378 | hasown@^2.0.0: 1379 | version "2.0.0" 1380 | resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" 1381 | integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== 1382 | dependencies: 1383 | function-bind "^1.1.2" 1384 | 1385 | is-core-module@^2.13.0: 1386 | version "2.13.1" 1387 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" 1388 | integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== 1389 | dependencies: 1390 | hasown "^2.0.0" 1391 | 1392 | is-extendable@^1.0.0: 1393 | version "1.0.1" 1394 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1395 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 1396 | dependencies: 1397 | is-plain-object "^2.0.4" 1398 | 1399 | is-plain-object@^2.0.4: 1400 | version "2.0.4" 1401 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1402 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1403 | dependencies: 1404 | isobject "^3.0.1" 1405 | 1406 | isobject@^3.0.1: 1407 | version "3.0.1" 1408 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1409 | integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== 1410 | 1411 | js-tokens@^4.0.0: 1412 | version "4.0.0" 1413 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1414 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1415 | 1416 | jsesc@^2.5.1: 1417 | version "2.5.2" 1418 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1419 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1420 | 1421 | jsesc@~0.5.0: 1422 | version "0.5.0" 1423 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1424 | integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== 1425 | 1426 | json5@^2.2.3: 1427 | version "2.2.3" 1428 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 1429 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1430 | 1431 | linkify-it@^5.0.0: 1432 | version "5.0.0" 1433 | resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-5.0.0.tgz#9ef238bfa6dc70bd8e7f9572b52d369af569b421" 1434 | integrity sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ== 1435 | dependencies: 1436 | uc.micro "^2.0.0" 1437 | 1438 | lodash.debounce@^4.0.8: 1439 | version "4.0.8" 1440 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1441 | integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== 1442 | 1443 | lru-cache@^5.1.1: 1444 | version "5.1.1" 1445 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1446 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1447 | dependencies: 1448 | yallist "^3.0.2" 1449 | 1450 | make-error@^1.3.6: 1451 | version "1.3.6" 1452 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 1453 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 1454 | 1455 | markdown-it@^14.0.0: 1456 | version "14.0.0" 1457 | resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.0.0.tgz#b4b2ddeb0f925e88d981f84c183b59bac9e3741b" 1458 | integrity sha512-seFjF0FIcPt4P9U39Bq1JYblX0KZCjDLFFQPHpL5AzHpqPEKtosxmdq/LTVZnjfH7tjt9BxStm+wXcDBNuYmzw== 1459 | dependencies: 1460 | argparse "^2.0.1" 1461 | entities "^4.4.0" 1462 | linkify-it "^5.0.0" 1463 | mdurl "^2.0.0" 1464 | punycode.js "^2.3.1" 1465 | uc.micro "^2.0.0" 1466 | 1467 | mdurl@^2.0.0: 1468 | version "2.0.0" 1469 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-2.0.0.tgz#80676ec0433025dd3e17ee983d0fe8de5a2237e0" 1470 | integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w== 1471 | 1472 | ms@2.1.2: 1473 | version "2.1.2" 1474 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1475 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1476 | 1477 | node-releases@^2.0.14: 1478 | version "2.0.14" 1479 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" 1480 | integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== 1481 | 1482 | object.omit@^3.0.0: 1483 | version "3.0.0" 1484 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-3.0.0.tgz#0e3edc2fce2ba54df5577ff529f6d97bd8a522af" 1485 | integrity sha512-EO+BCv6LJfu+gBIF3ggLicFebFLN5zqzz/WWJlMFfkMyGth+oBkhxzDl0wx2W4GkLzuQs/FsSkXZb2IMWQqmBQ== 1486 | dependencies: 1487 | is-extendable "^1.0.0" 1488 | 1489 | object.pick@^1.3.0: 1490 | version "1.3.0" 1491 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1492 | integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== 1493 | dependencies: 1494 | isobject "^3.0.1" 1495 | 1496 | orderedmap@^2.0.0: 1497 | version "2.1.1" 1498 | resolved "https://registry.yarnpkg.com/orderedmap/-/orderedmap-2.1.1.tgz#61481269c44031c449915497bf5a4ad273c512d2" 1499 | integrity sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g== 1500 | 1501 | path-parse@^1.0.7: 1502 | version "1.0.7" 1503 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1504 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1505 | 1506 | picocolors@^1.0.0: 1507 | version "1.0.0" 1508 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1509 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1510 | 1511 | picomatch@^2.3.1: 1512 | version "2.3.1" 1513 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1514 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1515 | 1516 | prettier@^3.3.3: 1517 | version "3.3.3" 1518 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" 1519 | integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== 1520 | 1521 | prosemirror-changeset@^2.2.0: 1522 | version "2.2.1" 1523 | resolved "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.2.1.tgz#dae94b63aec618fac7bb9061648e6e2a79988383" 1524 | integrity sha512-J7msc6wbxB4ekDFj+n9gTW/jav/p53kdlivvuppHsrZXCaQdVgRghoZbSS3kwrRyAstRVQ4/+u5k7YfLgkkQvQ== 1525 | dependencies: 1526 | prosemirror-transform "^1.0.0" 1527 | 1528 | prosemirror-collab@^1.3.0: 1529 | version "1.3.1" 1530 | resolved "https://registry.yarnpkg.com/prosemirror-collab/-/prosemirror-collab-1.3.1.tgz#0e8c91e76e009b53457eb3b3051fb68dad029a33" 1531 | integrity sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ== 1532 | dependencies: 1533 | prosemirror-state "^1.0.0" 1534 | 1535 | prosemirror-commands@^1.0.0, prosemirror-commands@^1.3.1: 1536 | version "1.5.2" 1537 | resolved "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.5.2.tgz#e94aeea52286f658cd984270de9b4c3fff580852" 1538 | integrity sha512-hgLcPaakxH8tu6YvVAaILV2tXYsW3rAdDR8WNkeKGcgeMVQg3/TMhPdVoh7iAmfgVjZGtcOSjKiQaoeKjzd2mQ== 1539 | dependencies: 1540 | prosemirror-model "^1.0.0" 1541 | prosemirror-state "^1.0.0" 1542 | prosemirror-transform "^1.0.0" 1543 | 1544 | prosemirror-dropcursor@^1.5.0: 1545 | version "1.8.1" 1546 | resolved "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.8.1.tgz#49b9fb2f583e0d0f4021ff87db825faa2be2832d" 1547 | integrity sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw== 1548 | dependencies: 1549 | prosemirror-state "^1.0.0" 1550 | prosemirror-transform "^1.1.0" 1551 | prosemirror-view "^1.1.0" 1552 | 1553 | prosemirror-gapcursor@^1.3.1: 1554 | version "1.3.2" 1555 | resolved "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.3.2.tgz#5fa336b83789c6199a7341c9493587e249215cb4" 1556 | integrity sha512-wtjswVBd2vaQRrnYZaBCbyDqr232Ed4p2QPtRIUK5FuqHYKGWkEwl08oQM4Tw7DOR0FsasARV5uJFvMZWxdNxQ== 1557 | dependencies: 1558 | prosemirror-keymap "^1.0.0" 1559 | prosemirror-model "^1.0.0" 1560 | prosemirror-state "^1.0.0" 1561 | prosemirror-view "^1.0.0" 1562 | 1563 | prosemirror-history@^1.0.0, prosemirror-history@^1.3.0: 1564 | version "1.3.2" 1565 | resolved "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.3.2.tgz#ce6ad7ab9db83e761aee716f3040d74738311b15" 1566 | integrity sha512-/zm0XoU/N/+u7i5zepjmZAEnpvjDtzoPWW6VmKptcAnPadN/SStsBjMImdCEbb3seiNTpveziPTIrXQbHLtU1g== 1567 | dependencies: 1568 | prosemirror-state "^1.2.2" 1569 | prosemirror-transform "^1.0.0" 1570 | prosemirror-view "^1.31.0" 1571 | rope-sequence "^1.3.0" 1572 | 1573 | prosemirror-inputrules@^1.2.0: 1574 | version "1.3.0" 1575 | resolved "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.3.0.tgz#d43ce469ffe09a1b4cbac3f0ad367b0e4b504875" 1576 | integrity sha512-z1GRP2vhh5CihYMQYsJSa1cOwXb3SYxALXOIfAkX8nZserARtl9LiL+CEl+T+OFIsXc3mJIHKhbsmRzC0HDAXA== 1577 | dependencies: 1578 | prosemirror-state "^1.0.0" 1579 | prosemirror-transform "^1.0.0" 1580 | 1581 | prosemirror-keymap@^1.0.0, prosemirror-keymap@^1.1.2, prosemirror-keymap@^1.2.0: 1582 | version "1.2.2" 1583 | resolved "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.2.2.tgz#14a54763a29c7b2704f561088ccf3384d14eb77e" 1584 | integrity sha512-EAlXoksqC6Vbocqc0GtzCruZEzYgrn+iiGnNjsJsH4mrnIGex4qbLdWWNza3AW5W36ZRrlBID0eM6bdKH4OStQ== 1585 | dependencies: 1586 | prosemirror-state "^1.0.0" 1587 | w3c-keyname "^2.2.0" 1588 | 1589 | prosemirror-markdown@^1.10.1: 1590 | version "1.12.0" 1591 | resolved "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.12.0.tgz#d2de09d37897abf7adb6293d925ff132dac5b0a6" 1592 | integrity sha512-6F5HS8Z0HDYiS2VQDZzfZP6A0s/I0gbkJy8NCzzDMtcsz3qrfqyroMMeoSjAmOhDITyon11NbXSzztfKi+frSQ== 1593 | dependencies: 1594 | markdown-it "^14.0.0" 1595 | prosemirror-model "^1.0.0" 1596 | 1597 | prosemirror-menu@^1.2.1: 1598 | version "1.2.4" 1599 | resolved "https://registry.yarnpkg.com/prosemirror-menu/-/prosemirror-menu-1.2.4.tgz#3cfdc7c06d10f9fbd1bce29082c498bd11a0a79a" 1600 | integrity sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA== 1601 | dependencies: 1602 | crelt "^1.0.0" 1603 | prosemirror-commands "^1.0.0" 1604 | prosemirror-history "^1.0.0" 1605 | prosemirror-state "^1.0.0" 1606 | 1607 | prosemirror-model@^1.0.0, prosemirror-model@^1.16.0, prosemirror-model@^1.18.1, prosemirror-model@^1.19.0, prosemirror-model@^1.8.1: 1608 | version "1.19.4" 1609 | resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.19.4.tgz#e45e84480c97dd3922095dbe579e1c98c86c0704" 1610 | integrity sha512-RPmVXxUfOhyFdayHawjuZCxiROsm9L4FCUA6pWI+l7n2yCBsWy9VpdE1hpDHUS8Vad661YLY9AzqfjLhAKQ4iQ== 1611 | dependencies: 1612 | orderedmap "^2.0.0" 1613 | 1614 | prosemirror-schema-basic@^1.2.0: 1615 | version "1.2.2" 1616 | resolved "https://registry.yarnpkg.com/prosemirror-schema-basic/-/prosemirror-schema-basic-1.2.2.tgz#6695f5175e4628aab179bf62e5568628b9cfe6c7" 1617 | integrity sha512-/dT4JFEGyO7QnNTe9UaKUhjDXbTNkiWTq/N4VpKaF79bBjSExVV2NXmJpcM7z/gD7mbqNjxbmWW5nf1iNSSGnw== 1618 | dependencies: 1619 | prosemirror-model "^1.19.0" 1620 | 1621 | prosemirror-schema-list@^1.2.2: 1622 | version "1.3.0" 1623 | resolved "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.3.0.tgz#05374702cf35a3ba5e7ec31079e355a488d52519" 1624 | integrity sha512-Hz/7gM4skaaYfRPNgr421CU4GSwotmEwBVvJh5ltGiffUJwm7C8GfN/Bc6DR1EKEp5pDKhODmdXXyi9uIsZl5A== 1625 | dependencies: 1626 | prosemirror-model "^1.0.0" 1627 | prosemirror-state "^1.0.0" 1628 | prosemirror-transform "^1.7.3" 1629 | 1630 | prosemirror-state@^1.0.0, prosemirror-state@^1.2.2, prosemirror-state@^1.3.1, prosemirror-state@^1.4.1: 1631 | version "1.4.3" 1632 | resolved "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.4.3.tgz#94aecf3ffd54ec37e87aa7179d13508da181a080" 1633 | integrity sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q== 1634 | dependencies: 1635 | prosemirror-model "^1.0.0" 1636 | prosemirror-transform "^1.0.0" 1637 | prosemirror-view "^1.27.0" 1638 | 1639 | prosemirror-tables@^1.3.0: 1640 | version "1.3.5" 1641 | resolved "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.3.5.tgz#80f03394f5b9991f9693bcb3a90b6dba6b16254d" 1642 | integrity sha512-JSZ2cCNlApu/ObAhdPyotrjBe2cimniniTpz60YXzbL0kZ+47nEYk2LWbfKU2lKpBkUNquta2PjteoNi4YCluQ== 1643 | dependencies: 1644 | prosemirror-keymap "^1.1.2" 1645 | prosemirror-model "^1.8.1" 1646 | prosemirror-state "^1.3.1" 1647 | prosemirror-transform "^1.2.1" 1648 | prosemirror-view "^1.13.3" 1649 | 1650 | prosemirror-trailing-node@^2.0.2: 1651 | version "2.0.7" 1652 | resolved "https://registry.yarnpkg.com/prosemirror-trailing-node/-/prosemirror-trailing-node-2.0.7.tgz#ba782a7929f18bcae650b1c7082a2d10443eab19" 1653 | integrity sha512-8zcZORYj/8WEwsGo6yVCRXFMOfBo0Ub3hCUvmoWIZYfMP26WqENU0mpEP27w7mt8buZWuGrydBewr0tOArPb1Q== 1654 | dependencies: 1655 | "@remirror/core-constants" "^2.0.2" 1656 | "@remirror/core-helpers" "^3.0.0" 1657 | escape-string-regexp "^4.0.0" 1658 | 1659 | prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0, prosemirror-transform@^1.2.1, prosemirror-transform@^1.7.0, prosemirror-transform@^1.7.3: 1660 | version "1.8.0" 1661 | resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.8.0.tgz#a47c64a3c373c1bd0ff46e95be3210c8dda0cd11" 1662 | integrity sha512-BaSBsIMv52F1BVVMvOmp1yzD3u65uC3HTzCBQV1WDPqJRQ2LuHKcyfn0jwqodo8sR9vVzMzZyI+Dal5W9E6a9A== 1663 | dependencies: 1664 | prosemirror-model "^1.0.0" 1665 | 1666 | prosemirror-view@^1.0.0, prosemirror-view@^1.1.0, prosemirror-view@^1.13.3, prosemirror-view@^1.27.0, prosemirror-view@^1.28.2, prosemirror-view@^1.31.0: 1667 | version "1.32.6" 1668 | resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.32.6.tgz#8e8a366ea1ce9b59dbb7f4c6fa7aacf4af2532d7" 1669 | integrity sha512-26r5LvyDlPgUNVf7ZdNdGrMJnylwjJtUJTfDuYOANIVx9lqWD1WCBlGg283weYQGKUC64DXR25LeAmliB9CrFQ== 1670 | dependencies: 1671 | prosemirror-model "^1.16.0" 1672 | prosemirror-state "^1.0.0" 1673 | prosemirror-transform "^1.1.0" 1674 | 1675 | punycode.js@^2.3.1: 1676 | version "2.3.1" 1677 | resolved "https://registry.yarnpkg.com/punycode.js/-/punycode.js-2.3.1.tgz#6b53e56ad75588234e79f4affa90972c7dd8cdb7" 1678 | integrity sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA== 1679 | 1680 | regenerate-unicode-properties@^10.1.0: 1681 | version "10.1.1" 1682 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" 1683 | integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== 1684 | dependencies: 1685 | regenerate "^1.4.2" 1686 | 1687 | regenerate@^1.4.2: 1688 | version "1.4.2" 1689 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" 1690 | integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== 1691 | 1692 | regenerator-runtime@^0.14.0: 1693 | version "0.14.0" 1694 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" 1695 | integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== 1696 | 1697 | regenerator-transform@^0.15.2: 1698 | version "0.15.2" 1699 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" 1700 | integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== 1701 | dependencies: 1702 | "@babel/runtime" "^7.8.4" 1703 | 1704 | regexpu-core@^5.3.1: 1705 | version "5.3.2" 1706 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" 1707 | integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== 1708 | dependencies: 1709 | "@babel/regjsgen" "^0.8.0" 1710 | regenerate "^1.4.2" 1711 | regenerate-unicode-properties "^10.1.0" 1712 | regjsparser "^0.9.1" 1713 | unicode-match-property-ecmascript "^2.0.0" 1714 | unicode-match-property-value-ecmascript "^2.1.0" 1715 | 1716 | regjsparser@^0.9.1: 1717 | version "0.9.1" 1718 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" 1719 | integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== 1720 | dependencies: 1721 | jsesc "~0.5.0" 1722 | 1723 | resolve@^1.14.2, resolve@^1.22.1: 1724 | version "1.22.8" 1725 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" 1726 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== 1727 | dependencies: 1728 | is-core-module "^2.13.0" 1729 | path-parse "^1.0.7" 1730 | supports-preserve-symlinks-flag "^1.0.0" 1731 | 1732 | rollup@^4.8.0: 1733 | version "4.22.4" 1734 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.22.4.tgz#4135a6446671cd2a2453e1ad42a45d5973ec3a0f" 1735 | integrity sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A== 1736 | dependencies: 1737 | "@types/estree" "1.0.5" 1738 | optionalDependencies: 1739 | "@rollup/rollup-android-arm-eabi" "4.22.4" 1740 | "@rollup/rollup-android-arm64" "4.22.4" 1741 | "@rollup/rollup-darwin-arm64" "4.22.4" 1742 | "@rollup/rollup-darwin-x64" "4.22.4" 1743 | "@rollup/rollup-linux-arm-gnueabihf" "4.22.4" 1744 | "@rollup/rollup-linux-arm-musleabihf" "4.22.4" 1745 | "@rollup/rollup-linux-arm64-gnu" "4.22.4" 1746 | "@rollup/rollup-linux-arm64-musl" "4.22.4" 1747 | "@rollup/rollup-linux-powerpc64le-gnu" "4.22.4" 1748 | "@rollup/rollup-linux-riscv64-gnu" "4.22.4" 1749 | "@rollup/rollup-linux-s390x-gnu" "4.22.4" 1750 | "@rollup/rollup-linux-x64-gnu" "4.22.4" 1751 | "@rollup/rollup-linux-x64-musl" "4.22.4" 1752 | "@rollup/rollup-win32-arm64-msvc" "4.22.4" 1753 | "@rollup/rollup-win32-ia32-msvc" "4.22.4" 1754 | "@rollup/rollup-win32-x64-msvc" "4.22.4" 1755 | fsevents "~2.3.2" 1756 | 1757 | rope-sequence@^1.3.0: 1758 | version "1.3.4" 1759 | resolved "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.4.tgz#df85711aaecd32f1e756f76e43a415171235d425" 1760 | integrity sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ== 1761 | 1762 | semver@^6.3.1: 1763 | version "6.3.1" 1764 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 1765 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 1766 | 1767 | supports-color@^5.3.0: 1768 | version "5.5.0" 1769 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1770 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1771 | dependencies: 1772 | has-flag "^3.0.0" 1773 | 1774 | supports-preserve-symlinks-flag@^1.0.0: 1775 | version "1.0.0" 1776 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1777 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1778 | 1779 | throttle-debounce@^3.0.1: 1780 | version "3.0.1" 1781 | resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-3.0.1.tgz#32f94d84dfa894f786c9a1f290e7a645b6a19abb" 1782 | integrity sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg== 1783 | 1784 | to-fast-properties@^2.0.0: 1785 | version "2.0.0" 1786 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1787 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 1788 | 1789 | tslib@^2.6.2: 1790 | version "2.6.2" 1791 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" 1792 | integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== 1793 | 1794 | type-fest@^2.19.0: 1795 | version "2.19.0" 1796 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" 1797 | integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== 1798 | 1799 | typescript@^4.9.5: 1800 | version "4.9.5" 1801 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" 1802 | integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== 1803 | 1804 | uc.micro@^2.0.0: 1805 | version "2.0.0" 1806 | resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-2.0.0.tgz#84b3c335c12b1497fd9e80fcd3bfa7634c363ff1" 1807 | integrity sha512-DffL94LsNOccVn4hyfRe5rdKa273swqeA5DJpMOeFmEn1wCDc7nAbbB0gXlgBCL7TNzeTv6G7XVWzan7iJtfig== 1808 | 1809 | undici-types@~5.26.4: 1810 | version "5.26.5" 1811 | resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" 1812 | integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== 1813 | 1814 | unicode-canonical-property-names-ecmascript@^2.0.0: 1815 | version "2.0.0" 1816 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" 1817 | integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== 1818 | 1819 | unicode-match-property-ecmascript@^2.0.0: 1820 | version "2.0.0" 1821 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" 1822 | integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== 1823 | dependencies: 1824 | unicode-canonical-property-names-ecmascript "^2.0.0" 1825 | unicode-property-aliases-ecmascript "^2.0.0" 1826 | 1827 | unicode-match-property-value-ecmascript@^2.1.0: 1828 | version "2.1.0" 1829 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" 1830 | integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== 1831 | 1832 | unicode-property-aliases-ecmascript@^2.0.0: 1833 | version "2.1.0" 1834 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" 1835 | integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== 1836 | 1837 | update-browserslist-db@^1.0.13: 1838 | version "1.0.13" 1839 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" 1840 | integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== 1841 | dependencies: 1842 | escalade "^3.1.1" 1843 | picocolors "^1.0.0" 1844 | 1845 | w3c-keyname@^2.2.0: 1846 | version "2.2.8" 1847 | resolved "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.8.tgz#7b17c8c6883d4e8b86ac8aba79d39e880f8869c5" 1848 | integrity sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ== 1849 | 1850 | yallist@^3.0.2: 1851 | version "3.1.1" 1852 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 1853 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 1854 | --------------------------------------------------------------------------------