diff --git a/docs/manual/.gitignore b/docs/manual/.gitignore index d773a73..6240da8 100644 --- a/docs/manual/.gitignore +++ b/docs/manual/.gitignore @@ -1,7 +1,21 @@ -node_modules +# build output +dist/ +# generated types +.astro/ -# vim ignore -*.swp -*~ +# dependencies +node_modules/ -.astro \ No newline at end of file +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + + +# environment variables +.env +.env.production + +# macOS-specific files +.DS_Store diff --git a/docs/manual/README.md b/docs/manual/README.md new file mode 100644 index 0000000..e09bf55 --- /dev/null +++ b/docs/manual/README.md @@ -0,0 +1,55 @@ +# Starlight Starter Kit: Basics + +[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build) + +``` +npm create astro@latest -- --template starlight +``` + +[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/starlight/tree/main/examples/basics) +[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/starlight/tree/main/examples/basics) +[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/withastro/starlight&create_from_path=examples/basics) +[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgitpro.ttaallkk.top%2Fwithastro%2Fstarlight%2Ftree%2Fmain%2Fexamples%2Fbasics&project-name=my-starlight-docs&repository-name=my-starlight-docs) + +> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! + +## 🚀 Project Structure + +Inside of your Astro + Starlight project, you'll see the following folders and files: + +``` +. +├── public/ +├── src/ +│ ├── assets/ +│ ├── content/ +│ │ ├── docs/ +│ │ └── config.ts +│ └── env.d.ts +├── astro.config.mjs +├── package.json +└── tsconfig.json +``` + +Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name. + +Images can be added to `src/assets/` and embedded in Markdown with a relative link. + +Static assets, like favicons, can be placed in the `public/` directory. + +## 🧞 Commands + +All commands are run from the root of the project, from a terminal: + +| Command | Action | +| :------------------------ | :----------------------------------------------- | +| `npm install` | Installs dependencies | +| `npm run dev` | Starts local dev server at `localhost:4321` | +| `npm run build` | Build your production site to `./dist/` | +| `npm run preview` | Preview your build locally, before deploying | +| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | +| `npm run astro -- --help` | Get help using the Astro CLI | + +## 👀 Want to learn more? + +Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat). diff --git a/docs/manual/package.json b/docs/manual/package.json index b8dbe2c..e5e8725 100644 --- a/docs/manual/package.json +++ b/docs/manual/package.json @@ -1,17 +1,19 @@ { "name": "manual", - "version": "1.0.0", - "description": "", - "main": "index.js", + "type": "module", + "version": "0.0.1", "scripts": { "dev": "astro dev", - "build": "astro build" + "start": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" }, - "keywords": [], - "author": "", - "license": "ISC", "dependencies": { - "@astrojs/starlight": "^0.25.3", - "astro": "^4.12.2" + "@astrojs/starlight": "^0.26.1", + "astro": "^4.10.2", + "sharp": "^0.32.5", + "@astrojs/check": "^0.9.3", + "typescript": "^5.5.4" } } \ No newline at end of file diff --git a/docs/manual/public/favicon.svg b/docs/manual/public/favicon.svg new file mode 100644 index 0000000..cba5ac1 --- /dev/null +++ b/docs/manual/public/favicon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/manual/src/content/config.ts b/docs/manual/src/content/config.ts index e69de29..094f28d 100644 --- a/docs/manual/src/content/config.ts +++ b/docs/manual/src/content/config.ts @@ -0,0 +1,7 @@ +import { defineCollection, z } from 'astro:content'; +export const collections = { + 'docs': defineCollection({ + type: 'content', + schema: z.any() + }), +}; \ No newline at end of file diff --git a/docs/manual/src/pages/index.astro b/docs/manual/src/pages/index.astro deleted file mode 100644 index 42aa6b4..0000000 --- a/docs/manual/src/pages/index.astro +++ /dev/null @@ -1,15 +0,0 @@ ---- -import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro'; ---- - - - 别看了,这里没有内容,点击旁边的下载软件并启动来开始安装软件。 -
-
- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor - incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud - exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute - irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla - pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia - deserunt mollit anim id est laborum. -
diff --git a/docs/manual/src/pages/index.mdx b/docs/manual/src/pages/index.mdx new file mode 100644 index 0000000..1a2afde --- /dev/null +++ b/docs/manual/src/pages/index.mdx @@ -0,0 +1,16 @@ +--- +title: 首页 +head: [] +sidebar: + hidden: false +--- + +别看了,这里没有内容,点击旁边的下载软件并启动来开始安装软件。 +
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor +incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud +exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute +irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla +pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia +deserunt mollit anim id est laborum. diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d9347ee..9233c89 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -219,12 +219,21 @@ importers: docs/manual: dependencies: + '@astrojs/check': + specifier: ^0.9.3 + version: registry.npmmirror.com/@astrojs/check@0.9.3(prettier@3.0.3)(typescript@5.5.4) '@astrojs/starlight': - specifier: ^0.25.3 - version: registry.npmmirror.com/@astrojs/starlight@0.25.3(astro@4.12.2) + specifier: ^0.26.1 + version: registry.npmmirror.com/@astrojs/starlight@0.26.1(astro@4.12.2) astro: - specifier: ^4.12.2 - version: registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.3.2) + specifier: ^4.10.2 + version: registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.5.4) + sharp: + specifier: ^0.32.5 + version: registry.npmmirror.com/sharp@0.32.5 + typescript: + specifier: ^5.5.4 + version: registry.npmmirror.com/typescript@5.5.4 packages/monster-siren-ui: {} @@ -324,7 +333,7 @@ packages: resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9): @@ -347,7 +356,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/helper-member-expression-to-functions': 7.22.5 @@ -365,7 +374,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 regexpu-core: 5.3.2 semver: registry.npmmirror.com/semver@6.3.1 dev: false @@ -376,8 +385,8 @@ packages: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 debug: registry.npmmirror.com/debug@4.3.6 lodash.debounce: 4.0.8 resolve: registry.npmmirror.com/resolve@1.22.2 @@ -395,28 +404,28 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helper-member-expression-to-functions@7.22.5: resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helper-module-imports@7.22.5: resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9): @@ -438,7 +447,7 @@ packages: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helper-plugin-utils@7.22.5: @@ -453,7 +462,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-wrap-function': 7.22.10 dev: false @@ -474,14 +483,14 @@ packages: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helper-wrap-function@7.22.10: @@ -490,7 +499,7 @@ packages: dependencies: '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: false /@babel/helpers@7.22.6: @@ -498,8 +507,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 transitivePeerDependencies: - supports-color @@ -510,7 +519,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.9): @@ -520,7 +529,7 @@ packages: '@babel/core': ^7.13.0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.22.10(@babel/core@7.22.9) dev: false @@ -575,7 +584,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9): @@ -584,7 +593,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.9): @@ -594,7 +603,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9): @@ -603,7 +612,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.9): @@ -612,7 +621,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.9): @@ -622,7 +631,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.9): @@ -632,7 +641,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.9): @@ -641,7 +650,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9): @@ -650,7 +659,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9): @@ -659,7 +668,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9): @@ -668,7 +677,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9): @@ -677,7 +686,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9): @@ -686,7 +695,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9): @@ -695,7 +704,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9): @@ -704,7 +713,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.9): @@ -714,7 +723,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9): @@ -724,7 +733,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9): @@ -734,7 +743,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.9): @@ -745,7 +754,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.9): @@ -755,7 +764,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-async-generator-functions@7.22.10(@babel/core@7.22.9): @@ -766,7 +775,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) dev: false @@ -779,7 +788,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.24.7 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9) transitivePeerDependencies: - supports-color @@ -792,7 +801,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.9): @@ -802,7 +811,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.9): @@ -813,7 +822,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.9): @@ -824,7 +833,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9) dev: false @@ -835,12 +844,12 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9) '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 globals: registry.npmmirror.com/globals@11.12.0 @@ -853,7 +862,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 dev: false @@ -864,7 +873,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.9): @@ -875,7 +884,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.9): @@ -885,7 +894,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.9): @@ -895,7 +904,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) dev: false @@ -907,7 +916,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.9): @@ -917,7 +926,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9) dev: false @@ -928,7 +937,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.9): @@ -938,9 +947,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.9): @@ -950,7 +959,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9) dev: false @@ -961,7 +970,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.9): @@ -971,7 +980,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9) dev: false @@ -982,7 +991,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.9): @@ -992,8 +1001,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.22.9) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 transitivePeerDependencies: - supports-color dev: false @@ -1005,8 +1014,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.22.9) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.24.7 transitivePeerDependencies: - supports-color @@ -1020,8 +1029,8 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.22.9) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.24.7 transitivePeerDependencies: - supports-color @@ -1034,8 +1043,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.22.9) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 transitivePeerDependencies: - supports-color dev: false @@ -1048,7 +1057,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.9): @@ -1058,7 +1067,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.9): @@ -1068,7 +1077,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) dev: false @@ -1079,7 +1088,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) dev: false @@ -1091,8 +1100,8 @@ packages: dependencies: '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.25.0 '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9) dev: false @@ -1104,7 +1113,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9) dev: false @@ -1115,7 +1124,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) dev: false @@ -1126,7 +1135,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) dev: false @@ -1138,7 +1147,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.9): @@ -1149,7 +1158,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.9): @@ -1159,9 +1168,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9) dev: false @@ -1172,7 +1181,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.9): @@ -1182,7 +1191,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9): @@ -1192,7 +1201,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.22.9) transitivePeerDependencies: - supports-color dev: false @@ -1224,8 +1233,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.9): @@ -1235,7 +1244,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 regenerator-transform: 0.15.2 dev: false @@ -1246,7 +1255,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.9): @@ -1256,7 +1265,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.9): @@ -1266,7 +1275,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: false @@ -1277,7 +1286,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.9): @@ -1287,7 +1296,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.9): @@ -1297,7 +1306,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-typescript@7.22.10(@babel/core@7.22.9): @@ -1307,9 +1316,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) dev: false @@ -1320,7 +1329,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.9): @@ -1331,7 +1340,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.9): @@ -1342,7 +1351,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.9): @@ -1353,7 +1362,7 @@ packages: dependencies: '@babel/core': 7.22.9 '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false /@babel/preset-env@7.22.10(@babel/core@7.22.9): @@ -1437,7 +1446,7 @@ packages: '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9) '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.9) '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.9) - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.9) babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.9) babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.9) @@ -1453,8 +1462,8 @@ packages: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 esutils: registry.npmmirror.com/esutils@2.0.3 dev: false @@ -1468,7 +1477,7 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.24.8 '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.22.9) '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.9) '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.9) transitivePeerDependencies: @@ -1513,8 +1522,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.24.7 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 /@babel/traverse@7.22.8: resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==} @@ -1526,8 +1535,8 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 debug: registry.npmmirror.com/debug@4.3.6 globals: registry.npmmirror.com/globals@11.12.0 transitivePeerDependencies: @@ -2648,6 +2657,32 @@ packages: '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.5 '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.25 + registry.npmmirror.com/@astrojs/check@0.9.3(prettier@3.0.3)(typescript@5.5.4): + resolution: {integrity: sha512-I6Dz45bMI5YRbp4yK2LKWsHH3/kkHRGdPGruGkLap6pqxhdcNh7oCgN04Ac+haDfc9ow5BYPGPmEhkwef15GQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@astrojs/check/-/check-0.9.3.tgz} + id: registry.npmmirror.com/@astrojs/check/0.9.3 + name: '@astrojs/check' + version: 0.9.3 + hasBin: true + peerDependencies: + typescript: ^5.0.0 + dependencies: + '@astrojs/language-server': registry.npmmirror.com/@astrojs/language-server@2.14.1(prettier@3.0.3)(typescript@5.5.4) + chokidar: registry.npmmirror.com/chokidar@3.6.0 + fast-glob: registry.npmmirror.com/fast-glob@3.3.2 + kleur: registry.npmmirror.com/kleur@4.1.5 + typescript: registry.npmmirror.com/typescript@5.5.4 + yargs: registry.npmmirror.com/yargs@17.7.2 + transitivePeerDependencies: + - prettier + - prettier-plugin-astro + dev: false + + registry.npmmirror.com/@astrojs/compiler@2.10.3: + resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@astrojs/compiler/-/compiler-2.10.3.tgz} + name: '@astrojs/compiler' + version: 2.10.3 + dev: false + registry.npmmirror.com/@astrojs/compiler@2.9.2: resolution: {integrity: sha512-Vpu0Ffsj8SoV+N0DFHlxxOMKHwSC9059Xy/OlG1t6uFYSoJXxkBC2WyF6igO7x10V+8uJrhOxaXr3nA90kJXow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@astrojs/compiler/-/compiler-2.9.2.tgz} name: '@astrojs/compiler' @@ -2660,6 +2695,45 @@ packages: version: 0.4.1 dev: false + registry.npmmirror.com/@astrojs/language-server@2.14.1(prettier@3.0.3)(typescript@5.5.4): + resolution: {integrity: sha512-mkKtCTPRD4dyKdAqIP0zmmPyO/ZABOqFESnaVca47Dg/sAagJnDSEsDUDzNbHFh1+9Dj1o5y4iwNsxJboGdaNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@astrojs/language-server/-/language-server-2.14.1.tgz} + id: registry.npmmirror.com/@astrojs/language-server/2.14.1 + name: '@astrojs/language-server' + version: 2.14.1 + hasBin: true + peerDependencies: + prettier: ^3.0.0 + prettier-plugin-astro: '>=0.11.0' + peerDependenciesMeta: + prettier: + optional: true + prettier-plugin-astro: + optional: true + dependencies: + '@astrojs/compiler': registry.npmmirror.com/@astrojs/compiler@2.10.3 + '@astrojs/yaml2ts': registry.npmmirror.com/@astrojs/yaml2ts@0.2.1 + '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.5.0 + '@volar/kit': registry.npmmirror.com/@volar/kit@2.4.0(typescript@5.5.4) + '@volar/language-core': registry.npmmirror.com/@volar/language-core@2.4.0 + '@volar/language-server': registry.npmmirror.com/@volar/language-server@2.4.0 + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + '@volar/typescript': registry.npmmirror.com/@volar/typescript@2.4.0 + fast-glob: registry.npmmirror.com/fast-glob@3.3.2 + muggle-string: registry.npmmirror.com/muggle-string@0.4.1 + prettier: registry.npmmirror.com/prettier@3.0.3 + volar-service-css: registry.npmmirror.com/volar-service-css@0.0.61(@volar/language-service@2.4.0) + volar-service-emmet: registry.npmmirror.com/volar-service-emmet@0.0.61(@volar/language-service@2.4.0) + volar-service-html: registry.npmmirror.com/volar-service-html@0.0.61(@volar/language-service@2.4.0) + volar-service-prettier: registry.npmmirror.com/volar-service-prettier@0.0.61(@volar/language-service@2.4.0)(prettier@3.0.3) + volar-service-typescript: registry.npmmirror.com/volar-service-typescript@0.0.61(@volar/language-service@2.4.0) + volar-service-typescript-twoslash-queries: registry.npmmirror.com/volar-service-typescript-twoslash-queries@0.0.61(@volar/language-service@2.4.0) + volar-service-yaml: registry.npmmirror.com/volar-service-yaml@0.0.61(@volar/language-service@2.4.0) + vscode-html-languageservice: registry.npmmirror.com/vscode-html-languageservice@5.3.0 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + transitivePeerDependencies: + - typescript + dev: false + registry.npmmirror.com/@astrojs/markdown-remark@5.2.0: resolution: {integrity: sha512-vWGM24KZXz11jR3JO+oqYU3T2qpuOi4uGivJ9SQLCAI01+vEkHC60YJMRvHPc+hwd60F7euNs1PeOEixIIiNQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@astrojs/markdown-remark/-/markdown-remark-5.2.0.tgz} name: '@astrojs/markdown-remark' @@ -2699,7 +2773,7 @@ packages: '@astrojs/markdown-remark': registry.npmmirror.com/@astrojs/markdown-remark@5.2.0 '@mdx-js/mdx': registry.npmmirror.com/@mdx-js/mdx@3.0.1 acorn: registry.npmmirror.com/acorn@8.12.1 - astro: registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.3.2) + astro: registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.5.4) es-module-lexer: registry.npmmirror.com/es-module-lexer@1.5.4 estree-util-visit: registry.npmmirror.com/estree-util-visit@2.0.0 github-slugger: registry.npmmirror.com/github-slugger@2.0.0 @@ -2735,11 +2809,11 @@ packages: zod: registry.npmmirror.com/zod@3.23.8 dev: false - registry.npmmirror.com/@astrojs/starlight@0.25.3(astro@4.12.2): - resolution: {integrity: sha512-XNpGbZ54ungtzen4wQkPXn50D1ZquB51paWrZftA0jWxUkj4b/pP8PijAFrGFypydhvu7Dhl0DjD07lrnSSUhQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@astrojs/starlight/-/starlight-0.25.3.tgz} - id: registry.npmmirror.com/@astrojs/starlight/0.25.3 + registry.npmmirror.com/@astrojs/starlight@0.26.1(astro@4.12.2): + resolution: {integrity: sha512-0qNYWZJ+ZOdSfM7du6fGuwUhyTHtAeRIl0zYe+dF0TxDvcakplO1SYLbGGX6lEVYE3PdBne7dcJww85bXZJIIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@astrojs/starlight/-/starlight-0.26.1.tgz} + id: registry.npmmirror.com/@astrojs/starlight/0.26.1 name: '@astrojs/starlight' - version: 0.25.3 + version: 0.26.1 peerDependencies: astro: ^4.8.6 dependencies: @@ -2748,8 +2822,8 @@ packages: '@pagefind/default-ui': registry.npmmirror.com/@pagefind/default-ui@1.1.0 '@types/hast': registry.npmmirror.com/@types/hast@3.0.4 '@types/mdast': registry.npmmirror.com/@types/mdast@4.0.4 - astro: registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.3.2) - astro-expressive-code: registry.npmmirror.com/astro-expressive-code@0.35.3(astro@4.12.2) + astro: registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.5.4) + astro-expressive-code: registry.npmmirror.com/astro-expressive-code@0.35.6(astro@4.12.2) bcp-47: registry.npmmirror.com/bcp-47@2.1.0 hast-util-from-html: registry.npmmirror.com/hast-util-from-html@2.0.1 hast-util-select: registry.npmmirror.com/hast-util-select@6.0.2 @@ -2786,6 +2860,14 @@ packages: - supports-color dev: false + registry.npmmirror.com/@astrojs/yaml2ts@0.2.1: + resolution: {integrity: sha512-CBaNwDQJz20E5WxzQh4thLVfhB3JEEGz72wRA+oJp6fQR37QLAqXZJU0mHC+yqMOQ6oj0GfRPJrz6hjf+zm6zA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@astrojs/yaml2ts/-/yaml2ts-0.2.1.tgz} + name: '@astrojs/yaml2ts' + version: 0.2.1 + dependencies: + yaml: registry.npmmirror.com/yaml@2.5.0 + dev: false + registry.npmmirror.com/@aw-web-design/x-default-browser@1.4.126: resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@aw-web-design/x-default-browser/-/x-default-browser-1.4.126.tgz} name: '@aw-web-design/x-default-browser' @@ -2823,7 +2905,6 @@ packages: name: '@babel/compat-data' version: 7.25.2 engines: {node: '>=6.9.0'} - dev: true registry.npmmirror.com/@babel/core@7.22.9: resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.22.9.tgz} @@ -2837,10 +2918,10 @@ packages: '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.22.9) '@babel/helpers': registry.npmmirror.com/@babel/helpers@7.25.0 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 convert-source-map: registry.npmmirror.com/convert-source-map@1.9.0 debug: registry.npmmirror.com/debug@4.3.6 gensync: registry.npmmirror.com/gensync@1.0.0-beta.2 @@ -2858,13 +2939,13 @@ packages: '@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping@2.3.0 '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.24.7 '@babel/generator': registry.npmmirror.com/@babel/generator@7.25.0 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.24.9) + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.24.9) '@babel/helpers': registry.npmmirror.com/@babel/helpers@7.25.0 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 convert-source-map: registry.npmmirror.com/convert-source-map@2.0.0 debug: registry.npmmirror.com/debug@4.3.6 gensync: registry.npmmirror.com/gensync@1.0.0-beta.2 @@ -2872,6 +2953,7 @@ packages: semver: registry.npmmirror.com/semver@6.3.1 transitivePeerDependencies: - supports-color + dev: true registry.npmmirror.com/@babel/core@7.25.2: resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.25.2.tgz} @@ -2896,7 +2978,6 @@ packages: semver: registry.npmmirror.com/semver@6.3.1 transitivePeerDependencies: - supports-color - dev: true registry.npmmirror.com/@babel/generator@7.22.9: resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.22.9.tgz} @@ -2904,7 +2985,7 @@ packages: version: 7.22.9 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.5 '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.25 jsesc: registry.npmmirror.com/jsesc@2.5.2 @@ -2916,19 +2997,11 @@ packages: version: 7.25.0 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.5 '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.25 jsesc: registry.npmmirror.com/jsesc@2.5.2 - registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz} - name: '@babel/helper-annotate-as-pure' - version: 7.22.5 - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 - registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7: resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz} name: '@babel/helper-annotate-as-pure' @@ -2936,7 +3009,6 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 - dev: false registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor@7.22.10: resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz} @@ -2944,7 +3016,7 @@ packages: version: 7.22.10 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: true registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8: @@ -2970,28 +3042,6 @@ packages: browserslist: registry.npmmirror.com/browserslist@4.23.3 lru-cache: registry.npmmirror.com/lru-cache@5.1.1 semver: registry.npmmirror.com/semver@6.3.1 - dev: true - - registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.24.9): - resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz} - id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.22.10 - name: '@babel/helper-create-class-features-plugin' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.5 - '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression@7.22.5 - '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.9(@babel/core@7.25.2) - '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 - '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 - semver: registry.npmmirror.com/semver@6.3.1 - dev: true registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.25.2): resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz} @@ -3003,7 +3053,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.5 @@ -3024,7 +3074,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 regexpu-core: registry.npmmirror.com/regexpu-core@5.3.2 semver: registry.npmmirror.com/semver@6.3.1 dev: true @@ -3038,8 +3088,8 @@ packages: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 debug: registry.npmmirror.com/debug@4.3.6 lodash.debounce: registry.npmmirror.com/lodash.debounce@4.0.8 resolve: registry.npmmirror.com/resolve@1.22.2 @@ -3060,7 +3110,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz} @@ -3068,7 +3118,7 @@ packages: version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@babel/helper-member-expression-to-functions@7.22.5: resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz} @@ -3076,7 +3126,7 @@ packages: version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: true registry.npmmirror.com/@babel/helper-module-imports@7.24.7: @@ -3085,8 +3135,8 @@ packages: version: 7.24.7 engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 transitivePeerDependencies: - supports-color @@ -3103,41 +3153,42 @@ packages: '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.24.7 '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.24.7 '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.24.7 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 transitivePeerDependencies: - supports-color - registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.24.9): - resolution: {integrity: sha512-bIkOa2ZJYn7FHnepzr5iX9Kmz8FjIz4UKzJ9zhX3dnYuVW0xul9RuR3skBfoLu+FPTQw90EHW9rJsSZhyLQ3fQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.0.tgz} - id: registry.npmmirror.com/@babel/helper-module-transforms/7.25.0 + registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.22.9): + resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz} + id: registry.npmmirror.com/@babel/helper-module-transforms/7.25.2 name: '@babel/helper-module-transforms' - version: 7.25.0 + version: 7.25.2 engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 + '@babel/core': 7.22.9 '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.24.7 '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.24.7 '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.24.7 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 transitivePeerDependencies: - supports-color + dev: false - registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.25.2): - resolution: {integrity: sha512-bIkOa2ZJYn7FHnepzr5iX9Kmz8FjIz4UKzJ9zhX3dnYuVW0xul9RuR3skBfoLu+FPTQw90EHW9rJsSZhyLQ3fQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.0.tgz} - id: registry.npmmirror.com/@babel/helper-module-transforms/7.25.0 + registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.24.9): + resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz} + id: registry.npmmirror.com/@babel/helper-module-transforms/7.25.2 name: '@babel/helper-module-transforms' - version: 7.25.0 + version: 7.25.2 engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.24.7 '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.24.7 '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.24.7 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 transitivePeerDependencies: - supports-color dev: true @@ -3158,7 +3209,6 @@ packages: '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 transitivePeerDependencies: - supports-color - dev: true registry.npmmirror.com/@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz} @@ -3166,7 +3216,7 @@ packages: version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: true registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5: @@ -3180,7 +3230,6 @@ packages: name: '@babel/helper-plugin-utils' version: 7.24.8 engines: {node: '>=6.9.0'} - dev: false registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.25.2): resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz} @@ -3192,7 +3241,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-wrap-function': registry.npmmirror.com/@babel/helper-wrap-function@7.22.10 dev: true @@ -3218,8 +3267,8 @@ packages: version: 7.24.7 engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 transitivePeerDependencies: - supports-color @@ -3229,7 +3278,7 @@ packages: version: 7.22.5 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: true registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6: @@ -3238,7 +3287,7 @@ packages: version: 7.22.6 engines: {node: '>=6.9.0'} dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@babel/helper-string-parser@7.24.8: resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz} @@ -3266,7 +3315,7 @@ packages: dependencies: '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 dev: true registry.npmmirror.com/@babel/helpers@7.25.0: @@ -3276,7 +3325,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@babel/highlight@7.24.7: resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.24.7.tgz} @@ -3296,7 +3345,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@babel/parser@7.25.3: resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.25.3.tgz} @@ -3306,7 +3355,6 @@ packages: hasBin: true dependencies: '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 - dev: true registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.25.2): resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz} @@ -3318,7 +3366,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.25.2): @@ -3331,12 +3379,12 @@ packages: '@babel/core': ^7.13.0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.10(@babel/core@7.25.2) dev: true - registry.npmmirror.com/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.2): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-proposal-class-properties/7.18.6 name: '@babel/plugin-proposal-class-properties' @@ -3346,12 +3394,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.24.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.25.2) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true - registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.2): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz} id: registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator/7.18.6 name: '@babel/plugin-proposal-nullish-coalescing-operator' @@ -3361,12 +3409,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.9) + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 + '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2) dev: true - registry.npmmirror.com/@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.2): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz} id: registry.npmmirror.com/@babel/plugin-proposal-optional-chaining/7.21.0 name: '@babel/plugin-proposal-optional-chaining' @@ -3376,10 +3424,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 - '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.9) + '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2) dev: true registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2): @@ -3403,7 +3451,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2): @@ -3415,7 +3463,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2): @@ -3428,7 +3476,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2): @@ -3440,7 +3488,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2): @@ -3452,10 +3500,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true - registry.npmmirror.com/@babel/plugin-syntax-flow@7.22.5(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-syntax-flow@7.22.5(@babel/core@7.25.2): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-flow/7.22.5 name: '@babel/plugin-syntax-flow' @@ -3464,8 +3512,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.25.2): @@ -3478,7 +3526,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.25.2): @@ -3491,7 +3539,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2): @@ -3503,7 +3551,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2): @@ -3515,7 +3563,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9): @@ -3528,23 +3576,23 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: false - registry.npmmirror.com/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.24.9): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.22.5 + registry.npmmirror.com/@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.22.9): + resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz} + id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.24.7 name: '@babel/plugin-syntax-jsx' - version: 7.22.5 + version: 7.24.7 engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 + dev: false - registry.npmmirror.com/@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2): resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.24.7 name: '@babel/plugin-syntax-jsx' @@ -3553,9 +3601,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 - dev: false registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz} @@ -3566,19 +3613,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.9): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3 - name: '@babel/plugin-syntax-nullish-coalescing-operator' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2): @@ -3590,7 +3625,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2): @@ -3602,7 +3637,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2): @@ -3614,7 +3649,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2): @@ -3626,19 +3661,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.9): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz} - id: registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3 - name: '@babel/plugin-syntax-optional-chaining' - version: 7.8.3 - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2): @@ -3650,7 +3673,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2): @@ -3663,7 +3686,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2): @@ -3676,10 +3699,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true - registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.25.2): resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz} id: registry.npmmirror.com/@babel/plugin-syntax-typescript/7.22.5 name: '@babel/plugin-syntax-typescript' @@ -3688,8 +3711,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2): @@ -3703,7 +3726,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.25.2): @@ -3716,7 +3739,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-async-generator-functions@7.22.10(@babel/core@7.25.2): @@ -3730,7 +3753,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.25.2) '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2) dev: true @@ -3746,7 +3769,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.24.7 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-remap-async-to-generator': registry.npmmirror.com/@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.25.2) transitivePeerDependencies: - supports-color @@ -3762,7 +3785,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.25.2): @@ -3775,7 +3798,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.25.2): @@ -3789,7 +3812,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.25.2): @@ -3803,7 +3826,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2) dev: true @@ -3817,12 +3840,12 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 '@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.5 '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 '@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.9(@babel/core@7.25.2) '@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6 globals: registry.npmmirror.com/globals@11.12.0 @@ -3838,7 +3861,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 dev: true @@ -3852,7 +3875,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.25.2): @@ -3866,7 +3889,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.25.2): @@ -3879,7 +3902,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.25.2): @@ -3892,7 +3915,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2) dev: true @@ -3907,7 +3930,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-builder-binary-assignment-operator-visitor': registry.npmmirror.com/@babel/helper-builder-binary-assignment-operator-visitor@7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.25.2): @@ -3920,11 +3943,11 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2) dev: true - registry.npmmirror.com/@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.25.2): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz} id: registry.npmmirror.com/@babel/plugin-transform-flow-strip-types/7.22.5 name: '@babel/plugin-transform-flow-strip-types' @@ -3933,9 +3956,9 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-flow': registry.npmmirror.com/@babel/plugin-syntax-flow@7.22.5(@babel/core@7.24.9) + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 + '@babel/plugin-syntax-flow': registry.npmmirror.com/@babel/plugin-syntax-flow@7.22.5(@babel/core@7.25.2) dev: true registry.npmmirror.com/@babel/plugin-transform-for-of@7.22.5(@babel/core@7.25.2): @@ -3948,7 +3971,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-function-name@7.22.5(@babel/core@7.25.2): @@ -3961,9 +3984,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 '@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.22.5 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.25.2): @@ -3976,7 +3999,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2) dev: true @@ -3990,7 +4013,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.25.2): @@ -4003,7 +4026,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2) dev: true @@ -4017,7 +4040,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.25.2): @@ -4030,25 +4053,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - transitivePeerDependencies: - - supports-color - dev: true - - registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.24.9): - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/7.22.5 - name: '@babel/plugin-transform-modules-commonjs' - version: 7.22.5 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.24.7 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 transitivePeerDependencies: - supports-color dev: true @@ -4063,8 +4069,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.24.7 transitivePeerDependencies: - supports-color @@ -4081,8 +4087,8 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.24.7 transitivePeerDependencies: - supports-color @@ -4098,8 +4104,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.0(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 transitivePeerDependencies: - supports-color dev: true @@ -4115,7 +4121,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-new-target@7.22.5(@babel/core@7.25.2): @@ -4128,7 +4134,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.25.2): @@ -4141,7 +4147,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2) dev: true @@ -4155,7 +4161,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2) dev: true @@ -4170,8 +4176,8 @@ packages: dependencies: '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.25.0 '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2) '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.5(@babel/core@7.25.2) dev: true @@ -4186,7 +4192,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers@7.22.9(@babel/core@7.25.2) dev: true @@ -4200,7 +4206,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2) dev: true @@ -4214,7 +4220,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2) dev: true @@ -4229,7 +4235,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.25.2): @@ -4243,7 +4249,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.25.2): @@ -4256,9 +4262,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2) dev: true @@ -4272,7 +4278,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.9): @@ -4299,26 +4305,26 @@ packages: '@babel/core': registry.npmmirror.com/@babel/core@7.22.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.5.tgz} - id: registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.22.5 + registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.22.9): + resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.2.tgz} + id: registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.25.2 name: '@babel/plugin-transform-react-jsx' - version: 7.22.5 + version: 7.25.2 engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.24.7 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9) - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.22.9) + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 transitivePeerDependencies: - supports-color dev: false - registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2): resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.2.tgz} id: registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.25.2 name: '@babel/plugin-transform-react-jsx' @@ -4327,11 +4333,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.24.7 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 - '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9) + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2) '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 transitivePeerDependencies: - supports-color @@ -4347,7 +4353,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 regenerator-transform: registry.npmmirror.com/regenerator-transform@0.15.2 dev: true @@ -4361,7 +4367,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.25.2): @@ -4374,7 +4380,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-spread@7.22.5(@babel/core@7.25.2): @@ -4387,7 +4393,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-skip-transparent-expression-wrappers': registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers@7.22.5 dev: true @@ -4401,7 +4407,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.25.2): @@ -4414,7 +4420,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.25.2): @@ -4427,10 +4433,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true - registry.npmmirror.com/@babel/plugin-transform-typescript@7.22.10(@babel/core@7.24.9): + registry.npmmirror.com/@babel/plugin-transform-typescript@7.22.10(@babel/core@7.25.2): resolution: {integrity: sha512-7++c8I/ymsDo4QQBAgbraXLzIM6jmfao11KgIBEYZRReWzNWH9NtNgJcyrZiXsOPh523FQm6LfpLyy/U5fn46A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.10.tgz} id: registry.npmmirror.com/@babel/plugin-transform-typescript/7.22.10 name: '@babel/plugin-transform-typescript' @@ -4439,11 +4445,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.22.5 - '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.24.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.24.9) + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.24.7 + '@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin@7.22.10(@babel/core@7.25.2) + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 + '@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.25.2) dev: true registry.npmmirror.com/@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.25.2): @@ -4456,7 +4462,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.25.2): @@ -4470,7 +4476,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.25.2): @@ -4484,7 +4490,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.25.2): @@ -4498,101 +4504,7 @@ packages: dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/helper-create-regexp-features-plugin': registry.npmmirror.com/@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.25.2) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - dev: true - - registry.npmmirror.com/@babel/preset-env@7.22.10(@babel/core@7.24.9): - resolution: {integrity: sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-env/-/preset-env-7.22.10.tgz} - id: registry.npmmirror.com/@babel/preset-env/7.22.10 - name: '@babel/preset-env' - version: 7.22.10 - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.25.0 - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.24.8 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.25.2) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.25.2) - '@babel/plugin-proposal-private-property-in-object': registry.npmmirror.com/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2) - '@babel/plugin-syntax-async-generators': registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2) - '@babel/plugin-syntax-class-properties': registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2) - '@babel/plugin-syntax-class-static-block': registry.npmmirror.com/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2) - '@babel/plugin-syntax-dynamic-import': registry.npmmirror.com/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-export-namespace-from': registry.npmmirror.com/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-import-assertions': registry.npmmirror.com/@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.25.2) - '@babel/plugin-syntax-import-attributes': registry.npmmirror.com/@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.25.2) - '@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2) - '@babel/plugin-syntax-json-strings': registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2) - '@babel/plugin-syntax-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-numeric-separator': registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2) - '@babel/plugin-syntax-object-rest-spread': registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-optional-catch-binding': registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-optional-chaining': registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2) - '@babel/plugin-syntax-private-property-in-object': registry.npmmirror.com/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2) - '@babel/plugin-syntax-top-level-await': registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2) - '@babel/plugin-syntax-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2) - '@babel/plugin-transform-arrow-functions': registry.npmmirror.com/@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-async-generator-functions': registry.npmmirror.com/@babel/plugin-transform-async-generator-functions@7.22.10(@babel/core@7.25.2) - '@babel/plugin-transform-async-to-generator': registry.npmmirror.com/@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-block-scoped-functions': registry.npmmirror.com/@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-block-scoping': registry.npmmirror.com/@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.25.2) - '@babel/plugin-transform-class-properties': registry.npmmirror.com/@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-class-static-block': registry.npmmirror.com/@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-classes': registry.npmmirror.com/@babel/plugin-transform-classes@7.22.6(@babel/core@7.25.2) - '@babel/plugin-transform-computed-properties': registry.npmmirror.com/@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-destructuring': registry.npmmirror.com/@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.25.2) - '@babel/plugin-transform-dotall-regex': registry.npmmirror.com/@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-duplicate-keys': registry.npmmirror.com/@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-dynamic-import': registry.npmmirror.com/@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-exponentiation-operator': registry.npmmirror.com/@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-export-namespace-from': registry.npmmirror.com/@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-for-of': registry.npmmirror.com/@babel/plugin-transform-for-of@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-function-name': registry.npmmirror.com/@babel/plugin-transform-function-name@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-json-strings': registry.npmmirror.com/@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-literals': registry.npmmirror.com/@babel/plugin-transform-literals@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-logical-assignment-operators': registry.npmmirror.com/@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-member-expression-literals': registry.npmmirror.com/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-modules-amd': registry.npmmirror.com/@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-modules-systemjs': registry.npmmirror.com/@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-modules-umd': registry.npmmirror.com/@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-named-capturing-groups-regex': registry.npmmirror.com/@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-new-target': registry.npmmirror.com/@babel/plugin-transform-new-target@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-numeric-separator': registry.npmmirror.com/@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-object-rest-spread': registry.npmmirror.com/@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-object-super': registry.npmmirror.com/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-optional-catch-binding': registry.npmmirror.com/@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-optional-chaining': registry.npmmirror.com/@babel/plugin-transform-optional-chaining@7.22.10(@babel/core@7.25.2) - '@babel/plugin-transform-parameters': registry.npmmirror.com/@babel/plugin-transform-parameters@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-private-methods': registry.npmmirror.com/@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-private-property-in-object': registry.npmmirror.com/@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-property-literals': registry.npmmirror.com/@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-regenerator': registry.npmmirror.com/@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.25.2) - '@babel/plugin-transform-reserved-words': registry.npmmirror.com/@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-shorthand-properties': registry.npmmirror.com/@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-spread': registry.npmmirror.com/@babel/plugin-transform-spread@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-sticky-regex': registry.npmmirror.com/@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-template-literals': registry.npmmirror.com/@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-typeof-symbol': registry.npmmirror.com/@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-escapes': registry.npmmirror.com/@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-property-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.25.2) - '@babel/plugin-transform-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.25.2) - '@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2) - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 - babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.25.2) - babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.25.2) - babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.25.2) - core-js-compat: registry.npmmirror.com/core-js-compat@3.32.0 - semver: registry.npmmirror.com/semver@6.3.1 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 dev: true registry.npmmirror.com/@babel/preset-env@7.22.10(@babel/core@7.25.2): @@ -4606,8 +4518,8 @@ packages: dependencies: '@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.25.0 '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.24.8 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.24.8 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': registry.npmmirror.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.25.2) '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': registry.npmmirror.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.25.2) @@ -4679,7 +4591,7 @@ packages: '@babel/plugin-transform-unicode-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.25.2) '@babel/plugin-transform-unicode-sets-regex': registry.npmmirror.com/@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.25.2) '@babel/preset-modules': registry.npmmirror.com/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2) - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 babel-plugin-polyfill-corejs2: registry.npmmirror.com/babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.25.2) babel-plugin-polyfill-corejs3: registry.npmmirror.com/babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.25.2) babel-plugin-polyfill-regenerator: registry.npmmirror.com/babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.25.2) @@ -4689,7 +4601,7 @@ packages: - supports-color dev: true - registry.npmmirror.com/@babel/preset-flow@7.22.15(@babel/core@7.24.9): + registry.npmmirror.com/@babel/preset-flow@7.22.15(@babel/core@7.25.2): resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-flow/-/preset-flow-7.22.15.tgz} id: registry.npmmirror.com/@babel/preset-flow/7.22.15 name: '@babel/preset-flow' @@ -4698,10 +4610,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.24.8 - '@babel/plugin-transform-flow-strip-types': registry.npmmirror.com/@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.24.9) + '@babel/plugin-transform-flow-strip-types': registry.npmmirror.com/@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.25.2) dev: true registry.npmmirror.com/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2): @@ -4713,12 +4625,12 @@ packages: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 esutils: registry.npmmirror.com/esutils@2.0.3 dev: true - registry.npmmirror.com/@babel/preset-typescript@7.22.5(@babel/core@7.24.9): + registry.npmmirror.com/@babel/preset-typescript@7.22.5(@babel/core@7.25.2): resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz} id: registry.npmmirror.com/@babel/preset-typescript/7.22.5 name: '@babel/preset-typescript' @@ -4727,17 +4639,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.24.8 - '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.24.9) - '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.24.9) - '@babel/plugin-transform-typescript': registry.npmmirror.com/@babel/plugin-transform-typescript@7.22.10(@babel/core@7.24.9) + '@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2) + '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.25.2) + '@babel/plugin-transform-typescript': registry.npmmirror.com/@babel/plugin-transform-typescript@7.22.10(@babel/core@7.25.2) transitivePeerDependencies: - supports-color dev: true - registry.npmmirror.com/@babel/register@7.22.15(@babel/core@7.24.9): + registry.npmmirror.com/@babel/register@7.22.15(@babel/core@7.25.2): resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/register/-/register-7.22.15.tgz} id: registry.npmmirror.com/@babel/register/7.22.15 name: '@babel/register' @@ -4746,7 +4658,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 clone-deep: registry.npmmirror.com/clone-deep@4.0.1 find-cache-dir: registry.npmmirror.com/find-cache-dir@2.1.0 make-dir: registry.npmmirror.com/make-dir@2.1.0 @@ -4802,8 +4714,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.24.7 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@babel/traverse@7.25.1: resolution: {integrity: sha512-LrHHoWq08ZpmmFqBAzN+hUdWwy5zt7FGa/hVwMcOqW6OVtwqaoD5utfuGYU87JYxdZgLUvktAsn37j/sYR9siA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.25.1.tgz} @@ -4813,9 +4725,9 @@ packages: dependencies: '@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.24.7 '@babel/generator': registry.npmmirror.com/@babel/generator@7.25.0 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 '@babel/template': registry.npmmirror.com/@babel/template@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 debug: registry.npmmirror.com/debug@4.3.6 globals: registry.npmmirror.com/globals@11.12.0 transitivePeerDependencies: @@ -4836,7 +4748,6 @@ packages: globals: registry.npmmirror.com/globals@11.12.0 transitivePeerDependencies: - supports-color - dev: true registry.npmmirror.com/@babel/types@7.25.0: resolution: {integrity: sha512-LcnxQSsd9aXOIgmmSpvZ/1yo46ra2ESYyqLcryaBZOghxy5qqOBjvCWP5JfkI8yl9rlxRgdLTTMCQQRcN2hdCg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.25.0.tgz} @@ -4908,6 +4819,57 @@ packages: engines: {node: '>=10.0.0'} dev: true + registry.npmmirror.com/@emmetio/abbreviation@2.3.3: + resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/abbreviation/-/abbreviation-2.3.3.tgz} + name: '@emmetio/abbreviation' + version: 2.3.3 + dependencies: + '@emmetio/scanner': registry.npmmirror.com/@emmetio/scanner@1.0.4 + dev: false + + registry.npmmirror.com/@emmetio/css-abbreviation@2.1.8: + resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/css-abbreviation/-/css-abbreviation-2.1.8.tgz} + name: '@emmetio/css-abbreviation' + version: 2.1.8 + dependencies: + '@emmetio/scanner': registry.npmmirror.com/@emmetio/scanner@1.0.4 + dev: false + + registry.npmmirror.com/@emmetio/css-parser@0.4.0: + resolution: {integrity: sha512-z7wkxRSZgrQHXVzObGkXG+Vmj3uRlpM11oCZ9pbaz0nFejvCDmAiNDpY75+wgXOcffKpj4rzGtwGaZxfJKsJxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/css-parser/-/css-parser-0.4.0.tgz} + name: '@emmetio/css-parser' + version: 0.4.0 + dependencies: + '@emmetio/stream-reader': registry.npmmirror.com/@emmetio/stream-reader@2.2.0 + '@emmetio/stream-reader-utils': registry.npmmirror.com/@emmetio/stream-reader-utils@0.1.0 + dev: false + + registry.npmmirror.com/@emmetio/html-matcher@1.3.0: + resolution: {integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/html-matcher/-/html-matcher-1.3.0.tgz} + name: '@emmetio/html-matcher' + version: 1.3.0 + dependencies: + '@emmetio/scanner': registry.npmmirror.com/@emmetio/scanner@1.0.4 + dev: false + + registry.npmmirror.com/@emmetio/scanner@1.0.4: + resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/scanner/-/scanner-1.0.4.tgz} + name: '@emmetio/scanner' + version: 1.0.4 + dev: false + + registry.npmmirror.com/@emmetio/stream-reader-utils@0.1.0: + resolution: {integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/stream-reader-utils/-/stream-reader-utils-0.1.0.tgz} + name: '@emmetio/stream-reader-utils' + version: 0.1.0 + dev: false + + registry.npmmirror.com/@emmetio/stream-reader@2.2.0: + resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/stream-reader/-/stream-reader-2.2.0.tgz} + name: '@emmetio/stream-reader' + version: 2.2.0 + dev: false + registry.npmmirror.com/@emnapi/runtime@1.2.0: resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emnapi/runtime/-/runtime-1.2.0.tgz} name: '@emnapi/runtime' @@ -5690,10 +5652,10 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - registry.npmmirror.com/@expressive-code/core@0.35.3: - resolution: {integrity: sha512-SYamcarAjufYhbuK/kfvJSvAXLsfnM7DKc78R7Dq4B73R5bKQK2m5zR0l57tXr4yp2C5Z8lu5xZncdwWxcmPdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expressive-code/core/-/core-0.35.3.tgz} + registry.npmmirror.com/@expressive-code/core@0.35.6: + resolution: {integrity: sha512-xGqCkmfkgT7lr/rvmfnYdDSeTdCSp1otAHgoFS6wNEeO7wGDPpxdosVqYiIcQ8CfWUABh/pGqWG90q+MV3824A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expressive-code/core/-/core-0.35.6.tgz} name: '@expressive-code/core' - version: 0.35.3 + version: 0.35.6 dependencies: '@ctrl/tinycolor': registry.npmmirror.com/@ctrl/tinycolor@4.1.0 hast-util-select: registry.npmmirror.com/hast-util-select@6.0.2 @@ -5706,29 +5668,29 @@ packages: unist-util-visit-parents: registry.npmmirror.com/unist-util-visit-parents@6.0.1 dev: false - registry.npmmirror.com/@expressive-code/plugin-frames@0.35.3: - resolution: {integrity: sha512-QYytMq6IsaHgTofQ5b6d+CnbxkqLdikSF2hC+IL/ZZwPYHYZoUlmjIwmJZhY4/hHqJGELrtZsyVdlt06RntgmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expressive-code/plugin-frames/-/plugin-frames-0.35.3.tgz} + registry.npmmirror.com/@expressive-code/plugin-frames@0.35.6: + resolution: {integrity: sha512-CqjSWjDJ3wabMJZfL9ZAzH5UAGKg7KWsf1TBzr4xvUbZvWoBtLA/TboBML0U1Ls8h/4TRCIvR4VEb8dv5+QG3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expressive-code/plugin-frames/-/plugin-frames-0.35.6.tgz} name: '@expressive-code/plugin-frames' - version: 0.35.3 + version: 0.35.6 dependencies: - '@expressive-code/core': registry.npmmirror.com/@expressive-code/core@0.35.3 + '@expressive-code/core': registry.npmmirror.com/@expressive-code/core@0.35.6 dev: false - registry.npmmirror.com/@expressive-code/plugin-shiki@0.35.3: - resolution: {integrity: sha512-aFQBPepv0zhVXqJFAvfQ4vXYv/meJKiqmEEKSxdjAfwXllIV49PDlnGEXmbGYjR4hUQQjbfDgzAbrbfePc3YVQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expressive-code/plugin-shiki/-/plugin-shiki-0.35.3.tgz} + registry.npmmirror.com/@expressive-code/plugin-shiki@0.35.6: + resolution: {integrity: sha512-xm+hzi9BsmhkDUGuyAWIydOAWer7Cs9cj8FM0t4HXaQ+qCubprT6wJZSKUxuvFJIUsIOqk1xXFaJzGJGnWtKMg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expressive-code/plugin-shiki/-/plugin-shiki-0.35.6.tgz} name: '@expressive-code/plugin-shiki' - version: 0.35.3 + version: 0.35.6 dependencies: - '@expressive-code/core': registry.npmmirror.com/@expressive-code/core@0.35.3 + '@expressive-code/core': registry.npmmirror.com/@expressive-code/core@0.35.6 shiki: registry.npmmirror.com/shiki@1.12.0 dev: false - registry.npmmirror.com/@expressive-code/plugin-text-markers@0.35.3: - resolution: {integrity: sha512-gDdnQrfDRXw5Y+PKHJDkpAUdf2pthYOthGcgy3JB8GOTQ3EL1h+755Ct/bGc4MR6jn+dgnQP47uHMWQaccvN6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expressive-code/plugin-text-markers/-/plugin-text-markers-0.35.3.tgz} + registry.npmmirror.com/@expressive-code/plugin-text-markers@0.35.6: + resolution: {integrity: sha512-/k9eWVZSCs+uEKHR++22Uu6eIbHWEciVHbIuD8frT8DlqTtHYaaiwHPncO6KFWnGDz5i/gL7oyl6XmOi/E6GVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@expressive-code/plugin-text-markers/-/plugin-text-markers-0.35.6.tgz} name: '@expressive-code/plugin-text-markers' - version: 0.35.3 + version: 0.35.6 dependencies: - '@expressive-code/core': registry.npmmirror.com/@expressive-code/core@0.35.3 + '@expressive-code/core': registry.npmmirror.com/@expressive-code/core@0.35.6 dev: false registry.npmmirror.com/@fal-works/esbuild-plugin-global-externals@2.1.2: @@ -6117,7 +6079,7 @@ packages: version: 29.7.0 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@jest/types': registry.npmmirror.com/@jest/types@29.6.3 '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.25 babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul@6.1.1 @@ -6235,7 +6197,7 @@ packages: name: '@mdx-js/mdx' version: 3.0.1 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 '@types/estree-jsx': registry.npmmirror.com/@types/estree-jsx@1.0.5 '@types/hast': registry.npmmirror.com/@types/hast@3.0.4 '@types/mdx': registry.npmmirror.com/@types/mdx@2.0.8 @@ -8045,9 +8007,9 @@ packages: name: '@storybook/codemod' version: 7.4.6 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/preset-env': registry.npmmirror.com/@babel/preset-env@7.22.10(@babel/core@7.24.9) - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/preset-env': registry.npmmirror.com/@babel/preset-env@7.22.10(@babel/core@7.25.2) + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 '@storybook/csf': registry.npmmirror.com/@storybook/csf@0.1.1 '@storybook/csf-tools': registry.npmmirror.com/@storybook/csf-tools@7.4.6 '@storybook/node-logger': registry.npmmirror.com/@storybook/node-logger@7.4.6 @@ -8177,7 +8139,7 @@ packages: pretty-hrtime: registry.npmmirror.com/pretty-hrtime@1.0.3 prompts: registry.npmmirror.com/prompts@2.4.2 read-pkg-up: registry.npmmirror.com/read-pkg-up@7.0.1 - semver: registry.npmmirror.com/semver@7.6.2 + semver: registry.npmmirror.com/semver@7.6.3 telejson: registry.npmmirror.com/telejson@7.2.0 tiny-invariant: registry.npmmirror.com/tiny-invariant@1.3.1 ts-dedent: registry.npmmirror.com/ts-dedent@2.2.0 @@ -8209,9 +8171,9 @@ packages: version: 7.4.6 dependencies: '@babel/generator': registry.npmmirror.com/@babel/generator@7.25.0 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 '@storybook/csf': registry.npmmirror.com/@storybook/csf@0.1.1 '@storybook/types': registry.npmmirror.com/@storybook/types@7.4.6 fs-extra: registry.npmmirror.com/fs-extra@11.1.1 @@ -8728,7 +8690,7 @@ packages: name: '@types/acorn' version: 4.0.6 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 dev: false registry.npmmirror.com/@types/aria-query@5.0.2: @@ -8742,8 +8704,8 @@ packages: name: '@types/babel__core' version: 7.20.2 dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 '@types/babel__generator': registry.npmmirror.com/@types/babel__generator@7.6.5 '@types/babel__template': registry.npmmirror.com/@types/babel__template@7.4.2 '@types/babel__traverse': registry.npmmirror.com/@types/babel__traverse@7.20.2 @@ -8754,8 +8716,8 @@ packages: name: '@types/babel__core' version: 7.20.5 dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 '@types/babel__generator': registry.npmmirror.com/@types/babel__generator@7.6.5 '@types/babel__template': registry.npmmirror.com/@types/babel__template@7.4.2 '@types/babel__traverse': registry.npmmirror.com/@types/babel__traverse@7.20.2 @@ -8766,22 +8728,22 @@ packages: name: '@types/babel__generator' version: 7.6.5 dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@types/babel__template@7.4.2: resolution: {integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.2.tgz} name: '@types/babel__template' version: 7.4.2 dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@types/babel__traverse@7.20.2: resolution: {integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.2.tgz} name: '@types/babel__traverse' version: 7.20.2 dependencies: - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 registry.npmmirror.com/@types/body-parser@1.19.3: resolution: {integrity: sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/body-parser/-/body-parser-1.19.3.tgz} @@ -8857,7 +8819,7 @@ packages: name: '@types/estree-jsx' version: 1.0.5 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 dev: false registry.npmmirror.com/@types/estree@0.0.51: @@ -8870,6 +8832,7 @@ packages: resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-1.0.2.tgz} name: '@types/estree' version: 1.0.2 + dev: true registry.npmmirror.com/@types/estree@1.0.5: resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-1.0.5.tgz} @@ -8927,7 +8890,7 @@ packages: name: '@types/hast' version: 3.0.4 dependencies: - '@types/unist': registry.npmmirror.com/@types/unist@2.0.8 + '@types/unist': registry.npmmirror.com/@types/unist@3.0.2 dev: false registry.npmmirror.com/@types/history@4.7.11: @@ -9010,7 +8973,7 @@ packages: name: '@types/mdast' version: 4.0.4 dependencies: - '@types/unist': registry.npmmirror.com/@types/unist@2.0.8 + '@types/unist': registry.npmmirror.com/@types/unist@3.0.2 dev: false registry.npmmirror.com/@types/mdx@2.0.8: @@ -9053,7 +9016,7 @@ packages: name: '@types/nlcst' version: 2.0.3 dependencies: - '@types/unist': registry.npmmirror.com/@types/unist@2.0.8 + '@types/unist': registry.npmmirror.com/@types/unist@3.0.2 dev: false registry.npmmirror.com/@types/node-fetch@2.6.6: @@ -9470,12 +9433,97 @@ packages: - supports-color dev: false + registry.npmmirror.com/@volar/kit@2.4.0(typescript@5.5.4): + resolution: {integrity: sha512-uqwtPKhrbnP+3f8hs+ltDYXLZ6Wdbs54IzkaPocasI4aBhqWLht5qXctE1MqpZU52wbH359E0u9nhxEFmyon+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/kit/-/kit-2.4.0.tgz} + id: registry.npmmirror.com/@volar/kit/2.4.0 + name: '@volar/kit' + version: 2.4.0 + peerDependencies: + typescript: '*' + dependencies: + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + '@volar/typescript': registry.npmmirror.com/@volar/typescript@2.4.0 + typesafe-path: registry.npmmirror.com/typesafe-path@0.2.2 + typescript: registry.npmmirror.com/typescript@5.5.4 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/@volar/language-core@2.4.0: + resolution: {integrity: sha512-FTla+khE+sYK0qJP+6hwPAAUwiNHVMph4RUXpxf/FIPKUP61NFrVZorml4mjFShnueR2y9/j8/vnh09YwVdH7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/language-core/-/language-core-2.4.0.tgz} + name: '@volar/language-core' + version: 2.4.0 + dependencies: + '@volar/source-map': registry.npmmirror.com/@volar/source-map@2.4.0 + dev: false + + registry.npmmirror.com/@volar/language-server@2.4.0: + resolution: {integrity: sha512-rmGIjAxWekWQiGH97Mosb4juiD/hfFYNQKV5Py9r7vDOLSkbIwRhITbwHm88NJKs8P6TNc6w/PfBXN6yjKadJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/language-server/-/language-server-2.4.0.tgz} + name: '@volar/language-server' + version: 2.4.0 + dependencies: + '@volar/language-core': registry.npmmirror.com/@volar/language-core@2.4.0 + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + '@volar/typescript': registry.npmmirror.com/@volar/typescript@2.4.0 + path-browserify: registry.npmmirror.com/path-browserify@1.0.1 + request-light: registry.npmmirror.com/request-light@0.7.0 + vscode-languageserver: registry.npmmirror.com/vscode-languageserver@9.0.1 + vscode-languageserver-protocol: registry.npmmirror.com/vscode-languageserver-protocol@3.17.5 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/@volar/language-service@2.4.0: + resolution: {integrity: sha512-4P3yeQXIL68mLfS3n6P3m02IRg3GnLHUU9k/1PCHEfm5FG9bySkDOc72dbBn2vAa2BxOqm18bmmZXrsWuQ5AOw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/language-service/-/language-service-2.4.0.tgz} + name: '@volar/language-service' + version: 2.4.0 + dependencies: + '@volar/language-core': registry.npmmirror.com/@volar/language-core@2.4.0 + vscode-languageserver-protocol: registry.npmmirror.com/vscode-languageserver-protocol@3.17.5 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/@volar/source-map@2.4.0: + resolution: {integrity: sha512-2ceY8/NEZvN6F44TXw2qRP6AQsvCYhV2bxaBPWxV9HqIfkbRydSksTFObCF1DBDNBfKiZTS8G/4vqV6cvjdOIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/source-map/-/source-map-2.4.0.tgz} + name: '@volar/source-map' + version: 2.4.0 + dev: false + + registry.npmmirror.com/@volar/typescript@2.4.0: + resolution: {integrity: sha512-9zx3lQWgHmVd+JRRAHUSRiEhe4TlzL7U7e6ulWXOxHH/WNYxzKwCvZD7WYWEZFdw4dHfTD9vUR0yPQO6GilCaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/typescript/-/typescript-2.4.0.tgz} + name: '@volar/typescript' + version: 2.4.0 + dependencies: + '@volar/language-core': registry.npmmirror.com/@volar/language-core@2.4.0 + path-browserify: registry.npmmirror.com/path-browserify@1.0.1 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/@vscode/emmet-helper@2.9.3: + resolution: {integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vscode/emmet-helper/-/emmet-helper-2.9.3.tgz} + name: '@vscode/emmet-helper' + version: 2.9.3 + dependencies: + emmet: registry.npmmirror.com/emmet@2.4.7 + jsonc-parser: registry.npmmirror.com/jsonc-parser@2.3.1 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types@3.17.5 + vscode-uri: registry.npmmirror.com/vscode-uri@2.1.2 + dev: false + + registry.npmmirror.com/@vscode/l10n@0.0.18: + resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vscode/l10n/-/l10n-0.0.18.tgz} + name: '@vscode/l10n' + version: 0.0.18 + dev: false + registry.npmmirror.com/@vue/compiler-core@3.3.8: resolution: {integrity: sha512-hN/NNBUECw8SusQvDSqqcVv6gWq8L6iAktUR0UF3vGu2OhzRqcOiAno0FmBJWwxhYEXRlQJT5XnoKsVq1WZx4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.8.tgz} name: '@vue/compiler-core' version: 3.3.8 dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.8 estree-walker: registry.npmmirror.com/estree-walker@2.0.2 source-map-js: registry.npmmirror.com/source-map-js@1.0.2 @@ -9521,11 +9569,11 @@ packages: name: '@vue/reactivity-transform' version: 3.3.8 dependencies: - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 '@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core@3.3.8 '@vue/shared': registry.npmmirror.com/@vue/shared@3.3.8 estree-walker: registry.npmmirror.com/estree-walker@2.0.2 - magic-string: registry.npmmirror.com/magic-string@0.30.5 + magic-string: registry.npmmirror.com/magic-string@0.30.11 dev: true registry.npmmirror.com/@vue/shared@3.3.8: @@ -9673,7 +9721,6 @@ packages: version: 8.12.1 engines: {node: '>=0.4.0'} hasBin: true - dev: false registry.npmmirror.com/add-px-to-style@1.0.0: resolution: {integrity: sha512-YMyxSlXpPjD8uWekCQGuN40lV4bnZagUwqa2m/uFv1z/tNImSk9fnXVMUI5qwME/zzI3MMQRvjZ+69zyfSSyew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/add-px-to-style/-/add-px-to-style-1.0.0.tgz} @@ -9732,6 +9779,17 @@ packages: uri-js: registry.npmmirror.com/uri-js@4.4.1 dev: true + registry.npmmirror.com/ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv/-/ajv-8.17.1.tgz} + name: ajv + version: 8.17.1 + dependencies: + fast-deep-equal: registry.npmmirror.com/fast-deep-equal@3.1.3 + fast-uri: registry.npmmirror.com/fast-uri@3.0.1 + json-schema-traverse: registry.npmmirror.com/json-schema-traverse@1.0.0 + require-from-string: registry.npmmirror.com/require-from-string@2.0.2 + dev: false + registry.npmmirror.com/ansi-align@3.0.1: resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-align/-/ansi-align-3.0.1.tgz} name: ansi-align @@ -10056,19 +10114,19 @@ packages: hasBin: true dev: false - registry.npmmirror.com/astro-expressive-code@0.35.3(astro@4.12.2): - resolution: {integrity: sha512-f1L1m3J3EzZHDEox6TXmuKo5fTSbaNxE/HU0S0UQmvlCowtOKnU/LOsoDwsbQSYGKz+fdLRPsCjFMiKqEoyfcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/astro-expressive-code/-/astro-expressive-code-0.35.3.tgz} - id: registry.npmmirror.com/astro-expressive-code/0.35.3 + registry.npmmirror.com/astro-expressive-code@0.35.6(astro@4.12.2): + resolution: {integrity: sha512-1U4KrvFuodaCV3z4I1bIR16SdhQlPkolGsYTtiANxPZUVv/KitGSCTjzksrkPonn1XuwVqvnwmUUVzTLWngnBA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/astro-expressive-code/-/astro-expressive-code-0.35.6.tgz} + id: registry.npmmirror.com/astro-expressive-code/0.35.6 name: astro-expressive-code - version: 0.35.3 + version: 0.35.6 peerDependencies: astro: ^4.0.0-beta || ^3.3.0 dependencies: - astro: registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.3.2) - rehype-expressive-code: registry.npmmirror.com/rehype-expressive-code@0.35.3 + astro: registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.5.4) + rehype-expressive-code: registry.npmmirror.com/rehype-expressive-code@0.35.6 dev: false - registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.3.2): + registry.npmmirror.com/astro@4.12.2(@types/node@20.4.5)(sass@1.69.1)(typescript@5.5.4): resolution: {integrity: sha512-l6OmqlL+FiuSi9x6F+EGZitteOznq1JffOil7st7cdqeMCTEIym4oagI1a6zp6QekliKWEEZWdplGhgh1k1f7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/astro/-/astro-4.12.2.tgz} id: registry.npmmirror.com/astro/4.12.2 name: astro @@ -10080,12 +10138,12 @@ packages: '@astrojs/internal-helpers': registry.npmmirror.com/@astrojs/internal-helpers@0.4.1 '@astrojs/markdown-remark': registry.npmmirror.com/@astrojs/markdown-remark@5.2.0 '@astrojs/telemetry': registry.npmmirror.com/@astrojs/telemetry@3.1.0 - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 '@babel/generator': registry.npmmirror.com/@babel/generator@7.25.0 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.24.9) - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2) + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 '@types/babel__core': registry.npmmirror.com/@types/babel__core@7.20.5 '@types/cookie': registry.npmmirror.com/@types/cookie@0.6.0 acorn: registry.npmmirror.com/acorn@8.12.1 @@ -10125,11 +10183,11 @@ packages: preferred-pm: registry.npmmirror.com/preferred-pm@4.0.0 prompts: registry.npmmirror.com/prompts@2.4.2 rehype: registry.npmmirror.com/rehype@13.0.1 - semver: registry.npmmirror.com/semver@7.6.2 + semver: registry.npmmirror.com/semver@7.6.3 shiki: registry.npmmirror.com/shiki@1.12.0 string-width: registry.npmmirror.com/string-width@7.2.0 strip-ansi: registry.npmmirror.com/strip-ansi@7.1.0 - tsconfck: registry.npmmirror.com/tsconfck@3.1.1(typescript@5.3.2) + tsconfck: registry.npmmirror.com/tsconfck@3.1.1(typescript@5.5.4) unist-util-visit: registry.npmmirror.com/unist-util-visit@5.0.0 vfile: registry.npmmirror.com/vfile@6.0.2 vite: registry.npmmirror.com/vite@5.3.5(@types/node@20.4.5)(sass@1.69.1) @@ -10219,7 +10277,13 @@ packages: engines: {node: '>= 0.4'} dev: false - registry.npmmirror.com/babel-core@7.0.0-bridge.0(@babel/core@7.24.9): + registry.npmmirror.com/b4a@1.6.6: + resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/b4a/-/b4a-1.6.6.tgz} + name: b4a + version: 1.6.6 + dev: false + + registry.npmmirror.com/babel-core@7.0.0-bridge.0(@babel/core@7.25.2): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz} id: registry.npmmirror.com/babel-core/7.0.0-bridge.0 name: babel-core @@ -10227,7 +10291,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 dev: true registry.npmmirror.com/babel-plugin-istanbul@6.1.1: @@ -10236,7 +10300,7 @@ packages: version: 6.1.1 engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.24.8 '@istanbuljs/load-nyc-config': registry.npmmirror.com/@istanbuljs/load-nyc-config@1.1.0 '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument@5.2.1 @@ -10301,6 +10365,54 @@ packages: name: balanced-match version: 1.0.2 + registry.npmmirror.com/bare-events@2.4.2: + resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bare-events/-/bare-events-2.4.2.tgz} + name: bare-events + version: 2.4.2 + requiresBuild: true + dev: false + optional: true + + registry.npmmirror.com/bare-fs@2.3.1: + resolution: {integrity: sha512-W/Hfxc/6VehXlsgFtbB5B4xFcsCl+pAh30cYhoFyXErf6oGrwjh8SwiPAdHgpmWonKuYpZgGywN0SXt7dgsADA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bare-fs/-/bare-fs-2.3.1.tgz} + name: bare-fs + version: 2.3.1 + requiresBuild: true + dependencies: + bare-events: registry.npmmirror.com/bare-events@2.4.2 + bare-path: registry.npmmirror.com/bare-path@2.1.3 + bare-stream: registry.npmmirror.com/bare-stream@2.1.3 + dev: false + optional: true + + registry.npmmirror.com/bare-os@2.4.0: + resolution: {integrity: sha512-v8DTT08AS/G0F9xrhyLtepoo9EJBJ85FRSMbu1pQUlAf6A8T0tEEQGMVObWeqpjhSPXsE0VGlluFBJu2fdoTNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bare-os/-/bare-os-2.4.0.tgz} + name: bare-os + version: 2.4.0 + requiresBuild: true + dev: false + optional: true + + registry.npmmirror.com/bare-path@2.1.3: + resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bare-path/-/bare-path-2.1.3.tgz} + name: bare-path + version: 2.1.3 + requiresBuild: true + dependencies: + bare-os: registry.npmmirror.com/bare-os@2.4.0 + dev: false + optional: true + + registry.npmmirror.com/bare-stream@2.1.3: + resolution: {integrity: sha512-tiDAH9H/kP+tvNO5sczyn9ZAA7utrSMobyDchsnyyXBuUe2FSQWbxhtuHB8jwpHYYevVo2UJpcmvvjrbHboUUQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bare-stream/-/bare-stream-2.1.3.tgz} + name: bare-stream + version: 2.1.3 + requiresBuild: true + dependencies: + streamx: registry.npmmirror.com/streamx@2.18.0 + dev: false + optional: true + registry.npmmirror.com/base-64@1.0.0: resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/base-64/-/base-64-1.0.0.tgz} name: base-64 @@ -10311,7 +10423,6 @@ packages: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz} name: base64-js version: 1.5.1 - dev: true registry.npmmirror.com/base@0.11.2: resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/base/-/base-0.11.2.tgz} @@ -10392,7 +10503,6 @@ packages: buffer: registry.npmmirror.com/buffer@5.7.1 inherits: registry.npmmirror.com/inherits@2.0.4 readable-stream: registry.npmmirror.com/readable-stream@3.6.2 - dev: true registry.npmmirror.com/bluebird@3.7.2: resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bluebird/-/bluebird-3.7.2.tgz} @@ -10531,7 +10641,6 @@ packages: electron-to-chromium: registry.npmmirror.com/electron-to-chromium@1.5.11 node-releases: registry.npmmirror.com/node-releases@2.0.18 update-browserslist-db: registry.npmmirror.com/update-browserslist-db@1.1.0(browserslist@4.23.3) - dev: true registry.npmmirror.com/bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bser/-/bser-2.1.1.tgz} @@ -10560,7 +10669,6 @@ packages: dependencies: base64-js: registry.npmmirror.com/base64-js@1.5.1 ieee754: registry.npmmirror.com/ieee754@1.2.1 - dev: true registry.npmmirror.com/bufferhelper@0.2.1: resolution: {integrity: sha512-asncN5SO1YOZLCV3u26XtrbF9QXhSyq01nQOc1TFt9/gfOn7feOGJoVKk5Ewtj7wvFGPH/eGSKZ5qq/A4/PPfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/bufferhelper/-/bufferhelper-0.2.1.tgz} @@ -10695,7 +10803,6 @@ packages: resolution: {integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz} name: caniuse-lite version: 1.0.30001651 - dev: true registry.npmmirror.com/ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ccount/-/ccount-2.0.1.tgz} @@ -10844,7 +10951,6 @@ packages: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chownr/-/chownr-1.1.4.tgz} name: chownr version: 1.1.4 - dev: true registry.npmmirror.com/chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chownr/-/chownr-2.0.0.tgz} @@ -11069,7 +11175,6 @@ packages: color-name: registry.npmmirror.com/color-name@1.1.4 simple-swizzle: registry.npmmirror.com/simple-swizzle@0.2.2 dev: false - optional: true registry.npmmirror.com/color@4.2.3: resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/color/-/color-4.2.3.tgz} @@ -11081,7 +11186,6 @@ packages: color-convert: registry.npmmirror.com/color-convert@2.0.1 color-string: registry.npmmirror.com/color-string@1.9.1 dev: false - optional: true registry.npmmirror.com/colorette@2.0.20: resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz} @@ -11353,7 +11457,7 @@ packages: handlebars: registry.npmmirror.com/handlebars@4.7.8 json-stringify-safe: registry.npmmirror.com/json-stringify-safe@5.0.1 meow: registry.npmmirror.com/meow@12.1.1 - semver: registry.npmmirror.com/semver@7.6.2 + semver: registry.npmmirror.com/semver@7.6.3 split2: registry.npmmirror.com/split2@4.2.0 dev: true @@ -11744,7 +11848,6 @@ packages: engines: {node: '>=10'} dependencies: mimic-response: registry.npmmirror.com/mimic-response@3.1.0 - dev: true registry.npmmirror.com/deep-equal@2.2.2: resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/deep-equal/-/deep-equal-2.2.2.tgz} @@ -11776,7 +11879,6 @@ packages: name: deep-extend version: 0.6.0 engines: {node: '>=4.0.0'} - dev: true registry.npmmirror.com/deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz} @@ -11966,7 +12068,6 @@ packages: engines: {node: '>=8'} requiresBuild: true dev: false - optional: true registry.npmmirror.com/detect-node-es@1.1.0: resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/detect-node-es/-/detect-node-es-1.1.0.tgz} @@ -12316,13 +12417,21 @@ packages: resolution: {integrity: sha512-R1CccCDYqndR25CaXFd6hp/u9RaaMcftMkphmvuepXr5b1vfLkRml6aWVeBhXJ7rbevHkKEMJtz8XqPf7ffmew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.11.tgz} name: electron-to-chromium version: 1.5.11 - dev: true registry.npmmirror.com/electron-to-chromium@1.5.2: resolution: {integrity: sha512-kc4r3U3V3WLaaZqThjYz/Y6z8tJe+7K0bbjUVo3i+LWIypVdMx5nXCkwRe6SWbY6ILqLdc1rKcKmr3HoH7wjSQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.2.tgz} name: electron-to-chromium version: 1.5.2 + registry.npmmirror.com/emmet@2.4.7: + resolution: {integrity: sha512-O5O5QNqtdlnQM2bmKHtJgyChcrFMgQuulI+WdiOw2NArzprUqqxUW6bgYtKvzKgrsYpuLWalOkdhNP+1jluhCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emmet/-/emmet-2.4.7.tgz} + name: emmet + version: 2.4.7 + dependencies: + '@emmetio/abbreviation': registry.npmmirror.com/@emmetio/abbreviation@2.3.3 + '@emmetio/css-abbreviation': registry.npmmirror.com/@emmetio/css-abbreviation@2.1.8 + dev: false + registry.npmmirror.com/emoji-regex@10.3.0: resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-10.3.0.tgz} name: emoji-regex @@ -12371,7 +12480,6 @@ packages: version: 1.4.4 dependencies: once: registry.npmmirror.com/once@1.4.0 - dev: true registry.npmmirror.com/entities@1.1.2: resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/entities/-/entities-1.1.2.tgz} @@ -12655,13 +12763,6 @@ packages: '@esbuild/win32-x64': registry.npmmirror.com/@esbuild/win32-x64@0.21.5 dev: false - registry.npmmirror.com/escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz} - name: escalade - version: 3.1.1 - engines: {node: '>=6'} - dev: false - registry.npmmirror.com/escalade@3.1.2: resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.2.tgz} name: escalade @@ -12853,8 +12954,8 @@ packages: version: 3.2.1 engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.1 - '@babel/types': registry.npmmirror.com/@babel/types@7.25.0 + '@babel/traverse': registry.npmmirror.com/@babel/traverse@7.25.3 + '@babel/types': registry.npmmirror.com/@babel/types@7.25.2 c8: registry.npmmirror.com/c8@7.14.0 transitivePeerDependencies: - supports-color @@ -12865,7 +12966,7 @@ packages: name: estree-util-attach-comments version: 3.0.0 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 dev: false registry.npmmirror.com/estree-util-build-jsx@3.0.1: @@ -12915,7 +13016,7 @@ packages: name: estree-walker version: 3.0.3 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 dev: false registry.npmmirror.com/esutils@2.0.3: @@ -12991,6 +13092,13 @@ packages: - supports-color dev: true + registry.npmmirror.com/expand-template@2.0.3: + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/expand-template/-/expand-template-2.0.3.tgz} + name: expand-template + version: 2.0.3 + engines: {node: '>=6'} + dev: false + registry.npmmirror.com/express-fileupload@1.4.3: resolution: {integrity: sha512-vRzZo2YELm68DfR/CX8RMXgeK9BTAANxigrKACPjCXFGEzkCt/QWbqaIXP3W61uaX/hLj0CAo3/EVelpSQXkqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/express-fileupload/-/express-fileupload-1.4.3.tgz} name: express-fileupload @@ -13040,15 +13148,15 @@ packages: transitivePeerDependencies: - supports-color - registry.npmmirror.com/expressive-code@0.35.3: - resolution: {integrity: sha512-XjWWUCxS4uQjPoRM98R7SNWWIYlFEaOeHm1piWv+c7coHCekuWno81thsc3g/UJ+DajNtOEsIQIAAcsBQZ8LMg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/expressive-code/-/expressive-code-0.35.3.tgz} + registry.npmmirror.com/expressive-code@0.35.6: + resolution: {integrity: sha512-+mx+TPTbMqgo0mL92Xh9QgjW0kSQIsEivMgEcOnaqKqL7qCw8Vkqc5Rg/di7ZYw4aMUSr74VTc+w8GQWu05j1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/expressive-code/-/expressive-code-0.35.6.tgz} name: expressive-code - version: 0.35.3 + version: 0.35.6 dependencies: - '@expressive-code/core': registry.npmmirror.com/@expressive-code/core@0.35.3 - '@expressive-code/plugin-frames': registry.npmmirror.com/@expressive-code/plugin-frames@0.35.3 - '@expressive-code/plugin-shiki': registry.npmmirror.com/@expressive-code/plugin-shiki@0.35.3 - '@expressive-code/plugin-text-markers': registry.npmmirror.com/@expressive-code/plugin-text-markers@0.35.3 + '@expressive-code/core': registry.npmmirror.com/@expressive-code/core@0.35.6 + '@expressive-code/plugin-frames': registry.npmmirror.com/@expressive-code/plugin-frames@0.35.6 + '@expressive-code/plugin-shiki': registry.npmmirror.com/@expressive-code/plugin-shiki@0.35.6 + '@expressive-code/plugin-text-markers': registry.npmmirror.com/@expressive-code/plugin-text-markers@0.35.6 dev: false registry.npmmirror.com/extend-shallow@2.0.1: @@ -13121,7 +13229,12 @@ packages: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz} name: fast-deep-equal version: 3.1.3 - dev: true + + registry.npmmirror.com/fast-fifo@1.3.2: + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-fifo/-/fast-fifo-1.3.2.tgz} + name: fast-fifo + version: 1.3.2 + dev: false registry.npmmirror.com/fast-glob@3.3.2: resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.2.tgz} @@ -13147,6 +13260,12 @@ packages: version: 2.0.6 dev: true + registry.npmmirror.com/fast-uri@3.0.1: + resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-uri/-/fast-uri-3.0.1.tgz} + name: fast-uri + version: 3.0.1 + dev: false + registry.npmmirror.com/fastq@1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz} name: fastq @@ -13470,7 +13589,6 @@ packages: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fs-constants/-/fs-constants-1.0.0.tgz} name: fs-constants version: 1.0.0 - dev: true registry.npmmirror.com/fs-extra@10.1.0: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz} @@ -13692,7 +13810,7 @@ packages: hasBin: true dependencies: meow: registry.npmmirror.com/meow@12.1.1 - semver: registry.npmmirror.com/semver@7.6.2 + semver: registry.npmmirror.com/semver@7.6.3 dev: true registry.npmmirror.com/git-up@7.0.0: @@ -13712,6 +13830,12 @@ packages: git-up: registry.npmmirror.com/git-up@7.0.0 dev: true + registry.npmmirror.com/github-from-package@0.0.0: + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/github-from-package/-/github-from-package-0.0.0.tgz} + name: github-from-package + version: 0.0.0 + dev: false + registry.npmmirror.com/github-slugger@1.5.0: resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/github-slugger/-/github-slugger-1.5.0.tgz} name: github-slugger @@ -14224,7 +14348,7 @@ packages: name: hast-util-to-estree version: 3.1.0 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 '@types/estree-jsx': registry.npmmirror.com/@types/estree-jsx@1.0.5 '@types/hast': registry.npmmirror.com/@types/hast@3.0.4 comma-separated-tokens: registry.npmmirror.com/comma-separated-tokens@2.0.3 @@ -14268,7 +14392,7 @@ packages: name: hast-util-to-jsx-runtime version: 2.3.0 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 '@types/hast': registry.npmmirror.com/@types/hast@3.0.4 '@types/unist': registry.npmmirror.com/@types/unist@3.0.2 comma-separated-tokens: registry.npmmirror.com/comma-separated-tokens@2.0.3 @@ -14674,7 +14798,6 @@ packages: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz} name: ini version: 1.3.8 - dev: true registry.npmmirror.com/ini@4.1.1: resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ini/-/ini-4.1.1.tgz} @@ -14818,7 +14941,6 @@ packages: version: 0.3.2 requiresBuild: true dev: false - optional: true registry.npmmirror.com/is-async-function@2.0.0: resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/is-async-function/-/is-async-function-2.0.0.tgz} @@ -15176,7 +15298,7 @@ packages: name: is-reference version: 3.0.2 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 dev: false registry.npmmirror.com/is-regex@1.1.4: @@ -15419,8 +15541,8 @@ packages: version: 5.2.1 engines: {node: '>=8'} dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 '@istanbuljs/schema': registry.npmmirror.com/@istanbuljs/schema@0.1.3 istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0 semver: registry.npmmirror.com/semver@6.3.1 @@ -15586,17 +15708,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': registry.npmmirror.com/@babel/core@7.24.9 - '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.0 - '@babel/plugin-proposal-class-properties': registry.npmmirror.com/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.9) - '@babel/plugin-proposal-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.9) - '@babel/plugin-proposal-optional-chaining': registry.npmmirror.com/@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.9) - '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.24.9) - '@babel/preset-env': registry.npmmirror.com/@babel/preset-env@7.22.10(@babel/core@7.24.9) - '@babel/preset-flow': registry.npmmirror.com/@babel/preset-flow@7.22.15(@babel/core@7.24.9) - '@babel/preset-typescript': registry.npmmirror.com/@babel/preset-typescript@7.22.5(@babel/core@7.24.9) - '@babel/register': registry.npmmirror.com/@babel/register@7.22.15(@babel/core@7.24.9) - babel-core: registry.npmmirror.com/babel-core@7.0.0-bridge.0(@babel/core@7.24.9) + '@babel/core': registry.npmmirror.com/@babel/core@7.25.2 + '@babel/parser': registry.npmmirror.com/@babel/parser@7.25.3 + '@babel/plugin-proposal-class-properties': registry.npmmirror.com/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.2) + '@babel/plugin-proposal-nullish-coalescing-operator': registry.npmmirror.com/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.2) + '@babel/plugin-proposal-optional-chaining': registry.npmmirror.com/@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.2) + '@babel/plugin-transform-modules-commonjs': registry.npmmirror.com/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.25.2) + '@babel/preset-env': registry.npmmirror.com/@babel/preset-env@7.22.10(@babel/core@7.25.2) + '@babel/preset-flow': registry.npmmirror.com/@babel/preset-flow@7.22.15(@babel/core@7.25.2) + '@babel/preset-typescript': registry.npmmirror.com/@babel/preset-typescript@7.22.5(@babel/core@7.25.2) + '@babel/register': registry.npmmirror.com/@babel/register@7.22.15(@babel/core@7.25.2) + babel-core: registry.npmmirror.com/babel-core@7.0.0-bridge.0(@babel/core@7.25.2) chalk: registry.npmmirror.com/chalk@4.1.2 flow-parser: registry.npmmirror.com/flow-parser@0.218.0 graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11 @@ -15647,6 +15769,12 @@ packages: version: 0.4.1 dev: true + registry.npmmirror.com/json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz} + name: json-schema-traverse + version: 1.0.0 + dev: false + registry.npmmirror.com/json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz} name: json-stable-stringify-without-jsonify @@ -15675,6 +15803,18 @@ packages: engines: {node: '>=6'} hasBin: true + registry.npmmirror.com/jsonc-parser@2.3.1: + resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-2.3.1.tgz} + name: jsonc-parser + version: 2.3.1 + dev: false + + registry.npmmirror.com/jsonc-parser@3.3.1: + resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.3.1.tgz} + name: jsonc-parser + version: 3.3.1 + dev: false + registry.npmmirror.com/jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonfile/-/jsonfile-4.0.0.tgz} name: jsonfile @@ -16085,7 +16225,6 @@ packages: version: 0.30.11 dependencies: '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.5.0 - dev: false registry.npmmirror.com/magic-string@0.30.4: resolution: {integrity: sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.4.tgz} @@ -16671,7 +16810,7 @@ packages: name: micromark-extension-mdx-expression version: 3.0.0 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 devlop: registry.npmmirror.com/devlop@1.1.0 micromark-factory-mdx-expression: registry.npmmirror.com/micromark-factory-mdx-expression@2.0.1 micromark-factory-space: registry.npmmirror.com/micromark-factory-space@2.0.0 @@ -16687,7 +16826,7 @@ packages: version: 3.0.0 dependencies: '@types/acorn': registry.npmmirror.com/@types/acorn@4.0.6 - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 devlop: registry.npmmirror.com/devlop@1.1.0 estree-util-is-identifier-name: registry.npmmirror.com/estree-util-is-identifier-name@3.0.0 micromark-factory-mdx-expression: registry.npmmirror.com/micromark-factory-mdx-expression@2.0.1 @@ -16711,7 +16850,7 @@ packages: name: micromark-extension-mdxjs-esm version: 3.0.0 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 devlop: registry.npmmirror.com/devlop@1.1.0 micromark-core-commonmark: registry.npmmirror.com/micromark-core-commonmark@2.0.1 micromark-util-character: registry.npmmirror.com/micromark-util-character@2.1.0 @@ -16763,7 +16902,7 @@ packages: name: micromark-factory-mdx-expression version: 2.0.1 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 devlop: registry.npmmirror.com/devlop@1.1.0 micromark-util-character: registry.npmmirror.com/micromark-util-character@2.1.0 micromark-util-events-to-acorn: registry.npmmirror.com/micromark-util-events-to-acorn@2.0.2 @@ -16871,7 +17010,7 @@ packages: version: 2.0.2 dependencies: '@types/acorn': registry.npmmirror.com/@types/acorn@4.0.6 - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 '@types/unist': registry.npmmirror.com/@types/unist@3.0.2 devlop: registry.npmmirror.com/devlop@1.1.0 estree-util-visit: registry.npmmirror.com/estree-util-visit@2.0.0 @@ -17039,7 +17178,6 @@ packages: name: mimic-response version: 3.1.0 engines: {node: '>=10'} - dev: true registry.npmmirror.com/mimic-response@4.0.0: resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mimic-response/-/mimic-response-4.0.0.tgz} @@ -17092,7 +17230,6 @@ packages: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz} name: minimist version: 1.2.8 - dev: true registry.npmmirror.com/minipass@3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz} @@ -17147,7 +17284,6 @@ packages: resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz} name: mkdirp-classic version: 0.5.3 - dev: true registry.npmmirror.com/mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz} @@ -17195,6 +17331,12 @@ packages: name: ms version: 2.1.3 + registry.npmmirror.com/muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/muggle-string/-/muggle-string-0.4.1.tgz} + name: muggle-string + version: 0.4.1 + dev: false + registry.npmmirror.com/music-metadata@7.14.0: resolution: {integrity: sha512-xrm3w7SV0Wk+OythZcSbaI8mcr/KHd0knJieu8bVpaPfMv/Agz5EooCAPz3OR5hbYMiUG6dgAPKZKnMzV+3amA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/music-metadata/-/music-metadata-7.14.0.tgz} name: music-metadata @@ -17262,6 +17404,12 @@ packages: engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} dev: false + registry.npmmirror.com/napi-build-utils@1.0.2: + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz} + name: napi-build-utils + version: 1.0.2 + dev: false + registry.npmmirror.com/natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz} name: natural-compare @@ -17303,6 +17451,21 @@ packages: '@types/nlcst': registry.npmmirror.com/@types/nlcst@2.0.3 dev: false + registry.npmmirror.com/node-abi@3.67.0: + resolution: {integrity: sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-abi/-/node-abi-3.67.0.tgz} + name: node-abi + version: 3.67.0 + engines: {node: '>=10'} + dependencies: + semver: registry.npmmirror.com/semver@7.6.3 + dev: false + + registry.npmmirror.com/node-addon-api@6.1.0: + resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-addon-api/-/node-addon-api-6.1.0.tgz} + name: node-addon-api + version: 6.1.0 + dev: false + registry.npmmirror.com/node-dir@0.1.17: resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-dir/-/node-dir-0.1.17.tgz} name: node-dir @@ -17395,7 +17558,7 @@ packages: engines: {node: ^16.14.0 || >=18.0.0} dependencies: hosted-git-info: registry.npmmirror.com/hosted-git-info@7.0.2 - semver: registry.npmmirror.com/semver@7.6.2 + semver: registry.npmmirror.com/semver@7.6.3 validate-npm-package-license: registry.npmmirror.com/validate-npm-package-license@3.0.4 dev: true @@ -17847,7 +18010,7 @@ packages: ky: registry.npmmirror.com/ky@1.4.0 registry-auth-token: registry.npmmirror.com/registry-auth-token@5.0.2 registry-url: registry.npmmirror.com/registry-url@6.0.1 - semver: registry.npmmirror.com/semver@7.6.2 + semver: registry.npmmirror.com/semver@7.6.3 dev: true registry.npmmirror.com/pagefind@1.1.0: @@ -17974,6 +18137,12 @@ packages: engines: {node: '>=0.10.0'} dev: true + registry.npmmirror.com/path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-browserify/-/path-browserify-1.0.1.tgz} + name: path-browserify + version: 1.0.1 + dev: false + registry.npmmirror.com/path-exists@3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz} name: path-exists @@ -18105,7 +18274,7 @@ packages: name: periscopic version: 3.1.0 dependencies: - '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.5 estree-walker: registry.npmmirror.com/estree-walker@3.0.3 is-reference: registry.npmmirror.com/is-reference@3.0.2 dev: false @@ -18316,6 +18485,27 @@ packages: posthtml-render: registry.npmmirror.com/posthtml-render@1.4.0 dev: true + registry.npmmirror.com/prebuild-install@7.1.2: + resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prebuild-install/-/prebuild-install-7.1.2.tgz} + name: prebuild-install + version: 7.1.2 + engines: {node: '>=10'} + hasBin: true + dependencies: + detect-libc: registry.npmmirror.com/detect-libc@2.0.3 + expand-template: registry.npmmirror.com/expand-template@2.0.3 + github-from-package: registry.npmmirror.com/github-from-package@0.0.0 + minimist: registry.npmmirror.com/minimist@1.2.8 + mkdirp-classic: registry.npmmirror.com/mkdirp-classic@0.5.3 + napi-build-utils: registry.npmmirror.com/napi-build-utils@1.0.2 + node-abi: registry.npmmirror.com/node-abi@3.67.0 + pump: registry.npmmirror.com/pump@3.0.0 + rc: registry.npmmirror.com/rc@1.2.8 + simple-get: registry.npmmirror.com/simple-get@4.0.1 + tar-fs: registry.npmmirror.com/tar-fs@2.1.1 + tunnel-agent: registry.npmmirror.com/tunnel-agent@0.6.0 + dev: false + registry.npmmirror.com/preferred-pm@4.0.0: resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/preferred-pm/-/preferred-pm-4.0.0.tgz} name: preferred-pm @@ -18340,6 +18530,16 @@ packages: engines: {node: '>= 0.8.0'} dev: true + registry.npmmirror.com/prettier@2.8.7: + resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prettier/-/prettier-2.8.7.tgz} + name: prettier + version: 2.8.7 + engines: {node: '>=10.13.0'} + hasBin: true + requiresBuild: true + dev: false + optional: true + registry.npmmirror.com/prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/prettier/-/prettier-2.8.8.tgz} name: prettier @@ -18354,7 +18554,6 @@ packages: version: 3.0.3 engines: {node: '>=14'} hasBin: true - dev: true registry.npmmirror.com/pretty-format@27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pretty-format/-/pretty-format-27.5.1.tgz} @@ -18484,7 +18683,6 @@ packages: dependencies: end-of-stream: registry.npmmirror.com/end-of-stream@1.4.4 once: registry.npmmirror.com/once@1.4.0 - dev: true registry.npmmirror.com/pumpify@1.5.1: resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/pumpify/-/pumpify-1.5.1.tgz} @@ -18579,6 +18777,12 @@ packages: name: queue-microtask version: 1.2.3 + registry.npmmirror.com/queue-tick@1.0.1: + resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/queue-tick/-/queue-tick-1.0.1.tgz} + name: queue-tick + version: 1.0.1 + dev: false + registry.npmmirror.com/quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/quick-lru/-/quick-lru-5.1.1.tgz} name: quick-lru @@ -18627,7 +18831,6 @@ packages: ini: registry.npmmirror.com/ini@1.3.8 minimist: registry.npmmirror.com/minimist@1.2.8 strip-json-comments: registry.npmmirror.com/strip-json-comments@2.0.1 - dev: true registry.npmmirror.com/react-colorful@5.6.1(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/react-colorful/-/react-colorful-5.6.1.tgz} @@ -19245,12 +19448,12 @@ packages: jsesc: registry.npmmirror.com/jsesc@0.5.0 dev: true - registry.npmmirror.com/rehype-expressive-code@0.35.3: - resolution: {integrity: sha512-kj43Rg+WzYUs8RRr6XyBr60pnrIZEgbmn9yJoV6qka1UDpcx7r8icn6Q2uSAgaLtlEUy+HCPgQJraOZrA53LOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rehype-expressive-code/-/rehype-expressive-code-0.35.3.tgz} + registry.npmmirror.com/rehype-expressive-code@0.35.6: + resolution: {integrity: sha512-pPdE+pRcRw01kxMOwHQjuRxgwlblZt5+wAc3w2aPGgmcnn57wYjn07iKO7zaznDxYVxMYVvYlnL+R3vWFQS4Gw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rehype-expressive-code/-/rehype-expressive-code-0.35.6.tgz} name: rehype-expressive-code - version: 0.35.3 + version: 0.35.6 dependencies: - expressive-code: registry.npmmirror.com/expressive-code@0.35.3 + expressive-code: registry.npmmirror.com/expressive-code@0.35.6 dev: false registry.npmmirror.com/rehype-format@5.0.0: @@ -19482,12 +19685,31 @@ packages: engines: {node: '>=0.10'} dev: true + registry.npmmirror.com/request-light@0.5.8: + resolution: {integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/request-light/-/request-light-0.5.8.tgz} + name: request-light + version: 0.5.8 + dev: false + + registry.npmmirror.com/request-light@0.7.0: + resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/request-light/-/request-light-0.7.0.tgz} + name: request-light + version: 0.7.0 + dev: false + registry.npmmirror.com/require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz} name: require-directory version: 2.1.1 engines: {node: '>=0.10.0'} + registry.npmmirror.com/require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz} + name: require-from-string + version: 2.0.2 + engines: {node: '>=0.10.0'} + dev: false + registry.npmmirror.com/require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/require-main-filename/-/require-main-filename-2.0.0.tgz} name: require-main-filename @@ -19847,7 +20069,7 @@ packages: version: 4.0.0 engines: {node: '>=12'} dependencies: - semver: registry.npmmirror.com/semver@7.6.2 + semver: registry.npmmirror.com/semver@7.6.3 dev: true registry.npmmirror.com/semver@5.7.2: @@ -19878,6 +20100,7 @@ packages: version: 7.6.2 engines: {node: '>=10'} hasBin: true + dev: true registry.npmmirror.com/semver@7.6.3: resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/semver/-/semver-7.6.3.tgz} @@ -19964,6 +20187,23 @@ packages: kind-of: registry.npmmirror.com/kind-of@6.0.3 dev: true + registry.npmmirror.com/sharp@0.32.5: + resolution: {integrity: sha512-0dap3iysgDkNaPOaOL4X/0akdu0ma62GcdC2NBQ+93eqpePdDdr2/LM0sFdDSMmN7yS+odyZtPsb7tx/cYBKnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sharp/-/sharp-0.32.5.tgz} + name: sharp + version: 0.32.5 + engines: {node: '>=14.15.0'} + requiresBuild: true + dependencies: + color: registry.npmmirror.com/color@4.2.3 + detect-libc: registry.npmmirror.com/detect-libc@2.0.3 + node-addon-api: registry.npmmirror.com/node-addon-api@6.1.0 + prebuild-install: registry.npmmirror.com/prebuild-install@7.1.2 + semver: registry.npmmirror.com/semver@7.6.3 + simple-get: registry.npmmirror.com/simple-get@4.0.1 + tar-fs: registry.npmmirror.com/tar-fs@3.0.6 + tunnel-agent: registry.npmmirror.com/tunnel-agent@0.6.0 + dev: false + registry.npmmirror.com/sharp@0.33.5: resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/sharp/-/sharp-0.33.5.tgz} name: sharp @@ -20052,6 +20292,22 @@ packages: version: 4.1.0 engines: {node: '>=14'} + registry.npmmirror.com/simple-concat@1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/simple-concat/-/simple-concat-1.0.1.tgz} + name: simple-concat + version: 1.0.1 + dev: false + + registry.npmmirror.com/simple-get@4.0.1: + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/simple-get/-/simple-get-4.0.1.tgz} + name: simple-get + version: 4.0.1 + dependencies: + decompress-response: registry.npmmirror.com/decompress-response@6.0.0 + once: registry.npmmirror.com/once@1.4.0 + simple-concat: registry.npmmirror.com/simple-concat@1.0.1 + dev: false + registry.npmmirror.com/simple-swizzle@0.2.2: resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz} name: simple-swizzle @@ -20060,7 +20316,6 @@ packages: dependencies: is-arrayish: registry.npmmirror.com/is-arrayish@0.3.2 dev: false - optional: true registry.npmmirror.com/simple-update-notifier@2.0.0: resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz} @@ -20068,7 +20323,7 @@ packages: version: 2.0.0 engines: {node: '>=10'} dependencies: - semver: registry.npmmirror.com/semver@7.6.2 + semver: registry.npmmirror.com/semver@7.6.3 dev: true registry.npmmirror.com/sisteransi@1.0.5: @@ -20399,6 +20654,18 @@ packages: engines: {node: '>=10.0.0'} dev: false + registry.npmmirror.com/streamx@2.18.0: + resolution: {integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/streamx/-/streamx-2.18.0.tgz} + name: streamx + version: 2.18.0 + dependencies: + fast-fifo: registry.npmmirror.com/fast-fifo@1.3.2 + queue-tick: registry.npmmirror.com/queue-tick@1.0.1 + text-decoder: registry.npmmirror.com/text-decoder@1.1.1 + optionalDependencies: + bare-events: registry.npmmirror.com/bare-events@2.4.2 + dev: false + registry.npmmirror.com/strict-uri-encode@1.1.0: resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz} name: strict-uri-encode @@ -20572,7 +20839,6 @@ packages: name: strip-json-comments version: 2.0.1 engines: {node: '>=0.10.0'} - dev: true registry.npmmirror.com/strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz} @@ -20730,7 +20996,18 @@ packages: mkdirp-classic: registry.npmmirror.com/mkdirp-classic@0.5.3 pump: registry.npmmirror.com/pump@3.0.0 tar-stream: registry.npmmirror.com/tar-stream@2.2.0 - dev: true + + registry.npmmirror.com/tar-fs@3.0.6: + resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tar-fs/-/tar-fs-3.0.6.tgz} + name: tar-fs + version: 3.0.6 + dependencies: + pump: registry.npmmirror.com/pump@3.0.0 + tar-stream: registry.npmmirror.com/tar-stream@3.1.7 + optionalDependencies: + bare-fs: registry.npmmirror.com/bare-fs@2.3.1 + bare-path: registry.npmmirror.com/bare-path@2.1.3 + dev: false registry.npmmirror.com/tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tar-stream/-/tar-stream-2.2.0.tgz} @@ -20743,7 +21020,16 @@ packages: fs-constants: registry.npmmirror.com/fs-constants@1.0.0 inherits: registry.npmmirror.com/inherits@2.0.4 readable-stream: registry.npmmirror.com/readable-stream@3.6.2 - dev: true + + registry.npmmirror.com/tar-stream@3.1.7: + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tar-stream/-/tar-stream-3.1.7.tgz} + name: tar-stream + version: 3.1.7 + dependencies: + b4a: registry.npmmirror.com/b4a@1.6.6 + fast-fifo: registry.npmmirror.com/fast-fifo@1.3.2 + streamx: registry.npmmirror.com/streamx@2.18.0 + dev: false registry.npmmirror.com/tar@6.2.0: resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tar/-/tar-6.2.0.tgz} @@ -20854,6 +21140,14 @@ packages: minimatch: registry.npmmirror.com/minimatch@3.1.2 dev: true + registry.npmmirror.com/text-decoder@1.1.1: + resolution: {integrity: sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/text-decoder/-/text-decoder-1.1.1.tgz} + name: text-decoder + version: 1.1.1 + dependencies: + b4a: registry.npmmirror.com/b4a@1.6.6 + dev: false + registry.npmmirror.com/text-extensions@2.4.0: resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/text-extensions/-/text-extensions-2.4.0.tgz} name: text-extensions @@ -21054,7 +21348,7 @@ packages: engines: {node: '>=6.10'} dev: true - registry.npmmirror.com/tsconfck@3.1.1(typescript@5.3.2): + registry.npmmirror.com/tsconfck@3.1.1(typescript@5.5.4): resolution: {integrity: sha512-00eoI6WY57SvZEVjm13stEVE90VkEdJAFGgpFLTsZbJyW/LwFQ7uQxJHWpZ2hzSWgCPKc9AnBnNP+0X7o3hAmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tsconfck/-/tsconfck-3.1.1.tgz} id: registry.npmmirror.com/tsconfck/3.1.1 name: tsconfck @@ -21067,7 +21361,7 @@ packages: typescript: optional: true dependencies: - typescript: registry.npmmirror.com/typescript@5.3.2 + typescript: registry.npmmirror.com/typescript@5.5.4 dev: false registry.npmmirror.com/tslib@1.14.1: @@ -21093,6 +21387,14 @@ packages: name: tslib version: 2.6.3 + registry.npmmirror.com/tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz} + name: tunnel-agent + version: 0.6.0 + dependencies: + safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 + dev: false + registry.npmmirror.com/tunnel@0.0.6: resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tunnel/-/tunnel-0.0.6.tgz} name: tunnel @@ -21246,12 +21548,35 @@ packages: version: 0.0.6 dev: true + registry.npmmirror.com/typesafe-path@0.2.2: + resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typesafe-path/-/typesafe-path-0.2.2.tgz} + name: typesafe-path + version: 0.2.2 + dev: false + + registry.npmmirror.com/typescript-auto-import-cache@0.3.3: + resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript-auto-import-cache/-/typescript-auto-import-cache-0.3.3.tgz} + name: typescript-auto-import-cache + version: 0.3.3 + dependencies: + semver: registry.npmmirror.com/semver@7.6.3 + dev: false + registry.npmmirror.com/typescript@5.3.2: resolution: {integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-5.3.2.tgz} name: typescript version: 5.3.2 engines: {node: '>=14.17'} hasBin: true + dev: true + + registry.npmmirror.com/typescript@5.5.4: + resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/typescript/-/typescript-5.5.4.tgz} + name: typescript + version: 5.5.4 + engines: {node: '>=14.17'} + hasBin: true + dev: false registry.npmmirror.com/uglify-js@3.19.2: resolution: {integrity: sha512-S8KA6DDI47nQXJSi2ctQ629YzwOVs+bQML6DAtvy0wgNdpi+0ySpQK0g2pxBq2xfF2z3YCscu7NNA8nXT9PlIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uglify-js/-/uglify-js-3.19.2.tgz} @@ -21497,7 +21822,7 @@ packages: name: unplugin version: 1.5.0 dependencies: - acorn: registry.npmmirror.com/acorn@8.10.0 + acorn: registry.npmmirror.com/acorn@8.12.1 chokidar: registry.npmmirror.com/chokidar@3.6.0 webpack-sources: registry.npmmirror.com/webpack-sources@3.2.3 webpack-virtual-modules: registry.npmmirror.com/webpack-virtual-modules@0.5.0 @@ -21545,7 +21870,6 @@ packages: browserslist: registry.npmmirror.com/browserslist@4.23.3 escalade: registry.npmmirror.com/escalade@3.1.2 picocolors: registry.npmmirror.com/picocolors@1.0.1 - dev: true registry.npmmirror.com/update-notifier@7.1.0: resolution: {integrity: sha512-8SV3rIqVY6EFC1WxH6L0j55s0MO79MFBS1pivmInRJg3pCEDgWHBj1Q6XByTtCLOZIFA0f6zoG9ZWf2Ks9lvTA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/update-notifier/-/update-notifier-7.1.0.tgz} @@ -21873,6 +22197,249 @@ packages: vite: registry.npmmirror.com/vite@5.3.5(@types/node@20.4.5)(sass@1.69.1) dev: false + registry.npmmirror.com/volar-service-css@0.0.61(@volar/language-service@2.4.0): + resolution: {integrity: sha512-Ct9L/w+IB1JU8F4jofcNCGoHy6TF83aiapfZq9A0qYYpq+Kk5dH+ONS+rVZSsuhsunq8UvAuF8Gk6B8IFLfniw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/volar-service-css/-/volar-service-css-0.0.61.tgz} + id: registry.npmmirror.com/volar-service-css/0.0.61 + name: volar-service-css + version: 0.0.61 + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + vscode-css-languageservice: registry.npmmirror.com/vscode-css-languageservice@6.3.0 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/volar-service-emmet@0.0.61(@volar/language-service@2.4.0): + resolution: {integrity: sha512-iiYqBxjjcekqrRruw4COQHZME6EZYWVbkHjHDbULpml3g8HGJHzpAMkj9tXNCPxf36A+f1oUYjsvZt36qPg4cg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/volar-service-emmet/-/volar-service-emmet-0.0.61.tgz} + id: registry.npmmirror.com/volar-service-emmet/0.0.61 + name: volar-service-emmet + version: 0.0.61 + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@emmetio/css-parser': registry.npmmirror.com/@emmetio/css-parser@0.4.0 + '@emmetio/html-matcher': registry.npmmirror.com/@emmetio/html-matcher@1.3.0 + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + '@vscode/emmet-helper': registry.npmmirror.com/@vscode/emmet-helper@2.9.3 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/volar-service-html@0.0.61(@volar/language-service@2.4.0): + resolution: {integrity: sha512-yFE+YmmgqIL5HI4ORqP++IYb1QaGcv+xBboI0WkCxJJ/M35HZj7f5rbT3eQ24ECLXFbFCFanckwyWJVz5KmN3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/volar-service-html/-/volar-service-html-0.0.61.tgz} + id: registry.npmmirror.com/volar-service-html/0.0.61 + name: volar-service-html + version: 0.0.61 + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + vscode-html-languageservice: registry.npmmirror.com/vscode-html-languageservice@5.3.0 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/volar-service-prettier@0.0.61(@volar/language-service@2.4.0)(prettier@3.0.3): + resolution: {integrity: sha512-F612nql5I0IS8HxXemCGvOR2Uxd4XooIwqYVUvk7WSBxP/+xu1jYvE3QJ7EVpl8Ty3S4SxPXYiYTsG3bi+gzIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/volar-service-prettier/-/volar-service-prettier-0.0.61.tgz} + id: registry.npmmirror.com/volar-service-prettier/0.0.61 + name: volar-service-prettier + version: 0.0.61 + peerDependencies: + '@volar/language-service': ~2.4.0 + prettier: ^2.2 || ^3.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + prettier: + optional: true + dependencies: + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + prettier: registry.npmmirror.com/prettier@3.0.3 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/volar-service-typescript-twoslash-queries@0.0.61(@volar/language-service@2.4.0): + resolution: {integrity: sha512-99FICGrEF0r1E2tV+SvprHPw9Knyg7BdW2fUch0tf59kG+KG+Tj4tL6tUg+cy8f23O/VXlmsWFMIE+bx1dXPnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.61.tgz} + id: registry.npmmirror.com/volar-service-typescript-twoslash-queries/0.0.61 + name: volar-service-typescript-twoslash-queries + version: 0.0.61 + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/volar-service-typescript@0.0.61(@volar/language-service@2.4.0): + resolution: {integrity: sha512-4kRHxVbW7wFBHZWRU6yWxTgiKETBDIJNwmJUAWeP0mHaKpnDGj/astdRFKqGFRYVeEYl45lcUPhdJyrzanjsdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/volar-service-typescript/-/volar-service-typescript-0.0.61.tgz} + id: registry.npmmirror.com/volar-service-typescript/0.0.61 + name: volar-service-typescript + version: 0.0.61 + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + path-browserify: registry.npmmirror.com/path-browserify@1.0.1 + semver: registry.npmmirror.com/semver@7.6.3 + typescript-auto-import-cache: registry.npmmirror.com/typescript-auto-import-cache@0.3.3 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-nls: registry.npmmirror.com/vscode-nls@5.2.0 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/volar-service-yaml@0.0.61(@volar/language-service@2.4.0): + resolution: {integrity: sha512-L+gbDiLDQQ1rZUbJ3mf3doDsoQUa8OZM/xdpk/unMg1Vz24Zmi2Ign8GrZyBD7bRoIQDwOH9gdktGDKzRPpUNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/volar-service-yaml/-/volar-service-yaml-0.0.61.tgz} + id: registry.npmmirror.com/volar-service-yaml/0.0.61 + name: volar-service-yaml + version: 0.0.61 + peerDependencies: + '@volar/language-service': ~2.4.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + dependencies: + '@volar/language-service': registry.npmmirror.com/@volar/language-service@2.4.0 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + yaml-language-server: registry.npmmirror.com/yaml-language-server@1.15.0 + dev: false + + registry.npmmirror.com/vscode-css-languageservice@6.3.0: + resolution: {integrity: sha512-nU92imtkgzpCL0xikrIb8WvedV553F2BENzgz23wFuok/HLN5BeQmroMy26pUwFxV2eV8oNRmYCUv8iO7kSMhw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-css-languageservice/-/vscode-css-languageservice-6.3.0.tgz} + name: vscode-css-languageservice + version: 6.3.0 + dependencies: + '@vscode/l10n': registry.npmmirror.com/@vscode/l10n@0.0.18 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types@3.17.5 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/vscode-html-languageservice@5.3.0: + resolution: {integrity: sha512-C4Z3KsP5Ih+fjHpiBc5jxmvCl+4iEwvXegIrzu2F5pktbWvQaBT3YkVPk8N+QlSSMk8oCG6PKtZ/Sq2YHb5e8g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-html-languageservice/-/vscode-html-languageservice-5.3.0.tgz} + name: vscode-html-languageservice + version: 5.3.0 + dependencies: + '@vscode/l10n': registry.npmmirror.com/@vscode/l10n@0.0.18 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types@3.17.5 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/vscode-json-languageservice@4.1.8: + resolution: {integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-json-languageservice/-/vscode-json-languageservice-4.1.8.tgz} + name: vscode-json-languageservice + version: 4.1.8 + engines: {npm: '>=7.0.0'} + dependencies: + jsonc-parser: registry.npmmirror.com/jsonc-parser@3.3.1 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types@3.17.5 + vscode-nls: registry.npmmirror.com/vscode-nls@5.2.0 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + dev: false + + registry.npmmirror.com/vscode-jsonrpc@6.0.0: + resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz} + name: vscode-jsonrpc + version: 6.0.0 + engines: {node: '>=8.0.0 || >=10.0.0'} + dev: false + + registry.npmmirror.com/vscode-jsonrpc@8.2.0: + resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz} + name: vscode-jsonrpc + version: 8.2.0 + engines: {node: '>=14.0.0'} + dev: false + + registry.npmmirror.com/vscode-languageserver-protocol@3.16.0: + resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz} + name: vscode-languageserver-protocol + version: 3.16.0 + dependencies: + vscode-jsonrpc: registry.npmmirror.com/vscode-jsonrpc@6.0.0 + vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types@3.16.0 + dev: false + + registry.npmmirror.com/vscode-languageserver-protocol@3.17.5: + resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz} + name: vscode-languageserver-protocol + version: 3.17.5 + dependencies: + vscode-jsonrpc: registry.npmmirror.com/vscode-jsonrpc@8.2.0 + vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types@3.17.5 + dev: false + + registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12: + resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz} + name: vscode-languageserver-textdocument + version: 1.0.12 + dev: false + + registry.npmmirror.com/vscode-languageserver-types@3.16.0: + resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz} + name: vscode-languageserver-types + version: 3.16.0 + dev: false + + registry.npmmirror.com/vscode-languageserver-types@3.17.5: + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz} + name: vscode-languageserver-types + version: 3.17.5 + dev: false + + registry.npmmirror.com/vscode-languageserver@7.0.0: + resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz} + name: vscode-languageserver + version: 7.0.0 + hasBin: true + dependencies: + vscode-languageserver-protocol: registry.npmmirror.com/vscode-languageserver-protocol@3.16.0 + dev: false + + registry.npmmirror.com/vscode-languageserver@9.0.1: + resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz} + name: vscode-languageserver + version: 9.0.1 + hasBin: true + dependencies: + vscode-languageserver-protocol: registry.npmmirror.com/vscode-languageserver-protocol@3.17.5 + dev: false + + registry.npmmirror.com/vscode-nls@5.2.0: + resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-nls/-/vscode-nls-5.2.0.tgz} + name: vscode-nls + version: 5.2.0 + dev: false + + registry.npmmirror.com/vscode-uri@2.1.2: + resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-uri/-/vscode-uri-2.1.2.tgz} + name: vscode-uri + version: 2.1.2 + dev: false + + registry.npmmirror.com/vscode-uri@3.0.8: + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.0.8.tgz} + name: vscode-uri + version: 3.0.8 + dev: false + registry.npmmirror.com/walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/walker/-/walker-1.0.8.tgz} name: walker @@ -22258,6 +22825,26 @@ packages: version: 4.0.0 dev: true + registry.npmmirror.com/yaml-language-server@1.15.0: + resolution: {integrity: sha512-N47AqBDCMQmh6mBLmI6oqxryHRzi33aPFPsJhYy3VTUGCdLHYjGh4FZzpUjRlphaADBBkDmnkM/++KNIOHi5Rw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml-language-server/-/yaml-language-server-1.15.0.tgz} + name: yaml-language-server + version: 1.15.0 + hasBin: true + dependencies: + ajv: registry.npmmirror.com/ajv@8.17.1 + lodash: registry.npmmirror.com/lodash@4.17.21 + request-light: registry.npmmirror.com/request-light@0.5.8 + vscode-json-languageservice: registry.npmmirror.com/vscode-json-languageservice@4.1.8 + vscode-languageserver: registry.npmmirror.com/vscode-languageserver@7.0.0 + vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument@1.0.12 + vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types@3.17.5 + vscode-nls: registry.npmmirror.com/vscode-nls@5.2.0 + vscode-uri: registry.npmmirror.com/vscode-uri@3.0.8 + yaml: registry.npmmirror.com/yaml@2.2.2 + optionalDependencies: + prettier: registry.npmmirror.com/prettier@2.8.7 + dev: false + registry.npmmirror.com/yaml@1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz} name: yaml @@ -22265,6 +22852,13 @@ packages: engines: {node: '>= 6'} dev: false + registry.npmmirror.com/yaml@2.2.2: + resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-2.2.2.tgz} + name: yaml + version: 2.2.2 + engines: {node: '>= 14'} + dev: false + registry.npmmirror.com/yaml@2.3.4: resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-2.3.4.tgz} name: yaml @@ -22272,6 +22866,14 @@ packages: engines: {node: '>= 14'} dev: true + registry.npmmirror.com/yaml@2.5.0: + resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yaml/-/yaml-2.5.0.tgz} + name: yaml + version: 2.5.0 + engines: {node: '>= 14'} + hasBin: true + dev: false + registry.npmmirror.com/yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/yargs-parser/-/yargs-parser-18.1.3.tgz} name: yargs-parser @@ -22336,7 +22938,7 @@ packages: engines: {node: '>=12'} dependencies: cliui: registry.npmmirror.com/cliui@8.0.1 - escalade: registry.npmmirror.com/escalade@3.1.1 + escalade: registry.npmmirror.com/escalade@3.1.2 get-caller-file: registry.npmmirror.com/get-caller-file@2.0.5 require-directory: registry.npmmirror.com/require-directory@2.1.1 string-width: registry.npmmirror.com/string-width@4.2.3