├── .editorconfig ├── .eslintrc.js ├── .eslintrc.prepublish.js ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── ci-cd.yml │ └── pr-validation.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierrc.js ├── .vscode └── extensions.json ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── __tests__ └── McpClient.test.ts ├── assets ├── brave-search-example.png ├── credentials-envs.png ├── credentials.png ├── execute-tool-result.png ├── execute-tool.png ├── list-tools.png ├── multi-server-example.png ├── operations.png ├── sse-credentials.png └── sse-example.png ├── credentials ├── McpClientApi.credentials.ts ├── McpClientSseApi.credentials.ts └── mcpClient.svg ├── gulpfile.js ├── index.js ├── jest.config.js ├── nodes └── McpClient │ ├── McpClient.node.ts │ └── mcpClient.svg ├── package-lock.json ├── package.json ├── pnpm-lock.yaml └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = tab 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [package.json] 12 | indent_style = space 13 | indent_size = 2 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | 18 | [*.yml] 19 | indent_style = space 20 | indent_size = 2 21 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @type {import('@types/eslint').ESLint.ConfigData} 3 | */ 4 | module.exports = { 5 | root: true, 6 | 7 | env: { 8 | browser: true, 9 | es6: true, 10 | node: true, 11 | }, 12 | 13 | parser: '@typescript-eslint/parser', 14 | 15 | parserOptions: { 16 | project: ['./tsconfig.json'], 17 | sourceType: 'module', 18 | extraFileExtensions: ['.json'], 19 | }, 20 | 21 | ignorePatterns: ['.eslintrc.js', '**/*.js', '**/node_modules/**', '**/dist/**'], 22 | 23 | overrides: [ 24 | { 25 | files: ['package.json'], 26 | plugins: ['eslint-plugin-n8n-nodes-base'], 27 | extends: ['plugin:n8n-nodes-base/community'], 28 | rules: { 29 | 'n8n-nodes-base/community-package-json-name-still-default': 'off', 30 | }, 31 | }, 32 | { 33 | files: ['./credentials/**/*.ts'], 34 | plugins: ['eslint-plugin-n8n-nodes-base'], 35 | extends: ['plugin:n8n-nodes-base/credentials'], 36 | rules: { 37 | 'n8n-nodes-base/cred-class-field-documentation-url-missing': 'off', 38 | 'n8n-nodes-base/cred-class-field-documentation-url-miscased': 'off', 39 | }, 40 | }, 41 | { 42 | files: ['./nodes/**/*.ts'], 43 | plugins: ['eslint-plugin-n8n-nodes-base'], 44 | extends: ['plugin:n8n-nodes-base/nodes'], 45 | rules: { 46 | 'n8n-nodes-base/node-execute-block-missing-continue-on-fail': 'off', 47 | 'n8n-nodes-base/node-resource-description-filename-against-convention': 'off', 48 | 'n8n-nodes-base/node-param-fixed-collection-type-unsorted-items': 'off', 49 | 'n8n-nodes-base/node-class-description-inputs-wrong-regular-node': 'off', 50 | 'n8n-nodes-base/node-class-description-outputs-wrong': 'off', 51 | }, 52 | }, 53 | ], 54 | }; 55 | -------------------------------------------------------------------------------- /.eslintrc.prepublish.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @type {import('@types/eslint').ESLint.ConfigData} 3 | */ 4 | module.exports = { 5 | extends: "./.eslintrc.js", 6 | 7 | overrides: [ 8 | { 9 | files: ['package.json'], 10 | plugins: ['eslint-plugin-n8n-nodes-base'], 11 | rules: { 12 | 'n8n-nodes-base/community-package-json-name-still-default': 'error', 13 | }, 14 | }, 15 | ], 16 | }; 17 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "npm" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | open-pull-requests-limit: 10 8 | versioning-strategy: increase 9 | 10 | - package-ecosystem: "github-actions" 11 | directory: "/" 12 | schedule: 13 | interval: "weekly" 14 | open-pull-requests-limit: 5 15 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | 4 | ## Related Issue 5 | 6 | Closes # 7 | 8 | ## Type of Change 9 | 10 | - [ ] Bug fix (non-breaking change that fixes an issue) 11 | - [ ] New feature (non-breaking change that adds functionality) 12 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 13 | - [ ] Documentation update 14 | - [ ] Other (please describe): 15 | 16 | ## How Has This Been Tested? 17 | 18 | 19 | ## Checklist 20 | - [ ] My code follows the code style of this project 21 | - [ ] I have updated the documentation accordingly 22 | - [ ] I have added tests to cover my changes 23 | - [ ] All new and existing tests passed 24 | 25 | ## Release Notes 26 | 27 | 28 | ## Screenshots (if applicable) 29 | 30 | -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- 1 | name: CI/CD Pipeline 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | workflow_dispatch: 9 | inputs: 10 | release_type: 11 | description: 'Release type (patch, minor, major)' 12 | required: true 13 | default: 'patch' 14 | type: choice 15 | options: 16 | - patch 17 | - minor 18 | - major 19 | 20 | jobs: 21 | build-and-test: 22 | runs-on: ubuntu-latest 23 | steps: 24 | - uses: actions/checkout@v4 25 | 26 | - name: Setup Node.js 27 | uses: actions/setup-node@v4 28 | with: 29 | node-version: '18' 30 | cache: 'npm' 31 | 32 | - name: Install dependencies 33 | run: npm ci 34 | 35 | - name: Lint 36 | run: npm run lint --if-present || echo "Linting failed but continuing" 37 | 38 | - name: Build 39 | run: npm run build --if-present || echo "Build script not found or build failed but continuing" 40 | 41 | - name: Test 42 | run: npm run test --if-present || echo "No tests found or tests failed but continuing" 43 | 44 | - name: Upload build artifacts 45 | uses: actions/upload-artifact@v4 46 | with: 47 | name: dist 48 | path: dist/ 49 | 50 | release: 51 | needs: build-and-test 52 | if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main') 53 | runs-on: ubuntu-latest 54 | permissions: 55 | contents: write 56 | packages: write 57 | steps: 58 | - uses: actions/checkout@v4 59 | with: 60 | fetch-depth: 0 61 | token: ${{ secrets.CICD_TOKEN }} 62 | 63 | - name: Setup Node.js 64 | uses: actions/setup-node@v4 65 | with: 66 | node-version: '18' 67 | registry-url: 'https://registry.npmjs.org' 68 | 69 | - name: Install dependencies 70 | run: npm ci 71 | 72 | - name: Download build artifacts 73 | uses: actions/download-artifact@v4 74 | with: 75 | name: dist 76 | path: dist/ 77 | 78 | - name: Configure Git 79 | run: | 80 | git config user.name "GitHub Actions" 81 | git config user.email "actions@github.com" 82 | 83 | - name: Bump version 84 | id: bump_version 85 | if: github.event_name == 'workflow_dispatch' 86 | run: | 87 | RELEASE_TYPE="${{ github.event.inputs.release_type }}" 88 | npm version $RELEASE_TYPE -m "Bump version to %s [skip ci]" 89 | echo "new_version=$(npm pkg get version | tr -d '"')" >> $GITHUB_OUTPUT 90 | 91 | - name: Auto bump patch version 92 | id: auto_bump 93 | if: github.event_name == 'push' && github.ref == 'refs/heads/main' 94 | run: | 95 | npm version patch -m "Bump version to %s [skip ci]" 96 | echo "new_version=$(npm pkg get version | tr -d '"')" >> $GITHUB_OUTPUT 97 | 98 | - name: Push changes 99 | run: | 100 | VERSION=$(npm pkg get version | tr -d '"') 101 | git push 102 | git push origin v$VERSION 103 | 104 | - name: Create GitHub Release 105 | uses: softprops/action-gh-release@v1 106 | with: 107 | tag_name: v${{ steps.bump_version.outputs.new_version || steps.auto_bump.outputs.new_version }} 108 | name: Release v${{ steps.bump_version.outputs.new_version || steps.auto_bump.outputs.new_version }} 109 | draft: false 110 | generate_release_notes: true 111 | 112 | - name: Publish to npm 113 | run: npm publish --access public 114 | env: 115 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 116 | -------------------------------------------------------------------------------- /.github/workflows/pr-validation.yml: -------------------------------------------------------------------------------- 1 | name: PR Validation 2 | 3 | on: 4 | pull_request: 5 | branches: [main] 6 | types: [opened, synchronize, reopened] 7 | 8 | jobs: 9 | validate: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v3 13 | 14 | - uses: actions/setup-node@v3 15 | with: 16 | node-version: '18' 17 | cache: 'npm' 18 | 19 | - name: Install dependencies 20 | run: npm ci 21 | 22 | - name: Lint 23 | run: npm run lint 24 | 25 | - name: Build 26 | run: npm run build 27 | 28 | - name: Test 29 | run: npm test 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .tmp 4 | tmp 5 | dist 6 | npm-debug.log* 7 | yarn.lock 8 | .vscode/launch.json 9 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Git, GitHub and CI/CD 2 | .git 3 | .github 4 | .gitignore 5 | 6 | # Source and dev files 7 | src 8 | tests 9 | .eslintrc 10 | .prettierrc 11 | tsconfig.json 12 | jest.config.js 13 | 14 | # Documentation 15 | docs 16 | *.md 17 | !README.md 18 | !LICENSE.md 19 | 20 | # Misc 21 | .DS_Store 22 | .vscode 23 | coverage 24 | node_modules 25 | 26 | # Assets not needed in package 27 | assets 28 | screenshots 29 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.11.0 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | /** 3 | * https://prettier.io/docs/en/options.html#semicolons 4 | */ 5 | semi: true, 6 | 7 | /** 8 | * https://prettier.io/docs/en/options.html#trailing-commas 9 | */ 10 | trailingComma: 'all', 11 | 12 | /** 13 | * https://prettier.io/docs/en/options.html#bracket-spacing 14 | */ 15 | bracketSpacing: true, 16 | 17 | /** 18 | * https://prettier.io/docs/en/options.html#tabs 19 | */ 20 | useTabs: true, 21 | 22 | /** 23 | * https://prettier.io/docs/en/options.html#tab-width 24 | */ 25 | tabWidth: 2, 26 | 27 | /** 28 | * https://prettier.io/docs/en/options.html#arrow-function-parentheses 29 | */ 30 | arrowParens: 'always', 31 | 32 | /** 33 | * https://prettier.io/docs/en/options.html#quotes 34 | */ 35 | singleQuote: true, 36 | 37 | /** 38 | * https://prettier.io/docs/en/options.html#quote-props 39 | */ 40 | quoteProps: 'as-needed', 41 | 42 | /** 43 | * https://prettier.io/docs/en/options.html#end-of-line 44 | */ 45 | endOfLine: 'lf', 46 | 47 | /** 48 | * https://prettier.io/docs/en/options.html#print-width 49 | */ 50 | printWidth: 100, 51 | }; 52 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "dbaeumer.vscode-eslint", 4 | "EditorConfig.EditorConfig", 5 | "esbenp.prettier-vscode", 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at jan@n8n.io. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2022 n8n 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 7 | of the Software, and to permit persons to whom the Software is furnished to do 8 | so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # n8n-nodes-mcp-client 2 | 3 | This is an n8n community node that lets you interact with Model Context Protocol (MCP) servers in your n8n workflows. 4 | 5 | MCP is a protocol that enables AI models to interact with external tools and data sources in a standardized way. This node allows you to connect to MCP servers, access resources, execute tools, and use prompts. 6 | 7 | [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform. 8 | 9 | [Installation](#installation) 10 | [Credentials](#credentials) 11 | [Environment Variables](#environment-variables) 12 | [Operations](#operations) 13 | [Using as a Tool](#using-as-a-tool) 14 | [Compatibility](#compatibility) 15 | [Resources](#resources) 16 | 17 | ## Installation 18 | 19 | Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation. 20 | 21 | ## Credentials 22 | 23 | The MCP Client node supports two types of credentials to connect to an MCP server: 24 | 25 | ### Command-line Based Transport (STDIO) 26 | 27 | ![MCP Client STDIO Credentials](./assets/credentials.png) 28 | 29 | - **Command**: The command to start the MCP server 30 | - **Arguments**: Optional arguments to pass to the server command 31 | - **Environment Variables**: Variables to pass to the server in NAME=VALUE format 32 | 33 | ### Server-Sent Events (SSE) Transport 34 | 35 | ![MCP Client SSE Credentials](./assets/sse-credentials.png) 36 | 37 | - **SSE URL**: The URL of the SSE endpoint (default: http://localhost:3001/sse) 38 | - **Messages Post Endpoint**: Optional custom endpoint for posting messages if different from the SSE URL 39 | - **Additional Headers**: Optional headers to send with requests (format: name:value, one per line) 40 | 41 | ## Environment Variables 42 | 43 | The MCP Client node supports passing environment variables to MCP servers using the command-line based transport in two ways: 44 | 45 | ### 1. Using the Credentials UI 46 | 47 | You can add environment variables directly in the credentials configuration: 48 | 49 | ![Environment Variables in Credentials](./assets/credentials-envs.png) 50 | 51 | This method is useful for individual setups and testing. The values are stored securely as credentials in n8n. 52 | 53 | ### 2. Using Docker Environment Variables 54 | 55 | For Docker deployments, you can pass environment variables directly to your MCP servers by prefixing them with `MCP_`: 56 | 57 | ```yaml 58 | version: '3' 59 | 60 | services: 61 | n8n: 62 | image: n8nio/n8n 63 | environment: 64 | - MCP_BRAVE_API_KEY=your-api-key-here 65 | - MCP_OPENAI_API_KEY=your-openai-key-here 66 | - MCP_CUSTOM_SETTING=some-value 67 | # other configuration... 68 | ``` 69 | 70 | These environment variables will be automatically passed to your MCP servers when they are executed. 71 | 72 | ### Example: Using Brave Search MCP Server 73 | 74 | This example shows how to set up and use the Brave Search MCP server: 75 | 76 | 1. Install the Brave Search MCP server: 77 | ```bash 78 | npm install -g @modelcontextprotocol/server-brave-search 79 | ``` 80 | 81 | 2. Configure MCP Client credentials: 82 | - **Command**: `npx` 83 | - **Arguments**: `-y @modelcontextprotocol/server-brave-search` 84 | - **Environment Variables**: `BRAVE_API_KEY=your-api-key` Add a variables (space comma or newline separated) 85 | 86 | 3. Create a workflow that uses the MCP Client node: 87 | - Add an MCP Client node 88 | - Select the "List Tools" operation to see available search tools 89 | - Add another MCP Client node 90 | - Select the "Execute Tool" operation 91 | - Choose the "brave_search" tool 92 | - Set Parameters to: `{"query": "latest AI news"}` 93 | 94 | ![Brave Search Example](./assets/brave-search-example.png) 95 | 96 | The node will execute the search and return the results in the output. 97 | 98 | ### Example: Multi-Server Setup with AI Agent 99 | 100 | This example demonstrates how to set up multiple MCP servers in a production environment and use them with an AI agent: 101 | 102 | 1. Configure your docker-compose.yml file: 103 | 104 | ```yaml 105 | version: '3' 106 | 107 | services: 108 | n8n: 109 | image: n8nio/n8n 110 | environment: 111 | # MCP server environment variables 112 | - MCP_BRAVE_API_KEY=your-brave-api-key 113 | - MCP_OPENAI_API_KEY=your-openai-key 114 | - MCP_SERPER_API_KEY=your-serper-key 115 | - MCP_WEATHER_API_KEY=your-weather-api-key 116 | 117 | # Enable community nodes as tools 118 | - N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true 119 | ports: 120 | - "5678:5678" 121 | volumes: 122 | - ~/.n8n:/home/node/.n8n 123 | ``` 124 | 125 | 2. Create multiple MCP Client credentials in n8n: 126 | 127 | **Brave Search Credentials**: 128 | - Command: `npx` 129 | - Arguments: `-y @modelcontextprotocol/server-brave-search` 130 | 131 | **OpenAI Tools Credentials**: 132 | - Command: `npx` 133 | - Arguments: `-y @modelcontextprotocol/server-openai` 134 | 135 | **Web Search Credentials**: 136 | - Command: `npx` 137 | - Arguments: `-y @modelcontextprotocol/server-serper` 138 | 139 | **Weather API Credentials**: 140 | - Command: `npx` 141 | - Arguments: `-y @modelcontextprotocol/server-weather` 142 | 143 | 3. Create an AI Agent workflow: 144 | - Add an AI Agent node 145 | - Enable MCP Client as a tool 146 | - Configure different MCP Client nodes with different credentials 147 | - Create a prompt that uses multiple data sources 148 | 149 | ![Multi-Server Setup](./assets/multi-server-example.png) 150 | 151 | Example AI Agent prompt: 152 | ``` 153 | I need you to help me plan a trip. First, search for popular destinations in {destination_country}. 154 | Then, check the current weather in the top 3 cities. 155 | Finally, find some recent news about travel restrictions for these places. 156 | ``` 157 | 158 | With this setup, the AI agent can use multiple MCP tools across different servers, all using environment variables configured in your Docker deployment. 159 | 160 | ### Example: Using a Local MCP Server with SSE 161 | 162 | This example shows how to connect to a locally running MCP server using Server-Sent Events (SSE): 163 | 164 | 1. Start a local MCP server that supports SSE: 165 | ```bash 166 | npx @modelcontextprotocol/server-example-sse 167 | ``` 168 | 169 | Or run your own custom MCP server with SSE support on port 3001. 170 | 171 | 2. Configure MCP Client credentials: 172 | - In the node settings, select **Connection Type**: `Server-Sent Events (SSE)` 173 | - Create new credentials of type **MCP Client (SSE) API** 174 | - Set **SSE URL**: `http://localhost:3001/sse` 175 | - Add any required headers if your server needs authentication 176 | 177 | 3. Create a workflow that uses the MCP Client node: 178 | - Add an MCP Client node 179 | - Set the Connection Type to `Server-Sent Events (SSE)` 180 | - Select your SSE credentials 181 | - Select the "List Tools" operation to see available tools 182 | - Execute the workflow to see the results 183 | 184 | ![SSE Example](./assets/sse-example.png) 185 | 186 | This method is particularly useful when: 187 | - Your MCP server is running as a standalone service 188 | - You're connecting to a remote MCP server 189 | - Your server requires special authentication headers 190 | - You need to separate the transport channel from the message channel 191 | 192 | ## Operations 193 | 194 | The MCP Client node supports the following operations: 195 | 196 | ![MCP Client Operations](./assets/operations.png) 197 | 198 | - **Execute Tool** - Execute a specific tool with parameters 199 | - **Get Prompt** - Get a specific prompt template 200 | - **List Prompts** - Get a list of available prompts 201 | - **List Resources** - Get a list of available resources from the MCP server 202 | - **List Tools** - Get a list of available tools 203 | - **Read Resource** - Read a specific resource by URI 204 | 205 | ### Example: List Tools Operation 206 | 207 | ![List Tools Example](./assets/list-tools.png) 208 | 209 | The List Tools operation returns all available tools from the MCP server, including their names, descriptions, and parameter schemas. 210 | 211 | ### Example: Execute Tool Operation 212 | 213 | ![Execute Tool Example](./assets/execute-tool.png) 214 | 215 | The Execute Tool operation allows you to execute a specific tool with parameters. Make sure to select the tool you want to execute from the dropdown menu. 216 | 217 | ## Using as a Tool 218 | 219 | This node can be used as a tool in n8n AI Agents. To enable community nodes as tools, you need to set the `N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE` environment variable to `true`. 220 | 221 | ### Setting the Environment Variable 222 | 223 | **If you're using a bash/zsh shell:** 224 | ```bash 225 | export N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true 226 | n8n start 227 | ``` 228 | 229 | **If you're using Docker:** 230 | Add to your docker-compose.yml file: 231 | ```yaml 232 | environment: 233 | - N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true 234 | ``` 235 | 236 | **If you're using the desktop app:** 237 | Create a `.env` file in the n8n directory: 238 | ``` 239 | N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true 240 | ``` 241 | 242 | **If you want to set it permanently on Mac/Linux:** 243 | Add to your `~/.zshrc` or `~/.bash_profile`: 244 | ```bash 245 | export N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true 246 | ``` 247 | 248 | Example of an AI Agent workflow results: 249 | 250 | ![AI Agent Example](./assets/execute-tool-result.png) 251 | 252 | After setting this environment variable and restarting n8n, your MCP Client node will be available as a tool in AI Agent nodes. 253 | 254 | ## Compatibility 255 | 256 | - Requires n8n version 1.0.0 or later 257 | - Compatible with MCP Protocol version 1.0.0 or later 258 | - Supports both STDIO and SSE transports for connecting to MCP servers 259 | - SSE transport requires a server that implements the MCP Server-Sent Events specification 260 | 261 | ## Resources 262 | 263 | * [n8n community nodes documentation](https://docs.n8n.io/integrations/community-nodes/) 264 | * [Model Context Protocol Documentation](https://modelcontextprotocol.io/docs/) 265 | * [MCP TypeScript SDK](https://github.com/modelcontextprotocol/typescript-sdk) 266 | * [MCP Transports Overview](https://modelcontextprotocol.io/docs/concepts/transports) 267 | * [Using SSE in MCP](https://github.com/modelcontextprotocol/typescript-sdk/blob/main/src/client/sse.ts) 268 | 269 | 270 | -------------------------------------------------------------------------------- /__tests__/McpClient.test.ts: -------------------------------------------------------------------------------- 1 | import { McpClient } from '../nodes/McpClient/McpClient.node'; 2 | 3 | describe('McpClient Node', () => { 4 | let mcpClient: McpClient; 5 | 6 | beforeEach(() => { 7 | mcpClient = new McpClient(); 8 | }); 9 | 10 | it('should have the correct node type', () => { 11 | expect(mcpClient.description.name).toBe('mcpClient'); 12 | }); 13 | 14 | it('should have properties defined', () => { 15 | expect(mcpClient.description.properties).toBeDefined(); 16 | }); 17 | }); 18 | -------------------------------------------------------------------------------- /assets/brave-search-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/brave-search-example.png -------------------------------------------------------------------------------- /assets/credentials-envs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/credentials-envs.png -------------------------------------------------------------------------------- /assets/credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/credentials.png -------------------------------------------------------------------------------- /assets/execute-tool-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/execute-tool-result.png -------------------------------------------------------------------------------- /assets/execute-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/execute-tool.png -------------------------------------------------------------------------------- /assets/list-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/list-tools.png -------------------------------------------------------------------------------- /assets/multi-server-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/multi-server-example.png -------------------------------------------------------------------------------- /assets/operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/operations.png -------------------------------------------------------------------------------- /assets/sse-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/sse-credentials.png -------------------------------------------------------------------------------- /assets/sse-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleam00/n8n-nodes-mcp/40797db6af2ed43342a40b7b1f918ecd8a3e1d3c/assets/sse-example.png -------------------------------------------------------------------------------- /credentials/McpClientApi.credentials.ts: -------------------------------------------------------------------------------- 1 | import { ICredentialType, INodeProperties } from 'n8n-workflow'; 2 | 3 | export class McpClientApi implements ICredentialType { 4 | name = 'mcpClientApi'; 5 | displayName = 'MCP Client (STDIO) API'; 6 | 7 | // Cast the icon to the correct type for n8n 8 | icon = 'file:mcpClient.svg' as const; 9 | 10 | properties: INodeProperties[] = [ 11 | { 12 | displayName: 'Command', 13 | name: 'command', 14 | type: 'string', 15 | default: '', 16 | required: true, 17 | description: 'Command to execute (e.g., npx @modelcontextprotocol/client, python script.py)', 18 | }, 19 | { 20 | displayName: 'Arguments', 21 | name: 'args', 22 | type: 'string', 23 | default: '', 24 | description: 25 | 'Command line arguments (space-separated). Do not include API keys or sensitive information here - use Environments instead.', 26 | }, 27 | { 28 | displayName: 'Environments', 29 | name: 'environments', 30 | type: 'string', 31 | default: '', 32 | typeOptions: { 33 | password: true, 34 | }, 35 | description: 36 | 'Environment variables in NAME=VALUE format, separated by commas (e.g., BRAVE_API_KEY=xyz,OPENAI_API_KEY=abc)', 37 | }, 38 | ]; 39 | } 40 | -------------------------------------------------------------------------------- /credentials/McpClientSseApi.credentials.ts: -------------------------------------------------------------------------------- 1 | import { ICredentialType, INodeProperties } from 'n8n-workflow'; 2 | 3 | export class McpClientSseApi implements ICredentialType { 4 | name = 'mcpClientSseApi'; 5 | displayName = 'MCP Client (SSE) API'; 6 | 7 | // Cast the icon to the correct type for n8n 8 | icon = 'file:mcpClient.svg' as const; 9 | 10 | properties: INodeProperties[] = [ 11 | { 12 | displayName: 'SSE URL', 13 | name: 'sseUrl', 14 | type: 'string', 15 | default: 'http://localhost:3001/sse', 16 | required: true, 17 | description: 'URL of the SSE endpoint for the MCP server', 18 | }, 19 | { 20 | displayName: 'Messages Post Endpoint', 21 | name: 'messagesPostEndpoint', 22 | type: 'string', 23 | default: '', 24 | description: 'Optional custom endpoint for posting messages (if different from SSE URL)', 25 | }, 26 | { 27 | displayName: 'Additional Headers', 28 | name: 'headers', 29 | type: 'string', 30 | default: '', 31 | description: 'Additional headers to send in the request (format: name:value, one per line)', 32 | }, 33 | ]; 34 | } 35 | -------------------------------------------------------------------------------- /credentials/mcpClient.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const { task, src, dest } = require('gulp'); 3 | 4 | task('build:icons', copyIcons); 5 | 6 | function copyIcons() { 7 | const nodeSource = path.resolve('nodes', '**', '*.{png,svg}'); 8 | const nodeDestination = path.resolve('dist', 'nodes'); 9 | 10 | src(nodeSource).pipe(dest(nodeDestination)); 11 | 12 | const credSource = path.resolve('credentials', '**', '*.{png,svg}'); 13 | const credDestination = path.resolve('dist', 'credentials'); 14 | 15 | return src(credSource).pipe(dest(credDestination)); 16 | } 17 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // This file ensures n8n can find and load your nodes and credentials 2 | const { McpClient } = require('./dist/nodes/McpClient/McpClient.node.js'); 3 | 4 | module.exports = { 5 | nodeTypes: { 6 | mcpClient: McpClient, 7 | }, 8 | credentialTypes: { 9 | mcpClientApi: require('./dist/credentials/McpClientApi.credentials.js').McpClientApi, 10 | mcpClientSseApi: require('./dist/credentials/McpClientSseApi.credentials.js').McpClientSseApi, 11 | }, 12 | }; 13 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | testEnvironment: 'node', 4 | testMatch: ['**/__tests__/**/*.test.ts'], 5 | transform: { 6 | '^.+\\.tsx?$': [ 7 | 'ts-jest', 8 | { 9 | tsconfig: 'tsconfig.json', 10 | }, 11 | ], 12 | }, 13 | moduleFileExtensions: ['ts', 'js', 'json'], 14 | }; 15 | -------------------------------------------------------------------------------- /nodes/McpClient/McpClient.node.ts: -------------------------------------------------------------------------------- 1 | import { 2 | IExecuteFunctions, 3 | INodeExecutionData, 4 | INodeType, 5 | INodeTypeDescription, 6 | NodeConnectionType, 7 | NodeOperationError, 8 | } from 'n8n-workflow'; 9 | import { DynamicStructuredTool } from '@langchain/core/tools'; 10 | import { z } from 'zod'; 11 | import { Client } from '@modelcontextprotocol/sdk/client/index.js'; 12 | import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'; 13 | import { Transport } from '@modelcontextprotocol/sdk/shared/transport.js'; 14 | 15 | // Add Node.js process type declaration 16 | declare const process: { 17 | env: Record; 18 | }; 19 | 20 | // Singleton class to manage MCP client instances 21 | class McpClientManager { 22 | private static instance: McpClientManager; 23 | private clients: Map = new Map(); 24 | private connectionStatus: Map = new Map(); 25 | 26 | private constructor() {} 27 | 28 | public static getInstance(): McpClientManager { 29 | if (!McpClientManager.instance) { 30 | McpClientManager.instance = new McpClientManager(); 31 | } 32 | return McpClientManager.instance; 33 | } 34 | 35 | public async getClient( 36 | connectionType: string, 37 | credentials: any, 38 | logger: any, 39 | node: any, 40 | ): Promise<{ client: Client; transport: Transport }> { 41 | // Create a unique key for this client configuration 42 | const clientKey = this.createClientKey(connectionType, credentials); 43 | 44 | // Check if we already have a client for this configuration 45 | if (this.clients.has(clientKey) && this.connectionStatus.get(clientKey) !== false) { 46 | const client = this.clients.get(clientKey)!; 47 | logger.debug(`Using existing MCP client connection for key: ${clientKey}`); 48 | 49 | // Get the transport from the client 50 | const transport = (client as any)._transport; 51 | 52 | // Make sure we have a valid transport 53 | if (!transport) { 54 | logger.debug('Transport not found in existing client, creating new client'); 55 | // Remove the invalid client 56 | this.clients.delete(clientKey); 57 | this.connectionStatus.delete(clientKey); 58 | // Create a new client 59 | return this.createNewClient(connectionType, credentials, logger, node, clientKey); 60 | } 61 | 62 | // Check if the connection is still alive 63 | try { 64 | // A simple ping operation to check if the connection is still alive 65 | // This could be any lightweight operation that verifies the connection 66 | await client.listTools(); 67 | logger.debug('Connection is alive'); 68 | } catch (error) { 69 | logger.debug(`Connection is dead, recreating: ${(error as Error).message}`); 70 | // Mark the connection as dead 71 | this.connectionStatus.set(clientKey, false); 72 | // Remove the client 73 | this.clients.delete(clientKey); 74 | // Create a new client 75 | return this.createNewClient(connectionType, credentials, logger, node, clientKey); 76 | } 77 | 78 | return { client, transport }; 79 | } 80 | 81 | return this.createNewClient(connectionType, credentials, logger, node, clientKey); 82 | } 83 | 84 | private async createNewClient( 85 | connectionType: string, 86 | credentials: any, 87 | logger: any, 88 | node: any, 89 | clientKey: string, 90 | ): Promise<{ client: Client; transport: Transport }> { 91 | // Create a new transport and client 92 | let transport: Transport; 93 | 94 | if (connectionType === 'sse') { 95 | // Dynamically import the SSE client to avoid TypeScript errors 96 | const { SSEClientTransport } = await import('@modelcontextprotocol/sdk/client/sse.js'); 97 | 98 | const sseUrl = credentials.sseUrl as string; 99 | const messagesPostEndpoint = (credentials.messagesPostEndpoint as string) || ''; 100 | 101 | // Parse headers 102 | const headers: Record = {}; 103 | if (credentials.headers) { 104 | const headerLines = (credentials.headers as string).split('\n'); 105 | for (const line of headerLines) { 106 | const [name, value] = line.split(':', 2); 107 | if (name && value) { 108 | headers[name.trim()] = value.trim(); 109 | } 110 | } 111 | } 112 | 113 | // Create SSE transport with dynamic import to avoid TypeScript errors 114 | transport = new SSEClientTransport( 115 | // @ts-ignore 116 | new URL(sseUrl), 117 | { 118 | // @ts-ignore 119 | eventSourceInit: { headers }, 120 | // @ts-ignore 121 | requestInit: { 122 | headers, 123 | ...(messagesPostEndpoint 124 | ? { 125 | // @ts-ignore 126 | endpoint: new URL(messagesPostEndpoint), 127 | } 128 | : {}), 129 | }, 130 | }, 131 | ); 132 | 133 | logger.debug(`Created SSE transport for MCP client URL: ${sseUrl}`); 134 | if (messagesPostEndpoint) { 135 | logger.debug(`Using custom POST endpoint: ${messagesPostEndpoint}`); 136 | } 137 | } else { 138 | // Use stdio transport (default) 139 | // Build environment variables object for MCP servers 140 | const env: Record = { 141 | // Preserve the PATH environment variable to ensure commands can be found 142 | PATH: process.env.PATH || '', 143 | }; 144 | 145 | logger.debug(`Original PATH: ${process.env.PATH}`); 146 | 147 | // Parse comma-separated environment variables from credentials 148 | if (credentials.environments) { 149 | const envPairs = (credentials.environments as string).split(/[,\n\s]+/); 150 | for (const pair of envPairs) { 151 | const trimmedPair = pair.trim(); 152 | if (trimmedPair) { 153 | const equalsIndex = trimmedPair.indexOf('='); 154 | if (equalsIndex > 0) { 155 | const name = trimmedPair.substring(0, equalsIndex).trim(); 156 | const value = trimmedPair.substring(equalsIndex + 1).trim(); 157 | if (name && value !== undefined) { 158 | env[name] = value; 159 | } 160 | } 161 | } 162 | } 163 | } 164 | 165 | // Process environment variables from Node.js 166 | // This allows Docker environment variables to override credentials 167 | for (const key in process.env) { 168 | // Only pass through MCP-related environment variables 169 | if (key.startsWith('MCP_') && process.env[key]) { 170 | // Strip off the MCP_ prefix when passing to the MCP server 171 | const envName = key.substring(4); // Remove 'MCP_' 172 | env[envName] = process.env[key] as string; 173 | } 174 | } 175 | 176 | transport = new StdioClientTransport({ 177 | command: credentials.command as string, 178 | args: (credentials.args as string)?.split(' ') || [], 179 | env: env, // Always pass the env with PATH preserved 180 | }); 181 | 182 | // Use n8n's logger instead of console.log 183 | logger.debug( 184 | `Transport created for MCP client command: ${credentials.command}, PATH: ${env.PATH}`, 185 | ); 186 | } 187 | 188 | const client = new Client( 189 | { 190 | name: `McpClient-client`, 191 | version: '1.0.0', 192 | }, 193 | { 194 | capabilities: { 195 | prompts: {}, 196 | resources: {}, 197 | tools: {}, 198 | }, 199 | }, 200 | ); 201 | 202 | try { 203 | await client.connect(transport); 204 | logger.debug('Client connected to MCP server'); 205 | 206 | // Store the client in our map 207 | this.clients.set(clientKey, client); 208 | this.connectionStatus.set(clientKey, true); 209 | 210 | return { client, transport }; 211 | } catch (connectionError) { 212 | logger.error(`MCP client connection error: ${(connectionError as Error).message}`); 213 | throw new NodeOperationError( 214 | node, 215 | `Failed to connect to MCP server: ${(connectionError as Error).message}`, 216 | ); 217 | } 218 | } 219 | 220 | private createClientKey(connectionType: string, credentials: any): string { 221 | if (connectionType === 'sse') { 222 | return `sse:${credentials.sseUrl}:${credentials.messagesPostEndpoint || ''}`; 223 | } else { 224 | return `cmd:${credentials.command}:${credentials.args || ''}:${credentials.environments || ''}`; 225 | } 226 | } 227 | } 228 | 229 | export class McpClient implements INodeType { 230 | description: INodeTypeDescription = { 231 | displayName: 'MCP Client', 232 | name: 'mcpClient', 233 | icon: 'file:mcpClient.svg', 234 | group: ['transform'], 235 | version: 1, 236 | subtitle: '={{$parameter["operation"]}}', 237 | description: 'Use MCP client', 238 | defaults: { 239 | name: 'MCP Client', 240 | }, 241 | // @ts-ignore - node-class-description-outputs-wrong 242 | inputs: [{ type: NodeConnectionType.Main }], 243 | // @ts-ignore - node-class-description-outputs-wrong 244 | outputs: [{ type: NodeConnectionType.Main }], 245 | usableAsTool: true, 246 | credentials: [ 247 | { 248 | name: 'mcpClientApi', 249 | required: false, 250 | displayOptions: { 251 | show: { 252 | connectionType: ['cmd'], 253 | }, 254 | }, 255 | }, 256 | { 257 | name: 'mcpClientSseApi', 258 | required: false, 259 | displayOptions: { 260 | show: { 261 | connectionType: ['sse'], 262 | }, 263 | }, 264 | }, 265 | ], 266 | properties: [ 267 | { 268 | displayName: 'Connection Type', 269 | name: 'connectionType', 270 | type: 'options', 271 | options: [ 272 | { 273 | name: 'Command Line (STDIO)', 274 | value: 'cmd', 275 | }, 276 | { 277 | name: 'Server-Sent Events (SSE)', 278 | value: 'sse', 279 | }, 280 | ], 281 | default: 'cmd', 282 | description: 'Choose the transport type to connect to MCP server', 283 | }, 284 | { 285 | displayName: 'Operation', 286 | name: 'operation', 287 | type: 'options', 288 | noDataExpression: true, 289 | options: [ 290 | { 291 | name: 'Execute Tool', 292 | value: 'executeTool', 293 | description: 'Execute a specific tool', 294 | action: 'Execute a tool', 295 | }, 296 | { 297 | name: 'Get Prompt', 298 | value: 'getPrompt', 299 | description: 'Get a specific prompt template', 300 | action: 'Get a prompt template', 301 | }, 302 | { 303 | name: 'List Prompts', 304 | value: 'listPrompts', 305 | description: 'Get available prompts', 306 | action: 'List available prompts', 307 | }, 308 | { 309 | name: 'List Resources', 310 | value: 'listResources', 311 | description: 'Get a list of available resources', 312 | action: 'List available resources', 313 | }, 314 | { 315 | name: 'List Tools', 316 | value: 'listTools', 317 | description: 'Get available tools', 318 | action: 'List available tools', 319 | }, 320 | { 321 | name: 'Read Resource', 322 | value: 'readResource', 323 | description: 'Read a specific resource by URI', 324 | action: 'Read a resource', 325 | }, 326 | ], 327 | default: 'listTools', 328 | required: true, 329 | }, 330 | { 331 | displayName: 'Resource URI', 332 | name: 'resourceUri', 333 | type: 'string', 334 | required: true, 335 | displayOptions: { 336 | show: { 337 | operation: ['readResource'], 338 | }, 339 | }, 340 | default: '', 341 | description: 'URI of the resource to read', 342 | }, 343 | { 344 | displayName: 'Tool Name', 345 | name: 'toolName', 346 | type: 'string', 347 | required: true, 348 | displayOptions: { 349 | show: { 350 | operation: ['executeTool'], 351 | }, 352 | }, 353 | default: '', 354 | description: 'Name of the tool to execute', 355 | }, 356 | { 357 | displayName: 'Tool Parameters', 358 | name: 'toolParameters', 359 | type: 'json', 360 | required: true, 361 | displayOptions: { 362 | show: { 363 | operation: ['executeTool'], 364 | }, 365 | }, 366 | default: '{}', 367 | description: 'Parameters to pass to the tool in JSON format', 368 | }, 369 | { 370 | displayName: 'Prompt Name', 371 | name: 'promptName', 372 | type: 'string', 373 | required: true, 374 | displayOptions: { 375 | show: { 376 | operation: ['getPrompt'], 377 | }, 378 | }, 379 | default: '', 380 | description: 'Name of the prompt template to get', 381 | }, 382 | ], 383 | }; 384 | 385 | async execute(this: IExecuteFunctions): Promise { 386 | const returnData: INodeExecutionData[] = []; 387 | const operation = this.getNodeParameter('operation', 0) as string; 388 | 389 | // For backward compatibility - if connectionType isn't set, default to 'cmd' 390 | let connectionType = 'cmd'; 391 | try { 392 | connectionType = this.getNodeParameter('connectionType', 0) as string; 393 | } catch (error) { 394 | // If connectionType parameter doesn't exist, keep default 'cmd' 395 | this.logger.debug('ConnectionType parameter not found, using default "cmd" transport'); 396 | } 397 | 398 | try { 399 | let credentials; 400 | 401 | if (connectionType === 'sse') { 402 | credentials = await this.getCredentials('mcpClientSseApi'); 403 | } else { 404 | credentials = await this.getCredentials('mcpClientApi'); 405 | } 406 | 407 | // Get or create a client using the singleton manager 408 | const clientManager = McpClientManager.getInstance(); 409 | const { client } = await clientManager.getClient( 410 | connectionType, 411 | credentials, 412 | this.logger, 413 | this.getNode(), 414 | ); 415 | 416 | switch (operation) { 417 | case 'listResources': { 418 | try { 419 | const resources = await client.listResources(); 420 | returnData.push({ 421 | json: { resources }, 422 | }); 423 | } catch (error) { 424 | throw new NodeOperationError( 425 | this.getNode(), 426 | `Failed to list resources: ${(error as Error).message}`, 427 | ); 428 | } 429 | break; 430 | } 431 | 432 | case 'readResource': { 433 | try { 434 | const uri = this.getNodeParameter('resourceUri', 0) as string; 435 | const resource = await client.readResource({ 436 | uri, 437 | }); 438 | returnData.push({ 439 | json: { resource }, 440 | }); 441 | } catch (error) { 442 | throw new NodeOperationError( 443 | this.getNode(), 444 | `Failed to read resource: ${(error as Error).message}`, 445 | ); 446 | } 447 | break; 448 | } 449 | 450 | case 'listTools': { 451 | try { 452 | const rawTools = await client.listTools(); 453 | const tools = Array.isArray(rawTools) 454 | ? rawTools 455 | : Array.isArray(rawTools?.tools) 456 | ? rawTools.tools 457 | : Object.values(rawTools?.tools || {}); 458 | 459 | if (!tools.length) { 460 | throw new NodeOperationError(this.getNode(), 'No tools found from MCP client'); 461 | } 462 | 463 | const aiTools = tools.map((tool: any) => { 464 | const paramSchema = tool.inputSchema?.properties 465 | ? z.object( 466 | Object.entries(tool.inputSchema.properties).reduce( 467 | (acc: any, [key, prop]: [string, any]) => { 468 | let zodType: z.ZodType; 469 | 470 | switch (prop.type) { 471 | case 'string': 472 | zodType = z.string(); 473 | break; 474 | case 'number': 475 | zodType = z.number(); 476 | break; 477 | case 'integer': 478 | zodType = z.number().int(); 479 | break; 480 | case 'boolean': 481 | zodType = z.boolean(); 482 | break; 483 | case 'array': 484 | if (prop.items?.type === 'string') { 485 | zodType = z.array(z.string()); 486 | } else if (prop.items?.type === 'number') { 487 | zodType = z.array(z.number()); 488 | } else if (prop.items?.type === 'boolean') { 489 | zodType = z.array(z.boolean()); 490 | } else { 491 | zodType = z.array(z.any()); 492 | } 493 | break; 494 | case 'object': 495 | zodType = z.record(z.string(), z.any()); 496 | break; 497 | default: 498 | zodType = z.any(); 499 | } 500 | 501 | if (prop.description) { 502 | zodType = zodType.describe(prop.description); 503 | } 504 | 505 | if (!tool.inputSchema?.required?.includes(key)) { 506 | zodType = zodType.optional(); 507 | } 508 | 509 | return { 510 | ...acc, 511 | [key]: zodType, 512 | }; 513 | }, 514 | {}, 515 | ), 516 | ) 517 | : z.object({}); 518 | 519 | return new DynamicStructuredTool({ 520 | name: tool.name, 521 | description: tool.description || `Execute the ${tool.name} tool`, 522 | schema: paramSchema, 523 | func: async (params) => { 524 | try { 525 | const result = await client.callTool({ 526 | name: tool.name, 527 | arguments: params, 528 | }); 529 | 530 | return typeof result === 'object' ? JSON.stringify(result) : String(result); 531 | } catch (error) { 532 | throw new NodeOperationError( 533 | this.getNode(), 534 | `Failed to execute ${tool.name}: ${(error as Error).message}`, 535 | ); 536 | } 537 | }, 538 | }); 539 | }); 540 | 541 | returnData.push({ 542 | json: { 543 | tools: aiTools.map((t: DynamicStructuredTool) => ({ 544 | name: t.name, 545 | description: t.description, 546 | schema: Object.keys(t.schema.shape || {}), 547 | })), 548 | }, 549 | }); 550 | } catch (error) { 551 | throw new NodeOperationError( 552 | this.getNode(), 553 | `Failed to list tools: ${(error as Error).message}`, 554 | ); 555 | } 556 | break; 557 | } 558 | 559 | case 'executeTool': { 560 | try { 561 | const toolName = this.getNodeParameter('toolName', 0) as string; 562 | let toolParams; 563 | 564 | try { 565 | const rawParams = this.getNodeParameter('toolParameters', 0); 566 | this.logger.debug(`Raw tool parameters: ${JSON.stringify(rawParams)}`); 567 | 568 | // Handle different parameter types 569 | if (rawParams === undefined || rawParams === null) { 570 | // Handle null/undefined case 571 | toolParams = {}; 572 | } else if (typeof rawParams === 'string') { 573 | // Handle string input (typical direct node usage) 574 | if (!rawParams || rawParams.trim() === '') { 575 | toolParams = {}; 576 | } else { 577 | toolParams = JSON.parse(rawParams); 578 | } 579 | } else if (typeof rawParams === 'object') { 580 | // Handle object input (when used as a tool in AI Agent) 581 | toolParams = rawParams; 582 | } else { 583 | // Try to convert other types to object 584 | try { 585 | toolParams = JSON.parse(JSON.stringify(rawParams)); 586 | } catch (parseError) { 587 | throw new NodeOperationError( 588 | this.getNode(), 589 | `Invalid parameter type: ${typeof rawParams}`, 590 | ); 591 | } 592 | } 593 | 594 | // Ensure toolParams is an object 595 | if ( 596 | typeof toolParams !== 'object' || 597 | toolParams === null || 598 | Array.isArray(toolParams) 599 | ) { 600 | throw new NodeOperationError(this.getNode(), 'Tool parameters must be a JSON object'); 601 | } 602 | } catch (error) { 603 | throw new NodeOperationError( 604 | this.getNode(), 605 | `Failed to parse tool parameters: ${(error as Error).message}. Make sure the parameters are valid JSON.`, 606 | ); 607 | } 608 | 609 | // Validate tool exists before executing 610 | try { 611 | const availableTools = await client.listTools(); 612 | const toolsList = Array.isArray(availableTools) 613 | ? availableTools 614 | : Array.isArray(availableTools?.tools) 615 | ? availableTools.tools 616 | : Object.values(availableTools?.tools || {}); 617 | 618 | const toolExists = toolsList.some((tool: any) => tool.name === toolName); 619 | 620 | if (!toolExists) { 621 | const availableToolNames = toolsList.map((t: any) => t.name).join(', '); 622 | throw new NodeOperationError( 623 | this.getNode(), 624 | `Tool '${toolName}' does not exist. Available tools: ${availableToolNames}`, 625 | ); 626 | } 627 | 628 | this.logger.debug( 629 | `Executing tool: ${toolName} with params: ${JSON.stringify(toolParams)}`, 630 | ); 631 | 632 | const result = await client.callTool({ 633 | name: toolName, 634 | arguments: toolParams, 635 | }); 636 | 637 | this.logger.debug(`Tool executed successfully: ${JSON.stringify(result)}`); 638 | 639 | returnData.push({ 640 | json: { result }, 641 | }); 642 | } catch (error) { 643 | throw new NodeOperationError( 644 | this.getNode(), 645 | `Failed to execute tool '${toolName}': ${(error as Error).message}`, 646 | ); 647 | } 648 | } catch (error) { 649 | throw new NodeOperationError( 650 | this.getNode(), 651 | `Failed to execute tool: ${(error as Error).message}`, 652 | ); 653 | } 654 | break; 655 | } 656 | 657 | case 'listPrompts': { 658 | try { 659 | const prompts = await client.listPrompts(); 660 | returnData.push({ 661 | json: { prompts }, 662 | }); 663 | } catch (error) { 664 | throw new NodeOperationError( 665 | this.getNode(), 666 | `Failed to list prompts: ${(error as Error).message}`, 667 | ); 668 | } 669 | break; 670 | } 671 | 672 | case 'getPrompt': { 673 | try { 674 | const promptName = this.getNodeParameter('promptName', 0) as string; 675 | const prompt = await client.getPrompt({ 676 | name: promptName, 677 | }); 678 | returnData.push({ 679 | json: { prompt }, 680 | }); 681 | } catch (error) { 682 | throw new NodeOperationError( 683 | this.getNode(), 684 | `Failed to get prompt: ${(error as Error).message}`, 685 | ); 686 | } 687 | break; 688 | } 689 | 690 | default: 691 | throw new NodeOperationError(this.getNode(), `Operation ${operation} not supported`); 692 | } 693 | 694 | return [returnData]; 695 | } catch (error) { 696 | throw new NodeOperationError( 697 | this.getNode(), 698 | `Failed to execute operation: ${(error as Error).message}`, 699 | ); 700 | } 701 | } 702 | } -------------------------------------------------------------------------------- /nodes/McpClient/mcpClient.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@coleam/n8n-nodes-mcp", 3 | "version": "0.1.13", 4 | "description": "MCP nodes for n8n ", 5 | "keywords": [ 6 | "n8n-community-node-package" 7 | ], 8 | "license": "MIT", 9 | "homepage": "", 10 | "author": { 11 | "name": "Jd Fiscus", 12 | "email": "jd@nerding.io" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/nerding-io/n8n-nodes-mcp.git" 17 | }, 18 | "main": "index.js", 19 | "scripts": { 20 | "build": "tsc && gulp build:icons", 21 | "dev": "tsc --watch", 22 | "format": "prettier nodes credentials --write", 23 | "lint": "eslint nodes credentials package.json", 24 | "lintfix": "eslint nodes credentials package.json --fix", 25 | "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json", 26 | "test": "jest" 27 | }, 28 | "files": [ 29 | "dist" 30 | ], 31 | "n8n": { 32 | "n8nNodesApiVersion": 1, 33 | "credentials": [ 34 | "dist/credentials/McpClientApi.credentials.js", 35 | "dist/credentials/McpClientSseApi.credentials.js" 36 | ], 37 | "nodes": [ 38 | "dist/nodes/McpClient/McpClient.node.js" 39 | ] 40 | }, 41 | "devDependencies": { 42 | "@types/jest": "^29.5.14", 43 | "@typescript-eslint/parser": "~5.45", 44 | "eslint": "^8.57.1", 45 | "eslint-plugin-n8n-nodes-base": "^1.11.0", 46 | "gulp": "^4.0.2", 47 | "jest": "^29.7.0", 48 | "n8n-workflow": "*", 49 | "prettier": "^2.7.1", 50 | "ts-jest": "^29.2.6", 51 | "typescript": "~4.8.4" 52 | }, 53 | "dependencies": { 54 | "@langchain/core": "^0.1.63", 55 | "@modelcontextprotocol/sdk": "1.5.0", 56 | "zod": "^3.0.0" 57 | }, 58 | "peerDependencies": { 59 | "n8n-workflow": "*" 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@langchain/core': 12 | specifier: ^0.1.63 13 | version: 0.1.63 14 | '@modelcontextprotocol/sdk': 15 | specifier: ^1.5.0 16 | version: 1.5.0 17 | zod: 18 | specifier: ^3.0.0 19 | version: 3.24.2 20 | devDependencies: 21 | '@typescript-eslint/parser': 22 | specifier: ~5.45 23 | version: 5.45.1(eslint@8.57.1)(typescript@4.8.4) 24 | eslint-plugin-n8n-nodes-base: 25 | specifier: ^1.11.0 26 | version: 1.16.3(eslint@8.57.1)(typescript@4.8.4) 27 | gulp: 28 | specifier: ^4.0.2 29 | version: 4.0.2 30 | n8n-workflow: 31 | specifier: '*' 32 | version: 1.70.0 33 | prettier: 34 | specifier: ^2.7.1 35 | version: 2.8.8 36 | typescript: 37 | specifier: ~4.8.4 38 | version: 4.8.4 39 | 40 | packages: 41 | 42 | '@eslint-community/eslint-utils@4.4.1': 43 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 44 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 45 | peerDependencies: 46 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 47 | 48 | '@eslint-community/regexpp@4.12.1': 49 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 50 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 51 | 52 | '@eslint/eslintrc@2.1.4': 53 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 54 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 55 | 56 | '@eslint/js@8.57.1': 57 | resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} 58 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 59 | 60 | '@humanwhocodes/config-array@0.13.0': 61 | resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} 62 | engines: {node: '>=10.10.0'} 63 | deprecated: Use @eslint/config-array instead 64 | 65 | '@humanwhocodes/module-importer@1.0.1': 66 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 67 | engines: {node: '>=12.22'} 68 | 69 | '@humanwhocodes/object-schema@2.0.3': 70 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 71 | deprecated: Use @eslint/object-schema instead 72 | 73 | '@langchain/core@0.1.63': 74 | resolution: {integrity: sha512-+fjyYi8wy6x1P+Ee1RWfIIEyxd9Ee9jksEwvrggPwwI/p45kIDTdYTblXsM13y4mNWTiACyLSdbwnPaxxdoz+w==} 75 | engines: {node: '>=18'} 76 | 77 | '@modelcontextprotocol/sdk@1.5.0': 78 | resolution: {integrity: sha512-IJ+5iVVs8FCumIHxWqpwgkwOzyhtHVKy45s6Ug7Dv0MfRpaYisH8QQ87rIWeWdOzlk8sfhitZ7HCyQZk7d6b8w==} 79 | engines: {node: '>=18'} 80 | 81 | '@n8n/tournament@1.0.5': 82 | resolution: {integrity: sha512-IPBHa7gC0wwHVct/dnBquHz+uMCDZaZ05cor1D/rjlwaOe/PVu5mtoZaPHYuR98R3W1/IyxC5PuBd0JizDP9gg==} 83 | engines: {node: '>=20.15', pnpm: '>=9.5'} 84 | 85 | '@n8n_io/riot-tmpl@4.0.0': 86 | resolution: {integrity: sha512-/xw8HQgYQlBCrt3IKpNSSB1CgpP7XArw1QTRjP+KEw+OHT8XGvHxXrW9VGdUu9RwDnzm/LFu+dNLeDmwJMeOwQ==} 87 | 88 | '@n8n_io/riot-tmpl@4.0.1': 89 | resolution: {integrity: sha512-/zdRbEfTFjsm1NqnpPQHgZTkTdbp5v3VUxGeMA9098sps8jRCTraQkc3AQstJgHUm7ylBXJcIVhnVeLUMWAfwQ==} 90 | 91 | '@nodelib/fs.scandir@2.1.5': 92 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 93 | engines: {node: '>= 8'} 94 | 95 | '@nodelib/fs.stat@2.0.5': 96 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 97 | engines: {node: '>= 8'} 98 | 99 | '@nodelib/fs.walk@1.2.8': 100 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 101 | engines: {node: '>= 8'} 102 | 103 | '@types/json-schema@7.0.15': 104 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 105 | 106 | '@types/retry@0.12.0': 107 | resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} 108 | 109 | '@types/semver@7.5.8': 110 | resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} 111 | 112 | '@types/uuid@10.0.0': 113 | resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==} 114 | 115 | '@typescript-eslint/parser@5.45.1': 116 | resolution: {integrity: sha512-JQ3Ep8bEOXu16q0ztsatp/iQfDCtvap7sp/DKo7DWltUquj5AfCOpX2zSzJ8YkAVnrQNqQ5R62PBz2UtrfmCkA==} 117 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 118 | peerDependencies: 119 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 120 | typescript: '*' 121 | peerDependenciesMeta: 122 | typescript: 123 | optional: true 124 | 125 | '@typescript-eslint/scope-manager@5.45.1': 126 | resolution: {integrity: sha512-D6fCileR6Iai7E35Eb4Kp+k0iW7F1wxXYrOhX/3dywsOJpJAQ20Fwgcf+P/TDtvQ7zcsWsrJaglaQWDhOMsspQ==} 127 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 128 | 129 | '@typescript-eslint/scope-manager@6.21.0': 130 | resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} 131 | engines: {node: ^16.0.0 || >=18.0.0} 132 | 133 | '@typescript-eslint/types@5.45.1': 134 | resolution: {integrity: sha512-HEW3U0E5dLjUT+nk7b4lLbOherS1U4ap+b9pfu2oGsW3oPu7genRaY9dDv3nMczC1rbnRY2W/D7SN05wYoGImg==} 135 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 136 | 137 | '@typescript-eslint/types@6.21.0': 138 | resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} 139 | engines: {node: ^16.0.0 || >=18.0.0} 140 | 141 | '@typescript-eslint/typescript-estree@5.45.1': 142 | resolution: {integrity: sha512-76NZpmpCzWVrrb0XmYEpbwOz/FENBi+5W7ipVXAsG3OoFrQKJMiaqsBMbvGRyLtPotGqUfcY7Ur8j0dksDJDng==} 143 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 144 | peerDependencies: 145 | typescript: '*' 146 | peerDependenciesMeta: 147 | typescript: 148 | optional: true 149 | 150 | '@typescript-eslint/typescript-estree@6.21.0': 151 | resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} 152 | engines: {node: ^16.0.0 || >=18.0.0} 153 | peerDependencies: 154 | typescript: '*' 155 | peerDependenciesMeta: 156 | typescript: 157 | optional: true 158 | 159 | '@typescript-eslint/utils@6.21.0': 160 | resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} 161 | engines: {node: ^16.0.0 || >=18.0.0} 162 | peerDependencies: 163 | eslint: ^7.0.0 || ^8.0.0 164 | 165 | '@typescript-eslint/visitor-keys@5.45.1': 166 | resolution: {integrity: sha512-cy9ln+6rmthYWjH9fmx+5FU/JDpjQb586++x2FZlveq7GdGuLLW9a2Jcst2TGekH82bXpfmRNSwP9tyEs6RjvQ==} 167 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 168 | 169 | '@typescript-eslint/visitor-keys@6.21.0': 170 | resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} 171 | engines: {node: ^16.0.0 || >=18.0.0} 172 | 173 | '@ungap/structured-clone@1.3.0': 174 | resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 175 | 176 | acorn-jsx@5.3.2: 177 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 178 | peerDependencies: 179 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 180 | 181 | acorn@8.14.0: 182 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 183 | engines: {node: '>=0.4.0'} 184 | hasBin: true 185 | 186 | ajv@6.12.6: 187 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 188 | 189 | ansi-colors@1.1.0: 190 | resolution: {integrity: sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==} 191 | engines: {node: '>=0.10.0'} 192 | 193 | ansi-gray@0.1.1: 194 | resolution: {integrity: sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==} 195 | engines: {node: '>=0.10.0'} 196 | 197 | ansi-regex@2.1.1: 198 | resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} 199 | engines: {node: '>=0.10.0'} 200 | 201 | ansi-regex@5.0.1: 202 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 203 | engines: {node: '>=8'} 204 | 205 | ansi-styles@4.3.0: 206 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 207 | engines: {node: '>=8'} 208 | 209 | ansi-styles@5.2.0: 210 | resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 211 | engines: {node: '>=10'} 212 | 213 | ansi-wrap@0.1.0: 214 | resolution: {integrity: sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==} 215 | engines: {node: '>=0.10.0'} 216 | 217 | anymatch@2.0.0: 218 | resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} 219 | 220 | append-buffer@1.0.2: 221 | resolution: {integrity: sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==} 222 | engines: {node: '>=0.10.0'} 223 | 224 | archy@1.0.0: 225 | resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} 226 | 227 | argparse@2.0.1: 228 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 229 | 230 | arr-diff@4.0.0: 231 | resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} 232 | engines: {node: '>=0.10.0'} 233 | 234 | arr-filter@1.1.2: 235 | resolution: {integrity: sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==} 236 | engines: {node: '>=0.10.0'} 237 | 238 | arr-flatten@1.1.0: 239 | resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} 240 | engines: {node: '>=0.10.0'} 241 | 242 | arr-map@2.0.2: 243 | resolution: {integrity: sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==} 244 | engines: {node: '>=0.10.0'} 245 | 246 | arr-union@3.1.0: 247 | resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} 248 | engines: {node: '>=0.10.0'} 249 | 250 | array-each@1.0.1: 251 | resolution: {integrity: sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==} 252 | engines: {node: '>=0.10.0'} 253 | 254 | array-initial@1.1.0: 255 | resolution: {integrity: sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==} 256 | engines: {node: '>=0.10.0'} 257 | 258 | array-last@1.3.0: 259 | resolution: {integrity: sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==} 260 | engines: {node: '>=0.10.0'} 261 | 262 | array-slice@1.1.0: 263 | resolution: {integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==} 264 | engines: {node: '>=0.10.0'} 265 | 266 | array-sort@1.0.0: 267 | resolution: {integrity: sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==} 268 | engines: {node: '>=0.10.0'} 269 | 270 | array-union@2.1.0: 271 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 272 | engines: {node: '>=8'} 273 | 274 | array-unique@0.3.2: 275 | resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} 276 | engines: {node: '>=0.10.0'} 277 | 278 | assert@2.1.0: 279 | resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} 280 | 281 | assign-symbols@1.0.0: 282 | resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} 283 | engines: {node: '>=0.10.0'} 284 | 285 | ast-types@0.15.2: 286 | resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} 287 | engines: {node: '>=4'} 288 | 289 | ast-types@0.16.1: 290 | resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} 291 | engines: {node: '>=4'} 292 | 293 | async-done@1.3.2: 294 | resolution: {integrity: sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==} 295 | engines: {node: '>= 0.10'} 296 | 297 | async-each@1.0.6: 298 | resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} 299 | 300 | async-settle@1.0.0: 301 | resolution: {integrity: sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==} 302 | engines: {node: '>= 0.10'} 303 | 304 | asynckit@0.4.0: 305 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 306 | 307 | atob@2.1.2: 308 | resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} 309 | engines: {node: '>= 4.5.0'} 310 | hasBin: true 311 | 312 | available-typed-arrays@1.0.7: 313 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 314 | engines: {node: '>= 0.4'} 315 | 316 | axios@1.7.4: 317 | resolution: {integrity: sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==} 318 | 319 | bach@1.2.0: 320 | resolution: {integrity: sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==} 321 | engines: {node: '>= 0.10'} 322 | 323 | balanced-match@1.0.2: 324 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 325 | 326 | base64-js@1.5.1: 327 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 328 | 329 | base@0.11.2: 330 | resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} 331 | engines: {node: '>=0.10.0'} 332 | 333 | binary-extensions@1.13.1: 334 | resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} 335 | engines: {node: '>=0.10.0'} 336 | 337 | binary-search@1.3.6: 338 | resolution: {integrity: sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==} 339 | 340 | bindings@1.5.0: 341 | resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} 342 | 343 | brace-expansion@1.1.11: 344 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 345 | 346 | brace-expansion@2.0.1: 347 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 348 | 349 | braces@2.3.2: 350 | resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} 351 | engines: {node: '>=0.10.0'} 352 | 353 | braces@3.0.3: 354 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 355 | engines: {node: '>=8'} 356 | 357 | buffer-equal@1.0.1: 358 | resolution: {integrity: sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==} 359 | engines: {node: '>=0.4'} 360 | 361 | buffer-from@1.1.2: 362 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 363 | 364 | bytes@3.1.2: 365 | resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 366 | engines: {node: '>= 0.8'} 367 | 368 | cache-base@1.0.1: 369 | resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} 370 | engines: {node: '>=0.10.0'} 371 | 372 | call-bind-apply-helpers@1.0.2: 373 | resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} 374 | engines: {node: '>= 0.4'} 375 | 376 | call-bind@1.0.8: 377 | resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 378 | engines: {node: '>= 0.4'} 379 | 380 | call-bound@1.0.3: 381 | resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} 382 | engines: {node: '>= 0.4'} 383 | 384 | callsites@3.1.0: 385 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 386 | engines: {node: '>=6'} 387 | 388 | camel-case@4.1.2: 389 | resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} 390 | 391 | camelcase@3.0.0: 392 | resolution: {integrity: sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==} 393 | engines: {node: '>=0.10.0'} 394 | 395 | camelcase@6.3.0: 396 | resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} 397 | engines: {node: '>=10'} 398 | 399 | chalk@4.1.2: 400 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 401 | engines: {node: '>=10'} 402 | 403 | charenc@0.0.2: 404 | resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} 405 | 406 | chokidar@2.1.8: 407 | resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} 408 | 409 | class-utils@0.3.6: 410 | resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} 411 | engines: {node: '>=0.10.0'} 412 | 413 | cliui@3.2.0: 414 | resolution: {integrity: sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==} 415 | 416 | cliui@8.0.1: 417 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 418 | engines: {node: '>=12'} 419 | 420 | clone-buffer@1.0.0: 421 | resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} 422 | engines: {node: '>= 0.10'} 423 | 424 | clone-stats@1.0.0: 425 | resolution: {integrity: sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==} 426 | 427 | clone@2.1.2: 428 | resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} 429 | engines: {node: '>=0.8'} 430 | 431 | cloneable-readable@1.1.3: 432 | resolution: {integrity: sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==} 433 | 434 | code-point-at@1.1.0: 435 | resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} 436 | engines: {node: '>=0.10.0'} 437 | 438 | collection-map@1.0.0: 439 | resolution: {integrity: sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==} 440 | engines: {node: '>=0.10.0'} 441 | 442 | collection-visit@1.0.0: 443 | resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} 444 | engines: {node: '>=0.10.0'} 445 | 446 | color-convert@2.0.1: 447 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 448 | engines: {node: '>=7.0.0'} 449 | 450 | color-name@1.1.4: 451 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 452 | 453 | color-support@1.1.3: 454 | resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} 455 | hasBin: true 456 | 457 | combined-stream@1.0.8: 458 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 459 | engines: {node: '>= 0.8'} 460 | 461 | commander@10.0.1: 462 | resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} 463 | engines: {node: '>=14'} 464 | 465 | component-emitter@1.3.1: 466 | resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} 467 | 468 | concat-map@0.0.1: 469 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 470 | 471 | concat-stream@1.6.2: 472 | resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} 473 | engines: {'0': node >= 0.8} 474 | 475 | content-type@1.0.5: 476 | resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 477 | engines: {node: '>= 0.6'} 478 | 479 | convert-source-map@1.9.0: 480 | resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} 481 | 482 | copy-descriptor@0.1.1: 483 | resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} 484 | engines: {node: '>=0.10.0'} 485 | 486 | copy-props@2.0.5: 487 | resolution: {integrity: sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==} 488 | 489 | core-util-is@1.0.3: 490 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 491 | 492 | cross-spawn@7.0.6: 493 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 494 | engines: {node: '>= 8'} 495 | 496 | crypt@0.0.2: 497 | resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} 498 | 499 | d@1.0.2: 500 | resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} 501 | engines: {node: '>=0.12'} 502 | 503 | debug@2.6.9: 504 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 505 | peerDependencies: 506 | supports-color: '*' 507 | peerDependenciesMeta: 508 | supports-color: 509 | optional: true 510 | 511 | debug@4.4.0: 512 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 513 | engines: {node: '>=6.0'} 514 | peerDependencies: 515 | supports-color: '*' 516 | peerDependenciesMeta: 517 | supports-color: 518 | optional: true 519 | 520 | decamelize@1.2.0: 521 | resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} 522 | engines: {node: '>=0.10.0'} 523 | 524 | decode-uri-component@0.2.2: 525 | resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} 526 | engines: {node: '>=0.10'} 527 | 528 | deep-equal@2.2.0: 529 | resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} 530 | 531 | deep-is@0.1.4: 532 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 533 | 534 | default-compare@1.0.0: 535 | resolution: {integrity: sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==} 536 | engines: {node: '>=0.10.0'} 537 | 538 | default-resolution@2.0.0: 539 | resolution: {integrity: sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==} 540 | engines: {node: '>= 0.10'} 541 | 542 | define-data-property@1.1.4: 543 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 544 | engines: {node: '>= 0.4'} 545 | 546 | define-properties@1.2.1: 547 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 548 | engines: {node: '>= 0.4'} 549 | 550 | define-property@0.2.5: 551 | resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} 552 | engines: {node: '>=0.10.0'} 553 | 554 | define-property@1.0.0: 555 | resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} 556 | engines: {node: '>=0.10.0'} 557 | 558 | define-property@2.0.2: 559 | resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} 560 | engines: {node: '>=0.10.0'} 561 | 562 | delayed-stream@1.0.0: 563 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} 564 | engines: {node: '>=0.4.0'} 565 | 566 | depd@2.0.0: 567 | resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 568 | engines: {node: '>= 0.8'} 569 | 570 | detect-file@1.0.0: 571 | resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} 572 | engines: {node: '>=0.10.0'} 573 | 574 | dir-glob@3.0.1: 575 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 576 | engines: {node: '>=8'} 577 | 578 | doctrine@3.0.0: 579 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 580 | engines: {node: '>=6.0.0'} 581 | 582 | dunder-proto@1.0.1: 583 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 584 | engines: {node: '>= 0.4'} 585 | 586 | duplexify@3.7.1: 587 | resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} 588 | 589 | each-props@1.3.2: 590 | resolution: {integrity: sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==} 591 | 592 | emoji-regex@8.0.0: 593 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 594 | 595 | end-of-stream@1.4.4: 596 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 597 | 598 | error-ex@1.3.2: 599 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 600 | 601 | es-define-property@1.0.1: 602 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 603 | engines: {node: '>= 0.4'} 604 | 605 | es-errors@1.3.0: 606 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 607 | engines: {node: '>= 0.4'} 608 | 609 | es-get-iterator@1.1.3: 610 | resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} 611 | 612 | es-object-atoms@1.1.1: 613 | resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 614 | engines: {node: '>= 0.4'} 615 | 616 | es5-ext@0.10.64: 617 | resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} 618 | engines: {node: '>=0.10'} 619 | 620 | es6-iterator@2.0.3: 621 | resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} 622 | 623 | es6-symbol@3.1.4: 624 | resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} 625 | engines: {node: '>=0.12'} 626 | 627 | es6-weak-map@2.0.3: 628 | resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==} 629 | 630 | escalade@3.2.0: 631 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 632 | engines: {node: '>=6'} 633 | 634 | escape-string-regexp@4.0.0: 635 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 636 | engines: {node: '>=10'} 637 | 638 | eslint-config-riot@1.0.0: 639 | resolution: {integrity: sha512-NB/L/1Y30qyJcG5xZxCJKW/+bqyj+llbcCwo9DEz8bESIP0SLTOQ8T1DWCCFc+wJ61AMEstj4511PSScqMMfCw==} 640 | 641 | eslint-plugin-local@1.0.0: 642 | resolution: {integrity: sha512-bcwcQnKL/Iw5Vi/F2lG1he5oKD2OGjhsLmrcctkWrWq5TujgiaYb0cj3pZgr3XI54inNVnneOFdAx1daLoYLJQ==} 643 | 644 | eslint-plugin-n8n-nodes-base@1.16.3: 645 | resolution: {integrity: sha512-edLX42Vg4B+y0kzkitTVDmHZQrG5/wUZO874N5Z9leBuxt5TG1pqMY4zdr35RlpM4p4REr/T9x+6DpsQSL63WA==} 646 | engines: {node: '>=20.15', pnpm: '>=9.6'} 647 | 648 | eslint-scope@7.2.2: 649 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 650 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 651 | 652 | eslint-visitor-keys@3.4.3: 653 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 654 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 655 | 656 | eslint@8.57.1: 657 | resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} 658 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 659 | deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. 660 | hasBin: true 661 | 662 | esniff@2.0.1: 663 | resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} 664 | engines: {node: '>=0.10'} 665 | 666 | espree@9.6.1: 667 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 668 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 669 | 670 | esprima-next@5.8.4: 671 | resolution: {integrity: sha512-8nYVZ4ioIH4Msjb/XmhnBdz5WRRBaYqevKa1cv9nGJdCehMbzZCPNEEnqfLCZVetUVrUPEcb5IYyu1GG4hFqgg==} 672 | engines: {node: '>=12'} 673 | hasBin: true 674 | 675 | esprima@4.0.1: 676 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 677 | engines: {node: '>=4'} 678 | hasBin: true 679 | 680 | esquery@1.6.0: 681 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 682 | engines: {node: '>=0.10'} 683 | 684 | esrecurse@4.3.0: 685 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 686 | engines: {node: '>=4.0'} 687 | 688 | estraverse@5.3.0: 689 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 690 | engines: {node: '>=4.0'} 691 | 692 | esutils@2.0.3: 693 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 694 | engines: {node: '>=0.10.0'} 695 | 696 | event-emitter@0.3.5: 697 | resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} 698 | 699 | eventemitter3@4.0.7: 700 | resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} 701 | 702 | eventsource-parser@3.0.0: 703 | resolution: {integrity: sha512-T1C0XCUimhxVQzW4zFipdx0SficT651NnkR0ZSH3yQwh+mFMdLfgjABVi4YtMTtaL4s168593DaoaRLMqryavA==} 704 | engines: {node: '>=18.0.0'} 705 | 706 | eventsource@3.0.5: 707 | resolution: {integrity: sha512-LT/5J605bx5SNyE+ITBDiM3FxffBiq9un7Vx0EwMDM3vg8sWKx/tO2zC+LMqZ+smAM0F2hblaDZUVZF0te2pSw==} 708 | engines: {node: '>=18.0.0'} 709 | 710 | expand-brackets@2.1.4: 711 | resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} 712 | engines: {node: '>=0.10.0'} 713 | 714 | expand-tilde@2.0.2: 715 | resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} 716 | engines: {node: '>=0.10.0'} 717 | 718 | ext@1.7.0: 719 | resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} 720 | 721 | extend-shallow@2.0.1: 722 | resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} 723 | engines: {node: '>=0.10.0'} 724 | 725 | extend-shallow@3.0.2: 726 | resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} 727 | engines: {node: '>=0.10.0'} 728 | 729 | extend@3.0.2: 730 | resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 731 | 732 | extglob@2.0.4: 733 | resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} 734 | engines: {node: '>=0.10.0'} 735 | 736 | fancy-log@1.3.3: 737 | resolution: {integrity: sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==} 738 | engines: {node: '>= 0.10'} 739 | 740 | fast-deep-equal@3.1.3: 741 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 742 | 743 | fast-glob@3.3.3: 744 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 745 | engines: {node: '>=8.6.0'} 746 | 747 | fast-json-stable-stringify@2.1.0: 748 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 749 | 750 | fast-levenshtein@1.1.4: 751 | resolution: {integrity: sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==} 752 | 753 | fast-levenshtein@2.0.6: 754 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 755 | 756 | fastq@1.19.0: 757 | resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==} 758 | 759 | file-entry-cache@6.0.1: 760 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 761 | engines: {node: ^10.12.0 || >=12.0.0} 762 | 763 | file-uri-to-path@1.0.0: 764 | resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} 765 | 766 | fill-range@4.0.0: 767 | resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} 768 | engines: {node: '>=0.10.0'} 769 | 770 | fill-range@7.1.1: 771 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 772 | engines: {node: '>=8'} 773 | 774 | find-up@1.1.2: 775 | resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} 776 | engines: {node: '>=0.10.0'} 777 | 778 | find-up@5.0.0: 779 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 780 | engines: {node: '>=10'} 781 | 782 | findup-sync@2.0.0: 783 | resolution: {integrity: sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==} 784 | engines: {node: '>= 0.10'} 785 | 786 | findup-sync@3.0.0: 787 | resolution: {integrity: sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==} 788 | engines: {node: '>= 0.10'} 789 | 790 | fined@1.2.0: 791 | resolution: {integrity: sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==} 792 | engines: {node: '>= 0.10'} 793 | 794 | flagged-respawn@1.0.1: 795 | resolution: {integrity: sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==} 796 | engines: {node: '>= 0.10'} 797 | 798 | flat-cache@3.2.0: 799 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 800 | engines: {node: ^10.12.0 || >=12.0.0} 801 | 802 | flatted@3.3.2: 803 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 804 | 805 | flush-write-stream@1.1.1: 806 | resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} 807 | 808 | follow-redirects@1.15.9: 809 | resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} 810 | engines: {node: '>=4.0'} 811 | peerDependencies: 812 | debug: '*' 813 | peerDependenciesMeta: 814 | debug: 815 | optional: true 816 | 817 | for-each@0.3.5: 818 | resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} 819 | engines: {node: '>= 0.4'} 820 | 821 | for-in@1.0.2: 822 | resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} 823 | engines: {node: '>=0.10.0'} 824 | 825 | for-own@1.0.0: 826 | resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==} 827 | engines: {node: '>=0.10.0'} 828 | 829 | form-data@4.0.0: 830 | resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} 831 | engines: {node: '>= 6'} 832 | 833 | fragment-cache@0.2.1: 834 | resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} 835 | engines: {node: '>=0.10.0'} 836 | 837 | fs-mkdirp-stream@1.0.0: 838 | resolution: {integrity: sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==} 839 | engines: {node: '>= 0.10'} 840 | 841 | fs.realpath@1.0.0: 842 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 843 | 844 | fsevents@1.2.13: 845 | resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} 846 | engines: {node: '>= 4.0'} 847 | os: [darwin] 848 | deprecated: Upgrade to fsevents v2 to mitigate potential security issues 849 | 850 | function-bind@1.1.2: 851 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 852 | 853 | functions-have-names@1.2.3: 854 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 855 | 856 | get-caller-file@1.0.3: 857 | resolution: {integrity: sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==} 858 | 859 | get-caller-file@2.0.5: 860 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 861 | engines: {node: 6.* || 8.* || >= 10.*} 862 | 863 | get-intrinsic@1.2.7: 864 | resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==} 865 | engines: {node: '>= 0.4'} 866 | 867 | get-proto@1.0.1: 868 | resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 869 | engines: {node: '>= 0.4'} 870 | 871 | get-value@2.0.6: 872 | resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} 873 | engines: {node: '>=0.10.0'} 874 | 875 | glob-parent@3.1.0: 876 | resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} 877 | 878 | glob-parent@5.1.2: 879 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 880 | engines: {node: '>= 6'} 881 | 882 | glob-parent@6.0.2: 883 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 884 | engines: {node: '>=10.13.0'} 885 | 886 | glob-stream@6.1.0: 887 | resolution: {integrity: sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==} 888 | engines: {node: '>= 0.10'} 889 | 890 | glob-watcher@5.0.5: 891 | resolution: {integrity: sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==} 892 | engines: {node: '>= 0.10'} 893 | 894 | glob@7.2.3: 895 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 896 | deprecated: Glob versions prior to v9 are no longer supported 897 | 898 | global-modules@1.0.0: 899 | resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} 900 | engines: {node: '>=0.10.0'} 901 | 902 | global-prefix@1.0.2: 903 | resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} 904 | engines: {node: '>=0.10.0'} 905 | 906 | globals@13.24.0: 907 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 908 | engines: {node: '>=8'} 909 | 910 | globby@11.1.0: 911 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 912 | engines: {node: '>=10'} 913 | 914 | glogg@1.0.2: 915 | resolution: {integrity: sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==} 916 | engines: {node: '>= 0.10'} 917 | 918 | gopd@1.2.0: 919 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 920 | engines: {node: '>= 0.4'} 921 | 922 | graceful-fs@4.2.11: 923 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 924 | 925 | graphemer@1.4.0: 926 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 927 | 928 | gulp-cli@2.3.0: 929 | resolution: {integrity: sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==} 930 | engines: {node: '>= 0.10'} 931 | hasBin: true 932 | 933 | gulp@4.0.2: 934 | resolution: {integrity: sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==} 935 | engines: {node: '>= 0.10'} 936 | hasBin: true 937 | 938 | gulplog@1.0.0: 939 | resolution: {integrity: sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==} 940 | engines: {node: '>= 0.10'} 941 | 942 | has-bigints@1.1.0: 943 | resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} 944 | engines: {node: '>= 0.4'} 945 | 946 | has-flag@4.0.0: 947 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 948 | engines: {node: '>=8'} 949 | 950 | has-property-descriptors@1.0.2: 951 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 952 | 953 | has-symbols@1.1.0: 954 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 955 | engines: {node: '>= 0.4'} 956 | 957 | has-tostringtag@1.0.2: 958 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 959 | engines: {node: '>= 0.4'} 960 | 961 | has-value@0.3.1: 962 | resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} 963 | engines: {node: '>=0.10.0'} 964 | 965 | has-value@1.0.0: 966 | resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} 967 | engines: {node: '>=0.10.0'} 968 | 969 | has-values@0.1.4: 970 | resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} 971 | engines: {node: '>=0.10.0'} 972 | 973 | has-values@1.0.0: 974 | resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} 975 | engines: {node: '>=0.10.0'} 976 | 977 | hasown@2.0.2: 978 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 979 | engines: {node: '>= 0.4'} 980 | 981 | homedir-polyfill@1.0.3: 982 | resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} 983 | engines: {node: '>=0.10.0'} 984 | 985 | hosted-git-info@2.8.9: 986 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} 987 | 988 | http-errors@2.0.0: 989 | resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 990 | engines: {node: '>= 0.8'} 991 | 992 | iconv-lite@0.6.3: 993 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 994 | engines: {node: '>=0.10.0'} 995 | 996 | ignore@5.3.2: 997 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 998 | engines: {node: '>= 4'} 999 | 1000 | import-fresh@3.3.1: 1001 | resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} 1002 | engines: {node: '>=6'} 1003 | 1004 | imurmurhash@0.1.4: 1005 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1006 | engines: {node: '>=0.8.19'} 1007 | 1008 | indefinite@2.5.1: 1009 | resolution: {integrity: sha512-Ul0hCdnSjuFDEloYWeozTaEfljbz+0q+u4HsHns2dOk2DlhGlbRMGFtNcIL+Ve7sZYeIOTOAKA0usAXBGHpNDg==} 1010 | engines: {node: '>=6.0.0'} 1011 | 1012 | inflight@1.0.6: 1013 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1014 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 1015 | 1016 | inherits@2.0.4: 1017 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1018 | 1019 | ini@1.3.8: 1020 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1021 | 1022 | internal-slot@1.1.0: 1023 | resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} 1024 | engines: {node: '>= 0.4'} 1025 | 1026 | interpret@1.4.0: 1027 | resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} 1028 | engines: {node: '>= 0.10'} 1029 | 1030 | invert-kv@1.0.0: 1031 | resolution: {integrity: sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==} 1032 | engines: {node: '>=0.10.0'} 1033 | 1034 | is-absolute@1.0.0: 1035 | resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} 1036 | engines: {node: '>=0.10.0'} 1037 | 1038 | is-accessor-descriptor@1.0.1: 1039 | resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} 1040 | engines: {node: '>= 0.10'} 1041 | 1042 | is-any-array@2.0.1: 1043 | resolution: {integrity: sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==} 1044 | 1045 | is-arguments@1.2.0: 1046 | resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} 1047 | engines: {node: '>= 0.4'} 1048 | 1049 | is-array-buffer@3.0.5: 1050 | resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} 1051 | engines: {node: '>= 0.4'} 1052 | 1053 | is-arrayish@0.2.1: 1054 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1055 | 1056 | is-bigint@1.1.0: 1057 | resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} 1058 | engines: {node: '>= 0.4'} 1059 | 1060 | is-binary-path@1.0.1: 1061 | resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} 1062 | engines: {node: '>=0.10.0'} 1063 | 1064 | is-boolean-object@1.2.2: 1065 | resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} 1066 | engines: {node: '>= 0.4'} 1067 | 1068 | is-buffer@1.1.6: 1069 | resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} 1070 | 1071 | is-callable@1.2.7: 1072 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1073 | engines: {node: '>= 0.4'} 1074 | 1075 | is-core-module@2.16.1: 1076 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 1077 | engines: {node: '>= 0.4'} 1078 | 1079 | is-data-descriptor@1.0.1: 1080 | resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} 1081 | engines: {node: '>= 0.4'} 1082 | 1083 | is-date-object@1.1.0: 1084 | resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} 1085 | engines: {node: '>= 0.4'} 1086 | 1087 | is-descriptor@0.1.7: 1088 | resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} 1089 | engines: {node: '>= 0.4'} 1090 | 1091 | is-descriptor@1.0.3: 1092 | resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} 1093 | engines: {node: '>= 0.4'} 1094 | 1095 | is-extendable@0.1.1: 1096 | resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} 1097 | engines: {node: '>=0.10.0'} 1098 | 1099 | is-extendable@1.0.1: 1100 | resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} 1101 | engines: {node: '>=0.10.0'} 1102 | 1103 | is-extglob@2.1.1: 1104 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1105 | engines: {node: '>=0.10.0'} 1106 | 1107 | is-fullwidth-code-point@1.0.0: 1108 | resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} 1109 | engines: {node: '>=0.10.0'} 1110 | 1111 | is-fullwidth-code-point@3.0.0: 1112 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1113 | engines: {node: '>=8'} 1114 | 1115 | is-generator-function@1.1.0: 1116 | resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} 1117 | engines: {node: '>= 0.4'} 1118 | 1119 | is-glob@3.1.0: 1120 | resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} 1121 | engines: {node: '>=0.10.0'} 1122 | 1123 | is-glob@4.0.3: 1124 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1125 | engines: {node: '>=0.10.0'} 1126 | 1127 | is-map@2.0.3: 1128 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1129 | engines: {node: '>= 0.4'} 1130 | 1131 | is-nan@1.3.2: 1132 | resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} 1133 | engines: {node: '>= 0.4'} 1134 | 1135 | is-negated-glob@1.0.0: 1136 | resolution: {integrity: sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==} 1137 | engines: {node: '>=0.10.0'} 1138 | 1139 | is-number-object@1.1.1: 1140 | resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} 1141 | engines: {node: '>= 0.4'} 1142 | 1143 | is-number@3.0.0: 1144 | resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} 1145 | engines: {node: '>=0.10.0'} 1146 | 1147 | is-number@4.0.0: 1148 | resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} 1149 | engines: {node: '>=0.10.0'} 1150 | 1151 | is-number@7.0.0: 1152 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1153 | engines: {node: '>=0.12.0'} 1154 | 1155 | is-path-inside@3.0.3: 1156 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1157 | engines: {node: '>=8'} 1158 | 1159 | is-plain-object@2.0.4: 1160 | resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} 1161 | engines: {node: '>=0.10.0'} 1162 | 1163 | is-plain-object@5.0.0: 1164 | resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} 1165 | engines: {node: '>=0.10.0'} 1166 | 1167 | is-regex@1.2.1: 1168 | resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 1169 | engines: {node: '>= 0.4'} 1170 | 1171 | is-relative@1.0.0: 1172 | resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} 1173 | engines: {node: '>=0.10.0'} 1174 | 1175 | is-set@2.0.3: 1176 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1177 | engines: {node: '>= 0.4'} 1178 | 1179 | is-shared-array-buffer@1.0.4: 1180 | resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} 1181 | engines: {node: '>= 0.4'} 1182 | 1183 | is-string@1.1.1: 1184 | resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} 1185 | engines: {node: '>= 0.4'} 1186 | 1187 | is-symbol@1.1.1: 1188 | resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} 1189 | engines: {node: '>= 0.4'} 1190 | 1191 | is-typed-array@1.1.15: 1192 | resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 1193 | engines: {node: '>= 0.4'} 1194 | 1195 | is-unc-path@1.0.0: 1196 | resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} 1197 | engines: {node: '>=0.10.0'} 1198 | 1199 | is-utf8@0.2.1: 1200 | resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} 1201 | 1202 | is-valid-glob@1.0.0: 1203 | resolution: {integrity: sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==} 1204 | engines: {node: '>=0.10.0'} 1205 | 1206 | is-weakmap@2.0.2: 1207 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1208 | engines: {node: '>= 0.4'} 1209 | 1210 | is-weakset@2.0.4: 1211 | resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} 1212 | engines: {node: '>= 0.4'} 1213 | 1214 | is-windows@1.0.2: 1215 | resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} 1216 | engines: {node: '>=0.10.0'} 1217 | 1218 | isarray@1.0.0: 1219 | resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 1220 | 1221 | isarray@2.0.5: 1222 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1223 | 1224 | isexe@2.0.0: 1225 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1226 | 1227 | isobject@2.1.0: 1228 | resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} 1229 | engines: {node: '>=0.10.0'} 1230 | 1231 | isobject@3.0.1: 1232 | resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} 1233 | engines: {node: '>=0.10.0'} 1234 | 1235 | jmespath@0.16.0: 1236 | resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==} 1237 | engines: {node: '>= 0.6.0'} 1238 | 1239 | js-base64@3.7.2: 1240 | resolution: {integrity: sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==} 1241 | 1242 | js-tiktoken@1.0.19: 1243 | resolution: {integrity: sha512-XC63YQeEcS47Y53gg950xiZ4IWmkfMe4p2V9OSaBt26q+p47WHn18izuXzSclCI73B7yGqtfRsT6jcZQI0y08g==} 1244 | 1245 | js-yaml@4.1.0: 1246 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1247 | hasBin: true 1248 | 1249 | json-buffer@3.0.1: 1250 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1251 | 1252 | json-schema-traverse@0.4.1: 1253 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1254 | 1255 | json-stable-stringify-without-jsonify@1.0.1: 1256 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1257 | 1258 | jssha@3.3.1: 1259 | resolution: {integrity: sha512-VCMZj12FCFMQYcFLPRm/0lOBbLi8uM2BhXPTqw3U4YAfs4AZfiApOoBLoN8cQE60Z50m1MYMTQVCfgF/KaCVhQ==} 1260 | 1261 | just-debounce@1.1.0: 1262 | resolution: {integrity: sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==} 1263 | 1264 | keyv@4.5.4: 1265 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1266 | 1267 | kind-of@3.2.2: 1268 | resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} 1269 | engines: {node: '>=0.10.0'} 1270 | 1271 | kind-of@4.0.0: 1272 | resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} 1273 | engines: {node: '>=0.10.0'} 1274 | 1275 | kind-of@5.1.0: 1276 | resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} 1277 | engines: {node: '>=0.10.0'} 1278 | 1279 | kind-of@6.0.3: 1280 | resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} 1281 | engines: {node: '>=0.10.0'} 1282 | 1283 | langsmith@0.1.68: 1284 | resolution: {integrity: sha512-otmiysWtVAqzMx3CJ4PrtUBhWRG5Co8Z4o7hSZENPjlit9/j3/vm3TSvbaxpDYakZxtMjhkcJTqrdYFipISEiQ==} 1285 | peerDependencies: 1286 | openai: '*' 1287 | peerDependenciesMeta: 1288 | openai: 1289 | optional: true 1290 | 1291 | last-run@1.1.1: 1292 | resolution: {integrity: sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==} 1293 | engines: {node: '>= 0.10'} 1294 | 1295 | lazystream@1.0.1: 1296 | resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} 1297 | engines: {node: '>= 0.6.3'} 1298 | 1299 | lcid@1.0.0: 1300 | resolution: {integrity: sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==} 1301 | engines: {node: '>=0.10.0'} 1302 | 1303 | lead@1.0.0: 1304 | resolution: {integrity: sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==} 1305 | engines: {node: '>= 0.10'} 1306 | 1307 | levn@0.4.1: 1308 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1309 | engines: {node: '>= 0.8.0'} 1310 | 1311 | liftoff@3.1.0: 1312 | resolution: {integrity: sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==} 1313 | engines: {node: '>= 0.8'} 1314 | 1315 | load-json-file@1.1.0: 1316 | resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} 1317 | engines: {node: '>=0.10.0'} 1318 | 1319 | locate-path@6.0.0: 1320 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1321 | engines: {node: '>=10'} 1322 | 1323 | lodash.merge@4.6.2: 1324 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1325 | 1326 | lodash@4.17.21: 1327 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1328 | 1329 | lower-case@2.0.2: 1330 | resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 1331 | 1332 | luxon@3.4.4: 1333 | resolution: {integrity: sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==} 1334 | engines: {node: '>=12'} 1335 | 1336 | make-iterator@1.0.1: 1337 | resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==} 1338 | engines: {node: '>=0.10.0'} 1339 | 1340 | map-cache@0.2.2: 1341 | resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} 1342 | engines: {node: '>=0.10.0'} 1343 | 1344 | map-visit@1.0.0: 1345 | resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} 1346 | engines: {node: '>=0.10.0'} 1347 | 1348 | matchdep@2.0.0: 1349 | resolution: {integrity: sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==} 1350 | engines: {node: '>= 0.10.0'} 1351 | 1352 | math-intrinsics@1.1.0: 1353 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 1354 | engines: {node: '>= 0.4'} 1355 | 1356 | md5@2.3.0: 1357 | resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} 1358 | 1359 | merge2@1.4.1: 1360 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1361 | engines: {node: '>= 8'} 1362 | 1363 | micromatch@3.1.10: 1364 | resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} 1365 | engines: {node: '>=0.10.0'} 1366 | 1367 | micromatch@4.0.8: 1368 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1369 | engines: {node: '>=8.6'} 1370 | 1371 | mime-db@1.52.0: 1372 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 1373 | engines: {node: '>= 0.6'} 1374 | 1375 | mime-types@2.1.35: 1376 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 1377 | engines: {node: '>= 0.6'} 1378 | 1379 | minimatch@3.1.2: 1380 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1381 | 1382 | minimatch@9.0.3: 1383 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 1384 | engines: {node: '>=16 || 14 >=14.17'} 1385 | 1386 | mixin-deep@1.3.2: 1387 | resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} 1388 | engines: {node: '>=0.10.0'} 1389 | 1390 | ml-array-mean@1.1.6: 1391 | resolution: {integrity: sha512-MIdf7Zc8HznwIisyiJGRH9tRigg3Yf4FldW8DxKxpCCv/g5CafTw0RRu51nojVEOXuCQC7DRVVu5c7XXO/5joQ==} 1392 | 1393 | ml-array-sum@1.1.6: 1394 | resolution: {integrity: sha512-29mAh2GwH7ZmiRnup4UyibQZB9+ZLyMShvt4cH4eTK+cL2oEMIZFnSyB3SS8MlsTh6q/w/yh48KmqLxmovN4Dw==} 1395 | 1396 | ml-distance-euclidean@2.0.0: 1397 | resolution: {integrity: sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q==} 1398 | 1399 | ml-distance@4.0.1: 1400 | resolution: {integrity: sha512-feZ5ziXs01zhyFUUUeZV5hwc0f5JW0Sh0ckU1koZe/wdVkJdGxcP06KNQuF0WBTj8FttQUzcvQcpcrOp/XrlEw==} 1401 | 1402 | ml-tree-similarity@1.0.0: 1403 | resolution: {integrity: sha512-XJUyYqjSuUQkNQHMscr6tcjldsOoAekxADTplt40QKfwW6nd++1wHWV9AArl0Zvw/TIHgNaZZNvr8QGvE8wLRg==} 1404 | 1405 | ms@2.0.0: 1406 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 1407 | 1408 | ms@2.1.3: 1409 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1410 | 1411 | mustache@4.2.0: 1412 | resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} 1413 | hasBin: true 1414 | 1415 | mute-stdout@1.0.1: 1416 | resolution: {integrity: sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==} 1417 | engines: {node: '>= 0.10'} 1418 | 1419 | n8n-workflow@1.70.0: 1420 | resolution: {integrity: sha512-suA+HJfpsggRAegtz8TQbgRgyPBgnDSVdacJJsaijH6lYaTb5yw3/bhiY/SvdfJdLzZ/E4UCswsSCVGfAGEs3A==} 1421 | 1422 | nan@2.22.0: 1423 | resolution: {integrity: sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==} 1424 | 1425 | nanomatch@1.2.13: 1426 | resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} 1427 | engines: {node: '>=0.10.0'} 1428 | 1429 | natural-compare@1.4.0: 1430 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1431 | 1432 | next-tick@1.1.0: 1433 | resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} 1434 | 1435 | no-case@3.0.4: 1436 | resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 1437 | 1438 | normalize-package-data@2.5.0: 1439 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 1440 | 1441 | normalize-path@2.1.1: 1442 | resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} 1443 | engines: {node: '>=0.10.0'} 1444 | 1445 | normalize-path@3.0.0: 1446 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1447 | engines: {node: '>=0.10.0'} 1448 | 1449 | now-and-later@2.0.1: 1450 | resolution: {integrity: sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==} 1451 | engines: {node: '>= 0.10'} 1452 | 1453 | num-sort@2.1.0: 1454 | resolution: {integrity: sha512-1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg==} 1455 | engines: {node: '>=8'} 1456 | 1457 | number-is-nan@1.0.1: 1458 | resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} 1459 | engines: {node: '>=0.10.0'} 1460 | 1461 | object-copy@0.1.0: 1462 | resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} 1463 | engines: {node: '>=0.10.0'} 1464 | 1465 | object-inspect@1.13.4: 1466 | resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 1467 | engines: {node: '>= 0.4'} 1468 | 1469 | object-is@1.1.6: 1470 | resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} 1471 | engines: {node: '>= 0.4'} 1472 | 1473 | object-keys@1.1.1: 1474 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1475 | engines: {node: '>= 0.4'} 1476 | 1477 | object-visit@1.0.1: 1478 | resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} 1479 | engines: {node: '>=0.10.0'} 1480 | 1481 | object.assign@4.1.7: 1482 | resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 1483 | engines: {node: '>= 0.4'} 1484 | 1485 | object.defaults@1.1.0: 1486 | resolution: {integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==} 1487 | engines: {node: '>=0.10.0'} 1488 | 1489 | object.map@1.0.1: 1490 | resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==} 1491 | engines: {node: '>=0.10.0'} 1492 | 1493 | object.pick@1.3.0: 1494 | resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} 1495 | engines: {node: '>=0.10.0'} 1496 | 1497 | object.reduce@1.0.1: 1498 | resolution: {integrity: sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==} 1499 | engines: {node: '>=0.10.0'} 1500 | 1501 | once@1.4.0: 1502 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1503 | 1504 | optionator@0.9.4: 1505 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1506 | engines: {node: '>= 0.8.0'} 1507 | 1508 | ordered-read-streams@1.0.1: 1509 | resolution: {integrity: sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==} 1510 | 1511 | os-locale@1.4.0: 1512 | resolution: {integrity: sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==} 1513 | engines: {node: '>=0.10.0'} 1514 | 1515 | p-finally@1.0.0: 1516 | resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} 1517 | engines: {node: '>=4'} 1518 | 1519 | p-limit@3.1.0: 1520 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1521 | engines: {node: '>=10'} 1522 | 1523 | p-locate@5.0.0: 1524 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1525 | engines: {node: '>=10'} 1526 | 1527 | p-queue@6.6.2: 1528 | resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} 1529 | engines: {node: '>=8'} 1530 | 1531 | p-retry@4.6.2: 1532 | resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} 1533 | engines: {node: '>=8'} 1534 | 1535 | p-timeout@3.2.0: 1536 | resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} 1537 | engines: {node: '>=8'} 1538 | 1539 | parent-module@1.0.1: 1540 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1541 | engines: {node: '>=6'} 1542 | 1543 | parse-filepath@1.0.2: 1544 | resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} 1545 | engines: {node: '>=0.8'} 1546 | 1547 | parse-json@2.2.0: 1548 | resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} 1549 | engines: {node: '>=0.10.0'} 1550 | 1551 | parse-node-version@1.0.1: 1552 | resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} 1553 | engines: {node: '>= 0.10'} 1554 | 1555 | parse-passwd@1.0.0: 1556 | resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} 1557 | engines: {node: '>=0.10.0'} 1558 | 1559 | pascal-case@3.1.2: 1560 | resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} 1561 | 1562 | pascalcase@0.1.1: 1563 | resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} 1564 | engines: {node: '>=0.10.0'} 1565 | 1566 | path-dirname@1.0.2: 1567 | resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} 1568 | 1569 | path-exists@2.1.0: 1570 | resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} 1571 | engines: {node: '>=0.10.0'} 1572 | 1573 | path-exists@4.0.0: 1574 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1575 | engines: {node: '>=8'} 1576 | 1577 | path-is-absolute@1.0.1: 1578 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1579 | engines: {node: '>=0.10.0'} 1580 | 1581 | path-key@3.1.1: 1582 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1583 | engines: {node: '>=8'} 1584 | 1585 | path-parse@1.0.7: 1586 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1587 | 1588 | path-root-regex@0.1.2: 1589 | resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} 1590 | engines: {node: '>=0.10.0'} 1591 | 1592 | path-root@0.1.1: 1593 | resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} 1594 | engines: {node: '>=0.10.0'} 1595 | 1596 | path-type@1.1.0: 1597 | resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} 1598 | engines: {node: '>=0.10.0'} 1599 | 1600 | path-type@4.0.0: 1601 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1602 | engines: {node: '>=8'} 1603 | 1604 | picomatch@2.3.1: 1605 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1606 | engines: {node: '>=8.6'} 1607 | 1608 | pify@2.3.0: 1609 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1610 | engines: {node: '>=0.10.0'} 1611 | 1612 | pinkie-promise@2.0.1: 1613 | resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} 1614 | engines: {node: '>=0.10.0'} 1615 | 1616 | pinkie@2.0.4: 1617 | resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} 1618 | engines: {node: '>=0.10.0'} 1619 | 1620 | pluralize@8.0.0: 1621 | resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 1622 | engines: {node: '>=4'} 1623 | 1624 | posix-character-classes@0.1.1: 1625 | resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} 1626 | engines: {node: '>=0.10.0'} 1627 | 1628 | possible-typed-array-names@1.1.0: 1629 | resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} 1630 | engines: {node: '>= 0.4'} 1631 | 1632 | prelude-ls@1.2.1: 1633 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1634 | engines: {node: '>= 0.8.0'} 1635 | 1636 | prettier@2.8.8: 1637 | resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} 1638 | engines: {node: '>=10.13.0'} 1639 | hasBin: true 1640 | 1641 | pretty-hrtime@1.0.3: 1642 | resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} 1643 | engines: {node: '>= 0.8'} 1644 | 1645 | process-nextick-args@2.0.1: 1646 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 1647 | 1648 | proxy-from-env@1.1.0: 1649 | resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} 1650 | 1651 | pump@2.0.1: 1652 | resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} 1653 | 1654 | pumpify@1.5.1: 1655 | resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} 1656 | 1657 | punycode@2.3.1: 1658 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1659 | engines: {node: '>=6'} 1660 | 1661 | queue-microtask@1.2.3: 1662 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1663 | 1664 | raw-body@3.0.0: 1665 | resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==} 1666 | engines: {node: '>= 0.8'} 1667 | 1668 | read-pkg-up@1.0.1: 1669 | resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} 1670 | engines: {node: '>=0.10.0'} 1671 | 1672 | read-pkg@1.1.0: 1673 | resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} 1674 | engines: {node: '>=0.10.0'} 1675 | 1676 | readable-stream@2.3.8: 1677 | resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 1678 | 1679 | readdirp@2.2.1: 1680 | resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} 1681 | engines: {node: '>=0.10'} 1682 | 1683 | recast@0.21.5: 1684 | resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} 1685 | engines: {node: '>= 4'} 1686 | 1687 | recast@0.22.0: 1688 | resolution: {integrity: sha512-5AAx+mujtXijsEavc5lWXBPQqrM4+Dl5qNH96N2aNeuJFUzpiiToKPsxQD/zAIJHspz7zz0maX0PCtCTFVlixQ==} 1689 | engines: {node: '>= 4'} 1690 | 1691 | rechoir@0.6.2: 1692 | resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} 1693 | engines: {node: '>= 0.10'} 1694 | 1695 | regex-not@1.0.2: 1696 | resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} 1697 | engines: {node: '>=0.10.0'} 1698 | 1699 | regexp.prototype.flags@1.5.4: 1700 | resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} 1701 | engines: {node: '>= 0.4'} 1702 | 1703 | remove-bom-buffer@3.0.0: 1704 | resolution: {integrity: sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==} 1705 | engines: {node: '>=0.10.0'} 1706 | 1707 | remove-bom-stream@1.2.0: 1708 | resolution: {integrity: sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==} 1709 | engines: {node: '>= 0.10'} 1710 | 1711 | remove-trailing-separator@1.1.0: 1712 | resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} 1713 | 1714 | repeat-element@1.1.4: 1715 | resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} 1716 | engines: {node: '>=0.10.0'} 1717 | 1718 | repeat-string@1.6.1: 1719 | resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} 1720 | engines: {node: '>=0.10'} 1721 | 1722 | replace-ext@1.0.1: 1723 | resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} 1724 | engines: {node: '>= 0.10'} 1725 | 1726 | replace-homedir@1.0.0: 1727 | resolution: {integrity: sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==} 1728 | engines: {node: '>= 0.10'} 1729 | 1730 | require-directory@2.1.1: 1731 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1732 | engines: {node: '>=0.10.0'} 1733 | 1734 | require-main-filename@1.0.1: 1735 | resolution: {integrity: sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==} 1736 | 1737 | resolve-dir@1.0.1: 1738 | resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} 1739 | engines: {node: '>=0.10.0'} 1740 | 1741 | resolve-from@4.0.0: 1742 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1743 | engines: {node: '>=4'} 1744 | 1745 | resolve-options@1.1.0: 1746 | resolution: {integrity: sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==} 1747 | engines: {node: '>= 0.10'} 1748 | 1749 | resolve-url@0.2.1: 1750 | resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} 1751 | deprecated: https://github.com/lydell/resolve-url#deprecated 1752 | 1753 | resolve@1.22.10: 1754 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 1755 | engines: {node: '>= 0.4'} 1756 | hasBin: true 1757 | 1758 | ret@0.1.15: 1759 | resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} 1760 | engines: {node: '>=0.12'} 1761 | 1762 | retry@0.13.1: 1763 | resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} 1764 | engines: {node: '>= 4'} 1765 | 1766 | reusify@1.0.4: 1767 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1768 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1769 | 1770 | rimraf@3.0.2: 1771 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1772 | deprecated: Rimraf versions prior to v4 are no longer supported 1773 | hasBin: true 1774 | 1775 | run-parallel@1.2.0: 1776 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1777 | 1778 | safe-buffer@5.1.2: 1779 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 1780 | 1781 | safe-buffer@5.2.1: 1782 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1783 | 1784 | safe-regex-test@1.1.0: 1785 | resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 1786 | engines: {node: '>= 0.4'} 1787 | 1788 | safe-regex@1.1.0: 1789 | resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} 1790 | 1791 | safer-buffer@2.1.2: 1792 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 1793 | 1794 | sax@1.4.1: 1795 | resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} 1796 | 1797 | semver-greatest-satisfied-range@1.1.0: 1798 | resolution: {integrity: sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==} 1799 | engines: {node: '>= 0.10'} 1800 | 1801 | semver@5.7.2: 1802 | resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} 1803 | hasBin: true 1804 | 1805 | semver@7.7.1: 1806 | resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} 1807 | engines: {node: '>=10'} 1808 | hasBin: true 1809 | 1810 | sentence-case@3.0.4: 1811 | resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} 1812 | 1813 | set-blocking@2.0.0: 1814 | resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} 1815 | 1816 | set-function-length@1.2.2: 1817 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1818 | engines: {node: '>= 0.4'} 1819 | 1820 | set-function-name@2.0.2: 1821 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1822 | engines: {node: '>= 0.4'} 1823 | 1824 | set-value@2.0.1: 1825 | resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} 1826 | engines: {node: '>=0.10.0'} 1827 | 1828 | setprototypeof@1.2.0: 1829 | resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 1830 | 1831 | shebang-command@2.0.0: 1832 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1833 | engines: {node: '>=8'} 1834 | 1835 | shebang-regex@3.0.0: 1836 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1837 | engines: {node: '>=8'} 1838 | 1839 | side-channel-list@1.0.0: 1840 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 1841 | engines: {node: '>= 0.4'} 1842 | 1843 | side-channel-map@1.0.1: 1844 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 1845 | engines: {node: '>= 0.4'} 1846 | 1847 | side-channel-weakmap@1.0.2: 1848 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 1849 | engines: {node: '>= 0.4'} 1850 | 1851 | side-channel@1.1.0: 1852 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 1853 | engines: {node: '>= 0.4'} 1854 | 1855 | slash@3.0.0: 1856 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1857 | engines: {node: '>=8'} 1858 | 1859 | snapdragon-node@2.1.1: 1860 | resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} 1861 | engines: {node: '>=0.10.0'} 1862 | 1863 | snapdragon-util@3.0.1: 1864 | resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} 1865 | engines: {node: '>=0.10.0'} 1866 | 1867 | snapdragon@0.8.2: 1868 | resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} 1869 | engines: {node: '>=0.10.0'} 1870 | 1871 | source-map-resolve@0.5.3: 1872 | resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} 1873 | deprecated: See https://github.com/lydell/source-map-resolve#deprecated 1874 | 1875 | source-map-url@0.4.1: 1876 | resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} 1877 | deprecated: See https://github.com/lydell/source-map-url#deprecated 1878 | 1879 | source-map@0.5.7: 1880 | resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} 1881 | engines: {node: '>=0.10.0'} 1882 | 1883 | source-map@0.6.1: 1884 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 1885 | engines: {node: '>=0.10.0'} 1886 | 1887 | sparkles@1.0.1: 1888 | resolution: {integrity: sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==} 1889 | engines: {node: '>= 0.10'} 1890 | 1891 | spdx-correct@3.2.0: 1892 | resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} 1893 | 1894 | spdx-exceptions@2.5.0: 1895 | resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} 1896 | 1897 | spdx-expression-parse@3.0.1: 1898 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 1899 | 1900 | spdx-license-ids@3.0.21: 1901 | resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==} 1902 | 1903 | split-string@3.1.0: 1904 | resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} 1905 | engines: {node: '>=0.10.0'} 1906 | 1907 | stack-trace@0.0.10: 1908 | resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} 1909 | 1910 | static-extend@0.1.2: 1911 | resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} 1912 | engines: {node: '>=0.10.0'} 1913 | 1914 | statuses@2.0.1: 1915 | resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 1916 | engines: {node: '>= 0.8'} 1917 | 1918 | stop-iteration-iterator@1.1.0: 1919 | resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} 1920 | engines: {node: '>= 0.4'} 1921 | 1922 | stream-exhaust@1.0.2: 1923 | resolution: {integrity: sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==} 1924 | 1925 | stream-shift@1.0.3: 1926 | resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} 1927 | 1928 | string-width@1.0.2: 1929 | resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} 1930 | engines: {node: '>=0.10.0'} 1931 | 1932 | string-width@4.2.3: 1933 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1934 | engines: {node: '>=8'} 1935 | 1936 | string_decoder@1.1.1: 1937 | resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 1938 | 1939 | strip-ansi@3.0.1: 1940 | resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} 1941 | engines: {node: '>=0.10.0'} 1942 | 1943 | strip-ansi@6.0.1: 1944 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1945 | engines: {node: '>=8'} 1946 | 1947 | strip-bom@2.0.0: 1948 | resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} 1949 | engines: {node: '>=0.10.0'} 1950 | 1951 | strip-json-comments@3.1.1: 1952 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1953 | engines: {node: '>=8'} 1954 | 1955 | supports-color@7.2.0: 1956 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1957 | engines: {node: '>=8'} 1958 | 1959 | supports-preserve-symlinks-flag@1.0.0: 1960 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1961 | engines: {node: '>= 0.4'} 1962 | 1963 | sver-compat@1.5.0: 1964 | resolution: {integrity: sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==} 1965 | 1966 | text-table@0.2.0: 1967 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1968 | 1969 | through2-filter@3.0.0: 1970 | resolution: {integrity: sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==} 1971 | 1972 | through2@2.0.5: 1973 | resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} 1974 | 1975 | time-stamp@1.1.0: 1976 | resolution: {integrity: sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==} 1977 | engines: {node: '>=0.10.0'} 1978 | 1979 | title-case@3.0.3: 1980 | resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} 1981 | 1982 | to-absolute-glob@2.0.2: 1983 | resolution: {integrity: sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==} 1984 | engines: {node: '>=0.10.0'} 1985 | 1986 | to-object-path@0.3.0: 1987 | resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} 1988 | engines: {node: '>=0.10.0'} 1989 | 1990 | to-regex-range@2.1.1: 1991 | resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} 1992 | engines: {node: '>=0.10.0'} 1993 | 1994 | to-regex-range@5.0.1: 1995 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1996 | engines: {node: '>=8.0'} 1997 | 1998 | to-regex@3.0.2: 1999 | resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} 2000 | engines: {node: '>=0.10.0'} 2001 | 2002 | to-through@2.0.0: 2003 | resolution: {integrity: sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==} 2004 | engines: {node: '>= 0.10'} 2005 | 2006 | toidentifier@1.0.1: 2007 | resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 2008 | engines: {node: '>=0.6'} 2009 | 2010 | transliteration@2.3.5: 2011 | resolution: {integrity: sha512-HAGI4Lq4Q9dZ3Utu2phaWgtm3vB6PkLUFqWAScg/UW+1eZ/Tg6Exo4oC0/3VUol/w4BlefLhUUSVBr/9/ZGQOw==} 2012 | engines: {node: '>=6.0.0'} 2013 | hasBin: true 2014 | 2015 | ts-api-utils@1.4.3: 2016 | resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} 2017 | engines: {node: '>=16'} 2018 | peerDependencies: 2019 | typescript: '>=4.2.0' 2020 | 2021 | tslib@1.14.1: 2022 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 2023 | 2024 | tslib@2.8.1: 2025 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 2026 | 2027 | tsutils@3.21.0: 2028 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 2029 | engines: {node: '>= 6'} 2030 | peerDependencies: 2031 | 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' 2032 | 2033 | type-check@0.4.0: 2034 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2035 | engines: {node: '>= 0.8.0'} 2036 | 2037 | type-fest@0.20.2: 2038 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2039 | engines: {node: '>=10'} 2040 | 2041 | type@2.7.3: 2042 | resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} 2043 | 2044 | typedarray@0.0.6: 2045 | resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} 2046 | 2047 | typescript@4.8.4: 2048 | resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} 2049 | engines: {node: '>=4.2.0'} 2050 | hasBin: true 2051 | 2052 | unc-path-regex@0.1.2: 2053 | resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} 2054 | engines: {node: '>=0.10.0'} 2055 | 2056 | undertaker-registry@1.0.1: 2057 | resolution: {integrity: sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==} 2058 | engines: {node: '>= 0.10'} 2059 | 2060 | undertaker@1.3.0: 2061 | resolution: {integrity: sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==} 2062 | engines: {node: '>= 0.10'} 2063 | 2064 | union-value@1.0.1: 2065 | resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} 2066 | engines: {node: '>=0.10.0'} 2067 | 2068 | unique-stream@2.3.1: 2069 | resolution: {integrity: sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==} 2070 | 2071 | unpipe@1.0.0: 2072 | resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 2073 | engines: {node: '>= 0.8'} 2074 | 2075 | unset-value@1.0.0: 2076 | resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} 2077 | engines: {node: '>=0.10.0'} 2078 | 2079 | upath@1.2.0: 2080 | resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} 2081 | engines: {node: '>=4'} 2082 | 2083 | upper-case-first@2.0.2: 2084 | resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} 2085 | 2086 | uri-js@4.4.1: 2087 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2088 | 2089 | urix@0.1.0: 2090 | resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} 2091 | deprecated: Please see https://github.com/lydell/urix#deprecated 2092 | 2093 | use@3.1.1: 2094 | resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} 2095 | engines: {node: '>=0.10.0'} 2096 | 2097 | util-deprecate@1.0.2: 2098 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2099 | 2100 | util@0.12.5: 2101 | resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} 2102 | 2103 | uuid@10.0.0: 2104 | resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} 2105 | hasBin: true 2106 | 2107 | uuid@9.0.1: 2108 | resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} 2109 | hasBin: true 2110 | 2111 | v8flags@3.2.0: 2112 | resolution: {integrity: sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==} 2113 | engines: {node: '>= 0.10'} 2114 | 2115 | validate-npm-package-license@3.0.4: 2116 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 2117 | 2118 | value-or-function@3.0.0: 2119 | resolution: {integrity: sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==} 2120 | engines: {node: '>= 0.10'} 2121 | 2122 | vinyl-fs@3.0.3: 2123 | resolution: {integrity: sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==} 2124 | engines: {node: '>= 0.10'} 2125 | 2126 | vinyl-sourcemap@1.1.0: 2127 | resolution: {integrity: sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==} 2128 | engines: {node: '>= 0.10'} 2129 | 2130 | vinyl@2.2.1: 2131 | resolution: {integrity: sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==} 2132 | engines: {node: '>= 0.10'} 2133 | 2134 | which-boxed-primitive@1.1.1: 2135 | resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} 2136 | engines: {node: '>= 0.4'} 2137 | 2138 | which-collection@1.0.2: 2139 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 2140 | engines: {node: '>= 0.4'} 2141 | 2142 | which-module@1.0.0: 2143 | resolution: {integrity: sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==} 2144 | 2145 | which-typed-array@1.1.18: 2146 | resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} 2147 | engines: {node: '>= 0.4'} 2148 | 2149 | which@1.3.1: 2150 | resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} 2151 | hasBin: true 2152 | 2153 | which@2.0.2: 2154 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2155 | engines: {node: '>= 8'} 2156 | hasBin: true 2157 | 2158 | word-wrap@1.2.5: 2159 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 2160 | engines: {node: '>=0.10.0'} 2161 | 2162 | wrap-ansi@2.1.0: 2163 | resolution: {integrity: sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==} 2164 | engines: {node: '>=0.10.0'} 2165 | 2166 | wrap-ansi@7.0.0: 2167 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2168 | engines: {node: '>=10'} 2169 | 2170 | wrappy@1.0.2: 2171 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2172 | 2173 | xml2js@0.6.2: 2174 | resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==} 2175 | engines: {node: '>=4.0.0'} 2176 | 2177 | xmlbuilder@11.0.1: 2178 | resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} 2179 | engines: {node: '>=4.0'} 2180 | 2181 | xtend@4.0.2: 2182 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 2183 | engines: {node: '>=0.4'} 2184 | 2185 | y18n@3.2.2: 2186 | resolution: {integrity: sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==} 2187 | 2188 | y18n@5.0.8: 2189 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 2190 | engines: {node: '>=10'} 2191 | 2192 | yargs-parser@21.1.1: 2193 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2194 | engines: {node: '>=12'} 2195 | 2196 | yargs-parser@5.0.1: 2197 | resolution: {integrity: sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==} 2198 | 2199 | yargs@17.7.2: 2200 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 2201 | engines: {node: '>=12'} 2202 | 2203 | yargs@7.1.2: 2204 | resolution: {integrity: sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==} 2205 | 2206 | yocto-queue@0.1.0: 2207 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2208 | engines: {node: '>=10'} 2209 | 2210 | zod-to-json-schema@3.24.1: 2211 | resolution: {integrity: sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==} 2212 | peerDependencies: 2213 | zod: ^3.24.1 2214 | 2215 | zod@3.24.2: 2216 | resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==} 2217 | 2218 | snapshots: 2219 | 2220 | '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)': 2221 | dependencies: 2222 | eslint: 8.57.1 2223 | eslint-visitor-keys: 3.4.3 2224 | 2225 | '@eslint-community/regexpp@4.12.1': {} 2226 | 2227 | '@eslint/eslintrc@2.1.4': 2228 | dependencies: 2229 | ajv: 6.12.6 2230 | debug: 4.4.0 2231 | espree: 9.6.1 2232 | globals: 13.24.0 2233 | ignore: 5.3.2 2234 | import-fresh: 3.3.1 2235 | js-yaml: 4.1.0 2236 | minimatch: 3.1.2 2237 | strip-json-comments: 3.1.1 2238 | transitivePeerDependencies: 2239 | - supports-color 2240 | 2241 | '@eslint/js@8.57.1': {} 2242 | 2243 | '@humanwhocodes/config-array@0.13.0': 2244 | dependencies: 2245 | '@humanwhocodes/object-schema': 2.0.3 2246 | debug: 4.4.0 2247 | minimatch: 3.1.2 2248 | transitivePeerDependencies: 2249 | - supports-color 2250 | 2251 | '@humanwhocodes/module-importer@1.0.1': {} 2252 | 2253 | '@humanwhocodes/object-schema@2.0.3': {} 2254 | 2255 | '@langchain/core@0.1.63': 2256 | dependencies: 2257 | ansi-styles: 5.2.0 2258 | camelcase: 6.3.0 2259 | decamelize: 1.2.0 2260 | js-tiktoken: 1.0.19 2261 | langsmith: 0.1.68 2262 | ml-distance: 4.0.1 2263 | mustache: 4.2.0 2264 | p-queue: 6.6.2 2265 | p-retry: 4.6.2 2266 | uuid: 9.0.1 2267 | zod: 3.24.2 2268 | zod-to-json-schema: 3.24.1(zod@3.24.2) 2269 | transitivePeerDependencies: 2270 | - openai 2271 | 2272 | '@modelcontextprotocol/sdk@1.5.0': 2273 | dependencies: 2274 | content-type: 1.0.5 2275 | eventsource: 3.0.5 2276 | raw-body: 3.0.0 2277 | zod: 3.24.2 2278 | zod-to-json-schema: 3.24.1(zod@3.24.2) 2279 | 2280 | '@n8n/tournament@1.0.5': 2281 | dependencies: 2282 | '@n8n_io/riot-tmpl': 4.0.1 2283 | ast-types: 0.16.1 2284 | esprima-next: 5.8.4 2285 | recast: 0.22.0 2286 | 2287 | '@n8n_io/riot-tmpl@4.0.0': 2288 | dependencies: 2289 | eslint-config-riot: 1.0.0 2290 | 2291 | '@n8n_io/riot-tmpl@4.0.1': 2292 | dependencies: 2293 | eslint-config-riot: 1.0.0 2294 | 2295 | '@nodelib/fs.scandir@2.1.5': 2296 | dependencies: 2297 | '@nodelib/fs.stat': 2.0.5 2298 | run-parallel: 1.2.0 2299 | 2300 | '@nodelib/fs.stat@2.0.5': {} 2301 | 2302 | '@nodelib/fs.walk@1.2.8': 2303 | dependencies: 2304 | '@nodelib/fs.scandir': 2.1.5 2305 | fastq: 1.19.0 2306 | 2307 | '@types/json-schema@7.0.15': {} 2308 | 2309 | '@types/retry@0.12.0': {} 2310 | 2311 | '@types/semver@7.5.8': {} 2312 | 2313 | '@types/uuid@10.0.0': {} 2314 | 2315 | '@typescript-eslint/parser@5.45.1(eslint@8.57.1)(typescript@4.8.4)': 2316 | dependencies: 2317 | '@typescript-eslint/scope-manager': 5.45.1 2318 | '@typescript-eslint/types': 5.45.1 2319 | '@typescript-eslint/typescript-estree': 5.45.1(typescript@4.8.4) 2320 | debug: 4.4.0 2321 | eslint: 8.57.1 2322 | optionalDependencies: 2323 | typescript: 4.8.4 2324 | transitivePeerDependencies: 2325 | - supports-color 2326 | 2327 | '@typescript-eslint/scope-manager@5.45.1': 2328 | dependencies: 2329 | '@typescript-eslint/types': 5.45.1 2330 | '@typescript-eslint/visitor-keys': 5.45.1 2331 | 2332 | '@typescript-eslint/scope-manager@6.21.0': 2333 | dependencies: 2334 | '@typescript-eslint/types': 6.21.0 2335 | '@typescript-eslint/visitor-keys': 6.21.0 2336 | 2337 | '@typescript-eslint/types@5.45.1': {} 2338 | 2339 | '@typescript-eslint/types@6.21.0': {} 2340 | 2341 | '@typescript-eslint/typescript-estree@5.45.1(typescript@4.8.4)': 2342 | dependencies: 2343 | '@typescript-eslint/types': 5.45.1 2344 | '@typescript-eslint/visitor-keys': 5.45.1 2345 | debug: 4.4.0 2346 | globby: 11.1.0 2347 | is-glob: 4.0.3 2348 | semver: 7.7.1 2349 | tsutils: 3.21.0(typescript@4.8.4) 2350 | optionalDependencies: 2351 | typescript: 4.8.4 2352 | transitivePeerDependencies: 2353 | - supports-color 2354 | 2355 | '@typescript-eslint/typescript-estree@6.21.0(typescript@4.8.4)': 2356 | dependencies: 2357 | '@typescript-eslint/types': 6.21.0 2358 | '@typescript-eslint/visitor-keys': 6.21.0 2359 | debug: 4.4.0 2360 | globby: 11.1.0 2361 | is-glob: 4.0.3 2362 | minimatch: 9.0.3 2363 | semver: 7.7.1 2364 | ts-api-utils: 1.4.3(typescript@4.8.4) 2365 | optionalDependencies: 2366 | typescript: 4.8.4 2367 | transitivePeerDependencies: 2368 | - supports-color 2369 | 2370 | '@typescript-eslint/utils@6.21.0(eslint@8.57.1)(typescript@4.8.4)': 2371 | dependencies: 2372 | '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) 2373 | '@types/json-schema': 7.0.15 2374 | '@types/semver': 7.5.8 2375 | '@typescript-eslint/scope-manager': 6.21.0 2376 | '@typescript-eslint/types': 6.21.0 2377 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@4.8.4) 2378 | eslint: 8.57.1 2379 | semver: 7.7.1 2380 | transitivePeerDependencies: 2381 | - supports-color 2382 | - typescript 2383 | 2384 | '@typescript-eslint/visitor-keys@5.45.1': 2385 | dependencies: 2386 | '@typescript-eslint/types': 5.45.1 2387 | eslint-visitor-keys: 3.4.3 2388 | 2389 | '@typescript-eslint/visitor-keys@6.21.0': 2390 | dependencies: 2391 | '@typescript-eslint/types': 6.21.0 2392 | eslint-visitor-keys: 3.4.3 2393 | 2394 | '@ungap/structured-clone@1.3.0': {} 2395 | 2396 | acorn-jsx@5.3.2(acorn@8.14.0): 2397 | dependencies: 2398 | acorn: 8.14.0 2399 | 2400 | acorn@8.14.0: {} 2401 | 2402 | ajv@6.12.6: 2403 | dependencies: 2404 | fast-deep-equal: 3.1.3 2405 | fast-json-stable-stringify: 2.1.0 2406 | json-schema-traverse: 0.4.1 2407 | uri-js: 4.4.1 2408 | 2409 | ansi-colors@1.1.0: 2410 | dependencies: 2411 | ansi-wrap: 0.1.0 2412 | 2413 | ansi-gray@0.1.1: 2414 | dependencies: 2415 | ansi-wrap: 0.1.0 2416 | 2417 | ansi-regex@2.1.1: {} 2418 | 2419 | ansi-regex@5.0.1: {} 2420 | 2421 | ansi-styles@4.3.0: 2422 | dependencies: 2423 | color-convert: 2.0.1 2424 | 2425 | ansi-styles@5.2.0: {} 2426 | 2427 | ansi-wrap@0.1.0: {} 2428 | 2429 | anymatch@2.0.0: 2430 | dependencies: 2431 | micromatch: 3.1.10 2432 | normalize-path: 2.1.1 2433 | transitivePeerDependencies: 2434 | - supports-color 2435 | 2436 | append-buffer@1.0.2: 2437 | dependencies: 2438 | buffer-equal: 1.0.1 2439 | 2440 | archy@1.0.0: {} 2441 | 2442 | argparse@2.0.1: {} 2443 | 2444 | arr-diff@4.0.0: {} 2445 | 2446 | arr-filter@1.1.2: 2447 | dependencies: 2448 | make-iterator: 1.0.1 2449 | 2450 | arr-flatten@1.1.0: {} 2451 | 2452 | arr-map@2.0.2: 2453 | dependencies: 2454 | make-iterator: 1.0.1 2455 | 2456 | arr-union@3.1.0: {} 2457 | 2458 | array-each@1.0.1: {} 2459 | 2460 | array-initial@1.1.0: 2461 | dependencies: 2462 | array-slice: 1.1.0 2463 | is-number: 4.0.0 2464 | 2465 | array-last@1.3.0: 2466 | dependencies: 2467 | is-number: 4.0.0 2468 | 2469 | array-slice@1.1.0: {} 2470 | 2471 | array-sort@1.0.0: 2472 | dependencies: 2473 | default-compare: 1.0.0 2474 | get-value: 2.0.6 2475 | kind-of: 5.1.0 2476 | 2477 | array-union@2.1.0: {} 2478 | 2479 | array-unique@0.3.2: {} 2480 | 2481 | assert@2.1.0: 2482 | dependencies: 2483 | call-bind: 1.0.8 2484 | is-nan: 1.3.2 2485 | object-is: 1.1.6 2486 | object.assign: 4.1.7 2487 | util: 0.12.5 2488 | 2489 | assign-symbols@1.0.0: {} 2490 | 2491 | ast-types@0.15.2: 2492 | dependencies: 2493 | tslib: 2.8.1 2494 | 2495 | ast-types@0.16.1: 2496 | dependencies: 2497 | tslib: 2.8.1 2498 | 2499 | async-done@1.3.2: 2500 | dependencies: 2501 | end-of-stream: 1.4.4 2502 | once: 1.4.0 2503 | process-nextick-args: 2.0.1 2504 | stream-exhaust: 1.0.2 2505 | 2506 | async-each@1.0.6: {} 2507 | 2508 | async-settle@1.0.0: 2509 | dependencies: 2510 | async-done: 1.3.2 2511 | 2512 | asynckit@0.4.0: {} 2513 | 2514 | atob@2.1.2: {} 2515 | 2516 | available-typed-arrays@1.0.7: 2517 | dependencies: 2518 | possible-typed-array-names: 1.1.0 2519 | 2520 | axios@1.7.4: 2521 | dependencies: 2522 | follow-redirects: 1.15.9 2523 | form-data: 4.0.0 2524 | proxy-from-env: 1.1.0 2525 | transitivePeerDependencies: 2526 | - debug 2527 | 2528 | bach@1.2.0: 2529 | dependencies: 2530 | arr-filter: 1.1.2 2531 | arr-flatten: 1.1.0 2532 | arr-map: 2.0.2 2533 | array-each: 1.0.1 2534 | array-initial: 1.1.0 2535 | array-last: 1.3.0 2536 | async-done: 1.3.2 2537 | async-settle: 1.0.0 2538 | now-and-later: 2.0.1 2539 | 2540 | balanced-match@1.0.2: {} 2541 | 2542 | base64-js@1.5.1: {} 2543 | 2544 | base@0.11.2: 2545 | dependencies: 2546 | cache-base: 1.0.1 2547 | class-utils: 0.3.6 2548 | component-emitter: 1.3.1 2549 | define-property: 1.0.0 2550 | isobject: 3.0.1 2551 | mixin-deep: 1.3.2 2552 | pascalcase: 0.1.1 2553 | 2554 | binary-extensions@1.13.1: {} 2555 | 2556 | binary-search@1.3.6: {} 2557 | 2558 | bindings@1.5.0: 2559 | dependencies: 2560 | file-uri-to-path: 1.0.0 2561 | optional: true 2562 | 2563 | brace-expansion@1.1.11: 2564 | dependencies: 2565 | balanced-match: 1.0.2 2566 | concat-map: 0.0.1 2567 | 2568 | brace-expansion@2.0.1: 2569 | dependencies: 2570 | balanced-match: 1.0.2 2571 | 2572 | braces@2.3.2: 2573 | dependencies: 2574 | arr-flatten: 1.1.0 2575 | array-unique: 0.3.2 2576 | extend-shallow: 2.0.1 2577 | fill-range: 4.0.0 2578 | isobject: 3.0.1 2579 | repeat-element: 1.1.4 2580 | snapdragon: 0.8.2 2581 | snapdragon-node: 2.1.1 2582 | split-string: 3.1.0 2583 | to-regex: 3.0.2 2584 | transitivePeerDependencies: 2585 | - supports-color 2586 | 2587 | braces@3.0.3: 2588 | dependencies: 2589 | fill-range: 7.1.1 2590 | 2591 | buffer-equal@1.0.1: {} 2592 | 2593 | buffer-from@1.1.2: {} 2594 | 2595 | bytes@3.1.2: {} 2596 | 2597 | cache-base@1.0.1: 2598 | dependencies: 2599 | collection-visit: 1.0.0 2600 | component-emitter: 1.3.1 2601 | get-value: 2.0.6 2602 | has-value: 1.0.0 2603 | isobject: 3.0.1 2604 | set-value: 2.0.1 2605 | to-object-path: 0.3.0 2606 | union-value: 1.0.1 2607 | unset-value: 1.0.0 2608 | 2609 | call-bind-apply-helpers@1.0.2: 2610 | dependencies: 2611 | es-errors: 1.3.0 2612 | function-bind: 1.1.2 2613 | 2614 | call-bind@1.0.8: 2615 | dependencies: 2616 | call-bind-apply-helpers: 1.0.2 2617 | es-define-property: 1.0.1 2618 | get-intrinsic: 1.2.7 2619 | set-function-length: 1.2.2 2620 | 2621 | call-bound@1.0.3: 2622 | dependencies: 2623 | call-bind-apply-helpers: 1.0.2 2624 | get-intrinsic: 1.2.7 2625 | 2626 | callsites@3.1.0: {} 2627 | 2628 | camel-case@4.1.2: 2629 | dependencies: 2630 | pascal-case: 3.1.2 2631 | tslib: 2.8.1 2632 | 2633 | camelcase@3.0.0: {} 2634 | 2635 | camelcase@6.3.0: {} 2636 | 2637 | chalk@4.1.2: 2638 | dependencies: 2639 | ansi-styles: 4.3.0 2640 | supports-color: 7.2.0 2641 | 2642 | charenc@0.0.2: {} 2643 | 2644 | chokidar@2.1.8: 2645 | dependencies: 2646 | anymatch: 2.0.0 2647 | async-each: 1.0.6 2648 | braces: 2.3.2 2649 | glob-parent: 3.1.0 2650 | inherits: 2.0.4 2651 | is-binary-path: 1.0.1 2652 | is-glob: 4.0.3 2653 | normalize-path: 3.0.0 2654 | path-is-absolute: 1.0.1 2655 | readdirp: 2.2.1 2656 | upath: 1.2.0 2657 | optionalDependencies: 2658 | fsevents: 1.2.13 2659 | transitivePeerDependencies: 2660 | - supports-color 2661 | 2662 | class-utils@0.3.6: 2663 | dependencies: 2664 | arr-union: 3.1.0 2665 | define-property: 0.2.5 2666 | isobject: 3.0.1 2667 | static-extend: 0.1.2 2668 | 2669 | cliui@3.2.0: 2670 | dependencies: 2671 | string-width: 1.0.2 2672 | strip-ansi: 3.0.1 2673 | wrap-ansi: 2.1.0 2674 | 2675 | cliui@8.0.1: 2676 | dependencies: 2677 | string-width: 4.2.3 2678 | strip-ansi: 6.0.1 2679 | wrap-ansi: 7.0.0 2680 | 2681 | clone-buffer@1.0.0: {} 2682 | 2683 | clone-stats@1.0.0: {} 2684 | 2685 | clone@2.1.2: {} 2686 | 2687 | cloneable-readable@1.1.3: 2688 | dependencies: 2689 | inherits: 2.0.4 2690 | process-nextick-args: 2.0.1 2691 | readable-stream: 2.3.8 2692 | 2693 | code-point-at@1.1.0: {} 2694 | 2695 | collection-map@1.0.0: 2696 | dependencies: 2697 | arr-map: 2.0.2 2698 | for-own: 1.0.0 2699 | make-iterator: 1.0.1 2700 | 2701 | collection-visit@1.0.0: 2702 | dependencies: 2703 | map-visit: 1.0.0 2704 | object-visit: 1.0.1 2705 | 2706 | color-convert@2.0.1: 2707 | dependencies: 2708 | color-name: 1.1.4 2709 | 2710 | color-name@1.1.4: {} 2711 | 2712 | color-support@1.1.3: {} 2713 | 2714 | combined-stream@1.0.8: 2715 | dependencies: 2716 | delayed-stream: 1.0.0 2717 | 2718 | commander@10.0.1: {} 2719 | 2720 | component-emitter@1.3.1: {} 2721 | 2722 | concat-map@0.0.1: {} 2723 | 2724 | concat-stream@1.6.2: 2725 | dependencies: 2726 | buffer-from: 1.1.2 2727 | inherits: 2.0.4 2728 | readable-stream: 2.3.8 2729 | typedarray: 0.0.6 2730 | 2731 | content-type@1.0.5: {} 2732 | 2733 | convert-source-map@1.9.0: {} 2734 | 2735 | copy-descriptor@0.1.1: {} 2736 | 2737 | copy-props@2.0.5: 2738 | dependencies: 2739 | each-props: 1.3.2 2740 | is-plain-object: 5.0.0 2741 | 2742 | core-util-is@1.0.3: {} 2743 | 2744 | cross-spawn@7.0.6: 2745 | dependencies: 2746 | path-key: 3.1.1 2747 | shebang-command: 2.0.0 2748 | which: 2.0.2 2749 | 2750 | crypt@0.0.2: {} 2751 | 2752 | d@1.0.2: 2753 | dependencies: 2754 | es5-ext: 0.10.64 2755 | type: 2.7.3 2756 | 2757 | debug@2.6.9: 2758 | dependencies: 2759 | ms: 2.0.0 2760 | 2761 | debug@4.4.0: 2762 | dependencies: 2763 | ms: 2.1.3 2764 | 2765 | decamelize@1.2.0: {} 2766 | 2767 | decode-uri-component@0.2.2: {} 2768 | 2769 | deep-equal@2.2.0: 2770 | dependencies: 2771 | call-bind: 1.0.8 2772 | es-get-iterator: 1.1.3 2773 | get-intrinsic: 1.2.7 2774 | is-arguments: 1.2.0 2775 | is-array-buffer: 3.0.5 2776 | is-date-object: 1.1.0 2777 | is-regex: 1.2.1 2778 | is-shared-array-buffer: 1.0.4 2779 | isarray: 2.0.5 2780 | object-is: 1.1.6 2781 | object-keys: 1.1.1 2782 | object.assign: 4.1.7 2783 | regexp.prototype.flags: 1.5.4 2784 | side-channel: 1.1.0 2785 | which-boxed-primitive: 1.1.1 2786 | which-collection: 1.0.2 2787 | which-typed-array: 1.1.18 2788 | 2789 | deep-is@0.1.4: {} 2790 | 2791 | default-compare@1.0.0: 2792 | dependencies: 2793 | kind-of: 5.1.0 2794 | 2795 | default-resolution@2.0.0: {} 2796 | 2797 | define-data-property@1.1.4: 2798 | dependencies: 2799 | es-define-property: 1.0.1 2800 | es-errors: 1.3.0 2801 | gopd: 1.2.0 2802 | 2803 | define-properties@1.2.1: 2804 | dependencies: 2805 | define-data-property: 1.1.4 2806 | has-property-descriptors: 1.0.2 2807 | object-keys: 1.1.1 2808 | 2809 | define-property@0.2.5: 2810 | dependencies: 2811 | is-descriptor: 0.1.7 2812 | 2813 | define-property@1.0.0: 2814 | dependencies: 2815 | is-descriptor: 1.0.3 2816 | 2817 | define-property@2.0.2: 2818 | dependencies: 2819 | is-descriptor: 1.0.3 2820 | isobject: 3.0.1 2821 | 2822 | delayed-stream@1.0.0: {} 2823 | 2824 | depd@2.0.0: {} 2825 | 2826 | detect-file@1.0.0: {} 2827 | 2828 | dir-glob@3.0.1: 2829 | dependencies: 2830 | path-type: 4.0.0 2831 | 2832 | doctrine@3.0.0: 2833 | dependencies: 2834 | esutils: 2.0.3 2835 | 2836 | dunder-proto@1.0.1: 2837 | dependencies: 2838 | call-bind-apply-helpers: 1.0.2 2839 | es-errors: 1.3.0 2840 | gopd: 1.2.0 2841 | 2842 | duplexify@3.7.1: 2843 | dependencies: 2844 | end-of-stream: 1.4.4 2845 | inherits: 2.0.4 2846 | readable-stream: 2.3.8 2847 | stream-shift: 1.0.3 2848 | 2849 | each-props@1.3.2: 2850 | dependencies: 2851 | is-plain-object: 2.0.4 2852 | object.defaults: 1.1.0 2853 | 2854 | emoji-regex@8.0.0: {} 2855 | 2856 | end-of-stream@1.4.4: 2857 | dependencies: 2858 | once: 1.4.0 2859 | 2860 | error-ex@1.3.2: 2861 | dependencies: 2862 | is-arrayish: 0.2.1 2863 | 2864 | es-define-property@1.0.1: {} 2865 | 2866 | es-errors@1.3.0: {} 2867 | 2868 | es-get-iterator@1.1.3: 2869 | dependencies: 2870 | call-bind: 1.0.8 2871 | get-intrinsic: 1.2.7 2872 | has-symbols: 1.1.0 2873 | is-arguments: 1.2.0 2874 | is-map: 2.0.3 2875 | is-set: 2.0.3 2876 | is-string: 1.1.1 2877 | isarray: 2.0.5 2878 | stop-iteration-iterator: 1.1.0 2879 | 2880 | es-object-atoms@1.1.1: 2881 | dependencies: 2882 | es-errors: 1.3.0 2883 | 2884 | es5-ext@0.10.64: 2885 | dependencies: 2886 | es6-iterator: 2.0.3 2887 | es6-symbol: 3.1.4 2888 | esniff: 2.0.1 2889 | next-tick: 1.1.0 2890 | 2891 | es6-iterator@2.0.3: 2892 | dependencies: 2893 | d: 1.0.2 2894 | es5-ext: 0.10.64 2895 | es6-symbol: 3.1.4 2896 | 2897 | es6-symbol@3.1.4: 2898 | dependencies: 2899 | d: 1.0.2 2900 | ext: 1.7.0 2901 | 2902 | es6-weak-map@2.0.3: 2903 | dependencies: 2904 | d: 1.0.2 2905 | es5-ext: 0.10.64 2906 | es6-iterator: 2.0.3 2907 | es6-symbol: 3.1.4 2908 | 2909 | escalade@3.2.0: {} 2910 | 2911 | escape-string-regexp@4.0.0: {} 2912 | 2913 | eslint-config-riot@1.0.0: {} 2914 | 2915 | eslint-plugin-local@1.0.0: {} 2916 | 2917 | eslint-plugin-n8n-nodes-base@1.16.3(eslint@8.57.1)(typescript@4.8.4): 2918 | dependencies: 2919 | '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@4.8.4) 2920 | camel-case: 4.1.2 2921 | eslint-plugin-local: 1.0.0 2922 | indefinite: 2.5.1 2923 | pascal-case: 3.1.2 2924 | pluralize: 8.0.0 2925 | sentence-case: 3.0.4 2926 | title-case: 3.0.3 2927 | transitivePeerDependencies: 2928 | - eslint 2929 | - supports-color 2930 | - typescript 2931 | 2932 | eslint-scope@7.2.2: 2933 | dependencies: 2934 | esrecurse: 4.3.0 2935 | estraverse: 5.3.0 2936 | 2937 | eslint-visitor-keys@3.4.3: {} 2938 | 2939 | eslint@8.57.1: 2940 | dependencies: 2941 | '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) 2942 | '@eslint-community/regexpp': 4.12.1 2943 | '@eslint/eslintrc': 2.1.4 2944 | '@eslint/js': 8.57.1 2945 | '@humanwhocodes/config-array': 0.13.0 2946 | '@humanwhocodes/module-importer': 1.0.1 2947 | '@nodelib/fs.walk': 1.2.8 2948 | '@ungap/structured-clone': 1.3.0 2949 | ajv: 6.12.6 2950 | chalk: 4.1.2 2951 | cross-spawn: 7.0.6 2952 | debug: 4.4.0 2953 | doctrine: 3.0.0 2954 | escape-string-regexp: 4.0.0 2955 | eslint-scope: 7.2.2 2956 | eslint-visitor-keys: 3.4.3 2957 | espree: 9.6.1 2958 | esquery: 1.6.0 2959 | esutils: 2.0.3 2960 | fast-deep-equal: 3.1.3 2961 | file-entry-cache: 6.0.1 2962 | find-up: 5.0.0 2963 | glob-parent: 6.0.2 2964 | globals: 13.24.0 2965 | graphemer: 1.4.0 2966 | ignore: 5.3.2 2967 | imurmurhash: 0.1.4 2968 | is-glob: 4.0.3 2969 | is-path-inside: 3.0.3 2970 | js-yaml: 4.1.0 2971 | json-stable-stringify-without-jsonify: 1.0.1 2972 | levn: 0.4.1 2973 | lodash.merge: 4.6.2 2974 | minimatch: 3.1.2 2975 | natural-compare: 1.4.0 2976 | optionator: 0.9.4 2977 | strip-ansi: 6.0.1 2978 | text-table: 0.2.0 2979 | transitivePeerDependencies: 2980 | - supports-color 2981 | 2982 | esniff@2.0.1: 2983 | dependencies: 2984 | d: 1.0.2 2985 | es5-ext: 0.10.64 2986 | event-emitter: 0.3.5 2987 | type: 2.7.3 2988 | 2989 | espree@9.6.1: 2990 | dependencies: 2991 | acorn: 8.14.0 2992 | acorn-jsx: 5.3.2(acorn@8.14.0) 2993 | eslint-visitor-keys: 3.4.3 2994 | 2995 | esprima-next@5.8.4: {} 2996 | 2997 | esprima@4.0.1: {} 2998 | 2999 | esquery@1.6.0: 3000 | dependencies: 3001 | estraverse: 5.3.0 3002 | 3003 | esrecurse@4.3.0: 3004 | dependencies: 3005 | estraverse: 5.3.0 3006 | 3007 | estraverse@5.3.0: {} 3008 | 3009 | esutils@2.0.3: {} 3010 | 3011 | event-emitter@0.3.5: 3012 | dependencies: 3013 | d: 1.0.2 3014 | es5-ext: 0.10.64 3015 | 3016 | eventemitter3@4.0.7: {} 3017 | 3018 | eventsource-parser@3.0.0: {} 3019 | 3020 | eventsource@3.0.5: 3021 | dependencies: 3022 | eventsource-parser: 3.0.0 3023 | 3024 | expand-brackets@2.1.4: 3025 | dependencies: 3026 | debug: 2.6.9 3027 | define-property: 0.2.5 3028 | extend-shallow: 2.0.1 3029 | posix-character-classes: 0.1.1 3030 | regex-not: 1.0.2 3031 | snapdragon: 0.8.2 3032 | to-regex: 3.0.2 3033 | transitivePeerDependencies: 3034 | - supports-color 3035 | 3036 | expand-tilde@2.0.2: 3037 | dependencies: 3038 | homedir-polyfill: 1.0.3 3039 | 3040 | ext@1.7.0: 3041 | dependencies: 3042 | type: 2.7.3 3043 | 3044 | extend-shallow@2.0.1: 3045 | dependencies: 3046 | is-extendable: 0.1.1 3047 | 3048 | extend-shallow@3.0.2: 3049 | dependencies: 3050 | assign-symbols: 1.0.0 3051 | is-extendable: 1.0.1 3052 | 3053 | extend@3.0.2: {} 3054 | 3055 | extglob@2.0.4: 3056 | dependencies: 3057 | array-unique: 0.3.2 3058 | define-property: 1.0.0 3059 | expand-brackets: 2.1.4 3060 | extend-shallow: 2.0.1 3061 | fragment-cache: 0.2.1 3062 | regex-not: 1.0.2 3063 | snapdragon: 0.8.2 3064 | to-regex: 3.0.2 3065 | transitivePeerDependencies: 3066 | - supports-color 3067 | 3068 | fancy-log@1.3.3: 3069 | dependencies: 3070 | ansi-gray: 0.1.1 3071 | color-support: 1.1.3 3072 | parse-node-version: 1.0.1 3073 | time-stamp: 1.1.0 3074 | 3075 | fast-deep-equal@3.1.3: {} 3076 | 3077 | fast-glob@3.3.3: 3078 | dependencies: 3079 | '@nodelib/fs.stat': 2.0.5 3080 | '@nodelib/fs.walk': 1.2.8 3081 | glob-parent: 5.1.2 3082 | merge2: 1.4.1 3083 | micromatch: 4.0.8 3084 | 3085 | fast-json-stable-stringify@2.1.0: {} 3086 | 3087 | fast-levenshtein@1.1.4: {} 3088 | 3089 | fast-levenshtein@2.0.6: {} 3090 | 3091 | fastq@1.19.0: 3092 | dependencies: 3093 | reusify: 1.0.4 3094 | 3095 | file-entry-cache@6.0.1: 3096 | dependencies: 3097 | flat-cache: 3.2.0 3098 | 3099 | file-uri-to-path@1.0.0: 3100 | optional: true 3101 | 3102 | fill-range@4.0.0: 3103 | dependencies: 3104 | extend-shallow: 2.0.1 3105 | is-number: 3.0.0 3106 | repeat-string: 1.6.1 3107 | to-regex-range: 2.1.1 3108 | 3109 | fill-range@7.1.1: 3110 | dependencies: 3111 | to-regex-range: 5.0.1 3112 | 3113 | find-up@1.1.2: 3114 | dependencies: 3115 | path-exists: 2.1.0 3116 | pinkie-promise: 2.0.1 3117 | 3118 | find-up@5.0.0: 3119 | dependencies: 3120 | locate-path: 6.0.0 3121 | path-exists: 4.0.0 3122 | 3123 | findup-sync@2.0.0: 3124 | dependencies: 3125 | detect-file: 1.0.0 3126 | is-glob: 3.1.0 3127 | micromatch: 3.1.10 3128 | resolve-dir: 1.0.1 3129 | transitivePeerDependencies: 3130 | - supports-color 3131 | 3132 | findup-sync@3.0.0: 3133 | dependencies: 3134 | detect-file: 1.0.0 3135 | is-glob: 4.0.3 3136 | micromatch: 3.1.10 3137 | resolve-dir: 1.0.1 3138 | transitivePeerDependencies: 3139 | - supports-color 3140 | 3141 | fined@1.2.0: 3142 | dependencies: 3143 | expand-tilde: 2.0.2 3144 | is-plain-object: 2.0.4 3145 | object.defaults: 1.1.0 3146 | object.pick: 1.3.0 3147 | parse-filepath: 1.0.2 3148 | 3149 | flagged-respawn@1.0.1: {} 3150 | 3151 | flat-cache@3.2.0: 3152 | dependencies: 3153 | flatted: 3.3.2 3154 | keyv: 4.5.4 3155 | rimraf: 3.0.2 3156 | 3157 | flatted@3.3.2: {} 3158 | 3159 | flush-write-stream@1.1.1: 3160 | dependencies: 3161 | inherits: 2.0.4 3162 | readable-stream: 2.3.8 3163 | 3164 | follow-redirects@1.15.9: {} 3165 | 3166 | for-each@0.3.5: 3167 | dependencies: 3168 | is-callable: 1.2.7 3169 | 3170 | for-in@1.0.2: {} 3171 | 3172 | for-own@1.0.0: 3173 | dependencies: 3174 | for-in: 1.0.2 3175 | 3176 | form-data@4.0.0: 3177 | dependencies: 3178 | asynckit: 0.4.0 3179 | combined-stream: 1.0.8 3180 | mime-types: 2.1.35 3181 | 3182 | fragment-cache@0.2.1: 3183 | dependencies: 3184 | map-cache: 0.2.2 3185 | 3186 | fs-mkdirp-stream@1.0.0: 3187 | dependencies: 3188 | graceful-fs: 4.2.11 3189 | through2: 2.0.5 3190 | 3191 | fs.realpath@1.0.0: {} 3192 | 3193 | fsevents@1.2.13: 3194 | dependencies: 3195 | bindings: 1.5.0 3196 | nan: 2.22.0 3197 | optional: true 3198 | 3199 | function-bind@1.1.2: {} 3200 | 3201 | functions-have-names@1.2.3: {} 3202 | 3203 | get-caller-file@1.0.3: {} 3204 | 3205 | get-caller-file@2.0.5: {} 3206 | 3207 | get-intrinsic@1.2.7: 3208 | dependencies: 3209 | call-bind-apply-helpers: 1.0.2 3210 | es-define-property: 1.0.1 3211 | es-errors: 1.3.0 3212 | es-object-atoms: 1.1.1 3213 | function-bind: 1.1.2 3214 | get-proto: 1.0.1 3215 | gopd: 1.2.0 3216 | has-symbols: 1.1.0 3217 | hasown: 2.0.2 3218 | math-intrinsics: 1.1.0 3219 | 3220 | get-proto@1.0.1: 3221 | dependencies: 3222 | dunder-proto: 1.0.1 3223 | es-object-atoms: 1.1.1 3224 | 3225 | get-value@2.0.6: {} 3226 | 3227 | glob-parent@3.1.0: 3228 | dependencies: 3229 | is-glob: 3.1.0 3230 | path-dirname: 1.0.2 3231 | 3232 | glob-parent@5.1.2: 3233 | dependencies: 3234 | is-glob: 4.0.3 3235 | 3236 | glob-parent@6.0.2: 3237 | dependencies: 3238 | is-glob: 4.0.3 3239 | 3240 | glob-stream@6.1.0: 3241 | dependencies: 3242 | extend: 3.0.2 3243 | glob: 7.2.3 3244 | glob-parent: 3.1.0 3245 | is-negated-glob: 1.0.0 3246 | ordered-read-streams: 1.0.1 3247 | pumpify: 1.5.1 3248 | readable-stream: 2.3.8 3249 | remove-trailing-separator: 1.1.0 3250 | to-absolute-glob: 2.0.2 3251 | unique-stream: 2.3.1 3252 | 3253 | glob-watcher@5.0.5: 3254 | dependencies: 3255 | anymatch: 2.0.0 3256 | async-done: 1.3.2 3257 | chokidar: 2.1.8 3258 | is-negated-glob: 1.0.0 3259 | just-debounce: 1.1.0 3260 | normalize-path: 3.0.0 3261 | object.defaults: 1.1.0 3262 | transitivePeerDependencies: 3263 | - supports-color 3264 | 3265 | glob@7.2.3: 3266 | dependencies: 3267 | fs.realpath: 1.0.0 3268 | inflight: 1.0.6 3269 | inherits: 2.0.4 3270 | minimatch: 3.1.2 3271 | once: 1.4.0 3272 | path-is-absolute: 1.0.1 3273 | 3274 | global-modules@1.0.0: 3275 | dependencies: 3276 | global-prefix: 1.0.2 3277 | is-windows: 1.0.2 3278 | resolve-dir: 1.0.1 3279 | 3280 | global-prefix@1.0.2: 3281 | dependencies: 3282 | expand-tilde: 2.0.2 3283 | homedir-polyfill: 1.0.3 3284 | ini: 1.3.8 3285 | is-windows: 1.0.2 3286 | which: 1.3.1 3287 | 3288 | globals@13.24.0: 3289 | dependencies: 3290 | type-fest: 0.20.2 3291 | 3292 | globby@11.1.0: 3293 | dependencies: 3294 | array-union: 2.1.0 3295 | dir-glob: 3.0.1 3296 | fast-glob: 3.3.3 3297 | ignore: 5.3.2 3298 | merge2: 1.4.1 3299 | slash: 3.0.0 3300 | 3301 | glogg@1.0.2: 3302 | dependencies: 3303 | sparkles: 1.0.1 3304 | 3305 | gopd@1.2.0: {} 3306 | 3307 | graceful-fs@4.2.11: {} 3308 | 3309 | graphemer@1.4.0: {} 3310 | 3311 | gulp-cli@2.3.0: 3312 | dependencies: 3313 | ansi-colors: 1.1.0 3314 | archy: 1.0.0 3315 | array-sort: 1.0.0 3316 | color-support: 1.1.3 3317 | concat-stream: 1.6.2 3318 | copy-props: 2.0.5 3319 | fancy-log: 1.3.3 3320 | gulplog: 1.0.0 3321 | interpret: 1.4.0 3322 | isobject: 3.0.1 3323 | liftoff: 3.1.0 3324 | matchdep: 2.0.0 3325 | mute-stdout: 1.0.1 3326 | pretty-hrtime: 1.0.3 3327 | replace-homedir: 1.0.0 3328 | semver-greatest-satisfied-range: 1.1.0 3329 | v8flags: 3.2.0 3330 | yargs: 7.1.2 3331 | transitivePeerDependencies: 3332 | - supports-color 3333 | 3334 | gulp@4.0.2: 3335 | dependencies: 3336 | glob-watcher: 5.0.5 3337 | gulp-cli: 2.3.0 3338 | undertaker: 1.3.0 3339 | vinyl-fs: 3.0.3 3340 | transitivePeerDependencies: 3341 | - supports-color 3342 | 3343 | gulplog@1.0.0: 3344 | dependencies: 3345 | glogg: 1.0.2 3346 | 3347 | has-bigints@1.1.0: {} 3348 | 3349 | has-flag@4.0.0: {} 3350 | 3351 | has-property-descriptors@1.0.2: 3352 | dependencies: 3353 | es-define-property: 1.0.1 3354 | 3355 | has-symbols@1.1.0: {} 3356 | 3357 | has-tostringtag@1.0.2: 3358 | dependencies: 3359 | has-symbols: 1.1.0 3360 | 3361 | has-value@0.3.1: 3362 | dependencies: 3363 | get-value: 2.0.6 3364 | has-values: 0.1.4 3365 | isobject: 2.1.0 3366 | 3367 | has-value@1.0.0: 3368 | dependencies: 3369 | get-value: 2.0.6 3370 | has-values: 1.0.0 3371 | isobject: 3.0.1 3372 | 3373 | has-values@0.1.4: {} 3374 | 3375 | has-values@1.0.0: 3376 | dependencies: 3377 | is-number: 3.0.0 3378 | kind-of: 4.0.0 3379 | 3380 | hasown@2.0.2: 3381 | dependencies: 3382 | function-bind: 1.1.2 3383 | 3384 | homedir-polyfill@1.0.3: 3385 | dependencies: 3386 | parse-passwd: 1.0.0 3387 | 3388 | hosted-git-info@2.8.9: {} 3389 | 3390 | http-errors@2.0.0: 3391 | dependencies: 3392 | depd: 2.0.0 3393 | inherits: 2.0.4 3394 | setprototypeof: 1.2.0 3395 | statuses: 2.0.1 3396 | toidentifier: 1.0.1 3397 | 3398 | iconv-lite@0.6.3: 3399 | dependencies: 3400 | safer-buffer: 2.1.2 3401 | 3402 | ignore@5.3.2: {} 3403 | 3404 | import-fresh@3.3.1: 3405 | dependencies: 3406 | parent-module: 1.0.1 3407 | resolve-from: 4.0.0 3408 | 3409 | imurmurhash@0.1.4: {} 3410 | 3411 | indefinite@2.5.1: {} 3412 | 3413 | inflight@1.0.6: 3414 | dependencies: 3415 | once: 1.4.0 3416 | wrappy: 1.0.2 3417 | 3418 | inherits@2.0.4: {} 3419 | 3420 | ini@1.3.8: {} 3421 | 3422 | internal-slot@1.1.0: 3423 | dependencies: 3424 | es-errors: 1.3.0 3425 | hasown: 2.0.2 3426 | side-channel: 1.1.0 3427 | 3428 | interpret@1.4.0: {} 3429 | 3430 | invert-kv@1.0.0: {} 3431 | 3432 | is-absolute@1.0.0: 3433 | dependencies: 3434 | is-relative: 1.0.0 3435 | is-windows: 1.0.2 3436 | 3437 | is-accessor-descriptor@1.0.1: 3438 | dependencies: 3439 | hasown: 2.0.2 3440 | 3441 | is-any-array@2.0.1: {} 3442 | 3443 | is-arguments@1.2.0: 3444 | dependencies: 3445 | call-bound: 1.0.3 3446 | has-tostringtag: 1.0.2 3447 | 3448 | is-array-buffer@3.0.5: 3449 | dependencies: 3450 | call-bind: 1.0.8 3451 | call-bound: 1.0.3 3452 | get-intrinsic: 1.2.7 3453 | 3454 | is-arrayish@0.2.1: {} 3455 | 3456 | is-bigint@1.1.0: 3457 | dependencies: 3458 | has-bigints: 1.1.0 3459 | 3460 | is-binary-path@1.0.1: 3461 | dependencies: 3462 | binary-extensions: 1.13.1 3463 | 3464 | is-boolean-object@1.2.2: 3465 | dependencies: 3466 | call-bound: 1.0.3 3467 | has-tostringtag: 1.0.2 3468 | 3469 | is-buffer@1.1.6: {} 3470 | 3471 | is-callable@1.2.7: {} 3472 | 3473 | is-core-module@2.16.1: 3474 | dependencies: 3475 | hasown: 2.0.2 3476 | 3477 | is-data-descriptor@1.0.1: 3478 | dependencies: 3479 | hasown: 2.0.2 3480 | 3481 | is-date-object@1.1.0: 3482 | dependencies: 3483 | call-bound: 1.0.3 3484 | has-tostringtag: 1.0.2 3485 | 3486 | is-descriptor@0.1.7: 3487 | dependencies: 3488 | is-accessor-descriptor: 1.0.1 3489 | is-data-descriptor: 1.0.1 3490 | 3491 | is-descriptor@1.0.3: 3492 | dependencies: 3493 | is-accessor-descriptor: 1.0.1 3494 | is-data-descriptor: 1.0.1 3495 | 3496 | is-extendable@0.1.1: {} 3497 | 3498 | is-extendable@1.0.1: 3499 | dependencies: 3500 | is-plain-object: 2.0.4 3501 | 3502 | is-extglob@2.1.1: {} 3503 | 3504 | is-fullwidth-code-point@1.0.0: 3505 | dependencies: 3506 | number-is-nan: 1.0.1 3507 | 3508 | is-fullwidth-code-point@3.0.0: {} 3509 | 3510 | is-generator-function@1.1.0: 3511 | dependencies: 3512 | call-bound: 1.0.3 3513 | get-proto: 1.0.1 3514 | has-tostringtag: 1.0.2 3515 | safe-regex-test: 1.1.0 3516 | 3517 | is-glob@3.1.0: 3518 | dependencies: 3519 | is-extglob: 2.1.1 3520 | 3521 | is-glob@4.0.3: 3522 | dependencies: 3523 | is-extglob: 2.1.1 3524 | 3525 | is-map@2.0.3: {} 3526 | 3527 | is-nan@1.3.2: 3528 | dependencies: 3529 | call-bind: 1.0.8 3530 | define-properties: 1.2.1 3531 | 3532 | is-negated-glob@1.0.0: {} 3533 | 3534 | is-number-object@1.1.1: 3535 | dependencies: 3536 | call-bound: 1.0.3 3537 | has-tostringtag: 1.0.2 3538 | 3539 | is-number@3.0.0: 3540 | dependencies: 3541 | kind-of: 3.2.2 3542 | 3543 | is-number@4.0.0: {} 3544 | 3545 | is-number@7.0.0: {} 3546 | 3547 | is-path-inside@3.0.3: {} 3548 | 3549 | is-plain-object@2.0.4: 3550 | dependencies: 3551 | isobject: 3.0.1 3552 | 3553 | is-plain-object@5.0.0: {} 3554 | 3555 | is-regex@1.2.1: 3556 | dependencies: 3557 | call-bound: 1.0.3 3558 | gopd: 1.2.0 3559 | has-tostringtag: 1.0.2 3560 | hasown: 2.0.2 3561 | 3562 | is-relative@1.0.0: 3563 | dependencies: 3564 | is-unc-path: 1.0.0 3565 | 3566 | is-set@2.0.3: {} 3567 | 3568 | is-shared-array-buffer@1.0.4: 3569 | dependencies: 3570 | call-bound: 1.0.3 3571 | 3572 | is-string@1.1.1: 3573 | dependencies: 3574 | call-bound: 1.0.3 3575 | has-tostringtag: 1.0.2 3576 | 3577 | is-symbol@1.1.1: 3578 | dependencies: 3579 | call-bound: 1.0.3 3580 | has-symbols: 1.1.0 3581 | safe-regex-test: 1.1.0 3582 | 3583 | is-typed-array@1.1.15: 3584 | dependencies: 3585 | which-typed-array: 1.1.18 3586 | 3587 | is-unc-path@1.0.0: 3588 | dependencies: 3589 | unc-path-regex: 0.1.2 3590 | 3591 | is-utf8@0.2.1: {} 3592 | 3593 | is-valid-glob@1.0.0: {} 3594 | 3595 | is-weakmap@2.0.2: {} 3596 | 3597 | is-weakset@2.0.4: 3598 | dependencies: 3599 | call-bound: 1.0.3 3600 | get-intrinsic: 1.2.7 3601 | 3602 | is-windows@1.0.2: {} 3603 | 3604 | isarray@1.0.0: {} 3605 | 3606 | isarray@2.0.5: {} 3607 | 3608 | isexe@2.0.0: {} 3609 | 3610 | isobject@2.1.0: 3611 | dependencies: 3612 | isarray: 1.0.0 3613 | 3614 | isobject@3.0.1: {} 3615 | 3616 | jmespath@0.16.0: {} 3617 | 3618 | js-base64@3.7.2: {} 3619 | 3620 | js-tiktoken@1.0.19: 3621 | dependencies: 3622 | base64-js: 1.5.1 3623 | 3624 | js-yaml@4.1.0: 3625 | dependencies: 3626 | argparse: 2.0.1 3627 | 3628 | json-buffer@3.0.1: {} 3629 | 3630 | json-schema-traverse@0.4.1: {} 3631 | 3632 | json-stable-stringify-without-jsonify@1.0.1: {} 3633 | 3634 | jssha@3.3.1: {} 3635 | 3636 | just-debounce@1.1.0: {} 3637 | 3638 | keyv@4.5.4: 3639 | dependencies: 3640 | json-buffer: 3.0.1 3641 | 3642 | kind-of@3.2.2: 3643 | dependencies: 3644 | is-buffer: 1.1.6 3645 | 3646 | kind-of@4.0.0: 3647 | dependencies: 3648 | is-buffer: 1.1.6 3649 | 3650 | kind-of@5.1.0: {} 3651 | 3652 | kind-of@6.0.3: {} 3653 | 3654 | langsmith@0.1.68: 3655 | dependencies: 3656 | '@types/uuid': 10.0.0 3657 | commander: 10.0.1 3658 | p-queue: 6.6.2 3659 | p-retry: 4.6.2 3660 | semver: 7.7.1 3661 | uuid: 10.0.0 3662 | 3663 | last-run@1.1.1: 3664 | dependencies: 3665 | default-resolution: 2.0.0 3666 | es6-weak-map: 2.0.3 3667 | 3668 | lazystream@1.0.1: 3669 | dependencies: 3670 | readable-stream: 2.3.8 3671 | 3672 | lcid@1.0.0: 3673 | dependencies: 3674 | invert-kv: 1.0.0 3675 | 3676 | lead@1.0.0: 3677 | dependencies: 3678 | flush-write-stream: 1.1.1 3679 | 3680 | levn@0.4.1: 3681 | dependencies: 3682 | prelude-ls: 1.2.1 3683 | type-check: 0.4.0 3684 | 3685 | liftoff@3.1.0: 3686 | dependencies: 3687 | extend: 3.0.2 3688 | findup-sync: 3.0.0 3689 | fined: 1.2.0 3690 | flagged-respawn: 1.0.1 3691 | is-plain-object: 2.0.4 3692 | object.map: 1.0.1 3693 | rechoir: 0.6.2 3694 | resolve: 1.22.10 3695 | transitivePeerDependencies: 3696 | - supports-color 3697 | 3698 | load-json-file@1.1.0: 3699 | dependencies: 3700 | graceful-fs: 4.2.11 3701 | parse-json: 2.2.0 3702 | pify: 2.3.0 3703 | pinkie-promise: 2.0.1 3704 | strip-bom: 2.0.0 3705 | 3706 | locate-path@6.0.0: 3707 | dependencies: 3708 | p-locate: 5.0.0 3709 | 3710 | lodash.merge@4.6.2: {} 3711 | 3712 | lodash@4.17.21: {} 3713 | 3714 | lower-case@2.0.2: 3715 | dependencies: 3716 | tslib: 2.8.1 3717 | 3718 | luxon@3.4.4: {} 3719 | 3720 | make-iterator@1.0.1: 3721 | dependencies: 3722 | kind-of: 6.0.3 3723 | 3724 | map-cache@0.2.2: {} 3725 | 3726 | map-visit@1.0.0: 3727 | dependencies: 3728 | object-visit: 1.0.1 3729 | 3730 | matchdep@2.0.0: 3731 | dependencies: 3732 | findup-sync: 2.0.0 3733 | micromatch: 3.1.10 3734 | resolve: 1.22.10 3735 | stack-trace: 0.0.10 3736 | transitivePeerDependencies: 3737 | - supports-color 3738 | 3739 | math-intrinsics@1.1.0: {} 3740 | 3741 | md5@2.3.0: 3742 | dependencies: 3743 | charenc: 0.0.2 3744 | crypt: 0.0.2 3745 | is-buffer: 1.1.6 3746 | 3747 | merge2@1.4.1: {} 3748 | 3749 | micromatch@3.1.10: 3750 | dependencies: 3751 | arr-diff: 4.0.0 3752 | array-unique: 0.3.2 3753 | braces: 2.3.2 3754 | define-property: 2.0.2 3755 | extend-shallow: 3.0.2 3756 | extglob: 2.0.4 3757 | fragment-cache: 0.2.1 3758 | kind-of: 6.0.3 3759 | nanomatch: 1.2.13 3760 | object.pick: 1.3.0 3761 | regex-not: 1.0.2 3762 | snapdragon: 0.8.2 3763 | to-regex: 3.0.2 3764 | transitivePeerDependencies: 3765 | - supports-color 3766 | 3767 | micromatch@4.0.8: 3768 | dependencies: 3769 | braces: 3.0.3 3770 | picomatch: 2.3.1 3771 | 3772 | mime-db@1.52.0: {} 3773 | 3774 | mime-types@2.1.35: 3775 | dependencies: 3776 | mime-db: 1.52.0 3777 | 3778 | minimatch@3.1.2: 3779 | dependencies: 3780 | brace-expansion: 1.1.11 3781 | 3782 | minimatch@9.0.3: 3783 | dependencies: 3784 | brace-expansion: 2.0.1 3785 | 3786 | mixin-deep@1.3.2: 3787 | dependencies: 3788 | for-in: 1.0.2 3789 | is-extendable: 1.0.1 3790 | 3791 | ml-array-mean@1.1.6: 3792 | dependencies: 3793 | ml-array-sum: 1.1.6 3794 | 3795 | ml-array-sum@1.1.6: 3796 | dependencies: 3797 | is-any-array: 2.0.1 3798 | 3799 | ml-distance-euclidean@2.0.0: {} 3800 | 3801 | ml-distance@4.0.1: 3802 | dependencies: 3803 | ml-array-mean: 1.1.6 3804 | ml-distance-euclidean: 2.0.0 3805 | ml-tree-similarity: 1.0.0 3806 | 3807 | ml-tree-similarity@1.0.0: 3808 | dependencies: 3809 | binary-search: 1.3.6 3810 | num-sort: 2.1.0 3811 | 3812 | ms@2.0.0: {} 3813 | 3814 | ms@2.1.3: {} 3815 | 3816 | mustache@4.2.0: {} 3817 | 3818 | mute-stdout@1.0.1: {} 3819 | 3820 | n8n-workflow@1.70.0: 3821 | dependencies: 3822 | '@n8n/tournament': 1.0.5 3823 | '@n8n_io/riot-tmpl': 4.0.0 3824 | ast-types: 0.15.2 3825 | axios: 1.7.4 3826 | callsites: 3.1.0 3827 | deep-equal: 2.2.0 3828 | esprima-next: 5.8.4 3829 | form-data: 4.0.0 3830 | jmespath: 0.16.0 3831 | js-base64: 3.7.2 3832 | jssha: 3.3.1 3833 | lodash: 4.17.21 3834 | luxon: 3.4.4 3835 | md5: 2.3.0 3836 | recast: 0.21.5 3837 | title-case: 3.0.3 3838 | transliteration: 2.3.5 3839 | xml2js: 0.6.2 3840 | transitivePeerDependencies: 3841 | - debug 3842 | 3843 | nan@2.22.0: 3844 | optional: true 3845 | 3846 | nanomatch@1.2.13: 3847 | dependencies: 3848 | arr-diff: 4.0.0 3849 | array-unique: 0.3.2 3850 | define-property: 2.0.2 3851 | extend-shallow: 3.0.2 3852 | fragment-cache: 0.2.1 3853 | is-windows: 1.0.2 3854 | kind-of: 6.0.3 3855 | object.pick: 1.3.0 3856 | regex-not: 1.0.2 3857 | snapdragon: 0.8.2 3858 | to-regex: 3.0.2 3859 | transitivePeerDependencies: 3860 | - supports-color 3861 | 3862 | natural-compare@1.4.0: {} 3863 | 3864 | next-tick@1.1.0: {} 3865 | 3866 | no-case@3.0.4: 3867 | dependencies: 3868 | lower-case: 2.0.2 3869 | tslib: 2.8.1 3870 | 3871 | normalize-package-data@2.5.0: 3872 | dependencies: 3873 | hosted-git-info: 2.8.9 3874 | resolve: 1.22.10 3875 | semver: 5.7.2 3876 | validate-npm-package-license: 3.0.4 3877 | 3878 | normalize-path@2.1.1: 3879 | dependencies: 3880 | remove-trailing-separator: 1.1.0 3881 | 3882 | normalize-path@3.0.0: {} 3883 | 3884 | now-and-later@2.0.1: 3885 | dependencies: 3886 | once: 1.4.0 3887 | 3888 | num-sort@2.1.0: {} 3889 | 3890 | number-is-nan@1.0.1: {} 3891 | 3892 | object-copy@0.1.0: 3893 | dependencies: 3894 | copy-descriptor: 0.1.1 3895 | define-property: 0.2.5 3896 | kind-of: 3.2.2 3897 | 3898 | object-inspect@1.13.4: {} 3899 | 3900 | object-is@1.1.6: 3901 | dependencies: 3902 | call-bind: 1.0.8 3903 | define-properties: 1.2.1 3904 | 3905 | object-keys@1.1.1: {} 3906 | 3907 | object-visit@1.0.1: 3908 | dependencies: 3909 | isobject: 3.0.1 3910 | 3911 | object.assign@4.1.7: 3912 | dependencies: 3913 | call-bind: 1.0.8 3914 | call-bound: 1.0.3 3915 | define-properties: 1.2.1 3916 | es-object-atoms: 1.1.1 3917 | has-symbols: 1.1.0 3918 | object-keys: 1.1.1 3919 | 3920 | object.defaults@1.1.0: 3921 | dependencies: 3922 | array-each: 1.0.1 3923 | array-slice: 1.1.0 3924 | for-own: 1.0.0 3925 | isobject: 3.0.1 3926 | 3927 | object.map@1.0.1: 3928 | dependencies: 3929 | for-own: 1.0.0 3930 | make-iterator: 1.0.1 3931 | 3932 | object.pick@1.3.0: 3933 | dependencies: 3934 | isobject: 3.0.1 3935 | 3936 | object.reduce@1.0.1: 3937 | dependencies: 3938 | for-own: 1.0.0 3939 | make-iterator: 1.0.1 3940 | 3941 | once@1.4.0: 3942 | dependencies: 3943 | wrappy: 1.0.2 3944 | 3945 | optionator@0.9.4: 3946 | dependencies: 3947 | deep-is: 0.1.4 3948 | fast-levenshtein: 2.0.6 3949 | levn: 0.4.1 3950 | prelude-ls: 1.2.1 3951 | type-check: 0.4.0 3952 | word-wrap: 1.2.5 3953 | 3954 | ordered-read-streams@1.0.1: 3955 | dependencies: 3956 | readable-stream: 2.3.8 3957 | 3958 | os-locale@1.4.0: 3959 | dependencies: 3960 | lcid: 1.0.0 3961 | 3962 | p-finally@1.0.0: {} 3963 | 3964 | p-limit@3.1.0: 3965 | dependencies: 3966 | yocto-queue: 0.1.0 3967 | 3968 | p-locate@5.0.0: 3969 | dependencies: 3970 | p-limit: 3.1.0 3971 | 3972 | p-queue@6.6.2: 3973 | dependencies: 3974 | eventemitter3: 4.0.7 3975 | p-timeout: 3.2.0 3976 | 3977 | p-retry@4.6.2: 3978 | dependencies: 3979 | '@types/retry': 0.12.0 3980 | retry: 0.13.1 3981 | 3982 | p-timeout@3.2.0: 3983 | dependencies: 3984 | p-finally: 1.0.0 3985 | 3986 | parent-module@1.0.1: 3987 | dependencies: 3988 | callsites: 3.1.0 3989 | 3990 | parse-filepath@1.0.2: 3991 | dependencies: 3992 | is-absolute: 1.0.0 3993 | map-cache: 0.2.2 3994 | path-root: 0.1.1 3995 | 3996 | parse-json@2.2.0: 3997 | dependencies: 3998 | error-ex: 1.3.2 3999 | 4000 | parse-node-version@1.0.1: {} 4001 | 4002 | parse-passwd@1.0.0: {} 4003 | 4004 | pascal-case@3.1.2: 4005 | dependencies: 4006 | no-case: 3.0.4 4007 | tslib: 2.8.1 4008 | 4009 | pascalcase@0.1.1: {} 4010 | 4011 | path-dirname@1.0.2: {} 4012 | 4013 | path-exists@2.1.0: 4014 | dependencies: 4015 | pinkie-promise: 2.0.1 4016 | 4017 | path-exists@4.0.0: {} 4018 | 4019 | path-is-absolute@1.0.1: {} 4020 | 4021 | path-key@3.1.1: {} 4022 | 4023 | path-parse@1.0.7: {} 4024 | 4025 | path-root-regex@0.1.2: {} 4026 | 4027 | path-root@0.1.1: 4028 | dependencies: 4029 | path-root-regex: 0.1.2 4030 | 4031 | path-type@1.1.0: 4032 | dependencies: 4033 | graceful-fs: 4.2.11 4034 | pify: 2.3.0 4035 | pinkie-promise: 2.0.1 4036 | 4037 | path-type@4.0.0: {} 4038 | 4039 | picomatch@2.3.1: {} 4040 | 4041 | pify@2.3.0: {} 4042 | 4043 | pinkie-promise@2.0.1: 4044 | dependencies: 4045 | pinkie: 2.0.4 4046 | 4047 | pinkie@2.0.4: {} 4048 | 4049 | pluralize@8.0.0: {} 4050 | 4051 | posix-character-classes@0.1.1: {} 4052 | 4053 | possible-typed-array-names@1.1.0: {} 4054 | 4055 | prelude-ls@1.2.1: {} 4056 | 4057 | prettier@2.8.8: {} 4058 | 4059 | pretty-hrtime@1.0.3: {} 4060 | 4061 | process-nextick-args@2.0.1: {} 4062 | 4063 | proxy-from-env@1.1.0: {} 4064 | 4065 | pump@2.0.1: 4066 | dependencies: 4067 | end-of-stream: 1.4.4 4068 | once: 1.4.0 4069 | 4070 | pumpify@1.5.1: 4071 | dependencies: 4072 | duplexify: 3.7.1 4073 | inherits: 2.0.4 4074 | pump: 2.0.1 4075 | 4076 | punycode@2.3.1: {} 4077 | 4078 | queue-microtask@1.2.3: {} 4079 | 4080 | raw-body@3.0.0: 4081 | dependencies: 4082 | bytes: 3.1.2 4083 | http-errors: 2.0.0 4084 | iconv-lite: 0.6.3 4085 | unpipe: 1.0.0 4086 | 4087 | read-pkg-up@1.0.1: 4088 | dependencies: 4089 | find-up: 1.1.2 4090 | read-pkg: 1.1.0 4091 | 4092 | read-pkg@1.1.0: 4093 | dependencies: 4094 | load-json-file: 1.1.0 4095 | normalize-package-data: 2.5.0 4096 | path-type: 1.1.0 4097 | 4098 | readable-stream@2.3.8: 4099 | dependencies: 4100 | core-util-is: 1.0.3 4101 | inherits: 2.0.4 4102 | isarray: 1.0.0 4103 | process-nextick-args: 2.0.1 4104 | safe-buffer: 5.1.2 4105 | string_decoder: 1.1.1 4106 | util-deprecate: 1.0.2 4107 | 4108 | readdirp@2.2.1: 4109 | dependencies: 4110 | graceful-fs: 4.2.11 4111 | micromatch: 3.1.10 4112 | readable-stream: 2.3.8 4113 | transitivePeerDependencies: 4114 | - supports-color 4115 | 4116 | recast@0.21.5: 4117 | dependencies: 4118 | ast-types: 0.15.2 4119 | esprima: 4.0.1 4120 | source-map: 0.6.1 4121 | tslib: 2.8.1 4122 | 4123 | recast@0.22.0: 4124 | dependencies: 4125 | assert: 2.1.0 4126 | ast-types: 0.15.2 4127 | esprima: 4.0.1 4128 | source-map: 0.6.1 4129 | tslib: 2.8.1 4130 | 4131 | rechoir@0.6.2: 4132 | dependencies: 4133 | resolve: 1.22.10 4134 | 4135 | regex-not@1.0.2: 4136 | dependencies: 4137 | extend-shallow: 3.0.2 4138 | safe-regex: 1.1.0 4139 | 4140 | regexp.prototype.flags@1.5.4: 4141 | dependencies: 4142 | call-bind: 1.0.8 4143 | define-properties: 1.2.1 4144 | es-errors: 1.3.0 4145 | get-proto: 1.0.1 4146 | gopd: 1.2.0 4147 | set-function-name: 2.0.2 4148 | 4149 | remove-bom-buffer@3.0.0: 4150 | dependencies: 4151 | is-buffer: 1.1.6 4152 | is-utf8: 0.2.1 4153 | 4154 | remove-bom-stream@1.2.0: 4155 | dependencies: 4156 | remove-bom-buffer: 3.0.0 4157 | safe-buffer: 5.2.1 4158 | through2: 2.0.5 4159 | 4160 | remove-trailing-separator@1.1.0: {} 4161 | 4162 | repeat-element@1.1.4: {} 4163 | 4164 | repeat-string@1.6.1: {} 4165 | 4166 | replace-ext@1.0.1: {} 4167 | 4168 | replace-homedir@1.0.0: 4169 | dependencies: 4170 | homedir-polyfill: 1.0.3 4171 | is-absolute: 1.0.0 4172 | remove-trailing-separator: 1.1.0 4173 | 4174 | require-directory@2.1.1: {} 4175 | 4176 | require-main-filename@1.0.1: {} 4177 | 4178 | resolve-dir@1.0.1: 4179 | dependencies: 4180 | expand-tilde: 2.0.2 4181 | global-modules: 1.0.0 4182 | 4183 | resolve-from@4.0.0: {} 4184 | 4185 | resolve-options@1.1.0: 4186 | dependencies: 4187 | value-or-function: 3.0.0 4188 | 4189 | resolve-url@0.2.1: {} 4190 | 4191 | resolve@1.22.10: 4192 | dependencies: 4193 | is-core-module: 2.16.1 4194 | path-parse: 1.0.7 4195 | supports-preserve-symlinks-flag: 1.0.0 4196 | 4197 | ret@0.1.15: {} 4198 | 4199 | retry@0.13.1: {} 4200 | 4201 | reusify@1.0.4: {} 4202 | 4203 | rimraf@3.0.2: 4204 | dependencies: 4205 | glob: 7.2.3 4206 | 4207 | run-parallel@1.2.0: 4208 | dependencies: 4209 | queue-microtask: 1.2.3 4210 | 4211 | safe-buffer@5.1.2: {} 4212 | 4213 | safe-buffer@5.2.1: {} 4214 | 4215 | safe-regex-test@1.1.0: 4216 | dependencies: 4217 | call-bound: 1.0.3 4218 | es-errors: 1.3.0 4219 | is-regex: 1.2.1 4220 | 4221 | safe-regex@1.1.0: 4222 | dependencies: 4223 | ret: 0.1.15 4224 | 4225 | safer-buffer@2.1.2: {} 4226 | 4227 | sax@1.4.1: {} 4228 | 4229 | semver-greatest-satisfied-range@1.1.0: 4230 | dependencies: 4231 | sver-compat: 1.5.0 4232 | 4233 | semver@5.7.2: {} 4234 | 4235 | semver@7.7.1: {} 4236 | 4237 | sentence-case@3.0.4: 4238 | dependencies: 4239 | no-case: 3.0.4 4240 | tslib: 2.8.1 4241 | upper-case-first: 2.0.2 4242 | 4243 | set-blocking@2.0.0: {} 4244 | 4245 | set-function-length@1.2.2: 4246 | dependencies: 4247 | define-data-property: 1.1.4 4248 | es-errors: 1.3.0 4249 | function-bind: 1.1.2 4250 | get-intrinsic: 1.2.7 4251 | gopd: 1.2.0 4252 | has-property-descriptors: 1.0.2 4253 | 4254 | set-function-name@2.0.2: 4255 | dependencies: 4256 | define-data-property: 1.1.4 4257 | es-errors: 1.3.0 4258 | functions-have-names: 1.2.3 4259 | has-property-descriptors: 1.0.2 4260 | 4261 | set-value@2.0.1: 4262 | dependencies: 4263 | extend-shallow: 2.0.1 4264 | is-extendable: 0.1.1 4265 | is-plain-object: 2.0.4 4266 | split-string: 3.1.0 4267 | 4268 | setprototypeof@1.2.0: {} 4269 | 4270 | shebang-command@2.0.0: 4271 | dependencies: 4272 | shebang-regex: 3.0.0 4273 | 4274 | shebang-regex@3.0.0: {} 4275 | 4276 | side-channel-list@1.0.0: 4277 | dependencies: 4278 | es-errors: 1.3.0 4279 | object-inspect: 1.13.4 4280 | 4281 | side-channel-map@1.0.1: 4282 | dependencies: 4283 | call-bound: 1.0.3 4284 | es-errors: 1.3.0 4285 | get-intrinsic: 1.2.7 4286 | object-inspect: 1.13.4 4287 | 4288 | side-channel-weakmap@1.0.2: 4289 | dependencies: 4290 | call-bound: 1.0.3 4291 | es-errors: 1.3.0 4292 | get-intrinsic: 1.2.7 4293 | object-inspect: 1.13.4 4294 | side-channel-map: 1.0.1 4295 | 4296 | side-channel@1.1.0: 4297 | dependencies: 4298 | es-errors: 1.3.0 4299 | object-inspect: 1.13.4 4300 | side-channel-list: 1.0.0 4301 | side-channel-map: 1.0.1 4302 | side-channel-weakmap: 1.0.2 4303 | 4304 | slash@3.0.0: {} 4305 | 4306 | snapdragon-node@2.1.1: 4307 | dependencies: 4308 | define-property: 1.0.0 4309 | isobject: 3.0.1 4310 | snapdragon-util: 3.0.1 4311 | 4312 | snapdragon-util@3.0.1: 4313 | dependencies: 4314 | kind-of: 3.2.2 4315 | 4316 | snapdragon@0.8.2: 4317 | dependencies: 4318 | base: 0.11.2 4319 | debug: 2.6.9 4320 | define-property: 0.2.5 4321 | extend-shallow: 2.0.1 4322 | map-cache: 0.2.2 4323 | source-map: 0.5.7 4324 | source-map-resolve: 0.5.3 4325 | use: 3.1.1 4326 | transitivePeerDependencies: 4327 | - supports-color 4328 | 4329 | source-map-resolve@0.5.3: 4330 | dependencies: 4331 | atob: 2.1.2 4332 | decode-uri-component: 0.2.2 4333 | resolve-url: 0.2.1 4334 | source-map-url: 0.4.1 4335 | urix: 0.1.0 4336 | 4337 | source-map-url@0.4.1: {} 4338 | 4339 | source-map@0.5.7: {} 4340 | 4341 | source-map@0.6.1: {} 4342 | 4343 | sparkles@1.0.1: {} 4344 | 4345 | spdx-correct@3.2.0: 4346 | dependencies: 4347 | spdx-expression-parse: 3.0.1 4348 | spdx-license-ids: 3.0.21 4349 | 4350 | spdx-exceptions@2.5.0: {} 4351 | 4352 | spdx-expression-parse@3.0.1: 4353 | dependencies: 4354 | spdx-exceptions: 2.5.0 4355 | spdx-license-ids: 3.0.21 4356 | 4357 | spdx-license-ids@3.0.21: {} 4358 | 4359 | split-string@3.1.0: 4360 | dependencies: 4361 | extend-shallow: 3.0.2 4362 | 4363 | stack-trace@0.0.10: {} 4364 | 4365 | static-extend@0.1.2: 4366 | dependencies: 4367 | define-property: 0.2.5 4368 | object-copy: 0.1.0 4369 | 4370 | statuses@2.0.1: {} 4371 | 4372 | stop-iteration-iterator@1.1.0: 4373 | dependencies: 4374 | es-errors: 1.3.0 4375 | internal-slot: 1.1.0 4376 | 4377 | stream-exhaust@1.0.2: {} 4378 | 4379 | stream-shift@1.0.3: {} 4380 | 4381 | string-width@1.0.2: 4382 | dependencies: 4383 | code-point-at: 1.1.0 4384 | is-fullwidth-code-point: 1.0.0 4385 | strip-ansi: 3.0.1 4386 | 4387 | string-width@4.2.3: 4388 | dependencies: 4389 | emoji-regex: 8.0.0 4390 | is-fullwidth-code-point: 3.0.0 4391 | strip-ansi: 6.0.1 4392 | 4393 | string_decoder@1.1.1: 4394 | dependencies: 4395 | safe-buffer: 5.1.2 4396 | 4397 | strip-ansi@3.0.1: 4398 | dependencies: 4399 | ansi-regex: 2.1.1 4400 | 4401 | strip-ansi@6.0.1: 4402 | dependencies: 4403 | ansi-regex: 5.0.1 4404 | 4405 | strip-bom@2.0.0: 4406 | dependencies: 4407 | is-utf8: 0.2.1 4408 | 4409 | strip-json-comments@3.1.1: {} 4410 | 4411 | supports-color@7.2.0: 4412 | dependencies: 4413 | has-flag: 4.0.0 4414 | 4415 | supports-preserve-symlinks-flag@1.0.0: {} 4416 | 4417 | sver-compat@1.5.0: 4418 | dependencies: 4419 | es6-iterator: 2.0.3 4420 | es6-symbol: 3.1.4 4421 | 4422 | text-table@0.2.0: {} 4423 | 4424 | through2-filter@3.0.0: 4425 | dependencies: 4426 | through2: 2.0.5 4427 | xtend: 4.0.2 4428 | 4429 | through2@2.0.5: 4430 | dependencies: 4431 | readable-stream: 2.3.8 4432 | xtend: 4.0.2 4433 | 4434 | time-stamp@1.1.0: {} 4435 | 4436 | title-case@3.0.3: 4437 | dependencies: 4438 | tslib: 2.8.1 4439 | 4440 | to-absolute-glob@2.0.2: 4441 | dependencies: 4442 | is-absolute: 1.0.0 4443 | is-negated-glob: 1.0.0 4444 | 4445 | to-object-path@0.3.0: 4446 | dependencies: 4447 | kind-of: 3.2.2 4448 | 4449 | to-regex-range@2.1.1: 4450 | dependencies: 4451 | is-number: 3.0.0 4452 | repeat-string: 1.6.1 4453 | 4454 | to-regex-range@5.0.1: 4455 | dependencies: 4456 | is-number: 7.0.0 4457 | 4458 | to-regex@3.0.2: 4459 | dependencies: 4460 | define-property: 2.0.2 4461 | extend-shallow: 3.0.2 4462 | regex-not: 1.0.2 4463 | safe-regex: 1.1.0 4464 | 4465 | to-through@2.0.0: 4466 | dependencies: 4467 | through2: 2.0.5 4468 | 4469 | toidentifier@1.0.1: {} 4470 | 4471 | transliteration@2.3.5: 4472 | dependencies: 4473 | yargs: 17.7.2 4474 | 4475 | ts-api-utils@1.4.3(typescript@4.8.4): 4476 | dependencies: 4477 | typescript: 4.8.4 4478 | 4479 | tslib@1.14.1: {} 4480 | 4481 | tslib@2.8.1: {} 4482 | 4483 | tsutils@3.21.0(typescript@4.8.4): 4484 | dependencies: 4485 | tslib: 1.14.1 4486 | typescript: 4.8.4 4487 | 4488 | type-check@0.4.0: 4489 | dependencies: 4490 | prelude-ls: 1.2.1 4491 | 4492 | type-fest@0.20.2: {} 4493 | 4494 | type@2.7.3: {} 4495 | 4496 | typedarray@0.0.6: {} 4497 | 4498 | typescript@4.8.4: {} 4499 | 4500 | unc-path-regex@0.1.2: {} 4501 | 4502 | undertaker-registry@1.0.1: {} 4503 | 4504 | undertaker@1.3.0: 4505 | dependencies: 4506 | arr-flatten: 1.1.0 4507 | arr-map: 2.0.2 4508 | bach: 1.2.0 4509 | collection-map: 1.0.0 4510 | es6-weak-map: 2.0.3 4511 | fast-levenshtein: 1.1.4 4512 | last-run: 1.1.1 4513 | object.defaults: 1.1.0 4514 | object.reduce: 1.0.1 4515 | undertaker-registry: 1.0.1 4516 | 4517 | union-value@1.0.1: 4518 | dependencies: 4519 | arr-union: 3.1.0 4520 | get-value: 2.0.6 4521 | is-extendable: 0.1.1 4522 | set-value: 2.0.1 4523 | 4524 | unique-stream@2.3.1: 4525 | dependencies: 4526 | json-stable-stringify-without-jsonify: 1.0.1 4527 | through2-filter: 3.0.0 4528 | 4529 | unpipe@1.0.0: {} 4530 | 4531 | unset-value@1.0.0: 4532 | dependencies: 4533 | has-value: 0.3.1 4534 | isobject: 3.0.1 4535 | 4536 | upath@1.2.0: {} 4537 | 4538 | upper-case-first@2.0.2: 4539 | dependencies: 4540 | tslib: 2.8.1 4541 | 4542 | uri-js@4.4.1: 4543 | dependencies: 4544 | punycode: 2.3.1 4545 | 4546 | urix@0.1.0: {} 4547 | 4548 | use@3.1.1: {} 4549 | 4550 | util-deprecate@1.0.2: {} 4551 | 4552 | util@0.12.5: 4553 | dependencies: 4554 | inherits: 2.0.4 4555 | is-arguments: 1.2.0 4556 | is-generator-function: 1.1.0 4557 | is-typed-array: 1.1.15 4558 | which-typed-array: 1.1.18 4559 | 4560 | uuid@10.0.0: {} 4561 | 4562 | uuid@9.0.1: {} 4563 | 4564 | v8flags@3.2.0: 4565 | dependencies: 4566 | homedir-polyfill: 1.0.3 4567 | 4568 | validate-npm-package-license@3.0.4: 4569 | dependencies: 4570 | spdx-correct: 3.2.0 4571 | spdx-expression-parse: 3.0.1 4572 | 4573 | value-or-function@3.0.0: {} 4574 | 4575 | vinyl-fs@3.0.3: 4576 | dependencies: 4577 | fs-mkdirp-stream: 1.0.0 4578 | glob-stream: 6.1.0 4579 | graceful-fs: 4.2.11 4580 | is-valid-glob: 1.0.0 4581 | lazystream: 1.0.1 4582 | lead: 1.0.0 4583 | object.assign: 4.1.7 4584 | pumpify: 1.5.1 4585 | readable-stream: 2.3.8 4586 | remove-bom-buffer: 3.0.0 4587 | remove-bom-stream: 1.2.0 4588 | resolve-options: 1.1.0 4589 | through2: 2.0.5 4590 | to-through: 2.0.0 4591 | value-or-function: 3.0.0 4592 | vinyl: 2.2.1 4593 | vinyl-sourcemap: 1.1.0 4594 | 4595 | vinyl-sourcemap@1.1.0: 4596 | dependencies: 4597 | append-buffer: 1.0.2 4598 | convert-source-map: 1.9.0 4599 | graceful-fs: 4.2.11 4600 | normalize-path: 2.1.1 4601 | now-and-later: 2.0.1 4602 | remove-bom-buffer: 3.0.0 4603 | vinyl: 2.2.1 4604 | 4605 | vinyl@2.2.1: 4606 | dependencies: 4607 | clone: 2.1.2 4608 | clone-buffer: 1.0.0 4609 | clone-stats: 1.0.0 4610 | cloneable-readable: 1.1.3 4611 | remove-trailing-separator: 1.1.0 4612 | replace-ext: 1.0.1 4613 | 4614 | which-boxed-primitive@1.1.1: 4615 | dependencies: 4616 | is-bigint: 1.1.0 4617 | is-boolean-object: 1.2.2 4618 | is-number-object: 1.1.1 4619 | is-string: 1.1.1 4620 | is-symbol: 1.1.1 4621 | 4622 | which-collection@1.0.2: 4623 | dependencies: 4624 | is-map: 2.0.3 4625 | is-set: 2.0.3 4626 | is-weakmap: 2.0.2 4627 | is-weakset: 2.0.4 4628 | 4629 | which-module@1.0.0: {} 4630 | 4631 | which-typed-array@1.1.18: 4632 | dependencies: 4633 | available-typed-arrays: 1.0.7 4634 | call-bind: 1.0.8 4635 | call-bound: 1.0.3 4636 | for-each: 0.3.5 4637 | gopd: 1.2.0 4638 | has-tostringtag: 1.0.2 4639 | 4640 | which@1.3.1: 4641 | dependencies: 4642 | isexe: 2.0.0 4643 | 4644 | which@2.0.2: 4645 | dependencies: 4646 | isexe: 2.0.0 4647 | 4648 | word-wrap@1.2.5: {} 4649 | 4650 | wrap-ansi@2.1.0: 4651 | dependencies: 4652 | string-width: 1.0.2 4653 | strip-ansi: 3.0.1 4654 | 4655 | wrap-ansi@7.0.0: 4656 | dependencies: 4657 | ansi-styles: 4.3.0 4658 | string-width: 4.2.3 4659 | strip-ansi: 6.0.1 4660 | 4661 | wrappy@1.0.2: {} 4662 | 4663 | xml2js@0.6.2: 4664 | dependencies: 4665 | sax: 1.4.1 4666 | xmlbuilder: 11.0.1 4667 | 4668 | xmlbuilder@11.0.1: {} 4669 | 4670 | xtend@4.0.2: {} 4671 | 4672 | y18n@3.2.2: {} 4673 | 4674 | y18n@5.0.8: {} 4675 | 4676 | yargs-parser@21.1.1: {} 4677 | 4678 | yargs-parser@5.0.1: 4679 | dependencies: 4680 | camelcase: 3.0.0 4681 | object.assign: 4.1.7 4682 | 4683 | yargs@17.7.2: 4684 | dependencies: 4685 | cliui: 8.0.1 4686 | escalade: 3.2.0 4687 | get-caller-file: 2.0.5 4688 | require-directory: 2.1.1 4689 | string-width: 4.2.3 4690 | y18n: 5.0.8 4691 | yargs-parser: 21.1.1 4692 | 4693 | yargs@7.1.2: 4694 | dependencies: 4695 | camelcase: 3.0.0 4696 | cliui: 3.2.0 4697 | decamelize: 1.2.0 4698 | get-caller-file: 1.0.3 4699 | os-locale: 1.4.0 4700 | read-pkg-up: 1.0.1 4701 | require-directory: 2.1.1 4702 | require-main-filename: 1.0.1 4703 | set-blocking: 2.0.0 4704 | string-width: 1.0.2 4705 | which-module: 1.0.0 4706 | y18n: 3.2.2 4707 | yargs-parser: 5.0.1 4708 | 4709 | yocto-queue@0.1.0: {} 4710 | 4711 | zod-to-json-schema@3.24.1(zod@3.24.2): 4712 | dependencies: 4713 | zod: 3.24.2 4714 | 4715 | zod@3.24.2: {} 4716 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "strict": true, 4 | "module": "commonjs", 5 | "moduleResolution": "node", 6 | "target": "es2019", 7 | "lib": ["es2019", "es2020", "es2022.error"], 8 | "removeComments": true, 9 | "useUnknownInCatchVariables": false, 10 | "forceConsistentCasingInFileNames": true, 11 | "noImplicitAny": true, 12 | "noImplicitReturns": true, 13 | "noUnusedLocals": true, 14 | "strictNullChecks": true, 15 | "preserveConstEnums": true, 16 | "esModuleInterop": true, 17 | "resolveJsonModule": true, 18 | "incremental": true, 19 | "declaration": true, 20 | "sourceMap": true, 21 | "skipLibCheck": true, 22 | "outDir": "./dist/", 23 | "types": ["node", "jest"] 24 | }, 25 | "include": [ 26 | "credentials/**/*", 27 | "nodes/**/*", 28 | "nodes/**/*.json", 29 | "package.json", 30 | "__tests__/**/*" 31 | ], 32 | } 33 | --------------------------------------------------------------------------------