├── logo.png ├── .gitignore ├── vite.config.ts ├── index.html ├── .github ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ └── release.yml ├── .eslintrc.json ├── tsconfig.json ├── release.config.js ├── LICENSE ├── package.json ├── CHANGELOG.md ├── README.md ├── src └── main.ts └── pnpm-lock.yaml /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peanball/logseq-dynamic-lookup/HEAD/logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | dist-ssr 5 | *.local 6 | .idea 7 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vite"; 2 | import logseqDevPlugin from "vite-plugin-logseq"; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [logseqDevPlugin()], 7 | // Makes HMR available for development 8 | build: { 9 | target: "esnext", 10 | minify: "esbuild", 11 | sourcemap: true 12 | }, 13 | }); 14 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Logseq Plugin 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "npm" # See documentation for possible values 4 | directory: "/" # Location of package manifests 5 | schedule: 6 | interval: "weekly" 7 | versioning-strategy: increase-if-necessary 8 | commit-message: 9 | include: scope 10 | prefix: fix 11 | prefix-development: chore 12 | labels: 13 | - "dependabot" 14 | reviewers: 15 | - "peanball" 16 | open-pull-requests-limit: 25 17 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "eslint:recommended", 4 | "plugin:@typescript-eslint/eslint-recommended", 5 | "plugin:@typescript-eslint/recommended" 6 | ], 7 | "plugins": ["@typescript-eslint"], 8 | "parser": "@typescript-eslint/parser", 9 | "rules": { 10 | "import/prefer-default-export": "off", 11 | "@typescript-eslint/ban-ts-comment": "off", 12 | "@typescript-eslint/no-non-null-assertion": "off", 13 | "@typescript-eslint/explicit-module-boundary-types": "off" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "lib": ["DOM", "DOM.Iterable", "ESNext"], 5 | "types": ["vite/client"], 6 | "allowJs": false, 7 | "skipLibCheck": true, 8 | "esModuleInterop": false, 9 | "allowSyntheticDefaultImports": true, 10 | "strict": true, 11 | "forceConsistentCasingInFileNames": true, 12 | "module": "ESNext", 13 | "moduleResolution": "Node", 14 | "resolveJsonModule": true, 15 | "isolatedModules": true, 16 | "noEmit": true, 17 | "jsx": "react" 18 | }, 19 | "include": ["./src"] 20 | } 21 | -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- 1 | name: Dependabot auto-approve 2 | on: pull_request_target 3 | 4 | permissions: 5 | contents: write 6 | pull-requests: write 7 | 8 | jobs: 9 | dependabot: 10 | runs-on: ubuntu-latest 11 | if: ${{ github.actor == 'dependabot[bot]' }} 12 | steps: 13 | - name: Dependabot metadata 14 | id: metadata 15 | uses: dependabot/fetch-metadata@v1 16 | with: 17 | github-token: "${{ secrets.GITHUB_TOKEN }}" 18 | - name: Enable auto-merge for Dependabot PRs 19 | if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}} 20 | run: gh pr merge --auto --merge "$PR_URL" 21 | env: 22 | PR_URL: ${{github.event.pull_request.html_url}} 23 | GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} 24 | -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | branches: ["main"], 3 | plugins: [ 4 | [ 5 | "@semantic-release/commit-analyzer", 6 | { 7 | preset: "conventionalcommits", 8 | }, 9 | ], 10 | "@semantic-release/release-notes-generator", 11 | "@semantic-release/changelog", 12 | [ 13 | "@semantic-release/npm", 14 | { 15 | npmPublish: false, 16 | }, 17 | ], 18 | "@semantic-release/git", 19 | [ 20 | "@semantic-release/exec", 21 | { 22 | prepareCmd: 23 | "zip -qq -r logseq-dynamic-lookup-${nextRelease.version}.zip dist README.md LICENSE package.json *.png", 24 | }, 25 | ], 26 | [ 27 | "@semantic-release/github", 28 | { 29 | assets: "logseq-dynamic-lookup-*.zip", 30 | }, 31 | ], 32 | ], 33 | }; 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright © 2022 Alexander Lais 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 furnished 10 | 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 IMPLIED, 16 | INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 17 | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | env: 4 | PLUGIN_NAME: logseq-dynamic-lookup 5 | 6 | # Controls when the action will run. 7 | on: 8 | push: 9 | branches: 10 | - "main" 11 | # Allows you to run this workflow manually from the Actions tab 12 | workflow_dispatch: 13 | 14 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 15 | jobs: 16 | release: 17 | # The type of runner that the job will run on 18 | runs-on: ubuntu-latest 19 | 20 | # Steps represent a sequence of tasks that will be executed as part of the job 21 | steps: 22 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 23 | - uses: actions/checkout@v4 24 | - uses: actions/setup-node@v3 25 | with: 26 | node-version: "18" 27 | - uses: pnpm/action-setup@v2 28 | with: 29 | version: 7 30 | - run: pnpm install --no-frozen-lockfile 31 | - run: pnpm build 32 | - name: Install zip 33 | uses: montudor/action-zip@v1 34 | - name: Release 35 | run: npx semantic-release 36 | env: 37 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 38 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "logseq-dynamic-lookup", 3 | "version": "1.4.0", 4 | "description": "A renderer for dynamic lookup of properties for pages", 5 | "main": "dist/index.html", 6 | "author": "peanball", 7 | "license": "MIT", 8 | "scripts": { 9 | "dev": "vite", 10 | "build": "tsc && vite build", 11 | "preinstall": "npx only-allow pnpm" 12 | }, 13 | "dependencies": { 14 | "@logseq/libs": "^0.0.17" 15 | }, 16 | "devDependencies": { 17 | "@semantic-release/changelog": "6.0.3", 18 | "@semantic-release/exec": "6.0.3", 19 | "@semantic-release/git": "10.0.1", 20 | "@semantic-release/npm": "11.0.2", 21 | "@types/node": "20.11.17", 22 | "@typescript-eslint/eslint-plugin": "5.62.0", 23 | "@typescript-eslint/parser": "5.62.0", 24 | "conventional-changelog-conventionalcommits": "^7.0.2", 25 | "eslint": "8.55.0", 26 | "semantic-release": "23.0.2", 27 | "typescript": "5.3.3", 28 | "vite": "5.1.1", 29 | "vite-plugin-logseq": "^1.1.2" 30 | }, 31 | "homepage": "https://github.com/peanball/logdseq-dynamic-lookup#readme", 32 | "bugs": { 33 | "url": "https://github.com/peanball/logdseq-dynamic-lookup/issues" 34 | }, 35 | "logseq": { 36 | "id": "logseq-dynamic-lookup", 37 | "title": "Dynamic Property Lookup", 38 | "icon": "./logo.png" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # [1.4.0](https://github.com/peanball/logseq-dynamic-lookup/compare/v1.3.0...v1.4.0) (2023-06-30) 2 | 3 | 4 | ### Features 5 | 6 | * Add a default style for built-in property "tags". ([ce07403](https://github.com/peanball/logseq-dynamic-lookup/commit/ce07403ebf2fa3757f06fc4e989ef45e84c1eae1)) 7 | * Support opening the page on rendered tag. ([791f361](https://github.com/peanball/logseq-dynamic-lookup/commit/791f3615ba2a77b52ccfc95b220437c89c5667ba)) 8 | 9 | # [1.3.0](https://github.com/peanball/logseq-dynamic-lookup/compare/v1.2.3...v1.3.0) (2023-06-30) 10 | 11 | 12 | ### Bug Fixes 13 | 14 | * Escape quote marks in the page name. ([ac8ba0a](https://github.com/peanball/logseq-dynamic-lookup/commit/ac8ba0ab6c2ffdb9dac26aa8b640b20affab6bda)) 15 | 16 | 17 | ### Features 18 | 19 | * Support using page reference as target page. ([69e0cba](https://github.com/peanball/logseq-dynamic-lookup/commit/69e0cba72497847c27b6d9901ee6471efc3f4914)) 20 | 21 | ## [1.2.3](https://github.com/peanball/logseq-dynamic-lookup/compare/v1.2.2...v1.2.3) (2023-06-30) 22 | 23 | 24 | ### Bug Fixes 25 | 26 | * **deps:** bump @logseq/libs from 0.0.10 to 0.0.15 ([8caec6b](https://github.com/peanball/logseq-dynamic-lookup/commit/8caec6b23914926b769af1e516e0f9a3b278daf3)) 27 | 28 | ## [1.2.2](https://github.com/peanball/logseq-dynamic-lookup/compare/v1.2.1...v1.2.2) (2023-06-23) 29 | 30 | 31 | ### Bug Fixes 32 | 33 | * **deps:** bump @logseq/libs from 0.0.10 to 0.0.14 ([2498ddf](https://github.com/peanball/logseq-dynamic-lookup/commit/2498ddfe55683e94483e827176902f8e78e160bd)) 34 | 35 | ## [1.2.1](https://github.com/peanball/logseq-dynamic-lookup/compare/v1.2.0...v1.2.1) (2022-11-28) 36 | 37 | 38 | ### Bug Fixes 39 | 40 | * `fallbackTemplate` ignore error in case of property absence ([c0d9238](https://github.com/peanball/logseq-dynamic-lookup/commit/c0d92385c2a38c29589a167bb7d3e959c6aa4461)) 41 | 42 | # [1.2.0](https://github.com/peanball/logseq-dynamic-lookup/compare/v1.1.1...v1.2.0) (2022-11-25) 43 | 44 | 45 | ### Features 46 | 47 | * add lookup of multiple properties at once ([2894b68](https://github.com/peanball/logseq-dynamic-lookup/commit/2894b68aca6498f3eac4672bc15b39ee291e732e)) 48 | 49 | ## [1.1.1](https://github.com/peanball/logseq-dynamic-lookup/compare/v1.1.0...v1.1.1) (2022-11-04) 50 | 51 | 52 | ### Bug Fixes 53 | 54 | * add title to Logseq metadata in the package.json ([581e05a](https://github.com/peanball/logseq-dynamic-lookup/commit/581e05adcf6f8661bad6d9de41ee58fe1859413d)) 55 | 56 | # [1.1.0](https://github.com/peanball/logseq-dynamic-lookup/compare/v1.0.0...v1.1.0) (2022-11-04) 57 | 58 | 59 | ### Features 60 | 61 | * Add support for a fallback template ([204dec7](https://github.com/peanball/logseq-dynamic-lookup/commit/204dec70c9532a9d2d09fe13c57f859e2cb70e4d)) 62 | 63 | # 1.0.0 (2022-11-04) 64 | 65 | 66 | ### Features 67 | 68 | * Add renderer to insert dynamically looked up page properties from arbitrary pages ([535f51c](https://github.com/peanball/logseq-dynamic-lookup/commit/535f51cbb66b776c8116b0fdf8d49a947c241d13)) 69 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NOTE - Abandoned Project 2 | 3 | This project is abandoned and will not receive further development. Please move to one of the forks. 4 | 5 | # Dynamic Lookup Plugin 6 | 7 | This plugin allows you to look up properties on a target page and place their values in your text. 8 | 9 | Great for macros that automatically augment links to specific pages or tags. 10 | 11 | ## Usage 12 | 13 | The plugin is used by adding a `{{renderer}}` macros with target `:lookup`: 14 | 15 | ```clojure 16 | {{renderer :lookup, page, propertyNames, template, [fallbackTemplate]}} 17 | ``` 18 | 19 | - `page` is the name (`:block/original-name`, i.e. the name you see in the UI) of the page 20 | - `propertyNames` is a list of property names, separated by `:`. Empty values will be ignored. You could write `:prop1:prop2` without negative effect. 21 | - `template` is an optional formatter for the value. This can contain HTML to wrap the property value as needed. By default, the property value is added verbatim in a ``. 22 | - `fallbackTemplate` is an optional formatter for the value. This can contain test that is printed when the page or property value could not be found. 23 | 24 | When the `page` could not be found, or the `page` does not have any of the properties defined via `propertyNames`, the renderer block uses the `fallbackTemplate`, if one is defined. 25 | If none is defined, the block is replaced with nothing. This makes it safe to use in macros, even if e.g. the target page does not exist (yet). 26 | 27 | When only some properties requested in `propertyNames` are found on the target page, the ones not found are replaced with nothing (empty string). Any placeholders that is not listed in `propertyNames` will not be touched. 28 | 29 | > ⚠️ **Deprecated:** 30 | > 31 | > The placeholder `$value` is replaced by the first property in `propertyNames`. 32 | > This is for backward compatibility with uses of the plugin before 1.2.0. 33 | 34 | ## Use Cases and Examples 35 | 36 | ### Appending a single Property Value to a Tag 37 | 38 | I've defined a macro `jira` in the custom.edn file that links to my notes to specific JIRA tickets where I use the issue ID as tag: 39 | 40 | ```clojure 41 | :macros { 42 | "jira" "#$1 {{renderer :lookup, $1, summary, ($summary)}}" 43 | } 44 | ``` 45 | 46 | The page `PROJ-123` has a property `summary:: This is a summary`. 47 | 48 | The result looks something like this: 49 | 50 | #PROJ-123 (This is a summary) 51 | 52 | You could also use it to link to the actual issue. In a macro `$1`, `$2`, etc. can be used to define the template dynamically if needed. 53 | 54 | ### Linking to a custom URL defined in a Property 55 | 56 | Another macro looks something like this: 57 | 58 | ```clojure 59 | :macros { 60 | "supportcase" "[[$1]] {{renderer :lookup, $1, url:summary, / $summary, 🔍}}" 61 | } 62 | ``` 63 | 64 | This allows me to use: 65 | 66 | ```clojure 67 | {{supportcase 1234}} 68 | ``` 69 | 70 | which shows as: 71 | 72 | ``` 73 | [[1234]] / Case Summary 74 | ``` 75 | 76 | where `Case Summary` links to `:url` of the page `1234`. 77 | 78 | And when there is no page `1234`, it adds a link to search for the term in the target system. 79 | 80 | ``` 81 | [[1234]] 🔍 82 | ``` 83 | 84 | ## Building 85 | 86 | > 🏷 Currently this only builds on Node <= 16. 87 | 88 | - `pnpm install && pnpm build` in terminal to install dependencies. 89 | - `Load unpacked plugin` in Logseq Desktop client. 90 | 91 | ### License 92 | 93 | MIT 94 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright © 2022 Alexander Lais 3 | * 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy 5 | * of this software and associated documentation files (the “Software”), to deal 6 | * in the Software without restriction, including without limitation the rights 7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | * copies of the Software, and to permit persons to whom the Software is furnished 9 | * to do so, subject to the following conditions: 10 | * 11 | * The above copyright notice and this permission notice shall be included in all 12 | * copies or substantial portions of the Software. 13 | * 14 | * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 15 | * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 16 | * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 17 | * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 18 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 19 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 | */ 21 | import '@logseq/libs' 22 | 23 | /** 24 | * Set up plugin 25 | */ 26 | async function main() { 27 | 28 | // define CSS styles used 29 | logseq.provideStyle(` 30 | .dynamic-lookup { 31 | white-space: initial; 32 | cursor: default; 33 | display: flex; 34 | }`) 35 | 36 | /** Renderer for the template `:lookup` 37 | * @param slot Slot defines the UI element where the contributed UI is placed 38 | * @param payload string[] defines 4 parameters in total: 39 | * - `type`, must be ':lookup' 40 | * - `target`, the name of a page on which to look up page properties 41 | * - `propertyNames`, the names of the page properties, whose values to retrieve 42 | * - (`template`), optional template used to format the value. 43 | * The literal property values prefixed with `$` are replaced by the respective property value. 44 | * As fallback, `$value` is replaced with the value of the first property. 45 | * 46 | * No UI element is inserted / returned, when `property` is not defined on `page`, 47 | * or `page` does not even exist. 48 | */ 49 | logseq.App.onMacroRendererSlotted(({slot, payload}) => { 50 | // console.debug(`rendering slot ${slot} with payload:`, payload) 51 | const [type, target, propertyNameList, formatTemplate, fallbackTemplate] = payload.arguments 52 | if (!type || type != ':lookup') { 53 | return 54 | } 55 | 56 | // trim surrounding [[]] from target in case it is a page reference 57 | // and escape " 58 | const targetPage = target 59 | .replace(/^(\[\[)(.*)(\]\])$/, "$2") 60 | .replace(/"/g, '\\"') 61 | 62 | // split properties by ":", remove any empty entries. 63 | const propertyNames = propertyNameList.split(":").map((prop) => prop.trim()).filter(prop => prop !== "") 64 | 65 | if (propertyNames.length == 0) { 66 | return 67 | } 68 | 69 | const legacyPropertyName = 'value' 70 | 71 | let format = `$${propertyNames.join(", $")}` 72 | if (payload.arguments.length > 3) { 73 | format = formatTemplate 74 | console.trace("setting template to: ", format) 75 | } 76 | 77 | const query = `[ 78 | :find ?prop 79 | :where 80 | [?p :block/original-name ?on] 81 | [?p :block/properties ?prop] 82 | [(= ?on "${targetPage}")] 83 | ]` 84 | 85 | console.debug(":query", query) 86 | 87 | logseq.DB.datascriptQuery(query).then(result => { 88 | const properties = result[0][0] 89 | 90 | // intersection of requested and available properties 91 | const foundProperties = Object.keys(properties).filter(value => propertyNames.includes(value)) 92 | if (foundProperties.length == 0) { 93 | throw RangeError("no properties found, use fallback template") 94 | } 95 | 96 | // backward compatibility for placeholder $value, but avoid masking a property named 'value'. 97 | // @deprecated 98 | if (format.indexOf(`$${legacyPropertyName}`) > -1 && !(legacyPropertyName in properties)) { 99 | properties[legacyPropertyName] = properties[propertyNames[0]] 100 | foundProperties.push(legacyPropertyName) 101 | console.warn(`Deprecated: Setting legacy placeholder value for template: ${legacyPropertyName}=${properties[legacyPropertyName]}`) 102 | } 103 | 104 | // fill in the template with retrieved property values 105 | let template = format 106 | for (const propertyName of foundProperties) { 107 | let value = ""; 108 | if (propertyName in properties) { 109 | value = properties[propertyName] 110 | if (propertyName === "tags" && formatTemplate === undefined) { 111 | const htmlTemplate = '#${pageName}' 112 | const separatorSpanTemplate = ' ' 113 | if (Array.isArray(value)) { 114 | value = `
${value.map((tag) => { 115 | return htmlTemplate.replaceAll("${pageName}", tag) 116 | }).join(separatorSpanTemplate)}
` 117 | } else { 118 | value = htmlTemplate.replaceAll("${pageName}", value) 119 | } 120 | } 121 | template = template.replace(`$${propertyName}`, value) 122 | } 123 | console.info(propertyName, template) 124 | } 125 | 126 | logseq.provideUI({ 127 | key: slot, 128 | slot, 129 | reset: true, 130 | template 131 | }) 132 | }).catch(_ => { 133 | if (fallbackTemplate) { 134 | logseq.provideUI({ 135 | key: slot, 136 | slot, reset: true, 137 | template: fallbackTemplate 138 | }) 139 | } 140 | }) 141 | }) 142 | } 143 | 144 | const model = { 145 | openPage: async (e: any) => { 146 | const pageName = e.dataset.ref 147 | if (pageName) { 148 | const pageEntity = await logseq.Editor.getPage(pageName) 149 | if (pageEntity) { 150 | await logseq.Editor.scrollToBlockInPage(pageName, pageEntity.uuid) 151 | } 152 | } 153 | } 154 | } 155 | 156 | // bootstrap the plugin 157 | logseq.ready(model, main).catch(console.error) 158 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | dependencies: 8 | '@logseq/libs': 9 | specifier: ^0.0.17 10 | version: 0.0.17 11 | 12 | devDependencies: 13 | '@semantic-release/changelog': 14 | specifier: 6.0.3 15 | version: 6.0.3(semantic-release@23.0.2) 16 | '@semantic-release/exec': 17 | specifier: 6.0.3 18 | version: 6.0.3(semantic-release@23.0.2) 19 | '@semantic-release/git': 20 | specifier: 10.0.1 21 | version: 10.0.1(semantic-release@23.0.2) 22 | '@semantic-release/npm': 23 | specifier: 11.0.2 24 | version: 11.0.2(semantic-release@23.0.2) 25 | '@types/node': 26 | specifier: 20.11.17 27 | version: 20.11.17 28 | '@typescript-eslint/eslint-plugin': 29 | specifier: 5.62.0 30 | version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.3.3) 31 | '@typescript-eslint/parser': 32 | specifier: 5.62.0 33 | version: 5.62.0(eslint@8.55.0)(typescript@5.3.3) 34 | conventional-changelog-conventionalcommits: 35 | specifier: ^7.0.2 36 | version: 7.0.2 37 | eslint: 38 | specifier: 8.55.0 39 | version: 8.55.0 40 | semantic-release: 41 | specifier: 23.0.2 42 | version: 23.0.2(typescript@5.3.3) 43 | typescript: 44 | specifier: 5.3.3 45 | version: 5.3.3 46 | vite: 47 | specifier: 5.1.1 48 | version: 5.1.1(@types/node@20.11.17) 49 | vite-plugin-logseq: 50 | specifier: ^1.1.2 51 | version: 1.1.2 52 | 53 | packages: 54 | 55 | /@aashutoshrathi/word-wrap@1.2.6: 56 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 57 | engines: {node: '>=0.10.0'} 58 | dev: true 59 | 60 | /@babel/code-frame@7.22.13: 61 | resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} 62 | engines: {node: '>=6.9.0'} 63 | dependencies: 64 | '@babel/highlight': 7.22.20 65 | chalk: 2.4.2 66 | dev: true 67 | 68 | /@babel/code-frame@7.22.5: 69 | resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} 70 | engines: {node: '>=6.9.0'} 71 | dependencies: 72 | '@babel/highlight': 7.22.20 73 | dev: true 74 | 75 | /@babel/helper-validator-identifier@7.22.20: 76 | resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} 77 | engines: {node: '>=6.9.0'} 78 | dev: true 79 | 80 | /@babel/highlight@7.22.20: 81 | resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} 82 | engines: {node: '>=6.9.0'} 83 | dependencies: 84 | '@babel/helper-validator-identifier': 7.22.20 85 | chalk: 2.4.2 86 | js-tokens: 4.0.0 87 | dev: true 88 | 89 | /@colors/colors@1.5.0: 90 | resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} 91 | engines: {node: '>=0.1.90'} 92 | requiresBuild: true 93 | dev: true 94 | optional: true 95 | 96 | /@esbuild/android-arm64@0.19.9: 97 | resolution: {integrity: sha512-q4cR+6ZD0938R19MyEW3jEsMzbb/1rulLXiNAJQADD/XYp7pT+rOS5JGxvpRW8dFDEfjW4wLgC/3FXIw4zYglQ==} 98 | engines: {node: '>=12'} 99 | cpu: [arm64] 100 | os: [android] 101 | requiresBuild: true 102 | dev: true 103 | optional: true 104 | 105 | /@esbuild/android-arm@0.19.9: 106 | resolution: {integrity: sha512-jkYjjq7SdsWuNI6b5quymW0oC83NN5FdRPuCbs9HZ02mfVdAP8B8eeqLSYU3gb6OJEaY5CQabtTFbqBf26H3GA==} 107 | engines: {node: '>=12'} 108 | cpu: [arm] 109 | os: [android] 110 | requiresBuild: true 111 | dev: true 112 | optional: true 113 | 114 | /@esbuild/android-x64@0.19.9: 115 | resolution: {integrity: sha512-KOqoPntWAH6ZxDwx1D6mRntIgZh9KodzgNOy5Ebt9ghzffOk9X2c1sPwtM9P+0eXbefnDhqYfkh5PLP5ULtWFA==} 116 | engines: {node: '>=12'} 117 | cpu: [x64] 118 | os: [android] 119 | requiresBuild: true 120 | dev: true 121 | optional: true 122 | 123 | /@esbuild/darwin-arm64@0.19.9: 124 | resolution: {integrity: sha512-KBJ9S0AFyLVx2E5D8W0vExqRW01WqRtczUZ8NRu+Pi+87opZn5tL4Y0xT0mA4FtHctd0ZgwNoN639fUUGlNIWw==} 125 | engines: {node: '>=12'} 126 | cpu: [arm64] 127 | os: [darwin] 128 | requiresBuild: true 129 | dev: true 130 | optional: true 131 | 132 | /@esbuild/darwin-x64@0.19.9: 133 | resolution: {integrity: sha512-vE0VotmNTQaTdX0Q9dOHmMTao6ObjyPm58CHZr1UK7qpNleQyxlFlNCaHsHx6Uqv86VgPmR4o2wdNq3dP1qyDQ==} 134 | engines: {node: '>=12'} 135 | cpu: [x64] 136 | os: [darwin] 137 | requiresBuild: true 138 | dev: true 139 | optional: true 140 | 141 | /@esbuild/freebsd-arm64@0.19.9: 142 | resolution: {integrity: sha512-uFQyd/o1IjiEk3rUHSwUKkqZwqdvuD8GevWF065eqgYfexcVkxh+IJgwTaGZVu59XczZGcN/YMh9uF1fWD8j1g==} 143 | engines: {node: '>=12'} 144 | cpu: [arm64] 145 | os: [freebsd] 146 | requiresBuild: true 147 | dev: true 148 | optional: true 149 | 150 | /@esbuild/freebsd-x64@0.19.9: 151 | resolution: {integrity: sha512-WMLgWAtkdTbTu1AWacY7uoj/YtHthgqrqhf1OaEWnZb7PQgpt8eaA/F3LkV0E6K/Lc0cUr/uaVP/49iE4M4asA==} 152 | engines: {node: '>=12'} 153 | cpu: [x64] 154 | os: [freebsd] 155 | requiresBuild: true 156 | dev: true 157 | optional: true 158 | 159 | /@esbuild/linux-arm64@0.19.9: 160 | resolution: {integrity: sha512-PiPblfe1BjK7WDAKR1Cr9O7VVPqVNpwFcPWgfn4xu0eMemzRp442hXyzF/fSwgrufI66FpHOEJk0yYdPInsmyQ==} 161 | engines: {node: '>=12'} 162 | cpu: [arm64] 163 | os: [linux] 164 | requiresBuild: true 165 | dev: true 166 | optional: true 167 | 168 | /@esbuild/linux-arm@0.19.9: 169 | resolution: {integrity: sha512-C/ChPohUYoyUaqn1h17m/6yt6OB14hbXvT8EgM1ZWaiiTYz7nWZR0SYmMnB5BzQA4GXl3BgBO1l8MYqL/He3qw==} 170 | engines: {node: '>=12'} 171 | cpu: [arm] 172 | os: [linux] 173 | requiresBuild: true 174 | dev: true 175 | optional: true 176 | 177 | /@esbuild/linux-ia32@0.19.9: 178 | resolution: {integrity: sha512-f37i/0zE0MjDxijkPSQw1CO/7C27Eojqb+r3BbHVxMLkj8GCa78TrBZzvPyA/FNLUMzP3eyHCVkAopkKVja+6Q==} 179 | engines: {node: '>=12'} 180 | cpu: [ia32] 181 | os: [linux] 182 | requiresBuild: true 183 | dev: true 184 | optional: true 185 | 186 | /@esbuild/linux-loong64@0.19.9: 187 | resolution: {integrity: sha512-t6mN147pUIf3t6wUt3FeumoOTPfmv9Cc6DQlsVBpB7eCpLOqQDyWBP1ymXn1lDw4fNUSb/gBcKAmvTP49oIkaA==} 188 | engines: {node: '>=12'} 189 | cpu: [loong64] 190 | os: [linux] 191 | requiresBuild: true 192 | dev: true 193 | optional: true 194 | 195 | /@esbuild/linux-mips64el@0.19.9: 196 | resolution: {integrity: sha512-jg9fujJTNTQBuDXdmAg1eeJUL4Jds7BklOTkkH80ZgQIoCTdQrDaHYgbFZyeTq8zbY+axgptncko3v9p5hLZtw==} 197 | engines: {node: '>=12'} 198 | cpu: [mips64el] 199 | os: [linux] 200 | requiresBuild: true 201 | dev: true 202 | optional: true 203 | 204 | /@esbuild/linux-ppc64@0.19.9: 205 | resolution: {integrity: sha512-tkV0xUX0pUUgY4ha7z5BbDS85uI7ABw3V1d0RNTii7E9lbmV8Z37Pup2tsLV46SQWzjOeyDi1Q7Wx2+QM8WaCQ==} 206 | engines: {node: '>=12'} 207 | cpu: [ppc64] 208 | os: [linux] 209 | requiresBuild: true 210 | dev: true 211 | optional: true 212 | 213 | /@esbuild/linux-riscv64@0.19.9: 214 | resolution: {integrity: sha512-DfLp8dj91cufgPZDXr9p3FoR++m3ZJ6uIXsXrIvJdOjXVREtXuQCjfMfvmc3LScAVmLjcfloyVtpn43D56JFHg==} 215 | engines: {node: '>=12'} 216 | cpu: [riscv64] 217 | os: [linux] 218 | requiresBuild: true 219 | dev: true 220 | optional: true 221 | 222 | /@esbuild/linux-s390x@0.19.9: 223 | resolution: {integrity: sha512-zHbglfEdC88KMgCWpOl/zc6dDYJvWGLiUtmPRsr1OgCViu3z5GncvNVdf+6/56O2Ca8jUU+t1BW261V6kp8qdw==} 224 | engines: {node: '>=12'} 225 | cpu: [s390x] 226 | os: [linux] 227 | requiresBuild: true 228 | dev: true 229 | optional: true 230 | 231 | /@esbuild/linux-x64@0.19.9: 232 | resolution: {integrity: sha512-JUjpystGFFmNrEHQnIVG8hKwvA2DN5o7RqiO1CVX8EN/F/gkCjkUMgVn6hzScpwnJtl2mPR6I9XV1oW8k9O+0A==} 233 | engines: {node: '>=12'} 234 | cpu: [x64] 235 | os: [linux] 236 | requiresBuild: true 237 | dev: true 238 | optional: true 239 | 240 | /@esbuild/netbsd-x64@0.19.9: 241 | resolution: {integrity: sha512-GThgZPAwOBOsheA2RUlW5UeroRfESwMq/guy8uEe3wJlAOjpOXuSevLRd70NZ37ZrpO6RHGHgEHvPg1h3S1Jug==} 242 | engines: {node: '>=12'} 243 | cpu: [x64] 244 | os: [netbsd] 245 | requiresBuild: true 246 | dev: true 247 | optional: true 248 | 249 | /@esbuild/openbsd-x64@0.19.9: 250 | resolution: {integrity: sha512-Ki6PlzppaFVbLnD8PtlVQfsYw4S9n3eQl87cqgeIw+O3sRr9IghpfSKY62mggdt1yCSZ8QWvTZ9jo9fjDSg9uw==} 251 | engines: {node: '>=12'} 252 | cpu: [x64] 253 | os: [openbsd] 254 | requiresBuild: true 255 | dev: true 256 | optional: true 257 | 258 | /@esbuild/sunos-x64@0.19.9: 259 | resolution: {integrity: sha512-MLHj7k9hWh4y1ddkBpvRj2b9NCBhfgBt3VpWbHQnXRedVun/hC7sIyTGDGTfsGuXo4ebik2+3ShjcPbhtFwWDw==} 260 | engines: {node: '>=12'} 261 | cpu: [x64] 262 | os: [sunos] 263 | requiresBuild: true 264 | dev: true 265 | optional: true 266 | 267 | /@esbuild/win32-arm64@0.19.9: 268 | resolution: {integrity: sha512-GQoa6OrQ8G08guMFgeXPH7yE/8Dt0IfOGWJSfSH4uafwdC7rWwrfE6P9N8AtPGIjUzdo2+7bN8Xo3qC578olhg==} 269 | engines: {node: '>=12'} 270 | cpu: [arm64] 271 | os: [win32] 272 | requiresBuild: true 273 | dev: true 274 | optional: true 275 | 276 | /@esbuild/win32-ia32@0.19.9: 277 | resolution: {integrity: sha512-UOozV7Ntykvr5tSOlGCrqU3NBr3d8JqPes0QWN2WOXfvkWVGRajC+Ym0/Wj88fUgecUCLDdJPDF0Nna2UK3Qtg==} 278 | engines: {node: '>=12'} 279 | cpu: [ia32] 280 | os: [win32] 281 | requiresBuild: true 282 | dev: true 283 | optional: true 284 | 285 | /@esbuild/win32-x64@0.19.9: 286 | resolution: {integrity: sha512-oxoQgglOP7RH6iasDrhY+R/3cHrfwIDvRlT4CGChflq6twk8iENeVvMJjmvBb94Ik1Z+93iGO27err7w6l54GQ==} 287 | engines: {node: '>=12'} 288 | cpu: [x64] 289 | os: [win32] 290 | requiresBuild: true 291 | dev: true 292 | optional: true 293 | 294 | /@eslint-community/eslint-utils@4.4.0(eslint@8.55.0): 295 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 296 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 297 | peerDependencies: 298 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 299 | dependencies: 300 | eslint: 8.55.0 301 | eslint-visitor-keys: 3.4.3 302 | dev: true 303 | 304 | /@eslint-community/regexpp@4.5.1: 305 | resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} 306 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 307 | dev: true 308 | 309 | /@eslint-community/regexpp@4.6.2: 310 | resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} 311 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 312 | dev: true 313 | 314 | /@eslint/eslintrc@2.1.4: 315 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 316 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 317 | dependencies: 318 | ajv: 6.12.6 319 | debug: 4.3.4 320 | espree: 9.6.1 321 | globals: 13.20.0 322 | ignore: 5.2.0 323 | import-fresh: 3.3.0 324 | js-yaml: 4.1.0 325 | minimatch: 3.1.2 326 | strip-json-comments: 3.1.1 327 | transitivePeerDependencies: 328 | - supports-color 329 | dev: true 330 | 331 | /@eslint/js@8.55.0: 332 | resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==} 333 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 334 | dev: true 335 | 336 | /@humanwhocodes/config-array@0.11.13: 337 | resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} 338 | engines: {node: '>=10.10.0'} 339 | dependencies: 340 | '@humanwhocodes/object-schema': 2.0.1 341 | debug: 4.3.4 342 | minimatch: 3.1.2 343 | transitivePeerDependencies: 344 | - supports-color 345 | dev: true 346 | 347 | /@humanwhocodes/module-importer@1.0.1: 348 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 349 | engines: {node: '>=12.22'} 350 | dev: true 351 | 352 | /@humanwhocodes/object-schema@2.0.1: 353 | resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} 354 | dev: true 355 | 356 | /@logseq/libs@0.0.17: 357 | resolution: {integrity: sha512-SkzzAaocmrgeHYrCOaRyEqzPOxw3d0qVEZSrt9qVvXE4tuEgbvEHR8tzI1N5RjgAv+PDWuGPiP7/mhcXHpINEw==} 358 | dependencies: 359 | csstype: 3.1.0 360 | debug: 4.3.4 361 | deepmerge: 4.3.1 362 | dompurify: 2.3.8 363 | eventemitter3: 4.0.7 364 | fast-deep-equal: 3.1.3 365 | lodash-es: 4.17.21 366 | path: 0.12.7 367 | snake-case: 3.0.4 368 | transitivePeerDependencies: 369 | - supports-color 370 | dev: false 371 | 372 | /@nodelib/fs.scandir@2.1.5: 373 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 374 | engines: {node: '>= 8'} 375 | dependencies: 376 | '@nodelib/fs.stat': 2.0.5 377 | run-parallel: 1.2.0 378 | dev: true 379 | 380 | /@nodelib/fs.stat@2.0.5: 381 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 382 | engines: {node: '>= 8'} 383 | dev: true 384 | 385 | /@nodelib/fs.walk@1.2.8: 386 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 387 | engines: {node: '>= 8'} 388 | dependencies: 389 | '@nodelib/fs.scandir': 2.1.5 390 | fastq: 1.13.0 391 | dev: true 392 | 393 | /@octokit/auth-token@3.0.2: 394 | resolution: {integrity: sha512-pq7CwIMV1kmzkFTimdwjAINCXKTajZErLB4wMLYapR2nuB/Jpr66+05wOTZMSCBXP6n4DdDWT2W19Bm17vU69Q==} 395 | engines: {node: '>= 14'} 396 | dependencies: 397 | '@octokit/types': 8.0.0 398 | dev: true 399 | 400 | /@octokit/core@4.2.4: 401 | resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==} 402 | engines: {node: '>= 14'} 403 | dependencies: 404 | '@octokit/auth-token': 3.0.2 405 | '@octokit/graphql': 5.0.4 406 | '@octokit/request': 6.2.2 407 | '@octokit/request-error': 3.0.2 408 | '@octokit/types': 9.3.2 409 | before-after-hook: 2.2.3 410 | universal-user-agent: 6.0.0 411 | transitivePeerDependencies: 412 | - encoding 413 | dev: true 414 | 415 | /@octokit/endpoint@7.0.3: 416 | resolution: {integrity: sha512-57gRlb28bwTsdNXq+O3JTQ7ERmBTuik9+LelgcLIVfYwf235VHbN9QNo4kXExtp/h8T423cR5iJThKtFYxC7Lw==} 417 | engines: {node: '>= 14'} 418 | dependencies: 419 | '@octokit/types': 8.0.0 420 | is-plain-object: 5.0.0 421 | universal-user-agent: 6.0.0 422 | dev: true 423 | 424 | /@octokit/graphql@5.0.4: 425 | resolution: {integrity: sha512-amO1M5QUQgYQo09aStR/XO7KAl13xpigcy/kI8/N1PnZYSS69fgte+xA4+c2DISKqUZfsh0wwjc2FaCt99L41A==} 426 | engines: {node: '>= 14'} 427 | dependencies: 428 | '@octokit/request': 6.2.2 429 | '@octokit/types': 8.0.0 430 | universal-user-agent: 6.0.0 431 | transitivePeerDependencies: 432 | - encoding 433 | dev: true 434 | 435 | /@octokit/openapi-types@14.0.0: 436 | resolution: {integrity: sha512-HNWisMYlR8VCnNurDU6os2ikx0s0VyEjDYHNS/h4cgb8DeOxQ0n72HyinUtdDVxJhFy3FWLGl0DJhfEWk3P5Iw==} 437 | dev: true 438 | 439 | /@octokit/openapi-types@18.0.0: 440 | resolution: {integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==} 441 | dev: true 442 | 443 | /@octokit/plugin-paginate-rest@7.1.2(@octokit/core@4.2.4): 444 | resolution: {integrity: sha512-Jx8KuKqEAVRsK6fMzZKv3h6UH9/NRDHsDRtUAROqqmZlCptM///Uef7A1ViZ/cbDplekz7VbDWdFLAZ/mpuDww==} 445 | engines: {node: '>= 18'} 446 | peerDependencies: 447 | '@octokit/core': '>=4' 448 | dependencies: 449 | '@octokit/core': 4.2.4 450 | '@octokit/tsconfig': 2.0.0 451 | '@octokit/types': 9.3.2 452 | dev: true 453 | 454 | /@octokit/plugin-retry@5.0.4(@octokit/core@4.2.4): 455 | resolution: {integrity: sha512-hw00fDIhOgijy4aSxS6weWF5uqZVeoiC/AptLLyjL8KFCJRGRaXfcfgj76h/Z3cSLTjRsEIQnNCTig8INttL/g==} 456 | engines: {node: '>= 18'} 457 | peerDependencies: 458 | '@octokit/core': '>=3' 459 | dependencies: 460 | '@octokit/core': 4.2.4 461 | '@octokit/request-error': 4.0.2 462 | '@octokit/types': 10.0.0 463 | bottleneck: 2.19.5 464 | dev: true 465 | 466 | /@octokit/plugin-throttling@6.1.0(@octokit/core@4.2.4): 467 | resolution: {integrity: sha512-JqMbTiPC0sUSTsLQsdq3JVx1mx8UtTo5mwR80YqPXE93+XhevvSyOR1rO2Z+NbO/r0TK4hqFJSSi/9oIZBxZTg==} 468 | engines: {node: '>= 18'} 469 | peerDependencies: 470 | '@octokit/core': ^4.0.0 471 | dependencies: 472 | '@octokit/core': 4.2.4 473 | '@octokit/types': 9.3.2 474 | bottleneck: 2.19.5 475 | dev: true 476 | 477 | /@octokit/request-error@3.0.2: 478 | resolution: {integrity: sha512-WMNOFYrSaX8zXWoJg9u/pKgWPo94JXilMLb2VManNOby9EZxrQaBe/QSC4a1TzpAlpxofg2X/jMnCyZgL6y7eg==} 479 | engines: {node: '>= 14'} 480 | dependencies: 481 | '@octokit/types': 8.0.0 482 | deprecation: 2.3.1 483 | once: 1.4.0 484 | dev: true 485 | 486 | /@octokit/request-error@4.0.2: 487 | resolution: {integrity: sha512-uqwUEmZw3x4I9DGYq9fODVAAvcLsPQv97NRycP6syEFu5916M189VnNBW2zANNwqg3OiligNcAey7P0SET843w==} 488 | engines: {node: '>= 18'} 489 | dependencies: 490 | '@octokit/types': 10.0.0 491 | deprecation: 2.3.1 492 | once: 1.4.0 493 | dev: true 494 | 495 | /@octokit/request@6.2.2: 496 | resolution: {integrity: sha512-6VDqgj0HMc2FUX2awIs+sM6OwLgwHvAi4KCK3mT2H2IKRt6oH9d0fej5LluF5mck1lRR/rFWN0YIDSYXYSylbw==} 497 | engines: {node: '>= 14'} 498 | dependencies: 499 | '@octokit/endpoint': 7.0.3 500 | '@octokit/request-error': 3.0.2 501 | '@octokit/types': 8.0.0 502 | is-plain-object: 5.0.0 503 | node-fetch: 2.6.7 504 | universal-user-agent: 6.0.0 505 | transitivePeerDependencies: 506 | - encoding 507 | dev: true 508 | 509 | /@octokit/tsconfig@2.0.0: 510 | resolution: {integrity: sha512-tWnrai3quGt8+gRN2edzo9fmraWekeryXPeXDomMw2oFSpu/lH3VSWGn/q4V+rwjTRMeeXk/ci623/01Zet4VQ==} 511 | dev: true 512 | 513 | /@octokit/types@10.0.0: 514 | resolution: {integrity: sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==} 515 | dependencies: 516 | '@octokit/openapi-types': 18.0.0 517 | dev: true 518 | 519 | /@octokit/types@8.0.0: 520 | resolution: {integrity: sha512-65/TPpOJP1i3K4lBJMnWqPUJ6zuOtzhtagDvydAWbEXpbFYA0oMKKyLb95NFZZP0lSh/4b6K+DQlzvYQJQQePg==} 521 | dependencies: 522 | '@octokit/openapi-types': 14.0.0 523 | dev: true 524 | 525 | /@octokit/types@9.3.2: 526 | resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==} 527 | dependencies: 528 | '@octokit/openapi-types': 18.0.0 529 | dev: true 530 | 531 | /@pnpm/config.env-replace@1.1.0: 532 | resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} 533 | engines: {node: '>=12.22.0'} 534 | dev: true 535 | 536 | /@pnpm/network.ca-file@1.0.2: 537 | resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} 538 | engines: {node: '>=12.22.0'} 539 | dependencies: 540 | graceful-fs: 4.2.10 541 | dev: true 542 | 543 | /@pnpm/npm-conf@2.2.2: 544 | resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==} 545 | engines: {node: '>=12'} 546 | dependencies: 547 | '@pnpm/config.env-replace': 1.1.0 548 | '@pnpm/network.ca-file': 1.0.2 549 | config-chain: 1.1.13 550 | dev: true 551 | 552 | /@rollup/rollup-android-arm-eabi@4.8.0: 553 | resolution: {integrity: sha512-zdTObFRoNENrdPpnTNnhOljYIcOX7aI7+7wyrSpPFFIOf/nRdedE6IYsjaBE7tjukphh1tMTojgJ7p3lKY8x6Q==} 554 | cpu: [arm] 555 | os: [android] 556 | requiresBuild: true 557 | dev: true 558 | optional: true 559 | 560 | /@rollup/rollup-android-arm64@4.8.0: 561 | resolution: {integrity: sha512-aiItwP48BiGpMFS9Znjo/xCNQVwTQVcRKkFKsO81m8exrGjHkCBDvm9PHay2kpa8RPnZzzKcD1iQ9KaLY4fPQQ==} 562 | cpu: [arm64] 563 | os: [android] 564 | requiresBuild: true 565 | dev: true 566 | optional: true 567 | 568 | /@rollup/rollup-darwin-arm64@4.8.0: 569 | resolution: {integrity: sha512-zhNIS+L4ZYkYQUjIQUR6Zl0RXhbbA0huvNIWjmPc2SL0cB1h5Djkcy+RZ3/Bwszfb6vgwUvcVJYD6e6Zkpsi8g==} 570 | cpu: [arm64] 571 | os: [darwin] 572 | requiresBuild: true 573 | dev: true 574 | optional: true 575 | 576 | /@rollup/rollup-darwin-x64@4.8.0: 577 | resolution: {integrity: sha512-A/FAHFRNQYrELrb/JHncRWzTTXB2ticiRFztP4ggIUAfa9Up1qfW8aG2w/mN9jNiZ+HB0t0u0jpJgFXG6BfRTA==} 578 | cpu: [x64] 579 | os: [darwin] 580 | requiresBuild: true 581 | dev: true 582 | optional: true 583 | 584 | /@rollup/rollup-linux-arm-gnueabihf@4.8.0: 585 | resolution: {integrity: sha512-JsidBnh3p2IJJA4/2xOF2puAYqbaczB3elZDT0qHxn362EIoIkq7hrR43Xa8RisgI6/WPfvb2umbGsuvf7E37A==} 586 | cpu: [arm] 587 | os: [linux] 588 | requiresBuild: true 589 | dev: true 590 | optional: true 591 | 592 | /@rollup/rollup-linux-arm64-gnu@4.8.0: 593 | resolution: {integrity: sha512-hBNCnqw3EVCkaPB0Oqd24bv8SklETptQWcJz06kb9OtiShn9jK1VuTgi7o4zPSt6rNGWQOTDEAccbk0OqJmS+g==} 594 | cpu: [arm64] 595 | os: [linux] 596 | requiresBuild: true 597 | dev: true 598 | optional: true 599 | 600 | /@rollup/rollup-linux-arm64-musl@4.8.0: 601 | resolution: {integrity: sha512-Fw9ChYfJPdltvi9ALJ9wzdCdxGw4wtq4t1qY028b2O7GwB5qLNSGtqMsAel1lfWTZvf4b6/+4HKp0GlSYg0ahA==} 602 | cpu: [arm64] 603 | os: [linux] 604 | requiresBuild: true 605 | dev: true 606 | optional: true 607 | 608 | /@rollup/rollup-linux-riscv64-gnu@4.8.0: 609 | resolution: {integrity: sha512-BH5xIh7tOzS9yBi8dFrCTG8Z6iNIGWGltd3IpTSKp6+pNWWO6qy8eKoRxOtwFbMrid5NZaidLYN6rHh9aB8bEw==} 610 | cpu: [riscv64] 611 | os: [linux] 612 | requiresBuild: true 613 | dev: true 614 | optional: true 615 | 616 | /@rollup/rollup-linux-x64-gnu@4.8.0: 617 | resolution: {integrity: sha512-PmvAj8k6EuWiyLbkNpd6BLv5XeYFpqWuRvRNRl80xVfpGXK/z6KYXmAgbI4ogz7uFiJxCnYcqyvZVD0dgFog7Q==} 618 | cpu: [x64] 619 | os: [linux] 620 | requiresBuild: true 621 | dev: true 622 | optional: true 623 | 624 | /@rollup/rollup-linux-x64-musl@4.8.0: 625 | resolution: {integrity: sha512-mdxnlW2QUzXwY+95TuxZ+CurrhgrPAMveDWI97EQlA9bfhR8tw3Pt7SUlc/eSlCNxlWktpmT//EAA8UfCHOyXg==} 626 | cpu: [x64] 627 | os: [linux] 628 | requiresBuild: true 629 | dev: true 630 | optional: true 631 | 632 | /@rollup/rollup-win32-arm64-msvc@4.8.0: 633 | resolution: {integrity: sha512-ge7saUz38aesM4MA7Cad8CHo0Fyd1+qTaqoIo+Jtk+ipBi4ATSrHWov9/S4u5pbEQmLjgUjB7BJt+MiKG2kzmA==} 634 | cpu: [arm64] 635 | os: [win32] 636 | requiresBuild: true 637 | dev: true 638 | optional: true 639 | 640 | /@rollup/rollup-win32-ia32-msvc@4.8.0: 641 | resolution: {integrity: sha512-p9E3PZlzurhlsN5h9g7zIP1DnqKXJe8ZUkFwAazqSvHuWfihlIISPxG9hCHCoA+dOOspL/c7ty1eeEVFTE0UTw==} 642 | cpu: [ia32] 643 | os: [win32] 644 | requiresBuild: true 645 | dev: true 646 | optional: true 647 | 648 | /@rollup/rollup-win32-x64-msvc@4.8.0: 649 | resolution: {integrity: sha512-kb4/auKXkYKqlUYTE8s40FcJIj5soOyRLHKd4ugR0dCq0G2EfcF54eYcfQiGkHzjidZ40daB4ulsFdtqNKZtBg==} 650 | cpu: [x64] 651 | os: [win32] 652 | requiresBuild: true 653 | dev: true 654 | optional: true 655 | 656 | /@semantic-release/changelog@6.0.3(semantic-release@23.0.2): 657 | resolution: {integrity: sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==} 658 | engines: {node: '>=14.17'} 659 | peerDependencies: 660 | semantic-release: '>=18.0.0' 661 | dependencies: 662 | '@semantic-release/error': 3.0.0 663 | aggregate-error: 3.1.0 664 | fs-extra: 11.1.1 665 | lodash: 4.17.21 666 | semantic-release: 23.0.2(typescript@5.3.3) 667 | dev: true 668 | 669 | /@semantic-release/commit-analyzer@11.0.0(semantic-release@23.0.2): 670 | resolution: {integrity: sha512-uEXyf4Z0AWJuxI9TbSQP5kkIYqus1/E1NcmE7pIv6d6/m/5EJcNWAGR4FOo34vrV26FhEaRVkxFfYzp/M7BKIg==} 671 | engines: {node: ^18.17 || >=20.6.1} 672 | peerDependencies: 673 | semantic-release: '>=20.1.0' 674 | dependencies: 675 | conventional-changelog-angular: 7.0.0 676 | conventional-commits-filter: 4.0.0 677 | conventional-commits-parser: 5.0.0 678 | debug: 4.3.4 679 | import-from: 4.0.0 680 | lodash-es: 4.17.21 681 | micromatch: 4.0.5 682 | semantic-release: 23.0.2(typescript@5.3.3) 683 | transitivePeerDependencies: 684 | - supports-color 685 | dev: true 686 | 687 | /@semantic-release/error@3.0.0: 688 | resolution: {integrity: sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==} 689 | engines: {node: '>=14.17'} 690 | dev: true 691 | 692 | /@semantic-release/error@4.0.0: 693 | resolution: {integrity: sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==} 694 | engines: {node: '>=18'} 695 | dev: true 696 | 697 | /@semantic-release/exec@6.0.3(semantic-release@23.0.2): 698 | resolution: {integrity: sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==} 699 | engines: {node: '>=14.17'} 700 | peerDependencies: 701 | semantic-release: '>=18.0.0' 702 | dependencies: 703 | '@semantic-release/error': 3.0.0 704 | aggregate-error: 3.1.0 705 | debug: 4.3.4 706 | execa: 5.1.1 707 | lodash: 4.17.21 708 | parse-json: 5.2.0 709 | semantic-release: 23.0.2(typescript@5.3.3) 710 | transitivePeerDependencies: 711 | - supports-color 712 | dev: true 713 | 714 | /@semantic-release/git@10.0.1(semantic-release@23.0.2): 715 | resolution: {integrity: sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==} 716 | engines: {node: '>=14.17'} 717 | peerDependencies: 718 | semantic-release: '>=18.0.0' 719 | dependencies: 720 | '@semantic-release/error': 3.0.0 721 | aggregate-error: 3.1.0 722 | debug: 4.3.4 723 | dir-glob: 3.0.1 724 | execa: 5.1.1 725 | lodash: 4.17.21 726 | micromatch: 4.0.5 727 | p-reduce: 2.1.0 728 | semantic-release: 23.0.2(typescript@5.3.3) 729 | transitivePeerDependencies: 730 | - supports-color 731 | dev: true 732 | 733 | /@semantic-release/github@9.0.3(semantic-release@23.0.2): 734 | resolution: {integrity: sha512-X6gq4USKVlCxPwIIyXb99jU7gwVWlnsKOevs+OyABRdoqc+OIRITbFmrrYU3eE1vGMGk+Qu/GAoLUQQQwC3YOA==} 735 | engines: {node: '>=18'} 736 | peerDependencies: 737 | semantic-release: '>=20.1.0' 738 | dependencies: 739 | '@octokit/core': 4.2.4 740 | '@octokit/plugin-paginate-rest': 7.1.2(@octokit/core@4.2.4) 741 | '@octokit/plugin-retry': 5.0.4(@octokit/core@4.2.4) 742 | '@octokit/plugin-throttling': 6.1.0(@octokit/core@4.2.4) 743 | '@semantic-release/error': 4.0.0 744 | aggregate-error: 4.0.1 745 | debug: 4.3.4 746 | dir-glob: 3.0.1 747 | globby: 13.2.1 748 | http-proxy-agent: 7.0.0 749 | https-proxy-agent: 7.0.0 750 | issue-parser: 6.0.0 751 | lodash-es: 4.17.21 752 | mime: 3.0.0 753 | p-filter: 3.0.0 754 | semantic-release: 23.0.2(typescript@5.3.3) 755 | url-join: 5.0.0 756 | transitivePeerDependencies: 757 | - encoding 758 | - supports-color 759 | dev: true 760 | 761 | /@semantic-release/npm@11.0.2(semantic-release@23.0.2): 762 | resolution: {integrity: sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==} 763 | engines: {node: ^18.17 || >=20} 764 | peerDependencies: 765 | semantic-release: '>=20.1.0' 766 | dependencies: 767 | '@semantic-release/error': 4.0.0 768 | aggregate-error: 5.0.0 769 | execa: 8.0.1 770 | fs-extra: 11.1.1 771 | lodash-es: 4.17.21 772 | nerf-dart: 1.0.0 773 | normalize-url: 8.0.0 774 | npm: 10.1.0 775 | rc: 1.2.8 776 | read-pkg: 9.0.0 777 | registry-auth-token: 5.0.2 778 | semantic-release: 23.0.2(typescript@5.3.3) 779 | semver: 7.5.4 780 | tempy: 3.0.0 781 | dev: true 782 | 783 | /@semantic-release/release-notes-generator@12.0.0(semantic-release@23.0.2): 784 | resolution: {integrity: sha512-m7Ds8ComP1KJgA2Lke2xMwE1TOOU40U7AzP4lT8hJ2tUAeicziPz/1GeDFmRkTOkMFlfHvE6kuvMkvU+mIzIDQ==} 785 | engines: {node: ^18.17 || >=20.6.1} 786 | peerDependencies: 787 | semantic-release: '>=20.1.0' 788 | dependencies: 789 | conventional-changelog-angular: 7.0.0 790 | conventional-changelog-writer: 7.0.1 791 | conventional-commits-filter: 4.0.0 792 | conventional-commits-parser: 5.0.0 793 | debug: 4.3.4 794 | get-stream: 7.0.1 795 | import-from: 4.0.0 796 | into-stream: 7.0.0 797 | lodash-es: 4.17.21 798 | read-pkg-up: 10.0.0 799 | semantic-release: 23.0.2(typescript@5.3.3) 800 | transitivePeerDependencies: 801 | - supports-color 802 | dev: true 803 | 804 | /@sindresorhus/is@4.6.0: 805 | resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} 806 | engines: {node: '>=10'} 807 | dev: true 808 | 809 | /@types/json-schema@7.0.11: 810 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} 811 | dev: true 812 | 813 | /@types/node@20.11.17: 814 | resolution: {integrity: sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw==} 815 | dependencies: 816 | undici-types: 5.26.5 817 | dev: true 818 | 819 | /@types/normalize-package-data@2.4.4: 820 | resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} 821 | dev: true 822 | 823 | /@types/semver@7.3.13: 824 | resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} 825 | dev: true 826 | 827 | /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.3.3): 828 | resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} 829 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 830 | peerDependencies: 831 | '@typescript-eslint/parser': ^5.0.0 832 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 833 | typescript: '*' 834 | peerDependenciesMeta: 835 | typescript: 836 | optional: true 837 | dependencies: 838 | '@eslint-community/regexpp': 4.5.1 839 | '@typescript-eslint/parser': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 840 | '@typescript-eslint/scope-manager': 5.62.0 841 | '@typescript-eslint/type-utils': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 842 | '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 843 | debug: 4.3.4 844 | eslint: 8.55.0 845 | graphemer: 1.4.0 846 | ignore: 5.2.0 847 | natural-compare-lite: 1.4.0 848 | semver: 7.3.8 849 | tsutils: 3.21.0(typescript@5.3.3) 850 | typescript: 5.3.3 851 | transitivePeerDependencies: 852 | - supports-color 853 | dev: true 854 | 855 | /@typescript-eslint/parser@5.62.0(eslint@8.55.0)(typescript@5.3.3): 856 | resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} 857 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 858 | peerDependencies: 859 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 860 | typescript: '*' 861 | peerDependenciesMeta: 862 | typescript: 863 | optional: true 864 | dependencies: 865 | '@typescript-eslint/scope-manager': 5.62.0 866 | '@typescript-eslint/types': 5.62.0 867 | '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 868 | debug: 4.3.4 869 | eslint: 8.55.0 870 | typescript: 5.3.3 871 | transitivePeerDependencies: 872 | - supports-color 873 | dev: true 874 | 875 | /@typescript-eslint/scope-manager@5.62.0: 876 | resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} 877 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 878 | dependencies: 879 | '@typescript-eslint/types': 5.62.0 880 | '@typescript-eslint/visitor-keys': 5.62.0 881 | dev: true 882 | 883 | /@typescript-eslint/type-utils@5.62.0(eslint@8.55.0)(typescript@5.3.3): 884 | resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} 885 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 886 | peerDependencies: 887 | eslint: '*' 888 | typescript: '*' 889 | peerDependenciesMeta: 890 | typescript: 891 | optional: true 892 | dependencies: 893 | '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 894 | '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 895 | debug: 4.3.4 896 | eslint: 8.55.0 897 | tsutils: 3.21.0(typescript@5.3.3) 898 | typescript: 5.3.3 899 | transitivePeerDependencies: 900 | - supports-color 901 | dev: true 902 | 903 | /@typescript-eslint/types@5.62.0: 904 | resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} 905 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 906 | dev: true 907 | 908 | /@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.3): 909 | resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} 910 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 911 | peerDependencies: 912 | typescript: '*' 913 | peerDependenciesMeta: 914 | typescript: 915 | optional: true 916 | dependencies: 917 | '@typescript-eslint/types': 5.62.0 918 | '@typescript-eslint/visitor-keys': 5.62.0 919 | debug: 4.3.4 920 | globby: 11.1.0 921 | is-glob: 4.0.3 922 | semver: 7.5.4 923 | tsutils: 3.21.0(typescript@5.3.3) 924 | typescript: 5.3.3 925 | transitivePeerDependencies: 926 | - supports-color 927 | dev: true 928 | 929 | /@typescript-eslint/utils@5.62.0(eslint@8.55.0)(typescript@5.3.3): 930 | resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} 931 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 932 | peerDependencies: 933 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 934 | dependencies: 935 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) 936 | '@types/json-schema': 7.0.11 937 | '@types/semver': 7.3.13 938 | '@typescript-eslint/scope-manager': 5.62.0 939 | '@typescript-eslint/types': 5.62.0 940 | '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 941 | eslint: 8.55.0 942 | eslint-scope: 5.1.1 943 | semver: 7.5.4 944 | transitivePeerDependencies: 945 | - supports-color 946 | - typescript 947 | dev: true 948 | 949 | /@typescript-eslint/visitor-keys@5.62.0: 950 | resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} 951 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 952 | dependencies: 953 | '@typescript-eslint/types': 5.62.0 954 | eslint-visitor-keys: 3.4.3 955 | dev: true 956 | 957 | /@ungap/structured-clone@1.2.0: 958 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 959 | dev: true 960 | 961 | /JSONStream@1.3.5: 962 | resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} 963 | hasBin: true 964 | dependencies: 965 | jsonparse: 1.3.1 966 | through: 2.3.8 967 | dev: true 968 | 969 | /acorn-jsx@5.3.2(acorn@8.9.0): 970 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 971 | peerDependencies: 972 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 973 | dependencies: 974 | acorn: 8.9.0 975 | dev: true 976 | 977 | /acorn@8.9.0: 978 | resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==} 979 | engines: {node: '>=0.4.0'} 980 | hasBin: true 981 | dev: true 982 | 983 | /agent-base@7.1.0: 984 | resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} 985 | engines: {node: '>= 14'} 986 | dependencies: 987 | debug: 4.3.4 988 | transitivePeerDependencies: 989 | - supports-color 990 | dev: true 991 | 992 | /aggregate-error@3.1.0: 993 | resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 994 | engines: {node: '>=8'} 995 | dependencies: 996 | clean-stack: 2.2.0 997 | indent-string: 4.0.0 998 | dev: true 999 | 1000 | /aggregate-error@4.0.1: 1001 | resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==} 1002 | engines: {node: '>=12'} 1003 | dependencies: 1004 | clean-stack: 4.2.0 1005 | indent-string: 5.0.0 1006 | dev: true 1007 | 1008 | /aggregate-error@5.0.0: 1009 | resolution: {integrity: sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==} 1010 | engines: {node: '>=18'} 1011 | dependencies: 1012 | clean-stack: 5.2.0 1013 | indent-string: 5.0.0 1014 | dev: true 1015 | 1016 | /ajv@6.12.6: 1017 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 1018 | dependencies: 1019 | fast-deep-equal: 3.1.3 1020 | fast-json-stable-stringify: 2.1.0 1021 | json-schema-traverse: 0.4.1 1022 | uri-js: 4.4.1 1023 | dev: true 1024 | 1025 | /ansi-escapes@6.2.0: 1026 | resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==} 1027 | engines: {node: '>=14.16'} 1028 | dependencies: 1029 | type-fest: 3.12.0 1030 | dev: true 1031 | 1032 | /ansi-regex@5.0.1: 1033 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1034 | engines: {node: '>=8'} 1035 | dev: true 1036 | 1037 | /ansi-styles@3.2.1: 1038 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 1039 | engines: {node: '>=4'} 1040 | dependencies: 1041 | color-convert: 1.9.3 1042 | dev: true 1043 | 1044 | /ansi-styles@4.3.0: 1045 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1046 | engines: {node: '>=8'} 1047 | dependencies: 1048 | color-convert: 2.0.1 1049 | dev: true 1050 | 1051 | /any-promise@1.3.0: 1052 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 1053 | dev: true 1054 | 1055 | /argparse@2.0.1: 1056 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1057 | dev: true 1058 | 1059 | /argv-formatter@1.0.0: 1060 | resolution: {integrity: sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==} 1061 | dev: true 1062 | 1063 | /array-ify@1.0.0: 1064 | resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} 1065 | dev: true 1066 | 1067 | /array-union@2.1.0: 1068 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 1069 | engines: {node: '>=8'} 1070 | dev: true 1071 | 1072 | /balanced-match@1.0.2: 1073 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1074 | dev: true 1075 | 1076 | /before-after-hook@2.2.3: 1077 | resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} 1078 | dev: true 1079 | 1080 | /bottleneck@2.19.5: 1081 | resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==} 1082 | dev: true 1083 | 1084 | /brace-expansion@1.1.11: 1085 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 1086 | dependencies: 1087 | balanced-match: 1.0.2 1088 | concat-map: 0.0.1 1089 | dev: true 1090 | 1091 | /braces@3.0.2: 1092 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 1093 | engines: {node: '>=8'} 1094 | dependencies: 1095 | fill-range: 7.0.1 1096 | dev: true 1097 | 1098 | /callsites@3.1.0: 1099 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 1100 | engines: {node: '>=6'} 1101 | dev: true 1102 | 1103 | /chalk@2.4.2: 1104 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 1105 | engines: {node: '>=4'} 1106 | dependencies: 1107 | ansi-styles: 3.2.1 1108 | escape-string-regexp: 1.0.5 1109 | supports-color: 5.5.0 1110 | dev: true 1111 | 1112 | /chalk@4.1.2: 1113 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 1114 | engines: {node: '>=10'} 1115 | dependencies: 1116 | ansi-styles: 4.3.0 1117 | supports-color: 7.2.0 1118 | dev: true 1119 | 1120 | /chalk@5.3.0: 1121 | resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} 1122 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 1123 | dev: true 1124 | 1125 | /char-regex@1.0.2: 1126 | resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} 1127 | engines: {node: '>=10'} 1128 | dev: true 1129 | 1130 | /clean-stack@2.2.0: 1131 | resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 1132 | engines: {node: '>=6'} 1133 | dev: true 1134 | 1135 | /clean-stack@4.2.0: 1136 | resolution: {integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==} 1137 | engines: {node: '>=12'} 1138 | dependencies: 1139 | escape-string-regexp: 5.0.0 1140 | dev: true 1141 | 1142 | /clean-stack@5.2.0: 1143 | resolution: {integrity: sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==} 1144 | engines: {node: '>=14.16'} 1145 | dependencies: 1146 | escape-string-regexp: 5.0.0 1147 | dev: true 1148 | 1149 | /cli-highlight@2.1.11: 1150 | resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} 1151 | engines: {node: '>=8.0.0', npm: '>=5.0.0'} 1152 | hasBin: true 1153 | dependencies: 1154 | chalk: 4.1.2 1155 | highlight.js: 10.7.3 1156 | mz: 2.7.0 1157 | parse5: 5.1.1 1158 | parse5-htmlparser2-tree-adapter: 6.0.1 1159 | yargs: 16.2.0 1160 | dev: true 1161 | 1162 | /cli-table3@0.6.3: 1163 | resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} 1164 | engines: {node: 10.* || >= 12.*} 1165 | dependencies: 1166 | string-width: 4.2.3 1167 | optionalDependencies: 1168 | '@colors/colors': 1.5.0 1169 | dev: true 1170 | 1171 | /cliui@7.0.4: 1172 | resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} 1173 | dependencies: 1174 | string-width: 4.2.3 1175 | strip-ansi: 6.0.1 1176 | wrap-ansi: 7.0.0 1177 | dev: true 1178 | 1179 | /cliui@8.0.1: 1180 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 1181 | engines: {node: '>=12'} 1182 | dependencies: 1183 | string-width: 4.2.3 1184 | strip-ansi: 6.0.1 1185 | wrap-ansi: 7.0.0 1186 | dev: true 1187 | 1188 | /color-convert@1.9.3: 1189 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 1190 | dependencies: 1191 | color-name: 1.1.3 1192 | dev: true 1193 | 1194 | /color-convert@2.0.1: 1195 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1196 | engines: {node: '>=7.0.0'} 1197 | dependencies: 1198 | color-name: 1.1.4 1199 | dev: true 1200 | 1201 | /color-name@1.1.3: 1202 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 1203 | dev: true 1204 | 1205 | /color-name@1.1.4: 1206 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1207 | dev: true 1208 | 1209 | /compare-func@2.0.0: 1210 | resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} 1211 | dependencies: 1212 | array-ify: 1.0.0 1213 | dot-prop: 5.3.0 1214 | dev: true 1215 | 1216 | /concat-map@0.0.1: 1217 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 1218 | dev: true 1219 | 1220 | /config-chain@1.1.13: 1221 | resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} 1222 | dependencies: 1223 | ini: 1.3.8 1224 | proto-list: 1.2.4 1225 | dev: true 1226 | 1227 | /conventional-changelog-angular@7.0.0: 1228 | resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} 1229 | engines: {node: '>=16'} 1230 | dependencies: 1231 | compare-func: 2.0.0 1232 | dev: true 1233 | 1234 | /conventional-changelog-conventionalcommits@7.0.2: 1235 | resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} 1236 | engines: {node: '>=16'} 1237 | dependencies: 1238 | compare-func: 2.0.0 1239 | dev: true 1240 | 1241 | /conventional-changelog-writer@7.0.1: 1242 | resolution: {integrity: sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==} 1243 | engines: {node: '>=16'} 1244 | hasBin: true 1245 | dependencies: 1246 | conventional-commits-filter: 4.0.0 1247 | handlebars: 4.7.7 1248 | json-stringify-safe: 5.0.1 1249 | meow: 12.1.1 1250 | semver: 7.5.4 1251 | split2: 4.2.0 1252 | dev: true 1253 | 1254 | /conventional-commits-filter@4.0.0: 1255 | resolution: {integrity: sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==} 1256 | engines: {node: '>=16'} 1257 | dev: true 1258 | 1259 | /conventional-commits-parser@5.0.0: 1260 | resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} 1261 | engines: {node: '>=16'} 1262 | hasBin: true 1263 | dependencies: 1264 | JSONStream: 1.3.5 1265 | is-text-path: 2.0.0 1266 | meow: 12.1.1 1267 | split2: 4.2.0 1268 | dev: true 1269 | 1270 | /core-util-is@1.0.3: 1271 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 1272 | dev: true 1273 | 1274 | /cosmiconfig@9.0.0(typescript@5.3.3): 1275 | resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} 1276 | engines: {node: '>=14'} 1277 | peerDependencies: 1278 | typescript: '>=4.9.5' 1279 | peerDependenciesMeta: 1280 | typescript: 1281 | optional: true 1282 | dependencies: 1283 | env-paths: 2.2.1 1284 | import-fresh: 3.3.0 1285 | js-yaml: 4.1.0 1286 | parse-json: 5.2.0 1287 | typescript: 5.3.3 1288 | dev: true 1289 | 1290 | /cross-spawn@7.0.3: 1291 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 1292 | engines: {node: '>= 8'} 1293 | dependencies: 1294 | path-key: 3.1.1 1295 | shebang-command: 2.0.0 1296 | which: 2.0.2 1297 | dev: true 1298 | 1299 | /crypto-random-string@4.0.0: 1300 | resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} 1301 | engines: {node: '>=12'} 1302 | dependencies: 1303 | type-fest: 1.4.0 1304 | dev: true 1305 | 1306 | /csstype@3.1.0: 1307 | resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} 1308 | dev: false 1309 | 1310 | /debug@4.3.4: 1311 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 1312 | engines: {node: '>=6.0'} 1313 | peerDependencies: 1314 | supports-color: '*' 1315 | peerDependenciesMeta: 1316 | supports-color: 1317 | optional: true 1318 | dependencies: 1319 | ms: 2.1.2 1320 | 1321 | /deep-extend@0.6.0: 1322 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 1323 | engines: {node: '>=4.0.0'} 1324 | dev: true 1325 | 1326 | /deep-is@0.1.4: 1327 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1328 | dev: true 1329 | 1330 | /deepmerge@4.3.1: 1331 | resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 1332 | engines: {node: '>=0.10.0'} 1333 | dev: false 1334 | 1335 | /deprecation@2.3.1: 1336 | resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} 1337 | dev: true 1338 | 1339 | /dir-glob@3.0.1: 1340 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1341 | engines: {node: '>=8'} 1342 | dependencies: 1343 | path-type: 4.0.0 1344 | dev: true 1345 | 1346 | /doctrine@3.0.0: 1347 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1348 | engines: {node: '>=6.0.0'} 1349 | dependencies: 1350 | esutils: 2.0.3 1351 | dev: true 1352 | 1353 | /dompurify@2.3.8: 1354 | resolution: {integrity: sha512-eVhaWoVibIzqdGYjwsBWodIQIaXFSB+cKDf4cfxLMsK0xiud6SE+/WCVx/Xw/UwQsa4cS3T2eITcdtmTg2UKcw==} 1355 | dev: false 1356 | 1357 | /dot-case@3.0.4: 1358 | resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} 1359 | dependencies: 1360 | no-case: 3.0.4 1361 | tslib: 2.4.1 1362 | dev: false 1363 | 1364 | /dot-prop@5.3.0: 1365 | resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} 1366 | engines: {node: '>=8'} 1367 | dependencies: 1368 | is-obj: 2.0.0 1369 | dev: true 1370 | 1371 | /duplexer2@0.1.4: 1372 | resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} 1373 | dependencies: 1374 | readable-stream: 2.3.7 1375 | dev: true 1376 | 1377 | /emoji-regex@8.0.0: 1378 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1379 | dev: true 1380 | 1381 | /emojilib@2.4.0: 1382 | resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} 1383 | dev: true 1384 | 1385 | /env-ci@11.0.0: 1386 | resolution: {integrity: sha512-apikxMgkipkgTvMdRT9MNqWx5VLOci79F4VBd7Op/7OPjjoanjdAvn6fglMCCEf/1bAh8eOiuEVCUs4V3qP3nQ==} 1387 | engines: {node: ^18.17 || >=20.6.1} 1388 | dependencies: 1389 | execa: 8.0.1 1390 | java-properties: 1.0.2 1391 | dev: true 1392 | 1393 | /env-paths@2.2.1: 1394 | resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} 1395 | engines: {node: '>=6'} 1396 | dev: true 1397 | 1398 | /error-ex@1.3.2: 1399 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 1400 | dependencies: 1401 | is-arrayish: 0.2.1 1402 | dev: true 1403 | 1404 | /esbuild@0.19.9: 1405 | resolution: {integrity: sha512-U9CHtKSy+EpPsEBa+/A2gMs/h3ylBC0H0KSqIg7tpztHerLi6nrrcoUJAkNCEPumx8yJ+Byic4BVwHgRbN0TBg==} 1406 | engines: {node: '>=12'} 1407 | hasBin: true 1408 | requiresBuild: true 1409 | optionalDependencies: 1410 | '@esbuild/android-arm': 0.19.9 1411 | '@esbuild/android-arm64': 0.19.9 1412 | '@esbuild/android-x64': 0.19.9 1413 | '@esbuild/darwin-arm64': 0.19.9 1414 | '@esbuild/darwin-x64': 0.19.9 1415 | '@esbuild/freebsd-arm64': 0.19.9 1416 | '@esbuild/freebsd-x64': 0.19.9 1417 | '@esbuild/linux-arm': 0.19.9 1418 | '@esbuild/linux-arm64': 0.19.9 1419 | '@esbuild/linux-ia32': 0.19.9 1420 | '@esbuild/linux-loong64': 0.19.9 1421 | '@esbuild/linux-mips64el': 0.19.9 1422 | '@esbuild/linux-ppc64': 0.19.9 1423 | '@esbuild/linux-riscv64': 0.19.9 1424 | '@esbuild/linux-s390x': 0.19.9 1425 | '@esbuild/linux-x64': 0.19.9 1426 | '@esbuild/netbsd-x64': 0.19.9 1427 | '@esbuild/openbsd-x64': 0.19.9 1428 | '@esbuild/sunos-x64': 0.19.9 1429 | '@esbuild/win32-arm64': 0.19.9 1430 | '@esbuild/win32-ia32': 0.19.9 1431 | '@esbuild/win32-x64': 0.19.9 1432 | dev: true 1433 | 1434 | /escalade@3.1.1: 1435 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 1436 | engines: {node: '>=6'} 1437 | dev: true 1438 | 1439 | /escape-string-regexp@1.0.5: 1440 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1441 | engines: {node: '>=0.8.0'} 1442 | dev: true 1443 | 1444 | /escape-string-regexp@4.0.0: 1445 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1446 | engines: {node: '>=10'} 1447 | dev: true 1448 | 1449 | /escape-string-regexp@5.0.0: 1450 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 1451 | engines: {node: '>=12'} 1452 | dev: true 1453 | 1454 | /eslint-scope@5.1.1: 1455 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 1456 | engines: {node: '>=8.0.0'} 1457 | dependencies: 1458 | esrecurse: 4.3.0 1459 | estraverse: 4.3.0 1460 | dev: true 1461 | 1462 | /eslint-scope@7.2.2: 1463 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1464 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1465 | dependencies: 1466 | esrecurse: 4.3.0 1467 | estraverse: 5.3.0 1468 | dev: true 1469 | 1470 | /eslint-visitor-keys@3.4.3: 1471 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1472 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1473 | dev: true 1474 | 1475 | /eslint@8.55.0: 1476 | resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==} 1477 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1478 | hasBin: true 1479 | dependencies: 1480 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) 1481 | '@eslint-community/regexpp': 4.6.2 1482 | '@eslint/eslintrc': 2.1.4 1483 | '@eslint/js': 8.55.0 1484 | '@humanwhocodes/config-array': 0.11.13 1485 | '@humanwhocodes/module-importer': 1.0.1 1486 | '@nodelib/fs.walk': 1.2.8 1487 | '@ungap/structured-clone': 1.2.0 1488 | ajv: 6.12.6 1489 | chalk: 4.1.2 1490 | cross-spawn: 7.0.3 1491 | debug: 4.3.4 1492 | doctrine: 3.0.0 1493 | escape-string-regexp: 4.0.0 1494 | eslint-scope: 7.2.2 1495 | eslint-visitor-keys: 3.4.3 1496 | espree: 9.6.1 1497 | esquery: 1.5.0 1498 | esutils: 2.0.3 1499 | fast-deep-equal: 3.1.3 1500 | file-entry-cache: 6.0.1 1501 | find-up: 5.0.0 1502 | glob-parent: 6.0.2 1503 | globals: 13.20.0 1504 | graphemer: 1.4.0 1505 | ignore: 5.2.0 1506 | imurmurhash: 0.1.4 1507 | is-glob: 4.0.3 1508 | is-path-inside: 3.0.3 1509 | js-yaml: 4.1.0 1510 | json-stable-stringify-without-jsonify: 1.0.1 1511 | levn: 0.4.1 1512 | lodash.merge: 4.6.2 1513 | minimatch: 3.1.2 1514 | natural-compare: 1.4.0 1515 | optionator: 0.9.3 1516 | strip-ansi: 6.0.1 1517 | text-table: 0.2.0 1518 | transitivePeerDependencies: 1519 | - supports-color 1520 | dev: true 1521 | 1522 | /espree@9.6.1: 1523 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1524 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1525 | dependencies: 1526 | acorn: 8.9.0 1527 | acorn-jsx: 5.3.2(acorn@8.9.0) 1528 | eslint-visitor-keys: 3.4.3 1529 | dev: true 1530 | 1531 | /esquery@1.5.0: 1532 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1533 | engines: {node: '>=0.10'} 1534 | dependencies: 1535 | estraverse: 5.3.0 1536 | dev: true 1537 | 1538 | /esrecurse@4.3.0: 1539 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1540 | engines: {node: '>=4.0'} 1541 | dependencies: 1542 | estraverse: 5.3.0 1543 | dev: true 1544 | 1545 | /estraverse@4.3.0: 1546 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 1547 | engines: {node: '>=4.0'} 1548 | dev: true 1549 | 1550 | /estraverse@5.3.0: 1551 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1552 | engines: {node: '>=4.0'} 1553 | dev: true 1554 | 1555 | /esutils@2.0.3: 1556 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1557 | engines: {node: '>=0.10.0'} 1558 | dev: true 1559 | 1560 | /eventemitter3@4.0.7: 1561 | resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} 1562 | dev: false 1563 | 1564 | /execa@5.1.1: 1565 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1566 | engines: {node: '>=10'} 1567 | dependencies: 1568 | cross-spawn: 7.0.3 1569 | get-stream: 6.0.1 1570 | human-signals: 2.1.0 1571 | is-stream: 2.0.1 1572 | merge-stream: 2.0.0 1573 | npm-run-path: 4.0.1 1574 | onetime: 5.1.2 1575 | signal-exit: 3.0.7 1576 | strip-final-newline: 2.0.0 1577 | dev: true 1578 | 1579 | /execa@8.0.1: 1580 | resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 1581 | engines: {node: '>=16.17'} 1582 | dependencies: 1583 | cross-spawn: 7.0.3 1584 | get-stream: 8.0.1 1585 | human-signals: 5.0.0 1586 | is-stream: 3.0.0 1587 | merge-stream: 2.0.0 1588 | npm-run-path: 5.1.0 1589 | onetime: 6.0.0 1590 | signal-exit: 4.1.0 1591 | strip-final-newline: 3.0.0 1592 | dev: true 1593 | 1594 | /fast-deep-equal@3.1.3: 1595 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1596 | 1597 | /fast-glob@3.2.12: 1598 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 1599 | engines: {node: '>=8.6.0'} 1600 | dependencies: 1601 | '@nodelib/fs.stat': 2.0.5 1602 | '@nodelib/fs.walk': 1.2.8 1603 | glob-parent: 5.1.2 1604 | merge2: 1.4.1 1605 | micromatch: 4.0.5 1606 | dev: true 1607 | 1608 | /fast-json-stable-stringify@2.1.0: 1609 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1610 | dev: true 1611 | 1612 | /fast-levenshtein@2.0.6: 1613 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1614 | dev: true 1615 | 1616 | /fastq@1.13.0: 1617 | resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} 1618 | dependencies: 1619 | reusify: 1.0.4 1620 | dev: true 1621 | 1622 | /figures@2.0.0: 1623 | resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} 1624 | engines: {node: '>=4'} 1625 | dependencies: 1626 | escape-string-regexp: 1.0.5 1627 | dev: true 1628 | 1629 | /figures@6.0.1: 1630 | resolution: {integrity: sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==} 1631 | engines: {node: '>=18'} 1632 | dependencies: 1633 | is-unicode-supported: 2.0.0 1634 | dev: true 1635 | 1636 | /file-entry-cache@6.0.1: 1637 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1638 | engines: {node: ^10.12.0 || >=12.0.0} 1639 | dependencies: 1640 | flat-cache: 3.0.4 1641 | dev: true 1642 | 1643 | /fill-range@7.0.1: 1644 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1645 | engines: {node: '>=8'} 1646 | dependencies: 1647 | to-regex-range: 5.0.1 1648 | dev: true 1649 | 1650 | /find-up-simple@1.0.0: 1651 | resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} 1652 | engines: {node: '>=18'} 1653 | dev: true 1654 | 1655 | /find-up@2.1.0: 1656 | resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} 1657 | engines: {node: '>=4'} 1658 | dependencies: 1659 | locate-path: 2.0.0 1660 | dev: true 1661 | 1662 | /find-up@5.0.0: 1663 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1664 | engines: {node: '>=10'} 1665 | dependencies: 1666 | locate-path: 6.0.0 1667 | path-exists: 4.0.0 1668 | dev: true 1669 | 1670 | /find-up@6.3.0: 1671 | resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} 1672 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1673 | dependencies: 1674 | locate-path: 7.2.0 1675 | path-exists: 5.0.0 1676 | dev: true 1677 | 1678 | /find-versions@5.1.0: 1679 | resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} 1680 | engines: {node: '>=12'} 1681 | dependencies: 1682 | semver-regex: 4.0.5 1683 | dev: true 1684 | 1685 | /flat-cache@3.0.4: 1686 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1687 | engines: {node: ^10.12.0 || >=12.0.0} 1688 | dependencies: 1689 | flatted: 3.2.7 1690 | rimraf: 3.0.2 1691 | dev: true 1692 | 1693 | /flatted@3.2.7: 1694 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1695 | dev: true 1696 | 1697 | /from2@2.3.0: 1698 | resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==} 1699 | dependencies: 1700 | inherits: 2.0.4 1701 | readable-stream: 2.3.7 1702 | dev: true 1703 | 1704 | /fs-extra@11.1.1: 1705 | resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} 1706 | engines: {node: '>=14.14'} 1707 | dependencies: 1708 | graceful-fs: 4.2.10 1709 | jsonfile: 6.1.0 1710 | universalify: 2.0.0 1711 | dev: true 1712 | 1713 | /fs.realpath@1.0.0: 1714 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1715 | dev: true 1716 | 1717 | /fsevents@2.3.3: 1718 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1719 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1720 | os: [darwin] 1721 | requiresBuild: true 1722 | dev: true 1723 | optional: true 1724 | 1725 | /function-bind@1.1.1: 1726 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1727 | dev: true 1728 | 1729 | /get-caller-file@2.0.5: 1730 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 1731 | engines: {node: 6.* || 8.* || >= 10.*} 1732 | dev: true 1733 | 1734 | /get-stream@6.0.1: 1735 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1736 | engines: {node: '>=10'} 1737 | dev: true 1738 | 1739 | /get-stream@7.0.1: 1740 | resolution: {integrity: sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==} 1741 | engines: {node: '>=16'} 1742 | dev: true 1743 | 1744 | /get-stream@8.0.1: 1745 | resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 1746 | engines: {node: '>=16'} 1747 | dev: true 1748 | 1749 | /git-log-parser@1.2.0: 1750 | resolution: {integrity: sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==} 1751 | dependencies: 1752 | argv-formatter: 1.0.0 1753 | spawn-error-forwarder: 1.0.0 1754 | split2: 1.0.0 1755 | stream-combiner2: 1.1.1 1756 | through2: 2.0.5 1757 | traverse: 0.6.7 1758 | dev: true 1759 | 1760 | /glob-parent@5.1.2: 1761 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1762 | engines: {node: '>= 6'} 1763 | dependencies: 1764 | is-glob: 4.0.3 1765 | dev: true 1766 | 1767 | /glob-parent@6.0.2: 1768 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1769 | engines: {node: '>=10.13.0'} 1770 | dependencies: 1771 | is-glob: 4.0.3 1772 | dev: true 1773 | 1774 | /glob@7.2.3: 1775 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1776 | dependencies: 1777 | fs.realpath: 1.0.0 1778 | inflight: 1.0.6 1779 | inherits: 2.0.4 1780 | minimatch: 3.1.2 1781 | once: 1.4.0 1782 | path-is-absolute: 1.0.1 1783 | dev: true 1784 | 1785 | /globals@13.20.0: 1786 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 1787 | engines: {node: '>=8'} 1788 | dependencies: 1789 | type-fest: 0.20.2 1790 | dev: true 1791 | 1792 | /globby@11.1.0: 1793 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1794 | engines: {node: '>=10'} 1795 | dependencies: 1796 | array-union: 2.1.0 1797 | dir-glob: 3.0.1 1798 | fast-glob: 3.2.12 1799 | ignore: 5.2.0 1800 | merge2: 1.4.1 1801 | slash: 3.0.0 1802 | dev: true 1803 | 1804 | /globby@13.2.1: 1805 | resolution: {integrity: sha512-DPCBxctI7dN4EeIqjW2KGqgdcUMbrhJ9AzON+PlxCtvppWhubTLD4+a0GFxiym14ZvacUydTPjLPc2DlKz7EIg==} 1806 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1807 | dependencies: 1808 | dir-glob: 3.0.1 1809 | fast-glob: 3.2.12 1810 | ignore: 5.2.0 1811 | merge2: 1.4.1 1812 | slash: 4.0.0 1813 | dev: true 1814 | 1815 | /graceful-fs@4.2.10: 1816 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 1817 | dev: true 1818 | 1819 | /graphemer@1.4.0: 1820 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1821 | dev: true 1822 | 1823 | /handlebars@4.7.7: 1824 | resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} 1825 | engines: {node: '>=0.4.7'} 1826 | hasBin: true 1827 | dependencies: 1828 | minimist: 1.2.7 1829 | neo-async: 2.6.2 1830 | source-map: 0.6.1 1831 | wordwrap: 1.0.0 1832 | optionalDependencies: 1833 | uglify-js: 3.17.4 1834 | dev: true 1835 | 1836 | /has-flag@3.0.0: 1837 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1838 | engines: {node: '>=4'} 1839 | dev: true 1840 | 1841 | /has-flag@4.0.0: 1842 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1843 | engines: {node: '>=8'} 1844 | dev: true 1845 | 1846 | /has@1.0.3: 1847 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1848 | engines: {node: '>= 0.4.0'} 1849 | dependencies: 1850 | function-bind: 1.1.1 1851 | dev: true 1852 | 1853 | /highlight.js@10.7.3: 1854 | resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} 1855 | dev: true 1856 | 1857 | /hook-std@3.0.0: 1858 | resolution: {integrity: sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==} 1859 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1860 | dev: true 1861 | 1862 | /hosted-git-info@6.1.1: 1863 | resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==} 1864 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 1865 | dependencies: 1866 | lru-cache: 7.18.3 1867 | dev: true 1868 | 1869 | /hosted-git-info@7.0.0: 1870 | resolution: {integrity: sha512-ICclEpTLhHj+zCuSb2/usoNXSVkxUSIopre+b1w8NDY9Dntp9LO4vLdHYI336TH8sAqwrRgnSfdkBG2/YpisHA==} 1871 | engines: {node: ^16.14.0 || >=18.0.0} 1872 | dependencies: 1873 | lru-cache: 10.0.1 1874 | dev: true 1875 | 1876 | /http-proxy-agent@7.0.0: 1877 | resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==} 1878 | engines: {node: '>= 14'} 1879 | dependencies: 1880 | agent-base: 7.1.0 1881 | debug: 4.3.4 1882 | transitivePeerDependencies: 1883 | - supports-color 1884 | dev: true 1885 | 1886 | /https-proxy-agent@7.0.0: 1887 | resolution: {integrity: sha512-0euwPCRyAPSgGdzD1IVN9nJYHtBhJwb6XPfbpQcYbPCwrBidX6GzxmchnaF4sfF/jPb74Ojx5g4yTg3sixlyPw==} 1888 | engines: {node: '>= 14'} 1889 | dependencies: 1890 | agent-base: 7.1.0 1891 | debug: 4.3.4 1892 | transitivePeerDependencies: 1893 | - supports-color 1894 | dev: true 1895 | 1896 | /human-signals@2.1.0: 1897 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 1898 | engines: {node: '>=10.17.0'} 1899 | dev: true 1900 | 1901 | /human-signals@5.0.0: 1902 | resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 1903 | engines: {node: '>=16.17.0'} 1904 | dev: true 1905 | 1906 | /ignore@5.2.0: 1907 | resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} 1908 | engines: {node: '>= 4'} 1909 | dev: true 1910 | 1911 | /import-fresh@3.3.0: 1912 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1913 | engines: {node: '>=6'} 1914 | dependencies: 1915 | parent-module: 1.0.1 1916 | resolve-from: 4.0.0 1917 | dev: true 1918 | 1919 | /import-from-esm@1.3.3: 1920 | resolution: {integrity: sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==} 1921 | engines: {node: '>=16.20'} 1922 | dependencies: 1923 | debug: 4.3.4 1924 | import-meta-resolve: 4.0.0 1925 | transitivePeerDependencies: 1926 | - supports-color 1927 | dev: true 1928 | 1929 | /import-from@4.0.0: 1930 | resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} 1931 | engines: {node: '>=12.2'} 1932 | dev: true 1933 | 1934 | /import-meta-resolve@4.0.0: 1935 | resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==} 1936 | dev: true 1937 | 1938 | /imurmurhash@0.1.4: 1939 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1940 | engines: {node: '>=0.8.19'} 1941 | dev: true 1942 | 1943 | /indent-string@4.0.0: 1944 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1945 | engines: {node: '>=8'} 1946 | dev: true 1947 | 1948 | /indent-string@5.0.0: 1949 | resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} 1950 | engines: {node: '>=12'} 1951 | dev: true 1952 | 1953 | /index-to-position@0.1.2: 1954 | resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==} 1955 | engines: {node: '>=18'} 1956 | dev: true 1957 | 1958 | /inflight@1.0.6: 1959 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1960 | dependencies: 1961 | once: 1.4.0 1962 | wrappy: 1.0.2 1963 | dev: true 1964 | 1965 | /inherits@2.0.3: 1966 | resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} 1967 | dev: false 1968 | 1969 | /inherits@2.0.4: 1970 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1971 | dev: true 1972 | 1973 | /ini@1.3.8: 1974 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1975 | dev: true 1976 | 1977 | /into-stream@7.0.0: 1978 | resolution: {integrity: sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==} 1979 | engines: {node: '>=12'} 1980 | dependencies: 1981 | from2: 2.3.0 1982 | p-is-promise: 3.0.0 1983 | dev: true 1984 | 1985 | /is-arrayish@0.2.1: 1986 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1987 | dev: true 1988 | 1989 | /is-core-module@2.11.0: 1990 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} 1991 | dependencies: 1992 | has: 1.0.3 1993 | dev: true 1994 | 1995 | /is-extglob@2.1.1: 1996 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1997 | engines: {node: '>=0.10.0'} 1998 | dev: true 1999 | 2000 | /is-fullwidth-code-point@3.0.0: 2001 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2002 | engines: {node: '>=8'} 2003 | dev: true 2004 | 2005 | /is-glob@4.0.3: 2006 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2007 | engines: {node: '>=0.10.0'} 2008 | dependencies: 2009 | is-extglob: 2.1.1 2010 | dev: true 2011 | 2012 | /is-number@7.0.0: 2013 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2014 | engines: {node: '>=0.12.0'} 2015 | dev: true 2016 | 2017 | /is-obj@2.0.0: 2018 | resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} 2019 | engines: {node: '>=8'} 2020 | dev: true 2021 | 2022 | /is-path-inside@3.0.3: 2023 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 2024 | engines: {node: '>=8'} 2025 | dev: true 2026 | 2027 | /is-plain-object@5.0.0: 2028 | resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} 2029 | engines: {node: '>=0.10.0'} 2030 | dev: true 2031 | 2032 | /is-stream@2.0.1: 2033 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 2034 | engines: {node: '>=8'} 2035 | dev: true 2036 | 2037 | /is-stream@3.0.0: 2038 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 2039 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2040 | dev: true 2041 | 2042 | /is-text-path@2.0.0: 2043 | resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} 2044 | engines: {node: '>=8'} 2045 | dependencies: 2046 | text-extensions: 2.4.0 2047 | dev: true 2048 | 2049 | /is-unicode-supported@2.0.0: 2050 | resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==} 2051 | engines: {node: '>=18'} 2052 | dev: true 2053 | 2054 | /isarray@1.0.0: 2055 | resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 2056 | dev: true 2057 | 2058 | /isexe@2.0.0: 2059 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 2060 | dev: true 2061 | 2062 | /issue-parser@6.0.0: 2063 | resolution: {integrity: sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==} 2064 | engines: {node: '>=10.13'} 2065 | dependencies: 2066 | lodash.capitalize: 4.2.1 2067 | lodash.escaperegexp: 4.1.2 2068 | lodash.isplainobject: 4.0.6 2069 | lodash.isstring: 4.0.1 2070 | lodash.uniqby: 4.7.0 2071 | dev: true 2072 | 2073 | /java-properties@1.0.2: 2074 | resolution: {integrity: sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==} 2075 | engines: {node: '>= 0.6.0'} 2076 | dev: true 2077 | 2078 | /js-tokens@4.0.0: 2079 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2080 | dev: true 2081 | 2082 | /js-yaml@4.1.0: 2083 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2084 | hasBin: true 2085 | dependencies: 2086 | argparse: 2.0.1 2087 | dev: true 2088 | 2089 | /json-parse-better-errors@1.0.2: 2090 | resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} 2091 | dev: true 2092 | 2093 | /json-parse-even-better-errors@2.3.1: 2094 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 2095 | dev: true 2096 | 2097 | /json-parse-even-better-errors@3.0.0: 2098 | resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==} 2099 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 2100 | dev: true 2101 | 2102 | /json-schema-traverse@0.4.1: 2103 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2104 | dev: true 2105 | 2106 | /json-stable-stringify-without-jsonify@1.0.1: 2107 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 2108 | dev: true 2109 | 2110 | /json-stringify-safe@5.0.1: 2111 | resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} 2112 | dev: true 2113 | 2114 | /jsonfile@6.1.0: 2115 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 2116 | dependencies: 2117 | universalify: 2.0.0 2118 | optionalDependencies: 2119 | graceful-fs: 4.2.10 2120 | dev: true 2121 | 2122 | /jsonparse@1.3.1: 2123 | resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} 2124 | engines: {'0': node >= 0.2.0} 2125 | dev: true 2126 | 2127 | /levn@0.4.1: 2128 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2129 | engines: {node: '>= 0.8.0'} 2130 | dependencies: 2131 | prelude-ls: 1.2.1 2132 | type-check: 0.4.0 2133 | dev: true 2134 | 2135 | /lines-and-columns@1.2.4: 2136 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 2137 | dev: true 2138 | 2139 | /lines-and-columns@2.0.3: 2140 | resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} 2141 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2142 | dev: true 2143 | 2144 | /load-json-file@4.0.0: 2145 | resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} 2146 | engines: {node: '>=4'} 2147 | dependencies: 2148 | graceful-fs: 4.2.10 2149 | parse-json: 4.0.0 2150 | pify: 3.0.0 2151 | strip-bom: 3.0.0 2152 | dev: true 2153 | 2154 | /locate-path@2.0.0: 2155 | resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} 2156 | engines: {node: '>=4'} 2157 | dependencies: 2158 | p-locate: 2.0.0 2159 | path-exists: 3.0.0 2160 | dev: true 2161 | 2162 | /locate-path@6.0.0: 2163 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2164 | engines: {node: '>=10'} 2165 | dependencies: 2166 | p-locate: 5.0.0 2167 | dev: true 2168 | 2169 | /locate-path@7.2.0: 2170 | resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} 2171 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2172 | dependencies: 2173 | p-locate: 6.0.0 2174 | dev: true 2175 | 2176 | /lodash-es@4.17.21: 2177 | resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} 2178 | 2179 | /lodash.capitalize@4.2.1: 2180 | resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==} 2181 | dev: true 2182 | 2183 | /lodash.escaperegexp@4.1.2: 2184 | resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} 2185 | dev: true 2186 | 2187 | /lodash.isplainobject@4.0.6: 2188 | resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} 2189 | dev: true 2190 | 2191 | /lodash.isstring@4.0.1: 2192 | resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} 2193 | dev: true 2194 | 2195 | /lodash.merge@4.6.2: 2196 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2197 | dev: true 2198 | 2199 | /lodash.uniqby@4.7.0: 2200 | resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==} 2201 | dev: true 2202 | 2203 | /lodash@4.17.21: 2204 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2205 | dev: true 2206 | 2207 | /lower-case@2.0.2: 2208 | resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 2209 | dependencies: 2210 | tslib: 2.4.1 2211 | dev: false 2212 | 2213 | /lru-cache@10.0.1: 2214 | resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==} 2215 | engines: {node: 14 || >=16.14} 2216 | dev: true 2217 | 2218 | /lru-cache@6.0.0: 2219 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2220 | engines: {node: '>=10'} 2221 | dependencies: 2222 | yallist: 4.0.0 2223 | dev: true 2224 | 2225 | /lru-cache@7.18.3: 2226 | resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} 2227 | engines: {node: '>=12'} 2228 | dev: true 2229 | 2230 | /magic-string@0.26.7: 2231 | resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} 2232 | engines: {node: '>=12'} 2233 | dependencies: 2234 | sourcemap-codec: 1.4.8 2235 | dev: true 2236 | 2237 | /marked-terminal@7.0.0(marked@12.0.0): 2238 | resolution: {integrity: sha512-sNEx8nn9Ktcm6pL0TnRz8tnXq/mSS0Q1FRSwJOAqw4lAB4l49UeDf85Gm1n9RPFm5qurCPjwi1StAQT2XExhZw==} 2239 | engines: {node: '>=16.0.0'} 2240 | peerDependencies: 2241 | marked: '>=1 <13' 2242 | dependencies: 2243 | ansi-escapes: 6.2.0 2244 | chalk: 5.3.0 2245 | cli-highlight: 2.1.11 2246 | cli-table3: 0.6.3 2247 | marked: 12.0.0 2248 | node-emoji: 2.1.3 2249 | supports-hyperlinks: 3.0.0 2250 | dev: true 2251 | 2252 | /marked@12.0.0: 2253 | resolution: {integrity: sha512-Vkwtq9rLqXryZnWaQc86+FHLC6tr/fycMfYAhiOIXkrNmeGAyhSxjqu0Rs1i0bBqw5u0S7+lV9fdH2ZSVaoa0w==} 2254 | engines: {node: '>= 18'} 2255 | hasBin: true 2256 | dev: true 2257 | 2258 | /meow@12.1.1: 2259 | resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} 2260 | engines: {node: '>=16.10'} 2261 | dev: true 2262 | 2263 | /merge-stream@2.0.0: 2264 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2265 | dev: true 2266 | 2267 | /merge2@1.4.1: 2268 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2269 | engines: {node: '>= 8'} 2270 | dev: true 2271 | 2272 | /micromatch@4.0.5: 2273 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 2274 | engines: {node: '>=8.6'} 2275 | dependencies: 2276 | braces: 3.0.2 2277 | picomatch: 2.3.1 2278 | dev: true 2279 | 2280 | /mime@3.0.0: 2281 | resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} 2282 | engines: {node: '>=10.0.0'} 2283 | hasBin: true 2284 | dev: true 2285 | 2286 | /mimic-fn@2.1.0: 2287 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 2288 | engines: {node: '>=6'} 2289 | dev: true 2290 | 2291 | /mimic-fn@4.0.0: 2292 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 2293 | engines: {node: '>=12'} 2294 | dev: true 2295 | 2296 | /minimatch@3.1.2: 2297 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 2298 | dependencies: 2299 | brace-expansion: 1.1.11 2300 | dev: true 2301 | 2302 | /minimist@1.2.7: 2303 | resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} 2304 | dev: true 2305 | 2306 | /ms@2.1.2: 2307 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2308 | 2309 | /mz@2.7.0: 2310 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 2311 | dependencies: 2312 | any-promise: 1.3.0 2313 | object-assign: 4.1.1 2314 | thenify-all: 1.6.0 2315 | dev: true 2316 | 2317 | /nanoid@3.3.7: 2318 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 2319 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2320 | hasBin: true 2321 | dev: true 2322 | 2323 | /natural-compare-lite@1.4.0: 2324 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} 2325 | dev: true 2326 | 2327 | /natural-compare@1.4.0: 2328 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2329 | dev: true 2330 | 2331 | /neo-async@2.6.2: 2332 | resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} 2333 | dev: true 2334 | 2335 | /nerf-dart@1.0.0: 2336 | resolution: {integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==} 2337 | dev: true 2338 | 2339 | /no-case@3.0.4: 2340 | resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 2341 | dependencies: 2342 | lower-case: 2.0.2 2343 | tslib: 2.4.1 2344 | dev: false 2345 | 2346 | /node-emoji@2.1.3: 2347 | resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==} 2348 | engines: {node: '>=18'} 2349 | dependencies: 2350 | '@sindresorhus/is': 4.6.0 2351 | char-regex: 1.0.2 2352 | emojilib: 2.4.0 2353 | skin-tone: 2.0.0 2354 | dev: true 2355 | 2356 | /node-fetch@2.6.7: 2357 | resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} 2358 | engines: {node: 4.x || >=6.0.0} 2359 | peerDependencies: 2360 | encoding: ^0.1.0 2361 | peerDependenciesMeta: 2362 | encoding: 2363 | optional: true 2364 | dependencies: 2365 | whatwg-url: 5.0.0 2366 | dev: true 2367 | 2368 | /normalize-package-data@5.0.0: 2369 | resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} 2370 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 2371 | dependencies: 2372 | hosted-git-info: 6.1.1 2373 | is-core-module: 2.11.0 2374 | semver: 7.5.4 2375 | validate-npm-package-license: 3.0.4 2376 | dev: true 2377 | 2378 | /normalize-package-data@6.0.0: 2379 | resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==} 2380 | engines: {node: ^16.14.0 || >=18.0.0} 2381 | dependencies: 2382 | hosted-git-info: 7.0.0 2383 | is-core-module: 2.11.0 2384 | semver: 7.5.4 2385 | validate-npm-package-license: 3.0.4 2386 | dev: true 2387 | 2388 | /normalize-url@8.0.0: 2389 | resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==} 2390 | engines: {node: '>=14.16'} 2391 | dev: true 2392 | 2393 | /npm-run-path@4.0.1: 2394 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 2395 | engines: {node: '>=8'} 2396 | dependencies: 2397 | path-key: 3.1.1 2398 | dev: true 2399 | 2400 | /npm-run-path@5.1.0: 2401 | resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} 2402 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2403 | dependencies: 2404 | path-key: 4.0.0 2405 | dev: true 2406 | 2407 | /npm@10.1.0: 2408 | resolution: {integrity: sha512-pZ2xybXzNGbJFZEKNbPoEXsE38Xou9VTnxxBk+B3pz0ndsGCs7iWHoUCPSsISU2hjmkWfDkJo3bYKE8RDOg4eg==} 2409 | engines: {node: ^18.17.0 || >=20.5.0} 2410 | hasBin: true 2411 | dev: true 2412 | bundledDependencies: 2413 | - '@isaacs/string-locale-compare' 2414 | - '@npmcli/arborist' 2415 | - '@npmcli/config' 2416 | - '@npmcli/fs' 2417 | - '@npmcli/map-workspaces' 2418 | - '@npmcli/package-json' 2419 | - '@npmcli/promise-spawn' 2420 | - '@npmcli/run-script' 2421 | - '@sigstore/tuf' 2422 | - abbrev 2423 | - archy 2424 | - cacache 2425 | - chalk 2426 | - ci-info 2427 | - cli-columns 2428 | - cli-table3 2429 | - columnify 2430 | - fastest-levenshtein 2431 | - fs-minipass 2432 | - glob 2433 | - graceful-fs 2434 | - hosted-git-info 2435 | - ini 2436 | - init-package-json 2437 | - is-cidr 2438 | - json-parse-even-better-errors 2439 | - libnpmaccess 2440 | - libnpmdiff 2441 | - libnpmexec 2442 | - libnpmfund 2443 | - libnpmhook 2444 | - libnpmorg 2445 | - libnpmpack 2446 | - libnpmpublish 2447 | - libnpmsearch 2448 | - libnpmteam 2449 | - libnpmversion 2450 | - make-fetch-happen 2451 | - minimatch 2452 | - minipass 2453 | - minipass-pipeline 2454 | - ms 2455 | - node-gyp 2456 | - nopt 2457 | - npm-audit-report 2458 | - npm-install-checks 2459 | - npm-package-arg 2460 | - npm-pick-manifest 2461 | - npm-profile 2462 | - npm-registry-fetch 2463 | - npm-user-validate 2464 | - npmlog 2465 | - p-map 2466 | - pacote 2467 | - parse-conflict-json 2468 | - proc-log 2469 | - qrcode-terminal 2470 | - read 2471 | - semver 2472 | - ssri 2473 | - supports-color 2474 | - tar 2475 | - text-table 2476 | - tiny-relative-date 2477 | - treeverse 2478 | - validate-npm-package-name 2479 | - which 2480 | - write-file-atomic 2481 | 2482 | /object-assign@4.1.1: 2483 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 2484 | engines: {node: '>=0.10.0'} 2485 | dev: true 2486 | 2487 | /once@1.4.0: 2488 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2489 | dependencies: 2490 | wrappy: 1.0.2 2491 | dev: true 2492 | 2493 | /onetime@5.1.2: 2494 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 2495 | engines: {node: '>=6'} 2496 | dependencies: 2497 | mimic-fn: 2.1.0 2498 | dev: true 2499 | 2500 | /onetime@6.0.0: 2501 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 2502 | engines: {node: '>=12'} 2503 | dependencies: 2504 | mimic-fn: 4.0.0 2505 | dev: true 2506 | 2507 | /optionator@0.9.3: 2508 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 2509 | engines: {node: '>= 0.8.0'} 2510 | dependencies: 2511 | '@aashutoshrathi/word-wrap': 1.2.6 2512 | deep-is: 0.1.4 2513 | fast-levenshtein: 2.0.6 2514 | levn: 0.4.1 2515 | prelude-ls: 1.2.1 2516 | type-check: 0.4.0 2517 | dev: true 2518 | 2519 | /p-each-series@3.0.0: 2520 | resolution: {integrity: sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==} 2521 | engines: {node: '>=12'} 2522 | dev: true 2523 | 2524 | /p-filter@3.0.0: 2525 | resolution: {integrity: sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==} 2526 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2527 | dependencies: 2528 | p-map: 5.5.0 2529 | dev: true 2530 | 2531 | /p-is-promise@3.0.0: 2532 | resolution: {integrity: sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==} 2533 | engines: {node: '>=8'} 2534 | dev: true 2535 | 2536 | /p-limit@1.3.0: 2537 | resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} 2538 | engines: {node: '>=4'} 2539 | dependencies: 2540 | p-try: 1.0.0 2541 | dev: true 2542 | 2543 | /p-limit@3.1.0: 2544 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2545 | engines: {node: '>=10'} 2546 | dependencies: 2547 | yocto-queue: 0.1.0 2548 | dev: true 2549 | 2550 | /p-limit@4.0.0: 2551 | resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} 2552 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2553 | dependencies: 2554 | yocto-queue: 1.0.0 2555 | dev: true 2556 | 2557 | /p-locate@2.0.0: 2558 | resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} 2559 | engines: {node: '>=4'} 2560 | dependencies: 2561 | p-limit: 1.3.0 2562 | dev: true 2563 | 2564 | /p-locate@5.0.0: 2565 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2566 | engines: {node: '>=10'} 2567 | dependencies: 2568 | p-limit: 3.1.0 2569 | dev: true 2570 | 2571 | /p-locate@6.0.0: 2572 | resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} 2573 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2574 | dependencies: 2575 | p-limit: 4.0.0 2576 | dev: true 2577 | 2578 | /p-map@5.5.0: 2579 | resolution: {integrity: sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==} 2580 | engines: {node: '>=12'} 2581 | dependencies: 2582 | aggregate-error: 4.0.1 2583 | dev: true 2584 | 2585 | /p-reduce@2.1.0: 2586 | resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} 2587 | engines: {node: '>=8'} 2588 | dev: true 2589 | 2590 | /p-reduce@3.0.0: 2591 | resolution: {integrity: sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==} 2592 | engines: {node: '>=12'} 2593 | dev: true 2594 | 2595 | /p-try@1.0.0: 2596 | resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} 2597 | engines: {node: '>=4'} 2598 | dev: true 2599 | 2600 | /parent-module@1.0.1: 2601 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2602 | engines: {node: '>=6'} 2603 | dependencies: 2604 | callsites: 3.1.0 2605 | dev: true 2606 | 2607 | /parse-json@4.0.0: 2608 | resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} 2609 | engines: {node: '>=4'} 2610 | dependencies: 2611 | error-ex: 1.3.2 2612 | json-parse-better-errors: 1.0.2 2613 | dev: true 2614 | 2615 | /parse-json@5.2.0: 2616 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 2617 | engines: {node: '>=8'} 2618 | dependencies: 2619 | '@babel/code-frame': 7.22.5 2620 | error-ex: 1.3.2 2621 | json-parse-even-better-errors: 2.3.1 2622 | lines-and-columns: 1.2.4 2623 | dev: true 2624 | 2625 | /parse-json@7.0.0: 2626 | resolution: {integrity: sha512-kP+TQYAzAiVnzOlWOe0diD6L35s9bJh0SCn95PIbZFKrOYuIRQsQkeWEYxzVDuHTt9V9YqvYCJ2Qo4z9wdfZPw==} 2627 | engines: {node: '>=16'} 2628 | dependencies: 2629 | '@babel/code-frame': 7.22.13 2630 | error-ex: 1.3.2 2631 | json-parse-even-better-errors: 3.0.0 2632 | lines-and-columns: 2.0.3 2633 | type-fest: 3.12.0 2634 | dev: true 2635 | 2636 | /parse-json@8.0.1: 2637 | resolution: {integrity: sha512-soKUg/q/8bcfuF3+plsbYldE74cVEVEPSC1BUPIGTaX1byXdz6Fo+CVYBdH0jj/5xWsFrNRksl11QkBgHqPQeQ==} 2638 | engines: {node: '>=18'} 2639 | dependencies: 2640 | '@babel/code-frame': 7.22.13 2641 | index-to-position: 0.1.2 2642 | json-parse-even-better-errors: 3.0.0 2643 | type-fest: 4.7.1 2644 | dev: true 2645 | 2646 | /parse5-htmlparser2-tree-adapter@6.0.1: 2647 | resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} 2648 | dependencies: 2649 | parse5: 6.0.1 2650 | dev: true 2651 | 2652 | /parse5@5.1.1: 2653 | resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} 2654 | dev: true 2655 | 2656 | /parse5@6.0.1: 2657 | resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} 2658 | dev: true 2659 | 2660 | /path-exists@3.0.0: 2661 | resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} 2662 | engines: {node: '>=4'} 2663 | dev: true 2664 | 2665 | /path-exists@4.0.0: 2666 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2667 | engines: {node: '>=8'} 2668 | dev: true 2669 | 2670 | /path-exists@5.0.0: 2671 | resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} 2672 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2673 | dev: true 2674 | 2675 | /path-is-absolute@1.0.1: 2676 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2677 | engines: {node: '>=0.10.0'} 2678 | dev: true 2679 | 2680 | /path-key@3.1.1: 2681 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2682 | engines: {node: '>=8'} 2683 | dev: true 2684 | 2685 | /path-key@4.0.0: 2686 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 2687 | engines: {node: '>=12'} 2688 | dev: true 2689 | 2690 | /path-type@4.0.0: 2691 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2692 | engines: {node: '>=8'} 2693 | dev: true 2694 | 2695 | /path@0.12.7: 2696 | resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} 2697 | dependencies: 2698 | process: 0.11.10 2699 | util: 0.10.4 2700 | dev: false 2701 | 2702 | /picocolors@1.0.0: 2703 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2704 | dev: true 2705 | 2706 | /picomatch@2.3.1: 2707 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2708 | engines: {node: '>=8.6'} 2709 | dev: true 2710 | 2711 | /pify@3.0.0: 2712 | resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} 2713 | engines: {node: '>=4'} 2714 | dev: true 2715 | 2716 | /pkg-conf@2.1.0: 2717 | resolution: {integrity: sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==} 2718 | engines: {node: '>=4'} 2719 | dependencies: 2720 | find-up: 2.1.0 2721 | load-json-file: 4.0.0 2722 | dev: true 2723 | 2724 | /postcss@8.4.35: 2725 | resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==} 2726 | engines: {node: ^10 || ^12 || >=14} 2727 | dependencies: 2728 | nanoid: 3.3.7 2729 | picocolors: 1.0.0 2730 | source-map-js: 1.0.2 2731 | dev: true 2732 | 2733 | /prelude-ls@1.2.1: 2734 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2735 | engines: {node: '>= 0.8.0'} 2736 | dev: true 2737 | 2738 | /process-nextick-args@2.0.1: 2739 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 2740 | dev: true 2741 | 2742 | /process@0.11.10: 2743 | resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 2744 | engines: {node: '>= 0.6.0'} 2745 | dev: false 2746 | 2747 | /proto-list@1.2.4: 2748 | resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} 2749 | dev: true 2750 | 2751 | /punycode@2.1.1: 2752 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 2753 | engines: {node: '>=6'} 2754 | dev: true 2755 | 2756 | /queue-microtask@1.2.3: 2757 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2758 | dev: true 2759 | 2760 | /rc@1.2.8: 2761 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 2762 | hasBin: true 2763 | dependencies: 2764 | deep-extend: 0.6.0 2765 | ini: 1.3.8 2766 | minimist: 1.2.7 2767 | strip-json-comments: 2.0.1 2768 | dev: true 2769 | 2770 | /read-pkg-up@10.0.0: 2771 | resolution: {integrity: sha512-jgmKiS//w2Zs+YbX039CorlkOp8FIVbSAN8r8GJHDsGlmNPXo+VeHkqAwCiQVTTx5/LwLZTcEw59z3DvcLbr0g==} 2772 | engines: {node: '>=16'} 2773 | dependencies: 2774 | find-up: 6.3.0 2775 | read-pkg: 8.0.0 2776 | type-fest: 3.12.0 2777 | dev: true 2778 | 2779 | /read-pkg-up@11.0.0: 2780 | resolution: {integrity: sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==} 2781 | engines: {node: '>=18'} 2782 | deprecated: Renamed to read-package-up 2783 | dependencies: 2784 | find-up-simple: 1.0.0 2785 | read-pkg: 9.0.0 2786 | type-fest: 4.7.1 2787 | dev: true 2788 | 2789 | /read-pkg@8.0.0: 2790 | resolution: {integrity: sha512-Ajb9oSjxXBw0YyOiwtQ2dKbAA/vMnUPnY63XcCk+mXo0BwIdQEMgZLZiMWGttQHcUhUgbK0mH85ethMPKXxziw==} 2791 | engines: {node: '>=16'} 2792 | dependencies: 2793 | '@types/normalize-package-data': 2.4.4 2794 | normalize-package-data: 5.0.0 2795 | parse-json: 7.0.0 2796 | type-fest: 3.12.0 2797 | dev: true 2798 | 2799 | /read-pkg@9.0.0: 2800 | resolution: {integrity: sha512-SBoBio4xhJmlF4xs9IBliWZGSbDAnrOfQkLGL7xB+RYEUZNAN2LlNkzO45B7gc7c2dLMX987bhHAaJ/LG3efeQ==} 2801 | engines: {node: '>=18'} 2802 | dependencies: 2803 | '@types/normalize-package-data': 2.4.4 2804 | normalize-package-data: 6.0.0 2805 | parse-json: 8.0.1 2806 | type-fest: 4.7.1 2807 | dev: true 2808 | 2809 | /readable-stream@2.3.7: 2810 | resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} 2811 | dependencies: 2812 | core-util-is: 1.0.3 2813 | inherits: 2.0.4 2814 | isarray: 1.0.0 2815 | process-nextick-args: 2.0.1 2816 | safe-buffer: 5.1.2 2817 | string_decoder: 1.1.1 2818 | util-deprecate: 1.0.2 2819 | dev: true 2820 | 2821 | /registry-auth-token@5.0.2: 2822 | resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} 2823 | engines: {node: '>=14'} 2824 | dependencies: 2825 | '@pnpm/npm-conf': 2.2.2 2826 | dev: true 2827 | 2828 | /require-directory@2.1.1: 2829 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 2830 | engines: {node: '>=0.10.0'} 2831 | dev: true 2832 | 2833 | /resolve-from@4.0.0: 2834 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2835 | engines: {node: '>=4'} 2836 | dev: true 2837 | 2838 | /resolve-from@5.0.0: 2839 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 2840 | engines: {node: '>=8'} 2841 | dev: true 2842 | 2843 | /reusify@1.0.4: 2844 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2845 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2846 | dev: true 2847 | 2848 | /rimraf@3.0.2: 2849 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2850 | hasBin: true 2851 | dependencies: 2852 | glob: 7.2.3 2853 | dev: true 2854 | 2855 | /rollup@4.8.0: 2856 | resolution: {integrity: sha512-NpsklK2fach5CdI+PScmlE5R4Ao/FSWtF7LkoIrHDxPACY/xshNasPsbpG0VVHxUTbf74tJbVT4PrP8JsJ6ZDA==} 2857 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 2858 | hasBin: true 2859 | optionalDependencies: 2860 | '@rollup/rollup-android-arm-eabi': 4.8.0 2861 | '@rollup/rollup-android-arm64': 4.8.0 2862 | '@rollup/rollup-darwin-arm64': 4.8.0 2863 | '@rollup/rollup-darwin-x64': 4.8.0 2864 | '@rollup/rollup-linux-arm-gnueabihf': 4.8.0 2865 | '@rollup/rollup-linux-arm64-gnu': 4.8.0 2866 | '@rollup/rollup-linux-arm64-musl': 4.8.0 2867 | '@rollup/rollup-linux-riscv64-gnu': 4.8.0 2868 | '@rollup/rollup-linux-x64-gnu': 4.8.0 2869 | '@rollup/rollup-linux-x64-musl': 4.8.0 2870 | '@rollup/rollup-win32-arm64-msvc': 4.8.0 2871 | '@rollup/rollup-win32-ia32-msvc': 4.8.0 2872 | '@rollup/rollup-win32-x64-msvc': 4.8.0 2873 | fsevents: 2.3.3 2874 | dev: true 2875 | 2876 | /run-parallel@1.2.0: 2877 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2878 | dependencies: 2879 | queue-microtask: 1.2.3 2880 | dev: true 2881 | 2882 | /safe-buffer@5.1.2: 2883 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 2884 | dev: true 2885 | 2886 | /semantic-release@23.0.2(typescript@5.3.3): 2887 | resolution: {integrity: sha512-OnVYJ6Xgzwe1x8MKswba7RU9+5djS1MWRTrTn5qsq3xZYpslroZkV9Pt0dA2YcIuieeuSZWJhn+yUWoBUHO5Fw==} 2888 | engines: {node: '>=20.8.1'} 2889 | hasBin: true 2890 | dependencies: 2891 | '@semantic-release/commit-analyzer': 11.0.0(semantic-release@23.0.2) 2892 | '@semantic-release/error': 4.0.0 2893 | '@semantic-release/github': 9.0.3(semantic-release@23.0.2) 2894 | '@semantic-release/npm': 11.0.2(semantic-release@23.0.2) 2895 | '@semantic-release/release-notes-generator': 12.0.0(semantic-release@23.0.2) 2896 | aggregate-error: 5.0.0 2897 | cosmiconfig: 9.0.0(typescript@5.3.3) 2898 | debug: 4.3.4 2899 | env-ci: 11.0.0 2900 | execa: 8.0.1 2901 | figures: 6.0.1 2902 | find-versions: 5.1.0 2903 | get-stream: 6.0.1 2904 | git-log-parser: 1.2.0 2905 | hook-std: 3.0.0 2906 | hosted-git-info: 7.0.0 2907 | import-from-esm: 1.3.3 2908 | lodash-es: 4.17.21 2909 | marked: 12.0.0 2910 | marked-terminal: 7.0.0(marked@12.0.0) 2911 | micromatch: 4.0.5 2912 | p-each-series: 3.0.0 2913 | p-reduce: 3.0.0 2914 | read-pkg-up: 11.0.0 2915 | resolve-from: 5.0.0 2916 | semver: 7.5.4 2917 | semver-diff: 4.0.0 2918 | signale: 1.4.0 2919 | yargs: 17.7.2 2920 | transitivePeerDependencies: 2921 | - encoding 2922 | - supports-color 2923 | - typescript 2924 | dev: true 2925 | 2926 | /semver-diff@4.0.0: 2927 | resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} 2928 | engines: {node: '>=12'} 2929 | dependencies: 2930 | semver: 7.5.4 2931 | dev: true 2932 | 2933 | /semver-regex@4.0.5: 2934 | resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} 2935 | engines: {node: '>=12'} 2936 | dev: true 2937 | 2938 | /semver@7.3.8: 2939 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} 2940 | engines: {node: '>=10'} 2941 | hasBin: true 2942 | dependencies: 2943 | lru-cache: 6.0.0 2944 | dev: true 2945 | 2946 | /semver@7.5.4: 2947 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 2948 | engines: {node: '>=10'} 2949 | hasBin: true 2950 | dependencies: 2951 | lru-cache: 6.0.0 2952 | dev: true 2953 | 2954 | /shebang-command@2.0.0: 2955 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2956 | engines: {node: '>=8'} 2957 | dependencies: 2958 | shebang-regex: 3.0.0 2959 | dev: true 2960 | 2961 | /shebang-regex@3.0.0: 2962 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2963 | engines: {node: '>=8'} 2964 | dev: true 2965 | 2966 | /signal-exit@3.0.7: 2967 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2968 | dev: true 2969 | 2970 | /signal-exit@4.1.0: 2971 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 2972 | engines: {node: '>=14'} 2973 | dev: true 2974 | 2975 | /signale@1.4.0: 2976 | resolution: {integrity: sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==} 2977 | engines: {node: '>=6'} 2978 | dependencies: 2979 | chalk: 2.4.2 2980 | figures: 2.0.0 2981 | pkg-conf: 2.1.0 2982 | dev: true 2983 | 2984 | /skin-tone@2.0.0: 2985 | resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} 2986 | engines: {node: '>=8'} 2987 | dependencies: 2988 | unicode-emoji-modifier-base: 1.0.0 2989 | dev: true 2990 | 2991 | /slash@3.0.0: 2992 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2993 | engines: {node: '>=8'} 2994 | dev: true 2995 | 2996 | /slash@4.0.0: 2997 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 2998 | engines: {node: '>=12'} 2999 | dev: true 3000 | 3001 | /snake-case@3.0.4: 3002 | resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} 3003 | dependencies: 3004 | dot-case: 3.0.4 3005 | tslib: 2.4.1 3006 | dev: false 3007 | 3008 | /source-map-js@1.0.2: 3009 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 3010 | engines: {node: '>=0.10.0'} 3011 | dev: true 3012 | 3013 | /source-map@0.6.1: 3014 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 3015 | engines: {node: '>=0.10.0'} 3016 | dev: true 3017 | 3018 | /sourcemap-codec@1.4.8: 3019 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} 3020 | dev: true 3021 | 3022 | /spawn-error-forwarder@1.0.0: 3023 | resolution: {integrity: sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==} 3024 | dev: true 3025 | 3026 | /spdx-correct@3.1.1: 3027 | resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} 3028 | dependencies: 3029 | spdx-expression-parse: 3.0.1 3030 | spdx-license-ids: 3.0.12 3031 | dev: true 3032 | 3033 | /spdx-exceptions@2.3.0: 3034 | resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} 3035 | dev: true 3036 | 3037 | /spdx-expression-parse@3.0.1: 3038 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 3039 | dependencies: 3040 | spdx-exceptions: 2.3.0 3041 | spdx-license-ids: 3.0.12 3042 | dev: true 3043 | 3044 | /spdx-license-ids@3.0.12: 3045 | resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} 3046 | dev: true 3047 | 3048 | /split2@1.0.0: 3049 | resolution: {integrity: sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==} 3050 | dependencies: 3051 | through2: 2.0.5 3052 | dev: true 3053 | 3054 | /split2@4.2.0: 3055 | resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 3056 | engines: {node: '>= 10.x'} 3057 | dev: true 3058 | 3059 | /stream-combiner2@1.1.1: 3060 | resolution: {integrity: sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==} 3061 | dependencies: 3062 | duplexer2: 0.1.4 3063 | readable-stream: 2.3.7 3064 | dev: true 3065 | 3066 | /string-width@4.2.3: 3067 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 3068 | engines: {node: '>=8'} 3069 | dependencies: 3070 | emoji-regex: 8.0.0 3071 | is-fullwidth-code-point: 3.0.0 3072 | strip-ansi: 6.0.1 3073 | dev: true 3074 | 3075 | /string_decoder@1.1.1: 3076 | resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 3077 | dependencies: 3078 | safe-buffer: 5.1.2 3079 | dev: true 3080 | 3081 | /strip-ansi@6.0.1: 3082 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3083 | engines: {node: '>=8'} 3084 | dependencies: 3085 | ansi-regex: 5.0.1 3086 | dev: true 3087 | 3088 | /strip-bom@3.0.0: 3089 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 3090 | engines: {node: '>=4'} 3091 | dev: true 3092 | 3093 | /strip-final-newline@2.0.0: 3094 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 3095 | engines: {node: '>=6'} 3096 | dev: true 3097 | 3098 | /strip-final-newline@3.0.0: 3099 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 3100 | engines: {node: '>=12'} 3101 | dev: true 3102 | 3103 | /strip-json-comments@2.0.1: 3104 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 3105 | engines: {node: '>=0.10.0'} 3106 | dev: true 3107 | 3108 | /strip-json-comments@3.1.1: 3109 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 3110 | engines: {node: '>=8'} 3111 | dev: true 3112 | 3113 | /supports-color@5.5.0: 3114 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 3115 | engines: {node: '>=4'} 3116 | dependencies: 3117 | has-flag: 3.0.0 3118 | dev: true 3119 | 3120 | /supports-color@7.2.0: 3121 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3122 | engines: {node: '>=8'} 3123 | dependencies: 3124 | has-flag: 4.0.0 3125 | dev: true 3126 | 3127 | /supports-hyperlinks@3.0.0: 3128 | resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==} 3129 | engines: {node: '>=14.18'} 3130 | dependencies: 3131 | has-flag: 4.0.0 3132 | supports-color: 7.2.0 3133 | dev: true 3134 | 3135 | /temp-dir@2.0.0: 3136 | resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} 3137 | engines: {node: '>=8'} 3138 | dev: true 3139 | 3140 | /tempy@3.0.0: 3141 | resolution: {integrity: sha512-B2I9X7+o2wOaW4r/CWMkpOO9mdiTRCxXNgob6iGvPmfPWgH/KyUD6Uy5crtWBxIBe3YrNZKR2lSzv1JJKWD4vA==} 3142 | engines: {node: '>=14.16'} 3143 | dependencies: 3144 | is-stream: 3.0.0 3145 | temp-dir: 2.0.0 3146 | type-fest: 2.19.0 3147 | unique-string: 3.0.0 3148 | dev: true 3149 | 3150 | /text-extensions@2.4.0: 3151 | resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} 3152 | engines: {node: '>=8'} 3153 | dev: true 3154 | 3155 | /text-table@0.2.0: 3156 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 3157 | dev: true 3158 | 3159 | /thenify-all@1.6.0: 3160 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 3161 | engines: {node: '>=0.8'} 3162 | dependencies: 3163 | thenify: 3.3.1 3164 | dev: true 3165 | 3166 | /thenify@3.3.1: 3167 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 3168 | dependencies: 3169 | any-promise: 1.3.0 3170 | dev: true 3171 | 3172 | /through2@2.0.5: 3173 | resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} 3174 | dependencies: 3175 | readable-stream: 2.3.7 3176 | xtend: 4.0.2 3177 | dev: true 3178 | 3179 | /through@2.3.8: 3180 | resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 3181 | dev: true 3182 | 3183 | /to-regex-range@5.0.1: 3184 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3185 | engines: {node: '>=8.0'} 3186 | dependencies: 3187 | is-number: 7.0.0 3188 | dev: true 3189 | 3190 | /tr46@0.0.3: 3191 | resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 3192 | dev: true 3193 | 3194 | /traverse@0.6.7: 3195 | resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==} 3196 | dev: true 3197 | 3198 | /tslib@1.14.1: 3199 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 3200 | dev: true 3201 | 3202 | /tslib@2.4.1: 3203 | resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} 3204 | dev: false 3205 | 3206 | /tsutils@3.21.0(typescript@5.3.3): 3207 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 3208 | engines: {node: '>= 6'} 3209 | peerDependencies: 3210 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 3211 | dependencies: 3212 | tslib: 1.14.1 3213 | typescript: 5.3.3 3214 | dev: true 3215 | 3216 | /type-check@0.4.0: 3217 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 3218 | engines: {node: '>= 0.8.0'} 3219 | dependencies: 3220 | prelude-ls: 1.2.1 3221 | dev: true 3222 | 3223 | /type-fest@0.20.2: 3224 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 3225 | engines: {node: '>=10'} 3226 | dev: true 3227 | 3228 | /type-fest@1.4.0: 3229 | resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} 3230 | engines: {node: '>=10'} 3231 | dev: true 3232 | 3233 | /type-fest@2.19.0: 3234 | resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} 3235 | engines: {node: '>=12.20'} 3236 | dev: true 3237 | 3238 | /type-fest@3.12.0: 3239 | resolution: {integrity: sha512-qj9wWsnFvVEMUDbESiilKeXeHL7FwwiFcogfhfyjmvT968RXSvnl23f1JOClTHYItsi7o501C/7qVllscUP3oA==} 3240 | engines: {node: '>=14.16'} 3241 | dev: true 3242 | 3243 | /type-fest@4.7.1: 3244 | resolution: {integrity: sha512-iWr8RUmzAJRfhZugX9O7nZE6pCxDU8CZ3QxsLuTnGcBLJpCaP2ll3s4eMTBoFnU/CeXY/5rfQSuAEsTGJO4y8A==} 3245 | engines: {node: '>=16'} 3246 | dev: true 3247 | 3248 | /typescript@5.3.3: 3249 | resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} 3250 | engines: {node: '>=14.17'} 3251 | hasBin: true 3252 | dev: true 3253 | 3254 | /uglify-js@3.17.4: 3255 | resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} 3256 | engines: {node: '>=0.8.0'} 3257 | hasBin: true 3258 | requiresBuild: true 3259 | dev: true 3260 | optional: true 3261 | 3262 | /undici-types@5.26.5: 3263 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 3264 | dev: true 3265 | 3266 | /unicode-emoji-modifier-base@1.0.0: 3267 | resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} 3268 | engines: {node: '>=4'} 3269 | dev: true 3270 | 3271 | /unique-string@3.0.0: 3272 | resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} 3273 | engines: {node: '>=12'} 3274 | dependencies: 3275 | crypto-random-string: 4.0.0 3276 | dev: true 3277 | 3278 | /universal-user-agent@6.0.0: 3279 | resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} 3280 | dev: true 3281 | 3282 | /universalify@2.0.0: 3283 | resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} 3284 | engines: {node: '>= 10.0.0'} 3285 | dev: true 3286 | 3287 | /uri-js@4.4.1: 3288 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 3289 | dependencies: 3290 | punycode: 2.1.1 3291 | dev: true 3292 | 3293 | /url-join@5.0.0: 3294 | resolution: {integrity: sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==} 3295 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3296 | dev: true 3297 | 3298 | /util-deprecate@1.0.2: 3299 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3300 | dev: true 3301 | 3302 | /util@0.10.4: 3303 | resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} 3304 | dependencies: 3305 | inherits: 2.0.3 3306 | dev: false 3307 | 3308 | /validate-npm-package-license@3.0.4: 3309 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 3310 | dependencies: 3311 | spdx-correct: 3.1.1 3312 | spdx-expression-parse: 3.0.1 3313 | dev: true 3314 | 3315 | /vite-plugin-logseq@1.1.2: 3316 | resolution: {integrity: sha512-l5YvoH3K25Zx9eqgoJFug7NfVqSPwq7/FcYYhN1TkdG8ZOiD+c+TAwdCS2dJbGgvx8GmSpbgwSZWgslB+wH53g==} 3317 | dependencies: 3318 | magic-string: 0.26.7 3319 | dev: true 3320 | 3321 | /vite@5.1.1(@types/node@20.11.17): 3322 | resolution: {integrity: sha512-wclpAgY3F1tR7t9LL5CcHC41YPkQIpKUGeIuT8MdNwNZr6OqOTLs7JX5vIHAtzqLWXts0T+GDrh9pN2arneKqg==} 3323 | engines: {node: ^18.0.0 || >=20.0.0} 3324 | hasBin: true 3325 | peerDependencies: 3326 | '@types/node': ^18.0.0 || >=20.0.0 3327 | less: '*' 3328 | lightningcss: ^1.21.0 3329 | sass: '*' 3330 | stylus: '*' 3331 | sugarss: '*' 3332 | terser: ^5.4.0 3333 | peerDependenciesMeta: 3334 | '@types/node': 3335 | optional: true 3336 | less: 3337 | optional: true 3338 | lightningcss: 3339 | optional: true 3340 | sass: 3341 | optional: true 3342 | stylus: 3343 | optional: true 3344 | sugarss: 3345 | optional: true 3346 | terser: 3347 | optional: true 3348 | dependencies: 3349 | '@types/node': 20.11.17 3350 | esbuild: 0.19.9 3351 | postcss: 8.4.35 3352 | rollup: 4.8.0 3353 | optionalDependencies: 3354 | fsevents: 2.3.3 3355 | dev: true 3356 | 3357 | /webidl-conversions@3.0.1: 3358 | resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 3359 | dev: true 3360 | 3361 | /whatwg-url@5.0.0: 3362 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 3363 | dependencies: 3364 | tr46: 0.0.3 3365 | webidl-conversions: 3.0.1 3366 | dev: true 3367 | 3368 | /which@2.0.2: 3369 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3370 | engines: {node: '>= 8'} 3371 | hasBin: true 3372 | dependencies: 3373 | isexe: 2.0.0 3374 | dev: true 3375 | 3376 | /wordwrap@1.0.0: 3377 | resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} 3378 | dev: true 3379 | 3380 | /wrap-ansi@7.0.0: 3381 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 3382 | engines: {node: '>=10'} 3383 | dependencies: 3384 | ansi-styles: 4.3.0 3385 | string-width: 4.2.3 3386 | strip-ansi: 6.0.1 3387 | dev: true 3388 | 3389 | /wrappy@1.0.2: 3390 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3391 | dev: true 3392 | 3393 | /xtend@4.0.2: 3394 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 3395 | engines: {node: '>=0.4'} 3396 | dev: true 3397 | 3398 | /y18n@5.0.8: 3399 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 3400 | engines: {node: '>=10'} 3401 | dev: true 3402 | 3403 | /yallist@4.0.0: 3404 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3405 | dev: true 3406 | 3407 | /yargs-parser@20.2.9: 3408 | resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} 3409 | engines: {node: '>=10'} 3410 | dev: true 3411 | 3412 | /yargs-parser@21.1.1: 3413 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 3414 | engines: {node: '>=12'} 3415 | dev: true 3416 | 3417 | /yargs@16.2.0: 3418 | resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} 3419 | engines: {node: '>=10'} 3420 | dependencies: 3421 | cliui: 7.0.4 3422 | escalade: 3.1.1 3423 | get-caller-file: 2.0.5 3424 | require-directory: 2.1.1 3425 | string-width: 4.2.3 3426 | y18n: 5.0.8 3427 | yargs-parser: 20.2.9 3428 | dev: true 3429 | 3430 | /yargs@17.7.2: 3431 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 3432 | engines: {node: '>=12'} 3433 | dependencies: 3434 | cliui: 8.0.1 3435 | escalade: 3.1.1 3436 | get-caller-file: 2.0.5 3437 | require-directory: 2.1.1 3438 | string-width: 4.2.3 3439 | y18n: 5.0.8 3440 | yargs-parser: 21.1.1 3441 | dev: true 3442 | 3443 | /yocto-queue@0.1.0: 3444 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 3445 | engines: {node: '>=10'} 3446 | dev: true 3447 | 3448 | /yocto-queue@1.0.0: 3449 | resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} 3450 | engines: {node: '>=12.20'} 3451 | dev: true 3452 | --------------------------------------------------------------------------------