diff --git a/.npmrc b/.npmrc
index dde6402..baf5919 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1,3 +1,4 @@
registry=http://dev-npm.tenxcloud.net/
strict-peer-dependencies=false
-always-auth=true
\ No newline at end of file
+always-auth=true
+auto-install-peers=true
\ No newline at end of file
diff --git a/package.json b/package.json
index 924dfea..a9d708e 100644
--- a/package.json
+++ b/package.json
@@ -11,6 +11,7 @@
"license": "ISC",
"scripts": {
"dev:antd": "pnpm --filter '*-antd' dev",
+ "dev:markdown": "pnpm --filter 'react-markdown-*' lowcode:dev",
"lint-staged": "lint-staged",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
diff --git a/packages/react-markdown-lowcode-materials/.gitignore b/packages/react-markdown-lowcode-materials/.gitignore
new file mode 100644
index 0000000..a981ed0
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/.gitignore
@@ -0,0 +1,103 @@
+.DS_Store
+
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+package-lock.json
+yarn.lock
+# Runtime data
+pids
+*.pid
+*.seed
+*.pid.lock
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+
+# nyc test coverage
+.nyc_output
+
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# Bower dependency directory (https://bower.io/)
+bower_components
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (https://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules/
+jspm_packages/
+
+# TypeScript v1 declaration files
+typings/
+
+# Optional npm cache directory
+.npm
+
+# Optional eslint cache
+.eslintcache
+
+# Optional REPL history
+.node_repl_history
+
+# Output of 'npm pack'
+*.tgz
+
+# Yarn Integrity file
+.yarn-integrity
+
+# dotenv environment variables file
+.env
+
+# next.js build output
+.next
+
+# special demo file for locally reappear issue
+docs/**/demo/issues.md
+
+precss.css
+.sass-cache/
+scripts/server-remote
+__html/
+umd/
+es/
+lib/
+lowcode_es/
+lowcode_lib/
+types/
+demos/
+!scripts/demos/
+/platform
+build/
+test/coverage/
+test/**/coverage/
+mochawesome-report/
+coverage/
+gemini-report/
+.idea/
+.vscode/
+*.iml
+.tea/
+/platform/
+react/
+platform/
+dist/
+_docs_/
+doc.json
+meet-react/
+miniapp-preview/
+.tmp/
+
+.umi/
+.umi-production/
\ No newline at end of file
diff --git a/packages/react-markdown-lowcode-materials/README.md b/packages/react-markdown-lowcode-materials/README.md
new file mode 100644
index 0000000..7ff78ee
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/README.md
@@ -0,0 +1,12 @@
+# @yunti/react-markdown-lowcode-materials
+
+Low-code Materials for react-markdown
+
+## API
+
+
+| 参数名 | 说明 | 必填 | 类型 | 默认值 | 备注 |
+| ------ | ---- | ---- | ---- | ------ | ---- |
+| children | - | false | string | - | - |
+
+[更多参考 react-markdown](https://github.com/remarkjs/react-markdown)
diff --git a/packages/react-markdown-lowcode-materials/build.json b/packages/react-markdown-lowcode-materials/build.json
new file mode 100644
index 0000000..8667bd1
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/build.json
@@ -0,0 +1,17 @@
+{
+ "library": "YuntiReactMarkdownLowcodeMaterials",
+ "plugins": [
+ "build-plugin-component",
+ "build-plugin-fusion",
+ [
+ "build-plugin-moment-locales",
+ {
+ "locales": ["zh-cn"]
+ }
+ ]
+ ],
+ "externals": {
+ "react": "React",
+ "lodash": "_"
+ }
+}
diff --git a/packages/react-markdown-lowcode-materials/build.lowcode.js b/packages/react-markdown-lowcode-materials/build.lowcode.js
new file mode 100644
index 0000000..1dc9aea
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/build.lowcode.js
@@ -0,0 +1,23 @@
+const { library } = require('./build.json');
+
+module.exports = {
+ alias: {
+ '@': './src',
+ },
+ plugins: [
+ [
+ '@alifd/build-plugin-lowcode',
+ {
+ noParse: true,
+ library,
+ engineScope: "@alilc",
+ lowcodeDir: "lowcode", // 低码描述文件夹
+ entryPath: "src/index.js", // 组件入口文件
+ npmInfo: {
+ package: "@yunti/react-markdown-lowcode-materials", // 包名
+ version: "0.1.0",
+ },
+ },
+ ],
+ ],
+};
diff --git a/packages/react-markdown-lowcode-materials/demo/usage.md b/packages/react-markdown-lowcode-materials/demo/usage.md
new file mode 100644
index 0000000..b536eab
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/demo/usage.md
@@ -0,0 +1,26 @@
+---
+title: Simple Usage
+order: 1
+---
+
+本 Demo 演示 Markdown 的用法。
+
+```jsx
+import React, { Component } from 'react';
+import ReactDOM from 'react-dom';
+import Markdown from '@yunti/react-markdown-lowcode-materials';
+
+class App extends Component {
+ render() {
+ return (
+
+
+ ### 标题
+
+
+ );
+ }
+}
+
+ReactDOM.render(, mountNode);
+```
diff --git a/packages/react-markdown-lowcode-materials/lowcode/markdown/meta.ts b/packages/react-markdown-lowcode-materials/lowcode/markdown/meta.ts
new file mode 100644
index 0000000..fc03f19
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/lowcode/markdown/meta.ts
@@ -0,0 +1,641 @@
+import { IPublicTypeComponentMetadata, IPublicTypeSnippet } from '@alilc/lowcode-types';
+
+const MarkdownMeta: IPublicTypeComponentMetadata = {
+ "componentName": "YuntiReactMarkdownLowcodeMaterials",
+ "title": "Markdown",
+ "devMode": "proCode",
+ group: '容器/布局',
+ category: '容器组件',
+ "npm": {
+ "package": "@yunti/react-markdown-lowcode-materials",
+ "version": "0.1.0",
+ "exportName": "default",
+ "destructuring": false,
+ "subName": ""
+ },
+ "configure": {
+ "props": [
+ {
+ name: 'children',
+ title: {
+ label: '内容',
+ tip: 'children | 内容',
+ },
+ setter: ['StringSetter'],
+ },
+ {
+ name: 'className',
+ title: {
+ label: '类名',
+ tip: 'className | 类名',
+ },
+ setter: ['StringSetter'],
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'plugins',
+ 'zh-CN': '**deprecat',
+ },
+ tip: 'plugins | **deprecated**: use `remarkPlugins` instead',
+ },
+ name: 'plugins',
+ description: '**deprecated**: use `remarkPlugins` instead',
+ setter: {
+ componentName: 'ArraySetter',
+ props: {
+ itemSetter: {
+ componentName: 'MixedSetter',
+ props: {
+ setters: [
+ {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ items: [
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'plugins',
+ 'zh-CN': 'plugins',
+ },
+ },
+ name: 'plugins',
+ setter: {
+ componentName: 'ArraySetter',
+ props: {
+ itemSetter: {
+ componentName: 'MixedSetter',
+ props: {
+ setters: [
+ {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ isRequired: false,
+ initialValue: {},
+ },
+ {
+ componentName: 'MixedSetter',
+ props: {},
+ },
+ {
+ componentName: 'FunctionSetter',
+ isRequired: false,
+ },
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'settings',
+ 'zh-CN': 'settings',
+ },
+ },
+ name: 'settings',
+ setter: {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ isRequired: false,
+ initialValue: {},
+ },
+ },
+ },
+ initialValue: {},
+ },
+ },
+ ],
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ },
+ {
+ componentName: 'MixedSetter',
+ props: {},
+ },
+ {
+ componentName: 'FunctionSetter',
+ isRequired: false,
+ },
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'remarkPlugins',
+ 'zh-CN': 'remarkPlugins',
+ },
+ },
+ name: 'remarkPlugins',
+ setter: {
+ componentName: 'ArraySetter',
+ props: {
+ itemSetter: {
+ componentName: 'MixedSetter',
+ props: {
+ setters: [
+ {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ items: [
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'plugins',
+ 'zh-CN': 'plugins',
+ },
+ },
+ name: 'plugins',
+ setter: {
+ componentName: 'ArraySetter',
+ props: {
+ itemSetter: {
+ componentName: 'MixedSetter',
+ props: {
+ setters: [
+ {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ isRequired: false,
+ initialValue: {},
+ },
+ {
+ componentName: 'MixedSetter',
+ props: {},
+ },
+ {
+ componentName: 'FunctionSetter',
+ isRequired: false,
+ },
+ ],
+ },
+ },
+ },
+ initialValue: [],
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'settings',
+ 'zh-CN': 'settings',
+ },
+ },
+ name: 'settings',
+ setter: {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ isRequired: false,
+ initialValue: {},
+ },
+ },
+ },
+ initialValue: {},
+ },
+ },
+ ],
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ },
+ {
+ componentName: 'MixedSetter',
+ props: {},
+ },
+ {
+ componentName: 'FunctionSetter',
+ isRequired: false,
+ },
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'rehypePlugins',
+ 'zh-CN': 'rehypePlugins',
+ },
+ },
+ name: 'rehypePlugins',
+ setter: {
+ componentName: 'ArraySetter',
+ props: {
+ itemSetter: {
+ componentName: 'MixedSetter',
+ props: {
+ setters: [
+ {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ items: [
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'plugins',
+ 'zh-CN': 'plugins',
+ },
+ },
+ name: 'plugins',
+ setter: {
+ componentName: 'ArraySetter',
+ props: {
+ itemSetter: {
+ componentName: 'MixedSetter',
+ props: {
+ setters: [
+ {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ isRequired: false,
+ initialValue: {},
+ },
+ {
+ componentName: 'MixedSetter',
+ props: {},
+ },
+ {
+ componentName: 'FunctionSetter',
+ isRequired: false,
+ },
+ ],
+ },
+ },
+ },
+ initialValue: [],
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'settings',
+ 'zh-CN': 'settings',
+ },
+ },
+ name: 'settings',
+ setter: {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ isRequired: false,
+ initialValue: {},
+ },
+ },
+ },
+ initialValue: {},
+ },
+ },
+ ],
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ },
+ {
+ componentName: 'MixedSetter',
+ props: {},
+ },
+ {
+ componentName: 'FunctionSetter',
+ isRequired: false,
+ },
+ ],
+ },
+ },
+ },
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'allowedElements',
+ 'zh-CN': 'allowedElements',
+ },
+ },
+ name: 'allowedElements',
+ setter: {
+ componentName: 'ArraySetter',
+ props: {
+ itemSetter: {
+ componentName: 'StringSetter',
+ isRequired: false,
+ },
+ },
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'disallowedElements',
+ 'zh-CN': 'disallowedElements',
+ },
+ },
+ name: 'disallowedElements',
+ setter: {
+ componentName: 'ArraySetter',
+ props: {
+ itemSetter: {
+ componentName: 'StringSetter',
+ isRequired: false,
+ initialValue: '',
+ },
+ },
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'allowElement',
+ 'zh-CN': 'allowElement',
+ },
+ },
+ name: 'allowElement',
+ setter: {
+ componentName: 'FunctionSetter',
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'unwrapDisallowed',
+ 'zh-CN': 'unwrapDisallowed',
+ },
+ },
+ name: 'unwrapDisallowed',
+ setter: {
+ componentName: 'BoolSetter',
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'sourcePos',
+ 'zh-CN': 'sourcePos',
+ },
+ },
+ name: 'sourcePos',
+ setter: {
+ componentName: 'BoolSetter',
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'rawSourcePos',
+ 'zh-CN': 'rawSourcePos',
+ },
+ },
+ name: 'rawSourcePos',
+ setter: {
+ componentName: 'BoolSetter',
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'skipHtml',
+ 'zh-CN': 'skipHtml',
+ },
+ },
+ name: 'skipHtml',
+ setter: {
+ componentName: 'BoolSetter',
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'includeElementIndex',
+ 'zh-CN': 'includeElementIndex',
+ },
+ },
+ name: 'includeElementIndex',
+ setter: {
+ componentName: 'BoolSetter',
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'transformLinkUri',
+ 'zh-CN': 'transformLinkUri',
+ },
+ },
+ name: 'transformLinkUri',
+ setter: {
+ componentName: 'MixedSetter',
+ props: {
+ setters: [
+ {
+ componentName: 'FunctionSetter',
+ },
+ {
+ componentName: 'RadioGroupSetter',
+ props: {
+ dataSource: [
+ {
+ label: 'false',
+ value: false,
+ },
+ ],
+ options: [
+ {
+ label: 'false',
+ value: false,
+ },
+ ],
+ },
+ },
+ ],
+ },
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'transformImageUri',
+ 'zh-CN': 'transformImageUri',
+ },
+ },
+ name: 'transformImageUri',
+ setter: {
+ componentName: 'FunctionSetter',
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'linkTarget',
+ 'zh-CN': 'linkTarget',
+ },
+ },
+ name: 'linkTarget',
+ setter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ {
+ title: {
+ label: {
+ type: 'i18n',
+ 'en-US': 'components',
+ 'zh-CN': 'components',
+ },
+ },
+ name: 'components',
+ setter: {
+ componentName: 'ObjectSetter',
+ props: {
+ config: {
+ extraSetter: {
+ componentName: 'MixedSetter',
+ isRequired: false,
+ props: {},
+ },
+ },
+ },
+ isRequired: false,
+ },
+ },
+ ],
+ supports: {
+ events: [
+ {
+ name: 'allowElement',
+ template:
+ "allowElement(element,index, parent, ${extParams}){ \n// Filter elements\n console.log('allowElement', element,index, parent); return true}",
+ },
+ {
+ name: 'urlTransform',
+ template:
+ "urlTransform(url,key, node, ${extParams}){ \n// Change URLs (default: `defaultUrlTransform`)\n console.log('urlTransform', url,key, node); return }",
+ },
+ ],
+ loop: true,
+ condition: true,
+ style: true,
+ },
+ component: {},
+ },
+};
+const snippets: IPublicTypeSnippet[] = [
+ {
+ title: 'Markdown',
+ screenshot: '',
+ schema: {
+ componentName: 'TenxUiReactMarkdownLowcodeMaterials',
+ props: {
+ __component_name: 'TenxUiReactMarkdownLowcodeMaterials',
+ children: '#### 标题',
+ },
+ },
+ },
+];
+
+export default {
+ ...MarkdownMeta,
+ snippets,
+};
diff --git a/packages/react-markdown-lowcode-materials/package.json b/packages/react-markdown-lowcode-materials/package.json
new file mode 100644
index 0000000..8d15b0a
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/package.json
@@ -0,0 +1,104 @@
+{
+ "name": "@yunti/react-markdown-lowcode-materials",
+ "version": "0.1.0",
+ "description": "markdown",
+ "keywords": [
+ "ice",
+ "react",
+ "component"
+ ],
+ "homepage": "https://unpkg.com/@tenx-ui/react-markdown-lowcode-materials@0.1.5/build/index.html",
+ "license": "MIT",
+ "exports": {
+ "./*": "./*",
+ ".": {
+ "import": "./es/index.js",
+ "require": "./lib/index.js"
+ },
+ "./prototype": {
+ "require": "./lowcode_lib/meta.js",
+ "import": "./lowcode_es/meta.js"
+ },
+ "./prototypeView": {
+ "require": "./lowcode_lib/view.js",
+ "import": "./lowcode_es/view.js"
+ }
+ },
+ "main": "lib/index.js",
+ "module": "es/index.js",
+ "files": [
+ "demo/",
+ "es/",
+ "lib/",
+ "build/",
+ "dist/",
+ "lowcode/",
+ "lowcode_lib/",
+ "lowcode_es/"
+ ],
+ "scripts": {
+ "build": "build-scripts build",
+ "lowcode:build": "build-scripts build --config ./build.lowcode.js",
+ "lowcode:dev": "build-scripts start --config ./build.lowcode.js",
+ "prepublishOnly": "npm run build && npm run lowcode:build",
+ "start": "build-scripts start"
+ },
+ "dependencies": {
+ "@babel/runtime": "^7.0.0",
+ "react-markdown": "^9.0.0",
+ "remark-gfm": "^4.0.0"
+ },
+ "devDependencies": {
+ "@alib/build-scripts": "^0.1.32",
+ "@alifd/build-plugin-lowcode": "^0.4.0",
+ "@alilc/lowcode-react-renderer": "^1.2.0",
+ "@alilc/lowcode-utils": "^1.2.0",
+ "@types/react": "^16.9.13",
+ "@types/react-dom": "^16.9.4",
+ "build-plugin-component": "^1.0.0",
+ "build-plugin-fusion": "^0.1.0",
+ "build-plugin-moment-locales": "^0.1.0",
+ "f2elint": "^1.2.0",
+ "react": "^16.x",
+ "react-dom": "^16.x",
+ "style-loader": "^2.0.0",
+ "template-component-demo": "^2.0.3"
+ },
+ "peerDependencies": {
+ "lodash": "^4.17.21",
+ "moment": "latest",
+ "react": "^16.x",
+ "react-dom": "^16.x"
+ },
+ "publishConfig": {
+ "access": "public"
+ },
+ "componentConfig": {
+ "name": "ReactMarkdown",
+ "materialSchema": "https://unpkg.com/@tenx-ui/react-markdown-lowcode-materials@0.1.5/build/lowcode/assets-prod.json"
+ },
+ "lcMeta": {
+ "type": "component"
+ },
+ "stylePath": "style.js",
+ "yunti": {
+ "umd": {
+ "library": "YuntiReactMarkdownLowcodeMaterials",
+ "entry": [
+ "/dist/YuntiReactMarkdownLowcodeMaterials.js",
+ "/dist/YuntiReactMarkdownLowcodeMaterials.css"
+ ],
+ "externals": {
+ "react": ">=16.9.0",
+ "lodash": ">=4.17.21"
+ }
+ },
+ "lowCode": {
+ "meta": "/build/lowcode/meta.js",
+ "editEntry": [
+ "/build/lowcode/view.css",
+ "/build/lowcode/view.js"
+ ]
+ }
+ }
+}
diff --git a/packages/react-markdown-lowcode-materials/src/index.tsx b/packages/react-markdown-lowcode-materials/src/index.tsx
new file mode 100644
index 0000000..8d1803b
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/src/index.tsx
@@ -0,0 +1,15 @@
+import * as React from 'react';
+import OriginalMarkdown, { Options } from 'react-markdown';
+import remarkGfm from 'remark-gfm';
+
+const Markdown = (props: Options) => {
+ const { children, remarkPlugins, ...otherProps } = props;
+ return (
+
+ {(props.children || '').toString()}
+
+ );
+};
+export default Markdown;
+Markdown.displayName = 'YuntiReactMarkdownLowcodeMaterials';
+export type MarkdownProps = Options;
diff --git a/packages/react-markdown-lowcode-materials/tsconfig.json b/packages/react-markdown-lowcode-materials/tsconfig.json
new file mode 100644
index 0000000..a511d68
--- /dev/null
+++ b/packages/react-markdown-lowcode-materials/tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "compileOnSave": false,
+ "buildOnSave": false,
+ "compilerOptions": {
+ "outDir": "build",
+ "module": "esnext",
+ "target": "es6",
+ "jsx": "react",
+ "moduleResolution": "node",
+ "lib": ["es6", "dom"],
+ "sourceMap": true,
+ "allowJs": true,
+ "noUnusedLocals": true,
+ "noImplicitReturns": true,
+ "noImplicitThis": true,
+ "noImplicitAny": true,
+ "skipLibCheck": true
+ },
+ "include": ["src/*.ts", "src/*.tsx"],
+ "exclude": ["node_modules", "build", "public"]
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2f5d4f7..9f1c918 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -42,6 +42,67 @@ importers:
specifier: ^2.1.0
version: 2.1.0(stylelint@13.13.1)
+ packages/react-markdown-lowcode-materials:
+ dependencies:
+ '@babel/runtime':
+ specifier: ^7.0.0
+ version: 7.23.2
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ moment:
+ specifier: latest
+ version: 2.29.4
+ react-markdown:
+ specifier: ^9.0.0
+ version: 9.0.0(@types/react@16.14.50)(react@16.14.0)
+ remark-gfm:
+ specifier: ^4.0.0
+ version: 4.0.0
+ devDependencies:
+ '@alib/build-scripts':
+ specifier: ^0.1.32
+ version: 0.1.32(eslint@7.32.0)(typescript@5.2.2)
+ '@alifd/build-plugin-lowcode':
+ specifier: ^0.4.0
+ version: 0.4.7(@alifd/meet-react@2.9.6)(@types/react@16.14.50)(eslint@7.32.0)(moment@2.29.4)(postcss@7.0.39)(prop-types@15.8.1)(rax@1.2.3)(react-dom@16.14.0)(react@16.14.0)(sass@1.69.5)
+ '@alilc/lowcode-react-renderer':
+ specifier: ^1.2.0
+ version: 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)(react@16.14.0)
+ '@alilc/lowcode-utils':
+ specifier: ^1.2.0
+ version: 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)
+ '@types/react':
+ specifier: ^16.9.13
+ version: 16.14.50
+ '@types/react-dom':
+ specifier: ^16.9.4
+ version: 16.9.21
+ build-plugin-component:
+ specifier: ^1.0.0
+ version: 1.12.1(@types/react@16.14.50)(eslint@7.32.0)(postcss@7.0.39)(rax@1.2.3)(react@16.14.0)(sass@1.69.5)
+ build-plugin-fusion:
+ specifier: ^0.1.0
+ version: 0.1.23(@babel/core@7.23.2)(sass@1.69.5)(vite@4.5.0)(webpack@4.47.0)
+ build-plugin-moment-locales:
+ specifier: ^0.1.0
+ version: 0.1.3
+ f2elint:
+ specifier: ^1.2.0
+ version: 1.2.3(typescript@5.2.2)
+ react:
+ specifier: ^16.x
+ version: 16.14.0
+ react-dom:
+ specifier: ^16.x
+ version: 16.14.0(react@16.14.0)
+ style-loader:
+ specifier: ^2.0.0
+ version: 2.0.0(webpack@4.47.0)
+ template-component-demo:
+ specifier: ^2.0.3
+ version: 2.0.5(@types/react@16.14.50)(react@16.14.0)
+
packages:
/@aashutoshrathi/word-wrap@1.2.6:
@@ -49,6 +110,306 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /@alib/build-scripts@0.1.32(eslint@7.32.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-MnuhapN43N0APTNUUkmhwqwaz0AdcN0jk3Iuz/SNDaHid36BpTdKlUlb/OohvSYGguHZQ1RastuTBvBMcBN5sQ==}
+ engines: {node: '>=8.6.0', npm: '>=3.0.0'}
+ hasBin: true
+ dependencies:
+ address: 1.2.2
+ camelcase: 5.3.1
+ chalk: 2.4.2
+ chokidar: 3.5.3
+ commander: 2.20.3
+ deepmerge: 4.3.1
+ detect-port: 1.5.1
+ fs-extra: 8.1.0
+ jest: 26.6.3
+ json5: 2.2.3
+ lodash: 4.17.21
+ npmlog: 4.1.2
+ react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.2.2)(webpack@4.47.0)
+ semver: 7.5.4
+ webpack: 4.47.0
+ webpack-dev-server: 3.11.3(webpack@4.47.0)
+ yargs-parser: 14.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - eslint
+ - supports-color
+ - ts-node
+ - typescript
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ - webpack-command
+ dev: true
+
+ /@alifd/build-plugin-lowcode@0.4.7(@alifd/meet-react@2.9.6)(@types/react@16.14.50)(eslint@7.32.0)(moment@2.29.4)(postcss@7.0.39)(prop-types@15.8.1)(rax@1.2.3)(react-dom@16.14.0)(react@16.14.0)(sass@1.69.5):
+ resolution: {integrity: sha512-2xqJpCLnEGgpy0c3nuzOYReWyG2SxI34cFRatSnwg3y/b5Exuen4qUcPQcmpk2b42dIP1ZqHobeLcYaUaL+KPg==}
+ dependencies:
+ '@alilc/lowcode-material-parser': 1.0.3
+ '@alilc/lowcode-rax-renderer': 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(prop-types@15.8.1)(rax@1.2.3)(react-dom@16.14.0)
+ '@alilc/lowcode-react-renderer': 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)(react@16.14.0)
+ '@alilc/lowcode-types': 1.2.0
+ '@alilc/lowcode-utils': 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)
+ '@babel/core': 7.23.2
+ axios: 0.21.4
+ build-plugin-component: 1.12.1(@types/react@16.14.50)(eslint@7.32.0)(postcss@7.0.39)(rax@1.2.3)(react@16.14.0)(sass@1.69.5)
+ build-scripts-config: 3.0.3(@babel/core@7.23.2)(webpack@4.47.0)
+ chokidar: 3.5.3
+ cross-spawn-promise: 0.10.2
+ driver-universal: 3.5.0
+ fs-extra: 11.1.1
+ glob: 7.2.3
+ handlebars: 4.7.8
+ html-webpack-plugin: 3.2.0(webpack@4.47.0)
+ is-wsl: 2.2.0
+ lodash: 4.17.21
+ rax-babel-config: 2.0.4(@babel/core@7.23.2)
+ rpx-loader: 1.0.1
+ style-loader: 2.0.0(webpack@4.47.0)
+ webpack: 4.47.0
+ transitivePeerDependencies:
+ - '@alifd/meet-react'
+ - '@types/react'
+ - bluebird
+ - bufferutil
+ - debug
+ - eslint
+ - fibers
+ - moment
+ - node-sass
+ - postcss
+ - prop-types
+ - rax
+ - react
+ - react-dom
+ - sass
+ - supports-color
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ - webpack-command
+ dev: true
+
+ /@alifd/field@1.6.3:
+ resolution: {integrity: sha512-cAfxzOUHi4MAdVooJnNPw/sh3mr8YxcHYMLr7SkRwBqsYMaBwnvfOYGaBa/D5LDADTbYeYSPlEXv1vy7sAoWoA==}
+ dependencies:
+ '@alifd/validate': 1.2.3
+ prop-types: 15.8.1
+ dev: true
+
+ /@alifd/meet-react-component-one@1.3.0(react-dom@16.14.0)(react@16.14.0):
+ resolution: {integrity: sha512-1gT+AAMR2SHmFQ2QbBeuLwWfdYfBbsM9FY82RLD7bG3l6G6pWD+BvDHolMWUHWDPc0fGwk2FfxmOk5ehtu7uyQ==}
+ peerDependencies:
+ react: ^16.13.1
+ react-dom: ^16.13.1
+ dependencies:
+ '@gcanvas/core': 1.0.0
+ classnames: 2.3.2
+ omit.js: 2.0.2
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-dom: 16.14.0(react@16.14.0)
+ style-unit: 2.0.1
+ swiper: 6.5.0
+ tslib: 2.6.2
+ universal-env: 3.3.3
+ universal-panresponder: 0.6.5
+ universal-transition: 1.1.1
+ dev: true
+
+ /@alifd/meet-react@2.9.6(rax@1.2.3)(react-dom@16.14.0)(react@16.14.0):
+ resolution: {integrity: sha512-c1ODwaGKwXoxT633M8Tz+HEGVYCEGZx4sItg3yOcKjQ7vAbZYbTbjvz6mD/BcC6b/jNTm4uFqAsXiJVSVjPxCA==}
+ peerDependencies:
+ react: '>=16.0.0'
+ react-dom: '>=16.0.0'
+ dependencies:
+ '@alifd/field': 1.6.3
+ '@alifd/meet-react-component-one': 1.3.0(react-dom@16.14.0)(react@16.14.0)
+ '@uni/clipboard': 1.0.9
+ '@uni/env': 1.1.1
+ '@uni/file': 1.1.1
+ '@uni/image': 1.1.3
+ '@uni/navigate': 1.0.11
+ '@uni/page-scroll-to': 1.0.0
+ '@uni/vibrate': 1.0.1
+ babel-runtime-jsx-style-transform: 1.0.2
+ classnames: 2.2.6
+ dayjs: 1.11.10
+ driver-universal: 3.5.0
+ react: 16.14.0
+ react-dom: 16.14.0(react@16.14.0)
+ tslib: 2.6.2
+ universal-canvas-context: 1.0.0
+ universal-choose-image: 1.3.0(rax@1.2.3)
+ universal-element: 0.0.6
+ transitivePeerDependencies:
+ - rax
+ dev: true
+
+ /@alifd/next@1.26.28(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)(react@16.14.0):
+ resolution: {integrity: sha512-+tvalaJJeImTaBltNuFG5vpP+a4DuLly2SmAAQOY7At5QrJrwZ8C/mGoERYROmRtk8EzzoesHKvI9hPsUebajA==}
+ peerDependencies:
+ '@alifd/meet-react': ^2.0.0
+ moment: ^2.22.1
+ react: '>=16.0.0'
+ react-dom: '>=16.0.0'
+ dependencies:
+ '@alifd/field': 1.6.3
+ '@alifd/meet-react': 2.9.6(rax@1.2.3)(react-dom@16.14.0)(react@16.14.0)
+ '@alifd/overlay': 0.2.12
+ '@alifd/validate': 1.2.3
+ '@types/react-transition-group': 4.4.8
+ babel-runtime: 6.26.0
+ big.js: 6.2.1
+ classnames: 2.3.2
+ dayjs: 1.11.10
+ hoist-non-react-statics: 3.3.2
+ lodash.clonedeep: 4.5.0
+ moment: 2.29.4
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-dom: 16.14.0(react@16.14.0)
+ react-lifecycles-compat: 3.0.4
+ react-transition-group: 2.9.0(react-dom@16.14.0)(react@16.14.0)
+ resize-observer-polyfill: 1.5.1
+ shallow-element-equals: 1.0.1
+ dev: true
+
+ /@alifd/overlay@0.2.12:
+ resolution: {integrity: sha512-4IJGuuD7pJiF9YsUVIpDYXWg2YDNPIDXahld42pWwePcFMptO0thIG11XxfqvAULAIuR5Mqf4NdiK+jeSiVcGw==}
+ dependencies:
+ resize-observer-polyfill: 1.5.1
+ dev: true
+
+ /@alifd/validate@1.2.3:
+ resolution: {integrity: sha512-ggSBfpl3H8M2OEM95zC9NQc4cBvne/Eq4mTHZHWtqYI/6Vnz0k1fGx3hnYsdGu3c3hF4l6sUDPulactM6lSXtA==}
+ dev: true
+
+ /@alilc/lowcode-datasource-engine@1.1.4:
+ resolution: {integrity: sha512-gQ5vjFvdhpzb8IeNnZWjqWqWbRQWtfHDGsXrz//Lkoy0OCguaKuwt0kMGyDy1B5Bbde1fLJQo3vLkQ01wwDYGg==}
+ dependencies:
+ '@alilc/lowcode-datasource-types': 1.1.4
+ '@alilc/lowcode-types': 1.2.0
+ lodash: 4.17.21
+ tslib: 2.6.2
+ dev: true
+
+ /@alilc/lowcode-datasource-types@1.1.4:
+ resolution: {integrity: sha512-lQ+nU6JR54JMHERLU9R0PaDmPmLSwhUjZY/cKGgx8nDIq78tbxV2TjBIOnY2T0br64oyJ8SUkrqmDHOBV4o4PA==}
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
+ /@alilc/lowcode-material-parser@1.0.3:
+ resolution: {integrity: sha512-m+YaJVdWV7U9mUwsDJdE1tWT/y+dSXnFbMCt4SosaSDCxhN2OF+v2kK6sK2eVJWDq9P+w4U4oj9WPbPqWDT/aw==}
+ engines: {node: '>=10.0.0'}
+ dependencies:
+ ajv: 6.12.6
+ ast-types: 0.13.4
+ cross-spawn-promise: 0.10.2
+ debug: 4.3.4
+ find-config: 1.0.0
+ fs-extra: 8.1.0
+ lodash: 4.17.21
+ parse-prop-types: 0.3.0(prop-types@15.8.1)
+ prop-types: 15.8.1
+ react-docgen: 5.3.0
+ react-docgen-typescript: 1.22.0(typescript@3.9.4)
+ safe-eval: 0.4.1
+ short-uuid: 3.1.1
+ ts-polyfill: 3.8.2
+ typescript: 3.9.4
+ vm2: 3.9.19
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@alilc/lowcode-rax-renderer@1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(prop-types@15.8.1)(rax@1.2.3)(react-dom@16.14.0):
+ resolution: {integrity: sha512-eYe3v+QhYBFSoJJ4kAYVAudlhv6kmD7vDHJkWoPrj+iUzRXIogIG3vLMj+wbPp9G1he3kg534i/9cd9W2FDz+w==}
+ engines: {npm: '>=3.0.0'}
+ peerDependencies:
+ prop-types: ^15.7.2
+ rax: ^1.1.0
+ dependencies:
+ '@alilc/lowcode-renderer-core': 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)
+ '@alilc/lowcode-utils': 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)
+ prop-types: 15.8.1
+ rax: 1.2.3
+ rax-find-dom-node: 1.0.1
+ transitivePeerDependencies:
+ - '@alifd/meet-react'
+ - bufferutil
+ - moment
+ - react-dom
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@alilc/lowcode-react-renderer@1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)(react@16.14.0):
+ resolution: {integrity: sha512-L8l02Y10kV0C4PHKzzfTpYDdU0BwXmmJMlnj9iJg46APF1RxpsZki/FWx2O5Z57WHULql8Qe2QCnsuYt6HTo2Q==}
+ dependencies:
+ '@alifd/next': 1.26.28(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)(react@16.14.0)
+ '@alilc/lowcode-renderer-core': 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)
+ transitivePeerDependencies:
+ - '@alifd/meet-react'
+ - bufferutil
+ - moment
+ - react
+ - react-dom
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@alilc/lowcode-renderer-core@1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0):
+ resolution: {integrity: sha512-ga12tJI+GKRJjtNbRFW0/bJwtc3gqdEHekvMNwf0gXJI5fBp2+piqYAm2UgGwLslcbv+IGQ4tjPqXGI9gISK6w==}
+ dependencies:
+ '@alilc/lowcode-datasource-engine': 1.1.4
+ '@alilc/lowcode-types': 1.2.0
+ '@alilc/lowcode-utils': 1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)
+ classnames: 2.3.2
+ debug: 4.3.4
+ fetch-jsonp: 1.3.0
+ intl-messageformat: 9.13.0
+ jsonuri: 2.6.0
+ lodash: 4.17.21
+ prop-types: 15.8.1
+ react-is: 16.13.1
+ socket.io-client: 2.5.0
+ whatwg-fetch: 3.6.19
+ transitivePeerDependencies:
+ - '@alifd/meet-react'
+ - bufferutil
+ - moment
+ - react-dom
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /@alilc/lowcode-types@1.2.0:
+ resolution: {integrity: sha512-RsbI+wvVF4lak3ZIdj1VKltzs4o5qNrblqPpl2lnxbPGlPo60kWdNy7eR2MImkJLkDYVBMHYrmG3N9JpLQFmgA==}
+ dependencies:
+ '@alilc/lowcode-datasource-types': 1.1.4
+ react: 16.14.0
+ strict-event-emitter-types: 2.0.0
+ dev: true
+
+ /@alilc/lowcode-utils@1.2.0(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0):
+ resolution: {integrity: sha512-OXnXvFpQxZghgu4siVZhw8/7U0GPCTVExchAi8hNVc8vRojJpa2XC6q0Z59r6wbr8rE2kEpF4Zes3Qgo9lcDQw==}
+ dependencies:
+ '@alifd/next': 1.26.28(@alifd/meet-react@2.9.6)(moment@2.29.4)(react-dom@16.14.0)(react@16.14.0)
+ '@alilc/lowcode-types': 1.2.0
+ lodash: 4.17.21
+ mobx: 6.10.2
+ react: 16.14.0
+ transitivePeerDependencies:
+ - '@alifd/meet-react'
+ - moment
+ - react-dom
+ dev: true
+
/@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
@@ -57,6 +418,24 @@ packages:
'@jridgewell/trace-mapping': 0.3.20
dev: true
+ /@appworks/constant@0.1.5:
+ resolution: {integrity: sha512-9iQX3FyKg1+WK+Hgn8Bgqz4u7Hf7paGPdLeuYIzBM/Od/E01d9D8+pJJV1sHjmF3mvakjNaEMLAUlxWSecT0Xg==}
+ dependencies:
+ js-base64: 3.7.5
+ dev: true
+
+ /@babel/code-frame@7.0.0-beta.44:
+ resolution: {integrity: sha1-KgJkM2jegJFhYr5whlyXd08629k=}
+ dependencies:
+ '@babel/highlight': 7.0.0-beta.44
+ dev: true
+
+ /@babel/code-frame@7.12.11:
+ resolution: {integrity: sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8=}
+ dependencies:
+ '@babel/highlight': 7.22.20
+ dev: true
+
/@babel/code-frame@7.22.13:
resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
engines: {node: '>=6.9.0'}
@@ -65,6 +444,18 @@ packages:
chalk: 2.4.2
dev: true
+ /@babel/code-frame@7.5.5:
+ resolution: {integrity: sha1-vAeC9tafe31JUxIZaZuYj2aaj50=}
+ dependencies:
+ '@babel/highlight': 7.22.20
+ dev: true
+
+ /@babel/code-frame@7.8.3:
+ resolution: {integrity: sha1-M+JZA9dIEYFTThLsCiXxa2/PQZ4=}
+ dependencies:
+ '@babel/highlight': 7.22.20
+ dev: true
+
/@babel/compat-data@7.23.2:
resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==}
engines: {node: '>=6.9.0'}
@@ -107,6 +498,16 @@ packages:
semver: 6.3.1
dev: true
+ /@babel/generator@7.0.0-beta.44:
+ resolution: {integrity: sha1-x+Z7m1KEr89pswm1DX038+UDPUI=}
+ dependencies:
+ '@babel/types': 7.0.0-beta.44
+ jsesc: 2.5.2
+ lodash: 4.17.21
+ source-map: 0.5.7
+ trim-right: 1.0.1
+ dev: true
+
/@babel/generator@7.23.0:
resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
engines: {node: '>=6.9.0'}
@@ -192,6 +593,14 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
+ /@babel/helper-function-name@7.0.0-beta.44:
+ resolution: {integrity: sha1-4YVSqq4iMRAKbkheA4VLw1MtRN0=}
+ dependencies:
+ '@babel/helper-get-function-arity': 7.0.0-beta.44
+ '@babel/template': 7.0.0-beta.44
+ '@babel/types': 7.0.0-beta.44
+ dev: true
+
/@babel/helper-function-name@7.23.0:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
@@ -200,6 +609,12 @@ packages:
'@babel/types': 7.23.0
dev: true
+ /@babel/helper-get-function-arity@7.0.0-beta.44:
+ resolution: {integrity: sha1-0Dym3SufewseazLFbHKDYUDbOhU=}
+ dependencies:
+ '@babel/types': 7.0.0-beta.44
+ dev: true
+
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
@@ -285,6 +700,12 @@ packages:
'@babel/types': 7.23.0
dev: true
+ /@babel/helper-split-export-declaration@7.0.0-beta.44:
+ resolution: {integrity: sha1-wLNRc14PvLOCLIrY205YOwXr2dw=}
+ dependencies:
+ '@babel/types': 7.0.0-beta.44
+ dev: true
+
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
@@ -327,6 +748,14 @@ packages:
- supports-color
dev: true
+ /@babel/highlight@7.0.0-beta.44:
+ resolution: {integrity: sha1-GMlM5UORaoBVPtzc9oGJCyAHR9U=}
+ dependencies:
+ chalk: 2.4.2
+ esutils: 2.0.3
+ js-tokens: 3.0.2
+ dev: true
+
/@babel/highlight@7.22.20:
resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
engines: {node: '>=6.9.0'}
@@ -366,19 +795,21 @@ packages:
'@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2)
dev: true
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2):
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.2):
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
dev: true
- /@babel/plugin-proposal-decorators@7.23.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==}
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -386,221 +817,449 @@ packages:
'@babel/core': 7.23.2
'@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.2)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.2):
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-class-properties@7.2.0(@babel/core@7.23.2):
+ resolution: {integrity: sha1-Eq3m3HuS6k+kyEtNe4fp0PRGtPg=}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.2):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-decorators@7.2.0(@babel/core@7.23.2):
+ resolution: {integrity: sha1-a0J4KCpvXdCLXYm5TyGqFnH+oHE=}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.2)
dev: true
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
+ /@babel/plugin-proposal-decorators@7.23.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.2)
dev: true
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.2):
- resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ /@babel/plugin-proposal-do-expressions@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Qh6Sbkt6xCRbHykDc709db/EQB4RJlmaW3ENuvzzi7G6GKeDNQHx81P0OdI9oEXhhHEJvLRzIr08m8HNCJWS8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-do-expressions': 7.22.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-proposal-export-default-from@7.2.0(@babel/core@7.23.2):
+ resolution: {integrity: sha1-c3sNpEuSVLYVL+KbuZxk5Wkfb2g=}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
+ /@babel/plugin-proposal-export-default-from@7.22.17(@babel/core@7.23.2):
+ resolution: {integrity: sha512-cop/3quQBVvdz6X5SJC6AhUv3C9DrVTM06LUEXimEdWAhCSyOJIr9NiZDU9leHZ0/aiG0Sh7Zmvaku5TWYNgbA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2):
- resolution: {integrity: sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=}
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.2):
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2):
- resolution: {integrity: sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=}
+ /@babel/plugin-proposal-function-bind@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-ckAugfDtdcrXKP49z7K7JI7QkA8SRidmsKxLizH8mg0UWOvcmvEd9/VDLzFcWlZqchvLDPUYpwuXNGAYjsscrw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-function-bind': 7.22.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2):
- resolution: {integrity: sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=}
+ /@babel/plugin-proposal-function-sent@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-YFEE5KDhaNCCD0I1j9vqPp5bpPuoDAPD+4Adk0QXdrL9TbmZluCuznuYvmlYqr14zfXCBGAZivfiLb6WI4GhSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-wrap-function': 7.22.20
+ '@babel/plugin-syntax-function-sent': 7.22.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.2):
- resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==}
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2):
- resolution: {integrity: sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=}
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.23.2):
+ resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2):
- resolution: {integrity: sha1-AolkqbqA28CUyRXEh618TnpmRlo=}
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.2):
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
+ '@babel/compat-data': 7.23.2
'@babel/core': 7.23.2
+ '@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2):
- resolution: {integrity: sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=}
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2):
- resolution: {integrity: sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=}
+ /@babel/plugin-proposal-pipeline-operator@7.22.15(@babel/core@7.23.2):
+ resolution: {integrity: sha512-tk81rXNA4T/AQc4zFhIIJp9OSmY8rmy46G7LXiPm4+/X8A0A0f9ri6yjEIj3fYqZQYrQnX9uuWXppPGsEesYtg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-pipeline-operator': 7.22.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2):
- resolution: {integrity: sha1-ypHvRjA1MESLkGZSusLp/plB9pk=}
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
- '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2):
- resolution: {integrity: sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=}
+ /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.23.2):
+ resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2):
- resolution: {integrity: sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=}
+ /@babel/plugin-proposal-throw-expressions@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-34kY5YjNKDhjXbj2oNDkxl0xNl2+yQTEsWu8Ia6kCTb6wz76bBCd4DzmeZokfr6g68yneu3eg8qAyYgKbyesFg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-throw-expressions': 7.22.5(@babel/core@7.23.2)
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2):
- resolution: {integrity: sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=}
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2):
+ resolution: {integrity: sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha1-TJpvZp9dDN8bkKFnHpoUa+UwDOo=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2):
+ resolution: {integrity: sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2):
+ resolution: {integrity: sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.2):
+ resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-do-expressions@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-60pOTgQGY00/Kiozrtu286Aqg50IxDy/jIHhlMzXjYTs1Q8lbeOgqC9NLidtqfBNwdX6bZCT6FJ2i5xzt+JKzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha1-AolkqbqA28CUyRXEh618TnpmRlo=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-function-bind@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Sjy7XIhHF9L++0Mk/3Y4H4439cjI//wc/jE8Ly3+qGPkTUYYEhe4rzMv/JnyZpekfOBL22X6DAq42I7GM/3KzA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-function-sent@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-tKOWGUAVv+JGJ1tcOIFdCqxUX97lgAUnmLpWt/9JtEkgk9WQ5OolN+y9rWj6mtLM+d0kAzTGLu/kRQqr5/PEsA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2):
+ resolution: {integrity: sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2):
+ resolution: {integrity: sha1-ypHvRjA1MESLkGZSusLp/plB9pk=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2):
+ resolution: {integrity: sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2):
+ resolution: {integrity: sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -626,6 +1285,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-pipeline-operator@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-7yuGXd+h8gpR14FnPDTTCd5TfC/1B9njNZJT29GJ7UFF/WVbzkZy7728DynrENqgImqj5xyPTQAo8si9n3QVJQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2):
resolution: {integrity: sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=}
engines: {node: '>=6.9.0'}
@@ -636,6 +1305,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-throw-expressions@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-oCyfA7rDVcQIydA7ZOmnHCQTzz5JvG9arY++Z+ASL/q5q+mJLblaRNHoK6ggV54X2c14wCK/lQi7z1DujmEmZA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2):
resolution: {integrity: sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=}
engines: {node: '>=6.9.0'}
@@ -1115,6 +1794,26 @@ packages:
'@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
dev: true
+ /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.2):
resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==}
engines: {node: '>=6.9.0'}
@@ -1285,66 +1984,115 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/preset-env@7.23.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==}
- engines: {node: '>=6.9.0'}
+ /@babel/preset-env@7.2.0(@babel/core@7.23.2):
+ resolution: {integrity: sha1-pQMOfkMGr1opXdXXx43FRkrz/uI=}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.2
'@babel/core': 7.23.2
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.2)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.2)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2)
'@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2)
'@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2)
'@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2)
'@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2)
'@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2)
'@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2)
'@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2)
'@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2)
'@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2)
'@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2)
'@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2)
'@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2)
'@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2)
'@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2)
'@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
'@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2)
'@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2)
'@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2)
+ browserslist: 4.22.1
+ invariant: 2.2.4
+ js-levenshtein: 1.1.6
+ semver: 5.7.2
+ dev: true
+
+ /@babel/preset-env@7.23.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.23.2
+ '@babel/core': 7.23.2
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2)
'@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2)
'@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2)
'@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2)
@@ -1376,6 +2124,16 @@ packages:
- supports-color
dev: true
+ /@babel/preset-flow@7.0.0(@babel/core@7.23.2):
+ resolution: {integrity: sha1-r9dkg12VNexj2MfUyvHAZFcmPaI=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2)
+ dev: true
+
/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -1387,6 +2145,19 @@ packages:
esutils: 2.0.3
dev: true
+ /@babel/preset-react@7.0.0(@babel/core@7.23.2):
+ resolution: {integrity: sha1-6GtLPZlDPHs+npF0fiZTlYvGs8A=}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.2)
+ dev: true
+
/@babel/preset-react@7.22.15(@babel/core@7.23.2):
resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==}
engines: {node: '>=6.9.0'}
@@ -1425,6 +2196,14 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
+
+ /@babel/template@7.0.0-beta.44:
+ resolution: {integrity: sha1-+IMvT9zuXVm/UV5ZX8UQbFKbOU8=}
+ dependencies:
+ '@babel/code-frame': 7.0.0-beta.44
+ '@babel/types': 7.0.0-beta.44
+ babylon: 7.0.0-beta.44
+ lodash: 4.17.21
dev: true
/@babel/template@7.22.15:
@@ -1436,6 +2215,23 @@ packages:
'@babel/types': 7.23.0
dev: true
+ /@babel/traverse@7.0.0-beta.44:
+ resolution: {integrity: sha1-qXCixFR3rRgBfi5GWgYG/u4NKWY=}
+ dependencies:
+ '@babel/code-frame': 7.0.0-beta.44
+ '@babel/generator': 7.0.0-beta.44
+ '@babel/helper-function-name': 7.0.0-beta.44
+ '@babel/helper-split-export-declaration': 7.0.0-beta.44
+ '@babel/types': 7.0.0-beta.44
+ babylon: 7.0.0-beta.44
+ debug: 3.2.7
+ globals: 11.12.0
+ invariant: 2.2.4
+ lodash: 4.17.21
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/traverse@7.23.2:
resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
engines: {node: '>=6.9.0'}
@@ -1454,6 +2250,14 @@ packages:
- supports-color
dev: true
+ /@babel/types@7.0.0-beta.44:
+ resolution: {integrity: sha1-axsWRZH3fewKA0KsqZXy0Eazp1c=}
+ dependencies:
+ esutils: 2.0.3
+ lodash: 4.17.21
+ to-fast-properties: 2.0.0
+ dev: true
+
/@babel/types@7.23.0:
resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
engines: {node: '>=6.9.0'}
@@ -1463,6 +2267,106 @@ packages:
to-fast-properties: 2.0.0
dev: true
+ /@bcoe/v8-coverage@0.2.3:
+ resolution: {integrity: sha1-daLotRy3WKdVPWgEpZMteqznXDk=}
+ dev: true
+
+ /@builder/app-helpers@2.5.4(@babel/core@7.23.2):
+ resolution: {integrity: sha512-cQHkblMfeGDW+1JJAvkjrGWWZQOEDL4cT7UoHu9Qt2nFBgv5ZTyhYaCEiCfX9ZFUQZmTXav+H4yh8o0+TUkLoA==}
+ dependencies:
+ '@babel/parser': 7.23.0
+ '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2)
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ es-module-lexer: 0.9.3
+ esbuild: 0.14.54
+ fast-glob: 3.3.1
+ fs-extra: 8.1.0
+ lodash: 4.17.21
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ dev: true
+
+ /@builder/babel-preset-ice@1.0.2(@babel/core@7.23.2):
+ resolution: {integrity: sha512-N+mcinJoassc68wjGn2ziqHsQIt1Z4AVdYk1BTIwu37gyeohZtlh6Ue7HFFNQ1v4Ku6OkttX3KIEj3TlBEIw7A==}
+ dependencies:
+ '@babel/plugin-proposal-decorators': 7.23.2(@babel/core@7.23.2)
+ '@babel/plugin-proposal-do-expressions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-proposal-export-default-from': 7.22.17(@babel/core@7.23.2)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.2)
+ '@babel/plugin-proposal-function-bind': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-proposal-function-sent': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.23.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2)
+ '@babel/plugin-proposal-pipeline-operator': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-proposal-throw-expressions': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2)
+ '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
+ '@babel/preset-react': 7.22.15(@babel/core@7.23.2)
+ '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ dev: true
+
+ /@builder/pack@0.6.8:
+ resolution: {integrity: sha512-mG26GdglcpFhbq/54ug+cijWZQoj9l8eEW4UJUW0UN12cD/esVeuovzD0WPc/LB8D0SE1Ur8dYYedxh/GCeYKA==}
+ dependencies:
+ ansi-html: 0.0.7
+ ansi-html-community: 0.0.8
+ caniuse-lite: 1.0.30001554
+ chalk: 4.1.2
+ chokidar: 3.5.2
+ core-js-pure: 3.33.1
+ error-stack-parser: 2.1.4
+ html-entities: 2.4.0
+ jest-worker: 27.0.6
+ postcss: 8.4.31
+ react-refresh: 0.10.0
+ workbox-background-sync: 6.4.2
+ workbox-broadcast-update: 6.4.2
+ workbox-cacheable-response: 6.4.2
+ workbox-expiration: 6.4.2
+ workbox-precaching: 6.4.2
+ workbox-range-requests: 6.4.2
+ workbox-routing: 6.4.2
+ workbox-strategies: 6.4.2
+ dev: true
+
+ /@cnakazawa/watch@1.0.4:
+ resolution: {integrity: sha1-+GSuhQBND8q29QvpFBxNo2jRZWo=}
+ engines: {node: '>=0.1.95'}
+ hasBin: true
+ dependencies:
+ exec-sh: 0.3.6
+ minimist: 1.2.8
+ dev: true
+
+ /@commitlint/cli@11.0.0:
+ resolution: {integrity: sha1-aYGZvFKv7VCqKBaSN3WPoUpntdM=}
+ engines: {node: '>=v10.22.0'}
+ hasBin: true
+ dependencies:
+ '@babel/runtime': 7.23.2
+ '@commitlint/format': 11.0.0
+ '@commitlint/lint': 11.0.0
+ '@commitlint/load': 11.0.0
+ '@commitlint/read': 11.0.0
+ chalk: 4.1.0
+ core-js: 3.33.1
+ get-stdin: 8.0.0
+ lodash: 4.17.21
+ resolve-from: 5.0.0
+ resolve-global: 1.0.0
+ yargs: 15.4.1
+ dev: true
+
/@commitlint/cli@17.8.1:
resolution: {integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==}
engines: {node: '>=v14'}
@@ -1498,6 +2402,14 @@ packages:
ajv: 8.12.0
dev: true
+ /@commitlint/ensure@11.0.0:
+ resolution: {integrity: sha1-Pnlrloq1tyvG+KYEAHZAYwbJh/s=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ '@commitlint/types': 11.0.0
+ lodash: 4.17.21
+ dev: true
+
/@commitlint/ensure@17.8.1:
resolution: {integrity: sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==}
engines: {node: '>=v14'}
@@ -1510,11 +2422,24 @@ packages:
lodash.upperfirst: 4.3.1
dev: true
+ /@commitlint/execute-rule@11.0.0:
+ resolution: {integrity: sha1-PtYKt6MwGeWNkOLYkbddffd7S00=}
+ engines: {node: '>=v10.22.0'}
+ dev: true
+
/@commitlint/execute-rule@17.8.1:
resolution: {integrity: sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==}
engines: {node: '>=v14'}
dev: true
+ /@commitlint/format@11.0.0:
+ resolution: {integrity: sha1-rEewucpGVAwAgschspB5Tme9xRs=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ '@commitlint/types': 11.0.0
+ chalk: 4.1.2
+ dev: true
+
/@commitlint/format@17.8.1:
resolution: {integrity: sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==}
engines: {node: '>=v14'}
@@ -1523,6 +2448,14 @@ packages:
chalk: 4.1.2
dev: true
+ /@commitlint/is-ignored@11.0.0:
+ resolution: {integrity: sha1-e4A+2lYnbb5/7FHrFRBnYZhGjzk=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ '@commitlint/types': 11.0.0
+ semver: 7.3.2
+ dev: true
+
/@commitlint/is-ignored@17.8.1:
resolution: {integrity: sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==}
engines: {node: '>=v14'}
@@ -1531,6 +2464,16 @@ packages:
semver: 7.5.4
dev: true
+ /@commitlint/lint@11.0.0:
+ resolution: {integrity: sha1-AeBizRsOfD11aqLCRkYuC2ozSKQ=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ '@commitlint/is-ignored': 11.0.0
+ '@commitlint/parse': 11.0.0
+ '@commitlint/rules': 11.0.0
+ '@commitlint/types': 11.0.0
+ dev: true
+
/@commitlint/lint@17.8.1:
resolution: {integrity: sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==}
engines: {node: '>=v14'}
@@ -1541,6 +2484,19 @@ packages:
'@commitlint/types': 17.8.1
dev: true
+ /@commitlint/load@11.0.0:
+ resolution: {integrity: sha1-9zZWLw/6fnc/iAj+qTMZBC7hghE=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ '@commitlint/execute-rule': 11.0.0
+ '@commitlint/resolve-extends': 11.0.0
+ '@commitlint/types': 11.0.0
+ chalk: 4.1.0
+ cosmiconfig: 7.1.0
+ lodash: 4.17.21
+ resolve-from: 5.0.0
+ dev: true
+
/@commitlint/load@17.8.1:
resolution: {integrity: sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==}
engines: {node: '>=v14'}
@@ -1564,11 +2520,24 @@ packages:
- '@swc/wasm'
dev: true
+ /@commitlint/message@11.0.0:
+ resolution: {integrity: sha1-g1VMPLvIhP0HtHNZO8PpS8qj7gU=}
+ engines: {node: '>=v10.22.0'}
+ dev: true
+
/@commitlint/message@17.8.1:
resolution: {integrity: sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==}
engines: {node: '>=v14'}
dev: true
+ /@commitlint/parse@11.0.0:
+ resolution: {integrity: sha1-0YsIz2fDXQIRUgfXAJMGoujnyQE=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ conventional-changelog-angular: 5.0.13
+ conventional-commits-parser: 3.2.4
+ dev: true
+
/@commitlint/parse@17.8.1:
resolution: {integrity: sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==}
engines: {node: '>=v14'}
@@ -1578,6 +2547,15 @@ packages:
conventional-commits-parser: 4.0.0
dev: true
+ /@commitlint/read@11.0.0:
+ resolution: {integrity: sha1-8kJAVIxjWHu6E5+lo2TKuSYHcBY=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ '@commitlint/top-level': 11.0.0
+ fs-extra: 9.1.0
+ git-raw-commits: 2.0.11
+ dev: true
+
/@commitlint/read@17.8.1:
resolution: {integrity: sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==}
engines: {node: '>=v14'}
@@ -1589,6 +2567,16 @@ packages:
minimist: 1.2.8
dev: true
+ /@commitlint/resolve-extends@11.0.0:
+ resolution: {integrity: sha1-FY7L4n1KKlHUJhEaAUeOIW+7EDY=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ import-fresh: 3.3.0
+ lodash: 4.17.21
+ resolve-from: 5.0.0
+ resolve-global: 1.0.0
+ dev: true
+
/@commitlint/resolve-extends@17.8.1:
resolution: {integrity: sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==}
engines: {node: '>=v14'}
@@ -1601,6 +2589,16 @@ packages:
resolve-global: 1.0.0
dev: true
+ /@commitlint/rules@11.0.0:
+ resolution: {integrity: sha1-vbMQzG/FXJ+NfZF6IraQVcU1w3U=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ '@commitlint/ensure': 11.0.0
+ '@commitlint/message': 11.0.0
+ '@commitlint/to-lines': 11.0.0
+ '@commitlint/types': 11.0.0
+ dev: true
+
/@commitlint/rules@17.8.1:
resolution: {integrity: sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==}
engines: {node: '>=v14'}
@@ -1612,11 +2610,23 @@ packages:
execa: 5.1.1
dev: true
+ /@commitlint/to-lines@11.0.0:
+ resolution: {integrity: sha1-ht6hUcEO6kHjnqlvpN4Hg5JYp/4=}
+ engines: {node: '>=v10.22.0'}
+ dev: true
+
/@commitlint/to-lines@17.8.1:
resolution: {integrity: sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==}
engines: {node: '>=v14'}
dev: true
+ /@commitlint/top-level@11.0.0:
+ resolution: {integrity: sha1-uy0bbl7TvlaHRjO1nh994RjDJ4M=}
+ engines: {node: '>=v10.22.0'}
+ dependencies:
+ find-up: 5.0.0
+ dev: true
+
/@commitlint/top-level@17.8.1:
resolution: {integrity: sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==}
engines: {node: '>=v14'}
@@ -1624,6 +2634,11 @@ packages:
find-up: 5.0.0
dev: true
+ /@commitlint/types@11.0.0:
+ resolution: {integrity: sha1-cZzwX8wau2UzYQouD13R5h6sFP4=}
+ engines: {node: '>=v10.22.0'}
+ dev: true
+
/@commitlint/types@17.8.1:
resolution: {integrity: sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==}
engines: {node: '>=v14'}
@@ -1638,6 +2653,11 @@ packages:
'@jridgewell/trace-mapping': 0.3.9
dev: true
+ /@csstools/convert-colors@1.4.0:
+ resolution: {integrity: sha1-rUldxBsS511YjG24uYNPCPoTHrc=}
+ engines: {node: '>=4.0.0'}
+ dev: true
+
/@es-joy/jsdoccomment@0.36.1:
resolution: {integrity: sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==}
engines: {node: ^14 || ^16 || ^17 || ^18 || ^19}
@@ -1647,4302 +2667,17273 @@ packages:
jsdoc-type-pratt-parser: 3.1.0
dev: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.52.0):
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.52.0
- eslint-visitor-keys: 3.4.3
+ /@esbuild/android-arm64@0.18.20:
+ resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
dev: true
+ optional: true
- /@eslint-community/regexpp@4.9.1:
- resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==}
- engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ /@esbuild/android-arm@0.18.20:
+ resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
dev: true
+ optional: true
- /@eslint/eslintrc@2.1.2:
- resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- ajv: 6.12.6
- debug: 4.3.4
- espree: 9.6.1
- globals: 13.23.0
- ignore: 5.2.4
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
+ /@esbuild/android-x64@0.18.20:
+ resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
dev: true
+ optional: true
- /@eslint/js@8.52.0:
- resolution: {integrity: sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@esbuild/darwin-arm64@0.18.20:
+ resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
dev: true
+ optional: true
- /@humanwhocodes/config-array@0.11.13:
- resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
- engines: {node: '>=10.10.0'}
- dependencies:
- '@humanwhocodes/object-schema': 2.0.1
- debug: 4.3.4
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
+ /@esbuild/darwin-x64@0.18.20:
+ resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
dev: true
+ optional: true
- /@humanwhocodes/module-importer@1.0.1:
- resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
- engines: {node: '>=12.22'}
+ /@esbuild/freebsd-arm64@0.18.20:
+ resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
dev: true
+ optional: true
- /@humanwhocodes/object-schema@2.0.1:
- resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==}
+ /@esbuild/freebsd-x64@0.18.20:
+ resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
dev: true
+ optional: true
- /@jridgewell/gen-mapping@0.3.3:
- resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.20
+ /@esbuild/linux-arm64@0.18.20:
+ resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@jridgewell/resolve-uri@3.1.1:
- resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
- engines: {node: '>=6.0.0'}
+ /@esbuild/linux-arm@0.18.20:
+ resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@jridgewell/set-array@1.1.2:
- resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
- engines: {node: '>=6.0.0'}
+ /@esbuild/linux-ia32@0.18.20:
+ resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@jridgewell/sourcemap-codec@1.4.15:
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ /@esbuild/linux-loong64@0.14.54:
+ resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@jridgewell/trace-mapping@0.3.20:
- resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.1
- '@jridgewell/sourcemap-codec': 1.4.15
+ /@esbuild/linux-loong64@0.18.20:
+ resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@jridgewell/trace-mapping@0.3.9:
- resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.1
- '@jridgewell/sourcemap-codec': 1.4.15
+ /@esbuild/linux-mips64el@0.18.20:
+ resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1:
- resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
- dependencies:
- eslint-scope: 5.1.1
+ /@esbuild/linux-ppc64@0.18.20:
+ resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@nodelib/fs.scandir@2.1.5:
- resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=}
- engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
+ /@esbuild/linux-riscv64@0.18.20:
+ resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@nodelib/fs.stat@2.0.5:
- resolution: {integrity: sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=}
- engines: {node: '>= 8'}
+ /@esbuild/linux-s390x@0.18.20:
+ resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@nodelib/fs.walk@1.2.8:
- resolution: {integrity: sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=}
- engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.15.0
+ /@esbuild/linux-x64@0.18.20:
+ resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
dev: true
+ optional: true
- /@pkgr/utils@2.4.2:
- resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==}
- engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- dependencies:
- cross-spawn: 7.0.3
- fast-glob: 3.3.1
- is-glob: 4.0.3
- open: 9.1.0
- picocolors: 1.0.0
- tslib: 2.6.2
+ /@esbuild/netbsd-x64@0.18.20:
+ resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
dev: true
+ optional: true
- /@rushstack/eslint-patch@1.5.1:
- resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==}
+ /@esbuild/openbsd-x64@0.18.20:
+ resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
dev: true
+ optional: true
- /@stylelint/postcss-css-in-js@0.37.3(postcss-syntax@0.36.2)(postcss@7.0.39):
- resolution: {integrity: sha512-scLk3cSH1H9KggSniseb2KNAU5D9FWc3H7BxCSAIdtU9OWIyw0zkEZ9qEKHryRM+SExYXRKNb7tOOVNAsQ3iwg==}
- peerDependencies:
- postcss: '>=7.0.0'
- postcss-syntax: '>=0.36.2'
- dependencies:
- '@babel/core': 7.23.2
- postcss: 7.0.39
- postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39)
- transitivePeerDependencies:
- - supports-color
+ /@esbuild/sunos-x64@0.18.20:
+ resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
dev: true
+ optional: true
- /@stylelint/postcss-markdown@0.36.2(postcss-syntax@0.36.2)(postcss@7.0.39):
- resolution: {integrity: sha1-ClQMRpL43N/BPI41LBfnv+4rs5E=}
- peerDependencies:
- postcss: '>=7.0.0'
- postcss-syntax: '>=0.36.2'
- dependencies:
- postcss: 7.0.39
- postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39)
- remark: 13.0.0
- unist-util-find-all-after: 3.0.2
- transitivePeerDependencies:
- - supports-color
+ /@esbuild/win32-arm64@0.18.20:
+ resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /@tsconfig/node10@1.0.9:
- resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
+ /@esbuild/win32-ia32@0.18.20:
+ resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /@tsconfig/node12@1.0.11:
- resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+ /@esbuild/win32-x64@0.18.20:
+ resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
dev: true
+ optional: true
- /@tsconfig/node14@1.0.3:
- resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.52.0):
+ resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ dependencies:
+ eslint: 8.52.0
+ eslint-visitor-keys: 3.4.3
dev: true
- /@tsconfig/node16@1.0.4:
- resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+ /@eslint-community/regexpp@4.9.1:
+ resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
- /@types/json-schema@7.0.14:
- resolution: {integrity: sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==}
+ /@eslint/eslintrc@0.4.3:
+ resolution: {integrity: sha1-nkKYHvA1vrPdSa3ResuW6P9vOUw=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.4
+ espree: 7.3.1
+ globals: 13.23.0
+ ignore: 4.0.6
+ import-fresh: 3.3.0
+ js-yaml: 3.14.1
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@types/json5@0.0.29:
- resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
+ /@eslint/eslintrc@2.1.2:
+ resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.4
+ espree: 9.6.1
+ globals: 13.23.0
+ ignore: 5.2.4
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@types/mdast@3.0.14:
- resolution: {integrity: sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==}
+ /@eslint/js@8.52.0:
+ resolution: {integrity: sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
+
+ /@formatjs/ecma402-abstract@1.11.4:
+ resolution: {integrity: sha512-EBikYFp2JCdIfGEb5G9dyCkTGDmC57KSHhRQOC3aYxoPWVZvfWCDjZwkGYHN7Lis/fmuWl906bnNTJifDQ3sXw==}
dependencies:
- '@types/unist': 2.0.9
+ '@formatjs/intl-localematcher': 0.2.25
+ tslib: 2.6.2
dev: true
- /@types/minimist@1.2.4:
- resolution: {integrity: sha512-Kfe/D3hxHTusnPNRbycJE1N77WHDsdS4AjUYIzlDzhDrS47NrwuL3YW4VITxwR7KCVpzwgy4Rbj829KSSQmwXQ==}
+ /@formatjs/fast-memoize@1.2.1:
+ resolution: {integrity: sha512-Rg0e76nomkz3vF9IPlKeV+Qynok0r7YZjL6syLz4/urSg0IbjPZCB/iYUMNsYA643gh4mgrX3T7KEIFIxJBQeg==}
+ dependencies:
+ tslib: 2.6.2
dev: true
- /@types/node@20.5.1:
- resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==}
+ /@formatjs/icu-messageformat-parser@2.1.0:
+ resolution: {integrity: sha512-Qxv/lmCN6hKpBSss2uQ8IROVnta2r9jd3ymUEIjm2UyIkUCHVcbUVRGL/KS/wv7876edvsPe+hjHVJ4z8YuVaw==}
+ dependencies:
+ '@formatjs/ecma402-abstract': 1.11.4
+ '@formatjs/icu-skeleton-parser': 1.3.6
+ tslib: 2.6.2
dev: true
- /@types/normalize-package-data@2.4.3:
- resolution: {integrity: sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==}
+ /@formatjs/icu-skeleton-parser@1.3.6:
+ resolution: {integrity: sha512-I96mOxvml/YLrwU2Txnd4klA7V8fRhb6JG/4hm3VMNmeJo1F03IpV2L3wWt7EweqNLES59SZ4d6hVOPCSf80Bg==}
+ dependencies:
+ '@formatjs/ecma402-abstract': 1.11.4
+ tslib: 2.6.2
dev: true
- /@types/parse-json@4.0.1:
- resolution: {integrity: sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==}
+ /@formatjs/intl-localematcher@0.2.25:
+ resolution: {integrity: sha512-YmLcX70BxoSopLFdLr1Ds99NdlTI2oWoLbaUW2M406lxOIPzE1KQhRz2fPUkq34xVZQaihCoU29h0KK7An3bhA==}
+ dependencies:
+ tslib: 2.6.2
dev: true
- /@types/semver@7.5.4:
- resolution: {integrity: sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==}
+ /@gar/promisify@1.1.3:
+ resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
dev: true
- /@types/unist@2.0.9:
- resolution: {integrity: sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==}
+ /@gcanvas/core@1.0.0:
+ resolution: {integrity: sha512-v+moRYrngBYtaFTABYjzeve9H+EAvh1zJd7RCzELQM/vLQCqjcpjh3R+R80W4i4y6dos1yQhMB2SVH8tfx0iEg==}
dev: true
- /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ /@humanwhocodes/config-array@0.11.13:
+ resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
+ engines: {node: '>=10.10.0'}
dependencies:
- '@eslint-community/regexpp': 4.9.1
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ '@humanwhocodes/object-schema': 2.0.1
debug: 4.3.4
- eslint: 8.52.0
- graphemer: 1.4.0
- ignore: 5.2.4
- natural-compare-lite: 1.4.0
- semver: 7.5.4
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
+ minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils@5.62.0(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ /@humanwhocodes/config-array@0.5.0:
+ resolution: {integrity: sha1-FAeWfUxu7Nc4j4Os8er00Mbljvk=}
+ engines: {node: '>=10.10.0'}
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- eslint: 8.52.0
+ '@humanwhocodes/object-schema': 1.2.1
+ debug: 4.3.4
+ minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- - typescript
dev: true
- /@typescript-eslint/parser@5.62.0(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
- debug: 4.3.4
- eslint: 8.52.0
- typescript: 4.9.5
- transitivePeerDependencies:
- - supports-color
+ /@humanwhocodes/module-importer@1.0.1:
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
dev: true
- /@typescript-eslint/scope-manager@5.62.0:
- resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
+ /@humanwhocodes/object-schema@1.2.1:
+ resolution: {integrity: sha1-tSBSnsIdjllFoYUd/Rwy6U45/0U=}
dev: true
- /@typescript-eslint/type-utils@5.62.0(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
- '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- debug: 4.3.4
- eslint: 8.52.0
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
- transitivePeerDependencies:
- - supports-color
+ /@humanwhocodes/object-schema@2.0.1:
+ resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==}
dev: true
- /@typescript-eslint/types@5.62.0:
- resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@icedesign/skin@0.1.14:
+ resolution: {integrity: sha512-Z85vYQ474CTUnX15HtCNLW+DVoF5wW8ykY3wQVDNU1kB4mbJqRCMpRA1cCNPHUb+sAvnqyYztN3GY8tTK89hAw==}
dev: true
- /@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5):
- resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ /@istanbuljs/load-nyc-config@1.1.0:
+ resolution: {integrity: sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0=}
+ engines: {node: '>=8'}
dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.5.4
- tsutils: 3.21.0(typescript@4.9.5)
- typescript: 4.9.5
- transitivePeerDependencies:
- - supports-color
+ camelcase: 5.3.1
+ find-up: 4.1.0
+ get-package-type: 0.1.0
+ js-yaml: 3.14.1
+ resolve-from: 5.0.0
dev: true
- /@typescript-eslint/utils@5.62.0(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
- '@types/json-schema': 7.0.14
- '@types/semver': 7.5.4
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
- eslint: 8.52.0
- eslint-scope: 5.1.1
- semver: 7.5.4
- transitivePeerDependencies:
- - supports-color
- - typescript
+ /@istanbuljs/schema@0.1.3:
+ resolution: {integrity: sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg=}
+ engines: {node: '>=8'}
dev: true
- /@typescript-eslint/visitor-keys@5.62.0:
- resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@jest/console@24.9.0:
+ resolution: {integrity: sha1-ebG8Bvt0qM+wHL3t+UVYSxuXB/A=}
+ engines: {node: '>= 6'}
dependencies:
- '@typescript-eslint/types': 5.62.0
- eslint-visitor-keys: 3.4.3
+ '@jest/source-map': 24.9.0
+ chalk: 2.4.2
+ slash: 2.0.0
dev: true
- /@ungap/structured-clone@1.2.0:
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+ /@jest/console@26.6.2:
+ resolution: {integrity: sha1-TgS8RkAUNYsDq0k3gF7jagrrmPI=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ chalk: 4.1.2
+ jest-message-util: 26.6.2
+ jest-util: 26.6.2
+ slash: 3.0.0
dev: true
- /JSONStream@1.3.5:
- resolution: {integrity: sha1-MgjB8I06TZkmGrZPkjArwV4RHKA=}
- hasBin: true
+ /@jest/core@26.6.3:
+ resolution: {integrity: sha1-djn8s4M9dIpGVq2lS94ZMFHkX60=}
+ engines: {node: '>= 10.14.2'}
dependencies:
- jsonparse: 1.3.1
- through: 2.3.8
+ '@jest/console': 26.6.2
+ '@jest/reporters': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-changed-files: 26.6.2
+ jest-config: 26.6.3
+ jest-haste-map: 26.6.2
+ jest-message-util: 26.6.2
+ jest-regex-util: 26.0.0
+ jest-resolve: 26.6.2
+ jest-resolve-dependencies: 26.6.3
+ jest-runner: 26.6.3
+ jest-runtime: 26.6.3
+ jest-snapshot: 26.6.2
+ jest-util: 26.6.2
+ jest-validate: 26.6.2
+ jest-watcher: 26.6.2
+ micromatch: 4.0.5
+ p-each-series: 2.2.0
+ rimraf: 3.0.2
+ slash: 3.0.0
+ strip-ansi: 6.0.1
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - ts-node
+ - utf-8-validate
dev: true
- /acorn-jsx@5.3.2(acorn@8.10.0):
- resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=}
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ /@jest/environment@26.6.2:
+ resolution: {integrity: sha1-ujZMxy4iHnnMjwqZVVv111d8+Sw=}
+ engines: {node: '>= 10.14.2'}
dependencies:
- acorn: 8.10.0
+ '@jest/fake-timers': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ jest-mock: 26.6.2
dev: true
- /acorn-walk@8.2.0:
- resolution: {integrity: sha1-dBIQ8uJCZFRQiFOi9E0KuDt/acE=}
- engines: {node: '>=0.4.0'}
+ /@jest/fake-timers@24.9.0:
+ resolution: {integrity: sha1-uj5r8O7NCaY2BJiWQ00wZjZUDJM=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ jest-message-util: 24.9.0
+ jest-mock: 24.9.0
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /acorn@8.10.0:
- resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
- engines: {node: '>=0.4.0'}
- hasBin: true
+ /@jest/fake-timers@26.6.2:
+ resolution: {integrity: sha1-RZwym89wzuSvTX4/PmeEgSNTWq0=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ '@sinonjs/fake-timers': 6.0.1
+ '@types/node': 20.5.1
+ jest-message-util: 26.6.2
+ jest-mock: 26.6.2
+ jest-util: 26.6.2
dev: true
- /ajv@6.12.6:
- resolution: {integrity: sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=}
+ /@jest/globals@26.6.2:
+ resolution: {integrity: sha1-W2E7eKGqJlWukI66Y4zJaiDfcgo=}
+ engines: {node: '>= 10.14.2'}
dependencies:
- fast-deep-equal: 3.1.3
- fast-json-stable-stringify: 2.1.0
- json-schema-traverse: 0.4.1
- uri-js: 4.4.1
+ '@jest/environment': 26.6.2
+ '@jest/types': 26.6.2
+ expect: 26.6.2
dev: true
- /ajv@8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ /@jest/reporters@26.6.2:
+ resolution: {integrity: sha1-H1GLmWN6Xxgwe9Ps+SdfaIKmZ/Y=}
+ engines: {node: '>= 10.14.2'}
dependencies:
- fast-deep-equal: 3.1.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- uri-js: 4.4.1
+ '@bcoe/v8-coverage': 0.2.3
+ '@jest/console': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ chalk: 4.1.2
+ collect-v8-coverage: 1.0.2
+ exit: 0.1.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ istanbul-lib-coverage: 3.2.0
+ istanbul-lib-instrument: 4.0.3
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 4.0.1
+ istanbul-reports: 3.1.6
+ jest-haste-map: 26.6.2
+ jest-resolve: 26.6.2
+ jest-util: 26.6.2
+ jest-worker: 26.6.2
+ slash: 3.0.0
+ source-map: 0.6.1
+ string-length: 4.0.2
+ terminal-link: 2.1.1
+ v8-to-istanbul: 7.1.2
+ optionalDependencies:
+ node-notifier: 8.0.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /ansi-escapes@5.0.0:
- resolution: {integrity: sha1-tqDK8O7wxBrxkOmnSeDADsBLsqY=}
- engines: {node: '>=12'}
+ /@jest/source-map@24.9.0:
+ resolution: {integrity: sha1-DiY6lEML5LQdpoPMwea//ioZFxQ=}
+ engines: {node: '>= 6'}
dependencies:
- type-fest: 1.4.0
+ callsites: 3.1.0
+ graceful-fs: 4.2.11
+ source-map: 0.6.1
dev: true
- /ansi-regex@5.0.1:
- resolution: {integrity: sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=}
- engines: {node: '>=8'}
+ /@jest/source-map@26.6.2:
+ resolution: {integrity: sha1-Ka9eHi4yTK/MyTbyGDCfVKtp1TU=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ callsites: 3.1.0
+ graceful-fs: 4.2.11
+ source-map: 0.6.1
dev: true
- /ansi-regex@6.0.1:
- resolution: {integrity: sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=}
- engines: {node: '>=12'}
+ /@jest/test-result@24.9.0:
+ resolution: {integrity: sha1-EXluiqnb+I6gJXV7MVJZWtBroMo=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/istanbul-lib-coverage': 2.0.5
dev: true
- /ansi-styles@3.2.1:
- resolution: {integrity: sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=}
- engines: {node: '>=4'}
+ /@jest/test-result@26.6.2:
+ resolution: {integrity: sha1-VdpYti3xNFdsyVR276X3lJ4/Xxg=}
+ engines: {node: '>= 10.14.2'}
dependencies:
- color-convert: 1.9.3
+ '@jest/console': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/istanbul-lib-coverage': 2.0.5
+ collect-v8-coverage: 1.0.2
dev: true
- /ansi-styles@4.3.0:
- resolution: {integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=}
- engines: {node: '>=8'}
+ /@jest/test-sequencer@26.6.3:
+ resolution: {integrity: sha1-mOikUQCGOIbQdCBej/3Fp+tYKxc=}
+ engines: {node: '>= 10.14.2'}
dependencies:
- color-convert: 2.0.1
+ '@jest/test-result': 26.6.2
+ graceful-fs: 4.2.11
+ jest-haste-map: 26.6.2
+ jest-runner: 26.6.3
+ jest-runtime: 26.6.3
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - ts-node
+ - utf-8-validate
dev: true
- /ansi-styles@6.2.1:
- resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
- engines: {node: '>=12'}
+ /@jest/transform@24.9.0:
+ resolution: {integrity: sha1-SuJ2iyllU/rasJ6ewRlUPJCxbFY=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@babel/core': 7.23.2
+ '@jest/types': 24.9.0
+ babel-plugin-istanbul: 5.2.0
+ chalk: 2.4.2
+ convert-source-map: 1.9.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 24.9.0
+ jest-regex-util: 24.9.0
+ jest-util: 24.9.0
+ micromatch: 3.1.10
+ pirates: 4.0.6
+ realpath-native: 1.1.0
+ slash: 2.0.0
+ source-map: 0.6.1
+ write-file-atomic: 2.4.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /arg@4.1.3:
- resolution: {integrity: sha1-Jp/HrVuOQstjyJbVZmAXJhwUQIk=}
+ /@jest/transform@26.6.2:
+ resolution: {integrity: sha1-WsV8X6GtF7Kq6D5z5FgTiU3PLks=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@babel/core': 7.23.2
+ '@jest/types': 26.6.2
+ babel-plugin-istanbul: 6.1.1
+ chalk: 4.1.2
+ convert-source-map: 1.9.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 26.6.2
+ jest-regex-util: 26.0.0
+ jest-util: 26.6.2
+ micromatch: 4.0.5
+ pirates: 4.0.6
+ slash: 3.0.0
+ source-map: 0.6.1
+ write-file-atomic: 3.0.3
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /argparse@2.0.1:
- resolution: {integrity: sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=}
+ /@jest/types@24.9.0:
+ resolution: {integrity: sha1-Y8smy3UA0Gnlo4lEGnxqtekJ/Fk=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@types/istanbul-lib-coverage': 2.0.5
+ '@types/istanbul-reports': 1.1.2
+ '@types/yargs': 13.0.12
dev: true
- /aria-query@5.3.0:
- resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ /@jest/types@26.6.2:
+ resolution: {integrity: sha1-vvWlMgMOHYii9abZM/hOlyJu1I4=}
+ engines: {node: '>= 10.14.2'}
dependencies:
- dequal: 2.0.3
+ '@types/istanbul-lib-coverage': 2.0.5
+ '@types/istanbul-reports': 3.0.3
+ '@types/node': 20.5.1
+ '@types/yargs': 15.0.17
+ chalk: 4.1.2
dev: true
- /array-buffer-byte-length@1.0.0:
- resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
+ /@jridgewell/gen-mapping@0.3.3:
+ resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
+ engines: {node: '>=6.0.0'}
dependencies:
- call-bind: 1.0.5
- is-array-buffer: 3.0.2
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.20
dev: true
- /array-ify@1.0.0:
- resolution: {integrity: sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=}
+ /@jridgewell/resolve-uri@3.1.1:
+ resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
+ engines: {node: '>=6.0.0'}
dev: true
- /array-includes@3.1.7:
- resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
- engines: {node: '>= 0.4'}
+ /@jridgewell/set-array@1.1.2:
+ resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
+ engines: {node: '>=6.0.0'}
+ dev: true
+
+ /@jridgewell/source-map@0.3.5:
+ resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- is-string: 1.0.7
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.20
dev: true
- /array-union@2.1.0:
- resolution: {integrity: sha1-t5hCCtvrHego2ErNii4j0+/oXo0=}
- engines: {node: '>=8'}
+ /@jridgewell/sourcemap-codec@1.4.15:
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
dev: true
- /array.prototype.findlastindex@1.2.3:
- resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
- engines: {node: '>= 0.4'}
+ /@jridgewell/trace-mapping@0.3.20:
+ resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.2
- get-intrinsic: 1.2.2
+ '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /array.prototype.flat@1.3.2:
- resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
- engines: {node: '>= 0.4'}
+ /@jridgewell/trace-mapping@0.3.9:
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.2
+ '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/sourcemap-codec': 1.4.15
dev: true
- /array.prototype.flatmap@1.3.2:
- resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
- engines: {node: '>= 0.4'}
+ /@mrmlnc/readdir-enhanced@2.2.1:
+ resolution: {integrity: sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=}
+ engines: {node: '>=4'}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.2
+ call-me-maybe: 1.0.2
+ glob-to-regexp: 0.3.0
dev: true
- /array.prototype.tosorted@1.1.2:
- resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==}
+ /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1:
+ resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.2
- get-intrinsic: 1.2.2
+ eslint-scope: 5.1.1
dev: true
- /arraybuffer.prototype.slice@1.0.2:
- resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
- engines: {node: '>= 0.4'}
+ /@nodelib/fs.scandir@2.1.5:
+ resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=}
+ engines: {node: '>= 8'}
dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- is-array-buffer: 3.0.2
- is-shared-array-buffer: 1.0.2
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
dev: true
- /arrify@1.0.1:
- resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=}
- engines: {node: '>=0.10.0'}
+ /@nodelib/fs.stat@1.1.3:
+ resolution: {integrity: sha1-K1o6s/kYzKSKjHVMCBaOPwPrphs=}
+ engines: {node: '>= 6'}
dev: true
- /ast-types-flow@0.0.7:
- resolution: {integrity: sha1-9wtzXGvKGlycItmCw+Oef+ujva0=}
+ /@nodelib/fs.stat@2.0.5:
+ resolution: {integrity: sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=}
+ engines: {node: '>= 8'}
dev: true
- /astral-regex@2.0.0:
- resolution: {integrity: sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=}
- engines: {node: '>=8'}
+ /@nodelib/fs.walk@1.2.8:
+ resolution: {integrity: sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=}
+ engines: {node: '>= 8'}
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.15.0
dev: true
- /asynciterator.prototype@1.0.0:
- resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==}
+ /@npmcli/fs@1.1.1:
+ resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
dependencies:
- has-symbols: 1.0.3
+ '@gar/promisify': 1.1.3
+ semver: 7.5.4
dev: true
- /autoprefixer@9.8.8:
- resolution: {integrity: sha1-/UvUWVOF+m8GWZ3nSaTV96R0lXo=}
- hasBin: true
+ /@npmcli/move-file@1.1.2:
+ resolution: {integrity: sha1-GoLD43L3yuklPrZtclQ9a4aFxnQ=}
+ engines: {node: '>=10'}
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001554
- normalize-range: 0.1.2
- num2fraction: 1.2.2
- picocolors: 0.2.1
- postcss: 7.0.39
- postcss-value-parser: 4.2.0
+ mkdirp: 1.0.4
+ rimraf: 3.0.2
dev: true
- /available-typed-arrays@1.0.5:
- resolution: {integrity: sha1-kvlWFlAQadB9EO2y/DfT4cZRI7c=}
- engines: {node: '>= 0.4'}
+ /@pkgr/utils@2.4.2:
+ resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==}
+ engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
+ dependencies:
+ cross-spawn: 7.0.3
+ fast-glob: 3.3.1
+ is-glob: 4.0.3
+ open: 9.1.0
+ picocolors: 1.0.0
+ tslib: 2.6.2
dev: true
- /axe-core@4.8.2:
- resolution: {integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==}
- engines: {node: '>=4'}
+ /@rollup/pluginutils@4.2.1:
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
dev: true
- /axobject-query@3.2.1:
- resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
- dependencies:
- dequal: 2.0.3
+ /@rushstack/eslint-patch@1.5.1:
+ resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==}
dev: true
- /babel-plugin-macros@3.1.0:
- resolution: {integrity: sha1-nvbcdN65NLTbNE3Jc+6FHRSMUME=}
- engines: {node: '>=10', npm: '>=6'}
+ /@sinonjs/commons@1.8.6:
+ resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
dependencies:
- '@babel/runtime': 7.23.2
- cosmiconfig: 7.1.0
- resolve: 1.22.8
+ type-detect: 4.0.8
dev: true
- /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2):
- resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ /@sinonjs/fake-timers@6.0.1:
+ resolution: {integrity: sha1-KTZ0/MsyYqx4LHqt/eyoaxDHXEA=}
dependencies:
- '@babel/compat-data': 7.23.2
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@sinonjs/commons': 1.8.6
dev: true
- /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2):
- resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==}
+ /@stylelint/postcss-css-in-js@0.37.3(postcss-syntax@0.36.2)(postcss@7.0.39):
+ resolution: {integrity: sha512-scLk3cSH1H9KggSniseb2KNAU5D9FWc3H7BxCSAIdtU9OWIyw0zkEZ9qEKHryRM+SExYXRKNb7tOOVNAsQ3iwg==}
peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ postcss: '>=7.0.0'
+ postcss-syntax: '>=0.36.2'
dependencies:
'@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
- core-js-compat: 3.33.1
+ postcss: 7.0.39
+ postcss-syntax: 0.36.2(postcss@7.0.39)
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2):
- resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==}
+ /@stylelint/postcss-markdown@0.36.2(postcss-syntax@0.36.2)(postcss@7.0.39):
+ resolution: {integrity: sha1-ClQMRpL43N/BPI41LBfnv+4rs5E=}
peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ postcss: '>=7.0.0'
+ postcss-syntax: '>=0.36.2'
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ postcss: 7.0.39
+ postcss-syntax: 0.36.2(postcss@7.0.39)
+ remark: 13.0.0
+ unist-util-find-all-after: 3.0.2
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-transform-react-remove-prop-types@0.4.24:
- resolution: {integrity: sha1-8u2vm0xqX75cHWeL+1MQeMFVXzo=}
+ /@tootallnate/once@1.1.2:
+ resolution: {integrity: sha1-zLkURTYBeaBOf+av94wA/8Hur4I=}
+ engines: {node: '>= 6'}
dev: true
- /babel-preset-react-app@10.0.1:
- resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
- dependencies:
- '@babel/core': 7.23.2
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-proposal-decorators': 7.23.2(@babel/core@7.23.2)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.2)
- '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2)
- '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
- '@babel/preset-react': 7.22.15(@babel/core@7.23.2)
- '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2)
- '@babel/runtime': 7.23.2
- babel-plugin-macros: 3.1.0
- babel-plugin-transform-react-remove-prop-types: 0.4.24
- transitivePeerDependencies:
- - supports-color
+ /@tsconfig/node10@1.0.9:
+ resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
dev: true
- /bail@1.0.5:
- resolution: {integrity: sha1-tvoTNASjksvB+MS/Y/WVM1Hnp3Y=}
+ /@tsconfig/node12@1.0.11:
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
dev: true
- /balanced-match@1.0.2:
- resolution: {integrity: sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=}
+ /@tsconfig/node14@1.0.3:
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
dev: true
- /balanced-match@2.0.0:
- resolution: {integrity: sha1-3HD5INeNuLhYU1eVhnv0j4IGM9k=}
+ /@tsconfig/node16@1.0.4:
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
dev: true
- /big-integer@1.6.51:
- resolution: {integrity: sha1-DfkqXZiAVg0/8tX9ICRciJ0TBoY=}
- engines: {node: '>=0.6'}
+ /@types/babel__core@7.20.3:
+ resolution: {integrity: sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==}
+ dependencies:
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
+ '@types/babel__generator': 7.6.6
+ '@types/babel__template': 7.4.3
+ '@types/babel__traverse': 7.20.3
dev: true
- /bplist-parser@0.2.0:
- resolution: {integrity: sha1-Q6nRg+W/nVRSAM6sPnEveeu+jQ4=}
- engines: {node: '>= 5.10.0'}
+ /@types/babel__generator@7.6.6:
+ resolution: {integrity: sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==}
dependencies:
- big-integer: 1.6.51
+ '@babel/types': 7.23.0
dev: true
- /brace-expansion@1.1.11:
- resolution: {integrity: sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=}
+ /@types/babel__template@7.4.3:
+ resolution: {integrity: sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==}
dependencies:
- balanced-match: 1.0.2
- concat-map: 0.0.1
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
dev: true
- /braces@3.0.2:
- resolution: {integrity: sha1-NFThpGLujVmeI23zNs2epPiv4Qc=}
- engines: {node: '>=8'}
+ /@types/babel__traverse@7.20.3:
+ resolution: {integrity: sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==}
dependencies:
- fill-range: 7.0.1
+ '@babel/types': 7.23.0
dev: true
- /browserslist@4.22.1:
- resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
+ /@types/debug@4.1.10:
+ resolution: {integrity: sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==}
dependencies:
- caniuse-lite: 1.0.30001554
- electron-to-chromium: 1.4.566
- node-releases: 2.0.13
- update-browserslist-db: 1.0.13(browserslist@4.22.1)
+ '@types/ms': 0.7.33
+
+ /@types/eslint-visitor-keys@1.0.0:
+ resolution: {integrity: sha1-HuMNeVRMqE1o1LPNsK9PIFZj3S0=}
dev: true
- /bundle-name@3.0.0:
- resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
- engines: {node: '>=12'}
+ /@types/glob@7.2.0:
+ resolution: {integrity: sha1-vBtb86qS8lvV3TnzXFc2G9zlsus=}
dependencies:
- run-applescript: 5.0.0
+ '@types/minimatch': 5.1.2
+ '@types/node': 20.5.1
dev: true
- /call-bind@1.0.5:
- resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
+ /@types/graceful-fs@4.1.8:
+ resolution: {integrity: sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==}
dependencies:
- function-bind: 1.1.2
- get-intrinsic: 1.2.2
- set-function-length: 1.1.1
+ '@types/node': 20.5.1
dev: true
- /callsites@3.1.0:
- resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=}
- engines: {node: '>=6'}
+ /@types/hast@2.3.7:
+ resolution: {integrity: sha512-EVLigw5zInURhzfXUM65eixfadfsHKomGKUakToXo84t8gGIJuTcD2xooM2See7GyQ7DRtYjhCHnSUQez8JaLw==}
+ dependencies:
+ '@types/unist': 2.0.9
dev: true
- /camelcase-keys@6.2.2:
- resolution: {integrity: sha1-XnVda6UaoiPsfT1S8ld4IQ+dw8A=}
- engines: {node: '>=8'}
+ /@types/hast@3.0.2:
+ resolution: {integrity: sha512-B5hZHgHsXvfCoO3xgNJvBnX7N8p86TqQeGKXcokW4XXi+qY4vxxPSFYofytvVmpFxzPv7oxDQzjg5Un5m2/xiw==}
dependencies:
- camelcase: 5.3.1
- map-obj: 4.3.0
- quick-lru: 4.0.1
- dev: true
+ '@types/unist': 3.0.1
+ dev: false
- /camelcase@5.3.1:
- resolution: {integrity: sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=}
- engines: {node: '>=6'}
+ /@types/html-minifier-terser@5.1.2:
+ resolution: {integrity: sha1-aTsxatMj6pfu1rOO0aPMArFnK1c=}
dev: true
- /caniuse-lite@1.0.30001554:
- resolution: {integrity: sha512-A2E3U//MBwbJVzebddm1YfNp7Nud5Ip+IPn4BozBmn4KqVX7AvluoIDFWjsv5OkGnKUXQVmMSoMKLa3ScCblcQ==}
+ /@types/istanbul-lib-coverage@2.0.5:
+ resolution: {integrity: sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ==}
dev: true
- /chalk@2.4.2:
- resolution: {integrity: sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=}
- engines: {node: '>=4'}
+ /@types/istanbul-lib-report@3.0.2:
+ resolution: {integrity: sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==}
dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
+ '@types/istanbul-lib-coverage': 2.0.5
dev: true
- /chalk@4.1.2:
- resolution: {integrity: sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=}
- engines: {node: '>=10'}
+ /@types/istanbul-reports@1.1.2:
+ resolution: {integrity: sha1-6HXMaJ5HvOVJ7IHz315vbxHPrrI=}
dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
- dev: true
-
- /chalk@5.3.0:
- resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ '@types/istanbul-lib-coverage': 2.0.5
+ '@types/istanbul-lib-report': 3.0.2
dev: true
- /character-entities-legacy@1.1.4:
- resolution: {integrity: sha1-lLwYRdznClu50uzHSHJWYSk9j8E=}
+ /@types/istanbul-reports@3.0.3:
+ resolution: {integrity: sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==}
+ dependencies:
+ '@types/istanbul-lib-report': 3.0.2
dev: true
- /character-entities@1.2.4:
- resolution: {integrity: sha1-4Sw5Obfq9OWxXnrUxeKOHUjFsWs=}
+ /@types/json-schema@7.0.14:
+ resolution: {integrity: sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==}
dev: true
- /character-reference-invalid@1.1.4:
- resolution: {integrity: sha1-CDMpzaDq4nKrPbvzfpo4LBOvFWA=}
+ /@types/json5@0.0.29:
+ resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
dev: true
- /cli-cursor@4.0.0:
- resolution: {integrity: sha1-POz+NzS/T+Aqg2HL3A9v4oxqV+o=}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /@types/mdast@3.0.14:
+ resolution: {integrity: sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==}
dependencies:
- restore-cursor: 4.0.0
+ '@types/unist': 2.0.9
dev: true
- /cli-truncate@3.1.0:
- resolution: {integrity: sha1-PyOrElNePXPoObtD5zyd5IfbE4k=}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /@types/mdast@4.0.2:
+ resolution: {integrity: sha512-tYR83EignvhYO9iU3kDg8V28M0jqyh9zzp5GV+EO+AYnyUl3P5ltkTeJuTiFZQFz670FSb3EwT/6LQdX+UdKfw==}
dependencies:
- slice-ansi: 5.0.0
- string-width: 5.1.2
+ '@types/unist': 3.0.1
+ dev: false
+
+ /@types/mdurl@1.0.4:
+ resolution: {integrity: sha512-ARVxjAEX5TARFRzpDRVC6cEk0hUIXCCwaMhz8y7S1/PxU6zZS1UMjyobz7q4w/D/R552r4++EhwmXK1N2rAy0A==}
dev: true
- /cliui@8.0.1:
- resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
- engines: {node: '>=12'}
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
+ /@types/minimatch@5.1.2:
+ resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
dev: true
- /clone-regexp@2.2.0:
- resolution: {integrity: sha1-fWXgCIXNh5ZAXDWnN+eoa3Qp428=}
- engines: {node: '>=6'}
- dependencies:
- is-regexp: 2.1.0
+ /@types/minimist@1.2.4:
+ resolution: {integrity: sha512-Kfe/D3hxHTusnPNRbycJE1N77WHDsdS4AjUYIzlDzhDrS47NrwuL3YW4VITxwR7KCVpzwgy4Rbj829KSSQmwXQ==}
dev: true
- /color-convert@1.9.3:
- resolution: {integrity: sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=}
- dependencies:
- color-name: 1.1.3
+ /@types/ms@0.7.33:
+ resolution: {integrity: sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ==}
+
+ /@types/node@20.5.1:
+ resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==}
dev: true
- /color-convert@2.0.1:
- resolution: {integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=}
- engines: {node: '>=7.0.0'}
- dependencies:
- color-name: 1.1.4
+ /@types/normalize-package-data@2.4.3:
+ resolution: {integrity: sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==}
dev: true
- /color-name@1.1.3:
- resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=}
+ /@types/parse-json@4.0.1:
+ resolution: {integrity: sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==}
dev: true
- /color-name@1.1.4:
- resolution: {integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=}
+ /@types/prettier@2.7.3:
+ resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==}
dev: true
- /colorette@2.0.20:
- resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+ /@types/prop-types@15.7.9:
+ resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==}
+
+ /@types/q@1.5.7:
+ resolution: {integrity: sha512-HBPgtzp44867rkL+IzQ3560/E/BlobwCjeXsuKqogrcE99SKgZR4tvBBCuNJZMhUFMz26M7cjKWZg785lllwpA==}
dev: true
- /commander@11.0.0:
- resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==}
- engines: {node: '>=16'}
+ /@types/react-dom@16.9.21:
+ resolution: {integrity: sha512-QdKxI502bJXRfFR8/pH0iCyt51EcPf1+hgCIZKJ9SBunj0NZpKK5j1FDoCGeGj/6ROK8gUesj41V3C64Rz2kHw==}
+ dependencies:
+ '@types/react': 16.14.50
dev: true
- /comment-parser@1.3.1:
- resolution: {integrity: sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==}
- engines: {node: '>= 12.0.0'}
+ /@types/react-transition-group@4.4.8:
+ resolution: {integrity: sha512-QmQ22q+Pb+HQSn04NL3HtrqHwYMf4h3QKArOy5F8U5nEVMaihBs3SR10WiOM1iwPz5jIo8x/u11al+iEGZZrvg==}
+ dependencies:
+ '@types/react': 16.14.50
dev: true
- /compare-func@2.0.0:
- resolution: {integrity: sha1-+2XnXtvd/S5WhVTotbBf/3pR/LM=}
+ /@types/react@16.14.50:
+ resolution: {integrity: sha512-7TWZ/HjhXsRK3BbhSFxTinbSft3sUXJAU3ONngT0rpcKJaIOlxkRke4bidqQTopUbEv1ApC5nlSEkIpX43MkTg==}
dependencies:
- array-ify: 1.0.0
- dot-prop: 5.3.0
+ '@types/prop-types': 15.7.9
+ '@types/scheduler': 0.16.5
+ csstype: 3.1.2
+
+ /@types/scheduler@0.16.5:
+ resolution: {integrity: sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==}
+
+ /@types/semver@7.5.4:
+ resolution: {integrity: sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==}
dev: true
- /concat-map@0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ /@types/source-list-map@0.1.4:
+ resolution: {integrity: sha512-Kdfm7Sk5VX8dFW7Vbp18+fmAatBewzBILa1raHYxrGEFXT0jNl9x3LWfuW7bTbjEKFNey9Dfkj/UzT6z/NvRlg==}
dev: true
- /confusing-browser-globals@1.0.11:
- resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
+ /@types/stack-utils@1.0.1:
+ resolution: {integrity: sha1-CoUdO9lkmPolwzq3J47TvWXwbD4=}
dev: true
- /conventional-changelog-angular@6.0.0:
- resolution: {integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==}
- engines: {node: '>=14'}
- dependencies:
- compare-func: 2.0.0
+ /@types/stack-utils@2.0.2:
+ resolution: {integrity: sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==}
dev: true
- /conventional-changelog-conventionalcommits@6.1.0:
- resolution: {integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==}
- engines: {node: '>=14'}
- dependencies:
- compare-func: 2.0.0
+ /@types/tapable@1.0.10:
+ resolution: {integrity: sha512-q8F20SdXG5fdVJQ5yxsVlH+f+oekP42QeHv4s5KlrxTMT0eopXn7ol1rhxMcksf8ph7XNv811iVDE2hOpUvEPg==}
dev: true
- /conventional-commits-parser@4.0.0:
- resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==}
- engines: {node: '>=14'}
- hasBin: true
+ /@types/uglify-js@3.17.3:
+ resolution: {integrity: sha512-ToldSfJ6wxO21cakcz63oFD1GjqQbKzhZCD57eH7zWuYT5UEZvfUoqvrjX5d+jB9g4a/sFO0n6QSVzzn5sMsjg==}
dependencies:
- JSONStream: 1.3.5
- is-text-path: 1.0.1
- meow: 8.1.2
- split2: 3.2.2
+ source-map: 0.6.1
dev: true
- /convert-source-map@2.0.0:
- resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+ /@types/unist@2.0.9:
+ resolution: {integrity: sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==}
dev: true
- /core-js-compat@3.33.1:
- resolution: {integrity: sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==}
+ /@types/unist@3.0.1:
+ resolution: {integrity: sha512-ue/hDUpPjC85m+PM9OQDMZr3LywT+CT6mPsQq8OJtCLiERkGRcQUFvu9XASF5XWqyZFXbf15lvb3JFJ4dRLWPg==}
+ dev: false
+
+ /@types/webpack-sources@3.2.2:
+ resolution: {integrity: sha512-acCzhuVe+UJy8abiSFQWXELhhNMZjQjQKpLNEi1pKGgKXZj0ul614ATcx4kkhunPost6Xw+aCq8y8cn1/WwAiA==}
dependencies:
- browserslist: 4.22.1
+ '@types/node': 20.5.1
+ '@types/source-list-map': 0.1.4
+ source-map: 0.7.4
dev: true
- /cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.1)(typescript@5.2.2):
- resolution: {integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==}
- engines: {node: '>=v14.21.3'}
- peerDependencies:
- '@types/node': '*'
- cosmiconfig: '>=7'
- ts-node: '>=10'
- typescript: '>=4'
+ /@types/webpack@4.41.35:
+ resolution: {integrity: sha512-XRC6HLGHtNfN8/xWeu1YUQV1GSE+28q8lSqvcJ+0xt/zW9Wmn4j9pCSvaXPyRlCKrl5OuqECQNEJUy2vo8oWqg==}
dependencies:
'@types/node': 20.5.1
- cosmiconfig: 8.3.6(typescript@4.9.5)
- ts-node: 10.9.1(@types/node@20.5.1)(typescript@4.9.5)
- typescript: 5.2.2
+ '@types/tapable': 1.0.10
+ '@types/uglify-js': 3.17.3
+ '@types/webpack-sources': 3.2.2
+ anymatch: 3.1.3
+ source-map: 0.6.1
dev: true
- /cosmiconfig@7.1.0:
- resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
- engines: {node: '>=10'}
+ /@types/yargs-parser@21.0.2:
+ resolution: {integrity: sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==}
+ dev: true
+
+ /@types/yargs@13.0.12:
+ resolution: {integrity: sha1-2JWojHA7eK8EZaneiKqSxhQwsJI=}
dependencies:
- '@types/parse-json': 4.0.1
- import-fresh: 3.3.0
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
+ '@types/yargs-parser': 21.0.2
dev: true
- /cosmiconfig@8.3.6(typescript@4.9.5):
- resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
- engines: {node: '>=14'}
+ /@types/yargs@15.0.17:
+ resolution: {integrity: sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==}
+ dependencies:
+ '@types/yargs-parser': 21.0.2
+ dev: true
+
+ /@typescript-eslint/eslint-plugin@3.10.1(@typescript-eslint/parser@3.10.1)(eslint@7.32.0)(typescript@5.2.2):
+ resolution: {integrity: sha1-fgYTOKE4P1ntwgTGBYmfk9wuLI8=}
+ engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
- typescript: '>=4.9.5'
+ '@typescript-eslint/parser': ^3.0.0
+ eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
+ typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- parse-json: 5.2.0
- path-type: 4.0.0
- typescript: 4.9.5
+ '@typescript-eslint/experimental-utils': 3.10.1(eslint@7.32.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 3.10.1(eslint@7.32.0)(typescript@5.2.2)
+ debug: 4.3.4
+ eslint: 7.32.0
+ functional-red-black-tree: 1.0.1
+ regexpp: 3.2.0
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@5.2.2)
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /create-require@1.1.1:
- resolution: {integrity: sha1-wdfo8eX2z8n/ZfnNNS03NIdWwzM=}
+ /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@5.2.2):
+ resolution: {integrity: sha1-wk3HyAacdwa8QNmfb6h+3LIAUnY=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^4.0.0
+ eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 4.33.0
+ debug: 4.3.4
+ eslint: 7.32.0
+ functional-red-black-tree: 1.0.1
+ ignore: 5.2.4
+ regexpp: 3.2.0
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@5.2.2)
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /cross-spawn@7.0.3:
- resolution: {integrity: sha1-9zqFudXUHQRVUcF34ogtSshXKKY=}
- engines: {node: '>= 8'}
+ /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^5.0.0
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
+ '@eslint-community/regexpp': 4.9.1
+ '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ debug: 4.3.4
+ eslint: 8.52.0
+ graphemer: 1.4.0
+ ignore: 5.2.4
+ natural-compare-lite: 1.4.0
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@4.9.5)
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /cssesc@3.0.0:
- resolution: {integrity: sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=}
- engines: {node: '>=4'}
- hasBin: true
+ /@typescript-eslint/experimental-utils@3.10.1(eslint@7.32.0)(typescript@5.2.2):
+ resolution: {integrity: sha1-4Xn/yBqA68ri6gTgMy+LJRNFpoY=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ peerDependencies:
+ eslint: '*'
+ dependencies:
+ '@types/json-schema': 7.0.14
+ '@typescript-eslint/types': 3.10.1
+ '@typescript-eslint/typescript-estree': 3.10.1(typescript@5.2.2)
+ eslint: 7.32.0
+ eslint-scope: 5.1.1
+ eslint-utils: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
dev: true
- /damerau-levenshtein@1.0.8:
- resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
+ /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@5.2.2):
+ resolution: {integrity: sha1-byp4akIJ+iIimJ6TgLUzGygQ9/0=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ peerDependencies:
+ eslint: '*'
+ dependencies:
+ '@types/json-schema': 7.0.14
+ '@typescript-eslint/scope-manager': 4.33.0
+ '@typescript-eslint/types': 4.33.0
+ '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.2.2)
+ eslint: 7.32.0
+ eslint-scope: 5.1.1
+ eslint-utils: 3.0.0(eslint@7.32.0)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
dev: true
- /dargs@7.0.0:
- resolution: {integrity: sha1-BAFcQd4Ly2nshAUPPZvgyvjW1cw=}
- engines: {node: '>=8'}
+ /@typescript-eslint/experimental-utils@5.62.0(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ eslint: 8.52.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
dev: true
- /debug@3.2.7:
- resolution: {integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=}
+ /@typescript-eslint/parser@3.10.1(eslint@7.32.0)(typescript@5.2.2):
+ resolution: {integrity: sha1-GIOFjoPotEJifhrG9AiSUhEVVGc=}
+ engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
- supports-color: '*'
+ eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
+ typescript: '*'
peerDependenciesMeta:
- supports-color:
+ typescript:
optional: true
dependencies:
- ms: 2.1.3
+ '@types/eslint-visitor-keys': 1.0.0
+ '@typescript-eslint/experimental-utils': 3.10.1(eslint@7.32.0)(typescript@5.2.2)
+ '@typescript-eslint/types': 3.10.1
+ '@typescript-eslint/typescript-estree': 3.10.1(typescript@5.2.2)
+ eslint: 7.32.0
+ eslint-visitor-keys: 1.3.0
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
+ /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@5.2.2):
+ resolution: {integrity: sha1-3+eXVw2WlOVgUo0Y7srYbIx0SJk=}
+ engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
- supports-color: '*'
+ eslint: ^5.0.0 || ^6.0.0 || ^7.0.0
+ typescript: '*'
peerDependenciesMeta:
- supports-color:
+ typescript:
optional: true
dependencies:
- ms: 2.1.2
+ '@typescript-eslint/scope-manager': 4.33.0
+ '@typescript-eslint/types': 4.33.0
+ '@typescript-eslint/typescript-estree': 4.33.0(typescript@5.2.2)
+ debug: 4.3.4
+ eslint: 7.32.0
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /decamelize-keys@1.1.1:
- resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
- engines: {node: '>=0.10.0'}
+ /@typescript-eslint/parser@5.62.0(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
- decamelize: 1.2.0
- map-obj: 1.0.1
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
+ debug: 4.3.4
+ eslint: 8.52.0
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /decamelize@1.2.0:
- resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=}
- engines: {node: '>=0.10.0'}
+ /@typescript-eslint/scope-manager@4.33.0:
+ resolution: {integrity: sha1-045JKA2YPody4pEhz4xukiHygKM=}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
+ dependencies:
+ '@typescript-eslint/types': 4.33.0
+ '@typescript-eslint/visitor-keys': 4.33.0
dev: true
- /deep-is@0.1.4:
- resolution: {integrity: sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=}
+ /@typescript-eslint/scope-manager@5.62.0:
+ resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
dev: true
- /default-browser-id@3.0.0:
- resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
- engines: {node: '>=12'}
+ /@typescript-eslint/type-utils@5.62.0(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '*'
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
- bplist-parser: 0.2.0
- untildify: 4.0.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ debug: 4.3.4
+ eslint: 8.52.0
+ tsutils: 3.21.0(typescript@4.9.5)
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /default-browser@4.0.0:
- resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
- engines: {node: '>=14.16'}
- dependencies:
- bundle-name: 3.0.0
- default-browser-id: 3.0.0
- execa: 7.2.0
- titleize: 3.0.0
+ /@typescript-eslint/types@3.10.1:
+ resolution: {integrity: sha1-HXRj+nwy2KI6tQioA8ov4m51hyc=}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
dev: true
- /define-data-property@1.1.1:
- resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.2
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
+ /@typescript-eslint/types@4.33.0:
+ resolution: {integrity: sha1-oeWQNqO1OuhDDO6/KpGdx/mvbXI=}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
dev: true
- /define-lazy-prop@3.0.0:
- resolution: {integrity: sha1-27Ga37dG1/xtc0oGty9KANAhJV8=}
- engines: {node: '>=12'}
+ /@typescript-eslint/types@5.62.0:
+ resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /define-properties@1.2.1:
- resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
- engines: {node: '>= 0.4'}
+ /@typescript-eslint/typescript-estree@3.10.1(typescript@5.2.2):
+ resolution: {integrity: sha1-/QBhzDit1PrUUTbWVECFafNluFM=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
- define-data-property: 1.1.1
- has-property-descriptors: 1.0.1
- object-keys: 1.1.1
+ '@typescript-eslint/types': 3.10.1
+ '@typescript-eslint/visitor-keys': 3.10.1
+ debug: 4.3.4
+ glob: 7.2.3
+ is-glob: 4.0.3
+ lodash: 4.17.21
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@5.2.2)
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /dequal@2.0.3:
- resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
- engines: {node: '>=6'}
+ /@typescript-eslint/typescript-estree@4.33.0(typescript@5.2.2):
+ resolution: {integrity: sha1-DftRwpCPaMXAjYKu/q8WahfCRgk=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 4.33.0
+ '@typescript-eslint/visitor-keys': 4.33.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@5.2.2)
+ typescript: 5.2.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /detect-indent@7.0.1:
- resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==}
- engines: {node: '>=12.20'}
+ /@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5):
+ resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.5.4
+ tsutils: 3.21.0(typescript@4.9.5)
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /detect-newline@4.0.1:
- resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /@typescript-eslint/utils@5.62.0(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
+ '@types/json-schema': 7.0.14
+ '@types/semver': 7.5.4
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
+ eslint: 8.52.0
+ eslint-scope: 5.1.1
+ semver: 7.5.4
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
dev: true
- /diff@4.0.2:
- resolution: {integrity: sha1-YPOuy4nV+uUgwRqhnvwruYKq3n0=}
- engines: {node: '>=0.3.1'}
+ /@typescript-eslint/visitor-keys@3.10.1:
+ resolution: {integrity: sha1-zUJ0dz4+tjsuhwrGAidEh+zR6TE=}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
+ dependencies:
+ eslint-visitor-keys: 1.3.0
dev: true
- /dir-glob@3.0.1:
- resolution: {integrity: sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=}
- engines: {node: '>=8'}
+ /@typescript-eslint/visitor-keys@4.33.0:
+ resolution: {integrity: sha1-KiL3ekFgQom3oYZYbp7EjKku8d0=}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
dependencies:
- path-type: 4.0.0
+ '@typescript-eslint/types': 4.33.0
+ eslint-visitor-keys: 2.1.0
dev: true
- /doctrine@2.1.0:
- resolution: {integrity: sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=}
- engines: {node: '>=0.10.0'}
+ /@typescript-eslint/visitor-keys@5.62.0:
+ resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- esutils: 2.0.3
+ '@typescript-eslint/types': 5.62.0
+ eslint-visitor-keys: 3.4.3
dev: true
- /doctrine@3.0.0:
- resolution: {integrity: sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=}
- engines: {node: '>=6.0.0'}
+ /@ungap/promise-all-settled@1.1.2:
+ resolution: {integrity: sha1-qlgEJxHW4ydd033Fl+XTHowpCkQ=}
+ dev: true
+
+ /@ungap/structured-clone@1.2.0:
+ resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+
+ /@uni/action-sheet@1.0.8:
+ resolution: {integrity: sha512-3L+ZHK6qYv/3w/ODGZugfbTYc8vT+lkxt/XAl5WRpiFCukjwP5yxRp+feE1SEHdprJXUlHBYTT/Tp0JfRIELJQ==}
dependencies:
- esutils: 2.0.3
+ '@uni/env': 1.1.1
dev: true
- /dom-serializer@0.2.2:
- resolution: {integrity: sha1-GvuB9TNxcXXUeGVd68XjMtn5u1E=}
+ /@uni/clipboard@1.0.9:
+ resolution: {integrity: sha512-NoqYayQCHB0KIFc2r8akf1S3UtSnBhk+Nc3fX+wFnpRx6qmHHzZSeBk+mTqKVOTfeE3OdcubQAAt/sWfWS/4mw==}
dependencies:
- domelementtype: 2.3.0
- entities: 2.2.0
+ '@uni/env': 1.1.1
dev: true
- /domelementtype@1.3.1:
- resolution: {integrity: sha1-0EjESzew0Qp/Kj1f7j9DM9eQSB8=}
+ /@uni/env@1.1.1:
+ resolution: {integrity: sha512-oQGRQg3cFVb6ByppV0WVue/BE98cw0xvAniX9L0wQtzU94RvZg9/GpkFIDwrlgcvzXlTgUPTTMG9B/riiiFQyQ==}
dev: true
- /domelementtype@2.3.0:
- resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+ /@uni/file@1.1.1:
+ resolution: {integrity: sha512-gbymGoyD02cWHGVGapxp0zl3VAEU/u4vpDSyfS1tSnIGFjwIbCGq+W+uTAnJYduDbdy4Xiuwzbf0b/4slY9bmQ==}
+ dependencies:
+ '@uni/env': 1.1.1
dev: true
- /domhandler@2.4.2:
- resolution: {integrity: sha1-iAUJfpM9ZehVRvcm1g9euItE+AM=}
+ /@uni/image@1.1.3:
+ resolution: {integrity: sha512-68RGzXMYAp8EUZ5jogdQd+KVqyVlKZwuncWmZ96aDqwHhd/J1MnAJuAOAEBL3jCNqXNsvXHLBr5yleg2gdf1yQ==}
dependencies:
- domelementtype: 1.3.1
+ '@uni/video': 1.0.8
dev: true
- /domutils@1.7.0:
- resolution: {integrity: sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo=}
+ /@uni/navigate@1.0.11:
+ resolution: {integrity: sha512-7xUVksKKcIMqsxpPBgYRRrkOIVy9bmWmgbinISnZaVobmqSr0oFWN9pHgeCOuvxN66jlVqPIEKHcWyD8IV1oEg==}
dependencies:
- dom-serializer: 0.2.2
- domelementtype: 1.3.1
+ '@uni/env': 1.1.1
dev: true
- /dot-prop@5.3.0:
- resolution: {integrity: sha1-kMzOcIzZzYLMTcjD3dmr3VWyDog=}
- engines: {node: '>=8'}
+ /@uni/page-scroll-to@1.0.0:
+ resolution: {integrity: sha512-fQTndD14OTezRzXAtsuhdrruO0lz0+lTXa/eSeekVqEkDq9L/OK+T9B6IJS3Ui4Xc1aEkWGSyGe0TaTOfKE9tQ==}
dependencies:
- is-obj: 2.0.0
+ '@uni/env': 1.1.1
dev: true
- /eastasianwidth@0.2.0:
- resolution: {integrity: sha1-aWzi7Aqg5uqTo5f/zySqeEDIJ8s=}
+ /@uni/vibrate@1.0.1:
+ resolution: {integrity: sha512-IocrIbBaZYjBHzvRIGSyN3K2He9Y7BS/VMEri2On9QITU3U2kampDiGGPyA/lQxVSZNemyK6/xtxWoxTjNh91w==}
+ dependencies:
+ '@uni/env': 1.1.1
dev: true
- /electron-to-chromium@1.4.566:
- resolution: {integrity: sha512-mv+fAy27uOmTVlUULy15U3DVJ+jg+8iyKH1bpwboCRhtDC69GKf1PPTZvEIhCyDr81RFqfxZJYrbgp933a1vtg==}
+ /@uni/video@1.0.8:
+ resolution: {integrity: sha512-Gzo+7Qsq5jmBxcW/B9EF0l77nneBeuHuCBUIVSetSTCQtjdxoF9LF/K3UZE2Z20Raq7/MLrtaDa2KqeLmwWu8A==}
+ dependencies:
+ '@uni/action-sheet': 1.0.8
dev: true
- /emoji-regex@8.0.0:
- resolution: {integrity: sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=}
+ /@webassemblyjs/ast@1.9.0:
+ resolution: {integrity: sha1-vYUGBLQEJFmlpBzX0zjL7Wle2WQ=}
+ dependencies:
+ '@webassemblyjs/helper-module-context': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/wast-parser': 1.9.0
dev: true
- /emoji-regex@9.2.2:
- resolution: {integrity: sha1-hAyIA7DYBH9P8M+WMXazLU7z7XI=}
+ /@webassemblyjs/floating-point-hex-parser@1.9.0:
+ resolution: {integrity: sha1-PD07Jxvd/ITesA9xNEQ4MR1S/7Q=}
dev: true
- /entities@1.1.2:
- resolution: {integrity: sha1-vfpzUplmTfr9NFKe1PhSKidf6lY=}
+ /@webassemblyjs/helper-api-error@1.9.0:
+ resolution: {integrity: sha1-ID9nbjM7lsnaLuqzzO8zxFkotqI=}
dev: true
- /entities@2.2.0:
- resolution: {integrity: sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=}
+ /@webassemblyjs/helper-buffer@1.9.0:
+ resolution: {integrity: sha1-oUQtJpxf6yP8vJ73WdrDVH8p3gA=}
dev: true
- /error-ex@1.3.2:
- resolution: {integrity: sha1-tKxAZIEH/c3PriQvQovqihTU8b8=}
+ /@webassemblyjs/helper-code-frame@1.9.0:
+ resolution: {integrity: sha1-ZH+Iks0gQ6gqwMjF51w28dkVnyc=}
dependencies:
- is-arrayish: 0.2.1
+ '@webassemblyjs/wast-printer': 1.9.0
dev: true
- /es-abstract@1.22.3:
- resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
- engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.0
- arraybuffer.prototype.slice: 1.0.2
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- es-set-tostringtag: 2.0.2
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.2
- get-symbol-description: 1.0.0
- globalthis: 1.0.3
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
- has-proto: 1.0.1
- has-symbols: 1.0.3
- hasown: 2.0.0
- internal-slot: 1.0.6
- is-array-buffer: 3.0.2
- is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-typed-array: 1.1.12
- is-weakref: 1.0.2
- object-inspect: 1.13.1
- object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.1
- safe-array-concat: 1.0.1
- safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.8
- string.prototype.trimend: 1.0.7
- string.prototype.trimstart: 1.0.7
- typed-array-buffer: 1.0.0
- typed-array-byte-length: 1.0.0
- typed-array-byte-offset: 1.0.0
- typed-array-length: 1.0.4
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.13
+ /@webassemblyjs/helper-fsm@1.9.0:
+ resolution: {integrity: sha1-wFJWtxJEIUZx9LCOwQitY7cO3bg=}
dev: true
- /es-iterator-helpers@1.0.15:
- resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==}
+ /@webassemblyjs/helper-module-context@1.9.0:
+ resolution: {integrity: sha1-JdiIS3aDmHGgimxvgGw5ee9xLwc=}
dependencies:
- asynciterator.prototype: 1.0.0
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- es-set-tostringtag: 2.0.2
- function-bind: 1.1.2
- get-intrinsic: 1.2.2
- globalthis: 1.0.3
- has-property-descriptors: 1.0.1
- has-proto: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.6
- iterator.prototype: 1.1.2
- safe-array-concat: 1.0.1
+ '@webassemblyjs/ast': 1.9.0
dev: true
- /es-set-tostringtag@2.0.2:
- resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
- engines: {node: '>= 0.4'}
+ /@webassemblyjs/helper-wasm-bytecode@1.9.0:
+ resolution: {integrity: sha1-T+2L6sm4wU+MWLcNEk1UndH+V5A=}
+ dev: true
+
+ /@webassemblyjs/helper-wasm-section@1.9.0:
+ resolution: {integrity: sha1-WkE41aYpK6GLBMWuSXF+QWeWU0Y=}
dependencies:
- get-intrinsic: 1.2.2
- has-tostringtag: 1.0.0
- hasown: 2.0.0
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+ dev: true
+
+ /@webassemblyjs/ieee754@1.9.0:
+ resolution: {integrity: sha1-Fceg+6roP7JhQ7us9tbfFwKtOeQ=}
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+ dev: true
+
+ /@webassemblyjs/leb128@1.9.0:
+ resolution: {integrity: sha1-8Zygt2ptxVYjoJz/p2noOPoeHJU=}
+ dependencies:
+ '@xtuc/long': 4.2.2
+ dev: true
+
+ /@webassemblyjs/utf8@1.9.0:
+ resolution: {integrity: sha1-BNM7Y2945qaBMifoJAL3Y3tiKas=}
+ dev: true
+
+ /@webassemblyjs/wasm-edit@1.9.0:
+ resolution: {integrity: sha1-P+bXnT8PkiGDqoYALELdJWz+6c8=}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/helper-wasm-section': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+ '@webassemblyjs/wasm-opt': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+ '@webassemblyjs/wast-printer': 1.9.0
+ dev: true
+
+ /@webassemblyjs/wasm-gen@1.9.0:
+ resolution: {integrity: sha1-ULxw7Gje2OJ2OwGhQYv0NJGnpJw=}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/ieee754': 1.9.0
+ '@webassemblyjs/leb128': 1.9.0
+ '@webassemblyjs/utf8': 1.9.0
+ dev: true
+
+ /@webassemblyjs/wasm-opt@1.9.0:
+ resolution: {integrity: sha1-IhEYHlsxMmRDzIES658LkChyGmE=}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-buffer': 1.9.0
+ '@webassemblyjs/wasm-gen': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+ dev: true
+
+ /@webassemblyjs/wasm-parser@1.9.0:
+ resolution: {integrity: sha1-nUjkSCbfSmWYKUqmyHRp1kL/9l4=}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-api-error': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode': 1.9.0
+ '@webassemblyjs/ieee754': 1.9.0
+ '@webassemblyjs/leb128': 1.9.0
+ '@webassemblyjs/utf8': 1.9.0
+ dev: true
+
+ /@webassemblyjs/wast-parser@1.9.0:
+ resolution: {integrity: sha1-MDERXXmsW9JhVWzsw/qQo+9FGRQ=}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/floating-point-hex-parser': 1.9.0
+ '@webassemblyjs/helper-api-error': 1.9.0
+ '@webassemblyjs/helper-code-frame': 1.9.0
+ '@webassemblyjs/helper-fsm': 1.9.0
+ '@xtuc/long': 4.2.2
+ dev: true
+
+ /@webassemblyjs/wast-printer@1.9.0:
+ resolution: {integrity: sha1-STXVTIX+9jewDOn1I3dFHQDUeJk=}
+ dependencies:
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/wast-parser': 1.9.0
+ '@xtuc/long': 4.2.2
+ dev: true
+
+ /@xtuc/ieee754@1.2.0:
+ resolution: {integrity: sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=}
+ dev: true
+
+ /@xtuc/long@4.2.2:
+ resolution: {integrity: sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=}
+ dev: true
+
+ /JSONStream@1.3.5:
+ resolution: {integrity: sha1-MgjB8I06TZkmGrZPkjArwV4RHKA=}
+ hasBin: true
+ dependencies:
+ jsonparse: 1.3.1
+ through: 2.3.8
+ dev: true
+
+ /abab@2.0.6:
+ resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
+ dev: true
+
+ /accepts@1.3.8:
+ resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-types: 2.1.35
+ negotiator: 0.6.3
+ dev: true
+
+ /acorn-globals@6.0.0:
+ resolution: {integrity: sha1-Rs3Tnw+P8IqHZhm1X1rIptx3C0U=}
+ dependencies:
+ acorn: 7.4.1
+ acorn-walk: 7.2.0
+ dev: true
+
+ /acorn-jsx@5.3.2(acorn@7.4.1):
+ resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: 7.4.1
+ dev: true
+
+ /acorn-jsx@5.3.2(acorn@8.10.0):
+ resolution: {integrity: sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ acorn: 8.10.0
+ dev: true
+
+ /acorn-walk@7.2.0:
+ resolution: {integrity: sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
+ /acorn-walk@8.2.0:
+ resolution: {integrity: sha1-dBIQ8uJCZFRQiFOi9E0KuDt/acE=}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
+ /acorn@6.4.2:
+ resolution: {integrity: sha1-NYZv1xBSjpLeEM8GAWSY5H454eY=}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: true
+
+ /acorn@7.4.1:
+ resolution: {integrity: sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: true
+
+ /acorn@8.10.0:
+ resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+ dev: true
+
+ /address@1.1.2:
+ resolution: {integrity: sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=}
+ engines: {node: '>= 0.12.0'}
+ dev: true
+
+ /address@1.2.2:
+ resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
+ engines: {node: '>= 10.0.0'}
+ dev: true
+
+ /after@0.8.2:
+ resolution: {integrity: sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=}
+ dev: true
+
+ /agent-base@6.0.2:
+ resolution: {integrity: sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c=}
+ engines: {node: '>= 6.0.0'}
+ dependencies:
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /aggregate-error@3.1.0:
+ resolution: {integrity: sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo=}
+ engines: {node: '>=8'}
+ dependencies:
+ clean-stack: 2.2.0
+ indent-string: 4.0.0
+ dev: true
+
+ /ajv-errors@1.0.1(ajv@6.12.6):
+ resolution: {integrity: sha1-81mGrOuRr63sQQL72FAUlQzvpk0=}
+ peerDependencies:
+ ajv: '>=5.0.0'
+ dependencies:
+ ajv: 6.12.6
+ dev: true
+
+ /ajv-keywords@3.5.2(ajv@6.12.6):
+ resolution: {integrity: sha1-MfKdpatuANHC0yms97WSlhTVAU0=}
+ peerDependencies:
+ ajv: ^6.9.1
+ dependencies:
+ ajv: 6.12.6
+ dev: true
+
+ /ajv@6.12.6:
+ resolution: {integrity: sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+ dev: true
+
+ /ajv@8.12.0:
+ resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+ dev: true
+
+ /align-text@0.1.4:
+ resolution: {integrity: sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ longest: 1.0.1
+ repeat-string: 1.6.1
+ dev: true
+
+ /alphanum-sort@1.0.2:
+ resolution: {integrity: sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=}
+ dev: true
+
+ /ansi-colors@3.2.4:
+ resolution: {integrity: sha1-46PaS/uubIapwoViXeEkojQCb78=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /ansi-colors@4.1.1:
+ resolution: {integrity: sha1-y7muJWv3UK8eqzRPIpqif+lLo0g=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /ansi-colors@4.1.3:
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /ansi-escapes@3.2.0:
+ resolution: {integrity: sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /ansi-escapes@4.3.2:
+ resolution: {integrity: sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=}
+ engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.21.3
+ dev: true
+
+ /ansi-escapes@5.0.0:
+ resolution: {integrity: sha1-tqDK8O7wxBrxkOmnSeDADsBLsqY=}
+ engines: {node: '>=12'}
+ dependencies:
+ type-fest: 1.4.0
+ dev: true
+
+ /ansi-html-community@0.0.8:
+ resolution: {integrity: sha1-afvE1sy+OD+XNpNK40w/gpDxv0E=}
+ engines: {'0': node >= 0.8.0}
+ hasBin: true
+ dev: true
+
+ /ansi-html@0.0.7:
+ resolution: {integrity: sha1-gTWEAhliqenm/QOflA0S9WynhZ4=}
+ engines: {'0': node >= 0.8.0}
+ hasBin: true
+ dev: true
+
+ /ansi-regex@2.1.1:
+ resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /ansi-regex@3.0.1:
+ resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /ansi-regex@4.1.1:
+ resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /ansi-regex@5.0.1:
+ resolution: {integrity: sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /ansi-regex@6.0.1:
+ resolution: {integrity: sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=}
+ engines: {node: '>=12'}
+ dev: true
+
+ /ansi-styles@2.2.1:
+ resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /ansi-styles@3.2.1:
+ resolution: {integrity: sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=}
+ engines: {node: '>=4'}
+ dependencies:
+ color-convert: 1.9.3
+ dev: true
+
+ /ansi-styles@4.3.0:
+ resolution: {integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=}
+ engines: {node: '>=8'}
+ dependencies:
+ color-convert: 2.0.1
+ dev: true
+
+ /ansi-styles@6.2.1:
+ resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /any-base@1.1.0:
+ resolution: {integrity: sha1-rhAaYrwIpZe0yatbcInUVmMFSf4=}
+ dev: true
+
+ /any@1.0.0:
+ resolution: {integrity: sha512-eHlqaTpbeFyxHAo2H8XI566tY/m+lvRUTsFwBNtWP08qJe7bf16Oj5ab2coiuY9yTMvzFgjpWbuqQIFqH+yi+w==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-own: 0.1.5
+ make-iterator: 0.1.1
+ dev: true
+
+ /anymatch@2.0.0:
+ resolution: {integrity: sha1-vLJLTzeTTZqnrBe0ra+J58du8us=}
+ dependencies:
+ micromatch: 3.1.10
+ normalize-path: 2.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /anymatch@2.0.0(supports-color@6.1.0):
+ resolution: {integrity: sha1-vLJLTzeTTZqnrBe0ra+J58du8us=}
+ dependencies:
+ micromatch: 3.1.10(supports-color@6.1.0)
+ normalize-path: 2.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /anymatch@3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
+ dev: true
+
+ /aproba@1.2.0:
+ resolution: {integrity: sha1-aALmJk79GMeQobDVF/DyYnvyyUo=}
+ dev: true
+
+ /are-we-there-yet@1.1.7:
+ resolution: {integrity: sha1-sVR0qTKtq0/4pQ2a36fk6SbyEUY=}
+ dependencies:
+ delegates: 1.0.0
+ readable-stream: 2.3.8
+ dev: true
+
+ /arg@4.1.3:
+ resolution: {integrity: sha1-Jp/HrVuOQstjyJbVZmAXJhwUQIk=}
+ dev: true
+
+ /argparse@1.0.10:
+ resolution: {integrity: sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=}
+ dependencies:
+ sprintf-js: 1.0.3
+ dev: true
+
+ /argparse@2.0.1:
+ resolution: {integrity: sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=}
+ dev: true
+
+ /aria-query@5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ dependencies:
+ dequal: 2.0.3
+ dev: true
+
+ /arr-diff@1.1.0:
+ resolution: {integrity: sha1-aHwydYFjWI/vfeezb6vklesaOZo=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-flatten: 1.1.0
+ array-slice: 0.2.3
+ dev: true
+
+ /arr-diff@4.0.0:
+ resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /arr-flatten@1.1.0:
+ resolution: {integrity: sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /arr-map@2.0.2:
+ resolution: {integrity: sha1-Onc0X/wc814qkYJWAfnljy4kysQ=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ make-iterator: 1.0.1
+ dev: true
+
+ /arr-union@3.1.0:
+ resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array-buffer-byte-length@1.0.0:
+ resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
+ dependencies:
+ call-bind: 1.0.5
+ is-array-buffer: 3.0.2
+ dev: true
+
+ /array-each@0.1.1:
+ resolution: {integrity: sha1-xdUrqCJfNtcoF4unrsQTrPrd0Pk=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array-flatten@1.1.1:
+ resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=}
+ dev: true
+
+ /array-flatten@2.1.2:
+ resolution: {integrity: sha1-JO+AoowaiTYX4hSbDG0NeIKTsJk=}
+ dev: true
+
+ /array-ify@1.0.0:
+ resolution: {integrity: sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=}
+ dev: true
+
+ /array-includes@3.1.7:
+ resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
+ is-string: 1.0.7
+ dev: true
+
+ /array-slice@0.2.3:
+ resolution: {integrity: sha1-3Tz7gO15c6dRF82sabC5nshhhvU=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array-union@1.0.2:
+ resolution: {integrity: sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-uniq: 1.0.3
+ dev: true
+
+ /array-union@2.1.0:
+ resolution: {integrity: sha1-t5hCCtvrHego2ErNii4j0+/oXo0=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /array-uniq@1.0.3:
+ resolution: {integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array-unique@0.2.1:
+ resolution: {integrity: sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array-unique@0.3.2:
+ resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /array.prototype.findlastindex@1.2.3:
+ resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ es-shim-unscopables: 1.0.2
+ get-intrinsic: 1.2.2
+ dev: true
+
+ /array.prototype.flat@1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ es-shim-unscopables: 1.0.2
+ dev: true
+
+ /array.prototype.flatmap@1.3.2:
+ resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ es-shim-unscopables: 1.0.2
+ dev: true
+
+ /array.prototype.reduce@1.0.6:
+ resolution: {integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ es-array-method-boxes-properly: 1.0.0
+ is-string: 1.0.7
+ dev: true
+
+ /array.prototype.tosorted@1.1.2:
+ resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ es-shim-unscopables: 1.0.2
+ get-intrinsic: 1.2.2
+ dev: true
+
+ /arraybuffer.prototype.slice@1.0.2:
+ resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
+ is-array-buffer: 3.0.2
+ is-shared-array-buffer: 1.0.2
+ dev: true
+
+ /arraybuffer.slice@0.0.7:
+ resolution: {integrity: sha1-O7xCdd1YTMGxCAm4nU6LY6aednU=}
+ dev: true
+
+ /arrify@1.0.1:
+ resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /asn1.js@5.4.1:
+ resolution: {integrity: sha1-EamAuE67kXgc41sP3C7ilON4Pwc=}
+ dependencies:
+ bn.js: 4.12.0
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ safer-buffer: 2.1.2
+ dev: true
+
+ /assert@1.5.1:
+ resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==}
+ dependencies:
+ object.assign: 4.1.4
+ util: 0.10.4
+ dev: true
+
+ /assign-symbols@1.0.0:
+ resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /ast-types-flow@0.0.7:
+ resolution: {integrity: sha1-9wtzXGvKGlycItmCw+Oef+ujva0=}
+ dev: true
+
+ /ast-types@0.13.4:
+ resolution: {integrity: sha1-7g13s0MmOWXsw/ti2hbnIisrZ4I=}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
+ /ast-types@0.14.2:
+ resolution: {integrity: sha1-YAuILfhYPjzU8t9fog+oN1nUvf0=}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
+ /astral-regex@2.0.0:
+ resolution: {integrity: sha1-SDFDxWeu7UeFdZwIZXhtx319LjE=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /async-each@1.0.6:
+ resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==}
+ dev: true
+
+ /async-limiter@1.0.1:
+ resolution: {integrity: sha1-3TeelPDbgxCwgpH51kwyCXZmF/0=}
+ dev: true
+
+ /async@2.6.4:
+ resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
+ dependencies:
+ lodash: 4.17.21
+ dev: true
+
+ /async@3.2.4:
+ resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
+ dev: true
+
+ /asynciterator.prototype@1.0.0:
+ resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==}
+ dependencies:
+ has-symbols: 1.0.3
+ dev: true
+
+ /asynckit@0.4.0:
+ resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=}
+ dev: true
+
+ /at-least-node@1.0.0:
+ resolution: {integrity: sha1-YCzUtG6EStTv/JKoARo8RuAjjcI=}
+ engines: {node: '>= 4.0.0'}
+ dev: true
+
+ /atob@2.1.2:
+ resolution: {integrity: sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k=}
+ engines: {node: '>= 4.5.0'}
+ hasBin: true
+ dev: true
+
+ /autoprefixer@9.8.8:
+ resolution: {integrity: sha1-/UvUWVOF+m8GWZ3nSaTV96R0lXo=}
+ hasBin: true
+ dependencies:
+ browserslist: 4.22.1
+ caniuse-lite: 1.0.30001554
+ normalize-range: 0.1.2
+ num2fraction: 1.2.2
+ picocolors: 0.2.1
+ postcss: 7.0.39
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /available-typed-arrays@1.0.5:
+ resolution: {integrity: sha1-kvlWFlAQadB9EO2y/DfT4cZRI7c=}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /axe-core@4.8.2:
+ resolution: {integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /axios@0.21.4:
+ resolution: {integrity: sha1-xnuQ3AVo5cHPKwuFjEO6KOLtpXU=}
+ dependencies:
+ follow-redirects: 1.15.3
+ transitivePeerDependencies:
+ - debug
+ dev: true
+
+ /axios@0.23.0:
+ resolution: {integrity: sha1-sPpdCUio0ddePVY1I4tsRiWwUUk=}
+ dependencies:
+ follow-redirects: 1.15.3
+ transitivePeerDependencies:
+ - debug
+ dev: true
+
+ /axios@0.24.0:
+ resolution: {integrity: sha1-gE5voeS5xSiFAd2d/1anoJQNINY=}
+ dependencies:
+ follow-redirects: 1.15.3
+ transitivePeerDependencies:
+ - debug
+ dev: true
+
+ /axobject-query@3.2.1:
+ resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
+ dependencies:
+ dequal: 2.0.3
+ dev: true
+
+ /babel-code-frame@6.26.0:
+ resolution: {integrity: sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=}
+ dependencies:
+ chalk: 1.1.3
+ esutils: 2.0.3
+ js-tokens: 3.0.2
+ dev: true
+
+ /babel-eslint@10.1.0(eslint@7.32.0):
+ resolution: {integrity: sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=}
+ engines: {node: '>=6'}
+ deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
+ peerDependencies:
+ eslint: '>= 4.12.1'
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@babel/parser': 7.23.0
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ eslint: 7.32.0
+ eslint-visitor-keys: 1.3.0
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-eslint@8.2.6:
+ resolution: {integrity: sha1-YnDQxzIFYoBnwPeuFpOp55es79k=}
+ engines: {node: '>=4'}
+ deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
+ dependencies:
+ '@babel/code-frame': 7.0.0-beta.44
+ '@babel/traverse': 7.0.0-beta.44
+ '@babel/types': 7.0.0-beta.44
+ babylon: 7.0.0-beta.44
+ eslint-scope: 3.7.1
+ eslint-visitor-keys: 1.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-helper-evaluate-path@0.3.0:
+ resolution: {integrity: sha1-JDlUXgturlt/SbeQrL69a5pz3yA=}
+ dev: true
+
+ /babel-helper-mark-eval-scopes@0.3.0:
+ resolution: {integrity: sha1-tHMTFP3XqJCRJxpSE7ThLSNuKeg=}
+ dev: true
+
+ /babel-helper-remove-or-void@0.3.0:
+ resolution: {integrity: sha1-9DyGFHyPzDlalSjLsx5/9J1+FuM=}
+ dev: true
+
+ /babel-jest@24.9.0(@babel/core@7.23.2):
+ resolution: {integrity: sha1-P8Mny4RnuJ0U17xw4xUQSng8zVQ=}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@jest/transform': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/babel__core': 7.20.3
+ babel-plugin-istanbul: 5.2.0
+ babel-preset-jest: 24.9.0(@babel/core@7.23.2)
+ chalk: 2.4.2
+ slash: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-jest@26.6.3(@babel/core@7.23.2):
+ resolution: {integrity: sha1-2H0lywA3V3oMifguV1XF0pPAEFY=}
+ engines: {node: '>= 10.14.2'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/babel__core': 7.20.3
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 26.6.2(@babel/core@7.23.2)
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-loader@8.3.0(@babel/core@7.23.2)(webpack@4.47.0):
+ resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
+ engines: {node: '>= 8.9'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+ dependencies:
+ '@babel/core': 7.23.2
+ find-cache-dir: 3.3.2
+ loader-utils: 2.0.4
+ make-dir: 3.1.0
+ schema-utils: 2.7.1
+ webpack: 4.47.0
+ dev: true
+
+ /babel-merge@3.0.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-eBOBtHnzt9xvnjpYNI5HmaPp/b2vMveE5XggzqHnQeHJ8mFIBrBv6WZEVIj5jJ2uwTItkqKo9gWzEEcBxEq0yw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.2
+ deepmerge: 2.2.1
+ object.omit: 3.0.0
+ dev: true
+
+ /babel-plugin-const-enum@1.2.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
+ '@babel/traverse': 7.23.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-plugin-danger-remove-unused-import@2.0.0:
+ resolution: {integrity: sha512-0K+VTyBdN6Ag+HN6kxySFQyTKiG6gZyD/+EOMifd2pDunlTLr86K87Cv/7bDEIFDWYM634ookoVv9HMLsY4uuA==}
+ dev: true
+
+ /babel-plugin-import@1.13.8:
+ resolution: {integrity: sha512-36babpjra5m3gca44V6tSTomeBlPA7cHUynrE2WiQIm3rEGD9xy28MKsx5IdO45EbnpJY7Jrgd00C6Dwt/l/2Q==}
+ dependencies:
+ '@babel/helper-module-imports': 7.22.15
+ dev: true
+
+ /babel-plugin-istanbul@5.2.0:
+ resolution: {integrity: sha1-30reg9iXqS3wacTZolzyZxKTyFQ=}
+ engines: {node: '>=6'}
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ find-up: 3.0.0
+ istanbul-lib-instrument: 3.3.0
+ test-exclude: 5.2.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-plugin-istanbul@6.1.1:
+ resolution: {integrity: sha1-+ojsWSMv2bTjbbvFQKjsmptH2nM=}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/helper-plugin-utils': 7.22.5
+ '@istanbuljs/load-nyc-config': 1.1.0
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-instrument: 5.2.1
+ test-exclude: 6.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-plugin-jest-hoist@24.9.0:
+ resolution: {integrity: sha1-T4NwketAfgFEfIhDy+xUbQAC11Y=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@types/babel__traverse': 7.20.3
+ dev: true
+
+ /babel-plugin-jest-hoist@26.6.2:
+ resolution: {integrity: sha1-gYW9AwNI0lTG192XQ1Xmoosh5i0=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@babel/template': 7.22.15
+ '@babel/types': 7.23.0
+ '@types/babel__core': 7.20.3
+ '@types/babel__traverse': 7.20.3
+ dev: true
+
+ /babel-plugin-macros@3.1.0:
+ resolution: {integrity: sha1-nvbcdN65NLTbNE3Jc+6FHRSMUME=}
+ engines: {node: '>=10', npm: '>=6'}
+ dependencies:
+ '@babel/runtime': 7.23.2
+ cosmiconfig: 7.1.0
+ resolve: 1.22.8
+ dev: true
+
+ /babel-plugin-minify-dead-code-elimination-while-loop-fixed@0.3.1:
+ resolution: {integrity: sha512-GRyCBsg9dnL/uy/4JW+r4C7tAeq/0Jdfu/PFQ5N6Frp9hA+hJEJR2fKscj1tPChfpfotWkYreR1zFfwcKYW/zA==}
+ dependencies:
+ babel-helper-evaluate-path: 0.3.0
+ babel-helper-mark-eval-scopes: 0.3.0
+ babel-helper-remove-or-void: 0.3.0
+ lodash.some: 4.6.0
+ dev: true
+
+ /babel-plugin-module-resolver@4.1.0:
+ resolution: {integrity: sha1-IqTzL3RBcn7B+/SWe4Y+Hj6fM+I=}
+ engines: {node: '>= 8.0.0'}
+ dependencies:
+ find-babel-config: 1.2.0
+ glob: 7.2.3
+ pkg-up: 3.1.0
+ reselect: 4.1.8
+ resolve: 1.22.8
+ dev: true
+
+ /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/compat-data': 7.23.2
+ '@babel/core': 7.23.2
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2):
+ resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ core-js-compat: 3.33.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2):
+ resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-plugin-transform-define@1.3.2:
+ resolution: {integrity: sha1-S9v+Nag5/CBuD2Cnqa47gtXhGAg=}
+ engines: {node: '>= 4.x.x'}
+ dependencies:
+ lodash: 4.17.21
+ traverse: 0.6.6
+ dev: true
+
+ /babel-plugin-transform-define@2.1.4:
+ resolution: {integrity: sha512-NN9xFmyNvr4swPZkRWy+RZZoV0yHhPk/WoxpuIvcVkTyYf0xy/JTQeZVbVGX8hyJ0/NKKuxnt4BZz9No7BziVA==}
+ engines: {node: '>= 8.x.x'}
+ dependencies:
+ lodash: 4.17.21
+ traverse: 0.6.6
+ dev: true
+
+ /babel-plugin-transform-jsx-class@0.1.3:
+ resolution: {integrity: sha512-Udi3d5qzwEyteqchxKoV/JfgktZZ8O3SLlADO936Os8LXolkuhl3joq71KiU0yMip8wz7+3zBKU+7otK1iZCLw==}
+ dev: true
+
+ /babel-plugin-transform-jsx-condition@0.1.3:
+ resolution: {integrity: sha512-WfN3XpoL53z/k1YAXbLCEQ3qa7YxQd2Wc00eoe4Hfh9JFzSLHhU7lKGFdDbwEYJzM+YI+pDe0hXDqD2b784pXg==}
+ dev: true
+
+ /babel-plugin-transform-jsx-fragment@0.1.5:
+ resolution: {integrity: sha512-s12RL9XMM4Z3xgwaq3dSSyJhBmv2MZmFVlhdIc9L5qEcS/on4LkLgIcVU8S8dZB44wpBLoqU0k8LkvDvvIZVuA==}
+ dev: true
+
+ /babel-plugin-transform-jsx-list@0.1.2:
+ resolution: {integrity: sha512-6ajrUOorIkdKwHWAeN8ZUp67yaFl0PYyHKUGY31Pw/ZtF0EIygfD8oxjcbFp0rZpTcVEYTMmh+s1xc6cnKy79g==}
+ dev: true
+
+ /babel-plugin-transform-jsx-memo@0.1.4:
+ resolution: {integrity: sha512-v9L9oFFbPjaVytLhxsmuFLm3USIoTeZQHz4xid2qnT87/C5cCbE8GtE26xbPXTc2LBj1roSDIO3hgR+2JAv1vA==}
+ dev: true
+
+ /babel-plugin-transform-jsx-slot@0.1.2:
+ resolution: {integrity: sha512-ske7KaYo4w4p2w1q7C3653pNje765P24vLF59qmXlgvlPYuFVCTaGS+PYEyb5xIDRDhgiSO2KtDdYK6f6ONxkQ==}
+ dependencies:
+ '@babel/types': 7.23.0
+ dev: true
+
+ /babel-plugin-transform-jsx-stylesheet@0.6.11:
+ resolution: {integrity: sha512-84uKOb49zXTdajni+dsDqDyxDxOi3DCyaExFi4qR9Nju3lmHuReQP9CTFmyJgGsbsuT4JiQ5J0N3pBhXql9FdA==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ camelcase: 3.0.0
+ dev: true
+
+ /babel-plugin-transform-jsx-stylesheet@1.0.6:
+ resolution: {integrity: sha512-kRtGnLohBzuaTbBFfBPUgX1yhiXs3+K+qBFczSf1fa6cJS2YRwwvMEt894jnF4ihcqz1DJRQ5EhHM9c5+2QsIA==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ camelcase: 3.0.0
+ dev: true
+
+ /babel-plugin-transform-jsx-to-html@0.1.0:
+ resolution: {integrity: sha512-dsN137oVzmwn/Z10uTSBgonelg+LiUadKEiPNbIjAXHFqUf6x0mGtgZPAzHgphqn7DNwiKs5WYUtJIsrnodcvA==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ '@babel/types': 7.23.0
+ esutils: 2.0.3
+ dev: true
+
+ /babel-plugin-transform-jsx-to-html@0.2.1:
+ resolution: {integrity: sha512-Orh3H9QnjoM9vuKNkcNinV7P27ystACYTwXGbv3ljNlN3ygA7teyWhBDmbJIb6ymU8gC0zAKCvJQFHsZZ12upw==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ '@babel/types': 7.23.0
+ esutils: 2.0.3
+ dev: true
+
+ /babel-plugin-transform-react-remove-prop-types@0.4.24:
+ resolution: {integrity: sha1-8u2vm0xqX75cHWeL+1MQeMFVXzo=}
+ dev: true
+
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2):
+ resolution: {integrity: sha1-tDmSObibKgEfndvj5PQB/EDP9zs=}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
+ dev: true
+
+ /babel-preset-jest@24.9.0(@babel/core@7.23.2):
+ resolution: {integrity: sha1-GStSHiIX+x0fZ89z9wwzZlCtPNw=}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ babel-plugin-jest-hoist: 24.9.0
+ dev: true
+
+ /babel-preset-jest@26.6.2(@babel/core@7.23.2):
+ resolution: {integrity: sha1-dHhysRcd8DIlJCZYaIHWLTF5j+4=}
+ engines: {node: '>= 10.14.2'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.2
+ babel-plugin-jest-hoist: 26.6.2
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
+ dev: true
+
+ /babel-preset-react-app@10.0.1:
+ resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-decorators': 7.23.2(@babel/core@7.23.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2)
+ '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
+ '@babel/preset-react': 7.22.15(@babel/core@7.23.2)
+ '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2)
+ '@babel/runtime': 7.23.2
+ babel-plugin-macros: 3.1.0
+ babel-plugin-transform-react-remove-prop-types: 0.4.24
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /babel-runtime-jsx-plus@0.1.5:
+ resolution: {integrity: sha512-5qjZDfUzZGxHgX8o0tkS9o0HbyBvnUuaAtqHC9IN5CgjWFGJBg6a0Xp31wiG7btiHV0dP5t1t8cthlTCYwtnig==}
+ dev: true
+
+ /babel-runtime-jsx-style-transform@1.0.2:
+ resolution: {integrity: sha512-lzOjpj2fAP7MK99WGlFvxOc596rzPzhxf5qCYI/qYPFJgOj6wMzBbJNrKFNtTRbWFi5En5d/WZU83N5c7zOhkQ==}
+ dependencies:
+ mocha: 8.4.0
+ dev: true
+
+ /babel-runtime@6.26.0:
+ resolution: {integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=}
+ dependencies:
+ core-js: 2.6.12
+ regenerator-runtime: 0.11.1
+ dev: true
+
+ /babylon@7.0.0-beta.44:
+ resolution: {integrity: sha1-iRWeFebjDFCW4i1zjYwK+KDoyh0=}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
+ dev: true
+
+ /backo2@1.0.2:
+ resolution: {integrity: sha1-MasayLEpNjRj41s+u2n038+6eUc=}
+ dev: true
+
+ /bail@1.0.5:
+ resolution: {integrity: sha1-tvoTNASjksvB+MS/Y/WVM1Hnp3Y=}
+ dev: true
+
+ /bail@2.0.2:
+ resolution: {integrity: sha1-0m9c2P5db4MqMVF7n3w1YEC6bV0=}
+
+ /balanced-match@1.0.2:
+ resolution: {integrity: sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=}
+ dev: true
+
+ /balanced-match@2.0.0:
+ resolution: {integrity: sha1-3HD5INeNuLhYU1eVhnv0j4IGM9k=}
+ dev: true
+
+ /base64-arraybuffer@0.1.4:
+ resolution: {integrity: sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=}
+ engines: {node: '>= 0.6.0'}
+ dev: true
+
+ /base64-js@1.5.1:
+ resolution: {integrity: sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=}
+ dev: true
+
+ /base@0.11.2:
+ resolution: {integrity: sha1-e95c7RRbbVUakNuH+DxVi060io8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ cache-base: 1.0.1
+ class-utils: 0.3.6
+ component-emitter: 1.3.0
+ define-property: 1.0.0
+ isobject: 3.0.1
+ mixin-deep: 1.3.2
+ pascalcase: 0.1.1
+ dev: true
+
+ /batch@0.6.1:
+ resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
+ dev: true
+
+ /big-integer@1.6.51:
+ resolution: {integrity: sha1-DfkqXZiAVg0/8tX9ICRciJ0TBoY=}
+ engines: {node: '>=0.6'}
+ dev: true
+
+ /big.js@3.2.0:
+ resolution: {integrity: sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4=}
+ dev: true
+
+ /big.js@5.2.2:
+ resolution: {integrity: sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=}
+ dev: true
+
+ /big.js@6.2.1:
+ resolution: {integrity: sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ==}
+ dev: true
+
+ /binary-extensions@1.13.1:
+ resolution: {integrity: sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /binary-extensions@2.2.0:
+ resolution: {integrity: sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /bindings@1.5.0:
+ resolution: {integrity: sha1-EDU8npRTNLwFEabZCzj7x8nFBN8=}
+ requiresBuild: true
+ dependencies:
+ file-uri-to-path: 1.0.0
+ dev: true
+ optional: true
+
+ /bl@4.1.0:
+ resolution: {integrity: sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo=}
+ dependencies:
+ buffer: 5.7.1
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ dev: true
+
+ /blob@0.0.5:
+ resolution: {integrity: sha1-1oDu7yX4zZGtUz9bAe7UjmTK9oM=}
+ dev: true
+
+ /bluebird@3.7.2:
+ resolution: {integrity: sha1-nyKcFb4nJFT/qXOs4NvueaGww28=}
+ dev: true
+
+ /bn.js@4.12.0:
+ resolution: {integrity: sha1-d1s/J477uXGO7HNh9IP7Nvu/6og=}
+ dev: true
+
+ /bn.js@5.2.1:
+ resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
+ dev: true
+
+ /body-parser@1.20.1(supports-color@6.1.0):
+ resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 2.6.9(supports-color@6.1.0)
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ on-finished: 2.4.1
+ qs: 6.11.0
+ raw-body: 2.5.1
+ type-is: 1.6.18
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /bonjour@3.5.0:
+ resolution: {integrity: sha1-jokKGD2O6aI5OzhExpGkK897yfU=}
+ dependencies:
+ array-flatten: 2.1.2
+ deep-equal: 1.1.1
+ dns-equal: 1.0.0
+ dns-txt: 2.0.2
+ multicast-dns: 6.2.3
+ multicast-dns-service-types: 1.1.0
+ dev: true
+
+ /boolbase@1.0.0:
+ resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=}
+ dev: true
+
+ /bplist-parser@0.2.0:
+ resolution: {integrity: sha1-Q6nRg+W/nVRSAM6sPnEveeu+jQ4=}
+ engines: {node: '>= 5.10.0'}
+ dependencies:
+ big-integer: 1.6.51
+ dev: true
+
+ /brace-expansion@1.1.11:
+ resolution: {integrity: sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=}
+ dependencies:
+ balanced-match: 1.0.2
+ concat-map: 0.0.1
+ dev: true
+
+ /brace-expansion@2.0.1:
+ resolution: {integrity: sha1-HtxFng8MVISG7Pn8mfIiE2S5oK4=}
+ dependencies:
+ balanced-match: 1.0.2
+ dev: true
+
+ /braces@2.3.2:
+ resolution: {integrity: sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.4
+ snapdragon: 0.8.2
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /braces@2.3.2(supports-color@6.1.0):
+ resolution: {integrity: sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-flatten: 1.1.0
+ array-unique: 0.3.2
+ extend-shallow: 2.0.1
+ fill-range: 4.0.0
+ isobject: 3.0.1
+ repeat-element: 1.1.4
+ snapdragon: 0.8.2(supports-color@6.1.0)
+ snapdragon-node: 2.1.1
+ split-string: 3.1.0
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /braces@3.0.2:
+ resolution: {integrity: sha1-NFThpGLujVmeI23zNs2epPiv4Qc=}
+ engines: {node: '>=8'}
+ dependencies:
+ fill-range: 7.0.1
+ dev: true
+
+ /brorand@1.1.0:
+ resolution: {integrity: sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=}
+ dev: true
+
+ /browser-process-hrtime@1.0.0:
+ resolution: {integrity: sha1-PJtLfXgsgSHlbxAQbYTA0P/JRiY=}
+ dev: true
+
+ /browser-stdout@1.3.1:
+ resolution: {integrity: sha1-uqVZ7hTO1zRSIputcyZGfGH6vWA=}
+ dev: true
+
+ /browserify-aes@1.2.0:
+ resolution: {integrity: sha1-Mmc0ZC9APavDADIJhTu3CtQo70g=}
+ dependencies:
+ buffer-xor: 1.0.3
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ evp_bytestokey: 1.0.3
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+
+ /browserify-cipher@1.0.1:
+ resolution: {integrity: sha1-jWR0wbhwv9q807z8wZNKEOlPFfA=}
+ dependencies:
+ browserify-aes: 1.2.0
+ browserify-des: 1.0.2
+ evp_bytestokey: 1.0.3
+ dev: true
+
+ /browserify-des@1.0.2:
+ resolution: {integrity: sha1-OvTx9Zg5QDVy8cZiBDdfen9wPpw=}
+ dependencies:
+ cipher-base: 1.0.4
+ des.js: 1.1.0
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+
+ /browserify-rsa@4.1.0:
+ resolution: {integrity: sha1-sv0Gtbda4pf3zi3GUfkY9b4VjI0=}
+ dependencies:
+ bn.js: 5.2.1
+ randombytes: 2.1.0
+ dev: true
+
+ /browserify-sign@4.2.2:
+ resolution: {integrity: sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==}
+ engines: {node: '>= 4'}
+ dependencies:
+ bn.js: 5.2.1
+ browserify-rsa: 4.1.0
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ elliptic: 6.5.4
+ inherits: 2.0.4
+ parse-asn1: 5.1.6
+ readable-stream: 3.6.2
+ safe-buffer: 5.2.1
+ dev: true
+
+ /browserify-zlib@0.2.0:
+ resolution: {integrity: sha1-KGlFnZqjviRf6P4sofRuLn9U1z8=}
+ dependencies:
+ pako: 1.0.11
+ dev: true
+
+ /browserslist@4.10.0:
+ resolution: {integrity: sha1-8XlzeRPq8NK5jkkmrBymoVy8xqk=}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001554
+ electron-to-chromium: 1.4.566
+ node-releases: 1.1.77
+ pkg-up: 3.1.0
+ dev: true
+
+ /browserslist@4.22.1:
+ resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001554
+ electron-to-chromium: 1.4.566
+ node-releases: 2.0.13
+ update-browserslist-db: 1.0.13(browserslist@4.22.1)
+ dev: true
+
+ /browserslist@4.7.0:
+ resolution: {integrity: sha1-nuiSJf/AfbA0CfL+5STcgidFihc=}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001554
+ electron-to-chromium: 1.4.566
+ node-releases: 1.1.77
+ dev: true
+
+ /bser@2.1.1:
+ resolution: {integrity: sha1-5nh9og7OnQeZhTPP2d5vXDj0vAU=}
+ dependencies:
+ node-int64: 0.4.0
+ dev: true
+
+ /buffer-from@1.1.2:
+ resolution: {integrity: sha1-KxRqb9cugLT1XSVfNe1Zo6mkG9U=}
+ dev: true
+
+ /buffer-indexof@1.1.1:
+ resolution: {integrity: sha1-Uvq8xqYG0aADAoAmSO9o9jnaJow=}
+ dev: true
+
+ /buffer-xor@1.0.3:
+ resolution: {integrity: sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=}
+ dev: true
+
+ /buffer@4.9.2:
+ resolution: {integrity: sha1-Iw6tNEACmIZEhBqwJEr4xEu+Pvg=}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+ isarray: 1.0.0
+ dev: true
+
+ /buffer@5.7.1:
+ resolution: {integrity: sha1-umLnwTEzBTWCGXFghRqPZI6Z7tA=}
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+ dev: true
+
+ /build-plugin-component@1.12.1(@types/react@16.14.50)(eslint@7.32.0)(postcss@7.0.39)(rax@1.2.3)(react@16.14.0)(sass@1.69.5):
+ resolution: {integrity: sha512-f4YrCiCjSsVcGH53cavAXGLgIEnYUNhgW2g7yygimAZNg9576q/v9aLDtxAshcP+4tskcvlsbRNpMJw/lWaDNQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.2)
+ '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2)
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ babel-plugin-import: 1.13.8
+ babel-plugin-module-resolver: 4.1.0
+ babel-plugin-transform-define: 2.1.4
+ build-scripts-config: 3.0.3(@babel/core@7.23.2)(webpack@4.47.0)
+ camelcase: 6.3.0
+ case-sensitive-paths-webpack-plugin: 2.4.0
+ chalk: 4.1.2
+ chokidar: 3.5.3
+ console-clear: 1.1.1
+ core-js: 3.33.1
+ error-stack-tracey: 0.1.5
+ fs-extra: 8.1.0
+ handlebars: 4.7.8
+ handlebars-loader: 1.7.3(handlebars@4.7.8)
+ html-webpack-plugin: 4.5.2(webpack@4.47.0)
+ ice-npm-utils: 3.0.3
+ image-source-loader: 0.6.5
+ ip: 1.1.8
+ js-yaml: 4.1.0
+ json-loader: 0.5.7
+ jsx2mp-runtime: 0.4.25
+ loader-utils: 1.4.2
+ marked: 2.1.3
+ miniapp-builder-shared: 0.2.12
+ miniapp-compile-config: 0.2.5(@babel/core@7.23.2)(typescript@4.9.5)(webpack@4.47.0)
+ optimize-css-assets-webpack-plugin: 5.0.8(webpack@4.47.0)
+ postcss-plugin-rpx2vw: 0.0.2
+ postcss-preset-env: 6.7.2
+ prismjs: 1.29.0
+ qrcode-terminal: 0.12.0
+ rax-babel-config: 0.1.2
+ rax-compile-config: 0.2.16(@babel/core@7.23.2)
+ rax-jest-config: 0.0.4(@babel/core@7.23.2)(postcss@7.0.39)
+ rax-server-renderer: 1.4.1(rax@1.2.3)
+ react-dev-utils: 10.2.1(eslint@7.32.0)(typescript@4.9.5)(webpack@4.47.0)
+ react-docgen: 5.4.3
+ react-docgen-typescript: 2.2.2(typescript@4.9.5)
+ sass-loader: 10.4.1(sass@1.69.5)(webpack@4.47.0)
+ style-loader: 1.3.0(webpack@4.47.0)
+ template-component-demo: 2.0.5(@types/react@16.14.50)(react@16.14.0)
+ terser-webpack-plugin: 4.2.3(webpack@4.47.0)
+ time-fix-plugin: 2.0.7(webpack@4.47.0)
+ typescript: 4.9.5
+ url-join: 4.0.1
+ user-home: 2.0.0
+ utils: 0.3.1
+ webpack: 4.47.0
+ webpack-chain: 6.5.1
+ webpack-dev-server: 3.11.3(webpack@4.47.0)
+ webpack-node-externals: 2.5.2
+ webpackbar: 5.0.2(webpack@4.47.0)
+ transitivePeerDependencies:
+ - '@types/react'
+ - bluebird
+ - bufferutil
+ - debug
+ - eslint
+ - fibers
+ - node-sass
+ - postcss
+ - rax
+ - react
+ - sass
+ - supports-color
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ - webpack-command
+ dev: true
+
+ /build-plugin-fusion@0.1.23(@babel/core@7.23.2)(sass@1.69.5)(vite@4.5.0)(webpack@4.47.0):
+ resolution: {integrity: sha512-7m8WAXuU37ZrG/OF5EUCpG3AYsBgt2nKDaagbwKjg5KLQjRI2i0qzb01KJ1SyO2uo1byWJBiHR7KyJpJwBgmpQ==}
+ peerDependencies:
+ sass: ^1.0.0
+ webpack: ^4.0.0
+ dependencies:
+ '@builder/app-helpers': 2.5.4(@babel/core@7.23.2)
+ babel-plugin-import: 1.13.8
+ babel-plugin-module-resolver: 4.1.0
+ find-root: 1.1.0
+ ice-skin-loader: 0.3.2
+ lodash: 4.17.21
+ postcss: 7.0.39
+ postcss-plugin-rpx2vw: 0.0.2
+ resolve-sass-import: 0.1.1
+ sass: 1.69.5
+ semver: 6.3.1
+ vite-plugin-style-import: 1.1.1(vite@4.5.0)
+ webpack: 4.47.0
+ webpack-plugin-import: 0.2.9
+ webpack-sources: 2.3.1
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ - vite
+ dev: true
+
+ /build-plugin-moment-locales@0.1.3:
+ resolution: {integrity: sha512-HJjz88TnlVg+u68yij6zHX04n/2Gcw6Ae43SaPZa3+cIgbfbtykLxBzK3WE87oh5RRerm7f73ovNBSnSDigr7A==}
+ dependencies:
+ '@rollup/pluginutils': 4.2.1
+ magic-string: 0.25.9
+ dev: true
+
+ /build-scripts-config@3.0.3(@babel/core@7.23.2)(webpack@4.47.0):
+ resolution: {integrity: sha512-0H4G7h9zBdx99e5r+cbxLxHqOGCcYz5rJvLX/IXKnKBVmxqoJcpzdkiRg682KnILq8w7qdh6mBQIJazgq0kjzg==}
+ peerDependencies:
+ webpack: ^4.41.1
+ dependencies:
+ '@builder/babel-preset-ice': 1.0.2(@babel/core@7.23.2)
+ babel-jest: 24.9.0(@babel/core@7.23.2)
+ babel-loader: 8.3.0(@babel/core@7.23.2)(webpack@4.47.0)
+ camelcase: 5.3.1
+ case-sensitive-paths-webpack-plugin: 2.4.0
+ core-js: 3.33.1
+ css-loader: 3.6.0(webpack@4.47.0)
+ file-loader: 5.1.0(webpack@4.47.0)
+ identity-obj-proxy: 3.0.0
+ less: 4.2.0
+ less-loader: 7.3.0(less@4.2.0)(webpack@4.47.0)
+ loader-utils: 1.4.2
+ lodash.clonedeep: 4.5.0
+ mini-css-extract-plugin: 1.6.2(webpack@4.47.0)
+ optimize-css-assets-webpack-plugin: 5.0.8(webpack@4.47.0)
+ postcss-loader: 3.0.0
+ postcss-preset-env: 6.7.2
+ postcss-safe-parser: 4.0.2
+ regenerator-runtime: 0.13.11
+ sass: 1.32.13
+ sass-loader: 10.4.1(sass@1.32.13)(webpack@4.47.0)
+ terser-webpack-plugin: 2.3.8(webpack@4.47.0)
+ time-fix-plugin: 2.0.7(webpack@4.47.0)
+ ts-loader: 6.2.2(typescript@4.9.5)
+ typescript: 4.9.5
+ url-loader: 2.3.0(file-loader@5.1.0)(webpack@4.47.0)
+ webpack: 4.47.0
+ webpack-chain: 6.5.1
+ webpack-filter-warnings-plugin: 1.2.1(webpack@4.47.0)
+ webpack-simple-progress-plugin: 0.0.4(webpack@4.47.0)
+ transitivePeerDependencies:
+ - '@babel/core'
+ - bluebird
+ - fibers
+ - node-sass
+ - supports-color
+ dev: true
+
+ /builtin-status-codes@3.0.0:
+ resolution: {integrity: sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=}
+ dev: true
+
+ /bundle-name@3.0.0:
+ resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
+ engines: {node: '>=12'}
+ dependencies:
+ run-applescript: 5.0.0
+ dev: true
+
+ /bytes@3.0.0:
+ resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /bytes@3.1.2:
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /c8@7.14.0:
+ resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==}
+ engines: {node: '>=10.12.0'}
+ hasBin: true
+ dependencies:
+ '@bcoe/v8-coverage': 0.2.3
+ '@istanbuljs/schema': 0.1.3
+ find-up: 5.0.0
+ foreground-child: 2.0.0
+ istanbul-lib-coverage: 3.2.0
+ istanbul-lib-report: 3.0.1
+ istanbul-reports: 3.1.6
+ rimraf: 3.0.2
+ test-exclude: 6.0.0
+ v8-to-istanbul: 9.1.3
+ yargs: 16.2.0
+ yargs-parser: 20.2.9
+ dev: true
+
+ /cacache@12.0.4:
+ resolution: {integrity: sha1-ZovL0QWutfHZL+JVcOyVJcj6pAw=}
+ dependencies:
+ bluebird: 3.7.2
+ chownr: 1.1.4
+ figgy-pudding: 3.5.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ mississippi: 3.0.0
+ mkdirp: 0.5.6
+ move-concurrently: 1.0.1
+ promise-inflight: 1.0.1(bluebird@3.7.2)
+ rimraf: 2.7.1
+ ssri: 6.0.2
+ unique-filename: 1.1.1
+ y18n: 4.0.3
+ dev: true
+
+ /cacache@13.0.1:
+ resolution: {integrity: sha1-qAAMIWlwiQgvhSh6GuxuOCAkpxw=}
+ engines: {node: '>= 8'}
+ dependencies:
+ chownr: 1.1.4
+ figgy-pudding: 3.5.2
+ fs-minipass: 2.1.0
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ infer-owner: 1.0.4
+ lru-cache: 5.1.1
+ minipass: 3.3.6
+ minipass-collect: 1.0.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ mkdirp: 0.5.6
+ move-concurrently: 1.0.1
+ p-map: 3.0.0
+ promise-inflight: 1.0.1
+ rimraf: 2.7.1
+ ssri: 7.1.1
+ unique-filename: 1.1.1
+ transitivePeerDependencies:
+ - bluebird
+ dev: true
+
+ /cacache@15.3.0:
+ resolution: {integrity: sha1-3IU4D7L1Vv492kxxm/oOyHWn8es=}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@npmcli/fs': 1.1.1
+ '@npmcli/move-file': 1.1.2
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ glob: 7.2.3
+ infer-owner: 1.0.4
+ lru-cache: 6.0.0
+ minipass: 3.3.6
+ minipass-collect: 1.0.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ mkdirp: 1.0.4
+ p-map: 4.0.0
+ promise-inflight: 1.0.1
+ rimraf: 3.0.2
+ ssri: 8.0.1
+ tar: 6.2.0
+ unique-filename: 1.1.1
+ transitivePeerDependencies:
+ - bluebird
+ dev: true
+
+ /cache-base@1.0.1:
+ resolution: {integrity: sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ collection-visit: 1.0.0
+ component-emitter: 1.3.0
+ get-value: 2.0.6
+ has-value: 1.0.0
+ isobject: 3.0.1
+ set-value: 2.0.1
+ to-object-path: 0.3.0
+ union-value: 1.0.1
+ unset-value: 1.0.0
+ dev: true
+
+ /call-bind@1.0.5:
+ resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
+ dependencies:
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.2
+ set-function-length: 1.1.1
+ dev: true
+
+ /call-me-maybe@1.0.2:
+ resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
+ dev: true
+
+ /caller-callsite@2.0.0:
+ resolution: {integrity: sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ callsites: 2.0.0
+ dev: true
+
+ /caller-path@2.0.0:
+ resolution: {integrity: sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-callsite: 2.0.0
+ dev: true
+
+ /callsites@2.0.0:
+ resolution: {integrity: sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /callsites@3.1.0:
+ resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /camel-case@3.0.0:
+ resolution: {integrity: sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=}
+ dependencies:
+ no-case: 2.3.2
+ upper-case: 1.1.3
+ dev: true
+
+ /camel-case@4.1.2:
+ resolution: {integrity: sha1-lygHKpVPgFIoIlpt7qazhGHhvVo=}
+ dependencies:
+ pascal-case: 3.1.2
+ tslib: 2.6.2
+ dev: true
+
+ /camelcase-keys@6.2.2:
+ resolution: {integrity: sha1-XnVda6UaoiPsfT1S8ld4IQ+dw8A=}
+ engines: {node: '>=8'}
+ dependencies:
+ camelcase: 5.3.1
+ map-obj: 4.3.0
+ quick-lru: 4.0.1
+ dev: true
+
+ /camelcase@3.0.0:
+ resolution: {integrity: sha1-MvxLn82vhF/N9+c7uXysImHwqwo=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /camelcase@5.3.1:
+ resolution: {integrity: sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /camelcase@6.3.0:
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /caniuse-api@3.0.0:
+ resolution: {integrity: sha1-Xk2Q4idJYdRikZl99Znj7QCO5MA=}
+ dependencies:
+ browserslist: 4.22.1
+ caniuse-lite: 1.0.30001554
+ lodash.memoize: 4.1.2
+ lodash.uniq: 4.5.0
+ dev: true
+
+ /caniuse-lite@1.0.30001554:
+ resolution: {integrity: sha512-A2E3U//MBwbJVzebddm1YfNp7Nud5Ip+IPn4BozBmn4KqVX7AvluoIDFWjsv5OkGnKUXQVmMSoMKLa3ScCblcQ==}
+ dev: true
+
+ /capital-case@1.0.4:
+ resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.6.2
+ upper-case-first: 2.0.2
+ dev: true
+
+ /capture-exit@2.0.0:
+ resolution: {integrity: sha1-+5U7+uvreB9iiYI52rtCbQilCaQ=}
+ engines: {node: 6.* || 8.* || >= 10.*}
+ dependencies:
+ rsvp: 4.8.5
+ dev: true
+
+ /case-sensitive-paths-webpack-plugin@2.4.0:
+ resolution: {integrity: sha1-22QGbGQi7tLgjMFLmGykN5bbxtQ=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /ccount@2.0.1:
+ resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
+ dev: false
+
+ /center-align@0.1.3:
+ resolution: {integrity: sha1-qg0yYptu6XIgBBHL1EYckHvCt60=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ align-text: 0.1.4
+ lazy-cache: 1.0.4
+ dev: true
+
+ /chalk@1.1.3:
+ resolution: {integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-styles: 2.2.1
+ escape-string-regexp: 1.0.5
+ has-ansi: 2.0.0
+ strip-ansi: 3.0.1
+ supports-color: 2.0.0
+ dev: true
+
+ /chalk@2.4.2:
+ resolution: {integrity: sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+ dev: true
+
+ /chalk@4.1.0:
+ resolution: {integrity: sha1-ThSHCmGNni7dl92DRf2dncMVZGo=}
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+ dev: true
+
+ /chalk@4.1.2:
+ resolution: {integrity: sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=}
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+ dev: true
+
+ /chalk@5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ dev: true
+
+ /change-case@4.1.2:
+ resolution: {integrity: sha1-/t/F8TYEXiOYwEEO5EH5VwRkHhI=}
+ dependencies:
+ camel-case: 4.1.2
+ capital-case: 1.0.4
+ constant-case: 3.0.4
+ dot-case: 3.0.4
+ header-case: 2.0.4
+ no-case: 3.0.4
+ param-case: 3.0.4
+ pascal-case: 3.1.2
+ path-case: 3.0.4
+ sentence-case: 3.0.4
+ snake-case: 3.0.4
+ tslib: 2.6.2
+ dev: true
+
+ /char-regex@1.0.2:
+ resolution: {integrity: sha1-10Q1giYhf5ge1Y9Hmx1rzClUXc8=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /character-entities-legacy@1.1.4:
+ resolution: {integrity: sha1-lLwYRdznClu50uzHSHJWYSk9j8E=}
+ dev: true
+
+ /character-entities@1.2.4:
+ resolution: {integrity: sha1-4Sw5Obfq9OWxXnrUxeKOHUjFsWs=}
+ dev: true
+
+ /character-entities@2.0.2:
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
+
+ /character-reference-invalid@1.1.4:
+ resolution: {integrity: sha1-CDMpzaDq4nKrPbvzfpo4LBOvFWA=}
+ dev: true
+
+ /chardet@0.7.0:
+ resolution: {integrity: sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=}
+ dev: true
+
+ /charenc@0.0.2:
+ resolution: {integrity: sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=}
+ dev: true
+
+ /chokidar@2.1.8:
+ resolution: {integrity: sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc=}
+ deprecated: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
+ dependencies:
+ anymatch: 2.0.0
+ async-each: 1.0.6
+ braces: 2.3.2
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1
+ upath: 1.2.0
+ optionalDependencies:
+ fsevents: 1.2.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /chokidar@2.1.8(supports-color@6.1.0):
+ resolution: {integrity: sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc=}
+ deprecated: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
+ dependencies:
+ anymatch: 2.0.0(supports-color@6.1.0)
+ async-each: 1.0.6
+ braces: 2.3.2(supports-color@6.1.0)
+ glob-parent: 3.1.0
+ inherits: 2.0.4
+ is-binary-path: 1.0.1
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ path-is-absolute: 1.0.1
+ readdirp: 2.2.1(supports-color@6.1.0)
+ upath: 1.2.0
+ optionalDependencies:
+ fsevents: 1.2.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /chokidar@3.5.1:
+ resolution: {integrity: sha1-7pznu+vSt59J8wR5nVRo4x4U5oo=}
+ engines: {node: '>= 8.10.0'}
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.2
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.5.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /chokidar@3.5.2:
+ resolution: {integrity: sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=}
+ engines: {node: '>= 8.10.0'}
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.2
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /chokidar@3.5.3:
+ resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
+ engines: {node: '>= 8.10.0'}
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.2
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /chownr@1.1.4:
+ resolution: {integrity: sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs=}
+ dev: true
+
+ /chownr@2.0.0:
+ resolution: {integrity: sha1-Fb++U9LqtM9w8YqM1o6+Wzyx3s4=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /chrome-trace-event@1.0.3:
+ resolution: {integrity: sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw=}
+ engines: {node: '>=6.0'}
+ dev: true
+
+ /ci-info@2.0.0:
+ resolution: {integrity: sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y=}
+ dev: true
+
+ /cipher-base@1.0.4:
+ resolution: {integrity: sha1-h2Dk7MJy9MNjUy+SbYdKriwTl94=}
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+
+ /cjs-module-lexer@0.6.0:
+ resolution: {integrity: sha1-QYb8yg6uF1lwruhwuf4tbPjVZV8=}
+ dev: true
+
+ /class-utils@0.3.6:
+ resolution: {integrity: sha1-+TNprouafOAv1B+q0MqDAzGQxGM=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-union: 3.1.0
+ define-property: 0.2.5
+ isobject: 3.0.1
+ static-extend: 0.1.2
+ dev: true
+
+ /classnames@2.2.6:
+ resolution: {integrity: sha1-Q5Nb/90pHzJtrQogUwmzjQD2UM4=}
+ dev: true
+
+ /classnames@2.3.2:
+ resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
+ dev: true
+
+ /clean-css@4.2.4:
+ resolution: {integrity: sha1-czv0brpOYHxokepXwkqYk1aDEXg=}
+ engines: {node: '>= 4.0'}
+ dependencies:
+ source-map: 0.6.1
+ dev: true
+
+ /clean-stack@2.2.0:
+ resolution: {integrity: sha1-7oRy27Ep5yezHooQpCfe6d/kAIs=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /cli-cursor@2.1.0:
+ resolution: {integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=}
+ engines: {node: '>=4'}
+ dependencies:
+ restore-cursor: 2.0.0
+ dev: true
+
+ /cli-cursor@3.1.0:
+ resolution: {integrity: sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=}
+ engines: {node: '>=8'}
+ dependencies:
+ restore-cursor: 3.1.0
+ dev: true
+
+ /cli-cursor@4.0.0:
+ resolution: {integrity: sha1-POz+NzS/T+Aqg2HL3A9v4oxqV+o=}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ restore-cursor: 4.0.0
+ dev: true
+
+ /cli-spinners@2.9.1:
+ resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /cli-truncate@3.1.0:
+ resolution: {integrity: sha1-PyOrElNePXPoObtD5zyd5IfbE4k=}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ slice-ansi: 5.0.0
+ string-width: 5.1.2
+ dev: true
+
+ /cli-width@2.2.1:
+ resolution: {integrity: sha1-sEM9C06chH7xiGik7xb9X8gnHEg=}
+ dev: true
+
+ /cli-width@3.0.0:
+ resolution: {integrity: sha1-ovSEN6LKqaIkNueUvwceyeYc7fY=}
+ engines: {node: '>= 10'}
+ dev: true
+
+ /cliui@5.0.0:
+ resolution: {integrity: sha1-3u/P2y6AB4SqNPRvoI4GhRx7u8U=}
+ dependencies:
+ string-width: 3.1.0
+ strip-ansi: 5.2.0
+ wrap-ansi: 5.1.0
+ dev: true
+
+ /cliui@6.0.0:
+ resolution: {integrity: sha1-UR1wLAxOQcoVbX0OlgIfI+EyJbE=}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ dev: true
+
+ /cliui@7.0.4:
+ resolution: {integrity: sha1-oCZe5lVHb8gHrqnfPfjfd4OAi08=}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 7.0.0
+ dev: true
+
+ /cliui@8.0.1:
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 7.0.0
+ dev: true
+
+ /clone-regexp@2.2.0:
+ resolution: {integrity: sha1-fWXgCIXNh5ZAXDWnN+eoa3Qp428=}
+ engines: {node: '>=6'}
+ dependencies:
+ is-regexp: 2.1.0
+ dev: true
+
+ /clone@1.0.4:
+ resolution: {integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=}
+ engines: {node: '>=0.8'}
+ dev: true
+
+ /co@4.6.0:
+ resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
+ dev: true
+
+ /coa@2.0.2:
+ resolution: {integrity: sha1-Q/bCEVG07yv1cYfbDXPeIp4+fsM=}
+ engines: {node: '>= 4.0'}
+ dependencies:
+ '@types/q': 1.5.7
+ chalk: 2.4.2
+ q: 1.5.1
+ dev: true
+
+ /code-point-at@1.1.0:
+ resolution: {integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /collect-v8-coverage@1.0.2:
+ resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
+ dev: true
+
+ /collection-visit@1.0.0:
+ resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-visit: 1.0.0
+ object-visit: 1.0.1
+ dev: true
+
+ /color-convert@1.9.3:
+ resolution: {integrity: sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=}
+ dependencies:
+ color-name: 1.1.3
+ dev: true
+
+ /color-convert@2.0.1:
+ resolution: {integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=}
+ engines: {node: '>=7.0.0'}
+ dependencies:
+ color-name: 1.1.4
+ dev: true
+
+ /color-name@1.1.3:
+ resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=}
+ dev: true
+
+ /color-name@1.1.4:
+ resolution: {integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=}
+ dev: true
+
+ /color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ dev: true
+
+ /color@3.2.1:
+ resolution: {integrity: sha1-NUTcGYyvRJDD7MmnkLVP6f9F4WQ=}
+ dependencies:
+ color-convert: 1.9.3
+ color-string: 1.9.1
+ dev: true
+
+ /colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+ dev: true
+
+ /combined-stream@1.0.8:
+ resolution: {integrity: sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ delayed-stream: 1.0.0
+ dev: true
+
+ /comma-separated-tokens@2.0.3:
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
+
+ /command-exists@1.2.9:
+ resolution: {integrity: sha1-xQclrzgIyKsCYP1gsB+/oluVT2k=}
+ dev: true
+
+ /commander@11.0.0:
+ resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==}
+ engines: {node: '>=16'}
+ dev: true
+
+ /commander@2.17.1:
+ resolution: {integrity: sha1-vXerfebelCBc6sxy8XFtKfIKd78=}
+ dev: true
+
+ /commander@2.19.0:
+ resolution: {integrity: sha1-9hmKqE5bg8RgVLlN3tv+1e6f8So=}
+ dev: true
+
+ /commander@2.20.3:
+ resolution: {integrity: sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=}
+ dev: true
+
+ /commander@4.1.1:
+ resolution: {integrity: sha1-n9YCvZNilOnp70aj9NaWQESxgGg=}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /commander@6.2.1:
+ resolution: {integrity: sha1-B5LraC37wyWZm7K4T93duhEKxzw=}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /comment-parser@0.5.5:
+ resolution: {integrity: sha1-wlhMrnwvCvx3Ppay7pj4wQy9aT0=}
+ dev: true
+
+ /comment-parser@1.3.1:
+ resolution: {integrity: sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==}
+ engines: {node: '>= 12.0.0'}
+ dev: true
+
+ /commitlint-config-ali@0.1.3:
+ resolution: {integrity: sha512-udq2cb0i9uXfT6JOgOL7w+iJ0NCcg84az3i6vqEHNI1GCeKXOdZCAjz20XE5dvyWVIfFMcj3d3J0ydgCL6eJHQ==}
+ dependencies:
+ conventional-changelog-conventionalcommits: 4.6.3
+ dev: true
+
+ /common-tags@1.8.0:
+ resolution: {integrity: sha1-jjFT5ULUo56bEFVENK+q+YlWqTc=}
+ engines: {node: '>=4.0.0'}
+ dev: true
+
+ /commondir@1.0.1:
+ resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=}
+ dev: true
+
+ /compare-func@2.0.0:
+ resolution: {integrity: sha1-+2XnXtvd/S5WhVTotbBf/3pR/LM=}
+ dependencies:
+ array-ify: 1.0.0
+ dot-prop: 5.3.0
+ dev: true
+
+ /component-bind@1.0.0:
+ resolution: {integrity: sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=}
+ dev: true
+
+ /component-emitter@1.3.0:
+ resolution: {integrity: sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A=}
+ dev: true
+
+ /component-inherit@0.0.3:
+ resolution: {integrity: sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=}
+ dev: true
+
+ /compressible@2.0.18:
+ resolution: {integrity: sha1-r1PMprBw1MPAdQ+9dyhqbXzEb7o=}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-db: 1.52.0
+ dev: true
+
+ /compression@1.7.4(supports-color@6.1.0):
+ resolution: {integrity: sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48=}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ accepts: 1.3.8
+ bytes: 3.0.0
+ compressible: 2.0.18
+ debug: 2.6.9(supports-color@6.1.0)
+ on-headers: 1.0.2
+ safe-buffer: 5.1.2
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /concat-map@0.0.1:
+ resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ dev: true
+
+ /concat-stream@1.6.2:
+ resolution: {integrity: sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=}
+ engines: {'0': node >= 0.8}
+ dependencies:
+ buffer-from: 1.1.2
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ typedarray: 0.0.6
+ dev: true
+
+ /confusing-browser-globals@1.0.11:
+ resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
+ dev: true
+
+ /connect-history-api-fallback@1.6.0:
+ resolution: {integrity: sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w=}
+ engines: {node: '>=0.8'}
+ dev: true
+
+ /consola@2.15.3:
+ resolution: {integrity: sha1-LhH5jWpL5x/3LgvfB70j4Sy2FVA=}
+ dev: true
+
+ /console-browserify@1.2.0:
+ resolution: {integrity: sha1-ZwY871fOts9Jk6KrOlWECujEkzY=}
+ dev: true
+
+ /console-clear@1.1.1:
+ resolution: {integrity: sha512-pMD+MVR538ipqkG5JXeOEbKWS5um1H4LUUccUQG68qpeqBYbzYy79Gh55jkd2TtPdRfUaLWdv6LPP//5Zt0aPQ==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /console-control-strings@1.1.0:
+ resolution: {integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=}
+ dev: true
+
+ /constant-case@3.0.4:
+ resolution: {integrity: sha1-O4Sprq9M8x7EXmv13pG9+wWJ+vE=}
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.6.2
+ upper-case: 2.0.2
+ dev: true
+
+ /constants-browserify@1.0.0:
+ resolution: {integrity: sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=}
+ dev: true
+
+ /content-disposition@0.5.4:
+ resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: true
+
+ /content-type@1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /conventional-changelog-angular@5.0.13:
+ resolution: {integrity: sha1-iWiF1juRSnDUk0tZ0v573hgysow=}
+ engines: {node: '>=10'}
+ dependencies:
+ compare-func: 2.0.0
+ q: 1.5.1
+ dev: true
+
+ /conventional-changelog-angular@6.0.0:
+ resolution: {integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==}
+ engines: {node: '>=14'}
+ dependencies:
+ compare-func: 2.0.0
+ dev: true
+
+ /conventional-changelog-conventionalcommits@4.6.3:
+ resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==}
+ engines: {node: '>=10'}
+ dependencies:
+ compare-func: 2.0.0
+ lodash: 4.17.21
+ q: 1.5.1
+ dev: true
+
+ /conventional-changelog-conventionalcommits@6.1.0:
+ resolution: {integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==}
+ engines: {node: '>=14'}
+ dependencies:
+ compare-func: 2.0.0
+ dev: true
+
+ /conventional-commits-parser@3.2.4:
+ resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ JSONStream: 1.3.5
+ is-text-path: 1.0.1
+ lodash: 4.17.21
+ meow: 8.1.2
+ split2: 3.2.2
+ through2: 4.0.2
+ dev: true
+
+ /conventional-commits-parser@4.0.0:
+ resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==}
+ engines: {node: '>=14'}
+ hasBin: true
+ dependencies:
+ JSONStream: 1.3.5
+ is-text-path: 1.0.1
+ meow: 8.1.2
+ split2: 3.2.2
+ dev: true
+
+ /convert-source-map@1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+ dev: true
+
+ /convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+ dev: true
+
+ /cookie-signature@1.0.6:
+ resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
+ dev: true
+
+ /cookie@0.5.0:
+ resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /copy-anything@2.0.6:
+ resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
+ dependencies:
+ is-what: 3.14.1
+ dev: true
+
+ /copy-concurrently@1.0.5:
+ resolution: {integrity: sha1-kilzmMrjSTf8r9bsgTnBgFHwteA=}
+ dependencies:
+ aproba: 1.2.0
+ fs-write-stream-atomic: 1.0.10
+ iferr: 0.1.5
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ dev: true
+
+ /copy-descriptor@0.1.1:
+ resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /copy-webpack-plugin@5.1.2(webpack@4.47.0):
+ resolution: {integrity: sha1-ioieHcr6bJHGzUvhrRWPHTgjuuI=}
+ engines: {node: '>= 6.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ cacache: 12.0.4
+ find-cache-dir: 2.1.0
+ glob-parent: 3.1.0
+ globby: 7.1.1
+ is-glob: 4.0.3
+ loader-utils: 1.4.2
+ minimatch: 3.1.2
+ normalize-path: 3.0.0
+ p-limit: 2.3.0
+ schema-utils: 1.0.0
+ serialize-javascript: 4.0.0
+ webpack: 4.47.0
+ webpack-log: 2.0.0
+ dev: true
+
+ /core-js-compat@3.33.1:
+ resolution: {integrity: sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==}
+ dependencies:
+ browserslist: 4.22.1
+ dev: true
+
+ /core-js-pure@3.33.1:
+ resolution: {integrity: sha512-wCXGbLjnsP10PlK/thHSQlOLlLKNEkaWbTzVvHHZ79fZNeN1gUmw2gBlpItxPv/pvqldevEXFh/d5stdNvl6EQ==}
+ requiresBuild: true
+ dev: true
+
+ /core-js@2.6.12:
+ resolution: {integrity: sha1-2TM9+nsGXjR8xWgiGdb2kIWcwuw=}
+ deprecated: core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
+ requiresBuild: true
+ dev: true
+
+ /core-js@3.33.1:
+ resolution: {integrity: sha512-qVSq3s+d4+GsqN0teRCJtM6tdEEXyWxjzbhVrCHmBS5ZTM0FS2MOS0D13dUXAWDUN6a+lHI/N1hF9Ytz6iLl9Q==}
+ requiresBuild: true
+ dev: true
+
+ /core-util-is@1.0.3:
+ resolution: {integrity: sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=}
+ dev: true
+
+ /cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.1)(typescript@5.2.2):
+ resolution: {integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==}
+ engines: {node: '>=v14.21.3'}
+ peerDependencies:
+ '@types/node': '*'
+ cosmiconfig: '>=7'
+ ts-node: '>=10'
+ typescript: '>=4'
+ dependencies:
+ '@types/node': 20.5.1
+ cosmiconfig: 8.3.6(typescript@4.9.5)
+ ts-node: 10.9.1(@types/node@20.5.1)(typescript@4.9.5)
+ typescript: 5.2.2
+ dev: true
+
+ /cosmiconfig@4.0.0:
+ resolution: {integrity: sha1-dgORVJWAu9LfHlYrwXexPCkJctw=}
+ engines: {node: '>=4'}
+ dependencies:
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
+ require-from-string: 2.0.2
+ dev: true
+
+ /cosmiconfig@5.0.6:
+ resolution: {integrity: sha1-3KbPaAoL0DWJr/aEcAhYyBq+6zk=}
+ engines: {node: '>=4'}
+ dependencies:
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
+ dev: true
+
+ /cosmiconfig@5.2.1:
+ resolution: {integrity: sha1-BA9yaAnFked6F8CjYmykW08Wixo=}
+ engines: {node: '>=4'}
+ dependencies:
+ import-fresh: 2.0.0
+ is-directory: 0.3.1
+ js-yaml: 3.14.1
+ parse-json: 4.0.0
+ dev: true
+
+ /cosmiconfig@7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+ engines: {node: '>=10'}
+ dependencies:
+ '@types/parse-json': 4.0.1
+ import-fresh: 3.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ yaml: 1.10.2
+ dev: true
+
+ /cosmiconfig@8.3.6(typescript@4.9.5):
+ resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ typescript: 4.9.5
+ dev: true
+
+ /create-ecdh@4.0.4:
+ resolution: {integrity: sha1-1uf0v/pmc2CFoHYv06YyaE2rzE4=}
+ dependencies:
+ bn.js: 4.12.0
+ elliptic: 6.5.4
+ dev: true
+
+ /create-hash@1.2.0:
+ resolution: {integrity: sha1-iJB4rxGmN1a8+1m9IhmWvjqe8ZY=}
+ dependencies:
+ cipher-base: 1.0.4
+ inherits: 2.0.4
+ md5.js: 1.3.5
+ ripemd160: 2.0.2
+ sha.js: 2.4.11
+ dev: true
+
+ /create-hmac@1.1.7:
+ resolution: {integrity: sha1-aRcMeLOrlXFHsriwRXLkfq0iQ/8=}
+ dependencies:
+ cipher-base: 1.0.4
+ create-hash: 1.2.0
+ inherits: 2.0.4
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.1
+ sha.js: 2.4.11
+ dev: true
+
+ /create-require@1.1.1:
+ resolution: {integrity: sha1-wdfo8eX2z8n/ZfnNNS03NIdWwzM=}
+ dev: true
+
+ /cross-spawn-promise@0.10.2:
+ resolution: {integrity: sha512-74PXJf6DYaab2klRS+D+9qxKJL1Weo3/ao9OPoH6NFzxtINSa/HE2mcyAPu1fpEmRTPD4Gdmpg3xEXQSgI8lpg==}
+ engines: {node: '>=4'}
+ dependencies:
+ cross-spawn: 5.1.0
+ dev: true
+
+ /cross-spawn@5.1.0:
+ resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=}
+ dependencies:
+ lru-cache: 4.1.5
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
+
+ /cross-spawn@6.0.5:
+ resolution: {integrity: sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=}
+ engines: {node: '>=4.8'}
+ dependencies:
+ nice-try: 1.0.5
+ path-key: 2.0.1
+ semver: 5.7.2
+ shebang-command: 1.2.0
+ which: 1.3.1
+ dev: true
+
+ /cross-spawn@7.0.1:
+ resolution: {integrity: sha1-CrVihuD3wk4VPQTMKqAn5DqaXRQ=}
+ engines: {node: '>= 8'}
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+ dev: true
+
+ /cross-spawn@7.0.3:
+ resolution: {integrity: sha1-9zqFudXUHQRVUcF34ogtSshXKKY=}
+ engines: {node: '>= 8'}
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+ dev: true
+
+ /crypt@0.0.2:
+ resolution: {integrity: sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=}
+ dev: true
+
+ /crypto-browserify@3.12.0:
+ resolution: {integrity: sha1-OWz58xN/A+S45TLFj2mCVOAPgOw=}
+ dependencies:
+ browserify-cipher: 1.0.1
+ browserify-sign: 4.2.2
+ create-ecdh: 4.0.4
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ diffie-hellman: 5.0.3
+ inherits: 2.0.4
+ pbkdf2: 3.1.2
+ public-encrypt: 4.0.3
+ randombytes: 2.1.0
+ randomfill: 1.0.4
+ dev: true
+
+ /css-blank-pseudo@0.1.4:
+ resolution: {integrity: sha1-3979MlS/ioICeZNnTM81SDv8s8U=}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /css-color-names@0.0.4:
+ resolution: {integrity: sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=}
+ dev: true
+
+ /css-declaration-sorter@4.0.1:
+ resolution: {integrity: sha1-wZiUD2OnbX42wecQGLABchBUyyI=}
+ engines: {node: '>4'}
+ dependencies:
+ postcss: 7.0.39
+ timsort: 0.3.0
+ dev: true
+
+ /css-has-pseudo@0.10.0:
+ resolution: {integrity: sha1-PGQqs0yiQsWcQaEl35EFhB9pZu4=}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: true
+
+ /css-loader@3.6.0(webpack@4.47.0):
+ resolution: {integrity: sha1-Lkssfm4tJ/jI8o9hv/zS5ske9kU=}
+ engines: {node: '>= 8.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ camelcase: 5.3.1
+ cssesc: 3.0.0
+ icss-utils: 4.1.1
+ loader-utils: 1.4.2
+ normalize-path: 3.0.0
+ postcss: 7.0.39
+ postcss-modules-extract-imports: 2.0.0
+ postcss-modules-local-by-default: 3.0.3
+ postcss-modules-scope: 2.2.0
+ postcss-modules-values: 3.0.0
+ postcss-value-parser: 4.2.0
+ schema-utils: 2.7.1
+ semver: 6.3.1
+ webpack: 4.47.0
+ dev: true
+
+ /css-modules-loader-core@1.1.0:
+ resolution: {integrity: sha1-WQhmgpShvs0mGuCkziGwtVHyHRY=}
+ dependencies:
+ icss-replace-symbols: 1.1.0
+ postcss: 6.0.1
+ postcss-modules-extract-imports: 1.1.0
+ postcss-modules-local-by-default: 1.2.0
+ postcss-modules-scope: 1.1.0
+ postcss-modules-values: 1.3.0
+ dev: true
+
+ /css-parse@2.0.0:
+ resolution: {integrity: sha1-pGjuZnwW2BzPBcWMONKpfHgNv9Q=}
+ dependencies:
+ css: 2.2.4
+ dev: true
+
+ /css-prefers-color-scheme@3.1.1:
+ resolution: {integrity: sha1-b4MKJxQZnU8NDQu4onkW7WXP8fQ=}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /css-select-base-adapter@0.1.1:
+ resolution: {integrity: sha1-Oy/0lyzDYquIVhUHqVQIoUMhNdc=}
+ dev: true
+
+ /css-select@2.1.0:
+ resolution: {integrity: sha1-ajRlM1ZjWTSoG6ymjQJVQyEF2+8=}
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 3.4.2
+ domutils: 1.7.0
+ nth-check: 1.0.2
+ dev: true
+
+ /css-select@4.3.0:
+ resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 4.3.1
+ domutils: 2.8.0
+ nth-check: 2.1.1
+ dev: true
+
+ /css-selector-tokenizer@0.7.3:
+ resolution: {integrity: sha1-c18mGG5nx0mq8nV4NAXPBmH66PE=}
+ dependencies:
+ cssesc: 3.0.0
+ fastparse: 1.1.2
+ dev: true
+
+ /css-tree@1.0.0-alpha.29:
+ resolution: {integrity: sha1-P6nU7zFCy9HDAedmTB81K9gvWjk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ mdn-data: 1.1.4
+ source-map: 0.5.7
+ dev: true
+
+ /css-tree@1.0.0-alpha.37:
+ resolution: {integrity: sha1-mL69YsTB2flg7DQM+fdSLjBwmiI=}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ mdn-data: 2.0.4
+ source-map: 0.6.1
+ dev: true
+
+ /css-tree@1.1.3:
+ resolution: {integrity: sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ mdn-data: 2.0.14
+ source-map: 0.6.1
+ dev: true
+
+ /css-what@3.4.2:
+ resolution: {integrity: sha1-6nAm/LAXd+295SEk4h8yfnrpUOQ=}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /css-what@6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /css@2.2.4:
+ resolution: {integrity: sha1-xkZ1XHOXHyu6amAeLPL9cbEpiSk=}
+ dependencies:
+ inherits: 2.0.4
+ source-map: 0.6.1
+ source-map-resolve: 0.5.3
+ urix: 0.1.0
+ dev: true
+
+ /cssdb@4.4.0:
+ resolution: {integrity: sha1-O/LypowQ9cagir2SN4Mx7oA83bA=}
+ dev: true
+
+ /cssesc@2.0.0:
+ resolution: {integrity: sha1-OxO9G7HLNuG8taTc0n9UxdyzVwM=}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: true
+
+ /cssesc@3.0.0:
+ resolution: {integrity: sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: true
+
+ /cssnano-preset-default@4.0.8:
+ resolution: {integrity: sha1-kgYisfwelaNOiDggPxOXpQTy0/8=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ css-declaration-sorter: 4.0.1
+ cssnano-util-raw-cache: 4.0.1
+ postcss: 7.0.39
+ postcss-calc: 7.0.5
+ postcss-colormin: 4.0.3
+ postcss-convert-values: 4.0.1
+ postcss-discard-comments: 4.0.2
+ postcss-discard-duplicates: 4.0.2
+ postcss-discard-empty: 4.0.1
+ postcss-discard-overridden: 4.0.1
+ postcss-merge-longhand: 4.0.11
+ postcss-merge-rules: 4.0.3
+ postcss-minify-font-values: 4.0.2
+ postcss-minify-gradients: 4.0.2
+ postcss-minify-params: 4.0.2
+ postcss-minify-selectors: 4.0.2
+ postcss-normalize-charset: 4.0.1
+ postcss-normalize-display-values: 4.0.2
+ postcss-normalize-positions: 4.0.2
+ postcss-normalize-repeat-style: 4.0.2
+ postcss-normalize-string: 4.0.2
+ postcss-normalize-timing-functions: 4.0.2
+ postcss-normalize-unicode: 4.0.1
+ postcss-normalize-url: 4.0.1
+ postcss-normalize-whitespace: 4.0.2
+ postcss-ordered-values: 4.1.2
+ postcss-reduce-initial: 4.0.3
+ postcss-reduce-transforms: 4.0.2
+ postcss-svgo: 4.0.3
+ postcss-unique-selectors: 4.0.1
+ dev: true
+
+ /cssnano-util-get-arguments@4.0.0:
+ resolution: {integrity: sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /cssnano-util-get-match@4.0.0:
+ resolution: {integrity: sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /cssnano-util-raw-cache@4.0.1:
+ resolution: {integrity: sha1-sm1f1fcqEd/np4RvtMZyYPlr8oI=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /cssnano-util-same-parent@4.0.1:
+ resolution: {integrity: sha1-V0CC+yhZ0ttDOFWDXZqEVuoYu/M=}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /cssnano@4.1.11:
+ resolution: {integrity: sha1-x7X1uB2iacsf2YLLlgwSAJEMmpk=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cosmiconfig: 5.2.1
+ cssnano-preset-default: 4.0.8
+ is-resolvable: 1.1.0
+ postcss: 7.0.39
+ dev: true
+
+ /csso@3.5.1:
+ resolution: {integrity: sha1-e564vmFiiXPBsmHhadLwJACOdYs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ css-tree: 1.0.0-alpha.29
+ dev: true
+
+ /csso@4.2.0:
+ resolution: {integrity: sha1-6jpWE0bo3J9UbW/r7dUBh884lSk=}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ css-tree: 1.1.3
+ dev: true
+
+ /cssom@0.3.8:
+ resolution: {integrity: sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o=}
+ dev: true
+
+ /cssom@0.4.4:
+ resolution: {integrity: sha1-WmbPk9LQtmHYC/akT7ZfXC5OChA=}
+ dev: true
+
+ /cssstyle@2.3.0:
+ resolution: {integrity: sha1-/2ZaDdvcMYZLCWR/NBY0Q9kLCFI=}
+ engines: {node: '>=8'}
+ dependencies:
+ cssom: 0.3.8
+ dev: true
+
+ /csstype@3.1.2:
+ resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
+
+ /cyclist@1.0.2:
+ resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
+ dev: true
+
+ /damerau-levenshtein@1.0.8:
+ resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
+ dev: true
+
+ /dargs@7.0.0:
+ resolution: {integrity: sha1-BAFcQd4Ly2nshAUPPZvgyvjW1cw=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /data-urls@2.0.0:
+ resolution: {integrity: sha1-FWSFpyljqXD11YIar2Qr7yvy25s=}
+ engines: {node: '>=10'}
+ dependencies:
+ abab: 2.0.6
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 8.7.0
+ dev: true
+
+ /dayjs@1.11.10:
+ resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
+ dev: true
+
+ /debug@2.6.9:
+ resolution: {integrity: sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.0.0
+ dev: true
+
+ /debug@2.6.9(supports-color@6.1.0):
+ resolution: {integrity: sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.0.0
+ supports-color: 6.1.0
+ dev: true
+
+ /debug@3.1.0:
+ resolution: {integrity: sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE=}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.0.0
+ dev: true
+
+ /debug@3.2.7:
+ resolution: {integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.3
+ dev: true
+
+ /debug@3.2.7(supports-color@6.1.0):
+ resolution: {integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.3
+ supports-color: 6.1.0
+ dev: true
+
+ /debug@4.3.1(supports-color@8.1.1):
+ resolution: {integrity: sha1-8NIpxQXgxtjEmsVT0bE9wYP2su4=}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+ supports-color: 8.1.1
+ dev: true
+
+ /debug@4.3.4:
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+
+ /debug@4.3.4(supports-color@6.1.0):
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+ dependencies:
+ ms: 2.1.2
+ supports-color: 6.1.0
+ dev: true
+
+ /decamelize-keys@1.1.1:
+ resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ decamelize: 1.2.0
+ map-obj: 1.0.1
+ dev: true
+
+ /decamelize@1.2.0:
+ resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /decamelize@4.0.0:
+ resolution: {integrity: sha1-qkcte/Zg6xXzSU79UxyrfypwmDc=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /decimal.js@10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+ dev: true
+
+ /decode-named-character-reference@1.0.2:
+ resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
+ dependencies:
+ character-entities: 2.0.2
+
+ /decode-uri-component@0.2.2:
+ resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
+ engines: {node: '>=0.10'}
+ dev: true
+
+ /deep-equal@1.1.1:
+ resolution: {integrity: sha1-tcmMlCzv+vfLBR4k4UNKJaLmB2o=}
+ dependencies:
+ is-arguments: 1.1.1
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ object-is: 1.1.5
+ object-keys: 1.1.1
+ regexp.prototype.flags: 1.5.1
+ dev: true
+
+ /deep-is@0.1.4:
+ resolution: {integrity: sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=}
+ dev: true
+
+ /deepmerge@1.5.2:
+ resolution: {integrity: sha1-EEmdhohEza1P7ghC34x/bwyVp1M=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /deepmerge@2.2.1:
+ resolution: {integrity: sha1-XT/yKgHAD2RUBaL7wX0HeKGAEXA=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /deepmerge@4.3.1:
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /default-browser-id@3.0.0:
+ resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
+ engines: {node: '>=12'}
+ dependencies:
+ bplist-parser: 0.2.0
+ untildify: 4.0.0
+ dev: true
+
+ /default-browser@4.0.0:
+ resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
+ engines: {node: '>=14.16'}
+ dependencies:
+ bundle-name: 3.0.0
+ default-browser-id: 3.0.0
+ execa: 7.2.0
+ titleize: 3.0.0
+ dev: true
+
+ /default-gateway@4.2.0:
+ resolution: {integrity: sha1-FnEEx1AMIRX23WmwpTa7jtcgVSs=}
+ engines: {node: '>=6'}
+ dependencies:
+ execa: 1.0.0
+ ip-regex: 2.1.0
+ dev: true
+
+ /defaults@1.0.4:
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+ dependencies:
+ clone: 1.0.4
+ dev: true
+
+ /define-data-property@1.1.1:
+ resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.2
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
+ dev: true
+
+ /define-lazy-prop@3.0.0:
+ resolution: {integrity: sha1-27Ga37dG1/xtc0oGty9KANAhJV8=}
+ engines: {node: '>=12'}
+ dev: true
+
+ /define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.1
+ has-property-descriptors: 1.0.1
+ object-keys: 1.1.1
+ dev: true
+
+ /define-property@0.2.5:
+ resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 0.1.6
+ dev: true
+
+ /define-property@1.0.0:
+ resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.2
+ dev: true
+
+ /define-property@2.0.2:
+ resolution: {integrity: sha1-1Flono1lS6d+AqgX+HENcCyxbp0=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-descriptor: 1.0.2
+ isobject: 3.0.1
+ dev: true
+
+ /del@4.1.1:
+ resolution: {integrity: sha1-no8RciLqRKMf86FWwEm5kFKp8LQ=}
+ engines: {node: '>=6'}
+ dependencies:
+ '@types/glob': 7.2.0
+ globby: 6.1.0
+ is-path-cwd: 2.2.0
+ is-path-in-cwd: 2.1.0
+ p-map: 2.1.0
+ pify: 4.0.1
+ rimraf: 2.7.1
+ dev: true
+
+ /delayed-stream@1.0.0:
+ resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
+ /delegates@1.0.0:
+ resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=}
+ dev: true
+
+ /depd@1.1.2:
+ resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /depd@2.0.0:
+ resolution: {integrity: sha1-tpYWPMdXVg0JzyLMj60Vcbeedt8=}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /dequal@2.0.3:
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
+
+ /des.js@1.1.0:
+ resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: true
+
+ /destroy@1.2.0:
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ dev: true
+
+ /detect-indent@7.0.1:
+ resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==}
+ engines: {node: '>=12.20'}
+ dev: true
+
+ /detect-newline@3.1.0:
+ resolution: {integrity: sha1-V29d/GOuGhkv8ZLYrTr2MImRtlE=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /detect-newline@4.0.1:
+ resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
+
+ /detect-node@2.1.0:
+ resolution: {integrity: sha1-yccHdaScPQO8LAbZpzvlUPl4+LE=}
+ dev: true
+
+ /detect-port-alt@1.1.6:
+ resolution: {integrity: sha1-JHB96r6TLUo89iEwICfCsmZWgnU=}
+ engines: {node: '>= 4.2.1'}
+ hasBin: true
+ dependencies:
+ address: 1.2.2
+ debug: 2.6.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /detect-port@1.5.1:
+ resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
+ hasBin: true
+ dependencies:
+ address: 1.2.2
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /devlop@1.1.0:
+ resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
+ dependencies:
+ dequal: 2.0.3
+ dev: false
+
+ /diff-sequences@26.6.2:
+ resolution: {integrity: sha1-SLqZFX3hkjQS7tQdtrbUqpynwLE=}
+ engines: {node: '>= 10.14.2'}
+ dev: true
+
+ /diff@4.0.2:
+ resolution: {integrity: sha1-YPOuy4nV+uUgwRqhnvwruYKq3n0=}
+ engines: {node: '>=0.3.1'}
+ dev: true
+
+ /diff@5.0.0:
+ resolution: {integrity: sha1-ftatdthZ0DB4fsNYVfWx2vMdhSs=}
+ engines: {node: '>=0.3.1'}
+ dev: true
+
+ /diff@5.1.0:
+ resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
+ engines: {node: '>=0.3.1'}
+ dev: true
+
+ /diffie-hellman@5.0.3:
+ resolution: {integrity: sha1-QOjumPVaIUlgcUaSHGPhrl89KHU=}
+ dependencies:
+ bn.js: 4.12.0
+ miller-rabin: 4.0.1
+ randombytes: 2.1.0
+ dev: true
+
+ /dir-glob@2.0.0:
+ resolution: {integrity: sha1-CyBdK2rvmCOMooZZioIE0p0KADQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ arrify: 1.0.1
+ path-type: 3.0.0
+ dev: true
+
+ /dir-glob@2.2.2:
+ resolution: {integrity: sha1-+gnwaUFTyJGLGLoN6vrpR2n8UMQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ path-type: 3.0.0
+ dev: true
+
+ /dir-glob@3.0.1:
+ resolution: {integrity: sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=}
+ engines: {node: '>=8'}
+ dependencies:
+ path-type: 4.0.0
+ dev: true
+
+ /dns-equal@1.0.0:
+ resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=}
+ dev: true
+
+ /dns-packet@1.3.4:
+ resolution: {integrity: sha1-40VQZYJKJQe6iGxVqJljuxB97G8=}
+ dependencies:
+ ip: 1.1.8
+ safe-buffer: 5.2.1
+ dev: true
+
+ /dns-txt@2.0.2:
+ resolution: {integrity: sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=}
+ dependencies:
+ buffer-indexof: 1.1.1
+ dev: true
+
+ /doctrine@2.1.0:
+ resolution: {integrity: sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ esutils: 2.0.3
+ dev: true
+
+ /doctrine@3.0.0:
+ resolution: {integrity: sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ esutils: 2.0.3
+ dev: true
+
+ /dom-converter@0.2.0:
+ resolution: {integrity: sha1-ZyGp2u4uKTaClVtq/kFncWJ7t2g=}
+ dependencies:
+ utila: 0.4.0
+ dev: true
+
+ /dom-helpers@3.4.0:
+ resolution: {integrity: sha1-6bNpcA+Vn2Ls3lprq95LzNkWmvg=}
+ dependencies:
+ '@babel/runtime': 7.23.2
+ dev: true
+
+ /dom-serializer@0.2.2:
+ resolution: {integrity: sha1-GvuB9TNxcXXUeGVd68XjMtn5u1E=}
+ dependencies:
+ domelementtype: 2.3.0
+ entities: 2.2.0
+ dev: true
+
+ /dom-serializer@1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ entities: 2.2.0
+ dev: true
+
+ /dom7@3.0.0:
+ resolution: {integrity: sha1-uGHOXWemvs16qjrQKUL/FLEkAzE=}
+ dependencies:
+ ssr-window: 3.0.0
+ dev: true
+
+ /domain-browser@1.2.0:
+ resolution: {integrity: sha1-PTH1AZGmdJ3RN1p/Ui6CPULlTto=}
+ engines: {node: '>=0.4', npm: '>=1.2'}
+ dev: true
+
+ /domelementtype@1.3.1:
+ resolution: {integrity: sha1-0EjESzew0Qp/Kj1f7j9DM9eQSB8=}
+ dev: true
+
+ /domelementtype@2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+ dev: true
+
+ /domexception@2.0.1:
+ resolution: {integrity: sha1-+0Su+6eT4VdLCvau0oAdBXUp8wQ=}
+ engines: {node: '>=8'}
+ dependencies:
+ webidl-conversions: 5.0.0
+ dev: true
+
+ /domhandler@2.4.2:
+ resolution: {integrity: sha1-iAUJfpM9ZehVRvcm1g9euItE+AM=}
+ dependencies:
+ domelementtype: 1.3.1
+ dev: true
+
+ /domhandler@4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
+ engines: {node: '>= 4'}
+ dependencies:
+ domelementtype: 2.3.0
+ dev: true
+
+ /domutils@1.7.0:
+ resolution: {integrity: sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo=}
+ dependencies:
+ dom-serializer: 0.2.2
+ domelementtype: 1.3.1
+ dev: true
+
+ /domutils@2.8.0:
+ resolution: {integrity: sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU=}
+ dependencies:
+ dom-serializer: 1.4.1
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ dev: true
+
+ /dot-case@3.0.4:
+ resolution: {integrity: sha1-mytnDQCkMWZ6inW6Kc0bmICc51E=}
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.6.2
+ dev: true
+
+ /dot-prop@5.3.0:
+ resolution: {integrity: sha1-kMzOcIzZzYLMTcjD3dmr3VWyDog=}
+ engines: {node: '>=8'}
+ dependencies:
+ is-obj: 2.0.0
+ dev: true
+
+ /driver-dom@2.2.2:
+ resolution: {integrity: sha512-v/jCQnQkjv0q3Z51zYhG5MfzMjlfJURiC8mhaAwhHsih55j8AnPupurSBOJn67qAE4Ol5XiGlqDnjWAH9XM1OA==}
+ dependencies:
+ style-unit: 3.0.5
+ dev: true
+
+ /driver-miniapp@0.1.5:
+ resolution: {integrity: sha512-27SwcAaL50jhaQwhHDXqqiT1BtOw0sp1ZIk8YNvgyBLjrZJhkRx/LTS3xmfgXlKkft8wxsO3039lFXWxKTCDKA==}
+ dev: true
+
+ /driver-universal@3.5.0:
+ resolution: {integrity: sha512-Np6RFlzVyuy2xRmgbzlBIWYm3cIgpd2eVCNT0/Ai0fLpjaYhUUjejjobXGA7LiBR1C57YY51AbBsGZjjzQK99g==}
+ dependencies:
+ driver-dom: 2.2.2
+ driver-miniapp: 0.1.5
+ driver-weex: 2.1.0
+ universal-env: 3.3.3
+ dev: true
+
+ /driver-weex@2.1.0:
+ resolution: {integrity: sha512-Hl/Bdubctm8Cr24acSe8NKwOztmXS7qE3kh+eNjp+NvTPr8DBpDlRIj1g/r1b2Ci82cz43b+Tm29L+sAveoh8g==}
+ dependencies:
+ driver-dom: 2.2.2
+ style-unit: 3.0.5
+ dev: true
+
+ /duplexer@0.1.2:
+ resolution: {integrity: sha1-Or5DrvODX4rgd9E23c4PJ2sEAOY=}
+ dev: true
+
+ /duplexify@3.7.1:
+ resolution: {integrity: sha1-Kk31MX9sz9kfhtb9JdjYoQO4gwk=}
+ dependencies:
+ end-of-stream: 1.4.4
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ stream-shift: 1.0.1
+ dev: true
+
+ /eastasianwidth@0.2.0:
+ resolution: {integrity: sha1-aWzi7Aqg5uqTo5f/zySqeEDIJ8s=}
+ dev: true
+
+ /ee-first@1.1.1:
+ resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+ dev: true
+
+ /ejs@3.1.9:
+ resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+ dependencies:
+ jake: 10.8.7
+ dev: true
+
+ /electron-to-chromium@1.4.566:
+ resolution: {integrity: sha512-mv+fAy27uOmTVlUULy15U3DVJ+jg+8iyKH1bpwboCRhtDC69GKf1PPTZvEIhCyDr81RFqfxZJYrbgp933a1vtg==}
+ dev: true
+
+ /elliptic@6.5.4:
+ resolution: {integrity: sha1-2jfOvTHnmhNn6UG1ku0fvr1Yq7s=}
+ dependencies:
+ bn.js: 4.12.0
+ brorand: 1.1.0
+ hash.js: 1.1.7
+ hmac-drbg: 1.0.1
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: true
+
+ /emittery@0.7.2:
+ resolution: {integrity: sha1-JVlZCOE68PVnSrQZOW4vs5TN+oI=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /emoji-regex@7.0.3:
+ resolution: {integrity: sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=}
+ dev: true
+
+ /emoji-regex@8.0.0:
+ resolution: {integrity: sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=}
+ dev: true
+
+ /emoji-regex@9.2.2:
+ resolution: {integrity: sha1-hAyIA7DYBH9P8M+WMXazLU7z7XI=}
+ dev: true
+
+ /emojis-list@2.1.0:
+ resolution: {integrity: sha1-TapNnbAPmBmIDHn6RXrlsJof04k=}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /emojis-list@3.0.0:
+ resolution: {integrity: sha1-VXBmIEatKeLpFucariYKvf9Pang=}
+ engines: {node: '>= 4'}
+ dev: true
+
+ /encodeurl@1.0.2:
+ resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /end-of-stream@1.4.4:
+ resolution: {integrity: sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=}
+ dependencies:
+ once: 1.4.0
+ dev: true
+
+ /engine.io-client@3.5.3:
+ resolution: {integrity: sha512-qsgyc/CEhJ6cgMUwxRRtOndGVhIu5hpL5tR4umSpmX/MvkFoIxUTM7oFMDQumHNzlNLwSVy6qhstFPoWTf7dOw==}
+ dependencies:
+ component-emitter: 1.3.0
+ component-inherit: 0.0.3
+ debug: 3.1.0
+ engine.io-parser: 2.2.1
+ has-cors: 1.1.0
+ indexof: 0.0.1
+ parseqs: 0.0.6
+ parseuri: 0.0.6
+ ws: 7.4.6
+ xmlhttprequest-ssl: 1.6.3
+ yeast: 0.1.2
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /engine.io-parser@2.2.1:
+ resolution: {integrity: sha1-V85WEdk3DulPmWQbWJ+UyX5PXac=}
+ dependencies:
+ after: 0.8.2
+ arraybuffer.slice: 0.0.7
+ base64-arraybuffer: 0.1.4
+ blob: 0.0.5
+ has-binary2: 1.0.3
+ dev: true
+
+ /enhanced-resolve@4.5.0:
+ resolution: {integrity: sha1-Lzz9hNvjtIfxjy2y7x4GSlccpew=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ graceful-fs: 4.2.11
+ memory-fs: 0.5.0
+ tapable: 1.1.3
+ dev: true
+
+ /enquirer@2.4.1:
+ resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
+ engines: {node: '>=8.6'}
+ dependencies:
+ ansi-colors: 4.1.3
+ strip-ansi: 6.0.1
+ dev: true
+
+ /entities@1.1.2:
+ resolution: {integrity: sha1-vfpzUplmTfr9NFKe1PhSKidf6lY=}
+ dev: true
+
+ /entities@2.0.3:
+ resolution: {integrity: sha1-XEh+V0Krk8Fau12iJ1m4WQ7AO38=}
+ dev: true
+
+ /entities@2.2.0:
+ resolution: {integrity: sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=}
+ dev: true
+
+ /errno@0.1.8:
+ resolution: {integrity: sha1-i7Ppx9Rjvkl2/4iPdrSAnrwugR8=}
+ hasBin: true
+ dependencies:
+ prr: 1.0.1
+ dev: true
+
+ /error-ex@1.3.2:
+ resolution: {integrity: sha1-tKxAZIEH/c3PriQvQovqihTU8b8=}
+ dependencies:
+ is-arrayish: 0.2.1
+ dev: true
+
+ /error-stack-parser@2.1.4:
+ resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
+ dependencies:
+ stackframe: 1.3.4
+ dev: true
+
+ /error-stack-tracey@0.1.5:
+ resolution: {integrity: sha512-N7CgYM4f/JhakqcJ4ZwnzHuGu+qr/4i4CNofUnk6vhsTCEMw8RDDuqTykC1WlWNQ1LmdpYJsdYL99nqa585lRg==}
+ dependencies:
+ error-stack-parser: 2.1.4
+ source-map: 0.7.4
+ dev: true
+
+ /es-abstract@1.22.3:
+ resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ arraybuffer.prototype.slice: 1.0.2
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.5
+ es-set-tostringtag: 2.0.2
+ es-to-primitive: 1.2.1
+ function.prototype.name: 1.1.6
+ get-intrinsic: 1.2.2
+ get-symbol-description: 1.0.0
+ globalthis: 1.0.3
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ hasown: 2.0.0
+ internal-slot: 1.0.6
+ is-array-buffer: 3.0.2
+ is-callable: 1.2.7
+ is-negative-zero: 2.0.2
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ is-string: 1.0.7
+ is-typed-array: 1.1.12
+ is-weakref: 1.0.2
+ object-inspect: 1.13.1
+ object-keys: 1.1.1
+ object.assign: 4.1.4
+ regexp.prototype.flags: 1.5.1
+ safe-array-concat: 1.0.1
+ safe-regex-test: 1.0.0
+ string.prototype.trim: 1.2.8
+ string.prototype.trimend: 1.0.7
+ string.prototype.trimstart: 1.0.7
+ typed-array-buffer: 1.0.0
+ typed-array-byte-length: 1.0.0
+ typed-array-byte-offset: 1.0.0
+ typed-array-length: 1.0.4
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.13
+ dev: true
+
+ /es-array-method-boxes-properly@1.0.0:
+ resolution: {integrity: sha1-hz8+hEGN5O4Zxb51KZCy5EcY0J4=}
+ dev: true
+
+ /es-iterator-helpers@1.0.15:
+ resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==}
+ dependencies:
+ asynciterator.prototype: 1.0.0
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ es-set-tostringtag: 2.0.2
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.2
+ globalthis: 1.0.3
+ has-property-descriptors: 1.0.1
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ internal-slot: 1.0.6
+ iterator.prototype: 1.1.2
+ safe-array-concat: 1.0.1
+ dev: true
+
+ /es-module-lexer@0.7.1:
+ resolution: {integrity: sha1-wsjg9G8t8GJ0za8N0/OzPgoLJn0=}
+ dev: true
+
+ /es-module-lexer@0.9.3:
+ resolution: {integrity: sha1-bxPbAMw4QXE32vdDZvU1yOtDjxk=}
+ dev: true
+
+ /es-set-tostringtag@2.0.2:
+ resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.2
+ has-tostringtag: 1.0.0
+ hasown: 2.0.0
dev: true
/es-shim-unscopables@1.0.2:
resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
dependencies:
- hasown: 2.0.0
+ hasown: 2.0.0
+ dev: true
+
+ /es-to-primitive@1.2.1:
+ resolution: {integrity: sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ is-callable: 1.2.7
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
+ dev: true
+
+ /esbuild-android-64@0.14.54:
+ resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-android-arm64@0.14.54:
+ resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-darwin-64@0.14.54:
+ resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-darwin-arm64@0.14.54:
+ resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-freebsd-64@0.14.54:
+ resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-freebsd-arm64@0.14.54:
+ resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-32@0.14.54:
+ resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-64@0.14.54:
+ resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-arm64@0.14.54:
+ resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-arm@0.14.54:
+ resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-mips64le@0.14.54:
+ resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-ppc64le@0.14.54:
+ resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-riscv64@0.14.54:
+ resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-linux-s390x@0.14.54:
+ resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-netbsd-64@0.14.54:
+ resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-openbsd-64@0.14.54:
+ resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-sunos-64@0.14.54:
+ resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-windows-32@0.14.54:
+ resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-windows-64@0.14.54:
+ resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild-windows-arm64@0.14.54:
+ resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /esbuild@0.14.54:
+ resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/linux-loong64': 0.14.54
+ esbuild-android-64: 0.14.54
+ esbuild-android-arm64: 0.14.54
+ esbuild-darwin-64: 0.14.54
+ esbuild-darwin-arm64: 0.14.54
+ esbuild-freebsd-64: 0.14.54
+ esbuild-freebsd-arm64: 0.14.54
+ esbuild-linux-32: 0.14.54
+ esbuild-linux-64: 0.14.54
+ esbuild-linux-arm: 0.14.54
+ esbuild-linux-arm64: 0.14.54
+ esbuild-linux-mips64le: 0.14.54
+ esbuild-linux-ppc64le: 0.14.54
+ esbuild-linux-riscv64: 0.14.54
+ esbuild-linux-s390x: 0.14.54
+ esbuild-netbsd-64: 0.14.54
+ esbuild-openbsd-64: 0.14.54
+ esbuild-sunos-64: 0.14.54
+ esbuild-windows-32: 0.14.54
+ esbuild-windows-64: 0.14.54
+ esbuild-windows-arm64: 0.14.54
+ dev: true
+
+ /esbuild@0.18.20:
+ resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/android-arm': 0.18.20
+ '@esbuild/android-arm64': 0.18.20
+ '@esbuild/android-x64': 0.18.20
+ '@esbuild/darwin-arm64': 0.18.20
+ '@esbuild/darwin-x64': 0.18.20
+ '@esbuild/freebsd-arm64': 0.18.20
+ '@esbuild/freebsd-x64': 0.18.20
+ '@esbuild/linux-arm': 0.18.20
+ '@esbuild/linux-arm64': 0.18.20
+ '@esbuild/linux-ia32': 0.18.20
+ '@esbuild/linux-loong64': 0.18.20
+ '@esbuild/linux-mips64el': 0.18.20
+ '@esbuild/linux-ppc64': 0.18.20
+ '@esbuild/linux-riscv64': 0.18.20
+ '@esbuild/linux-s390x': 0.18.20
+ '@esbuild/linux-x64': 0.18.20
+ '@esbuild/netbsd-x64': 0.18.20
+ '@esbuild/openbsd-x64': 0.18.20
+ '@esbuild/sunos-x64': 0.18.20
+ '@esbuild/win32-arm64': 0.18.20
+ '@esbuild/win32-ia32': 0.18.20
+ '@esbuild/win32-x64': 0.18.20
+ dev: true
+
+ /escalade@3.1.1:
+ resolution: {integrity: sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /escape-html@1.0.3:
+ resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=}
+ dev: true
+
+ /escape-string-regexp@1.0.5:
+ resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
+ engines: {node: '>=0.8.0'}
+ dev: true
+
+ /escape-string-regexp@2.0.0:
+ resolution: {integrity: sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /escape-string-regexp@4.0.0:
+ resolution: {integrity: sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /escape-string-regexp@5.0.0:
+ resolution: {integrity: sha1-RoMSa1ALYXYvLb66zhgG6L4xscg=}
+ engines: {node: '>=12'}
+ dev: false
+
+ /escodegen@2.1.0:
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+ dependencies:
+ esprima: 4.0.1
+ estraverse: 5.3.0
+ esutils: 2.0.3
+ optionalDependencies:
+ source-map: 0.6.1
+ dev: true
+
+ /eslint-config-ali@12.2.2(eslint@7.32.0):
+ resolution: {integrity: sha512-MGW0nDVp9CR073UggEqw9lxndJk52g+WBf4oYbKV+ZesWU3m9+ko0zdn4m5wUIBYSpXoAHXTGS5lqjOQrL7e4Q==}
+ peerDependencies:
+ eslint: '>=6.8.0'
+ dependencies:
+ eslint: 7.32.0
+ dev: true
+
+ /eslint-config-egg@12.3.1(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-+0VZw6oklJZNERkTJSDCvna5NFXYKbP4QvcqqhLt5MpRivGyq1NB5bExlHcLqh6VlHWzz/tZDO/hEkQutJNgOA==}
+ engines: {node: '>= 14.17.0'}
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@8.52.0)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ eslint-plugin-eggache: 2.0.0
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)
+ eslint-plugin-jsdoc: 39.9.1(eslint@8.52.0)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0)
+ eslint-plugin-node: 11.1.0(eslint@8.52.0)
+ eslint-plugin-react: 7.33.2(eslint@8.52.0)
+ transitivePeerDependencies:
+ - eslint
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ - typescript
+ dev: true
+
+ /eslint-config-egg@9.0.0(eslint@7.32.0)(typescript@5.2.2):
+ resolution: {integrity: sha1-pblSRbmyH+QWreDm29MGazyNHpw=}
+ engines: {node: '>=10.0.0'}
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 3.10.1(@typescript-eslint/parser@3.10.1)(eslint@7.32.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 3.10.1(eslint@7.32.0)(typescript@5.2.2)
+ babel-eslint: 8.2.6
+ eslint-plugin-eggache: 1.0.0
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@3.10.1)(eslint@7.32.0)
+ eslint-plugin-jsdoc: 4.8.4(eslint@7.32.0)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0)
+ eslint-plugin-node: 11.1.0(eslint@7.32.0)
+ eslint-plugin-react: 7.33.2(eslint@7.32.0)
+ transitivePeerDependencies:
+ - eslint
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ - typescript
+ dev: true
+
+ /eslint-config-prettier@7.2.0(eslint@7.32.0):
+ resolution: {integrity: sha1-9KS9KDLoEOjMfBQR7IWz6FwMU/k=}
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ eslint: 7.32.0
+ dev: true
+
+ /eslint-config-prettier@8.10.0(eslint@8.52.0):
+ resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
+ hasBin: true
+ peerDependencies:
+ eslint: '>=7.0.0'
+ dependencies:
+ eslint: 8.52.0
+ dev: true
+
+ /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ eslint: ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@8.52.0)
+ '@rushstack/eslint-patch': 1.5.1
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ babel-preset-react-app: 10.0.1
+ confusing-browser-globals: 1.0.11
+ eslint: 8.52.0
+ eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0)
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0)
+ eslint-plugin-react: 7.33.2(eslint@8.52.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@8.52.0)
+ eslint-plugin-testing-library: 5.11.1(eslint@8.52.0)(typescript@4.9.5)
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - '@babel/plugin-syntax-flow'
+ - '@babel/plugin-transform-react-jsx'
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - jest
+ - supports-color
+ dev: true
+
+ /eslint-config-tenx@4.0.0(@babel/core@7.23.2)(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-vkQ+meyg5uIM1kKf0oI9HuOnLN5aa7OMKoCQyYaGzEdLH5AhE1uYdCK/Kseshk96NC7CkZ9TMt3E0hrLMM863w==}
+ peerDependencies:
+ '@babel/core': '>=7.11.0'
+ '@babel/plugin-syntax-flow': ^7.14.5
+ '@babel/plugin-transform-react-jsx': ^7.14.5
+ eslint: 8.x
+ typescript: 4.x
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@8.52.0)
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ eslint: 8.52.0
+ eslint-config-egg: 12.3.1(eslint@8.52.0)(typescript@4.9.5)
+ eslint-config-prettier: 8.10.0(eslint@8.52.0)
+ eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0)(typescript@4.9.5)
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0)
+ eslint-plugin-react: 7.33.2(eslint@8.52.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@8.52.0)
+ typescript: 4.9.5
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - jest
+ - supports-color
+ dev: true
+
+ /eslint-import-resolver-node@0.3.9:
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.13.1
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@3.10.1)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0):
+ resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 3.10.1(eslint@7.32.0)(typescript@5.2.2)
+ debug: 3.2.7
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0):
+ resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.2.2)
+ debug: 3.2.7
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.52.0):
+ resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ debug: 3.2.7
+ eslint: 8.52.0
+ eslint-import-resolver-node: 0.3.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-plugin-eggache@1.0.0:
+ resolution: {integrity: sha1-H4+YxpjStRFRn73vuueP4jBIeqQ=}
+ engines: {node: '>=6.0.0'}
+ dev: true
+
+ /eslint-plugin-eggache@2.0.0:
+ resolution: {integrity: sha512-IHPrZ8LZgTRJTN5e6bXEgmv4vE0yDTAYFgHyvlf2KED8gRSiZ/kVPur+VHjpV4/8OVGJg2YaNEqsiBHxgMCKyA==}
+ engines: {node: '>=14.17.0'}
+ dev: true
+
+ /eslint-plugin-es@3.0.1(eslint@7.32.0):
+ resolution: {integrity: sha1-dafN/czdwFiZNK7rOEF18iHFeJM=}
+ engines: {node: '>=8.10.0'}
+ peerDependencies:
+ eslint: '>=4.19.1'
+ dependencies:
+ eslint: 7.32.0
+ eslint-utils: 2.1.0
+ regexpp: 3.2.0
+ dev: true
+
+ /eslint-plugin-es@3.0.1(eslint@8.52.0):
+ resolution: {integrity: sha1-dafN/czdwFiZNK7rOEF18iHFeJM=}
+ engines: {node: '>=8.10.0'}
+ peerDependencies:
+ eslint: '>=4.19.1'
+ dependencies:
+ eslint: 8.52.0
+ eslint-utils: 2.1.0
+ regexpp: 3.2.0
+ dev: true
+
+ /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0):
+ resolution: {integrity: sha1-4VV+NxGPJHNKoxIudTagONNKSRI=}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@babel/plugin-syntax-flow': ^7.14.5
+ '@babel/plugin-transform-react-jsx': ^7.14.9
+ eslint: ^8.1.0
+ dependencies:
+ '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
+ eslint: 8.52.0
+ lodash: 4.17.21
+ string-natural-compare: 3.0.1
+ dev: true
+
+ /eslint-plugin-import@2.29.0(@typescript-eslint/parser@3.10.1)(eslint@7.32.0):
+ resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 3.10.1(eslint@7.32.0)(typescript@5.2.2)
+ array-includes: 3.1.7
+ array.prototype.findlastindex: 1.2.3
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@3.10.1)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0)
+ hasown: 2.0.0
+ is-core-module: 2.13.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.7
+ object.groupby: 1.0.1
+ object.values: 1.1.7
+ semver: 6.3.1
+ tsconfig-paths: 3.14.2
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
+ /eslint-plugin-import@2.29.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0):
+ resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.2.2)
+ array-includes: 3.1.7
+ array.prototype.findlastindex: 1.2.3
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint@7.32.0)
+ hasown: 2.0.0
+ is-core-module: 2.13.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.7
+ object.groupby: 1.0.1
+ object.values: 1.1.7
+ semver: 6.3.1
+ tsconfig-paths: 3.14.2
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
+ /eslint-plugin-import@2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0):
+ resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ array-includes: 3.1.7
+ array.prototype.findlastindex: 1.2.3
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 8.52.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.52.0)
+ hasown: 2.0.0
+ is-core-module: 2.13.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.7
+ object.groupby: 1.0.1
+ object.values: 1.1.7
+ semver: 6.3.1
+ tsconfig-paths: 3.14.2
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
+ /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ jest: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/eslint-plugin':
+ optional: true
+ jest:
+ optional: true
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ eslint: 8.52.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /eslint-plugin-jsdoc@39.9.1(eslint@8.52.0):
+ resolution: {integrity: sha512-Rq2QY6BZP2meNIs48aZ3GlIlJgBqFCmR55+UBvaDkA3ZNQ0SvQXOs2QKkubakEijV8UbIVbVZKsOVN8G3MuqZw==}
+ engines: {node: ^14 || ^16 || ^17 || ^18 || ^19}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ dependencies:
+ '@es-joy/jsdoccomment': 0.36.1
+ comment-parser: 1.3.1
+ debug: 4.3.4
+ escape-string-regexp: 4.0.0
+ eslint: 8.52.0
+ esquery: 1.5.0
+ semver: 7.5.4
+ spdx-expression-parse: 3.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-plugin-jsdoc@4.8.4(eslint@7.32.0):
+ resolution: {integrity: sha1-MfQTyKMf5laIE5jYkgs4G/36xhg=}
+ engines: {node: '>=4'}
+ peerDependencies:
+ eslint: '>=4.14.0'
+ dependencies:
+ comment-parser: 0.5.5
+ eslint: 7.32.0
+ jsdoctypeparser: 3.1.0
+ lodash: 4.17.21
+ dev: true
+
+ /eslint-plugin-jsx-a11y@6.7.1(eslint@7.32.0):
+ resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ dependencies:
+ '@babel/runtime': 7.23.2
+ aria-query: 5.3.0
+ array-includes: 3.1.7
+ array.prototype.flatmap: 1.3.2
+ ast-types-flow: 0.0.7
+ axe-core: 4.8.2
+ axobject-query: 3.2.1
+ damerau-levenshtein: 1.0.8
+ emoji-regex: 9.2.2
+ eslint: 7.32.0
+ has: 1.0.4
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.5
+ minimatch: 3.1.2
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
+ semver: 6.3.1
+ dev: true
+
+ /eslint-plugin-jsx-a11y@6.7.1(eslint@8.52.0):
+ resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ dependencies:
+ '@babel/runtime': 7.23.2
+ aria-query: 5.3.0
+ array-includes: 3.1.7
+ array.prototype.flatmap: 1.3.2
+ ast-types-flow: 0.0.7
+ axe-core: 4.8.2
+ axobject-query: 3.2.1
+ damerau-levenshtein: 1.0.8
+ emoji-regex: 9.2.2
+ eslint: 8.52.0
+ has: 1.0.4
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.5
+ minimatch: 3.1.2
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
+ semver: 6.3.1
+ dev: true
+
+ /eslint-plugin-node@11.1.0(eslint@7.32.0):
+ resolution: {integrity: sha1-yVVEQW7kraJnQKMEdO78VALcZx0=}
+ engines: {node: '>=8.10.0'}
+ peerDependencies:
+ eslint: '>=5.16.0'
+ dependencies:
+ eslint: 7.32.0
+ eslint-plugin-es: 3.0.1(eslint@7.32.0)
+ eslint-utils: 2.1.0
+ ignore: 5.2.4
+ minimatch: 3.1.2
+ resolve: 1.22.8
+ semver: 6.3.1
+ dev: true
+
+ /eslint-plugin-node@11.1.0(eslint@8.52.0):
+ resolution: {integrity: sha1-yVVEQW7kraJnQKMEdO78VALcZx0=}
+ engines: {node: '>=8.10.0'}
+ peerDependencies:
+ eslint: '>=5.16.0'
+ dependencies:
+ eslint: 8.52.0
+ eslint-plugin-es: 3.0.1(eslint@8.52.0)
+ eslint-utils: 2.1.0
+ ignore: 5.2.4
+ minimatch: 3.1.2
+ resolve: 1.22.8
+ semver: 6.3.1
+ dev: true
+
+ /eslint-plugin-prettier@3.4.1(eslint-config-prettier@7.2.0)(eslint@7.32.0)(prettier@2.8.8):
+ resolution: {integrity: sha1-6d2yAO+289Bf/oOxZlpxavSjh+U=}
+ engines: {node: '>=6.0.0'}
+ peerDependencies:
+ eslint: '>=5.0.0'
+ eslint-config-prettier: '*'
+ prettier: '>=1.13.0'
+ peerDependenciesMeta:
+ eslint-config-prettier:
+ optional: true
+ dependencies:
+ eslint: 7.32.0
+ eslint-config-prettier: 7.2.0(eslint@7.32.0)
+ prettier: 2.8.8
+ prettier-linter-helpers: 1.0.0
+ dev: true
+
+ /eslint-plugin-react-hooks@4.6.0(eslint@7.32.0):
+ resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ dependencies:
+ eslint: 7.32.0
+ dev: true
+
+ /eslint-plugin-react-hooks@4.6.0(eslint@8.52.0):
+ resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ dependencies:
+ eslint: 8.52.0
+ dev: true
+
+ /eslint-plugin-react@7.33.2(eslint@7.32.0):
+ resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ dependencies:
+ array-includes: 3.1.7
+ array.prototype.flatmap: 1.3.2
+ array.prototype.tosorted: 1.1.2
+ doctrine: 2.1.0
+ es-iterator-helpers: 1.0.15
+ eslint: 7.32.0
+ estraverse: 5.3.0
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
+ object.hasown: 1.1.3
+ object.values: 1.1.7
+ prop-types: 15.8.1
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.10
+ dev: true
+
+ /eslint-plugin-react@7.33.2(eslint@8.52.0):
+ resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ dependencies:
+ array-includes: 3.1.7
+ array.prototype.flatmap: 1.3.2
+ array.prototype.tosorted: 1.1.2
+ doctrine: 2.1.0
+ es-iterator-helpers: 1.0.15
+ eslint: 8.52.0
+ estraverse: 5.3.0
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.7
+ object.fromentries: 2.0.7
+ object.hasown: 1.1.3
+ object.values: 1.1.7
+ prop-types: 15.8.1
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.10
+ dev: true
+
+ /eslint-plugin-testing-library@5.11.1(eslint@8.52.0)(typescript@4.9.5):
+ resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
+ peerDependencies:
+ eslint: ^7.5.0 || ^8.0.0
+ dependencies:
+ '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
+ eslint: 8.52.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /eslint-plugin-vue@7.20.0(eslint@7.32.0):
+ resolution: {integrity: sha1-mMIYhaa/3wcTw6kpV6Wv6q7tklM=}
+ engines: {node: '>=8.10'}
+ peerDependencies:
+ eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
+ dependencies:
+ eslint: 7.32.0
+ eslint-utils: 2.1.0
+ natural-compare: 1.4.0
+ semver: 6.3.1
+ vue-eslint-parser: 7.11.0(eslint@7.32.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-scope@3.7.1:
+ resolution: {integrity: sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
+
+ /eslint-scope@4.0.3:
+ resolution: {integrity: sha1-ygODMxD2iJoyZHgaqC5j65z+eEg=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
+
+ /eslint-scope@5.1.1:
+ resolution: {integrity: sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
+
+ /eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+ dev: true
+
+ /eslint-utils@2.1.0:
+ resolution: {integrity: sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=}
+ engines: {node: '>=6'}
+ dependencies:
+ eslint-visitor-keys: 1.3.0
+ dev: true
+
+ /eslint-utils@3.0.0(eslint@7.32.0):
+ resolution: {integrity: sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=}
+ engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
+ peerDependencies:
+ eslint: '>=5'
+ dependencies:
+ eslint: 7.32.0
+ eslint-visitor-keys: 2.1.0
+ dev: true
+
+ /eslint-visitor-keys@1.3.0:
+ resolution: {integrity: sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /eslint-visitor-keys@2.1.0:
+ resolution: {integrity: sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
+
+ /eslint@7.32.0:
+ resolution: {integrity: sha1-xtMooUvj+wjI0dIeEsAv23oqgS0=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ hasBin: true
+ dependencies:
+ '@babel/code-frame': 7.12.11
+ '@eslint/eslintrc': 0.4.3
+ '@humanwhocodes/config-array': 0.5.0
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.3
+ debug: 4.3.4
+ doctrine: 3.0.0
+ enquirer: 2.4.1
+ escape-string-regexp: 4.0.0
+ eslint-scope: 5.1.1
+ eslint-utils: 2.1.0
+ eslint-visitor-keys: 2.1.0
+ espree: 7.3.1
+ esquery: 1.5.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ functional-red-black-tree: 1.0.1
+ glob-parent: 5.1.2
+ globals: 13.23.0
+ ignore: 4.0.6
+ import-fresh: 3.3.0
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ js-yaml: 3.14.1
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.3
+ progress: 2.0.3
+ regexpp: 3.2.0
+ semver: 7.5.4
+ strip-ansi: 6.0.1
+ strip-json-comments: 3.1.1
+ table: 6.8.1
+ text-table: 0.2.0
+ v8-compile-cache: 2.4.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint@8.52.0:
+ resolution: {integrity: sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ hasBin: true
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
+ '@eslint-community/regexpp': 4.9.1
+ '@eslint/eslintrc': 2.1.2
+ '@eslint/js': 8.52.0
+ '@humanwhocodes/config-array': 0.11.13
+ '@humanwhocodes/module-importer': 1.0.1
+ '@nodelib/fs.walk': 1.2.8
+ '@ungap/structured-clone': 1.2.0
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.3
+ debug: 4.3.4
+ doctrine: 3.0.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 7.2.2
+ eslint-visitor-keys: 3.4.3
+ espree: 9.6.1
+ esquery: 1.5.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 6.0.1
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ globals: 13.23.0
+ graphemer: 1.4.0
+ ignore: 5.2.4
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ is-path-inside: 3.0.3
+ js-yaml: 4.1.0
+ json-stable-stringify-without-jsonify: 1.0.1
+ levn: 0.4.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.3
+ strip-ansi: 6.0.1
+ text-table: 0.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /espree@6.2.1:
+ resolution: {integrity: sha1-d/xy4f10SiBSwg84pbV1gy6Cc0o=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ acorn: 7.4.1
+ acorn-jsx: 5.3.2(acorn@7.4.1)
+ eslint-visitor-keys: 1.3.0
+ dev: true
+
+ /espree@7.3.1:
+ resolution: {integrity: sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ dependencies:
+ acorn: 7.4.1
+ acorn-jsx: 5.3.2(acorn@7.4.1)
+ eslint-visitor-keys: 1.3.0
+ dev: true
+
+ /espree@9.6.1:
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ acorn: 8.10.0
+ acorn-jsx: 5.3.2(acorn@8.10.0)
+ eslint-visitor-keys: 3.4.3
+ dev: true
+
+ /esprima@4.0.1:
+ resolution: {integrity: sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: true
+
+ /esquery@1.5.0:
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ engines: {node: '>=0.10'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
+
+ /esrecurse@4.3.0:
+ resolution: {integrity: sha1-eteWTWeauyi+5yzsY3WLHF0smSE=}
+ engines: {node: '>=4.0'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
+
+ /estraverse@4.3.0:
+ resolution: {integrity: sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=}
+ engines: {node: '>=4.0'}
+ dev: true
+
+ /estraverse@5.3.0:
+ resolution: {integrity: sha1-LupSkHAvJquP5TcDcP+GyWXSESM=}
+ engines: {node: '>=4.0'}
+ dev: true
+
+ /estree-to-babel@3.2.1:
+ resolution: {integrity: sha1-gueDFSdcPKdEdf3IrBpRA8inW/U=}
+ engines: {node: '>=8.3.0'}
+ dependencies:
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ c8: 7.14.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /estree-walker@2.0.2:
+ resolution: {integrity: sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=}
+ dev: true
+
+ /esutils@2.0.3:
+ resolution: {integrity: sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /etag@1.8.1:
+ resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /eventemitter3@4.0.7:
+ resolution: {integrity: sha1-Lem2j2Uo1WRO9cWVJqG0oHMGFp8=}
+ dev: true
+
+ /eventemitter3@5.0.1:
+ resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+ dev: true
+
+ /events@3.3.0:
+ resolution: {integrity: sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=}
+ engines: {node: '>=0.8.x'}
+ dev: true
+
+ /eventsource@1.1.2:
+ resolution: {integrity: sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA==}
+ engines: {node: '>=0.12.0'}
+ dev: true
+
+ /eventsource@2.0.2:
+ resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==}
+ engines: {node: '>=12.0.0'}
+ dev: true
+
+ /evp_bytestokey@1.0.3:
+ resolution: {integrity: sha1-f8vbGY3HGVlDLv4ThCaE4FJaywI=}
+ dependencies:
+ md5.js: 1.3.5
+ safe-buffer: 5.2.1
+ dev: true
+
+ /exec-sh@0.3.6:
+ resolution: {integrity: sha1-/yZPnjJVGaYMteJzaSlDSDzKY7w=}
+ dev: true
+
+ /execa@1.0.0:
+ resolution: {integrity: sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg=}
+ engines: {node: '>=6'}
+ dependencies:
+ cross-spawn: 6.0.5
+ get-stream: 4.1.0
+ is-stream: 1.1.0
+ npm-run-path: 2.0.2
+ p-finally: 1.0.0
+ signal-exit: 3.0.7
+ strip-eof: 1.0.0
+ dev: true
+
+ /execa@4.1.0:
+ resolution: {integrity: sha1-TlSRrRVy8vF6d9OIxshXE1sihHo=}
+ engines: {node: '>=10'}
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 5.2.0
+ human-signals: 1.1.1
+ is-stream: 2.0.1
+ merge-stream: 2.0.0
+ npm-run-path: 4.0.1
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ strip-final-newline: 2.0.0
+ dev: true
+
+ /execa@5.1.1:
+ resolution: {integrity: sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=}
+ engines: {node: '>=10'}
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 6.0.1
+ human-signals: 2.1.0
+ is-stream: 2.0.1
+ merge-stream: 2.0.0
+ npm-run-path: 4.0.1
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ strip-final-newline: 2.0.0
+ dev: true
+
+ /execa@7.2.0:
+ resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 6.0.1
+ human-signals: 4.3.1
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.1.0
+ onetime: 6.0.0
+ signal-exit: 3.0.7
+ strip-final-newline: 3.0.0
+ dev: true
+
+ /execall@2.0.0:
+ resolution: {integrity: sha1-FqBrX+UJnffQC+XZwG7s3tFmO0U=}
+ engines: {node: '>=8'}
+ dependencies:
+ clone-regexp: 2.2.0
+ dev: true
+
+ /exit@0.1.2:
+ resolution: {integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=}
+ engines: {node: '>= 0.8.0'}
+ dev: true
+
+ /expand-brackets@2.1.4:
+ resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /expand-brackets@2.1.4(supports-color@6.1.0):
+ resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ debug: 2.6.9(supports-color@6.1.0)
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ posix-character-classes: 0.1.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2(supports-color@6.1.0)
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /expect@26.6.2:
+ resolution: {integrity: sha1-xrmWvya/P+GLZ7LQ9R/JgbqTRBc=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ ansi-styles: 4.3.0
+ jest-get-type: 26.3.0
+ jest-matcher-utils: 26.6.2
+ jest-message-util: 26.6.2
+ jest-regex-util: 26.0.0
+ dev: true
+
+ /export-dirs@0.2.4:
+ resolution: {integrity: sha512-fBQ2iiw2FPxyzsOOVpWICXUNbuSBanxYYyDy1gaF4Gpfp7UkiuPA6N57Daqf7FpFDyT3g1+L+Rz4tr4aRj9SRw==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /export-files@2.1.1:
+ resolution: {integrity: sha512-r2x1Zt0OKgdXRy0bXis3sOI8TNYmo5Fe71qXwsvpYaMvIlH5G0fWEf3AYiE2bONjePdSOojca7Jw+p9CQ6/6NQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ lazy-cache: 1.0.4
+ dev: true
+
+ /express@4.18.2(supports-color@6.1.0):
+ resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
+ engines: {node: '>= 0.10.0'}
+ dependencies:
+ accepts: 1.3.8
+ array-flatten: 1.1.1
+ body-parser: 1.20.1(supports-color@6.1.0)
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.5.0
+ cookie-signature: 1.0.6
+ debug: 2.6.9(supports-color@6.1.0)
+ depd: 2.0.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 1.2.0(supports-color@6.1.0)
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ merge-descriptors: 1.0.1
+ methods: 1.1.2
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ path-to-regexp: 0.1.7
+ proxy-addr: 2.0.7
+ qs: 6.11.0
+ range-parser: 1.2.1
+ safe-buffer: 5.2.1
+ send: 0.18.0(supports-color@6.1.0)
+ serve-static: 1.15.0(supports-color@6.1.0)
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ type-is: 1.6.18
+ utils-merge: 1.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /extend-shallow@2.0.1:
+ resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extendable: 0.1.1
+ dev: true
+
+ /extend-shallow@3.0.2:
+ resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ assign-symbols: 1.0.0
+ is-extendable: 1.0.1
+ dev: true
+
+ /extend@3.0.2:
+ resolution: {integrity: sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=}
+
+ /external-editor@3.1.0:
+ resolution: {integrity: sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=}
+ engines: {node: '>=4'}
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+ dev: true
+
+ /extglob@2.0.4:
+ resolution: {integrity: sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /extglob@2.0.4(supports-color@6.1.0):
+ resolution: {integrity: sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-unique: 0.3.2
+ define-property: 1.0.0
+ expand-brackets: 2.1.4(supports-color@6.1.0)
+ extend-shallow: 2.0.1
+ fragment-cache: 0.2.1
+ regex-not: 1.0.2
+ snapdragon: 0.8.2(supports-color@6.1.0)
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /f2elint@1.2.3(typescript@5.2.2):
+ resolution: {integrity: sha512-ejF3ZB758EHUjH5sw9jMbtWCdz9KlN7UGQhZUUN0760IE8B9RWN3KKneI43JkW27LZa2MaKC4+015lHvnSMOZQ==}
+ hasBin: true
+ dependencies:
+ '@commitlint/cli': 11.0.0
+ '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@5.2.2)
+ babel-eslint: 10.1.0(eslint@7.32.0)
+ chalk: 4.1.2
+ command-exists: 1.2.9
+ commander: 6.2.1
+ commitlint-config-ali: 0.1.3
+ cross-spawn: 7.0.3
+ ejs: 3.1.9
+ eslint: 7.32.0
+ eslint-config-ali: 12.2.2(eslint@7.32.0)
+ eslint-config-egg: 9.0.0(eslint@7.32.0)(typescript@5.2.2)
+ eslint-config-prettier: 7.2.0(eslint@7.32.0)
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)
+ eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0)
+ eslint-plugin-prettier: 3.4.1(eslint-config-prettier@7.2.0)(eslint@7.32.0)(prettier@2.8.8)
+ eslint-plugin-react: 7.33.2(eslint@7.32.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0)
+ eslint-plugin-vue: 7.20.0(eslint@7.32.0)
+ execa: 5.1.1
+ fs-extra: 9.1.0
+ glob: 7.2.3
+ husky: 3.1.0
+ inquirer: 7.3.3
+ is-docker: 2.2.1
+ lodash: 4.17.21
+ markdownlint: 0.22.0
+ markdownlint-config-ali: 0.1.1(markdownlint@0.22.0)
+ markdownlint-rule-helpers: 0.13.0
+ ora: 5.4.1
+ prettier: 2.8.8
+ strip-ansi: 6.0.1
+ stylelint: 13.13.1
+ stylelint-config-ali: 0.4.2(stylelint-scss@3.21.0)(stylelint@13.13.1)
+ stylelint-scss: 3.21.0(stylelint@13.13.1)
+ terminal-link: 2.1.1
+ text-table: 0.2.0
+ vue-eslint-parser: 7.11.0(eslint@7.32.0)
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - postcss-jsx
+ - postcss-markdown
+ - supports-color
+ - typescript
+ dev: true
+
+ /fast-deep-equal@3.1.3:
+ resolution: {integrity: sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=}
+ dev: true
+
+ /fast-diff@1.3.0:
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+ dev: true
+
+ /fast-glob@2.2.7:
+ resolution: {integrity: sha1-aVOFfDr6R1//ku5gFdUtpwpM050=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ '@mrmlnc/readdir-enhanced': 2.2.1
+ '@nodelib/fs.stat': 1.1.3
+ glob-parent: 3.1.0
+ is-glob: 4.0.3
+ merge2: 1.4.1
+ micromatch: 3.1.10
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /fast-glob@3.3.1:
+ resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
+ engines: {node: '>=8.6.0'}
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.5
+ dev: true
+
+ /fast-json-stable-stringify@2.1.0:
+ resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=}
+ dev: true
+
+ /fast-levenshtein@2.0.6:
+ resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
+ dev: true
+
+ /fastest-levenshtein@1.0.16:
+ resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
+ engines: {node: '>= 4.9.1'}
+ dev: true
+
+ /fastparse@1.1.2:
+ resolution: {integrity: sha1-kXKMWllC7O2FMSg8eUQe5BIsNak=}
+ dev: true
+
+ /fastq@1.15.0:
+ resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
+ dependencies:
+ reusify: 1.0.4
+ dev: true
+
+ /faye-websocket@0.11.4:
+ resolution: {integrity: sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=}
+ engines: {node: '>=0.8.0'}
+ dependencies:
+ websocket-driver: 0.7.4
+ dev: true
+
+ /fb-watchman@2.0.2:
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
+ dependencies:
+ bser: 2.1.1
+ dev: true
+
+ /fetch-jsonp@1.3.0:
+ resolution: {integrity: sha512-hxCYGvmANEmpkHpeWY8Kawfa5Z1t2csTpIClIDG/0S92eALWHRU1RnGaj86Tf5Cc0QF+afSa4SQ4pFB2rFM5QA==}
+ dev: true
+
+ /figgy-pudding@3.5.2:
+ resolution: {integrity: sha1-tO7oFIq7Adzx0aw0Nn1Z4S+mHW4=}
+ dev: true
+
+ /figures@2.0.0:
+ resolution: {integrity: sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=}
+ engines: {node: '>=4'}
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+
+ /figures@3.2.0:
+ resolution: {integrity: sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8=}
+ engines: {node: '>=8'}
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+
+ /file-entry-cache@6.0.1:
+ resolution: {integrity: sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=}
+ engines: {node: ^10.12.0 || >=12.0.0}
+ dependencies:
+ flat-cache: 3.1.1
+ dev: true
+
+ /file-loader@5.1.0(webpack@4.47.0):
+ resolution: {integrity: sha1-y1bAcO/A5AZmQkMJvQ2eRaxvK7g=}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ loader-utils: 1.4.2
+ schema-utils: 2.7.1
+ webpack: 4.47.0
+ dev: true
+
+ /file-uri-to-path@1.0.0:
+ resolution: {integrity: sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90=}
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /filelist@1.0.4:
+ resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
+ dependencies:
+ minimatch: 5.1.6
+ dev: true
+
+ /filesize@3.6.1:
+ resolution: {integrity: sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc=}
+ engines: {node: '>= 0.4.0'}
+ dev: true
+
+ /filesize@6.0.1:
+ resolution: {integrity: sha1-+FC1CZCcfIb35FDqGQBsMcLtPS8=}
+ engines: {node: '>= 0.4.0'}
+ dev: true
+
+ /fill-range@4.0.0:
+ resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 2.0.1
+ is-number: 3.0.0
+ repeat-string: 1.6.1
+ to-regex-range: 2.1.1
+ dev: true
+
+ /fill-range@7.0.1:
+ resolution: {integrity: sha1-GRmmp8df44ssfHflGYU12prN2kA=}
+ engines: {node: '>=8'}
+ dependencies:
+ to-regex-range: 5.0.1
+ dev: true
+
+ /filter-obj@1.1.0:
+ resolution: {integrity: sha1-mzERErxsYSehbgFsbF1/GeCAXFs=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /finalhandler@1.2.0(supports-color@6.1.0):
+ resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ debug: 2.6.9(supports-color@6.1.0)
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.1
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /find-babel-config@1.2.0:
+ resolution: {integrity: sha1-qbezF+tbmGDNqdVHQKjIM3oig6I=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ json5: 0.5.1
+ path-exists: 3.0.0
+ dev: true
+
+ /find-cache-dir@2.1.0:
+ resolution: {integrity: sha1-jQ+UzRP+Q8bHwmGg2GEVypGMBfc=}
+ engines: {node: '>=6'}
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 2.1.0
+ pkg-dir: 3.0.0
+ dev: true
+
+ /find-cache-dir@3.3.2:
+ resolution: {integrity: sha1-swxbbv8HMHMa6pu9nb7L2AJW1ks=}
+ engines: {node: '>=8'}
+ dependencies:
+ commondir: 1.0.1
+ make-dir: 3.1.0
+ pkg-dir: 4.2.0
+ dev: true
+
+ /find-config@1.0.0:
+ resolution: {integrity: sha512-Z+suHH+7LSE40WfUeZPIxSxypCWvrzdVc60xAjUShZeT5eMWM0/FQUduq3HjluyfAHWvC/aOBkT1pTZktyF/jg==}
+ engines: {node: '>= 0.12'}
+ dependencies:
+ user-home: 2.0.0
+ dev: true
+
+ /find-root@1.1.0:
+ resolution: {integrity: sha1-q8/Iunb3CMQql7PWhbfpRQv7nOQ=}
+ dev: true
+
+ /find-up@2.1.0:
+ resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=}
+ engines: {node: '>=4'}
+ dependencies:
+ locate-path: 2.0.0
+ dev: true
+
+ /find-up@3.0.0:
+ resolution: {integrity: sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=}
+ engines: {node: '>=6'}
+ dependencies:
+ locate-path: 3.0.0
+ dev: true
+
+ /find-up@4.1.0:
+ resolution: {integrity: sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=}
+ engines: {node: '>=8'}
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+ dev: true
+
+ /find-up@5.0.0:
+ resolution: {integrity: sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=}
+ engines: {node: '>=10'}
+ dependencies:
+ locate-path: 6.0.0
+ path-exists: 4.0.0
+ dev: true
+
+ /flat-cache@3.1.1:
+ resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==}
+ engines: {node: '>=12.0.0'}
+ dependencies:
+ flatted: 3.2.9
+ keyv: 4.5.4
+ rimraf: 3.0.2
+ dev: true
+
+ /flat@5.0.2:
+ resolution: {integrity: sha1-jKb+MyBp/6nTJMMnGYxZglnOskE=}
+ hasBin: true
+ dev: true
+
+ /flatted@3.2.9:
+ resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
+ dev: true
+
+ /flatten@1.0.3:
+ resolution: {integrity: sha1-wSg6yfJ7Noq8HjbR/3sEUBowNWs=}
+ deprecated: flatten is deprecated in favor of utility frameworks such as lodash.
+ dev: true
+
+ /flush-write-stream@1.1.1:
+ resolution: {integrity: sha1-jdfYc6G6vCB9lOrQwuDkQnbr8ug=}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: true
+
+ /follow-redirects@1.15.3:
+ resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dev: true
+
+ /follow-redirects@1.15.3(debug@4.3.4):
+ resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dependencies:
+ debug: 4.3.4(supports-color@6.1.0)
+ dev: true
+
+ /for-each@0.3.3:
+ resolution: {integrity: sha1-abRH6IoKXTLD5whPPxcQA0shN24=}
+ dependencies:
+ is-callable: 1.2.7
+ dev: true
+
+ /for-in@0.1.8:
+ resolution: {integrity: sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /for-in@1.0.2:
+ resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /for-own@0.1.5:
+ resolution: {integrity: sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 1.0.2
+ dev: true
+
+ /foreground-child@2.0.0:
+ resolution: {integrity: sha1-cbMoAMnxWqjy+D9Ka9m/812GGlM=}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ cross-spawn: 7.0.3
+ signal-exit: 3.0.7
+ dev: true
+
+ /fork-ts-checker-webpack-plugin@1.5.0(eslint@7.32.0)(typescript@5.2.2)(webpack@4.47.0):
+ resolution: {integrity: sha1-zh13GQtE2Bp2GxC2KEo3N5XkHww=}
+ engines: {node: '>=6.11.5', yarn: '>=1.0.0'}
+ peerDependencies:
+ eslint: '>= 6'
+ typescript: '>= 2.7'
+ vue-template-compiler: '*'
+ webpack: '>= 4'
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+ vue-template-compiler:
+ optional: true
+ dependencies:
+ babel-code-frame: 6.26.0
+ chalk: 2.4.2
+ chokidar: 2.1.8
+ eslint: 7.32.0
+ micromatch: 3.1.10
+ minimatch: 3.1.2
+ semver: 5.7.2
+ tapable: 1.1.3
+ typescript: 5.2.2
+ webpack: 4.47.0
+ worker-rpc: 0.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /fork-ts-checker-webpack-plugin@3.1.1(eslint@7.32.0)(typescript@4.9.5)(webpack@4.47.0):
+ resolution: {integrity: sha1-oWQsDT5l9QwswXQunAqA9EH4axk=}
+ engines: {node: '>=6.11.5', yarn: '>=1.0.0'}
+ peerDependencies:
+ eslint: '>= 6'
+ typescript: '>= 2.7'
+ vue-template-compiler: '*'
+ webpack: '>= 4'
+ peerDependenciesMeta:
+ eslint:
+ optional: true
+ vue-template-compiler:
+ optional: true
+ dependencies:
+ babel-code-frame: 6.26.0
+ chalk: 2.4.2
+ chokidar: 3.5.3
+ eslint: 7.32.0
+ micromatch: 3.1.10
+ minimatch: 3.1.2
+ semver: 5.7.2
+ tapable: 1.1.3
+ typescript: 4.9.5
+ webpack: 4.47.0
+ worker-rpc: 0.1.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /form-data@3.0.1:
+ resolution: {integrity: sha1-69U3kbeDVqma+aMA1CgsTV65dV8=}
+ engines: {node: '>= 6'}
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+ dev: true
+
+ /forwarded@0.2.0:
+ resolution: {integrity: sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /fragment-cache@0.2.1:
+ resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ map-cache: 0.2.2
+ dev: true
+
+ /fresh@0.5.2:
+ resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /from2@2.3.0:
+ resolution: {integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: true
+
+ /fs-extra@10.1.0:
+ resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.0
+ dev: true
+
+ /fs-extra@11.1.1:
+ resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
+ engines: {node: '>=14.14'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.0
+ dev: true
+
+ /fs-extra@7.0.1:
+ resolution: {integrity: sha1-TxicRKoSO4lfcigE9V6iPq3DSOk=}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+
+ /fs-extra@8.1.0:
+ resolution: {integrity: sha1-SdQ8RaiM2Wd2aMt74bRu/bjS4cA=}
+ engines: {node: '>=6 <7 || >=8'}
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+ dev: true
+
+ /fs-extra@9.1.0:
+ resolution: {integrity: sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0=}
+ engines: {node: '>=10'}
+ dependencies:
+ at-least-node: 1.0.0
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.0
+ dev: true
+
+ /fs-minipass@2.1.0:
+ resolution: {integrity: sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs=}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+
+ /fs-write-stream-atomic@1.0.10:
+ resolution: {integrity: sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=}
+ dependencies:
+ graceful-fs: 4.2.11
+ iferr: 0.1.5
+ imurmurhash: 0.1.4
+ readable-stream: 2.3.8
+ dev: true
+
+ /fs.realpath@1.0.0:
+ resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
+ dev: true
+
+ /fsevents@1.2.13:
+ resolution: {integrity: sha1-8yXLBFVZJCi88Rs4M3DvcOO/zDg=}
+ engines: {node: '>= 4.0'}
+ os: [darwin]
+ deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
+ requiresBuild: true
+ dependencies:
+ bindings: 1.5.0
+ nan: 2.18.0
+ dev: true
+ optional: true
+
+ /fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+ dev: true
+
+ /function.prototype.name@1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ functions-have-names: 1.2.3
+ dev: true
+
+ /functional-red-black-tree@1.0.1:
+ resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=}
+ dev: true
+
+ /functions-have-names@1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ dev: true
+
+ /gauge@2.7.4:
+ resolution: {integrity: sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=}
+ dependencies:
+ aproba: 1.2.0
+ console-control-strings: 1.1.0
+ has-unicode: 2.0.1
+ object-assign: 4.1.1
+ signal-exit: 3.0.7
+ string-width: 1.0.2
+ strip-ansi: 3.0.1
+ wide-align: 1.1.5
+ dev: true
+
+ /generic-names@1.0.3:
+ resolution: {integrity: sha1-LXhqEhruUIh2eWk56OO/+DbCCRc=}
+ dependencies:
+ loader-utils: 0.2.17
+ dev: true
+
+ /gensync@1.0.0-beta.2:
+ resolution: {integrity: sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /get-caller-file@2.0.5:
+ resolution: {integrity: sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=}
+ engines: {node: 6.* || 8.* || >= 10.*}
+ dev: true
+
+ /get-intrinsic@1.2.2:
+ resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
+ dependencies:
+ function-bind: 1.1.2
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ hasown: 2.0.0
+ dev: true
+
+ /get-package-type@0.1.0:
+ resolution: {integrity: sha1-jeLYA8/0TfO8bEVuZmizbDkm4Ro=}
+ engines: {node: '>=8.0.0'}
+ dev: true
+
+ /get-stdin@7.0.0:
+ resolution: {integrity: sha1-jV3pjxUXGhJcXlFmQ8em0OqKlvY=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /get-stdin@8.0.0:
+ resolution: {integrity: sha1-y61qc/63X27rIrqeAfiaooqpelM=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /get-stdin@9.0.0:
+ resolution: {integrity: sha1-OYP/guA9VvGy6g0+YDJfOdcDpXU=}
+ engines: {node: '>=12'}
+ dev: true
+
+ /get-stream@4.1.0:
+ resolution: {integrity: sha1-wbJVV189wh1Zv8ec09K0axw6VLU=}
+ engines: {node: '>=6'}
+ dependencies:
+ pump: 3.0.0
+ dev: true
+
+ /get-stream@5.2.0:
+ resolution: {integrity: sha1-SWaheV7lrOZecGxLe+txJX1uItM=}
+ engines: {node: '>=8'}
+ dependencies:
+ pump: 3.0.0
+ dev: true
+
+ /get-stream@6.0.1:
+ resolution: {integrity: sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /get-symbol-description@1.0.0:
+ resolution: {integrity: sha1-f9uByQAQH71WTdXxowr1qtweWNY=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ dev: true
+
+ /get-value@2.0.6:
+ resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /git-hooks-list@3.1.0:
+ resolution: {integrity: sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==}
+ dev: true
+
+ /git-raw-commits@2.0.11:
+ resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ dargs: 7.0.0
+ lodash: 4.17.21
+ meow: 8.1.2
+ split2: 3.2.2
+ through2: 4.0.2
+ dev: true
+
+ /glob-parent@3.1.0:
+ resolution: {integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=}
+ dependencies:
+ is-glob: 3.1.0
+ path-dirname: 1.0.2
+ dev: true
+
+ /glob-parent@5.1.2:
+ resolution: {integrity: sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=}
+ engines: {node: '>= 6'}
+ dependencies:
+ is-glob: 4.0.3
+ dev: true
+
+ /glob-parent@6.0.2:
+ resolution: {integrity: sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM=}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ is-glob: 4.0.3
+ dev: true
+
+ /glob-to-regexp@0.3.0:
+ resolution: {integrity: sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=}
+ dev: true
+
+ /glob@7.1.6:
+ resolution: {integrity: sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY=}
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ dev: true
+
+ /glob@7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ dev: true
+
+ /global-dirs@0.1.1:
+ resolution: {integrity: sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=}
+ engines: {node: '>=4'}
+ dependencies:
+ ini: 1.3.8
+ dev: true
+
+ /global-modules@2.0.0:
+ resolution: {integrity: sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=}
+ engines: {node: '>=6'}
+ dependencies:
+ global-prefix: 3.0.0
+ dev: true
+
+ /global-prefix@3.0.0:
+ resolution: {integrity: sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=}
+ engines: {node: '>=6'}
+ dependencies:
+ ini: 1.3.8
+ kind-of: 6.0.3
+ which: 1.3.1
+ dev: true
+
+ /globals@11.12.0:
+ resolution: {integrity: sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /globals@13.23.0:
+ resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==}
+ engines: {node: '>=8'}
+ dependencies:
+ type-fest: 0.20.2
+ dev: true
+
+ /globalthis@1.0.3:
+ resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ define-properties: 1.2.1
+ dev: true
+
+ /globby@11.1.0:
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+ engines: {node: '>=10'}
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.1
+ ignore: 5.2.4
+ merge2: 1.4.1
+ slash: 3.0.0
+ dev: true
+
+ /globby@13.2.2:
+ resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ dir-glob: 3.0.1
+ fast-glob: 3.3.1
+ ignore: 5.2.4
+ merge2: 1.4.1
+ slash: 4.0.0
+ dev: true
+
+ /globby@6.1.0:
+ resolution: {integrity: sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-union: 1.0.2
+ glob: 7.2.3
+ object-assign: 4.1.1
+ pify: 2.3.0
+ pinkie-promise: 2.0.1
+ dev: true
+
+ /globby@7.1.1:
+ resolution: {integrity: sha1-+yzP+UAfhgCUXfral0QMypcrhoA=}
+ engines: {node: '>=4'}
+ dependencies:
+ array-union: 1.0.2
+ dir-glob: 2.2.2
+ glob: 7.2.3
+ ignore: 3.3.10
+ pify: 3.0.0
+ slash: 1.0.0
+ dev: true
+
+ /globby@8.0.2:
+ resolution: {integrity: sha1-VpdhnM2VxSdduy1vqkIIfBqUHY0=}
+ engines: {node: '>=4'}
+ dependencies:
+ array-union: 1.0.2
+ dir-glob: 2.0.0
+ fast-glob: 2.2.7
+ glob: 7.2.3
+ ignore: 3.3.10
+ pify: 3.0.0
+ slash: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /globjoin@0.1.4:
+ resolution: {integrity: sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=}
+ dev: true
+
+ /gonzales-pe@4.3.0:
+ resolution: {integrity: sha1-/p3sXzxVfurQn/hoxlgmvlTQZ7M=}
+ engines: {node: '>=0.6.0'}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ dev: true
+
+ /gopd@1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ dependencies:
+ get-intrinsic: 1.2.2
+ dev: true
+
+ /graceful-fs@4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+ dev: true
+
+ /graphemer@1.4.0:
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+ dev: true
+
+ /growl@1.10.5:
+ resolution: {integrity: sha1-8nNdwig2dPpnR4sQGBBZNVw2nl4=}
+ engines: {node: '>=4.x'}
+ dev: true
+
+ /growly@1.3.0:
+ resolution: {integrity: sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=}
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /gzip-size@5.1.1:
+ resolution: {integrity: sha1-y5vuaS+HwGErIyhAqHOQTkwTUnQ=}
+ engines: {node: '>=6'}
+ dependencies:
+ duplexer: 0.1.2
+ pify: 4.0.1
+ dev: true
+
+ /handle-thing@2.0.1:
+ resolution: {integrity: sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=}
+ dev: true
+
+ /handlebars-loader@1.7.3(handlebars@4.7.8):
+ resolution: {integrity: sha512-dDb+8D51vE3OTSE2wuGPWRAegtsEuw8Mk8hCjtRu/pNcBfN5q+M8ZG3kVJxBuOeBrVElpFStipGmaxSBTRR1mQ==}
+ peerDependencies:
+ handlebars: '>= 1.3.0 < 5'
+ dependencies:
+ async: 3.2.4
+ fastparse: 1.1.2
+ handlebars: 4.7.8
+ loader-utils: 1.4.2
+ object-assign: 4.1.1
+ dev: true
+
+ /handlebars@4.7.8:
+ resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
+ engines: {node: '>=0.4.7'}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ neo-async: 2.6.2
+ source-map: 0.6.1
+ wordwrap: 1.0.0
+ optionalDependencies:
+ uglify-js: 3.17.4
+ dev: true
+
+ /hard-rejection@2.1.0:
+ resolution: {integrity: sha1-HG7aXBaFxjlCdm15u0Cudzzs2IM=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /harmony-reflect@1.6.2:
+ resolution: {integrity: sha1-Mey9MuZIo00DDYattn1NR1R/5xA=}
+ dev: true
+
+ /has-ansi@2.0.0:
+ resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-regex: 2.1.1
+ dev: true
+
+ /has-bigints@1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ dev: true
+
+ /has-binary2@1.0.3:
+ resolution: {integrity: sha1-d3asYn8+p3JQz8My2rfd9eT10R0=}
+ dependencies:
+ isarray: 2.0.1
+ dev: true
+
+ /has-cors@1.1.0:
+ resolution: {integrity: sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=}
+ dev: true
+
+ /has-flag@1.0.0:
+ resolution: {integrity: sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /has-flag@3.0.0:
+ resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /has-flag@4.0.0:
+ resolution: {integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /has-property-descriptors@1.0.1:
+ resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
+ dependencies:
+ get-intrinsic: 1.2.2
+ dev: true
+
+ /has-proto@1.0.1:
+ resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /has-symbols@1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /has-tostringtag@1.0.0:
+ resolution: {integrity: sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-symbols: 1.0.3
+ dev: true
+
+ /has-unicode@2.0.1:
+ resolution: {integrity: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=}
+ dev: true
+
+ /has-value@0.3.1:
+ resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 0.1.4
+ isobject: 2.1.0
+ dev: true
+
+ /has-value@1.0.0:
+ resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ get-value: 2.0.6
+ has-values: 1.0.0
+ isobject: 3.0.1
+ dev: true
+
+ /has-values@0.1.4:
+ resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /has-values@1.0.0:
+ resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ kind-of: 4.0.0
+ dev: true
+
+ /has@1.0.4:
+ resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
+ engines: {node: '>= 0.4.0'}
+ dev: true
+
+ /hash-base@3.1.0:
+ resolution: {integrity: sha1-VcOB2eBuHSmXqIO0o/3f5/DTrzM=}
+ engines: {node: '>=4'}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ safe-buffer: 5.2.1
+ dev: true
+
+ /hash.js@1.1.7:
+ resolution: {integrity: sha1-C6vKU46NTuSg+JiNaIZlN6ADz0I=}
+ dependencies:
+ inherits: 2.0.4
+ minimalistic-assert: 1.0.1
+ dev: true
+
+ /hasown@2.0.0:
+ resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ function-bind: 1.1.2
+ dev: true
+
+ /hast-util-to-jsx-runtime@2.2.0:
+ resolution: {integrity: sha512-wSlp23N45CMjDg/BPW8zvhEi3R+8eRE1qFbjEyAUzMCzu2l1Wzwakq+Tlia9nkCtEl5mDxa7nKHsvYJ6Gfn21A==}
+ dependencies:
+ '@types/hast': 3.0.2
+ '@types/unist': 3.0.1
+ comma-separated-tokens: 2.0.3
+ hast-util-whitespace: 3.0.0
+ property-information: 6.3.0
+ space-separated-tokens: 2.0.2
+ style-to-object: 0.4.4
+ unist-util-position: 5.0.0
+ vfile-message: 4.0.2
+ dev: false
+
+ /hast-util-whitespace@2.0.1:
+ resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==}
+ dev: true
+
+ /hast-util-whitespace@3.0.0:
+ resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
+ dependencies:
+ '@types/hast': 3.0.2
+ dev: false
+
+ /he@1.2.0:
+ resolution: {integrity: sha1-hK5l+n6vsWX922FWauFLrwVmTw8=}
+ hasBin: true
+ dev: true
+
+ /header-case@2.0.4:
+ resolution: {integrity: sha1-WkLmO1UXc0nPQFvrjXdayruSwGM=}
+ dependencies:
+ capital-case: 1.0.4
+ tslib: 2.6.2
+ dev: true
+
+ /hex-color-regex@1.1.0:
+ resolution: {integrity: sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4=}
+ dev: true
+
+ /history@4.10.1:
+ resolution: {integrity: sha1-MzcaZeOoOyZ0NOKz87G0xYqtTPM=}
+ dependencies:
+ '@babel/runtime': 7.23.2
+ loose-envify: 1.4.0
+ resolve-pathname: 3.0.0
+ tiny-invariant: 1.3.1
+ tiny-warning: 1.0.3
+ value-equal: 1.0.1
+ dev: true
+
+ /hmac-drbg@1.0.1:
+ resolution: {integrity: sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=}
+ dependencies:
+ hash.js: 1.1.7
+ minimalistic-assert: 1.0.1
+ minimalistic-crypto-utils: 1.0.1
+ dev: true
+
+ /hoist-non-react-statics@3.3.2:
+ resolution: {integrity: sha1-7OCsr3HWLClpwuxZ/v9CpLGoW0U=}
+ dependencies:
+ react-is: 16.13.1
+ dev: true
+
+ /hosted-git-info@2.8.9:
+ resolution: {integrity: sha1-3/wL+aIcAiCQkPKqaUKeFBTa8/k=}
+ dev: true
+
+ /hosted-git-info@4.1.0:
+ resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
+ engines: {node: '>=10'}
+ dependencies:
+ lru-cache: 6.0.0
+ dev: true
+
+ /hpack.js@2.1.6:
+ resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=}
+ dependencies:
+ inherits: 2.0.4
+ obuf: 1.1.2
+ readable-stream: 2.3.8
+ wbuf: 1.7.3
+ dev: true
+
+ /hsl-regex@1.0.0:
+ resolution: {integrity: sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=}
+ dev: true
+
+ /hsla-regex@1.0.0:
+ resolution: {integrity: sha1-wc56MWjIxmFAM6S194d/OyJfnDg=}
+ dev: true
+
+ /html-encoding-sniffer@2.0.1:
+ resolution: {integrity: sha1-QqbcT9M/ACgRduiyN1nKTk+hhfM=}
+ engines: {node: '>=10'}
+ dependencies:
+ whatwg-encoding: 1.0.5
+ dev: true
+
+ /html-entities@1.4.0:
+ resolution: {integrity: sha1-z70bAdKvr5rcobEK59/6uYxx0tw=}
+ dev: true
+
+ /html-entities@2.4.0:
+ resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==}
+ dev: true
+
+ /html-escaper@2.0.2:
+ resolution: {integrity: sha1-39YAJ9o2o238viNiYsAKWCJoFFM=}
+ dev: true
+
+ /html-minifier-terser@5.1.1:
+ resolution: {integrity: sha1-ki6W8fO7YIMsJjS3mIQJY4mx8FQ=}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ camel-case: 4.1.2
+ clean-css: 4.2.4
+ commander: 4.1.1
+ he: 1.2.0
+ param-case: 3.0.4
+ relateurl: 0.2.7
+ terser: 4.8.1
+ dev: true
+
+ /html-minifier@3.5.21:
+ resolution: {integrity: sha1-0AQOBUcw41TbAIRjWTGUAVIS0gw=}
+ engines: {node: '>=4'}
+ hasBin: true
+ dependencies:
+ camel-case: 3.0.0
+ clean-css: 4.2.4
+ commander: 2.17.1
+ he: 1.2.0
+ param-case: 2.1.1
+ relateurl: 0.2.7
+ uglify-js: 3.4.10
+ dev: true
+
+ /html-tags@3.3.1:
+ resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /html-url-attributes@3.0.0:
+ resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==}
+ dev: false
+
+ /html-webpack-plugin@3.2.0(webpack@4.47.0):
+ resolution: {integrity: sha1-sBq71yOsqqeze2r0SS69oD2d03s=}
+ engines: {node: '>=6.9'}
+ deprecated: 3.x is no longer supported
+ peerDependencies:
+ webpack: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
+ dependencies:
+ html-minifier: 3.5.21
+ loader-utils: 0.2.17
+ lodash: 4.17.21
+ pretty-error: 2.1.2
+ tapable: 1.1.3
+ toposort: 1.0.7
+ util.promisify: 1.0.0
+ webpack: 4.47.0
+ dev: true
+
+ /html-webpack-plugin@4.5.2(webpack@4.47.0):
+ resolution: {integrity: sha1-dvyD+hoPEt1ffaBASlTiaZZmvBI=}
+ engines: {node: '>=6.9'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ '@types/html-minifier-terser': 5.1.2
+ '@types/tapable': 1.0.10
+ '@types/webpack': 4.41.35
+ html-minifier-terser: 5.1.1
+ loader-utils: 1.4.2
+ lodash: 4.17.21
+ pretty-error: 2.1.2
+ tapable: 1.1.3
+ util.promisify: 1.0.0
+ webpack: 4.47.0
+ dev: true
+
+ /htmlparser2@3.10.1:
+ resolution: {integrity: sha1-vWedw/WYl7ajS7EHSchVu1OpOS8=}
+ dependencies:
+ domelementtype: 1.3.1
+ domhandler: 2.4.2
+ domutils: 1.7.0
+ entities: 1.1.2
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+ dev: true
+
+ /htmlparser2@6.1.0:
+ resolution: {integrity: sha1-xNditsM3GgXb5l6UrkOp+EX7j7c=}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 4.3.1
+ domutils: 2.8.0
+ entities: 2.2.0
+ dev: true
+
+ /http-deceiver@1.2.7:
+ resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=}
+ dev: true
+
+ /http-errors@1.6.3:
+ resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.3
+ setprototypeof: 1.1.0
+ statuses: 1.5.0
+ dev: true
+
+ /http-errors@2.0.0:
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ toidentifier: 1.0.1
+ dev: true
+
+ /http-parser-js@0.5.8:
+ resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
+ dev: true
+
+ /http-proxy-agent@4.0.1:
+ resolution: {integrity: sha1-ioyO9/WTLM+VPClsqCkblap0qjo=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@tootallnate/once': 1.1.2
+ agent-base: 6.0.2
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /http-proxy-middleware@0.19.1(debug@4.3.4)(supports-color@6.1.0):
+ resolution: {integrity: sha1-GDx9xKoUeRUDBkmMIQza+WCApDo=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ http-proxy: 1.18.1(debug@4.3.4)
+ is-glob: 4.0.3
+ lodash: 4.17.21
+ micromatch: 3.1.10(supports-color@6.1.0)
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ dev: true
+
+ /http-proxy@1.18.1(debug@4.3.4):
+ resolution: {integrity: sha1-QBVB8FNIhLv5UmAzTnL4juOXZUk=}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ eventemitter3: 4.0.7
+ follow-redirects: 1.15.3(debug@4.3.4)
+ requires-port: 1.0.0
+ transitivePeerDependencies:
+ - debug
+ dev: true
+
+ /https-browserify@1.0.0:
+ resolution: {integrity: sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=}
+ dev: true
+
+ /https-proxy-agent@5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
+ dependencies:
+ agent-base: 6.0.2
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /human-signals@1.1.1:
+ resolution: {integrity: sha1-xbHNFPUK6uCatsWf5jujOV/k36M=}
+ engines: {node: '>=8.12.0'}
+ dev: true
+
+ /human-signals@2.1.0:
+ resolution: {integrity: sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=}
+ engines: {node: '>=10.17.0'}
+ dev: true
+
+ /human-signals@4.3.1:
+ resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
+ engines: {node: '>=14.18.0'}
+ dev: true
+
+ /husky@3.1.0:
+ resolution: {integrity: sha1-X6rVIKuGBYLtlPDBp38PBMkLV8A=}
+ engines: {node: '>=8.6.0'}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ chalk: 2.4.2
+ ci-info: 2.0.0
+ cosmiconfig: 5.2.1
+ execa: 1.0.0
+ get-stdin: 7.0.0
+ opencollective-postinstall: 2.0.3
+ pkg-dir: 4.2.0
+ please-upgrade-node: 3.2.0
+ read-pkg: 5.2.0
+ run-node: 1.0.0
+ slash: 3.0.0
+ dev: true
+
+ /husky@8.0.3:
+ resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
+ engines: {node: '>=14'}
+ hasBin: true
+ dev: true
+
+ /ice-npm-utils@3.0.3:
+ resolution: {integrity: sha512-udpkNv5m2oVsbmf5d7Sdprc2TouHRVQqj6bN09iJf3GYeiEiG5UcHz4g7XX+XUrA+22m4oLYA0ZE+OXFNosFJQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@appworks/constant': 0.1.5
+ axios: 0.23.0
+ fs-extra: 10.1.0
+ mkdirp: 1.0.4
+ semver: 7.5.4
+ tar: 6.2.0
+ url-join: 4.0.1
+ transitivePeerDependencies:
+ - debug
+ dev: true
+
+ /ice-skin-loader@0.3.2:
+ resolution: {integrity: sha512-qUdXluvvcqWtS6IiKDnCcY1aykk0WbkojV2K/bEo9AhDigoqmPWnDEJuWlMUcFzh+aliBa9DJ67OiM8nk1z9Wg==}
+ dependencies:
+ '@icedesign/skin': 0.1.14
+ chalk: 2.4.2
+ loader-utils: 2.0.4
+ tinycolor2: 1.6.0
+ dev: true
+
+ /iconv-lite@0.4.24:
+ resolution: {integrity: sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: true
+
+ /iconv-lite@0.6.3:
+ resolution: {integrity: sha1-pS+AvzjaGVLrXGgXkHGYcaGnJQE=}
+ engines: {node: '>=0.10.0'}
+ requiresBuild: true
+ dependencies:
+ safer-buffer: 2.1.2
+ dev: true
+ optional: true
+
+ /icss-replace-symbols@1.1.0:
+ resolution: {integrity: sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=}
+ dev: true
+
+ /icss-utils@4.1.1:
+ resolution: {integrity: sha1-IRcLU3ie4nRHwvR91oMIFAP5pGc=}
+ engines: {node: '>= 6'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /idb@6.1.5:
+ resolution: {integrity: sha1-28U+et8ax8Wfmyv1bgC06k/OjHs=}
+ dev: true
+
+ /identity-obj-proxy@3.0.0:
+ resolution: {integrity: sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ harmony-reflect: 1.6.2
+ dev: true
+
+ /ieee754@1.2.1:
+ resolution: {integrity: sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=}
+ dev: true
+
+ /iferr@0.1.5:
+ resolution: {integrity: sha1-xg7taebY/bazEEofy8ocGS3FtQE=}
+ dev: true
+
+ /ignore@3.3.10:
+ resolution: {integrity: sha1-Cpf7h2mG6AgcYxFg+PnziRV/AEM=}
+ dev: true
+
+ /ignore@4.0.6:
+ resolution: {integrity: sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw=}
+ engines: {node: '>= 4'}
+ dev: true
+
+ /ignore@5.2.4:
+ resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
+ engines: {node: '>= 4'}
+ dev: true
+
+ /image-size@0.5.5:
+ resolution: {integrity: sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+ dev: true
+
+ /image-source-loader@0.6.5:
+ resolution: {integrity: sha512-mvDrYkpECf4sXih54ATE4ONqVFlIHpE+ovpmaJYApaq5BK5myUoPEVdDKRfxdMrmvRfxvSI0PEHYzvYItMzO5g==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ image-size: 0.5.5
+ dev: true
+
+ /immer@1.10.0:
+ resolution: {integrity: sha1-utZ2BbqcgQJ12R4cKkfUWC6YKG0=}
+ dev: true
+
+ /immutable@4.3.4:
+ resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==}
+ dev: true
+
+ /import-cwd@2.1.0:
+ resolution: {integrity: sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=}
+ engines: {node: '>=4'}
+ dependencies:
+ import-from: 2.1.0
+ dev: true
+
+ /import-fresh@2.0.0:
+ resolution: {integrity: sha1-2BNVwVYS04bGH53dOSLUMEgipUY=}
+ engines: {node: '>=4'}
+ dependencies:
+ caller-path: 2.0.0
+ resolve-from: 3.0.0
+ dev: true
+
+ /import-fresh@3.3.0:
+ resolution: {integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=}
+ engines: {node: '>=6'}
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+ dev: true
+
+ /import-from@2.1.0:
+ resolution: {integrity: sha1-M1238qev/VOqpHHUuAId7ja387E=}
+ engines: {node: '>=4'}
+ dependencies:
+ resolve-from: 3.0.0
+ dev: true
+
+ /import-lazy@4.0.0:
+ resolution: {integrity: sha1-6OtidIOgpD2jwD8+NVSL5csMwVM=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /import-local@2.0.0:
+ resolution: {integrity: sha1-VQcL44pZk88Y72236WH1vuXFoJ0=}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ pkg-dir: 3.0.0
+ resolve-cwd: 2.0.0
+ dev: true
+
+ /import-local@3.1.0:
+ resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
+ engines: {node: '>=8'}
+ hasBin: true
+ dependencies:
+ pkg-dir: 4.2.0
+ resolve-cwd: 3.0.0
+ dev: true
+
+ /imurmurhash@0.1.4:
+ resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
+ engines: {node: '>=0.8.19'}
+ dev: true
+
+ /indent-string@4.0.0:
+ resolution: {integrity: sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /indexes-of@1.0.1:
+ resolution: {integrity: sha1-8w9xbI4r00bHtn0985FVZqfAVgc=}
+ dev: true
+
+ /indexof@0.0.1:
+ resolution: {integrity: sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=}
+ dev: true
+
+ /infer-owner@1.0.4:
+ resolution: {integrity: sha1-xM78qo5RBRwqQLos6KPScpWvlGc=}
+ dev: true
+
+ /inflight@1.0.6:
+ resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
+ dependencies:
+ once: 1.4.0
+ wrappy: 1.0.2
+ dev: true
+
+ /inherits@2.0.3:
+ resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
+ dev: true
+
+ /inherits@2.0.4:
+ resolution: {integrity: sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=}
+ dev: true
+
+ /ini@1.3.8:
+ resolution: {integrity: sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=}
+ dev: true
+
+ /inline-style-parser@0.1.1:
+ resolution: {integrity: sha1-7Io7QpJ06cCh8cT/qUU6f+9yzqE=}
+
+ /inquirer@6.5.0:
+ resolution: {integrity: sha1-IwMxfvyaTqfsLi32+GVptzSsz0I=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ ansi-escapes: 3.2.0
+ chalk: 2.4.2
+ cli-cursor: 2.1.0
+ cli-width: 2.2.1
+ external-editor: 3.1.0
+ figures: 2.0.0
+ lodash: 4.17.21
+ mute-stream: 0.0.7
+ run-async: 2.4.1
+ rxjs: 6.6.7
+ string-width: 2.1.1
+ strip-ansi: 5.2.0
+ through: 2.3.8
+ dev: true
+
+ /inquirer@7.0.4:
+ resolution: {integrity: sha1-ma9b3kcVOryiP1x/ww2yR/OdpwM=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 2.4.2
+ cli-cursor: 3.1.0
+ cli-width: 2.2.1
+ external-editor: 3.1.0
+ figures: 3.2.0
+ lodash: 4.17.21
+ mute-stream: 0.0.8
+ run-async: 2.4.1
+ rxjs: 6.6.7
+ string-width: 4.2.3
+ strip-ansi: 5.2.0
+ through: 2.3.8
+ dev: true
+
+ /inquirer@7.3.3:
+ resolution: {integrity: sha1-BNF2sq8Er8FXqD/XwQDpjuCq0AM=}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-width: 3.0.0
+ external-editor: 3.1.0
+ figures: 3.2.0
+ lodash: 4.17.21
+ mute-stream: 0.0.8
+ run-async: 2.4.1
+ rxjs: 6.6.7
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ through: 2.3.8
+ dev: true
+
+ /internal-ip@4.3.0:
+ resolution: {integrity: sha1-hFRSuq2dLKO2nGNaE3rLmg2tCQc=}
+ engines: {node: '>=6'}
+ dependencies:
+ default-gateway: 4.2.0
+ ipaddr.js: 1.9.1
+ dev: true
+
+ /internal-slot@1.0.6:
+ resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.2.2
+ hasown: 2.0.0
+ side-channel: 1.0.4
+ dev: true
+
+ /intl-messageformat@9.13.0:
+ resolution: {integrity: sha512-7sGC7QnSQGa5LZP7bXLDhVDtQOeKGeBFGHF2Y8LVBwYZoQZCgWeKoPGTa5GMG8g/TzDgeXuYJQis7Ggiw2xTOw==}
+ dependencies:
+ '@formatjs/ecma402-abstract': 1.11.4
+ '@formatjs/fast-memoize': 1.2.1
+ '@formatjs/icu-messageformat-parser': 2.1.0
+ tslib: 2.6.2
+ dev: true
+
+ /invariant@2.2.4:
+ resolution: {integrity: sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=}
+ dependencies:
+ loose-envify: 1.4.0
+ dev: true
+
+ /ip-regex@2.1.0:
+ resolution: {integrity: sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /ip@1.1.8:
+ resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
+ dev: true
+
+ /ipaddr.js@1.9.1:
+ resolution: {integrity: sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /is-absolute-url@2.1.0:
+ resolution: {integrity: sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-absolute-url@3.0.3:
+ resolution: {integrity: sha1-lsaiK2ojkpsR6gr7GDbDatSl1pg=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /is-accessor-descriptor@0.1.6:
+ resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /is-accessor-descriptor@1.0.0:
+ resolution: {integrity: sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: true
+
+ /is-alphabetical@1.0.4:
+ resolution: {integrity: sha1-nn1rlJFr4iFTdF0YTCmMv5hqaG0=}
+ dev: true
+
+ /is-alphanumerical@1.0.4:
+ resolution: {integrity: sha1-frmiQx+FX2se8aeOMm31FWlsTb8=}
+ dependencies:
+ is-alphabetical: 1.0.4
+ is-decimal: 1.0.4
+ dev: true
+
+ /is-arguments@1.1.1:
+ resolution: {integrity: sha1-FbP4j9oB8ql/7ITKdhpWDxI++ps=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-array-buffer@3.0.2:
+ resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ is-typed-array: 1.1.12
+ dev: true
+
+ /is-arrayish@0.2.1:
+ resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
+ dev: true
+
+ /is-arrayish@0.3.2:
+ resolution: {integrity: sha1-RXSirlb3qyBolvtDHq7tBm/fjwM=}
+ dev: true
+
+ /is-async-function@2.0.0:
+ resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-bigint@1.0.4:
+ resolution: {integrity: sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=}
+ dependencies:
+ has-bigints: 1.0.2
+ dev: true
+
+ /is-binary-path@1.0.1:
+ resolution: {integrity: sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ binary-extensions: 1.13.1
+ dev: true
+
+ /is-binary-path@2.1.0:
+ resolution: {integrity: sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=}
+ engines: {node: '>=8'}
+ dependencies:
+ binary-extensions: 2.2.0
+ dev: true
+
+ /is-boolean-object@1.1.2:
+ resolution: {integrity: sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-buffer@1.1.6:
+ resolution: {integrity: sha1-76ouqdqg16suoTqXsritUf776L4=}
+ dev: true
+
+ /is-buffer@2.0.5:
+ resolution: {integrity: sha1-68JS5ADSL/jXf6CYiIIaJKZYwZE=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /is-callable@1.2.7:
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /is-ci@2.0.0:
+ resolution: {integrity: sha1-a8YzQYGBDgS1wis9WJ/cpVAmQEw=}
+ hasBin: true
+ dependencies:
+ ci-info: 2.0.0
+ dev: true
+
+ /is-color-stop@1.1.0:
+ resolution: {integrity: sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=}
+ dependencies:
+ css-color-names: 0.0.4
+ hex-color-regex: 1.1.0
+ hsl-regex: 1.0.0
+ hsla-regex: 1.0.0
+ rgb-regex: 1.0.1
+ rgba-regex: 1.0.0
+ dev: true
+
+ /is-core-module@2.13.1:
+ resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ dependencies:
+ hasown: 2.0.0
+ dev: true
+
+ /is-data-descriptor@0.1.4:
+ resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /is-data-descriptor@1.0.0:
+ resolution: {integrity: sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: true
+
+ /is-date-object@1.0.5:
+ resolution: {integrity: sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-decimal@1.0.4:
+ resolution: {integrity: sha1-ZaOllYocW2OnBuGzM9fNn2MNP6U=}
+ dev: true
+
+ /is-descriptor@0.1.6:
+ resolution: {integrity: sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-accessor-descriptor: 0.1.6
+ is-data-descriptor: 0.1.4
+ kind-of: 5.1.0
+ dev: true
+
+ /is-descriptor@1.0.2:
+ resolution: {integrity: sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-accessor-descriptor: 1.0.0
+ is-data-descriptor: 1.0.0
+ kind-of: 6.0.3
+ dev: true
+
+ /is-directory@0.3.1:
+ resolution: {integrity: sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-docker@2.2.1:
+ resolution: {integrity: sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=}
+ engines: {node: '>=8'}
+ hasBin: true
+ dev: true
+
+ /is-docker@3.0.0:
+ resolution: {integrity: sha1-kAk6oxBid9inelkQ265xdH4VogA=}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ hasBin: true
+ dev: true
+
+ /is-extendable@0.1.1:
+ resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-extendable@1.0.1:
+ resolution: {integrity: sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-plain-object: 2.0.4
+ dev: true
+
+ /is-extglob@2.1.1:
+ resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-finalizationregistry@1.0.2:
+ resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
+ dependencies:
+ call-bind: 1.0.5
+ dev: true
+
+ /is-fullwidth-code-point@1.0.0:
+ resolution: {integrity: sha1-754xOG8DGn8NZDr4L95QxFfvAMs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ number-is-nan: 1.0.1
+ dev: true
+
+ /is-fullwidth-code-point@2.0.0:
+ resolution: {integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /is-fullwidth-code-point@3.0.0:
+ resolution: {integrity: sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /is-fullwidth-code-point@4.0.0:
+ resolution: {integrity: sha1-+uMWfHKedGP4RhzlErCApJJoqog=}
+ engines: {node: '>=12'}
+ dev: true
+
+ /is-generator-fn@2.1.0:
+ resolution: {integrity: sha1-fRQK3DiarzARqPKipM+m+q3/sRg=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /is-generator-function@1.0.10:
+ resolution: {integrity: sha1-8VWLrxrBfg3up8BBXEODUf8rPHI=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-glob@3.1.0:
+ resolution: {integrity: sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 2.1.1
+ dev: true
+
+ /is-glob@4.0.3:
+ resolution: {integrity: sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extglob: 2.1.1
+ dev: true
+
+ /is-hexadecimal@1.0.4:
+ resolution: {integrity: sha1-zDXJdYjaS9Saju3WvECC1E3LI6c=}
+ dev: true
+
+ /is-inside-container@1.0.0:
+ resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
+ engines: {node: '>=14.16'}
+ hasBin: true
+ dependencies:
+ is-docker: 3.0.0
+ dev: true
+
+ /is-interactive@1.0.0:
+ resolution: {integrity: sha1-zqbmrlyHCnsKAAQHC3tYfgJSkS4=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /is-map@2.0.2:
+ resolution: {integrity: sha1-AJItuMm/c+gbejNYJ7wqQ/K5ESc=}
+ dev: true
+
+ /is-negative-zero@2.0.2:
+ resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /is-number-object@1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-number@2.1.0:
+ resolution: {integrity: sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /is-number@3.0.0:
+ resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /is-number@7.0.0:
+ resolution: {integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=}
+ engines: {node: '>=0.12.0'}
+ dev: true
+
+ /is-obj@2.0.0:
+ resolution: {integrity: sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /is-path-cwd@2.2.0:
+ resolution: {integrity: sha1-Z9Q7gmZKe1GR/ZEZEn6zAASKn9s=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /is-path-in-cwd@2.1.0:
+ resolution: {integrity: sha1-v+Lcomxp85cmWkAJljYCk1oFOss=}
+ engines: {node: '>=6'}
+ dependencies:
+ is-path-inside: 2.1.0
+ dev: true
+
+ /is-path-inside@2.1.0:
+ resolution: {integrity: sha1-fJgQWH1lmkDSe8201WFuqwWUlLI=}
+ engines: {node: '>=6'}
+ dependencies:
+ path-is-inside: 1.0.2
+ dev: true
+
+ /is-path-inside@3.0.3:
+ resolution: {integrity: sha1-0jE2LlOgf/Kw4Op/7QSRYf/RYoM=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /is-plain-obj@1.1.0:
+ resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-plain-obj@2.1.0:
+ resolution: {integrity: sha1-ReQuN/zPH0Dajl927iFRWEDAkoc=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
+
+ /is-plain-object@2.0.4:
+ resolution: {integrity: sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+
+ /is-potential-custom-element-name@1.0.1:
+ resolution: {integrity: sha1-Fx7W8Z46xVQ5Tt94yqBXhKRb67U=}
+ dev: true
+
+ /is-regex@1.1.4:
+ resolution: {integrity: sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-regexp@2.1.0:
+ resolution: {integrity: sha1-zXNKVoZOI7lWv058ZsOWpMCyLC0=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /is-resolvable@1.1.0:
+ resolution: {integrity: sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg=}
+ dev: true
+
+ /is-root@2.1.0:
+ resolution: {integrity: sha1-gJ4YEpzxEpZEMCpPhUQDXVGYSpw=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /is-set@2.0.2:
+ resolution: {integrity: sha1-kHVfpMJWLcHF1AJHYNYRm5TKGOw=}
+ dev: true
+
+ /is-shared-array-buffer@1.0.2:
+ resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ dependencies:
+ call-bind: 1.0.5
+ dev: true
+
+ /is-stream@1.1.0:
+ resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-stream@2.0.1:
+ resolution: {integrity: sha1-+sHj1TuXrVqdCunO8jifWBClwHc=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /is-stream@3.0.0:
+ resolution: {integrity: sha1-5r/XqmvvafT0cs6btoHj5XtDGaw=}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
+
+ /is-string@1.0.7:
+ resolution: {integrity: sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-tostringtag: 1.0.0
+ dev: true
+
+ /is-symbol@1.0.4:
+ resolution: {integrity: sha1-ptrJO2NbBjymhyI23oiRClevE5w=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ has-symbols: 1.0.3
+ dev: true
+
+ /is-text-path@1.0.1:
+ resolution: {integrity: sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ text-extensions: 1.9.0
+ dev: true
+
+ /is-typed-array@1.1.12:
+ resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ which-typed-array: 1.1.13
+ dev: true
+
+ /is-typedarray@1.0.0:
+ resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=}
+ dev: true
+
+ /is-unicode-supported@0.1.0:
+ resolution: {integrity: sha1-PybHaoCVk7Ur+i7LVxDtJ3m1Iqc=}
+ engines: {node: '>=10'}
+ dev: true
+
+ /is-weakmap@2.0.1:
+ resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+ dev: true
+
+ /is-weakref@1.0.2:
+ resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ dependencies:
+ call-bind: 1.0.5
+ dev: true
+
+ /is-weakset@2.0.2:
+ resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ dev: true
+
+ /is-what@3.14.1:
+ resolution: {integrity: sha1-4SIvRt3ahd6tD9HJ3xMXYOd3VcE=}
+ dev: true
+
+ /is-windows@1.0.2:
+ resolution: {integrity: sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /is-wsl@1.1.0:
+ resolution: {integrity: sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /is-wsl@2.2.0:
+ resolution: {integrity: sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=}
+ engines: {node: '>=8'}
+ dependencies:
+ is-docker: 2.2.1
+ dev: true
+
+ /isarray@0.0.1:
+ resolution: {integrity: sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=}
+ dev: true
+
+ /isarray@1.0.0:
+ resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=}
+ dev: true
+
+ /isarray@2.0.1:
+ resolution: {integrity: sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=}
+ dev: true
+
+ /isarray@2.0.5:
+ resolution: {integrity: sha1-ivHkwSISRMxiRZ+vOJQNTmRKVyM=}
+ dev: true
+
+ /isexe@2.0.0:
+ resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
+ dev: true
+
+ /isobject@1.0.2:
+ resolution: {integrity: sha1-8Pm4zpLdVA+gdAiC44NaLgIux4o=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /isobject@2.1.0:
+ resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isarray: 1.0.0
+ dev: true
+
+ /isobject@3.0.1:
+ resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /istanbul-lib-coverage@2.0.5:
+ resolution: {integrity: sha1-Z18KtpUD+tSx2En3NrqsqAM0T0k=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /istanbul-lib-coverage@3.2.0:
+ resolution: {integrity: sha1-GJ55CdCjn6Wj361bA/cZR3cBkdM=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /istanbul-lib-instrument@3.3.0:
+ resolution: {integrity: sha1-pfY9kfC7wMPkee9MXeAnM17G1jA=}
+ engines: {node: '>=6'}
+ dependencies:
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/template': 7.22.15
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ istanbul-lib-coverage: 2.0.5
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /istanbul-lib-instrument@4.0.3:
+ resolution: {integrity: sha1-hzxv/4l0UBGCIndGlqPyiQLXfB0=}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/core': 7.23.2
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /istanbul-lib-instrument@5.2.1:
+ resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/parser': 7.23.0
+ '@istanbuljs/schema': 0.1.3
+ istanbul-lib-coverage: 3.2.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /istanbul-lib-report@3.0.1:
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
+ dependencies:
+ istanbul-lib-coverage: 3.2.0
+ make-dir: 4.0.0
+ supports-color: 7.2.0
+ dev: true
+
+ /istanbul-lib-source-maps@4.0.1:
+ resolution: {integrity: sha1-iV86cJ/PujTG3lpCk5Ai8+Q1hVE=}
+ engines: {node: '>=10'}
+ dependencies:
+ debug: 4.3.4
+ istanbul-lib-coverage: 3.2.0
+ source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /istanbul-reports@3.1.6:
+ resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==}
+ engines: {node: '>=8'}
+ dependencies:
+ html-escaper: 2.0.2
+ istanbul-lib-report: 3.0.1
+ dev: true
+
+ /iterator.prototype@1.1.2:
+ resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
+ dependencies:
+ define-properties: 1.2.1
+ get-intrinsic: 1.2.2
+ has-symbols: 1.0.3
+ reflect.getprototypeof: 1.0.4
+ set-function-name: 2.0.1
+ dev: true
+
+ /jake@10.8.7:
+ resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ async: 3.2.4
+ chalk: 4.1.2
+ filelist: 1.0.4
+ minimatch: 3.1.2
+ dev: true
+
+ /javascript-stringify@2.1.0:
+ resolution: {integrity: sha1-J8dlOb4U2L0Sghmi1zGwkzeQTnk=}
+ dev: true
+
+ /jest-changed-files@26.6.2:
+ resolution: {integrity: sha1-9hmEeeHMZvIvmuHiKsqgtCnAQtA=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ execa: 4.1.0
+ throat: 5.0.0
+ dev: true
+
+ /jest-cli@26.6.3:
+ resolution: {integrity: sha1-QxF8/vJLxM1pGhdKh5alMuE16So=}
+ engines: {node: '>= 10.14.2'}
+ hasBin: true
+ dependencies:
+ '@jest/core': 26.6.3
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ chalk: 4.1.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ import-local: 3.1.0
+ is-ci: 2.0.0
+ jest-config: 26.6.3
+ jest-util: 26.6.2
+ jest-validate: 26.6.2
+ prompts: 2.4.2
+ yargs: 15.4.1
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - ts-node
+ - utf-8-validate
+ dev: true
+
+ /jest-config@26.6.3:
+ resolution: {integrity: sha1-ZPQURO756wPcUdXFO3XIxx9kU0k=}
+ engines: {node: '>= 10.14.2'}
+ peerDependencies:
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ ts-node:
+ optional: true
+ dependencies:
+ '@babel/core': 7.23.2
+ '@jest/test-sequencer': 26.6.3
+ '@jest/types': 26.6.2
+ babel-jest: 26.6.3(@babel/core@7.23.2)
+ chalk: 4.1.2
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-environment-jsdom: 26.6.2
+ jest-environment-node: 26.6.2
+ jest-get-type: 26.3.0
+ jest-jasmine2: 26.6.3
+ jest-regex-util: 26.0.0
+ jest-resolve: 26.6.2
+ jest-util: 26.6.2
+ jest-validate: 26.6.2
+ micromatch: 4.0.5
+ pretty-format: 26.6.2
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /jest-diff@26.6.2:
+ resolution: {integrity: sha1-GqdGi1LDpo19XF/c381eSb0WQ5Q=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ chalk: 4.1.2
+ diff-sequences: 26.6.2
+ jest-get-type: 26.3.0
+ pretty-format: 26.6.2
+ dev: true
+
+ /jest-docblock@26.0.0:
+ resolution: {integrity: sha1-Pi+iCJn8koyxO9D/aL03EaNoibU=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ detect-newline: 3.1.0
+ dev: true
+
+ /jest-each@26.6.2:
+ resolution: {integrity: sha1-AlJkOKd6Z0AcimOC3+WZmVLBZ8s=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ chalk: 4.1.2
+ jest-get-type: 26.3.0
+ jest-util: 26.6.2
+ pretty-format: 26.6.2
+ dev: true
+
+ /jest-environment-jsdom@26.6.2:
+ resolution: {integrity: sha1-eNCf6c8BmjVwCbm34fEB0jvR2j4=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/environment': 26.6.2
+ '@jest/fake-timers': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ jest-mock: 26.6.2
+ jest-util: 26.6.2
+ jsdom: 16.7.0
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /jest-environment-node@26.6.2:
+ resolution: {integrity: sha1-gk5Mf7SURkY1bxGsdbIpsANfKww=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/environment': 26.6.2
+ '@jest/fake-timers': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ jest-mock: 26.6.2
+ jest-util: 26.6.2
+ dev: true
+
+ /jest-get-type@26.3.0:
+ resolution: {integrity: sha1-6X3Dw/U8K0Bsp6+u1Ek7HQmRmeA=}
+ engines: {node: '>= 10.14.2'}
+ dev: true
+
+ /jest-haste-map@24.9.0:
+ resolution: {integrity: sha1-s4pdZCdJNOIfpBeump++t3zqrH0=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ anymatch: 2.0.0
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ invariant: 2.2.4
+ jest-serializer: 24.9.0
+ jest-util: 24.9.0
+ jest-worker: 24.9.0
+ micromatch: 3.1.10
+ sane: 4.1.0
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 1.2.13
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /jest-haste-map@26.6.2:
+ resolution: {integrity: sha1-3X5g/n3A6fkRoj15xf9/tcLK/qo=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ '@types/graceful-fs': 4.1.8
+ '@types/node': 20.5.1
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ jest-regex-util: 26.0.0
+ jest-serializer: 26.6.2
+ jest-util: 26.6.2
+ jest-worker: 26.6.2
+ micromatch: 4.0.5
+ sane: 4.1.0
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /jest-jasmine2@26.6.3:
+ resolution: {integrity: sha1-rcPPkV3qy1ISyTufNUfNEpWPLt0=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@babel/traverse': 7.23.2
+ '@jest/environment': 26.6.2
+ '@jest/source-map': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ chalk: 4.1.2
+ co: 4.6.0
+ expect: 26.6.2
+ is-generator-fn: 2.1.0
+ jest-each: 26.6.2
+ jest-matcher-utils: 26.6.2
+ jest-message-util: 26.6.2
+ jest-runtime: 26.6.3
+ jest-snapshot: 26.6.2
+ jest-util: 26.6.2
+ pretty-format: 26.6.2
+ throat: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - ts-node
+ - utf-8-validate
+ dev: true
+
+ /jest-leak-detector@26.6.2:
+ resolution: {integrity: sha1-dxfPEYuSI48uumUFTIoMnGU6ka8=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ jest-get-type: 26.3.0
+ pretty-format: 26.6.2
+ dev: true
+
+ /jest-matcher-utils@26.6.2:
+ resolution: {integrity: sha1-jm/W6GPIstMaxkcu6yN7xZXlPno=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ chalk: 4.1.2
+ jest-diff: 26.6.2
+ jest-get-type: 26.3.0
+ pretty-format: 26.6.2
+ dev: true
+
+ /jest-message-util@24.9.0:
+ resolution: {integrity: sha1-Un9UoeOA9eICqNEUmw7IcvQxGeM=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ '@types/stack-utils': 1.0.1
+ chalk: 2.4.2
+ micromatch: 3.1.10
+ slash: 2.0.0
+ stack-utils: 1.0.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /jest-message-util@26.6.2:
+ resolution: {integrity: sha1-WBc3RK1vwFBrXSEVC5vlbvABygc=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@jest/types': 26.6.2
+ '@types/stack-utils': 2.0.2
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ micromatch: 4.0.5
+ pretty-format: 26.6.2
+ slash: 3.0.0
+ stack-utils: 2.0.6
+ dev: true
+
+ /jest-mock@24.9.0:
+ resolution: {integrity: sha1-wig1VB7jebkIZzrVEIeiGFwT8cY=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/types': 24.9.0
+ dev: true
+
+ /jest-mock@26.6.2:
+ resolution: {integrity: sha1-1stxKwQe1H/g2bb8NHS8ZUP+swI=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ dev: true
+
+ /jest-pnp-resolver@1.2.3(jest-resolve@26.6.2):
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
+ engines: {node: '>=6'}
+ peerDependencies:
+ jest-resolve: '*'
+ peerDependenciesMeta:
+ jest-resolve:
+ optional: true
+ dependencies:
+ jest-resolve: 26.6.2
+ dev: true
+
+ /jest-regex-util@24.9.0:
+ resolution: {integrity: sha1-wT+zOAveIr9ldUMsST6o/jeWVjY=}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /jest-regex-util@26.0.0:
+ resolution: {integrity: sha1-0l5xhLNuOf1GbDvEG+CXHoIf7ig=}
+ engines: {node: '>= 10.14.2'}
+ dev: true
+
+ /jest-resolve-dependencies@26.6.3:
+ resolution: {integrity: sha1-ZoCFnuXSLuXc2WH+SHH1n0x4T7Y=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ jest-regex-util: 26.0.0
+ jest-snapshot: 26.6.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /jest-resolve@26.6.2:
+ resolution: {integrity: sha1-o6sVFyF/RptQTxtWYDxbtUH7tQc=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ jest-pnp-resolver: 1.2.3(jest-resolve@26.6.2)
+ jest-util: 26.6.2
+ read-pkg-up: 7.0.1
+ resolve: 1.22.8
+ slash: 3.0.0
+ dev: true
+
+ /jest-runner@26.6.3:
+ resolution: {integrity: sha1-LR/tPUbhDyM/0dvTv6o/6JJL4Vk=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/console': 26.6.2
+ '@jest/environment': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ chalk: 4.1.2
+ emittery: 0.7.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-config: 26.6.3
+ jest-docblock: 26.0.0
+ jest-haste-map: 26.6.2
+ jest-leak-detector: 26.6.2
+ jest-message-util: 26.6.2
+ jest-resolve: 26.6.2
+ jest-runtime: 26.6.3
+ jest-util: 26.6.2
+ jest-worker: 26.6.2
+ source-map-support: 0.5.21
+ throat: 5.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - ts-node
+ - utf-8-validate
+ dev: true
+
+ /jest-runtime@26.6.3:
+ resolution: {integrity: sha1-T2TvvPrDmDMbdLSzyC0n1AG4+is=}
+ engines: {node: '>= 10.14.2'}
+ hasBin: true
+ dependencies:
+ '@jest/console': 26.6.2
+ '@jest/environment': 26.6.2
+ '@jest/fake-timers': 26.6.2
+ '@jest/globals': 26.6.2
+ '@jest/source-map': 26.6.2
+ '@jest/test-result': 26.6.2
+ '@jest/transform': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/yargs': 15.0.17
+ chalk: 4.1.2
+ cjs-module-lexer: 0.6.0
+ collect-v8-coverage: 1.0.2
+ exit: 0.1.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-config: 26.6.3
+ jest-haste-map: 26.6.2
+ jest-message-util: 26.6.2
+ jest-mock: 26.6.2
+ jest-regex-util: 26.0.0
+ jest-resolve: 26.6.2
+ jest-snapshot: 26.6.2
+ jest-util: 26.6.2
+ jest-validate: 26.6.2
+ slash: 3.0.0
+ strip-bom: 4.0.0
+ yargs: 15.4.1
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - ts-node
+ - utf-8-validate
+ dev: true
+
+ /jest-serializer@24.9.0:
+ resolution: {integrity: sha1-5tfX75bTHouQeacUdUxdXFgojnM=}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /jest-serializer@26.6.2:
+ resolution: {integrity: sha1-0Tmq/UaVfTpEjzps2r4pGboHQtE=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@types/node': 20.5.1
+ graceful-fs: 4.2.11
+ dev: true
+
+ /jest-snapshot@26.6.2:
+ resolution: {integrity: sha1-87CvGssiMxaFC9FOG+6pg3+znIQ=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@babel/types': 7.23.0
+ '@jest/types': 26.6.2
+ '@types/babel__traverse': 7.20.3
+ '@types/prettier': 2.7.3
+ chalk: 4.1.2
+ expect: 26.6.2
+ graceful-fs: 4.2.11
+ jest-diff: 26.6.2
+ jest-get-type: 26.3.0
+ jest-haste-map: 26.6.2
+ jest-matcher-utils: 26.6.2
+ jest-message-util: 26.6.2
+ jest-resolve: 26.6.2
+ natural-compare: 1.4.0
+ pretty-format: 26.6.2
+ semver: 7.5.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /jest-transform-css@2.1.0(postcss@7.0.39):
+ resolution: {integrity: sha512-daar3G48riufHGCHAuwzLEhrTStWTYiZ7rskVJsTPDumLQ/LF2VCJa0jREHbJaCmAQiT5lQlXYqu+oIig91EeQ==}
+ peerDependencies:
+ postcss: ^7.0.2
+ dependencies:
+ common-tags: 1.8.0
+ cosmiconfig: 5.0.6
+ cross-spawn: 6.0.5
+ postcss: 7.0.39
+ postcss-load-config: 2.0.0
+ postcss-modules: 1.3.2
+ style-inject: 0.3.0
+ dev: true
+
+ /jest-util@24.9.0:
+ resolution: {integrity: sha1-c5aBTkhTbS6Fo33j5MQx18sUAWI=}
+ engines: {node: '>= 6'}
+ dependencies:
+ '@jest/console': 24.9.0
+ '@jest/fake-timers': 24.9.0
+ '@jest/source-map': 24.9.0
+ '@jest/test-result': 24.9.0
+ '@jest/types': 24.9.0
+ callsites: 3.1.0
+ chalk: 2.4.2
+ graceful-fs: 4.2.11
+ is-ci: 2.0.0
+ mkdirp: 0.5.6
+ slash: 2.0.0
+ source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /jest-util@26.6.2:
+ resolution: {integrity: sha1-kHU12+TVpstMR6ybkm9q8pV2y8E=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ is-ci: 2.0.0
+ micromatch: 4.0.5
+ dev: true
+
+ /jest-validate@26.6.2:
+ resolution: {integrity: sha1-I9OAlxWHFQRnNCkRw9e0rFerIOw=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/types': 26.6.2
+ camelcase: 6.3.0
+ chalk: 4.1.2
+ jest-get-type: 26.3.0
+ leven: 3.1.0
+ pretty-format: 26.6.2
+ dev: true
+
+ /jest-watcher@26.6.2:
+ resolution: {integrity: sha1-pbaDuPnWjbyx19rjIXLSzKBZKXU=}
+ engines: {node: '>= 10.14.2'}
+ dependencies:
+ '@jest/test-result': 26.6.2
+ '@jest/types': 26.6.2
+ '@types/node': 20.5.1
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ jest-util: 26.6.2
+ string-length: 4.0.2
+ dev: true
+
+ /jest-worker@24.9.0:
+ resolution: {integrity: sha1-Xb/bWy0yLphWeJgjipaXvM5ns+U=}
+ engines: {node: '>= 6'}
+ dependencies:
+ merge-stream: 2.0.0
+ supports-color: 6.1.0
+ dev: true
+
+ /jest-worker@25.5.0:
+ resolution: {integrity: sha1-JhHQcbec6g9D7lej0RhZOsFUfbE=}
+ engines: {node: '>= 8.3'}
+ dependencies:
+ merge-stream: 2.0.0
+ supports-color: 7.2.0
+ dev: true
+
+ /jest-worker@26.6.2:
+ resolution: {integrity: sha1-f3LLxNZDw2Xie5/XdfnQ6qnHqO0=}
+ engines: {node: '>= 10.13.0'}
+ dependencies:
+ '@types/node': 20.5.1
+ merge-stream: 2.0.0
+ supports-color: 7.2.0
+ dev: true
+
+ /jest-worker@27.0.6:
+ resolution: {integrity: sha1-pf2x4UrTTrIoz+Fi2fcpzb+iiu0=}
+ engines: {node: '>= 10.13.0'}
+ dependencies:
+ '@types/node': 20.5.1
+ merge-stream: 2.0.0
+ supports-color: 8.1.1
+ dev: true
+
+ /jest@26.6.3:
+ resolution: {integrity: sha1-QOj9vkjwDfofDOgSHKdLiKyRSO8=}
+ engines: {node: '>= 10.14.2'}
+ hasBin: true
+ dependencies:
+ '@jest/core': 26.6.3
+ import-local: 3.1.0
+ jest-cli: 26.6.3
+ transitivePeerDependencies:
+ - bufferutil
+ - canvas
+ - supports-color
+ - ts-node
+ - utf-8-validate
+ dev: true
+
+ /js-base64@3.7.5:
+ resolution: {integrity: sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==}
+ dev: true
+
+ /js-levenshtein@1.1.6:
+ resolution: {integrity: sha1-xs7ljrNVA3LfjeuF+tXOZs4B1Z0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /js-tokens@3.0.2:
+ resolution: {integrity: sha1-mGbfOVECEw449/mWvOtlRDIJwls=}
+ dev: true
+
+ /js-tokens@4.0.0:
+ resolution: {integrity: sha1-GSA/tZmR35jjoocFDUZHzerzJJk=}
+
+ /js-yaml@3.14.1:
+ resolution: {integrity: sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=}
+ hasBin: true
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+ dev: true
+
+ /js-yaml@4.0.0:
+ resolution: {integrity: sha1-9Ca8D/S0BRkmzViMcRExg0CaEh8=}
+ hasBin: true
+ dependencies:
+ argparse: 2.0.1
+ dev: true
+
+ /js-yaml@4.1.0:
+ resolution: {integrity: sha1-wftl+PUBeQHN0slRhkuhhFihBgI=}
+ hasBin: true
+ dependencies:
+ argparse: 2.0.1
+ dev: true
+
+ /jsdoc-type-pratt-parser@3.1.0:
+ resolution: {integrity: sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==}
+ engines: {node: '>=12.0.0'}
+ dev: true
+
+ /jsdoctypeparser@3.1.0:
+ resolution: {integrity: sha1-L2X3UWXE2cYyu0/aE+02t4MhpDs=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /jsdom@16.7.0:
+ resolution: {integrity: sha1-kYrnGWVCSxl8gZ+Bg6dU4Yl3txA=}
+ engines: {node: '>=10'}
+ peerDependencies:
+ canvas: ^2.5.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+ dependencies:
+ abab: 2.0.6
+ acorn: 8.10.0
+ acorn-globals: 6.0.0
+ cssom: 0.4.4
+ cssstyle: 2.3.0
+ data-urls: 2.0.0
+ decimal.js: 10.4.3
+ domexception: 2.0.1
+ escodegen: 2.1.0
+ form-data: 3.0.1
+ html-encoding-sniffer: 2.0.1
+ http-proxy-agent: 4.0.1
+ https-proxy-agent: 5.0.1
+ is-potential-custom-element-name: 1.0.1
+ nwsapi: 2.2.7
+ parse5: 6.0.1
+ saxes: 5.0.1
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.3
+ w3c-hr-time: 1.0.2
+ w3c-xmlserializer: 2.0.0
+ webidl-conversions: 6.1.0
+ whatwg-encoding: 1.0.5
+ whatwg-mimetype: 2.3.0
+ whatwg-url: 8.7.0
+ ws: 7.5.9
+ xml-name-validator: 3.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: true
+
+ /jsesc@0.5.0:
+ resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=}
+ hasBin: true
+ dev: true
+
+ /jsesc@2.5.2:
+ resolution: {integrity: sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: true
+
+ /json-buffer@3.0.1:
+ resolution: {integrity: sha1-kziAKjDTtmBfvgYT4JQAjKjAWhM=}
+ dev: true
+
+ /json-loader@0.5.7:
+ resolution: {integrity: sha1-3KFKcCNf+C8KyaOr62DTN6NlGF0=}
+ dev: true
+
+ /json-parse-better-errors@1.0.2:
+ resolution: {integrity: sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=}
+ dev: true
+
+ /json-parse-even-better-errors@2.3.1:
+ resolution: {integrity: sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=}
+ dev: true
+
+ /json-schema-traverse@0.4.1:
+ resolution: {integrity: sha1-afaofZUTq4u4/mO9sJecRI5oRmA=}
+ dev: true
+
+ /json-schema-traverse@1.0.0:
+ resolution: {integrity: sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=}
+ dev: true
+
+ /json-stable-stringify-without-jsonify@1.0.1:
+ resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=}
+ dev: true
+
+ /json3@3.3.3:
+ resolution: {integrity: sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E=}
+ dev: true
+
+ /json5@0.5.1:
+ resolution: {integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=}
+ hasBin: true
+ dev: true
+
+ /json5@1.0.2:
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ dev: true
+
+ /json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dev: true
+
+ /jsonfile@4.0.0:
+ resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=}
+ optionalDependencies:
+ graceful-fs: 4.2.11
+ dev: true
+
+ /jsonfile@6.1.0:
+ resolution: {integrity: sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=}
+ dependencies:
+ universalify: 2.0.0
+ optionalDependencies:
+ graceful-fs: 4.2.11
+ dev: true
+
+ /jsonparse@1.3.1:
+ resolution: {integrity: sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=}
+ engines: {'0': node >= 0.2.0}
+ dev: true
+
+ /jsonuri@2.6.0:
+ resolution: {integrity: sha512-HDrjtJXPe37gElMozF/GJNaLtzezKAOSzoIdL821Gftx4OMOoZxLbi31OJ/soeDtSNA1cjtsyFV+1VaqVaRi5w==}
+ dev: true
+
+ /jsx-ast-utils@3.3.5:
+ resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
+ engines: {node: '>=4.0'}
+ dependencies:
+ array-includes: 3.1.7
+ array.prototype.flat: 1.3.2
+ object.assign: 4.1.4
+ object.values: 1.1.7
+ dev: true
+
+ /jsx-compiler@0.4.37:
+ resolution: {integrity: sha512-gGrILD7iDfwyWz1+jjKz+3wziQo0rmFUS9NhWwysIczH5JRtz3outFXzJHw7sDj9HxnGc+p5+f4BsG+DAUJFaA==}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ chalk: 2.4.2
+ css: 2.2.4
+ fs-extra: 7.0.1
+ kebab-case: 1.0.2
+ md5: 2.3.0
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /jsx2mp-loader@0.4.36:
+ resolution: {integrity: sha512-b2eGNtDcMqJ9mvqNx69SC+7prSrAHSMXFqtzrjmbd/gB06Dc4UrPqnh1hr8jM0cTIqvWeznZslE8nCK0gFdvaA==}
+ dependencies:
+ '@babel/core': 7.23.2
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-export-default-from': 7.22.17(@babel/core@7.23.2)
+ '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2)
+ '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
+ babel-plugin-danger-remove-unused-import: 2.0.0
+ babel-plugin-minify-dead-code-elimination-while-loop-fixed: 0.3.1
+ babel-plugin-transform-define: 1.3.2
+ chalk: 2.4.2
+ convert-source-map: 1.9.0
+ csso: 3.5.1
+ enhanced-resolve: 4.5.0
+ fs-extra: 8.1.0
+ jsx-compiler: 0.4.37
+ less: 4.2.0
+ loader-utils: 1.4.2
+ miniapp-builder-shared: 0.3.0
+ pretty-data: 0.40.0
+ resolve: 1.22.8
+ sass: 1.69.5
+ stylesheet-loader: 0.9.1
+ stylus: 0.54.8
+ terser: 4.8.1
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ dev: true
+
+ /jsx2mp-runtime@0.4.25:
+ resolution: {integrity: sha512-dR8SUF0Bsig2W7DfokDgsYKryZj+oMIrHjWKOcBdXmEFrIcmbIo4DHDK/Wbmsca37ybCRzExMC0CsRGN2vNimw==}
+ dev: true
+
+ /kebab-case@1.0.2:
+ resolution: {integrity: sha512-7n6wXq4gNgBELfDCpzKc+mRrZFs7D+wgfF5WRFLNAr4DA/qtr9Js8uOAVAfHhuLMfAcQ0pRKqbpjx+TcJVdE1Q==}
+ dev: true
+
+ /keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ dependencies:
+ json-buffer: 3.0.1
+ dev: true
+
+ /killable@1.0.1:
+ resolution: {integrity: sha1-TIzkQRh6Bhx0dPuHygjipjgZSJI=}
+ dev: true
+
+ /kind-of@2.0.1:
+ resolution: {integrity: sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+
+ /kind-of@3.2.2:
+ resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+
+ /kind-of@4.0.0:
+ resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-buffer: 1.1.6
+ dev: true
+
+ /kind-of@5.1.0:
+ resolution: {integrity: sha1-cpyR4thXt6QZofmqZWhcTDP1hF0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /kind-of@6.0.3:
+ resolution: {integrity: sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /kleur@3.0.3:
+ resolution: {integrity: sha1-p5yezIbuHOP6YgbRIWxQHxR/wH4=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /kleur@4.1.5:
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /klona@2.0.6:
+ resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
+ engines: {node: '>= 8'}
+ dev: true
+
+ /known-css-properties@0.21.0:
+ resolution: {integrity: sha1-FfvQu7g0R/POCdivJH7UfGjt6A0=}
+ dev: true
+
+ /language-subtag-registry@0.3.22:
+ resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
+ dev: true
+
+ /language-tags@1.0.5:
+ resolution: {integrity: sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=}
+ dependencies:
+ language-subtag-registry: 0.3.22
+ dev: true
+
+ /last-call-webpack-plugin@3.0.0:
+ resolution: {integrity: sha1-l0LfDhDjz0blwDgcLekNOnotdVU=}
+ dependencies:
+ lodash: 4.17.21
+ webpack-sources: 1.4.3
+ dev: true
+
+ /lazy-cache@1.0.4:
+ resolution: {integrity: sha1-odePw6UEdMuAhF07O24dpJpEbo4=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /less-loader@7.3.0(less@4.2.0)(webpack@4.47.0):
+ resolution: {integrity: sha1-+dbTbRhznWQgZ6Bftb1wyMYTF+U=}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ less: ^3.5.0 || ^4.0.0
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ klona: 2.0.6
+ less: 4.2.0
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ webpack: 4.47.0
+ dev: true
+
+ /less@4.2.0:
+ resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dependencies:
+ copy-anything: 2.0.6
+ parse-node-version: 1.0.1
+ tslib: 2.6.2
+ optionalDependencies:
+ errno: 0.1.8
+ graceful-fs: 4.2.11
+ image-size: 0.5.5
+ make-dir: 2.1.0
+ mime: 1.6.0
+ needle: 3.2.0
+ source-map: 0.6.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /leven@3.1.0:
+ resolution: {integrity: sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /levn@0.4.1:
+ resolution: {integrity: sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ dev: true
+
+ /lilconfig@2.1.0:
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
+ engines: {node: '>=10'}
+ dev: true
+
+ /lines-and-columns@1.2.4:
+ resolution: {integrity: sha1-7KKE910pZQeTCdwK2SVauy68FjI=}
+ dev: true
+
+ /linkify-it@3.0.3:
+ resolution: {integrity: sha1-qYuvRM5FpVDvtNScdp0HUkzC+i4=}
+ dependencies:
+ uc.micro: 1.0.6
+ dev: true
+
+ /lint-staged@13.3.0:
+ resolution: {integrity: sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ hasBin: true
+ dependencies:
+ chalk: 5.3.0
+ commander: 11.0.0
+ debug: 4.3.4
+ execa: 7.2.0
+ lilconfig: 2.1.0
+ listr2: 6.6.1
+ micromatch: 4.0.5
+ pidtree: 0.6.0
+ string-argv: 0.3.2
+ yaml: 2.3.1
+ transitivePeerDependencies:
+ - enquirer
+ - supports-color
+ dev: true
+
+ /listr2@6.6.1:
+ resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ enquirer: '>= 2.3.0 < 3'
+ peerDependenciesMeta:
+ enquirer:
+ optional: true
+ dependencies:
+ cli-truncate: 3.1.0
+ colorette: 2.0.20
+ eventemitter3: 5.0.1
+ log-update: 5.0.1
+ rfdc: 1.3.0
+ wrap-ansi: 8.1.0
+ dev: true
+
+ /load-json-file@4.0.0:
+ resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=}
+ engines: {node: '>=4'}
+ dependencies:
+ graceful-fs: 4.2.11
+ parse-json: 4.0.0
+ pify: 3.0.0
+ strip-bom: 3.0.0
+ dev: true
+
+ /loader-runner@2.4.0:
+ resolution: {integrity: sha1-7UcGa/5TTX6ExMe5mYwqdWB9k1c=}
+ engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
+ dev: true
+
+ /loader-utils@0.2.17:
+ resolution: {integrity: sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=}
+ dependencies:
+ big.js: 3.2.0
+ emojis-list: 2.1.0
+ json5: 0.5.1
+ object-assign: 4.1.1
+ dev: true
+
+ /loader-utils@1.2.3:
+ resolution: {integrity: sha1-H/XcaRHJ8KBiUxpMBLYJQGEIwsc=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 2.1.0
+ json5: 1.0.2
+ dev: true
+
+ /loader-utils@1.4.2:
+ resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 1.0.2
+ dev: true
+
+ /loader-utils@2.0.4:
+ resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
+ engines: {node: '>=8.9.0'}
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 2.2.3
+ dev: true
+
+ /locate-path@2.0.0:
+ resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=}
+ engines: {node: '>=4'}
+ dependencies:
+ p-locate: 2.0.0
+ path-exists: 3.0.0
+ dev: true
+
+ /locate-path@3.0.0:
+ resolution: {integrity: sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=}
+ engines: {node: '>=6'}
+ dependencies:
+ p-locate: 3.0.0
+ path-exists: 3.0.0
+ dev: true
+
+ /locate-path@5.0.0:
+ resolution: {integrity: sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=}
+ engines: {node: '>=8'}
+ dependencies:
+ p-locate: 4.1.0
+ dev: true
+
+ /locate-path@6.0.0:
+ resolution: {integrity: sha1-VTIeswn+u8WcSAHZMackUqaB0oY=}
+ engines: {node: '>=10'}
+ dependencies:
+ p-locate: 5.0.0
+ dev: true
+
+ /lodash.camelcase@4.3.0:
+ resolution: {integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY=}
+ dev: true
+
+ /lodash.clonedeep@4.5.0:
+ resolution: {integrity: sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=}
+ dev: true
+
+ /lodash.debounce@4.0.8:
+ resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
+ dev: true
+
+ /lodash.isfunction@3.0.9:
+ resolution: {integrity: sha1-Bt4l302zJ6yTGYHRvbBn5a9o0FE=}
+ dev: true
+
+ /lodash.isplainobject@4.0.6:
+ resolution: {integrity: sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=}
+ dev: true
+
+ /lodash.kebabcase@4.1.1:
+ resolution: {integrity: sha1-hImxyw0p/4gZXM7KRI/21swpXDY=}
+ dev: true
+
+ /lodash.memoize@4.1.2:
+ resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=}
+ dev: true
+
+ /lodash.merge@4.6.2:
+ resolution: {integrity: sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=}
+ dev: true
+
+ /lodash.mergewith@4.6.2:
+ resolution: {integrity: sha1-YXEh+JrFX1kEfHrsHM1mVMZZD1U=}
+ dev: true
+
+ /lodash.snakecase@4.1.1:
+ resolution: {integrity: sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40=}
+ dev: true
+
+ /lodash.some@4.6.0:
+ resolution: {integrity: sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=}
+ dev: true
+
+ /lodash.startcase@4.4.0:
+ resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
+ dev: true
+
+ /lodash.truncate@4.4.2:
+ resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=}
+ dev: true
+
+ /lodash.uniq@4.5.0:
+ resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=}
+ dev: true
+
+ /lodash.upperfirst@4.3.1:
+ resolution: {integrity: sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=}
+ dev: true
+
+ /lodash@4.17.21:
+ resolution: {integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=}
+
+ /log-symbols@4.0.0:
+ resolution: {integrity: sha1-abPMRtIPRI7M23XqH6cz2eghySA=}
+ engines: {node: '>=10'}
+ dependencies:
+ chalk: 4.1.2
+ dev: true
+
+ /log-symbols@4.1.0:
+ resolution: {integrity: sha1-P727lbRoOsn8eFER55LlWNSr1QM=}
+ engines: {node: '>=10'}
+ dependencies:
+ chalk: 4.1.2
+ is-unicode-supported: 0.1.0
+ dev: true
+
+ /log-update@5.0.1:
+ resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ ansi-escapes: 5.0.0
+ cli-cursor: 4.0.0
+ slice-ansi: 5.0.0
+ strip-ansi: 7.1.0
+ wrap-ansi: 8.1.0
+ dev: true
+
+ /loglevel@1.8.1:
+ resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==}
+ engines: {node: '>= 0.6.0'}
+ dev: true
+
+ /longest-streak@2.0.4:
+ resolution: {integrity: sha1-uFmZV9pbXatk3uP+MW+ndFl9kOQ=}
+ dev: true
+
+ /longest-streak@3.1.0:
+ resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
+ dev: false
+
+ /longest@1.0.1:
+ resolution: {integrity: sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /loose-envify@1.4.0:
+ resolution: {integrity: sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=}
+ hasBin: true
+ dependencies:
+ js-tokens: 4.0.0
+
+ /lower-case@1.1.4:
+ resolution: {integrity: sha1-miyr0bno4K6ZOkv31YdcOcQujqw=}
+ dev: true
+
+ /lower-case@2.0.2:
+ resolution: {integrity: sha1-b6I3xj29xKgsoP2ILkci3F5jTig=}
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
+ /lru-cache@4.1.5:
+ resolution: {integrity: sha1-i75Q6oW+1ZvJ4z3KuCNe6bz0Q80=}
+ dependencies:
+ pseudomap: 1.0.2
+ yallist: 2.1.2
+ dev: true
+
+ /lru-cache@5.1.1:
+ resolution: {integrity: sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=}
+ dependencies:
+ yallist: 3.1.1
+ dev: true
+
+ /lru-cache@6.0.0:
+ resolution: {integrity: sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=}
+ engines: {node: '>=10'}
+ dependencies:
+ yallist: 4.0.0
+ dev: true
+
+ /magic-string@0.25.9:
+ resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
+ dependencies:
+ sourcemap-codec: 1.4.8
+ dev: true
+
+ /make-dir@2.1.0:
+ resolution: {integrity: sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=}
+ engines: {node: '>=6'}
+ dependencies:
+ pify: 4.0.1
+ semver: 5.7.2
+ dev: true
+
+ /make-dir@3.1.0:
+ resolution: {integrity: sha1-QV6WcEazp/HRhSd9hKpYIDcmoT8=}
+ engines: {node: '>=8'}
+ dependencies:
+ semver: 6.3.1
+ dev: true
+
+ /make-dir@4.0.0:
+ resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+ engines: {node: '>=10'}
+ dependencies:
+ semver: 7.5.4
+ dev: true
+
+ /make-error@1.3.6:
+ resolution: {integrity: sha1-LrLjfqm2fEiR9oShOUeZr0hM96I=}
+ dev: true
+
+ /make-iterator@0.1.1:
+ resolution: {integrity: sha1-hz0nuBmKRlqBSDtvXRbaToY+z1s=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-own: 0.1.5
+ dev: true
+
+ /make-iterator@0.2.1:
+ resolution: {integrity: sha1-oZxmATK1SubWT4gewUBWx0bb6XI=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /make-iterator@1.0.1:
+ resolution: {integrity: sha1-KbM/MSqo9UfEpeSQ9Wr87JkTOtY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 6.0.3
+ dev: true
+
+ /makeerror@1.0.12:
+ resolution: {integrity: sha1-Pl3SB5qC6BLpg8xmEMSiyw6qgBo=}
+ dependencies:
+ tmpl: 1.0.5
+ dev: true
+
+ /map-cache@0.2.2:
+ resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /map-obj@1.0.1:
+ resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /map-obj@4.3.0:
+ resolution: {integrity: sha1-kwT5Buk/qucIgNoQKp8d8OqLsFo=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /map-visit@1.0.0:
+ resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ object-visit: 1.0.1
+ dev: true
+
+ /markdown-it@12.0.2:
+ resolution: {integrity: sha1-RAG+ro34qiIh/GVlpxiOYKBu8O0=}
+ hasBin: true
+ dependencies:
+ argparse: 2.0.1
+ entities: 2.0.3
+ linkify-it: 3.0.3
+ mdurl: 1.0.1
+ uc.micro: 1.0.6
+ dev: true
+
+ /markdown-table@3.0.3:
+ resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
+ dev: false
+
+ /markdownlint-config-ali@0.1.1(markdownlint@0.22.0):
+ resolution: {integrity: sha512-nA7+Tl2aHCr0rUH1lID166FwpQ1qDdfK+cMTNFWFOgvnsYOMCP4ADWsLl+4TG+3c4xQpxT6P/tC1vfnNylbcvg==}
+ peerDependencies:
+ markdownlint: ^0.21.1
+ dependencies:
+ markdownlint: 0.22.0
+ dev: true
+
+ /markdownlint-rule-helpers@0.13.0:
+ resolution: {integrity: sha1-fMZVO8f4xMikPPZvsqOmUhJPRvk=}
+ dev: true
+
+ /markdownlint@0.22.0:
+ resolution: {integrity: sha1-TtlbYcF66fTfymoB8DjHRIRsCnI=}
+ engines: {node: '>=10'}
+ dependencies:
+ markdown-it: 12.0.2
+ dev: true
+
+ /marked@2.1.3:
+ resolution: {integrity: sha1-vQF872Qxck/Usn4GV/XOsUv/N1M=}
+ engines: {node: '>= 10'}
+ hasBin: true
+ dev: true
+
+ /mathml-tag-names@2.1.3:
+ resolution: {integrity: sha1-TdrdZzCOeAzxakdoWHjuJ7c2oKM=}
+ dev: true
+
+ /md5.js@1.3.5:
+ resolution: {integrity: sha1-tdB7jjIW4+J81yjXL3DR5qNCAF8=}
+ dependencies:
+ hash-base: 3.1.0
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
+ dev: true
+
+ /md5@2.3.0:
+ resolution: {integrity: sha1-w9qaaq46MLRreww0m4exENw72k8=}
+ dependencies:
+ charenc: 0.0.2
+ crypt: 0.0.2
+ is-buffer: 1.1.6
+ dev: true
+
+ /mdast-util-definitions@5.1.2:
+ resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
+ dependencies:
+ '@types/mdast': 3.0.14
+ '@types/unist': 2.0.9
+ unist-util-visit: 4.1.2
+ dev: true
+
+ /mdast-util-find-and-replace@3.0.1:
+ resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ escape-string-regexp: 5.0.0
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+ dev: false
+
+ /mdast-util-from-markdown@0.8.5:
+ resolution: {integrity: sha1-0e8spCvDd+ywRjqYeRDa6JvZoow=}
+ dependencies:
+ '@types/mdast': 3.0.14
+ mdast-util-to-string: 2.0.0
+ micromark: 2.11.4
+ parse-entities: 2.0.0
+ unist-util-stringify-position: 2.0.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /mdast-util-from-markdown@1.3.1:
+ resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
+ dependencies:
+ '@types/mdast': 3.0.14
+ '@types/unist': 2.0.9
+ decode-named-character-reference: 1.0.2
+ mdast-util-to-string: 3.2.0
+ micromark: 3.2.0
+ micromark-util-decode-numeric-character-reference: 1.1.0
+ micromark-util-decode-string: 1.1.0
+ micromark-util-normalize-identifier: 1.1.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ unist-util-stringify-position: 3.0.3
+ uvu: 0.5.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /mdast-util-from-markdown@2.0.0:
+ resolution: {integrity: sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ '@types/unist': 3.0.1
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ mdast-util-to-string: 4.0.0
+ micromark: 4.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.0
+ micromark-util-decode-string: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ unist-util-stringify-position: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm-autolink-literal@2.0.0:
+ resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ ccount: 2.0.1
+ devlop: 1.1.0
+ mdast-util-find-and-replace: 3.0.1
+ micromark-util-character: 2.0.1
+ dev: false
+
+ /mdast-util-gfm-footnote@2.0.0:
+ resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm-strikethrough@2.0.0:
+ resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm-table@2.0.0:
+ resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ devlop: 1.1.0
+ markdown-table: 3.0.3
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm-task-list-item@2.0.0:
+ resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-gfm@3.0.0:
+ resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
+ dependencies:
+ mdast-util-from-markdown: 2.0.0
+ mdast-util-gfm-autolink-literal: 2.0.0
+ mdast-util-gfm-footnote: 2.0.0
+ mdast-util-gfm-strikethrough: 2.0.0
+ mdast-util-gfm-table: 2.0.0
+ mdast-util-gfm-task-list-item: 2.0.0
+ mdast-util-to-markdown: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /mdast-util-phrasing@4.0.0:
+ resolution: {integrity: sha512-xadSsJayQIucJ9n053dfQwVu1kuXg7jCTdYsMK8rqzKZh52nLfSH/k0sAxE0u+pj/zKZX+o5wB+ML5mRayOxFA==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ unist-util-is: 6.0.0
+ dev: false
+
+ /mdast-util-to-hast@11.3.0:
+ resolution: {integrity: sha1-6pIgYXpxDoCqXMOsfMnUuwRArno=}
+ dependencies:
+ '@types/hast': 2.3.7
+ '@types/mdast': 3.0.14
+ '@types/mdurl': 1.0.4
+ mdast-util-definitions: 5.1.2
+ mdurl: 1.0.1
+ unist-builder: 3.0.1
+ unist-util-generated: 2.0.1
+ unist-util-position: 4.0.4
+ unist-util-visit: 4.1.2
+ dev: true
+
+ /mdast-util-to-hast@13.0.2:
+ resolution: {integrity: sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==}
+ dependencies:
+ '@types/hast': 3.0.2
+ '@types/mdast': 4.0.2
+ '@ungap/structured-clone': 1.2.0
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ trim-lines: 3.0.1
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ dev: false
+
+ /mdast-util-to-markdown@0.6.5:
+ resolution: {integrity: sha1-sz9nyoINaebMUnqT1AOSSbUEvr4=}
+ dependencies:
+ '@types/unist': 2.0.9
+ longest-streak: 2.0.4
+ mdast-util-to-string: 2.0.0
+ parse-entities: 2.0.0
+ repeat-string: 1.6.1
+ zwitch: 1.0.5
+ dev: true
+
+ /mdast-util-to-markdown@2.1.0:
+ resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ '@types/unist': 3.0.1
+ longest-streak: 3.1.0
+ mdast-util-phrasing: 4.0.0
+ mdast-util-to-string: 4.0.0
+ micromark-util-decode-string: 2.0.0
+ unist-util-visit: 5.0.0
+ zwitch: 2.0.4
+ dev: false
+
+ /mdast-util-to-string@2.0.0:
+ resolution: {integrity: sha1-uM/mpxPhCRy1tyj8SIhaR2f4uXs=}
+ dev: true
+
+ /mdast-util-to-string@3.2.0:
+ resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
+ dependencies:
+ '@types/mdast': 3.0.14
+ dev: true
+
+ /mdast-util-to-string@4.0.0:
+ resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ dev: false
+
+ /mdn-data@1.1.4:
+ resolution: {integrity: sha1-ULXU/8RXUnZXPE7tuHgIEqhBnwE=}
+ dev: true
+
+ /mdn-data@2.0.14:
+ resolution: {integrity: sha1-cRP8QoGRfWPOKbQ0RvcB5owlulA=}
+ dev: true
+
+ /mdn-data@2.0.4:
+ resolution: {integrity: sha1-aZs8OKxvHXKAkaZGULZdOIUC/Vs=}
+ dev: true
+
+ /mdurl@1.0.1:
+ resolution: {integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=}
+ dev: true
+
+ /media-typer@0.3.0:
+ resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /memory-fs@0.4.1:
+ resolution: {integrity: sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=}
+ dependencies:
+ errno: 0.1.8
+ readable-stream: 2.3.8
+ dev: true
+
+ /memory-fs@0.5.0:
+ resolution: {integrity: sha1-MkwBKIuIZSlm0WHbd4OHIIRajjw=}
+ engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
+ dependencies:
+ errno: 0.1.8
+ readable-stream: 2.3.8
+ dev: true
+
+ /meow@8.1.2:
+ resolution: {integrity: sha1-vL5FvaDuFynTUMA8/8g5WjbE6Jc=}
+ engines: {node: '>=10'}
+ dependencies:
+ '@types/minimist': 1.2.4
+ camelcase-keys: 6.2.2
+ decamelize-keys: 1.1.1
+ hard-rejection: 2.1.0
+ minimist-options: 4.1.0
+ normalize-package-data: 3.0.3
+ read-pkg-up: 7.0.1
+ redent: 3.0.0
+ trim-newlines: 3.0.1
+ type-fest: 0.18.1
+ yargs-parser: 20.2.9
+ dev: true
+
+ /meow@9.0.0:
+ resolution: {integrity: sha1-zZUQvFysne59A8c+4fmtlZ9Oo2Q=}
+ engines: {node: '>=10'}
+ dependencies:
+ '@types/minimist': 1.2.4
+ camelcase-keys: 6.2.2
+ decamelize: 1.2.0
+ decamelize-keys: 1.1.1
+ hard-rejection: 2.1.0
+ minimist-options: 4.1.0
+ normalize-package-data: 3.0.3
+ read-pkg-up: 7.0.1
+ redent: 3.0.0
+ trim-newlines: 3.0.1
+ type-fest: 0.18.1
+ yargs-parser: 20.2.9
+ dev: true
+
+ /merge-descriptors@1.0.1:
+ resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=}
+ dev: true
+
+ /merge-stream@2.0.0:
+ resolution: {integrity: sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=}
+ dev: true
+
+ /merge2@1.4.1:
+ resolution: {integrity: sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=}
+ engines: {node: '>= 8'}
+ dev: true
+
+ /methods@1.1.2:
+ resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /microevent.ts@0.1.1:
+ resolution: {integrity: sha1-cLCbg/Q99RctAgWmMCW84Pc1f6A=}
+ dev: true
+
+ /micromark-core-commonmark@1.1.0:
+ resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ micromark-factory-destination: 1.1.0
+ micromark-factory-label: 1.1.0
+ micromark-factory-space: 1.1.0
+ micromark-factory-title: 1.1.0
+ micromark-factory-whitespace: 1.1.0
+ micromark-util-character: 1.2.0
+ micromark-util-chunked: 1.1.0
+ micromark-util-classify-character: 1.1.0
+ micromark-util-html-tag-name: 1.2.0
+ micromark-util-normalize-identifier: 1.1.0
+ micromark-util-resolve-all: 1.1.0
+ micromark-util-subtokenize: 1.1.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ uvu: 0.5.6
+ dev: true
+
+ /micromark-core-commonmark@2.0.0:
+ resolution: {integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==}
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ micromark-factory-destination: 2.0.0
+ micromark-factory-label: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-factory-title: 2.0.0
+ micromark-factory-whitespace: 2.0.0
+ micromark-util-character: 2.0.1
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-html-tag-name: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-subtokenize: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-autolink-literal@2.0.0:
+ resolution: {integrity: sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==}
+ dependencies:
+ micromark-util-character: 2.0.1
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-footnote@2.0.0:
+ resolution: {integrity: sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==}
+ dependencies:
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.0.1
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-strikethrough@2.0.0:
+ resolution: {integrity: sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==}
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-table@2.0.0:
+ resolution: {integrity: sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==}
+ dependencies:
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-tagfilter@2.0.0:
+ resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
+ dependencies:
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm-task-list-item@2.0.1:
+ resolution: {integrity: sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==}
+ dependencies:
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-extension-gfm@3.0.0:
+ resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
+ dependencies:
+ micromark-extension-gfm-autolink-literal: 2.0.0
+ micromark-extension-gfm-footnote: 2.0.0
+ micromark-extension-gfm-strikethrough: 2.0.0
+ micromark-extension-gfm-table: 2.0.0
+ micromark-extension-gfm-tagfilter: 2.0.0
+ micromark-extension-gfm-task-list-item: 2.0.1
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-factory-destination@1.1.0:
+ resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ dev: true
+
+ /micromark-factory-destination@2.0.0:
+ resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
+ dependencies:
+ micromark-util-character: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-factory-label@1.1.0:
+ resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ uvu: 0.5.6
+ dev: true
+
+ /micromark-factory-label@2.0.0:
+ resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-character: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-factory-space@1.1.0:
+ resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-types: 1.1.0
+ dev: true
+
+ /micromark-factory-space@2.0.0:
+ resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
+ dependencies:
+ micromark-util-character: 2.0.1
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-factory-title@1.1.0:
+ resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
+ dependencies:
+ micromark-factory-space: 1.1.0
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ dev: true
+
+ /micromark-factory-title@2.0.0:
+ resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
+ dependencies:
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-factory-whitespace@1.1.0:
+ resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
+ dependencies:
+ micromark-factory-space: 1.1.0
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ dev: true
+
+ /micromark-factory-whitespace@2.0.0:
+ resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
+ dependencies:
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-util-character@1.2.0:
+ resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
+ dependencies:
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ dev: true
+
+ /micromark-util-character@2.0.1:
+ resolution: {integrity: sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw==}
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-util-chunked@1.1.0:
+ resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
+ dependencies:
+ micromark-util-symbol: 1.1.0
+ dev: true
+
+ /micromark-util-chunked@2.0.0:
+ resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ dev: false
+
+ /micromark-util-classify-character@1.1.0:
+ resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ dev: true
+
+ /micromark-util-classify-character@2.0.0:
+ resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
+ dependencies:
+ micromark-util-character: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-util-combine-extensions@1.1.0:
+ resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
+ dependencies:
+ micromark-util-chunked: 1.1.0
+ micromark-util-types: 1.1.0
+ dev: true
+
+ /micromark-util-combine-extensions@2.0.0:
+ resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
+ dependencies:
+ micromark-util-chunked: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-util-decode-numeric-character-reference@1.1.0:
+ resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
+ dependencies:
+ micromark-util-symbol: 1.1.0
+ dev: true
+
+ /micromark-util-decode-numeric-character-reference@2.0.0:
+ resolution: {integrity: sha512-pIgcsGxpHEtTG/rPJRz/HOLSqp5VTuIIjXlPI+6JSDlK2oljApusG6KzpS8AF0ENUMCHlC/IBb5B9xdFiVlm5Q==}
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ dev: false
+
+ /micromark-util-decode-string@1.1.0:
+ resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ micromark-util-character: 1.2.0
+ micromark-util-decode-numeric-character-reference: 1.1.0
+ micromark-util-symbol: 1.1.0
+ dev: true
+
+ /micromark-util-decode-string@2.0.0:
+ resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
+ dependencies:
+ decode-named-character-reference: 1.0.2
+ micromark-util-character: 2.0.1
+ micromark-util-decode-numeric-character-reference: 2.0.0
+ micromark-util-symbol: 2.0.0
+ dev: false
+
+ /micromark-util-encode@1.1.0:
+ resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
+ dev: true
+
+ /micromark-util-encode@2.0.0:
+ resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
+ dev: false
+
+ /micromark-util-html-tag-name@1.2.0:
+ resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
+ dev: true
+
+ /micromark-util-html-tag-name@2.0.0:
+ resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
+ dev: false
+
+ /micromark-util-normalize-identifier@1.1.0:
+ resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
+ dependencies:
+ micromark-util-symbol: 1.1.0
+ dev: true
+
+ /micromark-util-normalize-identifier@2.0.0:
+ resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
+ dependencies:
+ micromark-util-symbol: 2.0.0
+ dev: false
+
+ /micromark-util-resolve-all@1.1.0:
+ resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
+ dependencies:
+ micromark-util-types: 1.1.0
+ dev: true
+
+ /micromark-util-resolve-all@2.0.0:
+ resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
+ dependencies:
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-util-sanitize-uri@1.2.0:
+ resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
+ dependencies:
+ micromark-util-character: 1.2.0
+ micromark-util-encode: 1.1.0
+ micromark-util-symbol: 1.1.0
+ dev: true
+
+ /micromark-util-sanitize-uri@2.0.0:
+ resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
+ dependencies:
+ micromark-util-character: 2.0.1
+ micromark-util-encode: 2.0.0
+ micromark-util-symbol: 2.0.0
+ dev: false
+
+ /micromark-util-subtokenize@1.1.0:
+ resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
+ dependencies:
+ micromark-util-chunked: 1.1.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ uvu: 0.5.6
+ dev: true
+
+ /micromark-util-subtokenize@2.0.0:
+ resolution: {integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==}
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ dev: false
+
+ /micromark-util-symbol@1.1.0:
+ resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
+ dev: true
+
+ /micromark-util-symbol@2.0.0:
+ resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
+ dev: false
+
+ /micromark-util-types@1.1.0:
+ resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
+ dev: true
+
+ /micromark-util-types@2.0.0:
+ resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
+ dev: false
+
+ /micromark@2.11.4:
+ resolution: {integrity: sha1-0TQ2E47qgmOD6CJEnJpcUO5EZlo=}
+ dependencies:
+ debug: 4.3.4
+ parse-entities: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /micromark@3.2.0:
+ resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
+ dependencies:
+ '@types/debug': 4.1.10
+ debug: 4.3.4
+ decode-named-character-reference: 1.0.2
+ micromark-core-commonmark: 1.1.0
+ micromark-factory-space: 1.1.0
+ micromark-util-character: 1.2.0
+ micromark-util-chunked: 1.1.0
+ micromark-util-combine-extensions: 1.1.0
+ micromark-util-decode-numeric-character-reference: 1.1.0
+ micromark-util-encode: 1.1.0
+ micromark-util-normalize-identifier: 1.1.0
+ micromark-util-resolve-all: 1.1.0
+ micromark-util-sanitize-uri: 1.2.0
+ micromark-util-subtokenize: 1.1.0
+ micromark-util-symbol: 1.1.0
+ micromark-util-types: 1.1.0
+ uvu: 0.5.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /micromark@4.0.0:
+ resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
+ dependencies:
+ '@types/debug': 4.1.10
+ debug: 4.3.4
+ decode-named-character-reference: 1.0.2
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.0.1
+ micromark-util-chunked: 2.0.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.0
+ micromark-util-encode: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-subtokenize: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /micromatch@3.1.10:
+ resolution: {integrity: sha1-cIWbyVyYQJUvNZoGij/En57PrCM=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4
+ fragment-cache: 0.2.1
+ kind-of: 6.0.3
+ nanomatch: 1.2.13
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /micromatch@3.1.10(supports-color@6.1.0):
+ resolution: {integrity: sha1-cIWbyVyYQJUvNZoGij/En57PrCM=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ braces: 2.3.2(supports-color@6.1.0)
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ extglob: 2.0.4(supports-color@6.1.0)
+ fragment-cache: 0.2.1
+ kind-of: 6.0.3
+ nanomatch: 1.2.13(supports-color@6.1.0)
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2(supports-color@6.1.0)
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /micromatch@4.0.5:
+ resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ engines: {node: '>=8.6'}
+ dependencies:
+ braces: 3.0.2
+ picomatch: 2.3.1
+ dev: true
+
+ /miller-rabin@4.0.1:
+ resolution: {integrity: sha1-8IA1HIZbDcViqEYpZtqlNUPHik0=}
+ hasBin: true
+ dependencies:
+ bn.js: 4.12.0
+ brorand: 1.1.0
+ dev: true
+
+ /mime-db@1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /mime-types@2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
+ dependencies:
+ mime-db: 1.52.0
+ dev: true
+
+ /mime@1.6.0:
+ resolution: {integrity: sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=}
+ engines: {node: '>=4'}
+ hasBin: true
+ dev: true
+
+ /mime@2.6.0:
+ resolution: {integrity: sha1-oqaCqVzU0MsdYlfij4PafjWAA2c=}
+ engines: {node: '>=4.0.0'}
+ hasBin: true
+ dev: true
+
+ /mimic-fn@1.2.0:
+ resolution: {integrity: sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /mimic-fn@2.1.0:
+ resolution: {integrity: sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /mimic-fn@4.0.0:
+ resolution: {integrity: sha1-YKkFUNXLCyOcymXYk7GlOymHHsw=}
+ engines: {node: '>=12'}
+ dev: true
+
+ /min-indent@1.0.1:
+ resolution: {integrity: sha1-pj9oFnOzBXH76LwlaGrnRu76mGk=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /mini-css-extract-plugin@1.6.2(webpack@4.47.0):
+ resolution: {integrity: sha1-gxcrT9gS+PxKCdb20W+ST1OZDKg=}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.4.0 || ^5.0.0
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ webpack: 4.47.0
+ webpack-sources: 1.4.3
+ dev: true
+
+ /miniapp-builder-shared@0.2.12:
+ resolution: {integrity: sha512-+5dE2qfltZx1R1oIVHqWu11j703M/g7cTy4Zl5Komx2PQUnc9RsgL1hn/qFIsD1h1iKl32jnsSEpu4tBZTC9gA==}
+ dependencies:
+ axios: 0.24.0
+ enhanced-resolve: 4.5.0
+ execa: 5.1.1
+ fs-extra: 8.1.0
+ transitivePeerDependencies:
+ - debug
+ dev: true
+
+ /miniapp-builder-shared@0.3.0:
+ resolution: {integrity: sha512-1wWixYc9K0GIDpxUp/F4EE6Awwmjq6vQwvihVLoddh9RD7xkY4yHPZARhqW9WTyR70+OZ/rHhSyVW0BnFqgjPg==}
+ dependencies:
+ axios: 0.24.0
+ enhanced-resolve: 4.5.0
+ execa: 5.1.1
+ fs-extra: 8.1.0
+ transitivePeerDependencies:
+ - debug
+ dev: true
+
+ /miniapp-compile-config@0.2.5(@babel/core@7.23.2)(typescript@4.9.5)(webpack@4.47.0):
+ resolution: {integrity: sha512-cb7yKePJQnoyLnFg7nvqoEbxHl6+bnAzuxc0Sy9Q8iZ5+aKW5TbfSusVy/s1g8KsgC+pcGagqxFi0Mxh1M+TaA==}
+ peerDependencies:
+ webpack: ^4.0.0
+ dependencies:
+ chokidar: 3.5.3
+ copy-webpack-plugin: 5.1.2(webpack@4.47.0)
+ fs-extra: 8.1.0
+ json-loader: 0.5.7
+ jsx2mp-loader: 0.4.36
+ jsx2mp-runtime: 0.4.25
+ memory-fs: 0.5.0
+ miniapp-builder-shared: 0.2.12
+ rax-compile-config: 0.2.16(@babel/core@7.23.2)
+ rax-miniapp-config-webpack-plugin: 2.1.2
+ terser: 4.8.1
+ ts-loader: 8.4.0(typescript@4.9.5)(webpack@4.47.0)
+ webpack: 4.47.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - debug
+ - supports-color
+ - typescript
+ dev: true
+
+ /minimalistic-assert@1.0.1:
+ resolution: {integrity: sha1-LhlN4ERibUoQ5/f7wAznPoPk1cc=}
+ dev: true
+
+ /minimalistic-crypto-utils@1.0.1:
+ resolution: {integrity: sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=}
+ dev: true
+
+ /minimatch@3.0.4:
+ resolution: {integrity: sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=}
+ dependencies:
+ brace-expansion: 1.1.11
+ dev: true
+
+ /minimatch@3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ dependencies:
+ brace-expansion: 1.1.11
+ dev: true
+
+ /minimatch@5.1.6:
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ engines: {node: '>=10'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
+
+ /minimist-options@4.1.0:
+ resolution: {integrity: sha1-wGVXE8U6ii69d/+iR9NCxA8BBhk=}
+ engines: {node: '>= 6'}
+ dependencies:
+ arrify: 1.0.1
+ is-plain-obj: 1.1.0
+ kind-of: 6.0.3
+ dev: true
+
+ /minimist@1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ dev: true
+
+ /minipass-collect@1.0.2:
+ resolution: {integrity: sha1-IrgTv3Rdxu26JXa5QAIq1u3Ixhc=}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+
+ /minipass-flush@1.0.5:
+ resolution: {integrity: sha1-gucTXX6JpQ/+ZGEKeHlTxMTLs3M=}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+
+ /minipass-pipeline@1.2.4:
+ resolution: {integrity: sha1-aEcveXEcCEZXwGfFxq2Tzd6oIUw=}
+ engines: {node: '>=8'}
+ dependencies:
+ minipass: 3.3.6
+ dev: true
+
+ /minipass@3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
+ dependencies:
+ yallist: 4.0.0
+ dev: true
+
+ /minipass@5.0.0:
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ engines: {node: '>=8'}
+ dev: true
+
+ /minizlib@2.1.2:
+ resolution: {integrity: sha1-6Q00Zrogm5MkUVCKEc49NjIUWTE=}
+ engines: {node: '>= 8'}
+ dependencies:
+ minipass: 3.3.6
+ yallist: 4.0.0
+ dev: true
+
+ /mississippi@3.0.0:
+ resolution: {integrity: sha1-6goykfl+C16HdrNj1fChLZTGcCI=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ concat-stream: 1.6.2
+ duplexify: 3.7.1
+ end-of-stream: 1.4.4
+ flush-write-stream: 1.1.1
+ from2: 2.3.0
+ parallel-transform: 1.2.0
+ pump: 3.0.0
+ pumpify: 1.5.1
+ stream-each: 1.2.3
+ through2: 2.0.5
+ dev: true
+
+ /mixin-deep@1.3.2:
+ resolution: {integrity: sha1-ESC0PcNZp4Xc5ltVuC4lfM9HlWY=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-in: 1.0.2
+ is-extendable: 1.0.1
+ dev: true
+
+ /mkdirp@0.5.6:
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.8
+ dev: true
+
+ /mkdirp@1.0.4:
+ resolution: {integrity: sha1-PrXtYmInVteaXw4qIh3+utdcL34=}
+ engines: {node: '>=10'}
+ hasBin: true
+ dev: true
+
+ /mobx@6.10.2:
+ resolution: {integrity: sha512-B1UGC3ieK3boCjnMEcZSwxqRDMdzX65H/8zOHbuTY8ZhvrIjTUoLRR2TP2bPqIgYRfb3+dUigu8yMZufNjn0LQ==}
+ dev: true
+
+ /mocha@8.4.0:
+ resolution: {integrity: sha1-Z3voi/FZgKPK4Dpz4QoPw5l/DP8=}
+ engines: {node: '>= 10.12.0'}
+ hasBin: true
+ dependencies:
+ '@ungap/promise-all-settled': 1.1.2
+ ansi-colors: 4.1.1
+ browser-stdout: 1.3.1
+ chokidar: 3.5.1
+ debug: 4.3.1(supports-color@8.1.1)
+ diff: 5.0.0
+ escape-string-regexp: 4.0.0
+ find-up: 5.0.0
+ glob: 7.1.6
+ growl: 1.10.5
+ he: 1.2.0
+ js-yaml: 4.0.0
+ log-symbols: 4.0.0
+ minimatch: 3.0.4
+ ms: 2.1.3
+ nanoid: 3.1.20
+ serialize-javascript: 5.0.1
+ strip-json-comments: 3.1.1
+ supports-color: 8.1.1
+ which: 2.0.2
+ wide-align: 1.1.3
+ workerpool: 6.1.0
+ yargs: 16.2.0
+ yargs-parser: 20.2.4
+ yargs-unparser: 2.0.0
+ dev: true
+
+ /moment@2.29.4:
+ resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==}
+
+ /move-concurrently@1.0.1:
+ resolution: {integrity: sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=}
+ dependencies:
+ aproba: 1.2.0
+ copy-concurrently: 1.0.5
+ fs-write-stream-atomic: 1.0.10
+ mkdirp: 0.5.6
+ rimraf: 2.7.1
+ run-queue: 1.0.3
+ dev: true
+
+ /mri@1.2.0:
+ resolution: {integrity: sha1-ZyFID+wqEaSImGERWki2y+fMjws=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /ms@2.0.0:
+ resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
+ dev: true
+
+ /ms@2.1.2:
+ resolution: {integrity: sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=}
+
+ /ms@2.1.3:
+ resolution: {integrity: sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=}
+ dev: true
+
+ /multicast-dns-service-types@1.1.0:
+ resolution: {integrity: sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=}
+ dev: true
+
+ /multicast-dns@6.2.3:
+ resolution: {integrity: sha1-oOx72QVcQoL3kMPIL04o2zsxsik=}
+ hasBin: true
+ dependencies:
+ dns-packet: 1.3.4
+ thunky: 1.1.0
+ dev: true
+
+ /mute-stream@0.0.7:
+ resolution: {integrity: sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=}
+ dev: true
+
+ /mute-stream@0.0.8:
+ resolution: {integrity: sha1-FjDEKyJR/4HiooPelqVJfqkuXg0=}
+ dev: true
+
+ /nan@2.18.0:
+ resolution: {integrity: sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==}
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /nanoid@3.1.20:
+ resolution: {integrity: sha1-utwmPGsdzxS3HvqoX2q0wdbPx4g=}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+ dev: true
+
+ /nanoid@3.3.6:
+ resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+ dev: true
+
+ /nanomatch@1.2.13:
+ resolution: {integrity: sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.3
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /nanomatch@1.2.13(supports-color@6.1.0):
+ resolution: {integrity: sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ arr-diff: 4.0.0
+ array-unique: 0.3.2
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ fragment-cache: 0.2.1
+ is-windows: 1.0.2
+ kind-of: 6.0.3
+ object.pick: 1.3.0
+ regex-not: 1.0.2
+ snapdragon: 0.8.2(supports-color@6.1.0)
+ to-regex: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /natural-compare-lite@1.4.0:
+ resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
+ dev: true
+
+ /natural-compare@1.4.0:
+ resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=}
+ dev: true
+
+ /needle@3.2.0:
+ resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==}
+ engines: {node: '>= 4.4.x'}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ debug: 3.2.7
+ iconv-lite: 0.6.3
+ sax: 1.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+ optional: true
+
+ /negotiator@0.6.3:
+ resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /neo-async@2.6.2:
+ resolution: {integrity: sha1-tKr7k+OustgXTKU88WOrfXMIMF8=}
+ dev: true
+
+ /nice-try@1.0.5:
+ resolution: {integrity: sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=}
+ dev: true
+
+ /no-case@2.3.2:
+ resolution: {integrity: sha1-YLgTOWvjmz8SiKTB7V0efSi0ZKw=}
+ dependencies:
+ lower-case: 1.1.4
+ dev: true
+
+ /no-case@3.0.4:
+ resolution: {integrity: sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0=}
+ dependencies:
+ lower-case: 2.0.2
+ tslib: 2.6.2
+ dev: true
+
+ /node-dir@0.1.17:
+ resolution: {integrity: sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=}
+ engines: {node: '>= 0.10.5'}
+ dependencies:
+ minimatch: 3.1.2
+ dev: true
+
+ /node-forge@0.10.0:
+ resolution: {integrity: sha1-Mt6ir7Ppkm8C7lzoeUkCaRpna/M=}
+ engines: {node: '>= 6.0.0'}
+ dev: true
+
+ /node-int64@0.4.0:
+ resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=}
+ dev: true
+
+ /node-libs-browser@2.2.1:
+ resolution: {integrity: sha1-tk9RPRgzhiX5A0bSew0jXmMfZCU=}
+ dependencies:
+ assert: 1.5.1
+ browserify-zlib: 0.2.0
+ buffer: 4.9.2
+ console-browserify: 1.2.0
+ constants-browserify: 1.0.0
+ crypto-browserify: 3.12.0
+ domain-browser: 1.2.0
+ events: 3.3.0
+ https-browserify: 1.0.0
+ os-browserify: 0.3.0
+ path-browserify: 0.0.1
+ process: 0.11.10
+ punycode: 1.4.1
+ querystring-es3: 0.2.1
+ readable-stream: 2.3.8
+ stream-browserify: 2.0.2
+ stream-http: 2.8.3
+ string_decoder: 1.3.0
+ timers-browserify: 2.0.12
+ tty-browserify: 0.0.0
+ url: 0.11.3
+ util: 0.11.1
+ vm-browserify: 1.1.2
+ dev: true
+
+ /node-notifier@8.0.2:
+ resolution: {integrity: sha1-8xZ6OO8NLIqGaoPjGMG6Dv63AsU=}
+ requiresBuild: true
+ dependencies:
+ growly: 1.3.0
+ is-wsl: 2.2.0
+ semver: 7.5.4
+ shellwords: 0.1.1
+ uuid: 8.3.2
+ which: 2.0.2
+ dev: true
+ optional: true
+
+ /node-releases@1.1.77:
+ resolution: {integrity: sha1-ULDP7ehV3TdOdYW/Io/zTlfBwy4=}
+ dev: true
+
+ /node-releases@2.0.13:
+ resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ dev: true
+
+ /normalize-package-data@2.5.0:
+ resolution: {integrity: sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=}
+ dependencies:
+ hosted-git-info: 2.8.9
+ resolve: 1.22.8
+ semver: 5.7.2
+ validate-npm-package-license: 3.0.4
+ dev: true
+
+ /normalize-package-data@3.0.3:
+ resolution: {integrity: sha1-28w+LaWVCaCYNCKITNFy7v36Ul4=}
+ engines: {node: '>=10'}
+ dependencies:
+ hosted-git-info: 4.1.0
+ is-core-module: 2.13.1
+ semver: 7.5.4
+ validate-npm-package-license: 3.0.4
+ dev: true
+
+ /normalize-path@2.1.1:
+ resolution: {integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ remove-trailing-separator: 1.1.0
+ dev: true
+
+ /normalize-path@3.0.0:
+ resolution: {integrity: sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /normalize-range@0.1.2:
+ resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /normalize-selector@0.2.0:
+ resolution: {integrity: sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=}
+ dev: true
+
+ /normalize-url@3.3.0:
+ resolution: {integrity: sha1-suHE3E98bVd0PfczpPWXjRhlBVk=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /npm-run-path@2.0.2:
+ resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=}
+ engines: {node: '>=4'}
+ dependencies:
+ path-key: 2.0.1
+ dev: true
+
+ /npm-run-path@4.0.1:
+ resolution: {integrity: sha1-t+zR5e1T2o43pV4cImnguX7XSOo=}
+ engines: {node: '>=8'}
+ dependencies:
+ path-key: 3.1.1
+ dev: true
+
+ /npm-run-path@5.1.0:
+ resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ path-key: 4.0.0
+ dev: true
+
+ /npmlog@4.1.2:
+ resolution: {integrity: sha1-CKfyqL9zRgR3mp76StXMcXq7lUs=}
+ dependencies:
+ are-we-there-yet: 1.1.7
+ console-control-strings: 1.1.0
+ gauge: 2.7.4
+ set-blocking: 2.0.0
+ dev: true
+
+ /nth-check@1.0.2:
+ resolution: {integrity: sha1-sr0pXDfj3VijvwcAN2Zjuk2c8Fw=}
+ dependencies:
+ boolbase: 1.0.0
+ dev: true
+
+ /nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+ dependencies:
+ boolbase: 1.0.0
+ dev: true
+
+ /num2fraction@1.2.2:
+ resolution: {integrity: sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=}
+ dev: true
+
+ /number-is-nan@1.0.1:
+ resolution: {integrity: sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /nwsapi@2.2.7:
+ resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
+ dev: true
+
+ /object-assign@4.1.1:
+ resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
+ engines: {node: '>=0.10.0'}
+
+ /object-copy@0.1.0:
+ resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ copy-descriptor: 0.1.1
+ define-property: 0.2.5
+ kind-of: 3.2.2
+ dev: true
+
+ /object-inspect@1.13.1:
+ resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ dev: true
+
+ /object-is@1.1.5:
+ resolution: {integrity: sha1-ud7qpfx/GEag+uzc7sE45XePU6w=}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ dev: true
+
+ /object-keys@1.1.1:
+ resolution: {integrity: sha1-HEfyct8nfzsdrwYWd9nILiMixg4=}
+ engines: {node: '>= 0.4'}
+ dev: true
+
+ /object-visit@1.0.1:
+ resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+
+ /object.assign@4.1.4:
+ resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ has-symbols: 1.0.3
+ object-keys: 1.1.1
+ dev: true
+
+ /object.defaults@0.3.0:
+ resolution: {integrity: sha1-seucvHjEx71WysbK496tWnETiCo=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ array-each: 0.1.1
+ array-slice: 0.2.3
+ for-own: 0.1.5
+ isobject: 1.0.2
+ dev: true
+
+ /object.entries@1.1.7:
+ resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ dev: true
+
+ /object.filter@0.3.0:
+ resolution: {integrity: sha512-f/OJtvg2H7ZykQpcCbKTSucLhz9+7pmgJzrI3gPaelCkjkg9Pd+moFN2DFDfx/IWS5f/sMeSqe3xXNnb0MV4DQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-own: 0.1.5
+ make-iterator: 0.1.1
+ dev: true
+
+ /object.fromentries@2.0.7:
+ resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ dev: true
+
+ /object.getownpropertydescriptors@2.1.7:
+ resolution: {integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ array.prototype.reduce: 1.0.6
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ safe-array-concat: 1.0.1
+ dev: true
+
+ /object.groupby@1.0.1:
+ resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
+ dev: true
+
+ /object.hasown@1.1.3:
+ resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==}
+ dependencies:
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ dev: true
+
+ /object.omit@2.0.1:
+ resolution: {integrity: sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-own: 0.1.5
+ is-extendable: 0.1.1
+ dev: true
+
+ /object.omit@3.0.0:
+ resolution: {integrity: sha1-Dj7cL84rpU31V3/1KfbZe9ilIq8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extendable: 1.0.1
+ dev: true
+
+ /object.pick@1.3.0:
+ resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ isobject: 3.0.1
+ dev: true
+
+ /object.reduce@0.1.7:
+ resolution: {integrity: sha1-0YDoT3LSGDSK9FNStVFlJGuVBG0=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ for-own: 0.1.5
+ dev: true
+
+ /object.values@1.1.7:
+ resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ dev: true
+
+ /obuf@1.1.2:
+ resolution: {integrity: sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=}
+ dev: true
+
+ /omit.js@2.0.2:
+ resolution: {integrity: sha1-3ZuENvq5R6Xz/yFMslOGMeMT7C8=}
+ dev: true
+
+ /on-finished@2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ ee-first: 1.1.1
+ dev: true
+
+ /on-headers@1.0.2:
+ resolution: {integrity: sha1-dysK5qqlJcOZ5Imt+tkMQD6zwo8=}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /once@1.4.0:
+ resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
+ dependencies:
+ wrappy: 1.0.2
+ dev: true
+
+ /onetime@2.0.1:
+ resolution: {integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=}
+ engines: {node: '>=4'}
+ dependencies:
+ mimic-fn: 1.2.0
+ dev: true
+
+ /onetime@5.1.2:
+ resolution: {integrity: sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=}
+ engines: {node: '>=6'}
+ dependencies:
+ mimic-fn: 2.1.0
+ dev: true
+
+ /onetime@6.0.0:
+ resolution: {integrity: sha1-fCTBjtH9LpvKS9JoBqM2E8d9NLQ=}
+ engines: {node: '>=12'}
+ dependencies:
+ mimic-fn: 4.0.0
+ dev: true
+
+ /open@6.4.0:
+ resolution: {integrity: sha1-XBPpbQ3IlGhhZPGJZez+iJ7PyKk=}
+ engines: {node: '>=8'}
+ dependencies:
+ is-wsl: 1.1.0
+ dev: true
+
+ /open@7.4.2:
+ resolution: {integrity: sha1-uBR+Jtzz5CYxbHMAif1x7dKcIyE=}
+ engines: {node: '>=8'}
+ dependencies:
+ is-docker: 2.2.1
+ is-wsl: 2.2.0
+ dev: true
+
+ /open@9.1.0:
+ resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
+ engines: {node: '>=14.16'}
+ dependencies:
+ default-browser: 4.0.0
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ is-wsl: 2.2.0
+ dev: true
+
+ /opencollective-postinstall@2.0.3:
+ resolution: {integrity: sha1-eg//l49tv6TQBiOPusmO1BmMMlk=}
+ hasBin: true
+ dev: true
+
+ /opn@5.5.0:
+ resolution: {integrity: sha1-/HFk+rVtI1kExRw7J9pnWMo7m/w=}
+ engines: {node: '>=4'}
+ dependencies:
+ is-wsl: 1.1.0
+ dev: true
+
+ /optimize-css-assets-webpack-plugin@5.0.8(webpack@4.47.0):
+ resolution: {integrity: sha1-y8zc9abvYdT4zHjPCDpnRG5fQCo=}
+ peerDependencies:
+ webpack: ^4.0.0
+ dependencies:
+ cssnano: 4.1.11
+ last-call-webpack-plugin: 3.0.0
+ webpack: 4.47.0
+ dev: true
+
+ /optionator@0.9.3:
+ resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ engines: {node: '>= 0.8.0'}
+ dependencies:
+ '@aashutoshrathi/word-wrap': 1.2.6
+ deep-is: 0.1.4
+ fast-levenshtein: 2.0.6
+ levn: 0.4.1
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ dev: true
+
+ /ora@5.4.1:
+ resolution: {integrity: sha1-GyZ4Qmr0rEpQkAjl5KyemVnbnhg=}
+ engines: {node: '>=10'}
+ dependencies:
+ bl: 4.1.0
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-spinners: 2.9.1
+ is-interactive: 1.0.0
+ is-unicode-supported: 0.1.0
+ log-symbols: 4.1.0
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ dev: true
+
+ /os-browserify@0.3.0:
+ resolution: {integrity: sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=}
+ dev: true
+
+ /os-homedir@1.0.2:
+ resolution: {integrity: sha1-/7xJiDNuDoM94MFox+8VISGqf7M=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /os-tmpdir@1.0.2:
+ resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /p-each-series@2.2.0:
+ resolution: {integrity: sha1-EFqwNXznKyAqiouUkzZyZXteKpo=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /p-finally@1.0.0:
+ resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /p-limit@1.3.0:
+ resolution: {integrity: sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=}
+ engines: {node: '>=4'}
+ dependencies:
+ p-try: 1.0.0
+ dev: true
+
+ /p-limit@2.3.0:
+ resolution: {integrity: sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=}
+ engines: {node: '>=6'}
+ dependencies:
+ p-try: 2.2.0
+ dev: true
+
+ /p-limit@3.1.0:
+ resolution: {integrity: sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=}
+ engines: {node: '>=10'}
+ dependencies:
+ yocto-queue: 0.1.0
+ dev: true
+
+ /p-locate@2.0.0:
+ resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=}
+ engines: {node: '>=4'}
+ dependencies:
+ p-limit: 1.3.0
+ dev: true
+
+ /p-locate@3.0.0:
+ resolution: {integrity: sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=}
+ engines: {node: '>=6'}
+ dependencies:
+ p-limit: 2.3.0
+ dev: true
+
+ /p-locate@4.1.0:
+ resolution: {integrity: sha1-o0KLtwiLOmApL2aRkni3wpetTwc=}
+ engines: {node: '>=8'}
+ dependencies:
+ p-limit: 2.3.0
+ dev: true
+
+ /p-locate@5.0.0:
+ resolution: {integrity: sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=}
+ engines: {node: '>=10'}
+ dependencies:
+ p-limit: 3.1.0
+ dev: true
+
+ /p-map@2.1.0:
+ resolution: {integrity: sha1-MQko/u+cnsxltosXaTAYpmXOoXU=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /p-map@3.0.0:
+ resolution: {integrity: sha1-1wTZr4orpoTiYA2aIVmD1BQal50=}
+ engines: {node: '>=8'}
+ dependencies:
+ aggregate-error: 3.1.0
+ dev: true
+
+ /p-map@4.0.0:
+ resolution: {integrity: sha1-uy+Vpe2i7BaOySdOBqdHw+KQTSs=}
+ engines: {node: '>=10'}
+ dependencies:
+ aggregate-error: 3.1.0
+ dev: true
+
+ /p-retry@3.0.1:
+ resolution: {integrity: sha1-MWtMiJPiyNwc+okfQGxLQivr8yg=}
+ engines: {node: '>=6'}
+ dependencies:
+ retry: 0.12.0
+ dev: true
+
+ /p-try@1.0.0:
+ resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /p-try@2.2.0:
+ resolution: {integrity: sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /pako@1.0.11:
+ resolution: {integrity: sha1-bJWZ00DVTf05RjgCUqNXBaa5kr8=}
+ dev: true
+
+ /parallel-transform@1.2.0:
+ resolution: {integrity: sha1-kEnKN9bLIYLDsdLHIL6U0UpYFPw=}
+ dependencies:
+ cyclist: 1.0.2
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ dev: true
+
+ /param-case@2.1.1:
+ resolution: {integrity: sha1-35T9jPZTHs915r75oIWPvHK+Ikc=}
+ dependencies:
+ no-case: 2.3.2
+ dev: true
+
+ /param-case@3.0.4:
+ resolution: {integrity: sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU=}
+ dependencies:
+ dot-case: 3.0.4
+ tslib: 2.6.2
+ dev: true
+
+ /parent-module@1.0.1:
+ resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=}
+ engines: {node: '>=6'}
+ dependencies:
+ callsites: 3.1.0
+ dev: true
+
+ /parse-asn1@5.1.6:
+ resolution: {integrity: sha1-OFCAo+wTy2KmLTlAnLPoiETNrtQ=}
+ dependencies:
+ asn1.js: 5.4.1
+ browserify-aes: 1.2.0
+ evp_bytestokey: 1.0.3
+ pbkdf2: 3.1.2
+ safe-buffer: 5.2.1
+ dev: true
+
+ /parse-entities@2.0.0:
+ resolution: {integrity: sha1-U8brW5MUofTsmfoP33zgHs2gy+g=}
+ dependencies:
+ character-entities: 1.2.4
+ character-entities-legacy: 1.1.4
+ character-reference-invalid: 1.1.4
+ is-alphanumerical: 1.0.4
+ is-decimal: 1.0.4
+ is-hexadecimal: 1.0.4
+ dev: true
+
+ /parse-json@4.0.0:
+ resolution: {integrity: sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=}
+ engines: {node: '>=4'}
+ dependencies:
+ error-ex: 1.3.2
+ json-parse-better-errors: 1.0.2
+ dev: true
+
+ /parse-json@5.2.0:
+ resolution: {integrity: sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=}
+ engines: {node: '>=8'}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ error-ex: 1.3.2
+ json-parse-even-better-errors: 2.3.1
+ lines-and-columns: 1.2.4
+ dev: true
+
+ /parse-node-version@1.0.1:
+ resolution: {integrity: sha1-4rXb7eAOf6m8NjYH9TMn6LBzGJs=}
+ engines: {node: '>= 0.10'}
+ dev: true
+
+ /parse-prop-types@0.3.0(prop-types@15.8.1):
+ resolution: {integrity: sha512-HAvQ2sGc2Y+OLWddBG+KKlxU/F931Vq0GPSqKVaRJb6bUVdkIYxk63mJ/ZwX1VTjZ0h34qrCXE3tmSVUHB1zxQ==}
+ engines: {node: '>=6'}
+ peerDependencies:
+ prop-types: ^15.0.0
+ dependencies:
+ prop-types: 15.8.1
+ dev: true
+
+ /parse5@6.0.1:
+ resolution: {integrity: sha1-4aHAhcVps9wIMhGE8Zo5zCf3wws=}
+ dev: true
+
+ /parseqs@0.0.6:
+ resolution: {integrity: sha1-jku1oZ0c3IRKCKyXTTTic6+mcNU=}
+ dev: true
+
+ /parseuri@0.0.6:
+ resolution: {integrity: sha1-4Ulugp46wv9H85pN0ESzKCPEolo=}
+ dev: true
+
+ /parseurl@1.3.3:
+ resolution: {integrity: sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /pascal-case@3.1.2:
+ resolution: {integrity: sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs=}
+ dependencies:
+ no-case: 3.0.4
+ tslib: 2.6.2
+ dev: true
+
+ /pascalcase@0.1.1:
+ resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /path-browserify@0.0.1:
+ resolution: {integrity: sha1-5sTd1+06onxoogzE5Q4aTug7vEo=}
+ dev: true
+
+ /path-case@3.0.4:
+ resolution: {integrity: sha1-kWhkUzTrlCZYN1xW+AtMDLX4LG8=}
+ dependencies:
+ dot-case: 3.0.4
+ tslib: 2.6.2
+ dev: true
+
+ /path-dirname@1.0.2:
+ resolution: {integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=}
+ dev: true
+
+ /path-exists@3.0.0:
+ resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /path-exists@4.0.0:
+ resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /path-is-absolute@1.0.1:
+ resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /path-is-inside@1.0.2:
+ resolution: {integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=}
+ dev: true
+
+ /path-key@2.0.1:
+ resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /path-key@3.1.1:
+ resolution: {integrity: sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /path-key@4.0.0:
+ resolution: {integrity: sha1-KVWI3DruZBVPh3rbnXgLgcVUvxg=}
+ engines: {node: '>=12'}
+ dev: true
+
+ /path-parse@1.0.7:
+ resolution: {integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=}
+ dev: true
+
+ /path-to-regexp@0.1.7:
+ resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=}
+ dev: true
+
+ /path-to-regexp@1.8.0:
+ resolution: {integrity: sha1-iHs7qdhDk+h6CgufTLdWGYtTVIo=}
+ dependencies:
+ isarray: 0.0.1
+ dev: true
+
+ /path-type@3.0.0:
+ resolution: {integrity: sha1-zvMdyOCho7sNEFwM2Xzzv0f0428=}
+ engines: {node: '>=4'}
+ dependencies:
+ pify: 3.0.0
+ dev: true
+
+ /path-type@4.0.0:
+ resolution: {integrity: sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /pbkdf2@3.1.2:
+ resolution: {integrity: sha1-3YIqoIh1gOUvGgOdw+2hCO+uMHU=}
+ engines: {node: '>=0.12'}
+ dependencies:
+ create-hash: 1.2.0
+ create-hmac: 1.1.7
+ ripemd160: 2.0.2
+ safe-buffer: 5.2.1
+ sha.js: 2.4.11
+ dev: true
+
+ /picocolors@0.2.1:
+ resolution: {integrity: sha1-VwZw95NkaFHRuhNZlpYqutWHhZ8=}
+ dev: true
+
+ /picocolors@1.0.0:
+ resolution: {integrity: sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=}
+ dev: true
+
+ /picomatch@2.3.1:
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
+ dev: true
+
+ /pidtree@0.6.0:
+ resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
+ engines: {node: '>=0.10'}
+ hasBin: true
+ dev: true
+
+ /pify@2.3.0:
+ resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /pify@3.0.0:
+ resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /pify@4.0.1:
+ resolution: {integrity: sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /pinkie-promise@2.0.1:
+ resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ pinkie: 2.0.4
+ dev: true
+
+ /pinkie@2.0.4:
+ resolution: {integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /pirates@4.0.6:
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ engines: {node: '>= 6'}
+ dev: true
+
+ /pkg-dir@3.0.0:
+ resolution: {integrity: sha1-J0kCDyOe2ZCIGx9xIQ1R62UjvqM=}
+ engines: {node: '>=6'}
+ dependencies:
+ find-up: 3.0.0
+ dev: true
+
+ /pkg-dir@4.2.0:
+ resolution: {integrity: sha1-8JkTPfft5CLoHR2ESCcO6z5CYfM=}
+ engines: {node: '>=8'}
+ dependencies:
+ find-up: 4.1.0
+ dev: true
+
+ /pkg-up@2.0.0:
+ resolution: {integrity: sha1-yBmscoBZpGHKscOImivjxJoATX8=}
+ engines: {node: '>=4'}
+ dependencies:
+ find-up: 2.1.0
+ dev: true
+
+ /pkg-up@3.1.0:
+ resolution: {integrity: sha1-EA7CNcwVDk/UJRlBJZaihRKg3vU=}
+ engines: {node: '>=8'}
+ dependencies:
+ find-up: 3.0.0
+ dev: true
+
+ /please-upgrade-node@3.2.0:
+ resolution: {integrity: sha1-rt3T+ZTJM+StmLmdmlVu+g4v6UI=}
+ dependencies:
+ semver-compare: 1.0.0
+ dev: true
+
+ /portfinder@1.0.32(supports-color@6.1.0):
+ resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==}
+ engines: {node: '>= 0.12.0'}
+ dependencies:
+ async: 2.6.4
+ debug: 3.2.7(supports-color@6.1.0)
+ mkdirp: 0.5.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /posix-character-classes@0.1.1:
+ resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /postcss-attribute-case-insensitive@4.0.2:
+ resolution: {integrity: sha1-2T5GtQRYnpSscnewRjImxoBBqIA=}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.0.13
+ dev: true
+
+ /postcss-calc@7.0.5:
+ resolution: {integrity: sha1-+KbpnxLmGcLrwjz2xIb9wVhgkz4=}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.0.13
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-color-functional-notation@2.0.1:
+ resolution: {integrity: sha1-Xv03qI+6vrAKKWbR5T2Yztk/dOA=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-color-gray@5.0.0:
+ resolution: {integrity: sha1-Uyox65CfjaiYzv/ilv3B+GS+hUc=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-color-hex-alpha@5.0.3:
+ resolution: {integrity: sha1-qNnKTDnUl8lmHjdLnFGJnvD4c4g=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-color-mod-function@3.0.3:
+ resolution: {integrity: sha1-gWuhRawRzDy2uqkFp1pJ+QPk0x0=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-color-rebeccapurple@4.0.1:
+ resolution: {integrity: sha1-x6ib6HK7dORbHjAiv+V0iCPm3nc=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-colormin@4.0.3:
+ resolution: {integrity: sha1-rgYLzpPteUrHEmTwgTLVUJVr04E=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.22.1
+ color: 3.2.1
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-convert-values@4.0.1:
+ resolution: {integrity: sha1-yjgT7U2g+BL51DcDWE5Enr4Ymn8=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-custom-media@7.0.8:
+ resolution: {integrity: sha1-//0T/+/61zYhvl84cHaiiwApTgw=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-custom-properties@8.0.11:
+ resolution: {integrity: sha1-LWF3LW6S8i9eDVJgLfj65G+jDZc=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-custom-selectors@5.1.2:
+ resolution: {integrity: sha1-ZIWMbrLs/y+0HQsoyd17PbTef7o=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: true
+
+ /postcss-dir-pseudo-class@5.0.0:
+ resolution: {integrity: sha1-bjpBd9Dts6vMhf22+7HCbauuq6I=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: true
+
+ /postcss-discard-comments@4.0.2:
+ resolution: {integrity: sha1-H7q9LCRr/2qq15l7KwkY9NevQDM=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-discard-duplicates@4.0.2:
+ resolution: {integrity: sha1-P+EzzTyCKC5VD8myORdqkge3hOs=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-discard-empty@4.0.1:
+ resolution: {integrity: sha1-yMlR6fc+2UKAGUWERKAq2Qu592U=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-discard-overridden@4.0.1:
+ resolution: {integrity: sha1-ZSrvipZybwKfXj4AFG7npOdV/1c=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-double-position-gradients@1.0.0:
+ resolution: {integrity: sha1-/JJ9Uv3ciWyzooEuvF3xR+EQUi4=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-env-function@2.0.2:
+ resolution: {integrity: sha1-Dz49PFfwlKksK69LYkHwsNpTZdc=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-focus-visible@4.0.0:
+ resolution: {integrity: sha1-R30QcROt5gJLFBKDF63ivR4XBG4=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-focus-within@3.0.0:
+ resolution: {integrity: sha1-djuHiFls7puHTJmSAc3egGWe9oA=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-font-variant@4.0.1:
+ resolution: {integrity: sha1-QtTAqzCJT2D5ixdWHrXAMh9QJkE=}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-gap-properties@2.0.0:
+ resolution: {integrity: sha1-QxwZKrPtlqPD0J8v9hWWD5AsFxU=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-html@0.36.0(postcss-syntax@0.36.2)(postcss@7.0.39):
+ resolution: {integrity: sha1-tAkT+U6qzCRT/TChMnrW7h+IsgQ=}
+ peerDependencies:
+ postcss: '>=5.0.0'
+ postcss-syntax: '>=0.36.0'
+ dependencies:
+ htmlparser2: 3.10.1
+ postcss: 7.0.39
+ postcss-syntax: 0.36.2(postcss@7.0.39)
+ dev: true
+
+ /postcss-image-set-function@3.0.1:
+ resolution: {integrity: sha1-KJIKLymUW+1MMZjX32SW1BDT8og=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-initial@3.0.4:
+ resolution: {integrity: sha1-nTIGmhBTH+Lsr6C2rHUO4Lx+/FM=}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-lab-function@2.0.1:
+ resolution: {integrity: sha1-u1GmhWzRIomrSuINseOCHvE9fS4=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@csstools/convert-colors': 1.4.0
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-less@3.1.4:
+ resolution: {integrity: sha1-Np9YZCtZKO+Jj/vBpuk8lYMExa0=}
+ engines: {node: '>=6.14.4'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-load-config@2.0.0:
+ resolution: {integrity: sha1-8TEt2/WRLNdHF3CDxe96GdYu5IQ=}
+ engines: {node: '>= 4'}
+ dependencies:
+ cosmiconfig: 4.0.0
+ import-cwd: 2.1.0
+ dev: true
+
+ /postcss-load-config@2.1.2:
+ resolution: {integrity: sha1-xepQTyxK7zPHNZo03jVzdyrXUCo=}
+ engines: {node: '>= 4'}
+ dependencies:
+ cosmiconfig: 5.2.1
+ import-cwd: 2.1.0
+ dev: true
+
+ /postcss-loader@3.0.0:
+ resolution: {integrity: sha1-a5eUPkfHLYRfqeA/Jzdz1OjdbC0=}
+ engines: {node: '>= 6'}
+ dependencies:
+ loader-utils: 1.4.2
+ postcss: 7.0.39
+ postcss-load-config: 2.1.2
+ schema-utils: 1.0.0
+ dev: true
+
+ /postcss-logical@3.0.0:
+ resolution: {integrity: sha1-JJXQ+LgunyYnJfdflAGzTntF1bU=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-media-minmax@4.0.0:
+ resolution: {integrity: sha1-t1u2y8IXyKxJQz4S8iBIgUpPXtU=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-media-query-parser@0.2.3:
+ resolution: {integrity: sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=}
+ dev: true
+
+ /postcss-merge-longhand@4.0.11:
+ resolution: {integrity: sha1-YvSaE+Sg7gTnuY9CuxYGLKJUniQ=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ css-color-names: 0.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ stylehacks: 4.0.3
+ dev: true
+
+ /postcss-merge-rules@4.0.3:
+ resolution: {integrity: sha1-NivqT/Wh+Y5AdacTxsslrv75plA=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.22.1
+ caniuse-api: 3.0.0
+ cssnano-util-same-parent: 4.0.1
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
+ vendors: 1.0.4
+ dev: true
+
+ /postcss-minify-font-values@4.0.2:
+ resolution: {integrity: sha1-zUw0TM5HQ0P6xdgiBqssvLiv1aY=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-minify-gradients@4.0.2:
+ resolution: {integrity: sha1-k7KcL/UJnFNe7NpWxKpuZlpmNHE=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ is-color-stop: 1.1.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-minify-params@4.0.2:
+ resolution: {integrity: sha1-a5zvAwwR41Jh+V9hjJADbWgNuHQ=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ alphanum-sort: 1.0.2
+ browserslist: 4.22.1
+ cssnano-util-get-arguments: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ uniqs: 2.0.0
+ dev: true
+
+ /postcss-minify-selectors@4.0.2:
+ resolution: {integrity: sha1-4uXrQL/uUA0M2SQ1APX46kJi+9g=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ alphanum-sort: 1.0.2
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
+ dev: true
+
+ /postcss-modules-extract-imports@1.1.0:
+ resolution: {integrity: sha1-thTJcgvmgW6u41+zpfqh26agXds=}
+ dependencies:
+ postcss: 6.0.1
+ dev: true
+
+ /postcss-modules-extract-imports@2.0.0:
+ resolution: {integrity: sha1-gYcZoa4doyX5gyRGsBE27rSTzX4=}
+ engines: {node: '>= 6'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-modules-local-by-default@1.2.0:
+ resolution: {integrity: sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=}
+ dependencies:
+ css-selector-tokenizer: 0.7.3
+ postcss: 6.0.1
+ dev: true
+
+ /postcss-modules-local-by-default@3.0.3:
+ resolution: {integrity: sha1-uxTgzHgnnVBNvcv9fgyiiZP/u7A=}
+ engines: {node: '>= 6'}
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.39
+ postcss-selector-parser: 6.0.13
+ postcss-value-parser: 4.2.0
+ dev: true
+
+ /postcss-modules-scope@1.1.0:
+ resolution: {integrity: sha1-1upkmUx5+XtipytCb75gVqGUu5A=}
+ dependencies:
+ css-selector-tokenizer: 0.7.3
+ postcss: 6.0.1
+ dev: true
+
+ /postcss-modules-scope@2.2.0:
+ resolution: {integrity: sha1-OFyuATzHdD9afXYC0Qc6iequYu4=}
+ engines: {node: '>= 6'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 6.0.13
+ dev: true
+
+ /postcss-modules-values@1.3.0:
+ resolution: {integrity: sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=}
+ dependencies:
+ icss-replace-symbols: 1.1.0
+ postcss: 6.0.1
+ dev: true
+
+ /postcss-modules-values@3.0.0:
+ resolution: {integrity: sha1-W1AA1uuuKbQlUwG0o6VFdEI+fxA=}
+ dependencies:
+ icss-utils: 4.1.1
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-modules@1.3.2:
+ resolution: {integrity: sha1-CmFrhDh/H2DdKKAfWXaH6Ft7hIE=}
+ dependencies:
+ css-modules-loader-core: 1.1.0
+ generic-names: 1.0.3
+ lodash.camelcase: 4.3.0
+ postcss: 7.0.39
+ string-hash: 1.1.3
+ dev: true
+
+ /postcss-nesting@7.0.1:
+ resolution: {integrity: sha1-tQrXt/AXPlteOIDDUBNEcD4EwFI=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-normalize-charset@4.0.1:
+ resolution: {integrity: sha1-izWt067oOhNrBHHg1ZvlilAoXdQ=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-normalize-display-values@4.0.2:
+ resolution: {integrity: sha1-Db4EpM6QY9RmftK+R2u4MMglk1o=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-normalize-positions@4.0.2:
+ resolution: {integrity: sha1-BfdX+E8mBDc3g2ipH4ky1LECkX8=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-normalize-repeat-style@4.0.2:
+ resolution: {integrity: sha1-xOu8KJ85kaAo1EdRy90RkYsXkQw=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-normalize-string@4.0.2:
+ resolution: {integrity: sha1-zUTECrB6DHo23F6Zqs4eyk7CaQw=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-normalize-timing-functions@4.0.2:
+ resolution: {integrity: sha1-jgCcoqOUnNr4rSPmtquZy159KNk=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-normalize-unicode@4.0.1:
+ resolution: {integrity: sha1-hBvUj9zzAZrUuqdJOj02O1KuHPs=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.22.1
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-normalize-url@4.0.1:
+ resolution: {integrity: sha1-EOQ3+GvHx+WPe5ZS7YeNqqlfquE=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ is-absolute-url: 2.1.0
+ normalize-url: 3.3.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-normalize-whitespace@4.0.2:
+ resolution: {integrity: sha1-vx1AcP5Pzqh9E0joJdjMDF+qfYI=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-ordered-values@4.1.2:
+ resolution: {integrity: sha1-DPdcgg7H1cTSgBiVWeC1ceusDu4=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-arguments: 4.0.0
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-overflow-shorthand@2.0.0:
+ resolution: {integrity: sha1-MezzUOnG9t3CUKePDD4RHzLdTDA=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-page-break@2.0.0:
+ resolution: {integrity: sha1-rdUtDgpSjKvmr+6LRuKrsnffRr8=}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-place@4.0.1:
+ resolution: {integrity: sha1-6fOdM9LcWE5G7h20Wtt3yp0dzGI=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-values-parser: 2.0.1
+ dev: true
+
+ /postcss-plugin-rpx2vw@0.0.2:
+ resolution: {integrity: sha512-WhQWiFilLFr3HnYpGuJFGCM7/eVDEBeqgof6pUQd1CUiYspS9F8rnOVNiT+N2Pdl47qtwc8J+lX4mlkLGNpGxg==}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-preset-env@6.7.2:
+ resolution: {integrity: sha512-nz+VyUUEB9uAxo5VxI0Gq4E31UjHCG3cUiZW3PzRn7KqkGlAEWuYgb/VLbAitEq7Ooubfix+H2JCm9v+C6hJuw==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ autoprefixer: 9.8.8
+ browserslist: 4.22.1
+ caniuse-lite: 1.0.30001554
+ css-blank-pseudo: 0.1.4
+ css-has-pseudo: 0.10.0
+ css-prefers-color-scheme: 3.1.1
+ cssdb: 4.4.0
+ postcss: 7.0.39
+ postcss-attribute-case-insensitive: 4.0.2
+ postcss-color-functional-notation: 2.0.1
+ postcss-color-gray: 5.0.0
+ postcss-color-hex-alpha: 5.0.3
+ postcss-color-mod-function: 3.0.3
+ postcss-color-rebeccapurple: 4.0.1
+ postcss-custom-media: 7.0.8
+ postcss-custom-properties: 8.0.11
+ postcss-custom-selectors: 5.1.2
+ postcss-dir-pseudo-class: 5.0.0
+ postcss-double-position-gradients: 1.0.0
+ postcss-env-function: 2.0.2
+ postcss-focus-visible: 4.0.0
+ postcss-focus-within: 3.0.0
+ postcss-font-variant: 4.0.1
+ postcss-gap-properties: 2.0.0
+ postcss-image-set-function: 3.0.1
+ postcss-initial: 3.0.4
+ postcss-lab-function: 2.0.1
+ postcss-logical: 3.0.0
+ postcss-media-minmax: 4.0.0
+ postcss-nesting: 7.0.1
+ postcss-overflow-shorthand: 2.0.0
+ postcss-page-break: 2.0.0
+ postcss-place: 4.0.1
+ postcss-pseudo-class-any-link: 6.0.0
+ postcss-replace-overflow-wrap: 3.0.0
+ postcss-selector-matches: 4.0.0
+ postcss-selector-not: 4.0.1
+ dev: true
+
+ /postcss-pseudo-class-any-link@6.0.0:
+ resolution: {integrity: sha1-LtPu05OzcCh53sSocDKyENrrBNE=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-selector-parser: 5.0.0
+ dev: true
+
+ /postcss-reduce-initial@4.0.3:
+ resolution: {integrity: sha1-f9QuvqXpyBRgljniwuhK4nC6SN8=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.22.1
+ caniuse-api: 3.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-reduce-transforms@4.0.2:
+ resolution: {integrity: sha1-F++kBerMbge+NBSlyi0QdGgdTik=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ cssnano-util-get-match: 4.0.0
+ has: 1.0.4
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ dev: true
+
+ /postcss-replace-overflow-wrap@3.0.0:
+ resolution: {integrity: sha1-YbNg/9rtyoTHyRjSsPDQ6lWasBw=}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-resolve-nested-selector@0.1.1:
+ resolution: {integrity: sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=}
+ dev: true
+
+ /postcss-safe-parser@4.0.2:
+ resolution: {integrity: sha1-ptTkjw832ffBGypYG/APi6SHC5Y=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-sass@0.4.4:
+ resolution: {integrity: sha1-kfDzRHtFzjcyJ6mLYfjY8HhShaM=}
+ dependencies:
+ gonzales-pe: 4.3.0
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-scss@2.1.1:
+ resolution: {integrity: sha1-7Dp1+imlXgFrkL8yaQJsU8HSs4M=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-selector-matches@4.0.0:
+ resolution: {integrity: sha1-ccgkj5F7osyTA3yWN+4JxkQ2/P8=}
+ dependencies:
+ balanced-match: 1.0.2
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-selector-not@4.0.1:
+ resolution: {integrity: sha1-JjAW7vHPIZ4K3pqRN4D8H0ggTL8=}
+ dependencies:
+ balanced-match: 1.0.2
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-selector-parser@3.1.2:
+ resolution: {integrity: sha1-sxD1xMD9r3b5SQK7qjDbaqhPUnA=}
+ engines: {node: '>=8'}
+ dependencies:
+ dot-prop: 5.3.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+
+ /postcss-selector-parser@5.0.0:
+ resolution: {integrity: sha1-JJBENWaXsztk8aj3yAki3d7nGVw=}
+ engines: {node: '>=4'}
+ dependencies:
+ cssesc: 2.0.0
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+
+ /postcss-selector-parser@6.0.13:
+ resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+ dev: true
+
+ /postcss-svgo@4.0.3:
+ resolution: {integrity: sha1-NDos26yVBdQWJD1Jb3JPOIlMlB4=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ postcss: 7.0.39
+ postcss-value-parser: 3.3.1
+ svgo: 1.3.2
+ dev: true
+
+ /postcss-syntax@0.36.2(postcss@7.0.39):
+ resolution: {integrity: sha1-8IV4x9lYNFdOVZOoLfv6ivrjtRw=}
+ peerDependencies:
+ postcss: '>=5.0.0'
+ postcss-html: '*'
+ postcss-jsx: '*'
+ postcss-less: '*'
+ postcss-markdown: '*'
+ postcss-scss: '*'
+ peerDependenciesMeta:
+ postcss-html:
+ optional: true
+ postcss-jsx:
+ optional: true
+ postcss-less:
+ optional: true
+ postcss-markdown:
+ optional: true
+ postcss-scss:
+ optional: true
+ dependencies:
+ postcss: 7.0.39
+ dev: true
+
+ /postcss-unique-selectors@4.0.1:
+ resolution: {integrity: sha1-lEaRHzKJv9ZMbWgPBzwDsfnuS6w=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ alphanum-sort: 1.0.2
+ postcss: 7.0.39
+ uniqs: 2.0.0
+ dev: true
+
+ /postcss-value-parser@3.3.1:
+ resolution: {integrity: sha1-n/giVH4okyE88cMO+lGsX9G6goE=}
+ dev: true
+
+ /postcss-value-parser@4.2.0:
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+ dev: true
+
+ /postcss-values-parser@2.0.1:
+ resolution: {integrity: sha1-2otHLZAdoeIFtHvcmGN7np5VDl8=}
+ engines: {node: '>=6.14.4'}
+ dependencies:
+ flatten: 1.0.3
+ indexes-of: 1.0.1
+ uniq: 1.0.1
+ dev: true
+
+ /postcss@6.0.1:
+ resolution: {integrity: sha1-AA29H47vIXqjaLmiEsX8QLKo8/I=}
+ engines: {node: '>=4.0.0'}
+ dependencies:
+ chalk: 1.1.3
+ source-map: 0.5.7
+ supports-color: 3.2.3
+ dev: true
+
+ /postcss@7.0.39:
+ resolution: {integrity: sha1-liQ3XZZWMOLh8sAqk1yCpZy0gwk=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ picocolors: 0.2.1
+ source-map: 0.6.1
+ dev: true
+
+ /postcss@8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.6
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
+ dev: true
+
+ /prelude-ls@1.2.1:
+ resolution: {integrity: sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=}
+ engines: {node: '>= 0.8.0'}
+ dev: true
+
+ /prettier-linter-helpers@1.0.0:
+ resolution: {integrity: sha1-0j1B/hN1ZG3i0BBNNFSjAIgCz3s=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ fast-diff: 1.3.0
+ dev: true
+
+ /prettier-plugin-organize-imports@3.2.3(prettier@2.8.8)(typescript@4.9.5):
+ resolution: {integrity: sha512-KFvk8C/zGyvUaE3RvxN2MhCLwzV6OBbFSkwZ2OamCrs9ZY4i5L77jQ/w4UmUr+lqX8qbaqVq6bZZkApn+IgJSg==}
+ peerDependencies:
+ '@volar/vue-language-plugin-pug': ^1.0.4
+ '@volar/vue-typescript': ^1.0.4
+ prettier: '>=2.0'
+ typescript: '>=2.9'
+ peerDependenciesMeta:
+ '@volar/vue-language-plugin-pug':
+ optional: true
+ '@volar/vue-typescript':
+ optional: true
+ dependencies:
+ prettier: 2.8.8
+ typescript: 4.9.5
+ dev: true
+
+ /prettier-plugin-packagejson@2.4.6(prettier@2.8.8):
+ resolution: {integrity: sha512-5JGfzkJRL0DLNyhwmiAV9mV0hZLHDwddFCs2lc9CNxOChpoWUQVe8K4qTMktmevmDlMpok2uT10nvHUyU59sNw==}
+ peerDependencies:
+ prettier: '>= 1.16.0'
+ peerDependenciesMeta:
+ prettier:
+ optional: true
+ dependencies:
+ prettier: 2.8.8
+ sort-package-json: 2.6.0
+ synckit: 0.8.5
dev: true
- /es-to-primitive@1.2.1:
- resolution: {integrity: sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=}
- engines: {node: '>= 0.4'}
+ /prettier@2.8.8:
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dev: true
+
+ /pretty-data@0.40.0:
+ resolution: {integrity: sha512-YFLnEdDEDnkt/GEhet5CYZHCvALw6+Elyb/tp8kQG03ZSIuzeaDWpZYndCXwgqu4NAjh1PI534dhDS1mHarRnQ==}
+ dev: true
+
+ /pretty-error@2.1.2:
+ resolution: {integrity: sha1-von4LYGxyG7I/fvDhQRYgnJ/k7Y=}
dependencies:
- is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
+ lodash: 4.17.21
+ renderkid: 2.0.7
dev: true
- /escalade@3.1.1:
- resolution: {integrity: sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=}
+ /pretty-format@26.6.2:
+ resolution: {integrity: sha1-41wnBfFMt/4v6U+geDRbREEg/JM=}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@jest/types': 26.6.2
+ ansi-regex: 5.0.1
+ ansi-styles: 4.3.0
+ react-is: 17.0.2
+ dev: true
+
+ /pretty-time@1.1.0:
+ resolution: {integrity: sha1-/7dCmvq7hTXDRqNOQYc63z103Q4=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /prismjs@1.29.0:
+ resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
engines: {node: '>=6'}
dev: true
- /escape-string-regexp@1.0.5:
- resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
- engines: {node: '>=0.8.0'}
+ /process-nextick-args@2.0.1:
+ resolution: {integrity: sha1-eCDZsWEgzFXKmud5JoCufbptf+I=}
dev: true
- /escape-string-regexp@4.0.0:
- resolution: {integrity: sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=}
- engines: {node: '>=10'}
+ /process@0.11.10:
+ resolution: {integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=}
+ engines: {node: '>= 0.6.0'}
dev: true
- /eslint-config-egg@12.3.1(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-+0VZw6oklJZNERkTJSDCvna5NFXYKbP4QvcqqhLt5MpRivGyq1NB5bExlHcLqh6VlHWzz/tZDO/hEkQutJNgOA==}
- engines: {node: '>= 14.17.0'}
+ /progress@1.1.8:
+ resolution: {integrity: sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
+ /progress@2.0.3:
+ resolution: {integrity: sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
+ /promise-inflight@1.0.1:
+ resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=}
+ peerDependencies:
+ bluebird: '*'
+ peerDependenciesMeta:
+ bluebird:
+ optional: true
+ dev: true
+
+ /promise-inflight@1.0.1(bluebird@3.7.2):
+ resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=}
+ peerDependencies:
+ bluebird: '*'
+ peerDependenciesMeta:
+ bluebird:
+ optional: true
+ dependencies:
+ bluebird: 3.7.2
+ dev: true
+
+ /prompts@2.4.2:
+ resolution: {integrity: sha1-e1fnOzpIAprRDr1E90sBcipMsGk=}
+ engines: {node: '>= 6'}
+ dependencies:
+ kleur: 3.0.3
+ sisteransi: 1.0.5
+ dev: true
+
+ /prop-types@15.8.1:
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react-is: 16.13.1
+
+ /property-information@6.3.0:
+ resolution: {integrity: sha512-gVNZ74nqhRMiIUYWGQdosYetaKc83x8oT41a0LlV3AAFCAZwCpg4vmGkq8t34+cUhp3cnM4XDiU/7xlgK7HGrg==}
+
+ /proxy-addr@2.0.7:
+ resolution: {integrity: sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=}
+ engines: {node: '>= 0.10'}
+ dependencies:
+ forwarded: 0.2.0
+ ipaddr.js: 1.9.1
+ dev: true
+
+ /prr@1.0.1:
+ resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=}
+ requiresBuild: true
+ dev: true
+
+ /pseudomap@1.0.2:
+ resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=}
+ dev: true
+
+ /psl@1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
+ dev: true
+
+ /public-encrypt@4.0.3:
+ resolution: {integrity: sha1-T8ydd6B+SLp1J+fL4N4z0HATMeA=}
+ dependencies:
+ bn.js: 4.12.0
+ browserify-rsa: 4.1.0
+ create-hash: 1.2.0
+ parse-asn1: 5.1.6
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+ dev: true
+
+ /pump@2.0.1:
+ resolution: {integrity: sha1-Ejma3W5M91Jtlzy8i1zi4pCLOQk=}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: true
+
+ /pump@3.0.0:
+ resolution: {integrity: sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=}
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+ dev: true
+
+ /pumpify@1.5.1:
+ resolution: {integrity: sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4=}
+ dependencies:
+ duplexify: 3.7.1
+ inherits: 2.0.4
+ pump: 2.0.1
+ dev: true
+
+ /punycode@1.4.1:
+ resolution: {integrity: sha1-wNWmOycYgArY4esPpSachN1BhF4=}
+ dev: true
+
+ /punycode@2.3.0:
+ resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /q@1.5.1:
+ resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=}
+ engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
+ dev: true
+
+ /qrcode-terminal@0.12.0:
+ resolution: {integrity: sha1-u1tpnvf58FBQkqN0i+RGT+cbWBk=}
+ hasBin: true
+ dev: true
+
+ /qs@6.11.0:
+ resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.4
+ dev: true
+
+ /qs@6.11.2:
+ resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
+ engines: {node: '>=0.6'}
+ dependencies:
+ side-channel: 1.0.4
+ dev: true
+
+ /query-string@6.14.1:
+ resolution: {integrity: sha1-esLcpG2n8wlEm6D4ax/SglWwyGo=}
+ engines: {node: '>=6'}
+ dependencies:
+ decode-uri-component: 0.2.2
+ filter-obj: 1.1.0
+ split-on-first: 1.1.0
+ strict-uri-encode: 2.0.0
+ dev: true
+
+ /querystring-es3@0.2.1:
+ resolution: {integrity: sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=}
+ engines: {node: '>=0.4.x'}
+ dev: true
+
+ /querystringify@2.2.0:
+ resolution: {integrity: sha1-M0WUG0FTy50ILY7uTNogFqmu9/Y=}
+ dev: true
+
+ /queue-microtask@1.2.3:
+ resolution: {integrity: sha1-SSkii7xyTfrEPg77BYyve2z7YkM=}
+ dev: true
+
+ /quick-lru@4.0.1:
+ resolution: {integrity: sha1-W4h48ROlgheEjGSCAmxz4bpXcn8=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /randombytes@2.1.0:
+ resolution: {integrity: sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=}
+ dependencies:
+ safe-buffer: 5.2.1
+ dev: true
+
+ /randomfill@1.0.4:
+ resolution: {integrity: sha1-ySGW/IarQr6YPxvzF3giSTHWFFg=}
+ dependencies:
+ randombytes: 2.1.0
+ safe-buffer: 5.2.1
+ dev: true
+
+ /range-parser@1.2.1:
+ resolution: {integrity: sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=}
+ engines: {node: '>= 0.6'}
+ dev: true
+
+ /raw-body@2.5.1:
+ resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
+ engines: {node: '>= 0.8'}
dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ unpipe: 1.0.0
+ dev: true
+
+ /rax-babel-config@0.1.2:
+ resolution: {integrity: sha512-uwLjmPAIKtN+PCSc4l4tdJWqCvMIY63GOZJFJqWyXcHXEc+8pxQH1zUOraSjc6IonptV/HFUpMHYrKv+ayN0Bg==}
+ dependencies:
+ '@babel/code-frame': 7.22.13
'@babel/core': 7.23.2
- '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@8.52.0)
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- eslint-plugin-eggache: 2.0.0
- eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)
- eslint-plugin-jsdoc: 39.9.1(eslint@8.52.0)
- eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0)
- eslint-plugin-node: 11.1.0(eslint@8.52.0)
- eslint-plugin-react: 7.33.2(eslint@8.52.0)
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/plugin-proposal-class-properties': 7.2.0(@babel/core@7.23.2)
+ '@babel/plugin-proposal-decorators': 7.2.0(@babel/core@7.23.2)
+ '@babel/plugin-proposal-export-default-from': 7.2.0(@babel/core@7.23.2)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.2)
+ '@babel/plugin-proposal-function-bind': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2)
+ '@babel/preset-env': 7.2.0(@babel/core@7.23.2)
+ '@babel/preset-flow': 7.0.0(@babel/core@7.23.2)
+ '@babel/preset-react': 7.0.0(@babel/core@7.23.2)
+ '@babel/runtime': 7.23.2
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ babel-merge: 3.0.0(@babel/core@7.23.2)
+ babel-plugin-minify-dead-code-elimination-while-loop-fixed: 0.3.1
+ babel-plugin-transform-jsx-class: 0.1.3
+ babel-plugin-transform-jsx-condition: 0.1.3
+ babel-plugin-transform-jsx-fragment: 0.1.5
+ babel-plugin-transform-jsx-list: 0.1.2
+ babel-plugin-transform-jsx-memo: 0.1.4
+ babel-plugin-transform-jsx-slot: 0.1.2
+ babel-plugin-transform-jsx-stylesheet: 0.6.11
+ babel-plugin-transform-jsx-to-html: 0.1.0
+ chalk: 2.4.2
transitivePeerDependencies:
- - eslint
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- supports-color
- - typescript
dev: true
- /eslint-config-prettier@8.10.0(eslint@8.52.0):
- resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
- hasBin: true
+ /rax-babel-config@2.0.4(@babel/core@7.23.2):
+ resolution: {integrity: sha512-WsTCHCT7JAqy6ZWNJ4HxoRvrAISM7HBXsQfm6zuuYzNFahFQGbI9Zg3NeXJITfhr5i0xEZMXriO1yb3ARpbUsQ==}
+ dependencies:
+ '@builder/pack': 0.6.8
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.23.2)
+ babel-plugin-minify-dead-code-elimination-while-loop-fixed: 0.3.1
+ babel-plugin-transform-jsx-class: 0.1.3
+ babel-plugin-transform-jsx-condition: 0.1.3
+ babel-plugin-transform-jsx-fragment: 0.1.5
+ babel-plugin-transform-jsx-list: 0.1.2
+ babel-plugin-transform-jsx-memo: 0.1.4
+ babel-plugin-transform-jsx-slot: 0.1.2
+ babel-plugin-transform-jsx-stylesheet: 1.0.6
+ babel-plugin-transform-jsx-to-html: 0.2.1
+ chalk: 2.4.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+ dev: true
+
+ /rax-children@1.0.0(rax@1.2.3):
+ resolution: {integrity: sha512-sBKEXAMj9ik6SsPfPGgcQnqggmbWFyBdvAV/Cz/0f04bRA86BtWgbMri/9Dce0k8nkEC/BGWiiTdyA8Q49zIiw==}
+ engines: {npm: '>=3.0.0'}
peerDependencies:
- eslint: '>=7.0.0'
+ rax: ^1.0.0
dependencies:
- eslint: 8.52.0
+ rax: 1.2.3
dev: true
- /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==}
- engines: {node: '>=14.0.0'}
+ /rax-clone-element@1.0.0(rax@1.2.3):
+ resolution: {integrity: sha512-TaQMVuzoglvCTjbWATlvvwARmeWnG8kpENWNXrNDv0++x29GHNND/TBbx7sdtVs/QmYwYc8YmwRUhaBwKQi5eQ==}
+ engines: {npm: '>=3.0.0'}
peerDependencies:
- eslint: ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ rax: ^1.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@8.52.0)
- '@rushstack/eslint-patch': 1.5.1
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- babel-preset-react-app: 10.0.1
- confusing-browser-globals: 1.0.11
- eslint: 8.52.0
- eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0)
- eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)
- eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
- eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0)
- eslint-plugin-react: 7.33.2(eslint@8.52.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.52.0)
- eslint-plugin-testing-library: 5.11.1(eslint@8.52.0)(typescript@4.9.5)
- typescript: 4.9.5
+ rax: 1.2.3
+ rax-is-valid-element: 1.0.1
+ dev: true
+
+ /rax-compile-config@0.2.16(@babel/core@7.23.2):
+ resolution: {integrity: sha512-Rh/SNUsitB/lNpyMyi2VsqU66ijKjOPXT34OQOS6Ba+2o9wLLY6rjZh2nJNgQGwffTCBEdfIaDic3pqLwXfF5Q==}
+ dependencies:
+ '@babel/code-frame': 7.22.13
+ '@babel/generator': 7.23.0
+ '@babel/parser': 7.23.0
+ '@babel/plugin-proposal-class-properties': 7.2.0(@babel/core@7.23.2)
+ '@babel/plugin-proposal-decorators': 7.2.0(@babel/core@7.23.2)
+ '@babel/plugin-proposal-export-default-from': 7.2.0(@babel/core@7.23.2)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.2)
+ '@babel/plugin-proposal-function-bind': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2)
+ '@babel/preset-env': 7.2.0(@babel/core@7.23.2)
+ '@babel/preset-flow': 7.0.0(@babel/core@7.23.2)
+ '@babel/preset-react': 7.0.0(@babel/core@7.23.2)
+ '@babel/runtime': 7.23.2
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ babel-merge: 3.0.0(@babel/core@7.23.2)
+ babel-plugin-minify-dead-code-elimination-while-loop-fixed: 0.3.1
+ babel-plugin-transform-jsx-class: 0.1.3
+ babel-plugin-transform-jsx-condition: 0.1.3
+ babel-plugin-transform-jsx-fragment: 0.1.5
+ babel-plugin-transform-jsx-list: 0.1.2
+ babel-plugin-transform-jsx-memo: 0.1.4
+ babel-plugin-transform-jsx-slot: 0.1.2
+ babel-plugin-transform-jsx-stylesheet: 0.6.11
+ babel-plugin-transform-jsx-to-html: 0.1.0
+ babel-runtime-jsx-plus: 0.1.5
+ chalk: 2.4.2
+ fs-extra: 8.1.0
+ loader-utils: 1.4.2
+ source-map: 0.7.4
+ strip-ansi: 5.2.0
transitivePeerDependencies:
- - '@babel/plugin-syntax-flow'
- - '@babel/plugin-transform-react-jsx'
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - jest
+ - '@babel/core'
- supports-color
dev: true
- /eslint-config-tenx@4.0.0(@babel/core@7.23.2)(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-vkQ+meyg5uIM1kKf0oI9HuOnLN5aa7OMKoCQyYaGzEdLH5AhE1uYdCK/Kseshk96NC7CkZ9TMt3E0hrLMM863w==}
+ /rax-create-factory@1.0.0(rax@1.2.3):
+ resolution: {integrity: sha512-blBaVrurj/BOWelJhQWiuc0Kk8Ons1jsNsX78omaPBLkSOL7OkyJ3NC/0iKXHu425yWrGB6e5vho/qabROC7VQ==}
+ engines: {npm: '>=3.0.0'}
peerDependencies:
- '@babel/core': '>=7.11.0'
- '@babel/plugin-syntax-flow': ^7.14.5
- '@babel/plugin-transform-react-jsx': ^7.14.5
- eslint: 8.x
- typescript: 4.x
+ rax: ^1.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@8.52.0)
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- eslint: 8.52.0
- eslint-config-egg: 12.3.1(eslint@8.52.0)(typescript@4.9.5)
- eslint-config-prettier: 8.10.0(eslint@8.52.0)
- eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0)(typescript@4.9.5)
- eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)
- eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0)
- eslint-plugin-react: 7.33.2(eslint@8.52.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.52.0)
- typescript: 4.9.5
+ rax: 1.2.3
+ dev: true
+
+ /rax-find-dom-node@1.0.1:
+ resolution: {integrity: sha512-etHRCwkRmmMobHDqlBg7iiA/sjDWTHCkW9ekopI6vpcVjzr7ytbe09va5kAoQi3kk3fDgAfZ3Fkp5lhOKf2YOQ==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ rax-get-element-by-id: 1.0.1
+ dev: true
+
+ /rax-get-element-by-id@1.0.1:
+ resolution: {integrity: sha512-Gj1zGGJtwWhOyftmWpoo3ntQle7oedCtDRLQhdEHmBc+02aUmmrlJ25OtEahV5xL4DFbIgk44OEt5G8GnlE4CA==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ rax: 1.2.3
+ universal-env: 3.3.3
+ dev: true
+
+ /rax-is-valid-element@1.0.1:
+ resolution: {integrity: sha512-ajvQlLr7sr7UK4T9lyJyn1gcdu7NIrF3NUAj+SWWNwG2GZ5ygKdSCRFzuu7evuAwLxqrCCk2tQLV6uxw0zYUXQ==}
+ engines: {npm: '>=3.0.0'}
+ dev: true
+
+ /rax-jest-config@0.0.4(@babel/core@7.23.2)(postcss@7.0.39):
+ resolution: {integrity: sha512-SeQ3HzhSad81FIekvXHm61UsGaPtkSIEj7UQoBZOoPuOcaiiQf3LZAmkpfRUolIsOqAj6XP6UtOkCCd6YOhl+Q==}
+ dependencies:
+ babel-jest: 26.6.3(@babel/core@7.23.2)
+ jest-transform-css: 2.1.0(postcss@7.0.39)
+ rax-babel-config: 0.1.2
transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - jest
+ - '@babel/core'
+ - postcss
- supports-color
dev: true
- /eslint-import-resolver-node@0.3.9:
- resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+ /rax-miniapp-config-webpack-plugin@2.1.2:
+ resolution: {integrity: sha512-nLsLcjUI7yZTa/FLh9QWVrZhYTMdkbk3F8v/925x/kZf3Y04SXs9ZXfnSTip6t2oYSDNJDgLjGHYK6rhNUAOmQ==}
dependencies:
- debug: 3.2.7
- is-core-module: 2.13.1
- resolve: 1.22.8
+ fs-extra: 8.1.0
+ miniapp-builder-shared: 0.2.12
transitivePeerDependencies:
- - supports-color
+ - debug
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.52.0):
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
- engines: {node: '>=4'}
+ /rax-server-renderer@1.4.1(rax@1.2.3):
+ resolution: {integrity: sha512-kxqBUaocSlB7LUxnJqPd1cQqSDdUqDL2hcwpu+YMo30cqTJrG/KqvTMhbUfHavqjrnWPwAiHxOS1RPnXkVZPiw==}
peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
+ rax: ^1.0.0
+ dependencies:
+ rax: 1.2.3
+ style-unit: 3.0.5
+ dev: true
+
+ /rax@1.2.3:
+ resolution: {integrity: sha512-/lkZ7Yb3be06e68y4wn5WIyudzvrnHiTEjeAznJ7nPrfmjoCan2hcKPXmTYXdHU+IqkvGbzDlLZRWbVtmRTAcw==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ '@babel/runtime': 7.23.2
+ prop-types: 15.8.1
+ rax-children: 1.0.0(rax@1.2.3)
+ rax-clone-element: 1.0.0(rax@1.2.3)
+ rax-create-factory: 1.0.0(rax@1.2.3)
+ rax-is-valid-element: 1.0.1
+ dev: true
+
+ /react-dev-utils@10.2.1(eslint@7.32.0)(typescript@4.9.5)(webpack@4.47.0):
+ resolution: {integrity: sha1-9t4yWuJfpNVG0J30uxvv3G3RnBk=}
+ engines: {node: '>=8.10'}
+ peerDependencies:
+ typescript: '>=2.7'
+ webpack: '>=4'
peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
+ typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- debug: 3.2.7
- eslint: 8.52.0
- eslint-import-resolver-node: 0.3.9
+ '@babel/code-frame': 7.8.3
+ address: 1.1.2
+ browserslist: 4.10.0
+ chalk: 2.4.2
+ cross-spawn: 7.0.1
+ detect-port-alt: 1.1.6
+ escape-string-regexp: 2.0.0
+ filesize: 6.0.1
+ find-up: 4.1.0
+ fork-ts-checker-webpack-plugin: 3.1.1(eslint@7.32.0)(typescript@4.9.5)(webpack@4.47.0)
+ global-modules: 2.0.0
+ globby: 8.0.2
+ gzip-size: 5.1.1
+ immer: 1.10.0
+ inquirer: 7.0.4
+ is-root: 2.1.0
+ loader-utils: 1.2.3
+ open: 7.4.2
+ pkg-up: 3.1.0
+ react-error-overlay: 6.0.11
+ recursive-readdir: 2.2.2
+ shell-quote: 1.7.2
+ strip-ansi: 6.0.0
+ text-table: 0.2.0
+ typescript: 4.9.5
+ webpack: 4.47.0
transitivePeerDependencies:
+ - eslint
- supports-color
+ - vue-template-compiler
dev: true
- /eslint-plugin-eggache@2.0.0:
- resolution: {integrity: sha512-IHPrZ8LZgTRJTN5e6bXEgmv4vE0yDTAYFgHyvlf2KED8gRSiZ/kVPur+VHjpV4/8OVGJg2YaNEqsiBHxgMCKyA==}
- engines: {node: '>=14.17.0'}
+ /react-dev-utils@9.1.0(eslint@7.32.0)(typescript@5.2.2)(webpack@4.47.0):
+ resolution: {integrity: sha1-OtK7iEijIxnXYNCoTFbBS9quXoE=}
+ engines: {node: '>=8.10'}
+ peerDependencies:
+ typescript: '>=2.7'
+ webpack: '>=4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@babel/code-frame': 7.5.5
+ address: 1.1.2
+ browserslist: 4.7.0
+ chalk: 2.4.2
+ cross-spawn: 6.0.5
+ detect-port-alt: 1.1.6
+ escape-string-regexp: 1.0.5
+ filesize: 3.6.1
+ find-up: 3.0.0
+ fork-ts-checker-webpack-plugin: 1.5.0(eslint@7.32.0)(typescript@5.2.2)(webpack@4.47.0)
+ global-modules: 2.0.0
+ globby: 8.0.2
+ gzip-size: 5.1.1
+ immer: 1.10.0
+ inquirer: 6.5.0
+ is-root: 2.1.0
+ loader-utils: 1.2.3
+ open: 6.4.0
+ pkg-up: 2.0.0
+ react-error-overlay: 6.0.11
+ recursive-readdir: 2.2.2
+ shell-quote: 1.7.2
+ sockjs-client: 1.4.0
+ strip-ansi: 5.2.0
+ text-table: 0.2.0
+ typescript: 5.2.2
+ webpack: 4.47.0
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+ - vue-template-compiler
dev: true
- /eslint-plugin-es@3.0.1(eslint@8.52.0):
- resolution: {integrity: sha1-dafN/czdwFiZNK7rOEF18iHFeJM=}
- engines: {node: '>=8.10.0'}
+ /react-docgen-typescript@1.22.0(typescript@3.9.4):
+ resolution: {integrity: sha1-ACMsjo5H9EN8rBM7h5s+lDcoS+4=}
peerDependencies:
- eslint: '>=4.19.1'
+ typescript: '>= 3.x'
dependencies:
- eslint: 8.52.0
- eslint-utils: 2.1.0
- regexpp: 3.2.0
+ typescript: 3.9.4
dev: true
- /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.52.0):
- resolution: {integrity: sha1-4VV+NxGPJHNKoxIudTagONNKSRI=}
- engines: {node: '>=12.0.0'}
+ /react-docgen-typescript@2.2.2(typescript@4.9.5):
+ resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==}
peerDependencies:
- '@babel/plugin-syntax-flow': ^7.14.5
- '@babel/plugin-transform-react-jsx': ^7.14.9
- eslint: ^8.1.0
+ typescript: '>= 4.3.x'
dependencies:
- '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2)
- eslint: 8.52.0
- lodash: 4.17.21
- string-natural-compare: 3.0.1
+ typescript: 4.9.5
dev: true
- /eslint-plugin-import@2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0):
- resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
+ /react-docgen@5.3.0:
+ resolution: {integrity: sha1-mqveXmnxmTyLqDn9moZpZQRlRYk=}
+ engines: {node: '>=8.10.0'}
+ hasBin: true
dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- array-includes: 3.1.7
- array.prototype.findlastindex: 1.2.3
- array.prototype.flat: 1.3.2
- array.prototype.flatmap: 1.3.2
- debug: 3.2.7
- doctrine: 2.1.0
- eslint: 8.52.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.52.0)
- hasown: 2.0.0
- is-core-module: 2.13.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.7
- object.groupby: 1.0.1
- object.values: 1.1.7
- semver: 6.3.1
- tsconfig-paths: 3.14.2
+ '@babel/core': 7.23.2
+ '@babel/runtime': 7.23.2
+ ast-types: 0.13.4
+ commander: 2.20.3
+ doctrine: 3.0.0
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ strip-indent: 3.0.0
transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- jest: '*'
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
- jest:
- optional: true
+ /react-docgen@5.4.3:
+ resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==}
+ engines: {node: '>=8.10.0'}
+ hasBin: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@4.9.5)
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- eslint: 8.52.0
+ '@babel/core': 7.23.2
+ '@babel/generator': 7.23.0
+ '@babel/runtime': 7.23.2
+ ast-types: 0.14.2
+ commander: 2.20.3
+ doctrine: 3.0.0
+ estree-to-babel: 3.2.1
+ neo-async: 2.6.2
+ node-dir: 0.1.17
+ strip-indent: 3.0.0
transitivePeerDependencies:
- supports-color
- - typescript
dev: true
- /eslint-plugin-jsdoc@39.9.1(eslint@8.52.0):
- resolution: {integrity: sha512-Rq2QY6BZP2meNIs48aZ3GlIlJgBqFCmR55+UBvaDkA3ZNQ0SvQXOs2QKkubakEijV8UbIVbVZKsOVN8G3MuqZw==}
- engines: {node: ^14 || ^16 || ^17 || ^18 || ^19}
+ /react-dom@16.14.0(react@16.14.0):
+ resolution: {integrity: sha1-etg47Cmnd/s8dcOhkPZhz5Kri4k=}
peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
+ react: ^16.14.0
dependencies:
- '@es-joy/jsdoccomment': 0.36.1
- comment-parser: 1.3.1
- debug: 4.3.4
- escape-string-regexp: 4.0.0
- eslint: 8.52.0
- esquery: 1.5.0
- semver: 7.5.4
- spdx-expression-parse: 3.0.1
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ prop-types: 15.8.1
+ react: 16.14.0
+ scheduler: 0.19.1
+ dev: true
+
+ /react-error-overlay@6.0.11:
+ resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
+ dev: true
+
+ /react-is@16.13.1:
+ resolution: {integrity: sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=}
+
+ /react-is@17.0.2:
+ resolution: {integrity: sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA=}
+ dev: true
+
+ /react-lifecycles-compat@3.0.4:
+ resolution: {integrity: sha1-TxonOv38jzSIqMUWv9p4+HI1I2I=}
+ dev: true
+
+ /react-markdown@7.1.2(@types/react@16.14.50)(react@16.14.0):
+ resolution: {integrity: sha512-ibMcc0EbfmbwApqJD8AUr0yls8BSrKzIbHaUsPidQljxToCqFh34nwtu3CXNEItcVJNzpjDHrhK8A+MAh2JW3A==}
+ peerDependencies:
+ '@types/react': '>=16'
+ react: '>=16'
+ dependencies:
+ '@types/hast': 2.3.7
+ '@types/react': 16.14.50
+ '@types/unist': 2.0.9
+ comma-separated-tokens: 2.0.3
+ hast-util-whitespace: 2.0.1
+ prop-types: 15.8.1
+ property-information: 6.3.0
+ react: 16.14.0
+ react-is: 17.0.2
+ remark-parse: 10.0.2
+ remark-rehype: 9.1.0
+ space-separated-tokens: 2.0.2
+ style-to-object: 0.3.0
+ unified: 10.1.2
+ unist-util-visit: 4.1.2
+ vfile: 5.3.7
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-jsx-a11y@6.7.1(eslint@8.52.0):
- resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
- engines: {node: '>=4.0'}
+ /react-markdown@9.0.0(@types/react@16.14.50)(react@16.14.0):
+ resolution: {integrity: sha512-v6yNf3AB8GfJ8lCpUvzxAXKxgsHpdmWPlcVRQ6Nocsezp255E/IDrF31kLQsPJeB/cKto/geUwjU36wH784FCA==}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ '@types/react': '>=18'
+ react: '>=18'
+ dependencies:
+ '@types/hast': 3.0.2
+ '@types/react': 16.14.50
+ devlop: 1.1.0
+ hast-util-to-jsx-runtime: 2.2.0
+ html-url-attributes: 3.0.0
+ mdast-util-to-hast: 13.0.2
+ micromark-util-sanitize-uri: 2.0.0
+ react: 16.14.0
+ remark-parse: 11.0.0
+ remark-rehype: 11.0.0
+ unified: 11.0.3
+ unist-util-visit: 5.0.0
+ vfile: 6.0.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /react-refresh@0.10.0:
+ resolution: {integrity: sha1-L1NslmDAubHVAGhNnlKmXnQE9+M=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /react-router-dom@5.3.4(react@16.14.0):
+ resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==}
+ peerDependencies:
+ react: '>=15'
dependencies:
'@babel/runtime': 7.23.2
- aria-query: 5.3.0
- array-includes: 3.1.7
- array.prototype.flatmap: 1.3.2
- ast-types-flow: 0.0.7
- axe-core: 4.8.2
- axobject-query: 3.2.1
- damerau-levenshtein: 1.0.8
- emoji-regex: 9.2.2
- eslint: 8.52.0
- has: 1.0.4
- jsx-ast-utils: 3.3.5
- language-tags: 1.0.5
- minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
- semver: 6.3.1
+ history: 4.10.1
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-router: 5.3.4(react@16.14.0)
+ tiny-invariant: 1.3.1
+ tiny-warning: 1.0.3
dev: true
- /eslint-plugin-node@11.1.0(eslint@8.52.0):
- resolution: {integrity: sha1-yVVEQW7kraJnQKMEdO78VALcZx0=}
- engines: {node: '>=8.10.0'}
+ /react-router@5.3.4(react@16.14.0):
+ resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==}
peerDependencies:
- eslint: '>=5.16.0'
+ react: '>=15'
dependencies:
- eslint: 8.52.0
- eslint-plugin-es: 3.0.1(eslint@8.52.0)
- eslint-utils: 2.1.0
- ignore: 5.2.4
- minimatch: 3.1.2
- resolve: 1.22.8
- semver: 6.3.1
+ '@babel/runtime': 7.23.2
+ history: 4.10.1
+ hoist-non-react-statics: 3.3.2
+ loose-envify: 1.4.0
+ path-to-regexp: 1.8.0
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-is: 16.13.1
+ tiny-invariant: 1.3.1
+ tiny-warning: 1.0.3
+ dev: true
+
+ /react-transition-group@2.9.0(react-dom@16.14.0)(react@16.14.0):
+ resolution: {integrity: sha1-35zbAleWIRFRpDbGmo87l7WwfI0=}
+ peerDependencies:
+ react: '>=15.0.0'
+ react-dom: '>=15.0.0'
+ dependencies:
+ dom-helpers: 3.4.0
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react: 16.14.0
+ react-dom: 16.14.0(react@16.14.0)
+ react-lifecycles-compat: 3.0.4
+ dev: true
+
+ /react@16.14.0:
+ resolution: {integrity: sha1-lNd23dCqo32j7aj8W2sYpMmjEU0=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ prop-types: 15.8.1
+
+ /read-pkg-up@4.0.0:
+ resolution: {integrity: sha1-GyIcYIi6d5lgHICPkRYcZuWPiXg=}
+ engines: {node: '>=6'}
+ dependencies:
+ find-up: 3.0.0
+ read-pkg: 3.0.0
+ dev: true
+
+ /read-pkg-up@7.0.1:
+ resolution: {integrity: sha1-86YTV1hFlzOuK5VjgFbhhU5+9Qc=}
+ engines: {node: '>=8'}
+ dependencies:
+ find-up: 4.1.0
+ read-pkg: 5.2.0
+ type-fest: 0.8.1
+ dev: true
+
+ /read-pkg@3.0.0:
+ resolution: {integrity: sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=}
+ engines: {node: '>=4'}
+ dependencies:
+ load-json-file: 4.0.0
+ normalize-package-data: 2.5.0
+ path-type: 3.0.0
+ dev: true
+
+ /read-pkg@5.2.0:
+ resolution: {integrity: sha1-e/KVQ4yloz5WzTDgU7NO5yUMk8w=}
+ engines: {node: '>=8'}
+ dependencies:
+ '@types/normalize-package-data': 2.4.3
+ normalize-package-data: 2.5.0
+ parse-json: 5.2.0
+ type-fest: 0.6.0
dev: true
- /eslint-plugin-react-hooks@4.6.0(eslint@8.52.0):
- resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
- engines: {node: '>=10'}
- peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ /readable-stream@2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
- eslint: 8.52.0
+ core-util-is: 1.0.3
+ inherits: 2.0.4
+ isarray: 1.0.0
+ process-nextick-args: 2.0.1
+ safe-buffer: 5.1.2
+ string_decoder: 1.1.1
+ util-deprecate: 1.0.2
dev: true
- /eslint-plugin-react@7.33.2(eslint@8.52.0):
- resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ /readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
dependencies:
- array-includes: 3.1.7
- array.prototype.flatmap: 1.3.2
- array.prototype.tosorted: 1.1.2
- doctrine: 2.1.0
- es-iterator-helpers: 1.0.15
- eslint: 8.52.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
- object.hasown: 1.1.3
- object.values: 1.1.7
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.10
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
dev: true
- /eslint-plugin-testing-library@5.11.1(eslint@8.52.0)(typescript@4.9.5):
- resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
- peerDependencies:
- eslint: ^7.5.0 || ^8.0.0
+ /readdirp@2.2.1:
+ resolution: {integrity: sha1-DodiKjMlqjPokihcr4tOhGUppSU=}
+ engines: {node: '>=0.10'}
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@4.9.5)
- eslint: 8.52.0
+ graceful-fs: 4.2.11
+ micromatch: 3.1.10
+ readable-stream: 2.3.8
transitivePeerDependencies:
- supports-color
- - typescript
dev: true
- /eslint-scope@5.1.1:
- resolution: {integrity: sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=}
- engines: {node: '>=8.0.0'}
+ /readdirp@2.2.1(supports-color@6.1.0):
+ resolution: {integrity: sha1-DodiKjMlqjPokihcr4tOhGUppSU=}
+ engines: {node: '>=0.10'}
dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
+ graceful-fs: 4.2.11
+ micromatch: 3.1.10(supports-color@6.1.0)
+ readable-stream: 2.3.8
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /readdirp@3.5.0:
+ resolution: {integrity: sha1-m6dMAZsV02UnjS6Ru4xI17TULJ4=}
+ engines: {node: '>=8.10.0'}
dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
+ picomatch: 2.3.1
dev: true
- /eslint-utils@2.1.0:
- resolution: {integrity: sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=}
- engines: {node: '>=6'}
+ /readdirp@3.6.0:
+ resolution: {integrity: sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=}
+ engines: {node: '>=8.10.0'}
dependencies:
- eslint-visitor-keys: 1.3.0
+ picomatch: 2.3.1
dev: true
- /eslint-visitor-keys@1.3.0:
- resolution: {integrity: sha1-MOvR73wv3/AcOk8VEESvJfqwUj4=}
+ /realpath-native@1.1.0:
+ resolution: {integrity: sha1-IAMpT+oj+wZy8kduviL89Jii1lw=}
engines: {node: '>=4'}
+ dependencies:
+ util.promisify: 1.1.2
dev: true
- /eslint-visitor-keys@2.1.0:
- resolution: {integrity: sha1-9lMoJZMFknOSyTjtROsKXJsr0wM=}
- engines: {node: '>=10'}
- dev: true
-
- /eslint-visitor-keys@3.4.3:
- resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
- /eslint@8.52.0:
- resolution: {integrity: sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- hasBin: true
+ /recursive-readdir@2.2.2:
+ resolution: {integrity: sha1-mUb7MnThYo3m42svZxSVO0hFCU8=}
+ engines: {node: '>=0.10.0'}
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
- '@eslint-community/regexpp': 4.9.1
- '@eslint/eslintrc': 2.1.2
- '@eslint/js': 8.52.0
- '@humanwhocodes/config-array': 0.11.13
- '@humanwhocodes/module-importer': 1.0.1
- '@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.0
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4
- doctrine: 3.0.0
- escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
- esquery: 1.5.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
- find-up: 5.0.0
- glob-parent: 6.0.2
- globals: 13.23.0
- graphemer: 1.4.0
- ignore: 5.2.4
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- is-path-inside: 3.0.3
- js-yaml: 4.1.0
- json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.3
- strip-ansi: 6.0.1
- text-table: 0.2.0
- transitivePeerDependencies:
- - supports-color
+ minimatch: 3.0.4
dev: true
- /espree@9.6.1:
- resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /redent@3.0.0:
+ resolution: {integrity: sha1-5Ve3mYMWu1PJ8fVvpiY1LGljBZ8=}
+ engines: {node: '>=8'}
dependencies:
- acorn: 8.10.0
- acorn-jsx: 5.3.2(acorn@8.10.0)
- eslint-visitor-keys: 3.4.3
+ indent-string: 4.0.0
+ strip-indent: 3.0.0
dev: true
- /esquery@1.5.0:
- resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
- engines: {node: '>=0.10'}
+ /reflect.getprototypeof@1.0.4:
+ resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==}
+ engines: {node: '>= 0.4'}
dependencies:
- estraverse: 5.3.0
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
+ globalthis: 1.0.3
+ which-builtin-type: 1.1.3
dev: true
- /esrecurse@4.3.0:
- resolution: {integrity: sha1-eteWTWeauyi+5yzsY3WLHF0smSE=}
- engines: {node: '>=4.0'}
+ /regenerate-unicode-properties@10.1.1:
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
+ engines: {node: '>=4'}
dependencies:
- estraverse: 5.3.0
+ regenerate: 1.4.2
dev: true
- /estraverse@4.3.0:
- resolution: {integrity: sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=}
- engines: {node: '>=4.0'}
+ /regenerate@1.4.2:
+ resolution: {integrity: sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=}
dev: true
- /estraverse@5.3.0:
- resolution: {integrity: sha1-LupSkHAvJquP5TcDcP+GyWXSESM=}
- engines: {node: '>=4.0'}
+ /regenerator-runtime@0.11.1:
+ resolution: {integrity: sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk=}
dev: true
- /esutils@2.0.3:
- resolution: {integrity: sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=}
- engines: {node: '>=0.10.0'}
+ /regenerator-runtime@0.13.11:
+ resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
dev: true
- /eventemitter3@5.0.1:
- resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+ /regenerator-runtime@0.14.0:
+ resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
+
+ /regenerator-transform@0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
+ dependencies:
+ '@babel/runtime': 7.23.2
dev: true
- /execa@5.1.1:
- resolution: {integrity: sha1-+ArZy/Qpj3vR1MlVXCHpN0HEEd0=}
- engines: {node: '>=10'}
+ /regex-not@1.0.2:
+ resolution: {integrity: sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=}
+ engines: {node: '>=0.10.0'}
dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
+ extend-shallow: 3.0.2
+ safe-regex: 1.1.0
dev: true
- /execa@7.2.0:
- resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
- engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+ /regexp.prototype.flags@1.5.1:
+ resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
+ engines: {node: '>= 0.4'}
dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 4.3.1
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.1.0
- onetime: 6.0.0
- signal-exit: 3.0.7
- strip-final-newline: 3.0.0
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ set-function-name: 2.0.1
dev: true
- /execall@2.0.0:
- resolution: {integrity: sha1-FqBrX+UJnffQC+XZwG7s3tFmO0U=}
+ /regexpp@3.2.0:
+ resolution: {integrity: sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=}
engines: {node: '>=8'}
+ dev: true
+
+ /regexpu-core@5.3.2:
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ engines: {node: '>=4'}
dependencies:
- clone-regexp: 2.2.0
+ '@babel/regjsgen': 0.8.0
+ regenerate: 1.4.2
+ regenerate-unicode-properties: 10.1.1
+ regjsparser: 0.9.1
+ unicode-match-property-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
dev: true
- /extend@3.0.2:
- resolution: {integrity: sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=}
+ /regjsparser@0.9.1:
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ hasBin: true
+ dependencies:
+ jsesc: 0.5.0
dev: true
- /fast-deep-equal@3.1.3:
- resolution: {integrity: sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=}
+ /relateurl@0.2.7:
+ resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=}
+ engines: {node: '>= 0.10'}
dev: true
- /fast-glob@3.3.1:
- resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
- engines: {node: '>=8.6.0'}
+ /remark-gfm@4.0.0:
+ resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==}
dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.5
- dev: true
+ '@types/mdast': 4.0.2
+ mdast-util-gfm: 3.0.0
+ micromark-extension-gfm: 3.0.0
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
- /fast-json-stable-stringify@2.1.0:
- resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=}
+ /remark-parse@10.0.2:
+ resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
+ dependencies:
+ '@types/mdast': 3.0.14
+ mdast-util-from-markdown: 1.3.1
+ unified: 10.1.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /fast-levenshtein@2.0.6:
- resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=}
+ /remark-parse@11.0.0:
+ resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
+ dependencies:
+ '@types/mdast': 4.0.2
+ mdast-util-from-markdown: 2.0.0
+ micromark-util-types: 2.0.0
+ unified: 11.0.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /remark-parse@9.0.0:
+ resolution: {integrity: sha1-TSCimWZYgOT0r12Qt8e4qTWFNkA=}
+ dependencies:
+ mdast-util-from-markdown: 0.8.5
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /fastest-levenshtein@1.0.16:
- resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
- engines: {node: '>= 4.9.1'}
- dev: true
+ /remark-rehype@11.0.0:
+ resolution: {integrity: sha512-vx8x2MDMcxuE4lBmQ46zYUDfcFMmvg80WYX+UNLeG6ixjdCCLcw1lrgAukwBTuOFsS78eoAedHGn9sNM0w7TPw==}
+ dependencies:
+ '@types/hast': 3.0.2
+ '@types/mdast': 4.0.2
+ mdast-util-to-hast: 13.0.2
+ unified: 11.0.3
+ vfile: 6.0.1
+ dev: false
- /fastq@1.15.0:
- resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
+ /remark-rehype@9.1.0:
+ resolution: {integrity: sha1-5LW24ZwSWzeAND62bD6bmbDwaoE=}
dependencies:
- reusify: 1.0.4
+ '@types/hast': 2.3.7
+ '@types/mdast': 3.0.14
+ mdast-util-to-hast: 11.3.0
+ unified: 10.1.2
dev: true
- /file-entry-cache@6.0.1:
- resolution: {integrity: sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=}
- engines: {node: ^10.12.0 || >=12.0.0}
+ /remark-stringify@11.0.0:
+ resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
dependencies:
- flat-cache: 3.1.1
- dev: true
+ '@types/mdast': 4.0.2
+ mdast-util-to-markdown: 2.1.0
+ unified: 11.0.3
+ dev: false
- /fill-range@7.0.1:
- resolution: {integrity: sha1-GRmmp8df44ssfHflGYU12prN2kA=}
- engines: {node: '>=8'}
+ /remark-stringify@9.0.1:
+ resolution: {integrity: sha1-V20G6RBUiwpxkacfJ7M/EhiGKJQ=}
dependencies:
- to-regex-range: 5.0.1
+ mdast-util-to-markdown: 0.6.5
dev: true
- /find-up@4.1.0:
- resolution: {integrity: sha1-l6/n1s3AvFkoWEt8jXsW6KmqXRk=}
- engines: {node: '>=8'}
+ /remark@13.0.0:
+ resolution: {integrity: sha1-0V2b9xpAL0Aofr42Bntm1Uho5CU=}
dependencies:
- locate-path: 5.0.0
- path-exists: 4.0.0
+ remark-parse: 9.0.0
+ remark-stringify: 9.0.1
+ unified: 9.2.2
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /find-up@5.0.0:
- resolution: {integrity: sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=}
- engines: {node: '>=10'}
- dependencies:
- locate-path: 6.0.0
- path-exists: 4.0.0
+ /remove-trailing-separator@1.1.0:
+ resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=}
dev: true
- /flat-cache@3.1.1:
- resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==}
- engines: {node: '>=12.0.0'}
+ /renderkid@2.0.7:
+ resolution: {integrity: sha1-Rk8namvc7mBvShWZP5sp/HTKhgk=}
dependencies:
- flatted: 3.2.9
- keyv: 4.5.4
- rimraf: 3.0.2
+ css-select: 4.3.0
+ dom-converter: 0.2.0
+ htmlparser2: 6.1.0
+ lodash: 4.17.21
+ strip-ansi: 3.0.1
dev: true
- /flatted@3.2.9:
- resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
+ /repeat-element@1.1.4:
+ resolution: {integrity: sha1-vmgVIIR6tYx1aKx1+/rSjtQtOek=}
+ engines: {node: '>=0.10.0'}
dev: true
- /for-each@0.3.3:
- resolution: {integrity: sha1-abRH6IoKXTLD5whPPxcQA0shN24=}
- dependencies:
- is-callable: 1.2.7
+ /repeat-string@1.6.1:
+ resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
+ engines: {node: '>=0.10'}
dev: true
- /fs-extra@11.1.1:
- resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
- engines: {node: '>=14.14'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.0
+ /require-directory@2.1.1:
+ resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=}
+ engines: {node: '>=0.10.0'}
dev: true
- /fs.realpath@1.0.0:
- resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
+ /require-from-string@2.0.2:
+ resolution: {integrity: sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=}
+ engines: {node: '>=0.10.0'}
dev: true
- /function-bind@1.1.2:
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+ /require-main-filename@2.0.0:
+ resolution: {integrity: sha1-0LMp7MfMD2Fkn2IhW+aa9UqomJs=}
dev: true
- /function.prototype.name@1.1.6:
- resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- functions-have-names: 1.2.3
+ /requires-port@1.0.0:
+ resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=}
dev: true
- /functions-have-names@1.2.3:
- resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ /reselect@4.1.8:
+ resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==}
dev: true
- /gensync@1.0.0-beta.2:
- resolution: {integrity: sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=}
- engines: {node: '>=6.9.0'}
+ /resize-observer-polyfill@1.5.1:
+ resolution: {integrity: sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=}
dev: true
- /get-caller-file@2.0.5:
- resolution: {integrity: sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=}
- engines: {node: 6.* || 8.* || >= 10.*}
+ /resolve-cwd@2.0.0:
+ resolution: {integrity: sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=}
+ engines: {node: '>=4'}
+ dependencies:
+ resolve-from: 3.0.0
dev: true
- /get-intrinsic@1.2.2:
- resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
+ /resolve-cwd@3.0.0:
+ resolution: {integrity: sha1-DwB18bslRHZs9zumpuKt/ryxPy0=}
+ engines: {node: '>=8'}
dependencies:
- function-bind: 1.1.2
- has-proto: 1.0.1
- has-symbols: 1.0.3
- hasown: 2.0.0
+ resolve-from: 5.0.0
dev: true
- /get-stdin@8.0.0:
- resolution: {integrity: sha1-y61qc/63X27rIrqeAfiaooqpelM=}
- engines: {node: '>=10'}
+ /resolve-from@3.0.0:
+ resolution: {integrity: sha1-six699nWiBvItuZTM17rywoYh0g=}
+ engines: {node: '>=4'}
dev: true
- /get-stdin@9.0.0:
- resolution: {integrity: sha1-OYP/guA9VvGy6g0+YDJfOdcDpXU=}
- engines: {node: '>=12'}
+ /resolve-from@4.0.0:
+ resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=}
+ engines: {node: '>=4'}
dev: true
- /get-stream@6.0.1:
- resolution: {integrity: sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=}
- engines: {node: '>=10'}
+ /resolve-from@5.0.0:
+ resolution: {integrity: sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=}
+ engines: {node: '>=8'}
dev: true
- /get-symbol-description@1.0.0:
- resolution: {integrity: sha1-f9uByQAQH71WTdXxowr1qtweWNY=}
- engines: {node: '>= 0.4'}
+ /resolve-global@1.0.0:
+ resolution: {integrity: sha1-oqed9K8so/Sb93753azTItrRklU=}
+ engines: {node: '>=8'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
+ global-dirs: 0.1.1
dev: true
- /git-hooks-list@3.1.0:
- resolution: {integrity: sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==}
+ /resolve-pathname@3.0.0:
+ resolution: {integrity: sha1-mdAiJNPPJjaJvsuzk7xWAxMCXc0=}
dev: true
- /git-raw-commits@2.0.11:
- resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==}
- engines: {node: '>=10'}
- hasBin: true
+ /resolve-sass-import@0.1.1:
+ resolution: {integrity: sha512-aGPOYIJeULkADbBqRx08M8za0ULYZDzaPTS+41ZtmpoVzCS6f3LS1dMijBaqX9NNcVIzuq0x22lMQYBFtJKlmw==}
dependencies:
- dargs: 7.0.0
- lodash: 4.17.21
- meow: 8.1.2
- split2: 3.2.2
- through2: 4.0.2
+ fs-extra: 8.1.0
+ loader-utils: 1.4.2
dev: true
- /glob-parent@5.1.2:
- resolution: {integrity: sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=}
- engines: {node: '>= 6'}
- dependencies:
- is-glob: 4.0.3
+ /resolve-url@0.2.1:
+ resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=}
+ deprecated: https://github.com/lydell/resolve-url#deprecated
dev: true
- /glob-parent@6.0.2:
- resolution: {integrity: sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM=}
- engines: {node: '>=10.13.0'}
+ /resolve@1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ hasBin: true
dependencies:
- is-glob: 4.0.3
+ is-core-module: 2.13.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
dev: true
- /glob@7.2.3:
- resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ /resolve@2.0.0-next.5:
+ resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
+ hasBin: true
dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
+ is-core-module: 2.13.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
dev: true
- /global-dirs@0.1.1:
- resolution: {integrity: sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=}
+ /restore-cursor@2.0.0:
+ resolution: {integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=}
engines: {node: '>=4'}
dependencies:
- ini: 1.3.8
+ onetime: 2.0.1
+ signal-exit: 3.0.7
dev: true
- /global-modules@2.0.0:
- resolution: {integrity: sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=}
- engines: {node: '>=6'}
+ /restore-cursor@3.1.0:
+ resolution: {integrity: sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=}
+ engines: {node: '>=8'}
dependencies:
- global-prefix: 3.0.0
+ onetime: 5.1.2
+ signal-exit: 3.0.7
dev: true
- /global-prefix@3.0.0:
- resolution: {integrity: sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=}
- engines: {node: '>=6'}
+ /restore-cursor@4.0.0:
+ resolution: {integrity: sha1-UZVgpDGJdQlt725gnUQQDtqkzLk=}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
- ini: 1.3.8
- kind-of: 6.0.3
- which: 1.3.1
+ onetime: 5.1.2
+ signal-exit: 3.0.7
dev: true
- /globals@11.12.0:
- resolution: {integrity: sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=}
- engines: {node: '>=4'}
+ /ret@0.1.15:
+ resolution: {integrity: sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w=}
+ engines: {node: '>=0.12'}
dev: true
- /globals@13.23.0:
- resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==}
- engines: {node: '>=8'}
+ /retry@0.12.0:
+ resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=}
+ engines: {node: '>= 4'}
+ dev: true
+
+ /reusify@1.0.4:
+ resolution: {integrity: sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ dev: true
+
+ /rfdc@1.3.0:
+ resolution: {integrity: sha1-0LfEQasnINBdxM8m4ByJYx2doIs=}
+ dev: true
+
+ /rgb-regex@1.0.1:
+ resolution: {integrity: sha1-wODWiC3w4jviVKR16O3UGRX+rrE=}
+ dev: true
+
+ /rgba-regex@1.0.0:
+ resolution: {integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=}
+ dev: true
+
+ /right-align@0.1.3:
+ resolution: {integrity: sha1-YTObci/mo1FWiSENJOFMlhSGE+8=}
+ engines: {node: '>=0.10.0'}
dependencies:
- type-fest: 0.20.2
+ align-text: 0.1.4
dev: true
- /globalthis@1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
- engines: {node: '>= 0.4'}
+ /rimraf@2.7.1:
+ resolution: {integrity: sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w=}
+ hasBin: true
dependencies:
- define-properties: 1.2.1
+ glob: 7.2.3
dev: true
- /globby@11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
+ /rimraf@3.0.2:
+ resolution: {integrity: sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=}
+ hasBin: true
dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.1
- ignore: 5.2.4
- merge2: 1.4.1
- slash: 3.0.0
+ glob: 7.2.3
dev: true
- /globby@13.2.2:
- resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /ripemd160@2.0.2:
+ resolution: {integrity: sha1-ocGm9iR1FXe6XQeRTLyShQWFiQw=}
dependencies:
- dir-glob: 3.0.1
- fast-glob: 3.3.1
- ignore: 5.2.4
- merge2: 1.4.1
- slash: 4.0.0
+ hash-base: 3.1.0
+ inherits: 2.0.4
+ dev: true
+
+ /rollup@3.29.4:
+ resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /rpx-loader@1.0.1:
+ resolution: {integrity: sha512-Su/MbsII8znP08xeK1Uw7H+4VgM7/h4znvI4+FaVT120ZAmiGqY52J10zaOYD+FE/OUcVFdcY8v+4ZjpItam8A==}
+ dev: true
+
+ /rsvp@4.8.5:
+ resolution: {integrity: sha1-yPFVMR0Wf2jyHhaN9x7FsIMRNzQ=}
+ engines: {node: 6.* || >= 7.*}
+ dev: true
+
+ /run-applescript@5.0.0:
+ resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
+ engines: {node: '>=12'}
+ dependencies:
+ execa: 5.1.1
dev: true
- /globjoin@0.1.4:
- resolution: {integrity: sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=}
+ /run-async@2.4.1:
+ resolution: {integrity: sha1-hEDsz5nqPnC9QJ1JqriOEMGJpFU=}
+ engines: {node: '>=0.12.0'}
dev: true
- /gonzales-pe@4.3.0:
- resolution: {integrity: sha1-/p3sXzxVfurQn/hoxlgmvlTQZ7M=}
- engines: {node: '>=0.6.0'}
+ /run-node@1.0.0:
+ resolution: {integrity: sha1-RrULlGoqotSUeuHYhumFb9nKvl4=}
+ engines: {node: '>=4'}
hasBin: true
- dependencies:
- minimist: 1.2.8
dev: true
- /gopd@1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ /run-parallel@1.2.0:
+ resolution: {integrity: sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=}
dependencies:
- get-intrinsic: 1.2.2
+ queue-microtask: 1.2.3
dev: true
- /graceful-fs@4.2.11:
- resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+ /run-queue@1.0.3:
+ resolution: {integrity: sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=}
+ dependencies:
+ aproba: 1.2.0
dev: true
- /graphemer@1.4.0:
- resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+ /rxjs@6.6.7:
+ resolution: {integrity: sha1-kKwBisq/SRv2UEQjXVhjxNq4BMk=}
+ engines: {npm: '>=2.0.0'}
+ dependencies:
+ tslib: 1.14.1
dev: true
- /hard-rejection@2.1.0:
- resolution: {integrity: sha1-HG7aXBaFxjlCdm15u0Cudzzs2IM=}
+ /sade@1.8.1:
+ resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
+ dependencies:
+ mri: 1.2.0
dev: true
- /has-bigints@1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ /safe-array-concat@1.0.1:
+ resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
+ engines: {node: '>=0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ has-symbols: 1.0.3
+ isarray: 2.0.5
dev: true
- /has-flag@3.0.0:
- resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
- engines: {node: '>=4'}
+ /safe-buffer@5.1.2:
+ resolution: {integrity: sha1-mR7GnSluAxN0fVm9/St0XDX4go0=}
dev: true
- /has-flag@4.0.0:
- resolution: {integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=}
- engines: {node: '>=8'}
+ /safe-buffer@5.2.1:
+ resolution: {integrity: sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=}
dev: true
- /has-property-descriptors@1.0.1:
- resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
+ /safe-eval@0.4.1:
+ resolution: {integrity: sha512-wmiu4RSYVZ690RP1+cv/LxfPK1dIlEN35aW7iv4SMYdqDrHbkll4+NJcHmKm7PbCuI1df1otOcPwgcc2iFR85g==}
+ dev: true
+
+ /safe-regex-test@1.0.0:
+ resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
+ call-bind: 1.0.5
get-intrinsic: 1.2.2
+ is-regex: 1.1.4
dev: true
- /has-proto@1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
- engines: {node: '>= 0.4'}
+ /safe-regex@1.1.0:
+ resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=}
+ dependencies:
+ ret: 0.1.15
dev: true
- /has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
- engines: {node: '>= 0.4'}
+ /safer-buffer@2.1.2:
+ resolution: {integrity: sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=}
dev: true
- /has-tostringtag@1.0.0:
- resolution: {integrity: sha1-fhM4GKfTlHNPlB5zw9P5KR5liyU=}
- engines: {node: '>= 0.4'}
+ /sane@4.1.0:
+ resolution: {integrity: sha1-7Ygf2SJzOmxGG8GJ3CtsAG8//e0=}
+ engines: {node: 6.* || 8.* || >= 10.*}
+ deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added
+ hasBin: true
dependencies:
- has-symbols: 1.0.3
- dev: true
-
- /has@1.0.4:
- resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
- engines: {node: '>= 0.4.0'}
+ '@cnakazawa/watch': 1.0.4
+ anymatch: 2.0.0
+ capture-exit: 2.0.0
+ exec-sh: 0.3.6
+ execa: 1.0.0
+ fb-watchman: 2.0.2
+ micromatch: 3.1.10
+ minimist: 1.2.8
+ walker: 1.0.8
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /hasown@2.0.0:
- resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
- engines: {node: '>= 0.4'}
+ /sass-loader@10.4.1(sass@1.32.13)(webpack@4.47.0):
+ resolution: {integrity: sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ fibers: '>= 3.1.0'
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+ sass: ^1.3.0
+ webpack: ^4.36.0 || ^5.0.0
+ peerDependenciesMeta:
+ fibers:
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
dependencies:
- function-bind: 1.1.2
+ klona: 2.0.6
+ loader-utils: 2.0.4
+ neo-async: 2.6.2
+ sass: 1.32.13
+ schema-utils: 3.3.0
+ semver: 7.5.4
+ webpack: 4.47.0
dev: true
- /hosted-git-info@2.8.9:
- resolution: {integrity: sha1-3/wL+aIcAiCQkPKqaUKeFBTa8/k=}
+ /sass-loader@10.4.1(sass@1.69.5)(webpack@4.47.0):
+ resolution: {integrity: sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ fibers: '>= 3.1.0'
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
+ sass: ^1.3.0
+ webpack: ^4.36.0 || ^5.0.0
+ peerDependenciesMeta:
+ fibers:
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ dependencies:
+ klona: 2.0.6
+ loader-utils: 2.0.4
+ neo-async: 2.6.2
+ sass: 1.69.5
+ schema-utils: 3.3.0
+ semver: 7.5.4
+ webpack: 4.47.0
dev: true
- /hosted-git-info@4.1.0:
- resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
- engines: {node: '>=10'}
+ /sass@1.32.13:
+ resolution: {integrity: sha1-jSnISeYlpBW85xYJx8+V4V907QA=}
+ engines: {node: '>=8.9.0'}
+ hasBin: true
dependencies:
- lru-cache: 6.0.0
+ chokidar: 3.5.3
dev: true
- /html-tags@3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
+ /sass@1.69.5:
+ resolution: {integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+ dependencies:
+ chokidar: 3.5.3
+ immutable: 4.3.4
+ source-map-js: 1.0.2
dev: true
- /htmlparser2@3.10.1:
- resolution: {integrity: sha1-vWedw/WYl7ajS7EHSchVu1OpOS8=}
- dependencies:
- domelementtype: 1.3.1
- domhandler: 2.4.2
- domutils: 1.7.0
- entities: 1.1.2
- inherits: 2.0.4
- readable-stream: 3.6.2
+ /sax@1.2.4:
+ resolution: {integrity: sha1-KBYjTiN4vdxOU1T6tcqold9xANk=}
dev: true
- /human-signals@2.1.0:
- resolution: {integrity: sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=}
- engines: {node: '>=10.17.0'}
+ /sax@1.3.0:
+ resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==}
+ requiresBuild: true
dev: true
+ optional: true
- /human-signals@4.3.1:
- resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
- engines: {node: '>=14.18.0'}
+ /saxes@5.0.1:
+ resolution: {integrity: sha1-7rq5U/o7dgjb6U5drbFciI+maW0=}
+ engines: {node: '>=10'}
+ dependencies:
+ xmlchars: 2.2.0
dev: true
- /husky@8.0.3:
- resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==}
- engines: {node: '>=14'}
- hasBin: true
+ /scheduler@0.19.1:
+ resolution: {integrity: sha1-Tz4u0sGn1laB9MhU+oxaHMtA8ZY=}
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
dev: true
- /ignore@5.2.4:
- resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
+ /schema-utils@1.0.0:
+ resolution: {integrity: sha1-C3mpMgTXtgDUsoUNH2bCo0lRx3A=}
engines: {node: '>= 4'}
+ dependencies:
+ ajv: 6.12.6
+ ajv-errors: 1.0.1(ajv@6.12.6)
+ ajv-keywords: 3.5.2(ajv@6.12.6)
dev: true
- /import-fresh@3.3.0:
- resolution: {integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=}
- engines: {node: '>=6'}
+ /schema-utils@2.7.1:
+ resolution: {integrity: sha1-HKTzLRskxZDCA7jnpQvw6kzTlNc=}
+ engines: {node: '>= 8.9.0'}
dependencies:
- parent-module: 1.0.1
- resolve-from: 4.0.0
+ '@types/json-schema': 7.0.14
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
dev: true
- /import-lazy@4.0.0:
- resolution: {integrity: sha1-6OtidIOgpD2jwD8+NVSL5csMwVM=}
- engines: {node: '>=8'}
+ /schema-utils@3.3.0:
+ resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
+ engines: {node: '>= 10.13.0'}
+ dependencies:
+ '@types/json-schema': 7.0.14
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
dev: true
- /imurmurhash@0.1.4:
- resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
- engines: {node: '>=0.8.19'}
+ /select-hose@2.0.0:
+ resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=}
dev: true
- /indent-string@4.0.0:
- resolution: {integrity: sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=}
- engines: {node: '>=8'}
+ /selfsigned@1.10.14:
+ resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==}
+ dependencies:
+ node-forge: 0.10.0
dev: true
- /inflight@1.0.6:
- resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
- dependencies:
- once: 1.4.0
- wrappy: 1.0.2
+ /semver-compare@1.0.0:
+ resolution: {integrity: sha1-De4hahyUGrN+nvsXiPavxf9VN/w=}
dev: true
- /inherits@2.0.4:
- resolution: {integrity: sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=}
+ /semver@5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+ hasBin: true
dev: true
- /ini@1.3.8:
- resolution: {integrity: sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=}
+ /semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
dev: true
- /internal-slot@1.0.6:
- resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.2
- hasown: 2.0.0
- side-channel: 1.0.4
+ /semver@7.3.2:
+ resolution: {integrity: sha1-YElisFK4HtB4aq6EOJ/7pw/9OTg=}
+ engines: {node: '>=10'}
+ hasBin: true
dev: true
- /is-alphabetical@1.0.4:
- resolution: {integrity: sha1-nn1rlJFr4iFTdF0YTCmMv5hqaG0=}
+ /semver@7.5.4:
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ lru-cache: 6.0.0
dev: true
- /is-alphanumerical@1.0.4:
- resolution: {integrity: sha1-frmiQx+FX2se8aeOMm31FWlsTb8=}
+ /send@0.18.0(supports-color@6.1.0):
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ engines: {node: '>= 0.8.0'}
dependencies:
- is-alphabetical: 1.0.4
- is-decimal: 1.0.4
+ debug: 2.6.9(supports-color@6.1.0)
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ mime: 1.6.0
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /is-array-buffer@3.0.2:
- resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ /sentence-case@3.0.4:
+ resolution: {integrity: sha1-NkWnuMEXx4f96HAgViJbtipFEx8=}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
+ no-case: 3.0.4
+ tslib: 2.6.2
+ upper-case-first: 2.0.2
dev: true
- /is-arrayish@0.2.1:
- resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
+ /serialize-javascript@4.0.0:
+ resolution: {integrity: sha1-tSXhI4SJpez8Qq+sw/6Z5mb0sao=}
+ dependencies:
+ randombytes: 2.1.0
dev: true
- /is-async-function@2.0.0:
- resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
- engines: {node: '>= 0.4'}
+ /serialize-javascript@5.0.1:
+ resolution: {integrity: sha1-eIbshIBJpGJGepfT2Rjrsqr5NPQ=}
dependencies:
- has-tostringtag: 1.0.0
+ randombytes: 2.1.0
dev: true
- /is-bigint@1.0.4:
- resolution: {integrity: sha1-CBR6GHW8KzIAXUHM2Ckd/8ZpHfM=}
+ /serve-index@1.9.1(supports-color@6.1.0):
+ resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=}
+ engines: {node: '>= 0.8.0'}
dependencies:
- has-bigints: 1.0.2
+ accepts: 1.3.8
+ batch: 0.6.1
+ debug: 2.6.9(supports-color@6.1.0)
+ escape-html: 1.0.3
+ http-errors: 1.6.3
+ mime-types: 2.1.35
+ parseurl: 1.3.3
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /is-boolean-object@1.1.2:
- resolution: {integrity: sha1-XG3CACRt2TIa5LiFoRS7H3X2Nxk=}
- engines: {node: '>= 0.4'}
+ /serve-static@1.15.0(supports-color@6.1.0):
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ engines: {node: '>= 0.8.0'}
dependencies:
- call-bind: 1.0.5
- has-tostringtag: 1.0.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 0.18.0(supports-color@6.1.0)
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /is-buffer@2.0.5:
- resolution: {integrity: sha1-68JS5ADSL/jXf6CYiIIaJKZYwZE=}
- engines: {node: '>=4'}
+ /set-blocking@2.0.0:
+ resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=}
dev: true
- /is-callable@1.2.7:
- resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ /set-function-length@1.1.1:
+ resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ define-data-property: 1.1.1
+ get-intrinsic: 1.2.2
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.1
dev: true
- /is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ /set-function-name@2.0.1:
+ resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
+ engines: {node: '>= 0.4'}
dependencies:
- hasown: 2.0.0
+ define-data-property: 1.1.1
+ functions-have-names: 1.2.3
+ has-property-descriptors: 1.0.1
dev: true
- /is-date-object@1.0.5:
- resolution: {integrity: sha1-CEHVU25yTCVZe/bqYuG9OCmN8x8=}
- engines: {node: '>= 0.4'}
+ /set-value@2.0.1:
+ resolution: {integrity: sha1-oY1AUw5vB95CKMfe/kInr4ytAFs=}
+ engines: {node: '>=0.10.0'}
dependencies:
- has-tostringtag: 1.0.0
+ extend-shallow: 2.0.1
+ is-extendable: 0.1.1
+ is-plain-object: 2.0.4
+ split-string: 3.1.0
dev: true
- /is-decimal@1.0.4:
- resolution: {integrity: sha1-ZaOllYocW2OnBuGzM9fNn2MNP6U=}
+ /setimmediate@1.0.5:
+ resolution: {integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=}
dev: true
- /is-docker@2.2.1:
- resolution: {integrity: sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=}
- engines: {node: '>=8'}
- hasBin: true
+ /setprototypeof@1.1.0:
+ resolution: {integrity: sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=}
+ dev: true
+
+ /setprototypeof@1.2.0:
+ resolution: {integrity: sha1-ZsmiSnP5/CjL5msJ/tPTPcrxtCQ=}
dev: true
- /is-docker@3.0.0:
- resolution: {integrity: sha1-kAk6oxBid9inelkQ265xdH4VogA=}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /sha.js@2.4.11:
+ resolution: {integrity: sha1-N6XPC4HsvGlD3hCbopYNGyZYSuc=}
hasBin: true
+ dependencies:
+ inherits: 2.0.4
+ safe-buffer: 5.2.1
dev: true
- /is-extglob@2.1.1:
- resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
- engines: {node: '>=0.10.0'}
+ /shallow-element-equals@1.0.1:
+ resolution: {integrity: sha512-TwyvU5ZIISuZAmX7juTupVggTW9avkp+Swz0amKicADbQrnhP5kAPkPbL8gKSFv9QkkzhTg2u3Se6TjGhn1xlQ==}
+ dependencies:
+ style-equal: 1.0.0
dev: true
- /is-finalizationregistry@1.0.2:
- resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
+ /shebang-command@1.2.0:
+ resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=}
+ engines: {node: '>=0.10.0'}
dependencies:
- call-bind: 1.0.5
+ shebang-regex: 1.0.0
dev: true
- /is-fullwidth-code-point@3.0.0:
- resolution: {integrity: sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=}
+ /shebang-command@2.0.0:
+ resolution: {integrity: sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=}
engines: {node: '>=8'}
+ dependencies:
+ shebang-regex: 3.0.0
dev: true
- /is-fullwidth-code-point@4.0.0:
- resolution: {integrity: sha1-+uMWfHKedGP4RhzlErCApJJoqog=}
- engines: {node: '>=12'}
+ /shebang-regex@1.0.0:
+ resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=}
+ engines: {node: '>=0.10.0'}
dev: true
- /is-generator-function@1.0.10:
- resolution: {integrity: sha1-8VWLrxrBfg3up8BBXEODUf8rPHI=}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.0
+ /shebang-regex@3.0.0:
+ resolution: {integrity: sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=}
+ engines: {node: '>=8'}
dev: true
- /is-glob@4.0.3:
- resolution: {integrity: sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-extglob: 2.1.1
+ /shell-quote@1.7.2:
+ resolution: {integrity: sha1-Z6fQLHbJ2iT5nSCAj8re0ODgS+I=}
dev: true
- /is-hexadecimal@1.0.4:
- resolution: {integrity: sha1-zDXJdYjaS9Saju3WvECC1E3LI6c=}
+ /shellwords@0.1.1:
+ resolution: {integrity: sha1-1rkYHBpI05cyTISHHvvPxz/AZUs=}
+ requiresBuild: true
dev: true
+ optional: true
- /is-inside-container@1.0.0:
- resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
- engines: {node: '>=14.16'}
- hasBin: true
+ /short-uuid@3.1.1:
+ resolution: {integrity: sha512-7dI69xtJYpTIbg44R6JSgrbDtZFuZ9vAwwmnF/L0PinykbFrhQ7V8omKsQcVw1TP0nYJ7uQp1PN6/aVMkzQFGQ==}
dependencies:
- is-docker: 3.0.0
+ any-base: 1.1.0
+ uuid: 3.4.0
dev: true
- /is-map@2.0.2:
- resolution: {integrity: sha1-AJItuMm/c+gbejNYJ7wqQ/K5ESc=}
+ /side-channel@1.0.4:
+ resolution: {integrity: sha1-785cj9wQTudRslxY1CkAEfpeos8=}
+ dependencies:
+ call-bind: 1.0.5
+ get-intrinsic: 1.2.2
+ object-inspect: 1.13.1
dev: true
- /is-negative-zero@2.0.2:
- resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
- engines: {node: '>= 0.4'}
+ /signal-exit@3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
dev: true
- /is-number-object@1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
- engines: {node: '>= 0.4'}
+ /simple-swizzle@0.2.2:
+ resolution: {integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=}
dependencies:
- has-tostringtag: 1.0.0
+ is-arrayish: 0.3.2
dev: true
- /is-number@7.0.0:
- resolution: {integrity: sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=}
- engines: {node: '>=0.12.0'}
+ /sisteransi@1.0.5:
+ resolution: {integrity: sha1-E01oEpd1ZDfMBcoBNw06elcQde0=}
dev: true
- /is-obj@2.0.0:
- resolution: {integrity: sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=}
- engines: {node: '>=8'}
+ /slash@1.0.0:
+ resolution: {integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=}
+ engines: {node: '>=0.10.0'}
dev: true
- /is-path-inside@3.0.3:
- resolution: {integrity: sha1-0jE2LlOgf/Kw4Op/7QSRYf/RYoM=}
+ /slash@2.0.0:
+ resolution: {integrity: sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q=}
+ engines: {node: '>=6'}
+ dev: true
+
+ /slash@3.0.0:
+ resolution: {integrity: sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=}
engines: {node: '>=8'}
dev: true
- /is-plain-obj@1.1.0:
- resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=}
- engines: {node: '>=0.10.0'}
+ /slash@4.0.0:
+ resolution: {integrity: sha1-JCI3IXbExsWt214q2oha+YSzlqc=}
+ engines: {node: '>=12'}
dev: true
- /is-plain-obj@2.1.0:
- resolution: {integrity: sha1-ReQuN/zPH0Dajl927iFRWEDAkoc=}
- engines: {node: '>=8'}
+ /slice-ansi@4.0.0:
+ resolution: {integrity: sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=}
+ engines: {node: '>=10'}
+ dependencies:
+ ansi-styles: 4.3.0
+ astral-regex: 2.0.0
+ is-fullwidth-code-point: 3.0.0
dev: true
- /is-plain-obj@4.1.0:
- resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ /slice-ansi@5.0.0:
+ resolution: {integrity: sha1-tzBjxXqpb5zYgWVLFSlNldKFxCo=}
engines: {node: '>=12'}
+ dependencies:
+ ansi-styles: 6.2.1
+ is-fullwidth-code-point: 4.0.0
dev: true
- /is-regex@1.1.4:
- resolution: {integrity: sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=}
- engines: {node: '>= 0.4'}
+ /snake-case@3.0.4:
+ resolution: {integrity: sha1-Tyu9Vo6ZNavf1ZPzTGkdrbScRSw=}
dependencies:
- call-bind: 1.0.5
- has-tostringtag: 1.0.0
+ dot-case: 3.0.4
+ tslib: 2.6.2
dev: true
- /is-regexp@2.1.0:
- resolution: {integrity: sha1-zXNKVoZOI7lWv058ZsOWpMCyLC0=}
- engines: {node: '>=6'}
+ /snapdragon-node@2.1.1:
+ resolution: {integrity: sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 1.0.0
+ isobject: 3.0.1
+ snapdragon-util: 3.0.1
dev: true
- /is-set@2.0.2:
- resolution: {integrity: sha1-kHVfpMJWLcHF1AJHYNYRm5TKGOw=}
+ /snapdragon-util@3.0.1:
+ resolution: {integrity: sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
dev: true
- /is-shared-array-buffer@1.0.2:
- resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ /snapdragon@0.8.2:
+ resolution: {integrity: sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=}
+ engines: {node: '>=0.10.0'}
dependencies:
- call-bind: 1.0.5
+ base: 0.11.2
+ debug: 2.6.9
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /is-stream@2.0.1:
- resolution: {integrity: sha1-+sHj1TuXrVqdCunO8jifWBClwHc=}
- engines: {node: '>=8'}
+ /snapdragon@0.8.2(supports-color@6.1.0):
+ resolution: {integrity: sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ base: 0.11.2
+ debug: 2.6.9(supports-color@6.1.0)
+ define-property: 0.2.5
+ extend-shallow: 2.0.1
+ map-cache: 0.2.2
+ source-map: 0.5.7
+ source-map-resolve: 0.5.3
+ use: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /is-stream@3.0.0:
- resolution: {integrity: sha1-5r/XqmvvafT0cs6btoHj5XtDGaw=}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /socket.io-client@2.5.0:
+ resolution: {integrity: sha512-lOO9clmdgssDykiOmVQQitwBAF3I6mYcQAo7hQ7AM6Ny5X7fp8hIJ3HcQs3Rjz4SoggoxA1OgrQyY8EgTbcPYw==}
+ dependencies:
+ backo2: 1.0.2
+ component-bind: 1.0.0
+ component-emitter: 1.3.0
+ debug: 3.1.0
+ engine.io-client: 3.5.3
+ has-binary2: 1.0.3
+ indexof: 0.0.1
+ parseqs: 0.0.6
+ parseuri: 0.0.6
+ socket.io-parser: 3.3.3
+ to-array: 0.1.4
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
dev: true
- /is-string@1.0.7:
- resolution: {integrity: sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=}
- engines: {node: '>= 0.4'}
+ /socket.io-parser@3.3.3:
+ resolution: {integrity: sha512-qOg87q1PMWWTeO01768Yh9ogn7chB9zkKtQnya41Y355S0UmpXgpcrFwAgjYJxu9BdKug5r5e9YtVSeWhKBUZg==}
dependencies:
- has-tostringtag: 1.0.0
+ component-emitter: 1.3.0
+ debug: 3.1.0
+ isarray: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /is-symbol@1.0.4:
- resolution: {integrity: sha1-ptrJO2NbBjymhyI23oiRClevE5w=}
- engines: {node: '>= 0.4'}
+ /sockjs-client@1.4.0:
+ resolution: {integrity: sha1-yfJWjhnI/YFztJl+o0IOC7MGx9U=}
dependencies:
- has-symbols: 1.0.3
+ debug: 3.2.7
+ eventsource: 1.1.2
+ faye-websocket: 0.11.4
+ inherits: 2.0.4
+ json3: 3.3.3
+ url-parse: 1.5.10
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /is-text-path@1.0.1:
- resolution: {integrity: sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=}
- engines: {node: '>=0.10.0'}
+ /sockjs-client@1.6.1(supports-color@6.1.0):
+ resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==}
+ engines: {node: '>=12'}
dependencies:
- text-extensions: 1.9.0
+ debug: 3.2.7(supports-color@6.1.0)
+ eventsource: 2.0.2
+ faye-websocket: 0.11.4
+ inherits: 2.0.4
+ url-parse: 1.5.10
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /is-typed-array@1.1.12:
- resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
- engines: {node: '>= 0.4'}
+ /sockjs@0.3.24:
+ resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
- which-typed-array: 1.1.13
+ faye-websocket: 0.11.4
+ uuid: 8.3.2
+ websocket-driver: 0.7.4
dev: true
- /is-typedarray@1.0.0:
- resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=}
+ /sort-object-keys@1.1.3:
+ resolution: {integrity: sha1-v/gz/oXKsUezR0LkWGNFPB4ZC0U=}
dev: true
- /is-unicode-supported@0.1.0:
- resolution: {integrity: sha1-PybHaoCVk7Ur+i7LVxDtJ3m1Iqc=}
- engines: {node: '>=10'}
+ /sort-package-json@2.6.0:
+ resolution: {integrity: sha512-XSQ+lY9bAYA8ZsoChcEoPlgcSMaheziEp1beox1JVxy1SV4F2jSq9+h2rJ+3mC/Dhu9Ius1DLnInD5AWcsDXZw==}
+ hasBin: true
+ dependencies:
+ detect-indent: 7.0.1
+ detect-newline: 4.0.1
+ get-stdin: 9.0.0
+ git-hooks-list: 3.1.0
+ globby: 13.2.2
+ is-plain-obj: 4.1.0
+ sort-object-keys: 1.1.3
dev: true
- /is-weakmap@2.0.1:
- resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+ /source-list-map@2.0.1:
+ resolution: {integrity: sha1-OZO9hzv8SEecyp6jpUeDXHwVSzQ=}
dev: true
- /is-weakref@1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
- dependencies:
- call-bind: 1.0.5
+ /source-map-js@1.0.2:
+ resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
+ engines: {node: '>=0.10.0'}
dev: true
- /is-weakset@2.0.2:
- resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+ /source-map-resolve@0.5.3:
+ resolution: {integrity: sha1-GQhmvs51U+H48mei7oLGBrVQmho=}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
+ atob: 2.1.2
+ decode-uri-component: 0.2.2
+ resolve-url: 0.2.1
+ source-map-url: 0.4.1
+ urix: 0.1.0
dev: true
- /is-wsl@2.2.0:
- resolution: {integrity: sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=}
- engines: {node: '>=8'}
+ /source-map-support@0.5.21:
+ resolution: {integrity: sha1-BP58f54e0tZiIzwoyys1ufY/bk8=}
dependencies:
- is-docker: 2.2.1
+ buffer-from: 1.1.2
+ source-map: 0.6.1
dev: true
- /isarray@2.0.5:
- resolution: {integrity: sha1-ivHkwSISRMxiRZ+vOJQNTmRKVyM=}
+ /source-map-url@0.4.1:
+ resolution: {integrity: sha1-CvZmBadFpaL5HPG7+KevvCg97FY=}
dev: true
- /isexe@2.0.0:
- resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
+ /source-map@0.5.7:
+ resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
+ engines: {node: '>=0.10.0'}
dev: true
- /iterator.prototype@1.1.2:
- resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
+ /source-map@0.6.1:
+ resolution: {integrity: sha1-dHIq8y6WFOnCh6jQu95IteLxomM=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /source-map@0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ engines: {node: '>= 8'}
+ dev: true
+
+ /sourcemap-codec@1.4.8:
+ resolution: {integrity: sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=}
+ dev: true
+
+ /space-separated-tokens@2.0.2:
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
+
+ /spdx-correct@3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
- define-properties: 1.2.1
- get-intrinsic: 1.2.2
- has-symbols: 1.0.3
- reflect.getprototypeof: 1.0.4
- set-function-name: 2.0.1
+ spdx-expression-parse: 3.0.1
+ spdx-license-ids: 3.0.16
dev: true
- /js-tokens@4.0.0:
- resolution: {integrity: sha1-GSA/tZmR35jjoocFDUZHzerzJJk=}
+ /spdx-exceptions@2.3.0:
+ resolution: {integrity: sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=}
dev: true
- /js-yaml@4.1.0:
- resolution: {integrity: sha1-wftl+PUBeQHN0slRhkuhhFihBgI=}
- hasBin: true
+ /spdx-expression-parse@3.0.1:
+ resolution: {integrity: sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=}
dependencies:
- argparse: 2.0.1
+ spdx-exceptions: 2.3.0
+ spdx-license-ids: 3.0.16
dev: true
- /jsdoc-type-pratt-parser@3.1.0:
- resolution: {integrity: sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==}
- engines: {node: '>=12.0.0'}
+ /spdx-license-ids@3.0.16:
+ resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
dev: true
- /jsesc@0.5.0:
- resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=}
- hasBin: true
+ /spdy-transport@3.0.0(supports-color@6.1.0):
+ resolution: {integrity: sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=}
+ dependencies:
+ debug: 4.3.4(supports-color@6.1.0)
+ detect-node: 2.1.0
+ hpack.js: 2.1.6
+ obuf: 1.1.2
+ readable-stream: 3.6.2
+ wbuf: 1.7.3
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /jsesc@2.5.2:
- resolution: {integrity: sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=}
- engines: {node: '>=4'}
+ /spdy@4.0.2(supports-color@6.1.0):
+ resolution: {integrity: sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ debug: 4.3.4(supports-color@6.1.0)
+ handle-thing: 2.0.1
+ http-deceiver: 1.2.7
+ select-hose: 2.0.0
+ spdy-transport: 3.0.0(supports-color@6.1.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /specificity@0.4.1:
+ resolution: {integrity: sha1-qrXmRQEtsIuhguFRFlc40AiHsBk=}
hasBin: true
dev: true
- /json-buffer@3.0.1:
- resolution: {integrity: sha1-kziAKjDTtmBfvgYT4JQAjKjAWhM=}
+ /split-on-first@1.1.0:
+ resolution: {integrity: sha1-9hCv7uOxK84dDDBCXnY5i3gkml8=}
+ engines: {node: '>=6'}
dev: true
- /json-parse-even-better-errors@2.3.1:
- resolution: {integrity: sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=}
+ /split-string@3.1.0:
+ resolution: {integrity: sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ extend-shallow: 3.0.2
dev: true
- /json-schema-traverse@0.4.1:
- resolution: {integrity: sha1-afaofZUTq4u4/mO9sJecRI5oRmA=}
+ /split2@3.2.2:
+ resolution: {integrity: sha1-vyzyo32DgxLCSciSBv16F90SNl8=}
+ dependencies:
+ readable-stream: 3.6.2
dev: true
- /json-schema-traverse@1.0.0:
- resolution: {integrity: sha1-rnvLNlard6c7pcSb9lTzjmtoYOI=}
+ /sprintf-js@1.0.3:
+ resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=}
dev: true
- /json-stable-stringify-without-jsonify@1.0.1:
- resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=}
+ /ssr-window@3.0.0:
+ resolution: {integrity: sha1-/VuCgBY4lD4MxwTEaRgBQ1r3rDc=}
dev: true
- /json5@1.0.2:
- resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
- hasBin: true
+ /ssri@6.0.2:
+ resolution: {integrity: sha1-FXk5E08gRk5zAd26PpD/qPdyisU=}
dependencies:
- minimist: 1.2.8
+ figgy-pudding: 3.5.2
dev: true
- /json5@2.2.3:
- resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
- engines: {node: '>=6'}
- hasBin: true
+ /ssri@7.1.1:
+ resolution: {integrity: sha1-M+RPiWqWcVjjxjRo5H7EZhO5W18=}
+ engines: {node: '>= 8'}
+ dependencies:
+ figgy-pudding: 3.5.2
+ minipass: 3.3.6
dev: true
- /jsonfile@6.1.0:
- resolution: {integrity: sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=}
+ /ssri@8.0.1:
+ resolution: {integrity: sha1-Y45OQ54v+9LNKJd21cpFfE9Roq8=}
+ engines: {node: '>= 8'}
dependencies:
- universalify: 2.0.0
- optionalDependencies:
- graceful-fs: 4.2.11
+ minipass: 3.3.6
dev: true
- /jsonparse@1.3.1:
- resolution: {integrity: sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=}
- engines: {'0': node >= 0.2.0}
+ /stable@0.1.8:
+ resolution: {integrity: sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88=}
dev: true
- /jsx-ast-utils@3.3.5:
- resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
- engines: {node: '>=4.0'}
+ /stack-utils@1.0.5:
+ resolution: {integrity: sha1-oZsLAZR+ACnI5FHV1hpJj1uxRxs=}
+ engines: {node: '>=8'}
dependencies:
- array-includes: 3.1.7
- array.prototype.flat: 1.3.2
- object.assign: 4.1.4
- object.values: 1.1.7
+ escape-string-regexp: 2.0.0
dev: true
- /keyv@4.5.4:
- resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ /stack-utils@2.0.6:
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
+ engines: {node: '>=10'}
dependencies:
- json-buffer: 3.0.1
+ escape-string-regexp: 2.0.0
dev: true
- /kind-of@6.0.3:
- resolution: {integrity: sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=}
+ /stackframe@1.3.4:
+ resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
+ dev: true
+
+ /static-extend@0.1.2:
+ resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=}
engines: {node: '>=0.10.0'}
+ dependencies:
+ define-property: 0.2.5
+ object-copy: 0.1.0
dev: true
- /known-css-properties@0.21.0:
- resolution: {integrity: sha1-FfvQu7g0R/POCdivJH7UfGjt6A0=}
+ /statuses@1.5.0:
+ resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=}
+ engines: {node: '>= 0.6'}
dev: true
- /language-subtag-registry@0.3.22:
- resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
+ /statuses@2.0.1:
+ resolution: {integrity: sha1-VcsADM8dSHKL0jxoWgY5mM8aG2M=}
+ engines: {node: '>= 0.8'}
dev: true
- /language-tags@1.0.5:
- resolution: {integrity: sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=}
+ /std-env@3.4.3:
+ resolution: {integrity: sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q==}
+ dev: true
+
+ /stream-browserify@2.0.2:
+ resolution: {integrity: sha1-h1IdOKRKp+6RzhzSpH3wy0ndZgs=}
dependencies:
- language-subtag-registry: 0.3.22
+ inherits: 2.0.4
+ readable-stream: 2.3.8
dev: true
- /levn@0.4.1:
- resolution: {integrity: sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=}
- engines: {node: '>= 0.8.0'}
+ /stream-each@1.2.3:
+ resolution: {integrity: sha1-6+J6DDibBPvMIzZClS4Qcxr6m64=}
dependencies:
- prelude-ls: 1.2.1
- type-check: 0.4.0
+ end-of-stream: 1.4.4
+ stream-shift: 1.0.1
dev: true
- /lilconfig@2.1.0:
- resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
- engines: {node: '>=10'}
+ /stream-http@2.8.3:
+ resolution: {integrity: sha1-stJCRpKIpaJ+xP6JM6z2I95lFPw=}
+ dependencies:
+ builtin-status-codes: 3.0.0
+ inherits: 2.0.4
+ readable-stream: 2.3.8
+ to-arraybuffer: 1.0.1
+ xtend: 4.0.2
dev: true
- /lines-and-columns@1.2.4:
- resolution: {integrity: sha1-7KKE910pZQeTCdwK2SVauy68FjI=}
+ /stream-shift@1.0.1:
+ resolution: {integrity: sha1-1wiCgVWasneEJCebCHfaPDktWj0=}
dev: true
- /lint-staged@13.3.0:
- resolution: {integrity: sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
- hasBin: true
- dependencies:
- chalk: 5.3.0
- commander: 11.0.0
- debug: 4.3.4
- execa: 7.2.0
- lilconfig: 2.1.0
- listr2: 6.6.1
- micromatch: 4.0.5
- pidtree: 0.6.0
- string-argv: 0.3.2
- yaml: 2.3.1
- transitivePeerDependencies:
- - enquirer
- - supports-color
+ /strict-event-emitter-types@2.0.0:
+ resolution: {integrity: sha512-Nk/brWYpD85WlOgzw5h173aci0Teyv8YdIAEtV+N88nDB0dLlazZyJMIsN6eo1/AR61l+p6CJTG1JIyFaoNEEA==}
dev: true
- /listr2@6.6.1:
- resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==}
- engines: {node: '>=16.0.0'}
- peerDependencies:
- enquirer: '>= 2.3.0 < 3'
- peerDependenciesMeta:
- enquirer:
- optional: true
- dependencies:
- cli-truncate: 3.1.0
- colorette: 2.0.20
- eventemitter3: 5.0.1
- log-update: 5.0.1
- rfdc: 1.3.0
- wrap-ansi: 8.1.0
+ /strict-uri-encode@2.0.0:
+ resolution: {integrity: sha1-ucczDHBChi9rFC3CdLvMWGbONUY=}
+ engines: {node: '>=4'}
dev: true
- /locate-path@5.0.0:
- resolution: {integrity: sha1-Gvujlq/WdqbUJQTQpno6frn2KqA=}
- engines: {node: '>=8'}
- dependencies:
- p-locate: 4.1.0
+ /string-argv@0.3.2:
+ resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
+ engines: {node: '>=0.6.19'}
dev: true
- /locate-path@6.0.0:
- resolution: {integrity: sha1-VTIeswn+u8WcSAHZMackUqaB0oY=}
+ /string-hash@1.1.3:
+ resolution: {integrity: sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=}
+ dev: true
+
+ /string-length@4.0.2:
+ resolution: {integrity: sha1-qKjce9XBqCubPIuH4SX2aHG25Xo=}
engines: {node: '>=10'}
dependencies:
- p-locate: 5.0.0
+ char-regex: 1.0.2
+ strip-ansi: 6.0.1
dev: true
- /lodash.camelcase@4.3.0:
- resolution: {integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY=}
+ /string-natural-compare@3.0.1:
+ resolution: {integrity: sha1-ekLVhHRFSWN1no6LeuY9ccHn/fQ=}
dev: true
- /lodash.debounce@4.0.8:
- resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
+ /string-width@1.0.2:
+ resolution: {integrity: sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ code-point-at: 1.1.0
+ is-fullwidth-code-point: 1.0.0
+ strip-ansi: 3.0.1
dev: true
- /lodash.isfunction@3.0.9:
- resolution: {integrity: sha1-Bt4l302zJ6yTGYHRvbBn5a9o0FE=}
+ /string-width@2.1.1:
+ resolution: {integrity: sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=}
+ engines: {node: '>=4'}
+ dependencies:
+ is-fullwidth-code-point: 2.0.0
+ strip-ansi: 4.0.0
dev: true
- /lodash.isplainobject@4.0.6:
- resolution: {integrity: sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=}
+ /string-width@3.1.0:
+ resolution: {integrity: sha1-InZ74htirxCBV0MG9prFG2IgOWE=}
+ engines: {node: '>=6'}
+ dependencies:
+ emoji-regex: 7.0.3
+ is-fullwidth-code-point: 2.0.0
+ strip-ansi: 5.2.0
dev: true
- /lodash.kebabcase@4.1.1:
- resolution: {integrity: sha1-hImxyw0p/4gZXM7KRI/21swpXDY=}
+ /string-width@4.2.3:
+ resolution: {integrity: sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=}
+ engines: {node: '>=8'}
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.1
dev: true
- /lodash.merge@4.6.2:
- resolution: {integrity: sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=}
+ /string-width@5.1.2:
+ resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
+ engines: {node: '>=12'}
+ dependencies:
+ eastasianwidth: 0.2.0
+ emoji-regex: 9.2.2
+ strip-ansi: 7.1.0
dev: true
- /lodash.mergewith@4.6.2:
- resolution: {integrity: sha1-YXEh+JrFX1kEfHrsHM1mVMZZD1U=}
+ /string.prototype.matchall@4.0.10:
+ resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ get-intrinsic: 1.2.2
+ has-symbols: 1.0.3
+ internal-slot: 1.0.6
+ regexp.prototype.flags: 1.5.1
+ set-function-name: 2.0.1
+ side-channel: 1.0.4
dev: true
- /lodash.snakecase@4.1.1:
- resolution: {integrity: sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40=}
+ /string.prototype.trim@1.2.8:
+ resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
dev: true
- /lodash.startcase@4.4.0:
- resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
+ /string.prototype.trimend@1.0.7:
+ resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
dev: true
- /lodash.truncate@4.4.2:
- resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=}
+ /string.prototype.trimstart@1.0.7:
+ resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
+ dependencies:
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
dev: true
- /lodash.uniq@4.5.0:
- resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=}
+ /string_decoder@1.1.1:
+ resolution: {integrity: sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=}
+ dependencies:
+ safe-buffer: 5.1.2
dev: true
- /lodash.upperfirst@4.3.1:
- resolution: {integrity: sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=}
+ /string_decoder@1.3.0:
+ resolution: {integrity: sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=}
+ dependencies:
+ safe-buffer: 5.2.1
dev: true
- /lodash@4.17.21:
- resolution: {integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=}
+ /strip-ansi@3.0.1:
+ resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ ansi-regex: 2.1.1
dev: true
- /log-symbols@4.1.0:
- resolution: {integrity: sha1-P727lbRoOsn8eFER55LlWNSr1QM=}
- engines: {node: '>=10'}
+ /strip-ansi@4.0.0:
+ resolution: {integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=}
+ engines: {node: '>=4'}
dependencies:
- chalk: 4.1.2
- is-unicode-supported: 0.1.0
+ ansi-regex: 3.0.1
dev: true
- /log-update@5.0.1:
- resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /strip-ansi@5.2.0:
+ resolution: {integrity: sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=}
+ engines: {node: '>=6'}
dependencies:
- ansi-escapes: 5.0.0
- cli-cursor: 4.0.0
- slice-ansi: 5.0.0
- strip-ansi: 7.1.0
- wrap-ansi: 8.1.0
+ ansi-regex: 4.1.1
dev: true
- /longest-streak@2.0.4:
- resolution: {integrity: sha1-uFmZV9pbXatk3uP+MW+ndFl9kOQ=}
+ /strip-ansi@6.0.0:
+ resolution: {integrity: sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI=}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-regex: 5.0.1
dev: true
- /loose-envify@1.4.0:
- resolution: {integrity: sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=}
- hasBin: true
+ /strip-ansi@6.0.1:
+ resolution: {integrity: sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=}
+ engines: {node: '>=8'}
dependencies:
- js-tokens: 4.0.0
+ ansi-regex: 5.0.1
dev: true
- /lru-cache@5.1.1:
- resolution: {integrity: sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=}
+ /strip-ansi@7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ engines: {node: '>=12'}
dependencies:
- yallist: 3.1.1
+ ansi-regex: 6.0.1
+ dev: true
+
+ /strip-bom@3.0.0:
+ resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /strip-bom@4.0.0:
+ resolution: {integrity: sha1-nDUFwdtFvO3KPZz3oW9cWqOQGHg=}
+ engines: {node: '>=8'}
+ dev: true
+
+ /strip-eof@1.0.0:
+ resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /strip-final-newline@2.0.0:
+ resolution: {integrity: sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=}
+ engines: {node: '>=6'}
dev: true
- /lru-cache@6.0.0:
- resolution: {integrity: sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=}
- engines: {node: '>=10'}
+ /strip-final-newline@3.0.0:
+ resolution: {integrity: sha1-UolMMT+/8xiDUoCu1g/3Hr8SuP0=}
+ engines: {node: '>=12'}
+ dev: true
+
+ /strip-indent@3.0.0:
+ resolution: {integrity: sha1-wy4c7pQLazQyx3G8LFS8znPNMAE=}
+ engines: {node: '>=8'}
dependencies:
- yallist: 4.0.0
+ min-indent: 1.0.1
dev: true
- /make-error@1.3.6:
- resolution: {integrity: sha1-LrLjfqm2fEiR9oShOUeZr0hM96I=}
+ /strip-json-comments@3.1.1:
+ resolution: {integrity: sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=}
+ engines: {node: '>=8'}
dev: true
- /map-obj@1.0.1:
- resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=}
- engines: {node: '>=0.10.0'}
+ /striptags@2.2.1:
+ resolution: {integrity: sha1-TEULcI1BuL85zyTEn/I0/Gqr/TI=}
dev: true
- /map-obj@4.3.0:
- resolution: {integrity: sha1-kwT5Buk/qucIgNoQKp8d8OqLsFo=}
- engines: {node: '>=8'}
+ /style-equal@1.0.0:
+ resolution: {integrity: sha512-gf20kfwh7eXsgPcwvYqViCBHr+GXIlpXOZR1wQftNH4/ee2P/yolWUVA/MdMdmMp+0BMfvaMKSIR1DQlY64Btw==}
dev: true
- /mathml-tag-names@2.1.3:
- resolution: {integrity: sha1-TdrdZzCOeAzxakdoWHjuJ7c2oKM=}
+ /style-inject@0.3.0:
+ resolution: {integrity: sha1-0hxHev/skYEcyCNVgypwDSK/jdM=}
dev: true
- /mdast-util-from-markdown@0.8.5:
- resolution: {integrity: sha1-0e8spCvDd+ywRjqYeRDa6JvZoow=}
+ /style-loader@1.3.0(webpack@4.47.0):
+ resolution: {integrity: sha1-gotKOzt+eqWEfOe66eh0USEUJJ4=}
+ engines: {node: '>= 8.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
dependencies:
- '@types/mdast': 3.0.14
- mdast-util-to-string: 2.0.0
- micromark: 2.11.4
- parse-entities: 2.0.0
- unist-util-stringify-position: 2.0.3
- transitivePeerDependencies:
- - supports-color
+ loader-utils: 2.0.4
+ schema-utils: 2.7.1
+ webpack: 4.47.0
dev: true
- /mdast-util-to-markdown@0.6.5:
- resolution: {integrity: sha1-sz9nyoINaebMUnqT1AOSSbUEvr4=}
+ /style-loader@2.0.0(webpack@4.47.0):
+ resolution: {integrity: sha1-lmlgL9RpB0DqrsE3eZoDrdu8OTw=}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
dependencies:
- '@types/unist': 2.0.9
- longest-streak: 2.0.4
- mdast-util-to-string: 2.0.0
- parse-entities: 2.0.0
- repeat-string: 1.6.1
- zwitch: 1.0.5
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ webpack: 4.47.0
dev: true
- /mdast-util-to-string@2.0.0:
- resolution: {integrity: sha1-uM/mpxPhCRy1tyj8SIhaR2f4uXs=}
+ /style-search@0.1.0:
+ resolution: {integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=}
dev: true
- /meow@8.1.2:
- resolution: {integrity: sha1-vL5FvaDuFynTUMA8/8g5WjbE6Jc=}
- engines: {node: '>=10'}
+ /style-to-object@0.3.0:
+ resolution: {integrity: sha1-sbeQ0gWZHMeDgBlnIUl57hmnbkY=}
dependencies:
- '@types/minimist': 1.2.4
- camelcase-keys: 6.2.2
- decamelize-keys: 1.1.1
- hard-rejection: 2.1.0
- minimist-options: 4.1.0
- normalize-package-data: 3.0.3
- read-pkg-up: 7.0.1
- redent: 3.0.0
- trim-newlines: 3.0.1
- type-fest: 0.18.1
- yargs-parser: 20.2.9
+ inline-style-parser: 0.1.1
dev: true
- /meow@9.0.0:
- resolution: {integrity: sha1-zZUQvFysne59A8c+4fmtlZ9Oo2Q=}
- engines: {node: '>=10'}
+ /style-to-object@0.4.4:
+ resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
dependencies:
- '@types/minimist': 1.2.4
- camelcase-keys: 6.2.2
- decamelize: 1.2.0
- decamelize-keys: 1.1.1
- hard-rejection: 2.1.0
- minimist-options: 4.1.0
- normalize-package-data: 3.0.3
- read-pkg-up: 7.0.1
- redent: 3.0.0
- trim-newlines: 3.0.1
- type-fest: 0.18.1
- yargs-parser: 20.2.9
+ inline-style-parser: 0.1.1
+ dev: false
+
+ /style-unit@2.0.1:
+ resolution: {integrity: sha512-1OHU+0lWHrK22W3DDfLKFl5cOIwTxghbVRgtzgue+/9m5dqsYQhVBObQupMdtN6FIhpM375l18h8nLqPKgHfPQ==}
+ dependencies:
+ universal-env: 2.0.0
dev: true
- /merge-stream@2.0.0:
- resolution: {integrity: sha1-UoI2KaFN0AyXcPtq1H3GMQ8sH2A=}
+ /style-unit@3.0.5:
+ resolution: {integrity: sha512-xL+kev1W1dPthdhpQqZs9Qk1zenQiHKyy9oy2/VasW4z6wi7m7qQvMe67foPsr99JSs0115X0TCN1ch1n0XqSw==}
+ dependencies:
+ '@babel/runtime': 7.23.2
+ universal-env: 3.3.3
dev: true
- /merge2@1.4.1:
- resolution: {integrity: sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=}
- engines: {node: '>= 8'}
+ /stylehacks@4.0.3:
+ resolution: {integrity: sha1-Zxj8r00eB9ihMYaQiB6NlnJqcdU=}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ browserslist: 4.22.1
+ postcss: 7.0.39
+ postcss-selector-parser: 3.1.2
dev: true
- /micromark@2.11.4:
- resolution: {integrity: sha1-0TQ2E47qgmOD6CJEnJpcUO5EZlo=}
+ /stylelint-config-ali@0.4.2(stylelint-scss@3.21.0)(stylelint@13.13.1):
+ resolution: {integrity: sha512-IFcaD4/dVwRQ48oPaUxr4YjqX3hV9KfWH3XjNHnhwM8q5MPH1i+WWYp2vtx4p1gP9Ur4RIDHY8fGKbpxWGnNbA==}
+ peerDependencies:
+ stylelint: '>=8.3.0'
+ stylelint-scss: '>=2.0.0'
dependencies:
- debug: 4.3.4
- parse-entities: 2.0.0
- transitivePeerDependencies:
- - supports-color
+ stylelint: 13.13.1
+ stylelint-scss: 3.21.0(stylelint@13.13.1)
dev: true
- /micromatch@4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
- engines: {node: '>=8.6'}
+ /stylelint-config-css-modules@2.3.0(stylelint@13.13.1):
+ resolution: {integrity: sha1-v3mqrgnKn9rDf91RjRpAp3mqB2c=}
+ peerDependencies:
+ stylelint: 11.x - 14.x
dependencies:
- braces: 3.0.2
- picomatch: 2.3.1
+ stylelint: 13.13.1
dev: true
- /mimic-fn@2.1.0:
- resolution: {integrity: sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=}
- engines: {node: '>=6'}
+ /stylelint-config-prettier@8.0.2(stylelint@13.13.1):
+ resolution: {integrity: sha1-2p3jPaTFaJPL5+Jt8jmnN0BF4U4=}
+ engines: {node: '>= 10', npm: '>= 5'}
+ hasBin: true
+ peerDependencies:
+ stylelint: '>=11.0.0'
+ dependencies:
+ stylelint: 13.13.1
dev: true
- /mimic-fn@4.0.0:
- resolution: {integrity: sha1-YKkFUNXLCyOcymXYk7GlOymHHsw=}
- engines: {node: '>=12'}
+ /stylelint-config-recommended@3.0.0(stylelint@13.13.1):
+ resolution: {integrity: sha1-4OVHQ0AWxVOf4mUK/VgEmi/R1lc=}
+ peerDependencies:
+ stylelint: '>=10.1.0'
+ dependencies:
+ stylelint: 13.13.1
dev: true
- /min-indent@1.0.1:
- resolution: {integrity: sha1-pj9oFnOzBXH76LwlaGrnRu76mGk=}
- engines: {node: '>=4'}
+ /stylelint-config-standard@20.0.0(stylelint@13.13.1):
+ resolution: {integrity: sha1-BhNQkMngZL7+49WUKJ9Q4pW14g0=}
+ peerDependencies:
+ stylelint: '>=10.1.0'
+ dependencies:
+ stylelint: 13.13.1
+ stylelint-config-recommended: 3.0.0(stylelint@13.13.1)
dev: true
- /minimatch@3.1.2:
- resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ /stylelint-config-tenx@2.1.0(stylelint@13.13.1):
+ resolution: {integrity: sha512-Pkkrta/aPH9F1h+b+IB0tZJxbS1B0ADFqpVW95oZuAcClZThtGx4vTbLFSRZbWWwIU8CRYI5QvBfX/5vmSfisQ==}
+ peerDependencies:
+ stylelint: '>=11.0.0'
dependencies:
- brace-expansion: 1.1.11
+ stylelint: 13.13.1
+ stylelint-config-css-modules: 2.3.0(stylelint@13.13.1)
+ stylelint-config-prettier: 8.0.2(stylelint@13.13.1)
+ stylelint-config-standard: 20.0.0(stylelint@13.13.1)
dev: true
- /minimist-options@4.1.0:
- resolution: {integrity: sha1-wGVXE8U6ii69d/+iR9NCxA8BBhk=}
- engines: {node: '>= 6'}
+ /stylelint-scss@3.21.0(stylelint@13.13.1):
+ resolution: {integrity: sha512-CMI2wSHL+XVlNExpauy/+DbUcB/oUZLARDtMIXkpV/5yd8nthzylYd1cdHeDMJVBXeYHldsnebUX6MoV5zPW4A==}
+ engines: {node: '>=8'}
+ peerDependencies:
+ stylelint: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0
dependencies:
- arrify: 1.0.1
- is-plain-obj: 1.1.0
- kind-of: 6.0.3
+ lodash: 4.17.21
+ postcss-media-query-parser: 0.2.3
+ postcss-resolve-nested-selector: 0.1.1
+ postcss-selector-parser: 6.0.13
+ postcss-value-parser: 4.2.0
+ stylelint: 13.13.1
dev: true
- /minimist@1.2.8:
- resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ /stylelint@13.13.1:
+ resolution: {integrity: sha1-/KnJ9d55kKsmoA8We4l48IOhjzw=}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dependencies:
+ '@stylelint/postcss-css-in-js': 0.37.3(postcss-syntax@0.36.2)(postcss@7.0.39)
+ '@stylelint/postcss-markdown': 0.36.2(postcss-syntax@0.36.2)(postcss@7.0.39)
+ autoprefixer: 9.8.8
+ balanced-match: 2.0.0
+ chalk: 4.1.2
+ cosmiconfig: 7.1.0
+ debug: 4.3.4
+ execall: 2.0.0
+ fast-glob: 3.3.1
+ fastest-levenshtein: 1.0.16
+ file-entry-cache: 6.0.1
+ get-stdin: 8.0.0
+ global-modules: 2.0.0
+ globby: 11.1.0
+ globjoin: 0.1.4
+ html-tags: 3.3.1
+ ignore: 5.2.4
+ import-lazy: 4.0.0
+ imurmurhash: 0.1.4
+ known-css-properties: 0.21.0
+ lodash: 4.17.21
+ log-symbols: 4.1.0
+ mathml-tag-names: 2.1.3
+ meow: 9.0.0
+ micromatch: 4.0.5
+ normalize-selector: 0.2.0
+ postcss: 7.0.39
+ postcss-html: 0.36.0(postcss-syntax@0.36.2)(postcss@7.0.39)
+ postcss-less: 3.1.4
+ postcss-media-query-parser: 0.2.3
+ postcss-resolve-nested-selector: 0.1.1
+ postcss-safe-parser: 4.0.2
+ postcss-sass: 0.4.4
+ postcss-scss: 2.1.1
+ postcss-selector-parser: 6.0.13
+ postcss-syntax: 0.36.2(postcss@7.0.39)
+ postcss-value-parser: 4.2.0
+ resolve-from: 5.0.0
+ slash: 3.0.0
+ specificity: 0.4.1
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ style-search: 0.1.0
+ sugarss: 2.0.0
+ svg-tags: 1.0.0
+ table: 6.8.1
+ v8-compile-cache: 2.4.0
+ write-file-atomic: 3.0.3
+ transitivePeerDependencies:
+ - postcss-jsx
+ - postcss-markdown
+ - supports-color
dev: true
- /ms@2.1.2:
- resolution: {integrity: sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=}
+ /stylesheet-loader@0.9.1:
+ resolution: {integrity: sha512-GDdV3oYsuO8VkmCCFsqNKjo42iRcf3mMhLhvEqktJajJ7HDxj/YAureXCZVqzu6YRgtc/Fhq4WtlaNUaGpz3/g==}
+ dependencies:
+ camelcase: 3.0.0
+ chalk: 1.1.3
+ css: 2.2.4
+ loader-utils: 1.4.2
dev: true
- /ms@2.1.3:
- resolution: {integrity: sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=}
+ /stylus@0.54.8:
+ resolution: {integrity: sha1-PaPmWWa8Vnp7BEv+DuzmU+CZ0Uc=}
+ hasBin: true
+ dependencies:
+ css-parse: 2.0.0
+ debug: 3.1.0
+ glob: 7.2.3
+ mkdirp: 1.0.4
+ safer-buffer: 2.1.2
+ sax: 1.2.4
+ semver: 6.3.1
+ source-map: 0.7.4
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /natural-compare-lite@1.4.0:
- resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
+ /sugarss@2.0.0:
+ resolution: {integrity: sha1-3dduASSyl9QL88yjHIsi7LQ7xh0=}
+ dependencies:
+ postcss: 7.0.39
dev: true
- /natural-compare@1.4.0:
- resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=}
+ /supports-color@2.0.0:
+ resolution: {integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=}
+ engines: {node: '>=0.8.0'}
dev: true
- /node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
+ /supports-color@3.2.3:
+ resolution: {integrity: sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=}
+ engines: {node: '>=0.8.0'}
+ dependencies:
+ has-flag: 1.0.0
dev: true
- /normalize-package-data@2.5.0:
- resolution: {integrity: sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=}
+ /supports-color@5.5.0:
+ resolution: {integrity: sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=}
+ engines: {node: '>=4'}
dependencies:
- hosted-git-info: 2.8.9
- resolve: 1.22.8
- semver: 5.7.2
- validate-npm-package-license: 3.0.4
+ has-flag: 3.0.0
dev: true
- /normalize-package-data@3.0.3:
- resolution: {integrity: sha1-28w+LaWVCaCYNCKITNFy7v36Ul4=}
- engines: {node: '>=10'}
+ /supports-color@6.1.0:
+ resolution: {integrity: sha1-B2Srxpxj1ayELdSGfo0CXogN+PM=}
+ engines: {node: '>=6'}
dependencies:
- hosted-git-info: 4.1.0
- is-core-module: 2.13.1
- semver: 7.5.4
- validate-npm-package-license: 3.0.4
+ has-flag: 3.0.0
dev: true
- /normalize-range@0.1.2:
- resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=}
- engines: {node: '>=0.10.0'}
+ /supports-color@7.2.0:
+ resolution: {integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=}
+ engines: {node: '>=8'}
+ dependencies:
+ has-flag: 4.0.0
dev: true
- /normalize-selector@0.2.0:
- resolution: {integrity: sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=}
+ /supports-color@8.1.1:
+ resolution: {integrity: sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw=}
+ engines: {node: '>=10'}
+ dependencies:
+ has-flag: 4.0.0
dev: true
- /npm-run-path@4.0.1:
- resolution: {integrity: sha1-t+zR5e1T2o43pV4cImnguX7XSOo=}
+ /supports-hyperlinks@2.3.0:
+ resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
engines: {node: '>=8'}
dependencies:
- path-key: 3.1.1
+ has-flag: 4.0.0
+ supports-color: 7.2.0
dev: true
- /npm-run-path@5.1.0:
- resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- path-key: 4.0.0
+ /supports-preserve-symlinks-flag@1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
dev: true
- /num2fraction@1.2.2:
- resolution: {integrity: sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=}
+ /svg-tags@1.0.0:
+ resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=}
dev: true
- /object-assign@4.1.1:
- resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
- engines: {node: '>=0.10.0'}
+ /svgo@1.3.2:
+ resolution: {integrity: sha1-ttxRHAYzRsnkFbgeQ0ARRbltQWc=}
+ engines: {node: '>=4.0.0'}
+ deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x.
+ hasBin: true
+ dependencies:
+ chalk: 2.4.2
+ coa: 2.0.2
+ css-select: 2.1.0
+ css-select-base-adapter: 0.1.1
+ css-tree: 1.0.0-alpha.37
+ csso: 4.2.0
+ js-yaml: 3.14.1
+ mkdirp: 0.5.6
+ object.values: 1.1.7
+ sax: 1.2.4
+ stable: 0.1.8
+ unquote: 1.1.1
+ util.promisify: 1.0.1
dev: true
- /object-inspect@1.13.1:
- resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ /swiper@6.5.0:
+ resolution: {integrity: sha1-TKIkO0T8zvR+4oGZN3ZmYH2MUUE=}
+ engines: {node: '>= 4.7.0'}
+ requiresBuild: true
+ dependencies:
+ dom7: 3.0.0
+ ssr-window: 3.0.0
dev: true
- /object-keys@1.1.1:
- resolution: {integrity: sha1-HEfyct8nfzsdrwYWd9nILiMixg4=}
- engines: {node: '>= 0.4'}
+ /symbol-tree@3.2.4:
+ resolution: {integrity: sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I=}
dev: true
- /object.assign@4.1.4:
- resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
- engines: {node: '>= 0.4'}
+ /synckit@0.8.5:
+ resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
+ engines: {node: ^14.18.0 || >=16.0.0}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- has-symbols: 1.0.3
- object-keys: 1.1.1
+ '@pkgr/utils': 2.4.2
+ tslib: 2.6.2
dev: true
- /object.entries@1.1.7:
- resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
- engines: {node: '>= 0.4'}
+ /table@6.8.1:
+ resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
+ engines: {node: '>=10.0.0'}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
+ ajv: 8.12.0
+ lodash.truncate: 4.4.2
+ slice-ansi: 4.0.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
dev: true
- /object.fromentries@2.0.7:
- resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
+ /tapable@1.1.3:
+ resolution: {integrity: sha1-ofzMBrWNth/XpF2i2kT186Pme6I=}
+ engines: {node: '>=6'}
dev: true
- /object.groupby@1.0.1:
- resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
+ /tar@6.2.0:
+ resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
+ engines: {node: '>=10'}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ minipass: 5.0.0
+ minizlib: 2.1.2
+ mkdirp: 1.0.4
+ yallist: 4.0.0
dev: true
- /object.hasown@1.1.3:
- resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==}
+ /template-component-demo@2.0.5(@types/react@16.14.50)(react@16.14.0):
+ resolution: {integrity: sha512-H9h7cLP6zAH96l/q9+Z+VnlbBj6YBmVqp4DHN5Qm0Zp0R4coqbcajAEtGRTTuVmTUfnVWeituMwwtpUABVDNpQ==}
+ peerDependencies:
+ react: '>=16.8'
dependencies:
- define-properties: 1.2.1
- es-abstract: 1.22.3
+ query-string: 6.14.1
+ react: 16.14.0
+ react-markdown: 7.1.2(@types/react@16.14.50)(react@16.14.0)
+ react-router-dom: 5.3.4(react@16.14.0)
+ transitivePeerDependencies:
+ - '@types/react'
+ - supports-color
dev: true
- /object.values@1.1.7:
- resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
- engines: {node: '>= 0.4'}
+ /terminal-link@2.1.1:
+ resolution: {integrity: sha1-FKZKJ6s8Dfkz6lRvulXy0HjtyZQ=}
+ engines: {node: '>=8'}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
+ ansi-escapes: 4.3.2
+ supports-hyperlinks: 2.3.0
dev: true
- /once@1.4.0:
- resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
+ /terser-webpack-plugin@1.4.5(webpack@4.47.0):
+ resolution: {integrity: sha1-oheu+uozDnNP+sthIOwfoxLWBAs=}
+ engines: {node: '>= 6.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0
dependencies:
- wrappy: 1.0.2
+ cacache: 12.0.4
+ find-cache-dir: 2.1.0
+ is-wsl: 1.1.0
+ schema-utils: 1.0.0
+ serialize-javascript: 4.0.0
+ source-map: 0.6.1
+ terser: 4.8.1
+ webpack: 4.47.0
+ webpack-sources: 1.4.3
+ worker-farm: 1.7.0
dev: true
- /onetime@5.1.2:
- resolution: {integrity: sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=}
- engines: {node: '>=6'}
+ /terser-webpack-plugin@2.3.8(webpack@4.47.0):
+ resolution: {integrity: sha1-iUdkoZsHQ/L3BOfCqEjFKDppZyQ=}
+ engines: {node: '>= 8.9.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
dependencies:
- mimic-fn: 2.1.0
+ cacache: 13.0.1
+ find-cache-dir: 3.3.2
+ jest-worker: 25.5.0
+ p-limit: 2.3.0
+ schema-utils: 2.7.1
+ serialize-javascript: 4.0.0
+ source-map: 0.6.1
+ terser: 4.8.1
+ webpack: 4.47.0
+ webpack-sources: 1.4.3
+ transitivePeerDependencies:
+ - bluebird
dev: true
- /onetime@6.0.0:
- resolution: {integrity: sha1-fCTBjtH9LpvKS9JoBqM2E8d9NLQ=}
- engines: {node: '>=12'}
+ /terser-webpack-plugin@4.2.3(webpack@4.47.0):
+ resolution: {integrity: sha1-KNrvSoO9F8HbApcHCtwH/Iz8apo=}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
dependencies:
- mimic-fn: 4.0.0
+ cacache: 15.3.0
+ find-cache-dir: 3.3.2
+ jest-worker: 26.6.2
+ p-limit: 3.1.0
+ schema-utils: 3.3.0
+ serialize-javascript: 5.0.1
+ source-map: 0.6.1
+ terser: 5.22.0
+ webpack: 4.47.0
+ webpack-sources: 1.4.3
+ transitivePeerDependencies:
+ - bluebird
dev: true
- /open@9.1.0:
- resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
- engines: {node: '>=14.16'}
+ /terser@4.8.1:
+ resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
dependencies:
- default-browser: 4.0.0
- define-lazy-prop: 3.0.0
- is-inside-container: 1.0.0
- is-wsl: 2.2.0
+ acorn: 8.10.0
+ commander: 2.20.3
+ source-map: 0.6.1
+ source-map-support: 0.5.21
dev: true
- /optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
- engines: {node: '>= 0.8.0'}
+ /terser@5.22.0:
+ resolution: {integrity: sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==}
+ engines: {node: '>=10'}
+ hasBin: true
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.4.1
- prelude-ls: 1.2.1
- type-check: 0.4.0
+ '@jridgewell/source-map': 0.3.5
+ acorn: 8.10.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
dev: true
- /p-limit@2.3.0:
- resolution: {integrity: sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=}
+ /test-exclude@5.2.3:
+ resolution: {integrity: sha1-w9Ph4xHrfuQF4JLawQrv0JCR6sA=}
engines: {node: '>=6'}
dependencies:
- p-try: 2.2.0
+ glob: 7.2.3
+ minimatch: 3.1.2
+ read-pkg-up: 4.0.0
+ require-main-filename: 2.0.0
dev: true
- /p-limit@3.1.0:
- resolution: {integrity: sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=}
- engines: {node: '>=10'}
+ /test-exclude@6.0.0:
+ resolution: {integrity: sha1-BKhphmHYBepvopO2y55jrARO8V4=}
+ engines: {node: '>=8'}
dependencies:
- yocto-queue: 0.1.0
+ '@istanbuljs/schema': 0.1.3
+ glob: 7.2.3
+ minimatch: 3.1.2
dev: true
- /p-locate@4.1.0:
- resolution: {integrity: sha1-o0KLtwiLOmApL2aRkni3wpetTwc=}
- engines: {node: '>=8'}
+ /text-extensions@1.9.0:
+ resolution: {integrity: sha1-GFPkX+45yUXOb2w2stZZtaq8KiY=}
+ engines: {node: '>=0.10'}
+ dev: true
+
+ /text-table@0.2.0:
+ resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
+ dev: true
+
+ /throat@5.0.0:
+ resolution: {integrity: sha1-xRmSNYA6rRh1SmZ9ZZtecs4Wdks=}
+ dev: true
+
+ /through2@2.0.5:
+ resolution: {integrity: sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=}
dependencies:
- p-limit: 2.3.0
+ readable-stream: 2.3.8
+ xtend: 4.0.2
dev: true
- /p-locate@5.0.0:
- resolution: {integrity: sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=}
- engines: {node: '>=10'}
+ /through2@4.0.2:
+ resolution: {integrity: sha1-p846wqeosLlmyA58SfBITDsjl2Q=}
dependencies:
- p-limit: 3.1.0
+ readable-stream: 3.6.2
dev: true
- /p-try@2.2.0:
- resolution: {integrity: sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=}
- engines: {node: '>=6'}
+ /through@2.3.8:
+ resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=}
dev: true
- /parent-module@1.0.1:
- resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=}
- engines: {node: '>=6'}
- dependencies:
- callsites: 3.1.0
+ /thunky@1.1.0:
+ resolution: {integrity: sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=}
dev: true
- /parse-entities@2.0.0:
- resolution: {integrity: sha1-U8brW5MUofTsmfoP33zgHs2gy+g=}
+ /time-fix-plugin@2.0.7(webpack@4.47.0):
+ resolution: {integrity: sha1-S6cK4uQM7fNNq+UF7ae3GxskT1A=}
+ peerDependencies:
+ webpack: '>=4.0.0'
dependencies:
- character-entities: 1.2.4
- character-entities-legacy: 1.1.4
- character-reference-invalid: 1.1.4
- is-alphanumerical: 1.0.4
- is-decimal: 1.0.4
- is-hexadecimal: 1.0.4
+ webpack: 4.47.0
dev: true
- /parse-json@5.2.0:
- resolution: {integrity: sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=}
- engines: {node: '>=8'}
+ /timers-browserify@2.0.12:
+ resolution: {integrity: sha1-RKRcEfv0B/NPl7zNFXfGUjYbAO4=}
+ engines: {node: '>=0.6.0'}
dependencies:
- '@babel/code-frame': 7.22.13
- error-ex: 1.3.2
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
+ setimmediate: 1.0.5
dev: true
- /path-exists@4.0.0:
- resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=}
- engines: {node: '>=8'}
+ /timsort@0.3.0:
+ resolution: {integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=}
dev: true
- /path-is-absolute@1.0.1:
- resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
- engines: {node: '>=0.10.0'}
+ /tiny-invariant@1.3.1:
+ resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
dev: true
- /path-key@3.1.1:
- resolution: {integrity: sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=}
- engines: {node: '>=8'}
+ /tiny-warning@1.0.3:
+ resolution: {integrity: sha1-lKMNtFPfTGQ9D9VmBg1gqHXYR1Q=}
dev: true
- /path-key@4.0.0:
- resolution: {integrity: sha1-KVWI3DruZBVPh3rbnXgLgcVUvxg=}
+ /tinycolor2@1.6.0:
+ resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
+ dev: true
+
+ /titleize@3.0.0:
+ resolution: {integrity: sha1-ccEut/3SVYqopEsL6DuKdmlKzVM=}
engines: {node: '>=12'}
dev: true
- /path-parse@1.0.7:
- resolution: {integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=}
+ /tmp@0.0.33:
+ resolution: {integrity: sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ os-tmpdir: 1.0.2
dev: true
- /path-type@4.0.0:
- resolution: {integrity: sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=}
- engines: {node: '>=8'}
+ /tmpl@1.0.5:
+ resolution: {integrity: sha1-hoPguQK7nCDE9ybjwLafNlGMB8w=}
dev: true
- /picocolors@0.2.1:
- resolution: {integrity: sha1-VwZw95NkaFHRuhNZlpYqutWHhZ8=}
+ /to-array@0.1.4:
+ resolution: {integrity: sha1-F+bBH3PdTz10zaek/zI46a2b+JA=}
dev: true
- /picocolors@1.0.0:
- resolution: {integrity: sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=}
+ /to-arraybuffer@1.0.1:
+ resolution: {integrity: sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=}
dev: true
- /picomatch@2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
- engines: {node: '>=8.6'}
+ /to-fast-properties@2.0.0:
+ resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
+ engines: {node: '>=4'}
dev: true
- /pidtree@0.6.0:
- resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
- engines: {node: '>=0.10'}
- hasBin: true
+ /to-object-path@0.3.0:
+ resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ kind-of: 3.2.2
+ dev: true
+
+ /to-regex-range@2.1.1:
+ resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-number: 3.0.0
+ repeat-string: 1.6.1
dev: true
- /postcss-html@0.36.0(postcss-syntax@0.36.2)(postcss@7.0.39):
- resolution: {integrity: sha1-tAkT+U6qzCRT/TChMnrW7h+IsgQ=}
- peerDependencies:
- postcss: '>=5.0.0'
- postcss-syntax: '>=0.36.0'
+ /to-regex-range@5.0.1:
+ resolution: {integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=}
+ engines: {node: '>=8.0'}
dependencies:
- htmlparser2: 3.10.1
- postcss: 7.0.39
- postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39)
+ is-number: 7.0.0
dev: true
- /postcss-less@3.1.4:
- resolution: {integrity: sha1-Np9YZCtZKO+Jj/vBpuk8lYMExa0=}
- engines: {node: '>=6.14.4'}
+ /to-regex@3.0.2:
+ resolution: {integrity: sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=}
+ engines: {node: '>=0.10.0'}
dependencies:
- postcss: 7.0.39
+ define-property: 2.0.2
+ extend-shallow: 3.0.2
+ regex-not: 1.0.2
+ safe-regex: 1.1.0
dev: true
- /postcss-media-query-parser@0.2.3:
- resolution: {integrity: sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=}
+ /toidentifier@1.0.1:
+ resolution: {integrity: sha1-O+NDIaiKgg7RvYDfqjPkefu43TU=}
+ engines: {node: '>=0.6'}
dev: true
- /postcss-resolve-nested-selector@0.1.1:
- resolution: {integrity: sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=}
+ /toposort@1.0.7:
+ resolution: {integrity: sha1-LmhELZ9k7HILjMieZEOsbKqVACk=}
dev: true
- /postcss-safe-parser@4.0.2:
- resolution: {integrity: sha1-ptTkjw832ffBGypYG/APi6SHC5Y=}
- engines: {node: '>=6.0.0'}
+ /tough-cookie@4.1.3:
+ resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
+ engines: {node: '>=6'}
dependencies:
- postcss: 7.0.39
+ psl: 1.9.0
+ punycode: 2.3.0
+ universalify: 0.2.0
+ url-parse: 1.5.10
dev: true
- /postcss-sass@0.4.4:
- resolution: {integrity: sha1-kfDzRHtFzjcyJ6mLYfjY8HhShaM=}
+ /tr46@2.1.0:
+ resolution: {integrity: sha1-+oeqgcpdWUHajL8fm3SdyWmk4kA=}
+ engines: {node: '>=8'}
dependencies:
- gonzales-pe: 4.3.0
- postcss: 7.0.39
+ punycode: 2.3.0
dev: true
- /postcss-scss@2.1.1:
- resolution: {integrity: sha1-7Dp1+imlXgFrkL8yaQJsU8HSs4M=}
- engines: {node: '>=6.0.0'}
- dependencies:
- postcss: 7.0.39
+ /traverse@0.6.6:
+ resolution: {integrity: sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=}
dev: true
- /postcss-selector-parser@6.0.13:
- resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
- engines: {node: '>=4'}
- dependencies:
- cssesc: 3.0.0
- util-deprecate: 1.0.2
+ /trim-lines@3.0.1:
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
+ dev: false
+
+ /trim-newlines@3.0.1:
+ resolution: {integrity: sha1-Jgpdli2LdSQlsy86fbDcrNF2wUQ=}
+ engines: {node: '>=8'}
dev: true
- /postcss-syntax@0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39):
- resolution: {integrity: sha1-8IV4x9lYNFdOVZOoLfv6ivrjtRw=}
- peerDependencies:
- postcss: '>=5.0.0'
- postcss-html: '*'
- postcss-jsx: '*'
- postcss-less: '*'
- postcss-markdown: '*'
- postcss-scss: '*'
- peerDependenciesMeta:
- postcss-html:
- optional: true
- postcss-jsx:
- optional: true
- postcss-less:
- optional: true
- postcss-markdown:
- optional: true
- postcss-scss:
- optional: true
- dependencies:
- postcss: 7.0.39
- postcss-html: 0.36.0(postcss-syntax@0.36.2)(postcss@7.0.39)
- postcss-less: 3.1.4
- postcss-scss: 2.1.1
+ /trim-right@1.0.1:
+ resolution: {integrity: sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=}
+ engines: {node: '>=0.10.0'}
dev: true
- /postcss-value-parser@4.2.0:
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+ /trough@1.0.5:
+ resolution: {integrity: sha1-uLY5zvrX0LsqvTfUM/+Ck++l9AY=}
dev: true
- /postcss@7.0.39:
- resolution: {integrity: sha1-liQ3XZZWMOLh8sAqk1yCpZy0gwk=}
- engines: {node: '>=6.0.0'}
+ /trough@2.1.0:
+ resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
+
+ /ts-loader@6.2.2(typescript@4.9.5):
+ resolution: {integrity: sha1-3/o4ebAaGh4KS4XiuEIdwN//HFg=}
+ engines: {node: '>=8.6'}
+ peerDependencies:
+ typescript: '*'
dependencies:
- picocolors: 0.2.1
- source-map: 0.6.1
+ chalk: 2.4.2
+ enhanced-resolve: 4.5.0
+ loader-utils: 1.4.2
+ micromatch: 4.0.5
+ semver: 6.3.1
+ typescript: 4.9.5
dev: true
- /prelude-ls@1.2.1:
- resolution: {integrity: sha1-3rxkidem5rDnYRiIzsiAM30xY5Y=}
- engines: {node: '>= 0.8.0'}
+ /ts-loader@8.4.0(typescript@4.9.5)(webpack@4.47.0):
+ resolution: {integrity: sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ typescript: '*'
+ webpack: '*'
+ dependencies:
+ chalk: 4.1.2
+ enhanced-resolve: 4.5.0
+ loader-utils: 2.0.4
+ micromatch: 4.0.5
+ semver: 7.5.4
+ typescript: 4.9.5
+ webpack: 4.47.0
dev: true
- /prettier-plugin-organize-imports@3.2.3(prettier@2.8.8)(typescript@4.9.5):
- resolution: {integrity: sha512-KFvk8C/zGyvUaE3RvxN2MhCLwzV6OBbFSkwZ2OamCrs9ZY4i5L77jQ/w4UmUr+lqX8qbaqVq6bZZkApn+IgJSg==}
+ /ts-node@10.9.1(@types/node@20.5.1)(typescript@4.9.5):
+ resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
+ hasBin: true
peerDependencies:
- '@volar/vue-language-plugin-pug': ^1.0.4
- '@volar/vue-typescript': ^1.0.4
- prettier: '>=2.0'
- typescript: '>=2.9'
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
peerDependenciesMeta:
- '@volar/vue-language-plugin-pug':
+ '@swc/core':
optional: true
- '@volar/vue-typescript':
+ '@swc/wasm':
optional: true
dependencies:
- prettier: 2.8.8
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.9
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 20.5.1
+ acorn: 8.10.0
+ acorn-walk: 8.2.0
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
typescript: 4.9.5
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
dev: true
- /prettier-plugin-packagejson@2.4.6(prettier@2.8.8):
- resolution: {integrity: sha512-5JGfzkJRL0DLNyhwmiAV9mV0hZLHDwddFCs2lc9CNxOChpoWUQVe8K4qTMktmevmDlMpok2uT10nvHUyU59sNw==}
- peerDependencies:
- prettier: '>= 1.16.0'
- peerDependenciesMeta:
- prettier:
- optional: true
+ /ts-polyfill@3.8.2:
+ resolution: {integrity: sha512-x0M4kx+FObO88sedZ1zld+YX+GvcgaYSVnHspNftI4GRT86FTBy41O89ztKfvue0XtaKpb8WBpPZsh82hy3Ncw==}
dependencies:
- prettier: 2.8.8
- sort-package-json: 2.6.0
- synckit: 0.8.5
+ core-js: 3.33.1
dev: true
- /prettier@2.8.8:
- resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
- engines: {node: '>=10.13.0'}
- hasBin: true
+ /tsconfig-paths@3.14.2:
+ resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
+ dependencies:
+ '@types/json5': 0.0.29
+ json5: 1.0.2
+ minimist: 1.2.8
+ strip-bom: 3.0.0
dev: true
- /prop-types@15.8.1:
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
- dependencies:
- loose-envify: 1.4.0
- object-assign: 4.1.1
- react-is: 16.13.1
+ /tslib@1.14.1:
+ resolution: {integrity: sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=}
dev: true
- /punycode@2.3.0:
- resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
- engines: {node: '>=6'}
+ /tslib@2.6.2:
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
dev: true
- /queue-microtask@1.2.3:
- resolution: {integrity: sha1-SSkii7xyTfrEPg77BYyve2z7YkM=}
+ /tsutils@3.21.0(typescript@4.9.5):
+ resolution: {integrity: sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ dependencies:
+ tslib: 1.14.1
+ typescript: 4.9.5
dev: true
- /quick-lru@4.0.1:
- resolution: {integrity: sha1-W4h48ROlgheEjGSCAmxz4bpXcn8=}
- engines: {node: '>=8'}
+ /tsutils@3.21.0(typescript@5.2.2):
+ resolution: {integrity: sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ dependencies:
+ tslib: 1.14.1
+ typescript: 5.2.2
dev: true
- /react-is@16.13.1:
- resolution: {integrity: sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=}
+ /tty-browserify@0.0.0:
+ resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=}
dev: true
- /read-pkg-up@7.0.1:
- resolution: {integrity: sha1-86YTV1hFlzOuK5VjgFbhhU5+9Qc=}
- engines: {node: '>=8'}
+ /type-check@0.4.0:
+ resolution: {integrity: sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=}
+ engines: {node: '>= 0.8.0'}
dependencies:
- find-up: 4.1.0
- read-pkg: 5.2.0
- type-fest: 0.8.1
+ prelude-ls: 1.2.1
dev: true
- /read-pkg@5.2.0:
- resolution: {integrity: sha1-e/KVQ4yloz5WzTDgU7NO5yUMk8w=}
- engines: {node: '>=8'}
- dependencies:
- '@types/normalize-package-data': 2.4.3
- normalize-package-data: 2.5.0
- parse-json: 5.2.0
- type-fest: 0.6.0
+ /type-detect@4.0.8:
+ resolution: {integrity: sha1-dkb7XxiHHPu3dJ5pvTmmOI63RQw=}
+ engines: {node: '>=4'}
dev: true
- /readable-stream@3.6.2:
- resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
- engines: {node: '>= 6'}
- dependencies:
- inherits: 2.0.4
- string_decoder: 1.3.0
- util-deprecate: 1.0.2
+ /type-fest@0.18.1:
+ resolution: {integrity: sha1-20vBUaSiz07r+a3V23VQjbbMhB8=}
+ engines: {node: '>=10'}
dev: true
- /redent@3.0.0:
- resolution: {integrity: sha1-5Ve3mYMWu1PJ8fVvpiY1LGljBZ8=}
- engines: {node: '>=8'}
- dependencies:
- indent-string: 4.0.0
- strip-indent: 3.0.0
+ /type-fest@0.20.2:
+ resolution: {integrity: sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=}
+ engines: {node: '>=10'}
dev: true
- /reflect.getprototypeof@1.0.4:
- resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- globalthis: 1.0.3
- which-builtin-type: 1.1.3
+ /type-fest@0.21.3:
+ resolution: {integrity: sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=}
+ engines: {node: '>=10'}
dev: true
- /regenerate-unicode-properties@10.1.1:
- resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
- engines: {node: '>=4'}
- dependencies:
- regenerate: 1.4.2
+ /type-fest@0.6.0:
+ resolution: {integrity: sha1-jSojcNPfiG61yQraHFv2GIrPg4s=}
+ engines: {node: '>=8'}
dev: true
- /regenerate@1.4.2:
- resolution: {integrity: sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=}
+ /type-fest@0.8.1:
+ resolution: {integrity: sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=}
+ engines: {node: '>=8'}
dev: true
- /regenerator-runtime@0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
+ /type-fest@1.4.0:
+ resolution: {integrity: sha1-6fuBP+O/F0TsNZ1V0a/++nbxS+E=}
+ engines: {node: '>=10'}
dev: true
- /regenerator-transform@0.15.2:
- resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
+ /type-is@1.6.18:
+ resolution: {integrity: sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=}
+ engines: {node: '>= 0.6'}
dependencies:
- '@babel/runtime': 7.23.2
+ media-typer: 0.3.0
+ mime-types: 2.1.35
dev: true
- /regexp.prototype.flags@1.5.1:
- resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
+ /typed-array-buffer@1.0.0:
+ resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.5
- define-properties: 1.2.1
- set-function-name: 2.0.1
- dev: true
-
- /regexpp@3.2.0:
- resolution: {integrity: sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=}
- engines: {node: '>=8'}
+ get-intrinsic: 1.2.2
+ is-typed-array: 1.1.12
dev: true
- /regexpu-core@5.3.2:
- resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
- engines: {node: '>=4'}
+ /typed-array-byte-length@1.0.0:
+ resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
+ engines: {node: '>= 0.4'}
dependencies:
- '@babel/regjsgen': 0.8.0
- regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.1
- regjsparser: 0.9.1
- unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
+ call-bind: 1.0.5
+ for-each: 0.3.3
+ has-proto: 1.0.1
+ is-typed-array: 1.1.12
dev: true
- /regjsparser@0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
- hasBin: true
+ /typed-array-byte-offset@1.0.0:
+ resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
+ engines: {node: '>= 0.4'}
dependencies:
- jsesc: 0.5.0
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.5
+ for-each: 0.3.3
+ has-proto: 1.0.1
+ is-typed-array: 1.1.12
dev: true
- /remark-parse@9.0.0:
- resolution: {integrity: sha1-TSCimWZYgOT0r12Qt8e4qTWFNkA=}
+ /typed-array-length@1.0.4:
+ resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
dependencies:
- mdast-util-from-markdown: 0.8.5
- transitivePeerDependencies:
- - supports-color
+ call-bind: 1.0.5
+ for-each: 0.3.3
+ is-typed-array: 1.1.12
dev: true
- /remark-stringify@9.0.1:
- resolution: {integrity: sha1-V20G6RBUiwpxkacfJ7M/EhiGKJQ=}
+ /typedarray-to-buffer@3.1.5:
+ resolution: {integrity: sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=}
dependencies:
- mdast-util-to-markdown: 0.6.5
+ is-typedarray: 1.0.0
dev: true
- /remark@13.0.0:
- resolution: {integrity: sha1-0V2b9xpAL0Aofr42Bntm1Uho5CU=}
- dependencies:
- remark-parse: 9.0.0
- remark-stringify: 9.0.1
- unified: 9.2.2
- transitivePeerDependencies:
- - supports-color
+ /typedarray@0.0.6:
+ resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=}
dev: true
- /repeat-string@1.6.1:
- resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=}
- engines: {node: '>=0.10'}
+ /typescript@3.9.4:
+ resolution: {integrity: sha1-WqClSQS1G5bf1nhwzi23AlGALxA=}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
dev: true
- /require-directory@2.1.1:
- resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=}
- engines: {node: '>=0.10.0'}
+ /typescript@4.9.5:
+ resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
dev: true
- /require-from-string@2.0.2:
- resolution: {integrity: sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk=}
- engines: {node: '>=0.10.0'}
+ /typescript@5.2.2:
+ resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
+ engines: {node: '>=14.17'}
+ hasBin: true
dev: true
- /resolve-from@4.0.0:
- resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=}
- engines: {node: '>=4'}
+ /uc.micro@1.0.6:
+ resolution: {integrity: sha1-nEEagCpAmpH8bPdAgbq6NLJEmaw=}
dev: true
- /resolve-from@5.0.0:
- resolution: {integrity: sha1-w1IlhD3493bfIcV1V7wIfp39/Gk=}
- engines: {node: '>=8'}
+ /uglify-js@3.17.4:
+ resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
+ engines: {node: '>=0.8.0'}
+ hasBin: true
+ requiresBuild: true
dev: true
+ optional: true
- /resolve-global@1.0.0:
- resolution: {integrity: sha1-oqed9K8so/Sb93753azTItrRklU=}
- engines: {node: '>=8'}
+ /uglify-js@3.4.10:
+ resolution: {integrity: sha1-mtlWPY6zrN+404WX0q8dgV9qdV8=}
+ engines: {node: '>=0.8.0'}
+ hasBin: true
dependencies:
- global-dirs: 0.1.1
+ commander: 2.19.0
+ source-map: 0.6.1
dev: true
- /resolve@1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
- hasBin: true
+ /unbox-primitive@1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
- is-core-module: 2.13.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
+ call-bind: 1.0.5
+ has-bigints: 1.0.2
+ has-symbols: 1.0.3
+ which-boxed-primitive: 1.0.2
dev: true
- /resolve@2.0.0-next.5:
- resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
- hasBin: true
- dependencies:
- is-core-module: 2.13.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
+ /unicode-canonical-property-names-ecmascript@2.0.0:
+ resolution: {integrity: sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=}
+ engines: {node: '>=4'}
dev: true
- /restore-cursor@4.0.0:
- resolution: {integrity: sha1-UZVgpDGJdQlt725gnUQQDtqkzLk=}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ /unicode-match-property-ecmascript@2.0.0:
+ resolution: {integrity: sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=}
+ engines: {node: '>=4'}
dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
+ unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-property-aliases-ecmascript: 2.1.0
dev: true
- /reusify@1.0.4:
- resolution: {integrity: sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=}
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ /unicode-match-property-value-ecmascript@2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ engines: {node: '>=4'}
dev: true
- /rfdc@1.3.0:
- resolution: {integrity: sha1-0LfEQasnINBdxM8m4ByJYx2doIs=}
+ /unicode-property-aliases-ecmascript@2.1.0:
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ engines: {node: '>=4'}
dev: true
- /rimraf@3.0.2:
- resolution: {integrity: sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=}
- hasBin: true
+ /unified@10.1.2:
+ resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
- glob: 7.2.3
+ '@types/unist': 2.0.9
+ bail: 2.0.2
+ extend: 3.0.2
+ is-buffer: 2.0.5
+ is-plain-obj: 4.1.0
+ trough: 2.1.0
+ vfile: 5.3.7
dev: true
- /run-applescript@5.0.0:
- resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
- engines: {node: '>=12'}
+ /unified@11.0.3:
+ resolution: {integrity: sha512-jlCV402P+YDcFcB2VcN/n8JasOddqIiaxv118wNBoZXEhOn+lYG7BR4Bfg2BwxvlK58dwbuH2w7GX2esAjL6Mg==}
dependencies:
- execa: 5.1.1
- dev: true
+ '@types/unist': 3.0.1
+ bail: 2.0.2
+ devlop: 1.1.0
+ extend: 3.0.2
+ is-plain-obj: 4.1.0
+ trough: 2.1.0
+ vfile: 6.0.1
+ dev: false
- /run-parallel@1.2.0:
- resolution: {integrity: sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=}
+ /unified@9.2.2:
+ resolution: {integrity: sha1-Z2SaGr/Dq4XSlpUCkCd16wMUaXU=}
dependencies:
- queue-microtask: 1.2.3
+ '@types/unist': 2.0.9
+ bail: 1.0.5
+ extend: 3.0.2
+ is-buffer: 2.0.5
+ is-plain-obj: 2.1.0
+ trough: 1.0.5
+ vfile: 4.2.1
dev: true
- /safe-array-concat@1.0.1:
- resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
- engines: {node: '>=0.4'}
+ /union-value@1.0.1:
+ resolution: {integrity: sha1-C2/nuDWuzaYcbqTU8CwUIh4QmEc=}
+ engines: {node: '>=0.10.0'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- has-symbols: 1.0.3
- isarray: 2.0.5
- dev: true
-
- /safe-buffer@5.2.1:
- resolution: {integrity: sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=}
+ arr-union: 3.1.0
+ get-value: 2.0.6
+ is-extendable: 0.1.1
+ set-value: 2.0.1
dev: true
- /safe-regex-test@1.0.0:
- resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
- dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-regex: 1.1.4
+ /uniq@1.0.1:
+ resolution: {integrity: sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=}
dev: true
- /semver@5.7.2:
- resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
- hasBin: true
+ /uniqs@2.0.0:
+ resolution: {integrity: sha1-/+3ks2slKQaW5uFl1KWe25mOawI=}
dev: true
- /semver@6.3.1:
- resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
- hasBin: true
+ /unique-filename@1.1.1:
+ resolution: {integrity: sha1-HWl2k2mtoFgxA6HmrodoG1ZXMjA=}
+ dependencies:
+ unique-slug: 2.0.2
dev: true
- /semver@7.5.4:
- resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
- engines: {node: '>=10'}
- hasBin: true
+ /unique-slug@2.0.2:
+ resolution: {integrity: sha1-uqvOkQg/xk6UWw861hPiZPfNTmw=}
dependencies:
- lru-cache: 6.0.0
+ imurmurhash: 0.1.4
dev: true
- /set-function-length@1.1.1:
- resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
- engines: {node: '>= 0.4'}
+ /unist-builder@3.0.1:
+ resolution: {integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==}
dependencies:
- define-data-property: 1.1.1
- get-intrinsic: 1.2.2
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
+ '@types/unist': 2.0.9
dev: true
- /set-function-name@2.0.1:
- resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
- engines: {node: '>= 0.4'}
+ /unist-util-find-all-after@3.0.2:
+ resolution: {integrity: sha1-/f7NFMW3rqXp7zjV4NX3dO61YfY=}
dependencies:
- define-data-property: 1.1.1
- functions-have-names: 1.2.3
- has-property-descriptors: 1.0.1
+ unist-util-is: 4.1.0
dev: true
- /shebang-command@2.0.0:
- resolution: {integrity: sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=}
- engines: {node: '>=8'}
- dependencies:
- shebang-regex: 3.0.0
+ /unist-util-generated@2.0.1:
+ resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
dev: true
- /shebang-regex@3.0.0:
- resolution: {integrity: sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=}
- engines: {node: '>=8'}
+ /unist-util-is@4.1.0:
+ resolution: {integrity: sha1-l25fRip6Xec9lLcGusG5BnG1d5c=}
dev: true
- /side-channel@1.0.4:
- resolution: {integrity: sha1-785cj9wQTudRslxY1CkAEfpeos8=}
+ /unist-util-is@5.2.1:
+ resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- object-inspect: 1.13.1
+ '@types/unist': 2.0.9
dev: true
- /signal-exit@3.0.7:
- resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- dev: true
+ /unist-util-is@6.0.0:
+ resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
+ dependencies:
+ '@types/unist': 3.0.1
+ dev: false
- /slash@3.0.0:
- resolution: {integrity: sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=}
- engines: {node: '>=8'}
+ /unist-util-position@4.0.4:
+ resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
+ dependencies:
+ '@types/unist': 2.0.9
dev: true
- /slash@4.0.0:
- resolution: {integrity: sha1-JCI3IXbExsWt214q2oha+YSzlqc=}
- engines: {node: '>=12'}
- dev: true
+ /unist-util-position@5.0.0:
+ resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
+ dependencies:
+ '@types/unist': 3.0.1
+ dev: false
- /slice-ansi@4.0.0:
- resolution: {integrity: sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=}
- engines: {node: '>=10'}
+ /unist-util-stringify-position@2.0.3:
+ resolution: {integrity: sha1-zOO/oc34W6c3XR1bF73Eytqb2do=}
dependencies:
- ansi-styles: 4.3.0
- astral-regex: 2.0.0
- is-fullwidth-code-point: 3.0.0
+ '@types/unist': 2.0.9
dev: true
- /slice-ansi@5.0.0:
- resolution: {integrity: sha1-tzBjxXqpb5zYgWVLFSlNldKFxCo=}
- engines: {node: '>=12'}
+ /unist-util-stringify-position@3.0.3:
+ resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
dependencies:
- ansi-styles: 6.2.1
- is-fullwidth-code-point: 4.0.0
+ '@types/unist': 2.0.9
dev: true
- /sort-object-keys@1.1.3:
- resolution: {integrity: sha1-v/gz/oXKsUezR0LkWGNFPB4ZC0U=}
- dev: true
+ /unist-util-stringify-position@4.0.0:
+ resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
+ dependencies:
+ '@types/unist': 3.0.1
+ dev: false
- /sort-package-json@2.6.0:
- resolution: {integrity: sha512-XSQ+lY9bAYA8ZsoChcEoPlgcSMaheziEp1beox1JVxy1SV4F2jSq9+h2rJ+3mC/Dhu9Ius1DLnInD5AWcsDXZw==}
- hasBin: true
+ /unist-util-visit-parents@5.1.3:
+ resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
dependencies:
- detect-indent: 7.0.1
- detect-newline: 4.0.1
- get-stdin: 9.0.0
- git-hooks-list: 3.1.0
- globby: 13.2.2
- is-plain-obj: 4.1.0
- sort-object-keys: 1.1.3
+ '@types/unist': 2.0.9
+ unist-util-is: 5.2.1
dev: true
- /source-map@0.6.1:
- resolution: {integrity: sha1-dHIq8y6WFOnCh6jQu95IteLxomM=}
- engines: {node: '>=0.10.0'}
- dev: true
+ /unist-util-visit-parents@6.0.1:
+ resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
+ dependencies:
+ '@types/unist': 3.0.1
+ unist-util-is: 6.0.0
+ dev: false
- /spdx-correct@3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
+ /unist-util-visit@4.1.2:
+ resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.16
+ '@types/unist': 2.0.9
+ unist-util-is: 5.2.1
+ unist-util-visit-parents: 5.1.3
dev: true
- /spdx-exceptions@2.3.0:
- resolution: {integrity: sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=}
+ /unist-util-visit@5.0.0:
+ resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
+ dependencies:
+ '@types/unist': 3.0.1
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+ dev: false
+
+ /universal-canvas-context@1.0.0:
+ resolution: {integrity: sha512-ZjdoQyp7sDNB6o1xj93ulD2u1KYjEmMqZMGvIABREjREFlix70O4BTWFrADpMRI3uW6A2N7L45y4xksKqaIvwQ==}
+ engines: {npm: '>=3.0.0'}
dev: true
- /spdx-expression-parse@3.0.1:
- resolution: {integrity: sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=}
+ /universal-choose-image@1.3.0(rax@1.2.3):
+ resolution: {integrity: sha512-j7L7Qk4X4rvBb8nsG5cqYPMahj1+/jkGsPUN1+1hvbX+H1aOs4gYcbnYCnQvmIZv1r4ghggvoS8Wgh95RcgfAA==}
+ engines: {npm: '>=3.0.0'}
+ peerDependencies:
+ rax: ^1.1.0
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.16
+ rax: 1.2.3
+ universal-env: 3.3.3
dev: true
- /spdx-license-ids@3.0.16:
- resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
+ /universal-device@1.0.3:
+ resolution: {integrity: sha512-27VnA0IXJ70JRLwxtmCYRxXJSe+r6KwgiPu0dx9e+WD3Y0Gn5nKbK083KG5FK1Nbtxjyl0kRgvfG6MpK3YKXrg==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ universal-env: 3.3.3
dev: true
- /specificity@0.4.1:
- resolution: {integrity: sha1-qrXmRQEtsIuhguFRFlc40AiHsBk=}
- hasBin: true
+ /universal-device@2.3.1:
+ resolution: {integrity: sha512-Z7aMODPW3CdhU4IicZ41l1PUZJLxENtEBZsks6fOKD4pyRkip1Z5EFdaDv/NdC35ccs7uR9SbkVF6QL3qwPWsw==}
+ engines: {npm: '>=3.0.0'}
+ dependencies:
+ universal-env: 3.3.3
dev: true
- /split2@3.2.2:
- resolution: {integrity: sha1-vyzyo32DgxLCSciSBv16F90SNl8=}
+ /universal-element@0.0.6:
+ resolution: {integrity: sha512-J1olYldUlj35w4pBt1LljiRuRjohATGHCIiiOHOepXtELB8zESOdYDlrFtXfxGtb6TUZm8oAaOPbTwhb+6A4BA==}
+ engines: {npm: '>=3.0.0'}
dependencies:
- readable-stream: 3.6.2
+ universal-env: 3.3.3
dev: true
- /string-argv@0.3.2:
- resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
- engines: {node: '>=0.6.19'}
+ /universal-env@0.6.6:
+ resolution: {integrity: sha512-CqBdTKFStTEV7wETHjWm7CDIbSdUxIlN3zQ5xraTG6Wb1XEmBgyW1pu8lJW0buRXjACgjrD+pr97akumbQ0Y6A==}
dev: true
- /string-natural-compare@3.0.1:
- resolution: {integrity: sha1-ekLVhHRFSWN1no6LeuY9ccHn/fQ=}
+ /universal-env@2.0.0:
+ resolution: {integrity: sha512-jfPJvPXFdhJHsDhuCHj3Njc3nxF+dmj6LeqKE9R41EdKKOJ1d5GGpFu3DrT+Ff+pxS9jsnbtj7BZYFAcLlxdPg==}
+ engines: {npm: '>=3.0.0'}
dev: true
- /string-width@4.2.3:
- resolution: {integrity: sha1-JpxxF9J7Ba0uU2gwqOyJXvnG0BA=}
- engines: {node: '>=8'}
+ /universal-env@3.3.3:
+ resolution: {integrity: sha512-4ZyITvWhtcurCEA66Cb7jcd4zpEiAAo91wSwbEscbiu033pIsC2yjgT8LYyasFgsst6jZHD1gtVoSyYcL8oH1Q==}
+ engines: {npm: '>=3.0.0'}
dependencies:
- emoji-regex: 8.0.0
- is-fullwidth-code-point: 3.0.0
- strip-ansi: 6.0.1
+ '@uni/env': 1.1.1
dev: true
- /string-width@5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
+ /universal-panresponder@0.6.5:
+ resolution: {integrity: sha512-7N9xSPgILxBr12krtyTl2KjN7wWxirtdH2/NsQj234KHrHt8yQ8hIgi6sjW4eyP3/5QtAn2JWwPSYdFmgHvg4w==}
dependencies:
- eastasianwidth: 0.2.0
- emoji-regex: 9.2.2
- strip-ansi: 7.1.0
+ universal-env: 0.6.6
dev: true
- /string.prototype.matchall@4.0.10:
- resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==}
+ /universal-transition@1.1.1:
+ resolution: {integrity: sha512-TeYwWDhoYSYeGwX2L80gAQx7wByGvQ1WsPxqp+c6yYzqrc6BUuqpohtWY5Gh4ZPo0nToSNeadhly9sjeGLlV6Q==}
+ engines: {npm: '>=3.0.0'}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- has-symbols: 1.0.3
- internal-slot: 1.0.6
- regexp.prototype.flags: 1.5.1
- set-function-name: 2.0.1
- side-channel: 1.0.4
+ style-unit: 2.0.1
+ universal-device: 1.0.3
+ universal-env: 3.3.3
+ universal-unit-tool: 1.0.0
dev: true
- /string.prototype.trim@1.2.8:
- resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
- engines: {node: '>= 0.4'}
+ /universal-unit-tool@1.0.0:
+ resolution: {integrity: sha512-YTKN4pUqgAQqP5duZQSTxv2zswkUdZ4z3KtRgpXOxlo3huJm7xbiwhxeX8RM675Tjfo4entn8yQHclFJy9iaQQ==}
dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
+ universal-device: 2.3.1
dev: true
- /string.prototype.trimend@1.0.7:
- resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
+ /universalify@0.1.2:
+ resolution: {integrity: sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=}
+ engines: {node: '>= 4.0.0'}
dev: true
- /string.prototype.trimstart@1.0.7:
- resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
- dependencies:
- call-bind: 1.0.5
- define-properties: 1.2.1
- es-abstract: 1.22.3
+ /universalify@0.2.0:
+ resolution: {integrity: sha1-ZFF2BWb6hXU0dFqx3elS0bF2G+A=}
+ engines: {node: '>= 4.0.0'}
dev: true
- /string_decoder@1.3.0:
- resolution: {integrity: sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=}
+ /universalify@2.0.0:
+ resolution: {integrity: sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=}
+ engines: {node: '>= 10.0.0'}
+ dev: true
+
+ /unpipe@1.0.0:
+ resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=}
+ engines: {node: '>= 0.8'}
+ dev: true
+
+ /unquote@1.1.1:
+ resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=}
+ dev: true
+
+ /unset-value@1.0.0:
+ resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=}
+ engines: {node: '>=0.10.0'}
dependencies:
- safe-buffer: 5.2.1
+ has-value: 0.3.1
+ isobject: 3.0.1
dev: true
- /strip-ansi@6.0.1:
- resolution: {integrity: sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=}
+ /untildify@4.0.0:
+ resolution: {integrity: sha1-K8lHuVNlJIfkYAlJ+wkeOujNkZs=}
engines: {node: '>=8'}
- dependencies:
- ansi-regex: 5.0.1
dev: true
- /strip-ansi@7.1.0:
- resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
- engines: {node: '>=12'}
+ /upath@1.2.0:
+ resolution: {integrity: sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ=}
+ engines: {node: '>=4'}
+ dev: true
+
+ /update-browserslist-db@1.0.13(browserslist@4.22.1):
+ resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
dependencies:
- ansi-regex: 6.0.1
+ browserslist: 4.22.1
+ escalade: 3.1.1
+ picocolors: 1.0.0
dev: true
- /strip-bom@3.0.0:
- resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=}
- engines: {node: '>=4'}
+ /upper-case-first@2.0.2:
+ resolution: {integrity: sha1-mSwyc/iCq9GdHgKJTMFHEX+EQyQ=}
+ dependencies:
+ tslib: 2.6.2
dev: true
- /strip-final-newline@2.0.0:
- resolution: {integrity: sha1-ibhS+y/L6Tb29LMYevsKEsGrWK0=}
- engines: {node: '>=6'}
+ /upper-case@1.1.3:
+ resolution: {integrity: sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=}
dev: true
- /strip-final-newline@3.0.0:
- resolution: {integrity: sha1-UolMMT+/8xiDUoCu1g/3Hr8SuP0=}
- engines: {node: '>=12'}
+ /upper-case@2.0.2:
+ resolution: {integrity: sha1-2JgQgj+qsd8VSbfZenb4Ziuub3o=}
+ dependencies:
+ tslib: 2.6.2
dev: true
- /strip-indent@3.0.0:
- resolution: {integrity: sha1-wy4c7pQLazQyx3G8LFS8znPNMAE=}
- engines: {node: '>=8'}
+ /uri-js@4.4.1:
+ resolution: {integrity: sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=}
dependencies:
- min-indent: 1.0.1
+ punycode: 2.3.0
dev: true
- /strip-json-comments@3.1.1:
- resolution: {integrity: sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=}
- engines: {node: '>=8'}
+ /urix@0.1.0:
+ resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=}
+ deprecated: Please see https://github.com/lydell/urix#deprecated
dev: true
- /style-search@0.1.0:
- resolution: {integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=}
+ /url-join@4.0.1:
+ resolution: {integrity: sha1-tkLiGiZGgI/6F4xMX9o5hE4Szec=}
dev: true
- /stylelint-config-css-modules@2.3.0(stylelint@13.13.1):
- resolution: {integrity: sha1-v3mqrgnKn9rDf91RjRpAp3mqB2c=}
+ /url-loader@2.3.0(file-loader@5.1.0)(webpack@4.47.0):
+ resolution: {integrity: sha1-4OLvZY8APvuMpBsPP/v3a6uIZYs=}
+ engines: {node: '>= 8.9.0'}
peerDependencies:
- stylelint: 11.x - 14.x
+ file-loader: '*'
+ webpack: ^4.0.0
+ peerDependenciesMeta:
+ file-loader:
+ optional: true
dependencies:
- stylelint: 13.13.1
+ file-loader: 5.1.0(webpack@4.47.0)
+ loader-utils: 1.4.2
+ mime: 2.6.0
+ schema-utils: 2.7.1
+ webpack: 4.47.0
dev: true
- /stylelint-config-prettier@8.0.2(stylelint@13.13.1):
- resolution: {integrity: sha1-2p3jPaTFaJPL5+Jt8jmnN0BF4U4=}
- engines: {node: '>= 10', npm: '>= 5'}
- hasBin: true
- peerDependencies:
- stylelint: '>=11.0.0'
+ /url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
dependencies:
- stylelint: 13.13.1
+ querystringify: 2.2.0
+ requires-port: 1.0.0
dev: true
- /stylelint-config-recommended@3.0.0(stylelint@13.13.1):
- resolution: {integrity: sha1-4OVHQ0AWxVOf4mUK/VgEmi/R1lc=}
- peerDependencies:
- stylelint: '>=10.1.0'
+ /url@0.11.3:
+ resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
dependencies:
- stylelint: 13.13.1
+ punycode: 1.4.1
+ qs: 6.11.2
dev: true
- /stylelint-config-standard@20.0.0(stylelint@13.13.1):
- resolution: {integrity: sha1-BhNQkMngZL7+49WUKJ9Q4pW14g0=}
- peerDependencies:
- stylelint: '>=10.1.0'
+ /use@3.1.1:
+ resolution: {integrity: sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8=}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /user-home@2.0.0:
+ resolution: {integrity: sha1-nHC/2Babwdy/SGBODwS4tJzenp8=}
+ engines: {node: '>=0.10.0'}
dependencies:
- stylelint: 13.13.1
- stylelint-config-recommended: 3.0.0(stylelint@13.13.1)
+ os-homedir: 1.0.2
dev: true
- /stylelint-config-tenx@2.1.0(stylelint@13.13.1):
- resolution: {integrity: sha512-Pkkrta/aPH9F1h+b+IB0tZJxbS1B0ADFqpVW95oZuAcClZThtGx4vTbLFSRZbWWwIU8CRYI5QvBfX/5vmSfisQ==}
- peerDependencies:
- stylelint: '>=11.0.0'
+ /util-deprecate@1.0.2:
+ resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
+ dev: true
+
+ /util.promisify@1.0.0:
+ resolution: {integrity: sha1-RA9xZaRZyaFtwUXrjnLzVocJcDA=}
dependencies:
- stylelint: 13.13.1
- stylelint-config-css-modules: 2.3.0(stylelint@13.13.1)
- stylelint-config-prettier: 8.0.2(stylelint@13.13.1)
- stylelint-config-standard: 20.0.0(stylelint@13.13.1)
+ define-properties: 1.2.1
+ object.getownpropertydescriptors: 2.1.7
dev: true
- /stylelint@13.13.1:
- resolution: {integrity: sha1-/KnJ9d55kKsmoA8We4l48IOhjzw=}
- engines: {node: '>=10.13.0'}
- hasBin: true
+ /util.promisify@1.0.1:
+ resolution: {integrity: sha1-a693dLgO6w91INi4HQeYKlmruu4=}
dependencies:
- '@stylelint/postcss-css-in-js': 0.37.3(postcss-syntax@0.36.2)(postcss@7.0.39)
- '@stylelint/postcss-markdown': 0.36.2(postcss-syntax@0.36.2)(postcss@7.0.39)
- autoprefixer: 9.8.8
- balanced-match: 2.0.0
- chalk: 4.1.2
- cosmiconfig: 7.1.0
- debug: 4.3.4
- execall: 2.0.0
- fast-glob: 3.3.1
- fastest-levenshtein: 1.0.16
- file-entry-cache: 6.0.1
- get-stdin: 8.0.0
- global-modules: 2.0.0
- globby: 11.1.0
- globjoin: 0.1.4
- html-tags: 3.3.1
- ignore: 5.2.4
- import-lazy: 4.0.0
- imurmurhash: 0.1.4
- known-css-properties: 0.21.0
- lodash: 4.17.21
- log-symbols: 4.1.0
- mathml-tag-names: 2.1.3
- meow: 9.0.0
- micromatch: 4.0.5
- normalize-selector: 0.2.0
- postcss: 7.0.39
- postcss-html: 0.36.0(postcss-syntax@0.36.2)(postcss@7.0.39)
- postcss-less: 3.1.4
- postcss-media-query-parser: 0.2.3
- postcss-resolve-nested-selector: 0.1.1
- postcss-safe-parser: 4.0.2
- postcss-sass: 0.4.4
- postcss-scss: 2.1.1
- postcss-selector-parser: 6.0.13
- postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39)
- postcss-value-parser: 4.2.0
- resolve-from: 5.0.0
- slash: 3.0.0
- specificity: 0.4.1
- string-width: 4.2.3
- strip-ansi: 6.0.1
- style-search: 0.1.0
- sugarss: 2.0.0
- svg-tags: 1.0.0
- table: 6.8.1
- v8-compile-cache: 2.4.0
- write-file-atomic: 3.0.3
- transitivePeerDependencies:
- - postcss-jsx
- - postcss-markdown
- - supports-color
+ define-properties: 1.2.1
+ es-abstract: 1.22.3
+ has-symbols: 1.0.3
+ object.getownpropertydescriptors: 2.1.7
dev: true
- /sugarss@2.0.0:
- resolution: {integrity: sha1-3dduASSyl9QL88yjHIsi7LQ7xh0=}
+ /util.promisify@1.1.2:
+ resolution: {integrity: sha512-PBdZ03m1kBnQ5cjjO0ZvJMJS+QsbyIcFwi4hY4U76OQsCO9JrOYjbCFgIF76ccFg9xnJo7ZHPkqyj1GqmdS7MA==}
dependencies:
- postcss: 7.0.39
+ call-bind: 1.0.5
+ define-properties: 1.2.1
+ for-each: 0.3.3
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ object.getownpropertydescriptors: 2.1.7
+ safe-array-concat: 1.0.1
dev: true
- /supports-color@5.5.0:
- resolution: {integrity: sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=}
- engines: {node: '>=4'}
+ /util@0.10.4:
+ resolution: {integrity: sha1-OqASW/5mikZy3liFfTrOJ+y3aQE=}
dependencies:
- has-flag: 3.0.0
+ inherits: 2.0.3
dev: true
- /supports-color@7.2.0:
- resolution: {integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=}
- engines: {node: '>=8'}
+ /util@0.11.1:
+ resolution: {integrity: sha1-MjZzNyDsZLsn9uJvQhqqLhtYjWE=}
dependencies:
- has-flag: 4.0.0
+ inherits: 2.0.3
dev: true
- /supports-preserve-symlinks-flag@1.0.0:
- resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
- engines: {node: '>= 0.4'}
+ /utila@0.4.0:
+ resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=}
dev: true
- /svg-tags@1.0.0:
- resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=}
+ /utils-merge@1.0.1:
+ resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
+ engines: {node: '>= 0.4.0'}
dev: true
- /synckit@0.8.5:
- resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /utils@0.3.1:
+ resolution: {integrity: sha512-MQui5t13wIAkllcVSR/19WTvLxfJRKHwlLmBin3iqJ1F1kFMZtValrOwwn0Ez43bOQwCNhzJAjOoX74UkVI+Xg==}
+ engines: {node: '>=0.10.0'}
dependencies:
- '@pkgr/utils': 2.4.2
- tslib: 2.6.2
+ any: 1.0.0
+ arr-diff: 1.1.0
+ arr-flatten: 1.1.0
+ arr-map: 2.0.2
+ arr-union: 3.1.0
+ array-each: 0.1.1
+ array-slice: 0.2.3
+ array-unique: 0.2.1
+ center-align: 0.1.3
+ export-dirs: 0.2.4
+ export-files: 2.1.1
+ for-in: 0.1.8
+ for-own: 0.1.5
+ has-values: 0.1.4
+ is-number: 2.1.0
+ is-plain-object: 2.0.4
+ kind-of: 2.0.1
+ make-iterator: 0.2.1
+ object.defaults: 0.3.0
+ object.filter: 0.3.0
+ object.omit: 2.0.1
+ object.pick: 1.3.0
+ object.reduce: 0.1.7
+ right-align: 0.1.3
+ striptags: 2.2.1
+ word-wrap: 1.2.5
+ dev: true
+
+ /uuid@3.4.0:
+ resolution: {integrity: sha1-sj5DWK+oogL+ehAK8fX4g/AgB+4=}
+ deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
+ hasBin: true
dev: true
- /table@6.8.1:
- resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
- engines: {node: '>=10.0.0'}
+ /uuid@8.3.2:
+ resolution: {integrity: sha1-gNW1ztJxu5r2xEXyGhoExgbO++I=}
+ hasBin: true
+ dev: true
+
+ /uvu@0.5.6:
+ resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
+ engines: {node: '>=8'}
+ hasBin: true
dependencies:
- ajv: 8.12.0
- lodash.truncate: 4.4.2
- slice-ansi: 4.0.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
+ dequal: 2.0.3
+ diff: 5.1.0
+ kleur: 4.1.5
+ sade: 1.8.1
dev: true
- /text-extensions@1.9.0:
- resolution: {integrity: sha1-GFPkX+45yUXOb2w2stZZtaq8KiY=}
- engines: {node: '>=0.10'}
+ /v8-compile-cache-lib@3.0.1:
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
dev: true
- /text-table@0.2.0:
- resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
+ /v8-compile-cache@2.4.0:
+ resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
dev: true
- /through2@4.0.2:
- resolution: {integrity: sha1-p846wqeosLlmyA58SfBITDsjl2Q=}
+ /v8-to-istanbul@7.1.2:
+ resolution: {integrity: sha1-MImNGn+gyE0iWiwUNPuVjykIg8E=}
+ engines: {node: '>=10.10.0'}
dependencies:
- readable-stream: 3.6.2
+ '@types/istanbul-lib-coverage': 2.0.5
+ convert-source-map: 1.9.0
+ source-map: 0.7.4
dev: true
- /through@2.3.8:
- resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=}
+ /v8-to-istanbul@9.1.3:
+ resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==}
+ engines: {node: '>=10.12.0'}
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.20
+ '@types/istanbul-lib-coverage': 2.0.5
+ convert-source-map: 2.0.0
dev: true
- /titleize@3.0.0:
- resolution: {integrity: sha1-ccEut/3SVYqopEsL6DuKdmlKzVM=}
- engines: {node: '>=12'}
+ /validate-npm-package-license@3.0.4:
+ resolution: {integrity: sha1-/JH2uce6FchX9MssXe/uw51PQQo=}
+ dependencies:
+ spdx-correct: 3.2.0
+ spdx-expression-parse: 3.0.1
dev: true
- /to-fast-properties@2.0.0:
- resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=}
- engines: {node: '>=4'}
+ /value-equal@1.0.1:
+ resolution: {integrity: sha1-Hgt5THNMXAyt4XnEN9NW2TGjTWw=}
dev: true
- /to-regex-range@5.0.1:
- resolution: {integrity: sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=}
- engines: {node: '>=8.0'}
- dependencies:
- is-number: 7.0.0
+ /vary@1.1.2:
+ resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=}
+ engines: {node: '>= 0.8'}
dev: true
- /trim-newlines@3.0.1:
- resolution: {integrity: sha1-Jgpdli2LdSQlsy86fbDcrNF2wUQ=}
- engines: {node: '>=8'}
+ /vendors@1.0.4:
+ resolution: {integrity: sha1-4rgApT56Kbk1BsPPQRANFsTErY4=}
dev: true
- /trough@1.0.5:
- resolution: {integrity: sha1-uLY5zvrX0LsqvTfUM/+Ck++l9AY=}
+ /vfile-message@2.0.4:
+ resolution: {integrity: sha1-W0O4gXHUCerlhHfRPyPdQdUsNxo=}
+ dependencies:
+ '@types/unist': 2.0.9
+ unist-util-stringify-position: 2.0.3
dev: true
- /ts-node@10.9.1(@types/node@20.5.1)(typescript@4.9.5):
- resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
- hasBin: true
- peerDependencies:
- '@swc/core': '>=1.2.50'
- '@swc/wasm': '>=1.2.50'
- '@types/node': '*'
- typescript: '>=2.7'
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- '@swc/wasm':
- optional: true
+ /vfile-message@3.1.4:
+ resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.9
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 20.5.1
- acorn: 8.10.0
- acorn-walk: 8.2.0
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 4.9.5
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
+ '@types/unist': 2.0.9
+ unist-util-stringify-position: 3.0.3
dev: true
- /tsconfig-paths@3.14.2:
- resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==}
+ /vfile-message@4.0.2:
+ resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
dependencies:
- '@types/json5': 0.0.29
- json5: 1.0.2
- minimist: 1.2.8
- strip-bom: 3.0.0
- dev: true
+ '@types/unist': 3.0.1
+ unist-util-stringify-position: 4.0.0
+ dev: false
- /tslib@1.14.1:
- resolution: {integrity: sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=}
+ /vfile@4.2.1:
+ resolution: {integrity: sha1-A/Hc4o/GJcYlvGUUNQ+9sA+p5iQ=}
+ dependencies:
+ '@types/unist': 2.0.9
+ is-buffer: 2.0.5
+ unist-util-stringify-position: 2.0.3
+ vfile-message: 2.0.4
dev: true
- /tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ /vfile@5.3.7:
+ resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
+ dependencies:
+ '@types/unist': 2.0.9
+ is-buffer: 2.0.5
+ unist-util-stringify-position: 3.0.3
+ vfile-message: 3.1.4
dev: true
- /tsutils@3.21.0(typescript@4.9.5):
- resolution: {integrity: sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=}
- engines: {node: '>= 6'}
+ /vfile@6.0.1:
+ resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
+ dependencies:
+ '@types/unist': 3.0.1
+ unist-util-stringify-position: 4.0.0
+ vfile-message: 4.0.2
+ dev: false
+
+ /vite-plugin-style-import@1.1.1(vite@4.5.0):
+ resolution: {integrity: sha512-29NnvfAwCqS5zSg+bComXSmCgx3MmKJ/dPxWC/wa/yjG1gm7i/BDKrshiaGRXpIbMSyQco5KGRKhrUIW3Tr+nw==}
peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ vite: '>=2.0.0'
dependencies:
- tslib: 1.14.1
- typescript: 4.9.5
+ '@rollup/pluginutils': 4.2.1
+ change-case: 4.1.2
+ debug: 4.3.4
+ es-module-lexer: 0.7.1
+ magic-string: 0.25.9
+ vite: 4.5.0(less@4.2.0)(sass@1.69.5)
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /type-check@0.4.0:
- resolution: {integrity: sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=}
- engines: {node: '>= 0.8.0'}
+ /vite@4.5.0(less@4.2.0)(sass@1.69.5):
+ resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>= 14'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
dependencies:
- prelude-ls: 1.2.1
+ esbuild: 0.18.20
+ less: 4.2.0
+ postcss: 8.4.31
+ rollup: 3.29.4
+ sass: 1.69.5
+ optionalDependencies:
+ fsevents: 2.3.3
dev: true
- /type-fest@0.18.1:
- resolution: {integrity: sha1-20vBUaSiz07r+a3V23VQjbbMhB8=}
- engines: {node: '>=10'}
+ /vm-browserify@1.1.2:
+ resolution: {integrity: sha1-eGQcSIuObKkadfUR56OzKobl3aA=}
dev: true
- /type-fest@0.20.2:
- resolution: {integrity: sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=}
- engines: {node: '>=10'}
+ /vm2@3.9.19:
+ resolution: {integrity: sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+ dependencies:
+ acorn: 8.10.0
+ acorn-walk: 8.2.0
dev: true
- /type-fest@0.6.0:
- resolution: {integrity: sha1-jSojcNPfiG61yQraHFv2GIrPg4s=}
- engines: {node: '>=8'}
+ /vue-eslint-parser@7.11.0(eslint@7.32.0):
+ resolution: {integrity: sha1-IUtd6pYQB/z/su5luJEjB2KNDa8=}
+ engines: {node: '>=8.10'}
+ peerDependencies:
+ eslint: '>=5.0.0'
+ dependencies:
+ debug: 4.3.4
+ eslint: 7.32.0
+ eslint-scope: 5.1.1
+ eslint-visitor-keys: 1.3.0
+ espree: 6.2.1
+ esquery: 1.5.0
+ lodash: 4.17.21
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /type-fest@0.8.1:
- resolution: {integrity: sha1-CeJJ696FHTseSNJ8EFREZn8XuD0=}
- engines: {node: '>=8'}
+ /w3c-hr-time@1.0.2:
+ resolution: {integrity: sha1-ConN9cwVgi35w2BUNnaWPgzDCM0=}
+ dependencies:
+ browser-process-hrtime: 1.0.0
dev: true
- /type-fest@1.4.0:
- resolution: {integrity: sha1-6fuBP+O/F0TsNZ1V0a/++nbxS+E=}
+ /w3c-xmlserializer@2.0.0:
+ resolution: {integrity: sha1-PnEEoFt1FGzGD1ZDgLf2g6zxAgo=}
engines: {node: '>=10'}
- dev: true
-
- /typed-array-buffer@1.0.0:
- resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
- engines: {node: '>= 0.4'}
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
+ xml-name-validator: 3.0.0
dev: true
- /typed-array-byte-length@1.0.0:
- resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
- engines: {node: '>= 0.4'}
+ /walker@1.0.8:
+ resolution: {integrity: sha1-vUmNtHev5XPcBBhfAR06uKjXZT8=}
dependencies:
- call-bind: 1.0.5
- for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ makeerror: 1.0.12
dev: true
- /typed-array-byte-offset@1.0.0:
- resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
- engines: {node: '>= 0.4'}
+ /watchpack-chokidar2@2.0.1:
+ resolution: {integrity: sha1-OFAAcu5uzmbzdpk2lQ6hdxvhyVc=}
+ requiresBuild: true
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ chokidar: 2.1.8
+ transitivePeerDependencies:
+ - supports-color
dev: true
+ optional: true
- /typed-array-length@1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ /watchpack@1.7.5:
+ resolution: {integrity: sha1-EmfmxV4Lm1vkTCAjrtVDeiwmxFM=}
dependencies:
- call-bind: 1.0.5
- for-each: 0.3.3
- is-typed-array: 1.1.12
+ graceful-fs: 4.2.11
+ neo-async: 2.6.2
+ optionalDependencies:
+ chokidar: 3.5.3
+ watchpack-chokidar2: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /typedarray-to-buffer@3.1.5:
- resolution: {integrity: sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=}
+ /wbuf@1.7.3:
+ resolution: {integrity: sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=}
dependencies:
- is-typedarray: 1.0.0
- dev: true
-
- /typescript@4.9.5:
- resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
- engines: {node: '>=4.2.0'}
- hasBin: true
+ minimalistic-assert: 1.0.1
dev: true
- /typescript@5.2.2:
- resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
- engines: {node: '>=14.17'}
- hasBin: true
- dev: true
-
- /unbox-primitive@1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ /wcwidth@1.0.1:
+ resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=}
dependencies:
- call-bind: 1.0.5
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
+ defaults: 1.0.4
dev: true
- /unicode-canonical-property-names-ecmascript@2.0.0:
- resolution: {integrity: sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=}
- engines: {node: '>=4'}
+ /webidl-conversions@5.0.0:
+ resolution: {integrity: sha1-rlnIoAsSFUOirMZcBDT1ew/BGv8=}
+ engines: {node: '>=8'}
dev: true
- /unicode-match-property-ecmascript@2.0.0:
- resolution: {integrity: sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=}
- engines: {node: '>=4'}
+ /webidl-conversions@6.1.0:
+ resolution: {integrity: sha1-kRG01+qArNQPUnDWZmIa+ni2lRQ=}
+ engines: {node: '>=10.4'}
+ dev: true
+
+ /webpack-chain@6.5.1:
+ resolution: {integrity: sha1-TycoTLu2N+PI+970Pu9YjU2GEgY=}
+ engines: {node: '>=8'}
dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.0
- unicode-property-aliases-ecmascript: 2.1.0
+ deepmerge: 1.5.2
+ javascript-stringify: 2.1.0
dev: true
- /unicode-match-property-value-ecmascript@2.1.0:
- resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
- engines: {node: '>=4'}
+ /webpack-dev-middleware@3.7.3(webpack@4.47.0):
+ resolution: {integrity: sha1-Bjk3KxQyYuK4SrldO5GnWXBhwsU=}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ memory-fs: 0.4.1
+ mime: 2.6.0
+ mkdirp: 0.5.6
+ range-parser: 1.2.1
+ webpack: 4.47.0
+ webpack-log: 2.0.0
dev: true
- /unicode-property-aliases-ecmascript@2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
- engines: {node: '>=4'}
+ /webpack-dev-server@3.11.3(webpack@4.47.0):
+ resolution: {integrity: sha1-jIa50oEr8TXTybzm8HtxjjD3w9M=}
+ engines: {node: '>= 6.11.5'}
+ hasBin: true
+ peerDependencies:
+ webpack: ^4.0.0 || ^5.0.0
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ dependencies:
+ ansi-html-community: 0.0.8
+ bonjour: 3.5.0
+ chokidar: 2.1.8(supports-color@6.1.0)
+ compression: 1.7.4(supports-color@6.1.0)
+ connect-history-api-fallback: 1.6.0
+ debug: 4.3.4(supports-color@6.1.0)
+ del: 4.1.1
+ express: 4.18.2(supports-color@6.1.0)
+ html-entities: 1.4.0
+ http-proxy-middleware: 0.19.1(debug@4.3.4)(supports-color@6.1.0)
+ import-local: 2.0.0
+ internal-ip: 4.3.0
+ ip: 1.1.8
+ is-absolute-url: 3.0.3
+ killable: 1.0.1
+ loglevel: 1.8.1
+ opn: 5.5.0
+ p-retry: 3.0.1
+ portfinder: 1.0.32(supports-color@6.1.0)
+ schema-utils: 1.0.0
+ selfsigned: 1.10.14
+ semver: 6.3.1
+ serve-index: 1.9.1(supports-color@6.1.0)
+ sockjs: 0.3.24
+ sockjs-client: 1.6.1(supports-color@6.1.0)
+ spdy: 4.0.2(supports-color@6.1.0)
+ strip-ansi: 3.0.1
+ supports-color: 6.1.0
+ url: 0.11.3
+ webpack: 4.47.0
+ webpack-dev-middleware: 3.7.3(webpack@4.47.0)
+ webpack-log: 2.0.0
+ ws: 6.2.2
+ yargs: 13.3.2
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
dev: true
- /unified@9.2.2:
- resolution: {integrity: sha1-Z2SaGr/Dq4XSlpUCkCd16wMUaXU=}
+ /webpack-filter-warnings-plugin@1.2.1(webpack@4.47.0):
+ resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==}
+ engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'}
+ peerDependencies:
+ webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
dependencies:
- '@types/unist': 2.0.9
- bail: 1.0.5
- extend: 3.0.2
- is-buffer: 2.0.5
- is-plain-obj: 2.1.0
- trough: 1.0.5
- vfile: 4.2.1
+ webpack: 4.47.0
dev: true
- /unist-util-find-all-after@3.0.2:
- resolution: {integrity: sha1-/f7NFMW3rqXp7zjV4NX3dO61YfY=}
+ /webpack-log@2.0.0:
+ resolution: {integrity: sha1-W3ko4GN1k/EZ0y9iJ8HgrDHhtH8=}
+ engines: {node: '>= 6'}
dependencies:
- unist-util-is: 4.1.0
+ ansi-colors: 3.2.4
+ uuid: 3.4.0
dev: true
- /unist-util-is@4.1.0:
- resolution: {integrity: sha1-l25fRip6Xec9lLcGusG5BnG1d5c=}
+ /webpack-node-externals@2.5.2:
+ resolution: {integrity: sha1-F44BeiT+xgFbyeZyx3lYpq+shh0=}
dev: true
- /unist-util-stringify-position@2.0.3:
- resolution: {integrity: sha1-zOO/oc34W6c3XR1bF73Eytqb2do=}
+ /webpack-plugin-import@0.2.9:
+ resolution: {integrity: sha512-DNnhws1goLfIIPM2jG1nHKzT6Zv634ZSgrra2pEBqLTs77i37ttpM5uhXVKFYq3Ru74RiMFkeYZ+uzGie+cRaw==}
dependencies:
- '@types/unist': 2.0.9
+ loader-utils: 2.0.4
dev: true
- /universalify@2.0.0:
- resolution: {integrity: sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=}
- engines: {node: '>= 10.0.0'}
+ /webpack-simple-progress-plugin@0.0.4(webpack@4.47.0):
+ resolution: {integrity: sha512-uUaaa5ioUJssHVNNiBnmxsVKJUlpPB6wqBfsELW2Xb+ka36UTXX49VPm/Ey1KZxEHQTy27qFE/CY/9c3zeOFng==}
+ peerDependencies:
+ webpack: ^1.3.0 || ^2.1.0-beta || ^3.0.0 || ^4.0.0
+ dependencies:
+ chalk: 1.1.3
+ object-assign: 4.1.1
+ progress: 1.1.8
+ webpack: 4.47.0
dev: true
- /untildify@4.0.0:
- resolution: {integrity: sha1-K8lHuVNlJIfkYAlJ+wkeOujNkZs=}
- engines: {node: '>=8'}
+ /webpack-sources@1.4.3:
+ resolution: {integrity: sha1-7t2OwLko+/HL/plOItLYkPMwqTM=}
+ dependencies:
+ source-list-map: 2.0.1
+ source-map: 0.6.1
dev: true
- /update-browserslist-db@1.0.13(browserslist@4.22.1):
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ /webpack-sources@2.3.1:
+ resolution: {integrity: sha1-Vw3grxY5Sf4nIjPCzv4bVvdFEf0=}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ source-list-map: 2.0.1
+ source-map: 0.6.1
+ dev: true
+
+ /webpack@4.47.0:
+ resolution: {integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==}
+ engines: {node: '>=6.11.5'}
hasBin: true
peerDependencies:
- browserslist: '>= 4.21.0'
+ webpack-cli: '*'
+ webpack-command: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ webpack-command:
+ optional: true
dependencies:
- browserslist: 4.22.1
- escalade: 3.1.1
- picocolors: 1.0.0
+ '@webassemblyjs/ast': 1.9.0
+ '@webassemblyjs/helper-module-context': 1.9.0
+ '@webassemblyjs/wasm-edit': 1.9.0
+ '@webassemblyjs/wasm-parser': 1.9.0
+ acorn: 6.4.2
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
+ chrome-trace-event: 1.0.3
+ enhanced-resolve: 4.5.0
+ eslint-scope: 4.0.3
+ json-parse-better-errors: 1.0.2
+ loader-runner: 2.4.0
+ loader-utils: 1.4.2
+ memory-fs: 0.4.1
+ micromatch: 3.1.10
+ mkdirp: 0.5.6
+ neo-async: 2.6.2
+ node-libs-browser: 2.2.1
+ schema-utils: 1.0.0
+ tapable: 1.1.3
+ terser-webpack-plugin: 1.4.5(webpack@4.47.0)
+ watchpack: 1.7.5
+ webpack-sources: 1.4.3
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /uri-js@4.4.1:
- resolution: {integrity: sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=}
+ /webpackbar@5.0.2(webpack@4.47.0):
+ resolution: {integrity: sha1-091GYhHHOFJ0HfyEK3VW3LwrBXA=}
+ engines: {node: '>=12'}
+ peerDependencies:
+ webpack: 3 || 4 || 5
dependencies:
- punycode: 2.3.0
+ chalk: 4.1.2
+ consola: 2.15.3
+ pretty-time: 1.1.0
+ std-env: 3.4.3
+ webpack: 4.47.0
dev: true
- /util-deprecate@1.0.2:
- resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
+ /websocket-driver@0.7.4:
+ resolution: {integrity: sha1-ia1Slbv2S0gKvLox5JU6ynBvV2A=}
+ engines: {node: '>=0.8.0'}
+ dependencies:
+ http-parser-js: 0.5.8
+ safe-buffer: 5.2.1
+ websocket-extensions: 0.1.4
dev: true
- /v8-compile-cache-lib@3.0.1:
- resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
+ /websocket-extensions@0.1.4:
+ resolution: {integrity: sha1-f4RzvIOd/YdgituV1+sHUhFXikI=}
+ engines: {node: '>=0.8.0'}
dev: true
- /v8-compile-cache@2.4.0:
- resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
+ /whatwg-encoding@1.0.5:
+ resolution: {integrity: sha1-WrrPd3wyFmpR0IXWtPPn0nET3bA=}
+ dependencies:
+ iconv-lite: 0.4.24
dev: true
- /validate-npm-package-license@3.0.4:
- resolution: {integrity: sha1-/JH2uce6FchX9MssXe/uw51PQQo=}
- dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
+ /whatwg-fetch@3.6.19:
+ resolution: {integrity: sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==}
dev: true
- /vfile-message@2.0.4:
- resolution: {integrity: sha1-W0O4gXHUCerlhHfRPyPdQdUsNxo=}
- dependencies:
- '@types/unist': 2.0.9
- unist-util-stringify-position: 2.0.3
+ /whatwg-mimetype@2.3.0:
+ resolution: {integrity: sha1-PUseAxLSB5h5+Cav8Y2+7KWWD78=}
dev: true
- /vfile@4.2.1:
- resolution: {integrity: sha1-A/Hc4o/GJcYlvGUUNQ+9sA+p5iQ=}
+ /whatwg-url@8.7.0:
+ resolution: {integrity: sha1-ZWp45RD/jzk3vAvL6fXArDWUG3c=}
+ engines: {node: '>=10'}
dependencies:
- '@types/unist': 2.0.9
- is-buffer: 2.0.5
- unist-util-stringify-position: 2.0.3
- vfile-message: 2.0.4
+ lodash: 4.17.21
+ tr46: 2.1.0
+ webidl-conversions: 6.1.0
dev: true
/which-boxed-primitive@1.0.2:
@@ -5982,6 +19973,10 @@ packages:
is-weakset: 2.0.2
dev: true
+ /which-module@2.0.1:
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
+ dev: true
+
/which-typed-array@1.1.13:
resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
engines: {node: '>= 0.4'}
@@ -6008,6 +20003,117 @@ packages:
isexe: 2.0.0
dev: true
+ /wide-align@1.1.3:
+ resolution: {integrity: sha1-rgdOa9wMFKQx6ATmJFScYzsABFc=}
+ dependencies:
+ string-width: 2.1.1
+ dev: true
+
+ /wide-align@1.1.5:
+ resolution: {integrity: sha1-3x1MIGhUNp7PPJpImPGyP72dFdM=}
+ dependencies:
+ string-width: 4.2.3
+ dev: true
+
+ /word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
+ /wordwrap@1.0.0:
+ resolution: {integrity: sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=}
+ dev: true
+
+ /workbox-background-sync@6.4.2:
+ resolution: {integrity: sha512-P7c8uG5X2k+DMICH9xeSA9eUlCOjHHYoB42Rq+RtUpuwBxUOflAXR1zdsMWj81LopE4gjKXlTw7BFd1BDAHo7g==}
+ dependencies:
+ idb: 6.1.5
+ workbox-core: 6.4.2
+ dev: true
+
+ /workbox-broadcast-update@6.4.2:
+ resolution: {integrity: sha512-qnBwQyE0+PWFFc/n4ISXINE49m44gbEreJUYt2ldGH3+CNrLmJ1egJOOyUqqu9R4Eb7QrXcmB34ClXG7S37LbA==}
+ dependencies:
+ workbox-core: 6.4.2
+ dev: true
+
+ /workbox-cacheable-response@6.4.2:
+ resolution: {integrity: sha512-9FE1W/cKffk1AJzImxgEN0ceWpyz1tqNjZVtA3/LAvYL3AC5SbIkhc7ZCO82WmO9IjTfu8Vut2X/C7ViMSF7TA==}
+ dependencies:
+ workbox-core: 6.4.2
+ dev: true
+
+ /workbox-core@6.4.2:
+ resolution: {integrity: sha512-1U6cdEYPcajRXiboSlpJx6U7TvhIKbxRRerfepAJu2hniKwJ3DHILjpU/zx3yvzSBCWcNJDoFalf7Vgd7ey/rw==}
+ dev: true
+
+ /workbox-expiration@6.4.2:
+ resolution: {integrity: sha512-0hbpBj0tDnW+DZOUmwZqntB/8xrXOgO34i7s00Si/VlFJvvpRKg1leXdHHU8ykoSBd6+F2KDcMP3swoCi5guLw==}
+ dependencies:
+ idb: 6.1.5
+ workbox-core: 6.4.2
+ dev: true
+
+ /workbox-precaching@6.4.2:
+ resolution: {integrity: sha512-CZ6uwFN/2wb4noHVlALL7UqPFbLfez/9S2GAzGAb0Sk876ul9ukRKPJJ6gtsxfE2HSTwqwuyNVa6xWyeyJ1XSA==}
+ dependencies:
+ workbox-core: 6.4.2
+ workbox-routing: 6.4.2
+ workbox-strategies: 6.4.2
+ dev: true
+
+ /workbox-range-requests@6.4.2:
+ resolution: {integrity: sha512-SowF3z69hr3Po/w7+xarWfzxJX/3Fo0uSG72Zg4g5FWWnHpq2zPvgbWerBZIa81zpJVUdYpMa3akJJsv+LaO1Q==}
+ dependencies:
+ workbox-core: 6.4.2
+ dev: true
+
+ /workbox-routing@6.4.2:
+ resolution: {integrity: sha512-0ss/n9PAcHjTy4Ad7l2puuod4WtsnRYu9BrmHcu6Dk4PgWeJo1t5VnGufPxNtcuyPGQ3OdnMdlmhMJ57sSrrSw==}
+ dependencies:
+ workbox-core: 6.4.2
+ dev: true
+
+ /workbox-strategies@6.4.2:
+ resolution: {integrity: sha512-YXh9E9dZGEO1EiPC3jPe2CbztO5WT8Ruj8wiYZM56XqEJp5YlGTtqRjghV+JovWOqkWdR+amJpV31KPWQUvn1Q==}
+ dependencies:
+ workbox-core: 6.4.2
+ dev: true
+
+ /worker-farm@1.7.0:
+ resolution: {integrity: sha1-JqlMU5G7ypJhUgAvabhKS/dy5ag=}
+ dependencies:
+ errno: 0.1.8
+ dev: true
+
+ /worker-rpc@0.1.1:
+ resolution: {integrity: sha1-y1Zb1tcHGo8WZgaGBR6WmtMvVNU=}
+ dependencies:
+ microevent.ts: 0.1.1
+ dev: true
+
+ /workerpool@6.1.0:
+ resolution: {integrity: sha1-qOA4tMlFaVloUt56jqQiju/es3s=}
+ dev: true
+
+ /wrap-ansi@5.1.0:
+ resolution: {integrity: sha1-H9H2cjXVttD+54EFYAG/tpTAOwk=}
+ engines: {node: '>=6'}
+ dependencies:
+ ansi-styles: 3.2.1
+ string-width: 3.1.0
+ strip-ansi: 5.2.0
+ dev: true
+
+ /wrap-ansi@6.2.0:
+ resolution: {integrity: sha1-6Tk7oHEC5skaOyIUePAlfNKFblM=}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+
/wrap-ansi@7.0.0:
resolution: {integrity: sha1-Z+FFz/UQpqaYS98RUpEdadLrnkM=}
engines: {node: '>=10'}
@@ -6030,6 +20136,14 @@ packages:
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
dev: true
+ /write-file-atomic@2.4.1:
+ resolution: {integrity: sha1-0LBUY8GIroBDlv1asqNwBir4dSk=}
+ dependencies:
+ graceful-fs: 4.2.11
+ imurmurhash: 0.1.4
+ signal-exit: 3.0.7
+ dev: true
+
/write-file-atomic@3.0.3:
resolution: {integrity: sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug=}
dependencies:
@@ -6039,11 +20153,77 @@ packages:
typedarray-to-buffer: 3.1.5
dev: true
+ /ws@6.2.2:
+ resolution: {integrity: sha1-3Vzb1XqZeZFgl2UtePHMX66gwy4=}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dependencies:
+ async-limiter: 1.0.1
+ dev: true
+
+ /ws@7.4.6:
+ resolution: {integrity: sha1-VlTKjs3u5HwzqaS/bSjivimAN3w=}
+ engines: {node: '>=8.3.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dev: true
+
+ /ws@7.5.9:
+ resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
+ engines: {node: '>=8.3.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dev: true
+
+ /xml-name-validator@3.0.0:
+ resolution: {integrity: sha1-auc+Bt5NjG5H+fsYH3jWSK1FfGo=}
+ dev: true
+
+ /xmlchars@2.2.0:
+ resolution: {integrity: sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs=}
+ dev: true
+
+ /xmlhttprequest-ssl@1.6.3:
+ resolution: {integrity: sha1-A7cThzsBZZ36LBxdBWBlsn3cLeY=}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
+ /xtend@4.0.2:
+ resolution: {integrity: sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=}
+ engines: {node: '>=0.4'}
+ dev: true
+
+ /y18n@4.0.3:
+ resolution: {integrity: sha1-tfJZyCzW4zaSHv17/Yv1YN6e7t8=}
+ dev: true
+
/y18n@5.0.8:
resolution: {integrity: sha1-f0k00PfKjFb5UxSTndzS3ZHOHVU=}
engines: {node: '>=10'}
dev: true
+ /yallist@2.1.2:
+ resolution: {integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=}
+ dev: true
+
/yallist@3.1.1:
resolution: {integrity: sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=}
dev: true
@@ -6062,6 +20242,33 @@ packages:
engines: {node: '>= 14'}
dev: true
+ /yargs-parser@13.1.2:
+ resolution: {integrity: sha1-Ew8JcC667vJlDVTObj5XBvek+zg=}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+
+ /yargs-parser@14.0.0:
+ resolution: {integrity: sha1-QuJXd7BnGOyZ6sLDqYrT3nO2gY8=}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+
+ /yargs-parser@18.1.3:
+ resolution: {integrity: sha1-vmjEl1xrKr9GkjawyHA2L6sJp7A=}
+ engines: {node: '>=6'}
+ dependencies:
+ camelcase: 5.3.1
+ decamelize: 1.2.0
+ dev: true
+
+ /yargs-parser@20.2.4:
+ resolution: {integrity: sha1-tCiQ8UVmeW+Fro46JSkNIF8VSlQ=}
+ engines: {node: '>=10'}
+ dev: true
+
/yargs-parser@20.2.9:
resolution: {integrity: sha1-LrfcOwKJcY/ClfNidThFxBoMlO4=}
engines: {node: '>=10'}
@@ -6072,6 +20279,61 @@ packages:
engines: {node: '>=12'}
dev: true
+ /yargs-unparser@2.0.0:
+ resolution: {integrity: sha1-8TH5ImkRrl2a04xDL+gJNmwjJes=}
+ engines: {node: '>=10'}
+ dependencies:
+ camelcase: 6.3.0
+ decamelize: 4.0.0
+ flat: 5.0.2
+ is-plain-obj: 2.1.0
+ dev: true
+
+ /yargs@13.3.2:
+ resolution: {integrity: sha1-rX/+/sGqWVZayRX4Lcyzipwxot0=}
+ dependencies:
+ cliui: 5.0.0
+ find-up: 3.0.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 3.1.0
+ which-module: 2.0.1
+ y18n: 4.0.3
+ yargs-parser: 13.1.2
+ dev: true
+
+ /yargs@15.4.1:
+ resolution: {integrity: sha1-DYehbeAa7p2L7Cv7909nhRcw9Pg=}
+ engines: {node: '>=8'}
+ dependencies:
+ cliui: 6.0.0
+ decamelize: 1.2.0
+ find-up: 4.1.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ require-main-filename: 2.0.0
+ set-blocking: 2.0.0
+ string-width: 4.2.3
+ which-module: 2.0.1
+ y18n: 4.0.3
+ yargs-parser: 18.1.3
+ dev: true
+
+ /yargs@16.2.0:
+ resolution: {integrity: sha1-HIK/D2tqZur85+8w43b0mhJHf2Y=}
+ engines: {node: '>=10'}
+ dependencies:
+ cliui: 7.0.4
+ escalade: 3.1.1
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ string-width: 4.2.3
+ y18n: 5.0.8
+ yargs-parser: 20.2.9
+ dev: true
+
/yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
@@ -6085,6 +20347,10 @@ packages:
yargs-parser: 21.1.1
dev: true
+ /yeast@0.1.2:
+ resolution: {integrity: sha1-AI4G2AlDIMNy28L47XagymyKxBk=}
+ dev: true
+
/yn@3.1.1:
resolution: {integrity: sha1-HodAGgnXZ8HV6rJqbkwYUYLS61A=}
engines: {node: '>=6'}
@@ -6098,3 +20364,7 @@ packages:
/zwitch@1.0.5:
resolution: {integrity: sha1-0R1zgf/tFrdC9q97PyI9XNn+mSA=}
dev: true
+
+ /zwitch@2.0.4:
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
+ dev: false