├── .cursor └── mcp.json ├── .github └── workflows │ ├── build.yml │ ├── lint-pr.yml │ └── release.yml ├── .gitignore ├── .prettierrc ├── .vscode └── mcp.json ├── LICENSE ├── README.md ├── dtsgen.json ├── eslint.config.mjs ├── images └── akuity.png ├── package.json ├── pnpm-lock.yaml ├── src ├── argocd │ ├── client.ts │ └── http.ts ├── cmd │ └── cmd.ts ├── index.ts ├── logging │ └── logging.ts ├── server │ ├── server.ts │ └── transport.ts ├── shared │ └── models │ │ └── schema.ts └── types │ ├── argocd-types.ts │ └── argocd.d.ts ├── tsconfig.json └── tsup.config.ts /.cursor/mcp.json: -------------------------------------------------------------------------------- 1 | { 2 | "mcpServers": { 3 | "argocd-mcp": { 4 | "command": "npx", 5 | "args": [ 6 | "argocd-mcp@latest", 7 | "stdio" 8 | ], 9 | "env": { 10 | "NODE_TLS_REJECT_UNAUTHORIZED": "0", 11 | "ARGOCD_BASE_URL": "", 12 | "ARGOCD_API_TOKEN": "" 13 | } 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build Package 2 | 3 | on: 4 | push: 5 | branches: 6 | - "main" 7 | pull_request: 8 | branches: 9 | - "main" 10 | workflow_dispatch: 11 | 12 | jobs: 13 | build: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/checkout@v4 17 | - uses: actions/setup-node@v4 18 | with: 19 | node-version: 'lts/*' 20 | - uses: pnpm/action-setup@v4 21 | with: 22 | version: latest 23 | - name: Install dependencies 24 | run: pnpm install 25 | - name: Lint 26 | run: 27 | pnpm run lint 28 | - name: Create npm package 29 | run: pnpm pack 30 | -------------------------------------------------------------------------------- /.github/workflows/lint-pr.yml: -------------------------------------------------------------------------------- 1 | name: "Lint PR Title" 2 | 3 | on: 4 | pull_request_target: 5 | types: 6 | - opened 7 | - edited 8 | - synchronize 9 | 10 | permissions: 11 | pull-requests: read 12 | 13 | jobs: 14 | lint-pr-title: 15 | name: Lint PR Title 16 | runs-on: ubuntu-latest 17 | steps: 18 | - uses: amannn/action-semantic-pull-request@v5 19 | env: 20 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 21 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release Package 2 | 3 | on: 4 | release: 5 | types: 6 | - published 7 | 8 | jobs: 9 | release: 10 | if: startsWith(github.ref, 'refs/tags/v') 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | - uses: actions/setup-node@v4 15 | with: 16 | node-version: 'lts/*' 17 | - uses: pnpm/action-setup@v4 18 | with: 19 | version: latest 20 | - name: Install dependencies 21 | run: pnpm install 22 | - name: Lint 23 | run: 24 | pnpm run lint 25 | - name: Release 26 | env: 27 | NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 28 | run: | 29 | echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc 30 | VERSION=${GITHUB_REF#refs/tags/v} 31 | npm version $VERSION --no-git-tag-version 32 | npm publish --access public 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # ArgoCD official swagger.json 14 | swagger.json 15 | 16 | # Runtime data 17 | pids 18 | *.pid 19 | *.seed 20 | *.pid.lock 21 | 22 | # Directory for instrumented libs generated by jscoverage/JSCover 23 | lib-cov 24 | 25 | # Coverage directory used by tools like istanbul 26 | coverage 27 | *.lcov 28 | 29 | # nyc test coverage 30 | .nyc_output 31 | 32 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 33 | .grunt 34 | 35 | # Bower dependency directory (https://bower.io/) 36 | bower_components 37 | 38 | # node-waf configuration 39 | .lock-wscript 40 | 41 | # Compiled binary addons (https://nodejs.org/api/addons.html) 42 | build/Release 43 | 44 | # Dependency directories 45 | node_modules/ 46 | jspm_packages/ 47 | 48 | # Snowpack dependency directory (https://snowpack.dev/) 49 | web_modules/ 50 | 51 | # TypeScript cache 52 | *.tsbuildinfo 53 | 54 | # Optional npm cache directory 55 | .npm 56 | 57 | # Optional eslint cache 58 | .eslintcache 59 | 60 | # Optional stylelint cache 61 | .stylelintcache 62 | 63 | # Microbundle cache 64 | .rpt2_cache/ 65 | .rts2_cache_cjs/ 66 | .rts2_cache_es/ 67 | .rts2_cache_umd/ 68 | 69 | # Optional REPL history 70 | .node_repl_history 71 | 72 | # Output of 'npm pack' 73 | *.tgz 74 | 75 | # Yarn Integrity file 76 | .yarn-integrity 77 | 78 | # dotenv environment variable files 79 | .env 80 | .env.development.local 81 | .env.test.local 82 | .env.production.local 83 | .env.local 84 | 85 | # parcel-bundler cache (https://parceljs.org/) 86 | .cache 87 | .parcel-cache 88 | 89 | # Next.js build output 90 | .next 91 | out 92 | 93 | # Nuxt.js build / generate output 94 | .nuxt 95 | dist 96 | 97 | # Gatsby files 98 | .cache/ 99 | # Comment in the public line in if your project uses Gatsby and not Next.js 100 | # https://nextjs.org/blog/next-9-1#public-directory-support 101 | # public 102 | 103 | # vuepress build output 104 | .vuepress/dist 105 | 106 | # vuepress v2.x temp and cache directory 107 | .temp 108 | .cache 109 | 110 | # vitepress build output 111 | **/.vitepress/dist 112 | 113 | # vitepress cache directory 114 | **/.vitepress/cache 115 | 116 | # Docusaurus cache and generated files 117 | .docusaurus 118 | 119 | # Serverless directories 120 | .serverless/ 121 | 122 | # FuseBox cache 123 | .fusebox/ 124 | 125 | # DynamoDB Local files 126 | .dynamodb/ 127 | 128 | # TernJS port file 129 | .tern-port 130 | 131 | # Stores VSCode versions used for testing VSCode extensions 132 | .vscode-test 133 | 134 | # yarn v2 135 | .yarn/cache 136 | .yarn/unplugged 137 | .yarn/build-state.yml 138 | .yarn/install-state.gz 139 | .pnp.* 140 | 141 | # ide 142 | .idea/ 143 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": false, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100, 6 | "jsxSingleQuote": true 7 | } -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- 1 | { 2 | "servers": { 3 | "argocd-mcp-http": { 4 | "type": "http", 5 | "url": "http://localhost:3000/mcp", 6 | "headers": { 7 | "x-argocd-base-url": "", 8 | "x-argocd-api-token": "" 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2025 Akuity, Inc. 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Argo CD MCP Server 2 | 3 | An implementation of [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server for [Argo CD](https://argo-cd.readthedocs.io/en/stable/), enabling AI assistants to interact with your Argo CD applications through natural language. This server allows for seamless integration with Visual Studio Code and other MCP clients through stdio and HTTP stream transport protocols. 4 | 5 | 6 | argocd-mcp MCP server 7 | 8 | 9 | 24 | 25 | [Install in VS Code](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522argocd-mcp%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522argocd-mcp%2540latest%2522%252C%2522stdio%2522%255D%252C%2522env%2522%253A%257B%2522ARGOCD_BASE_URL%2522%253A%2522%253Cargocd_url%253E%2522%252C%2522ARGOCD_API_TOKEN%2522%253A%2522%253Cargocd_token%253E%2522%257D%257D) [Install in VS Code Insiders](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522argocd-mcp%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522argocd-mcp%2540latest%2522%252C%2522stdio%2522%255D%252C%2522env%2522%253A%257B%2522ARGOCD_BASE_URL%2522%253A%2522%253Cargocd_url%253E%2522%252C%2522ARGOCD_API_TOKEN%2522%253A%2522%253Cargocd_token%253E%2522%257D%257D) 26 | 27 | This project is maintained by [Akuity](https://akuity.io/), the creators of Argo Project. 28 | 29 | akuity 30 | 31 | Akuity is the enterprise company for Argo and Kargo, and provides the essential platform for end-to-end GitOps for Kubernetes. With the Akuity Platform, enterprises can deploy with managed Argo CD, promote seamlessly with Kargo, and gain real-time visibility into their infrastructure using Akuity Monitoring. Akuity was founded by Argo creators Hong Wang, Jesse Suen, and Alexander Matyushentsev, with a mission to empower both Platform and Application teams with the best tools for GitOps at enterprise scale. 32 | 33 | --- 34 | ![argocd-mcp-demo](https://github.com/user-attachments/assets/091548d0-9927-4d4b-a2fe-4f99c7cea108) 35 | 36 | ## Features 37 | 38 | - **Transport Protocols**: Supports both stdio and HTTP stream transport modes for flexible integration with different clients 39 | - **Complete Argo CD API Integration**: Provides comprehensive access to Argo CD resources and operations 40 | - **AI Assistant Ready**: Pre-configured tools for AI assistants to interact with Argo CD in natural language 41 | 42 | ## Installation 43 | 44 | ### Prerequisites 45 | 46 | - Node.js (v18 or higher recommended) 47 | - pnpm package manager (for development) 48 | - Argo CD instance with API access 49 | - Argo CD API token (see the [docs for instructions](https://argo-cd.readthedocs.io/en/stable/developer-guide/api-docs/#authorization)) 50 | 51 | ### Usage with Cursor 52 | 1. Follow the [Cursor documentation for MCP support](https://docs.cursor.com/context/model-context-protocol), and create a `.cursor/mcp.json` file in your project: 53 | ```json 54 | { 55 | "mcpServers": { 56 | "argocd-mcp": { 57 | "command": "npx", 58 | "args": [ 59 | "argocd-mcp@latest", 60 | "stdio" 61 | ], 62 | "env": { 63 | "ARGOCD_BASE_URL": "", 64 | "ARGOCD_API_TOKEN": "" 65 | } 66 | } 67 | } 68 | } 69 | ``` 70 | 71 | 2. Start a conversation with Agent mode to use the MCP. 72 | 73 | ### Usage with VSCode 74 | 75 | 1. Follow the [Use MCP servers in VS Code documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers), and create a `.vscode/mcp.json` file in your project: 76 | ```json 77 | { 78 | "servers": { 79 | "argocd-mcp-stdio": { 80 | "type": "stdio", 81 | "command": "npx", 82 | "args": [ 83 | "argocd-mcp@latest", 84 | "stdio" 85 | ], 86 | "env": { 87 | "ARGOCD_BASE_URL": "", 88 | "ARGOCD_API_TOKEN": "" 89 | } 90 | } 91 | } 92 | } 93 | ``` 94 | 95 | 2. Start a conversation with an AI assistant in VS Code that supports MCP. 96 | 97 | ### Usage with Claude Desktop 98 | 99 | 1. Follow the [MCP in Claude Desktop documentation](https://modelcontextprotocol.io/quickstart/user), and create a `claude_desktop_config.json` configuration file: 100 | ```json 101 | { 102 | "mcpServers": { 103 | "argocd-mcp": { 104 | "command": "npx", 105 | "args": [ 106 | "argocd-mcp@latest", 107 | "stdio" 108 | ], 109 | "env": { 110 | "ARGOCD_BASE_URL": "", 111 | "ARGOCD_API_TOKEN": "" 112 | } 113 | } 114 | } 115 | } 116 | ``` 117 | 118 | 2. Configure Claude Desktop to use this configuration file in settings. 119 | 120 | ### Self-signed Certificates 121 | 122 | If your Argo CD instance uses self-signed certificates or certificates from a private Certificate Authority (CA), you may need to add the following environment variable to your configuration: 123 | 124 | ``` 125 | "NODE_TLS_REJECT_UNAUTHORIZED": "0" 126 | ``` 127 | 128 | This disables TLS certificate validation for Node.js when connecting to Argo CD instances using self-signed certificates or certificates from private CAs that aren't trusted by your system's certificate store. 129 | 130 | > **Warning**: Disabling SSL verification reduces security. Use this setting only in development environments or when you understand the security implications. 131 | 132 | ## Available Tools 133 | 134 | The server provides the following ArgoCD management tools: 135 | 136 | ### Application Management 137 | - `list_applications`: List and filter all applications 138 | - `get_application`: Get detailed information about a specific application 139 | - `create_application`: Create a new application 140 | - `update_application`: Update an existing application 141 | - `delete_application`: Delete an application 142 | - `sync_application`: Trigger a sync operation on an application 143 | 144 | ### Resource Management 145 | - `get_application_resource_tree`: Get the resource tree for a specific application 146 | - `get_application_managed_resources`: Get managed resources for a specific application 147 | - `get_application_workload_logs`: Get logs for application workloads (Pods, Deployments, etc.) 148 | - `get_resource_events`: Get events for resources managed by an application 149 | - `get_resource_actions`: Get available actions for resources 150 | - `run_resource_action`: Run an action on a resource 151 | 152 | ## For Development 153 | 154 | 1. Clone the repository: 155 | ```bash 156 | git clone https://github.com/akuity/argocd-mcp.git 157 | cd argocd-mcp 158 | ``` 159 | 160 | 2. Install project dependencies: 161 | ```bash 162 | pnpm install 163 | ``` 164 | 165 | 3. Start the development server with hot reloading enabled: 166 | ```bash 167 | pnpm run dev 168 | ``` 169 | Once the server is running, you can utilize the MCP server within Visual Studio Code or other MCP client. 170 | 171 | ### Upgrading ArgoCD Types 172 | 173 | To update the TypeScript type definitions based on the latest Argo CD API specification: 174 | 175 | 1. Download the `swagger.json` file from the [ArgoCD release page](https://github.com/argoproj/argo-cd/releases), for example here is the [swagger.json link](https://github.com/argoproj/argo-cd/blob/v2.14.11/assets/swagger.json) for ArgoCD v2.14.11. 176 | 177 | 2. Place the downloaded `swagger.json` file in the root directory of the `argocd-mcp` project. 178 | 179 | 3. Generate the TypeScript types from the Swagger definition by running the following command. This will create or overwrite the `src/types/argocd.d.ts` file: 180 | ```bash 181 | pnpm run generate-types 182 | ``` 183 | 184 | 4. Update the `src/types/argocd-types.ts` file to export the required types from the newly generated `src/types/argocd.d.ts`. This step often requires manual review to ensure only necessary types are exposed. 185 | -------------------------------------------------------------------------------- /dtsgen.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "@dtsgenerator/replace-namespace": { 4 | "map": [ 5 | { 6 | "from": [ 7 | "Definitions" 8 | ], 9 | "to": [ 10 | "ArgoCD" 11 | ] 12 | } 13 | ] 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | 3 | import eslint from '@eslint/js'; 4 | import tseslint from 'typescript-eslint'; 5 | import prettierConfig from 'eslint-config-prettier'; 6 | import eslintPluginPrettier from 'eslint-plugin-prettier/recommended'; 7 | 8 | export default tseslint.config( 9 | eslint.configs.recommended, 10 | tseslint.configs.recommended, 11 | prettierConfig, 12 | eslintPluginPrettier, 13 | { 14 | ignores: ['node_modules/**', 'dist/**', 'src/types/argocd.d.ts'] 15 | } 16 | ); 17 | -------------------------------------------------------------------------------- /images/akuity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akuity/argocd-mcp/5d930b7dd1bbaa4d52badef4a4e43f0bb4d39484/images/akuity.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argocd-mcp", 3 | "version": "0.0.0", 4 | "description": "Argo CD MCP Server", 5 | "repository": { 6 | "type": "git", 7 | "url": "git+https://github.com/akuity/argocd-mcp.git" 8 | }, 9 | "keywords": [ 10 | "mcp", 11 | "argocd", 12 | "argocd-mcp", 13 | "argocd-mcp-server", 14 | "argo-cd", 15 | "argo-cd-mcp", 16 | "argo-cd-mcp-server", 17 | "cicd", 18 | "cicd-mcp", 19 | "cicd-mcp-server", 20 | "gitops", 21 | "gitops-mcp", 22 | "gitops-mcp-server", 23 | "kubernetes", 24 | "kubernetes-mcp", 25 | "kubernetes-mcp-server" 26 | ], 27 | "main": "dist/index.js", 28 | "type": "module", 29 | "bin": { 30 | "argocd-mcp": "dist/index.js" 31 | }, 32 | "files": [ 33 | "dist", 34 | "images", 35 | "README.md", 36 | "LICENSE" 37 | ], 38 | "scripts": { 39 | "dev": "tsx watch src/index.ts http", 40 | "dev-sse": "tsx watch src/index.ts sse", 41 | "lint": "eslint src/**/*.ts --no-warn-ignored", 42 | "lint:fix": "eslint src/**/*.ts --fix", 43 | "build": "tsup", 44 | "build:watch": "tsup --watch", 45 | "generate-types": "dtsgen -c dtsgen.json -o src/types/argocd.d.ts swagger.json", 46 | "prepare": "npm run build" 47 | }, 48 | "author": "Akuity, Inc.", 49 | "license": "Apache-2.0", 50 | "dependencies": { 51 | "@modelcontextprotocol/sdk": "^1.10.1", 52 | "dotenv": "^16.5.0", 53 | "express": "^5.1.0", 54 | "pino": "^9.6.0", 55 | "yargs": "^17.7.2", 56 | "zod": "^3.24.3" 57 | }, 58 | "devDependencies": { 59 | "@dtsgenerator/replace-namespace": "^1.7.0", 60 | "@eslint/js": "^9.25.0", 61 | "@types/express": "^5.0.1", 62 | "@types/node": "^22.14.1", 63 | "@types/yargs": "^17.0.33", 64 | "dtsgenerator": "^3.19.2", 65 | "eslint": "^9.25.0", 66 | "eslint-config-prettier": "^10.1.2", 67 | "eslint-plugin-prettier": "^5.2.6", 68 | "prettier": "3.5.3", 69 | "tsup": "^8.4.0", 70 | "tsx": "^4.19.3", 71 | "typescript": "^5.8.3", 72 | "typescript-eslint": "^8.30.1" 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@modelcontextprotocol/sdk': 12 | specifier: ^1.10.1 13 | version: 1.10.1 14 | dotenv: 15 | specifier: ^16.5.0 16 | version: 16.5.0 17 | express: 18 | specifier: ^5.1.0 19 | version: 5.1.0 20 | pino: 21 | specifier: ^9.6.0 22 | version: 9.6.0 23 | yargs: 24 | specifier: ^17.7.2 25 | version: 17.7.2 26 | zod: 27 | specifier: ^3.24.3 28 | version: 3.24.3 29 | devDependencies: 30 | '@dtsgenerator/replace-namespace': 31 | specifier: ^1.7.0 32 | version: 1.7.0(dtsgenerator@3.19.2)(tslib@2.8.1) 33 | '@eslint/js': 34 | specifier: ^9.25.0 35 | version: 9.25.0 36 | '@types/express': 37 | specifier: ^5.0.1 38 | version: 5.0.1 39 | '@types/node': 40 | specifier: ^22.14.1 41 | version: 22.14.1 42 | '@types/yargs': 43 | specifier: ^17.0.33 44 | version: 17.0.33 45 | dtsgenerator: 46 | specifier: ^3.19.2 47 | version: 3.19.2 48 | eslint: 49 | specifier: ^9.25.0 50 | version: 9.25.0 51 | eslint-config-prettier: 52 | specifier: ^10.1.2 53 | version: 10.1.2(eslint@9.25.0) 54 | eslint-plugin-prettier: 55 | specifier: ^5.2.6 56 | version: 5.2.6(eslint-config-prettier@10.1.2(eslint@9.25.0))(eslint@9.25.0)(prettier@3.5.3) 57 | prettier: 58 | specifier: 3.5.3 59 | version: 3.5.3 60 | tsup: 61 | specifier: ^8.4.0 62 | version: 8.4.0(tsx@4.19.3)(typescript@5.8.3) 63 | tsx: 64 | specifier: ^4.19.3 65 | version: 4.19.3 66 | typescript: 67 | specifier: ^5.8.3 68 | version: 5.8.3 69 | typescript-eslint: 70 | specifier: ^8.30.1 71 | version: 8.30.1(eslint@9.25.0)(typescript@5.8.3) 72 | 73 | packages: 74 | 75 | '@dtsgenerator/replace-namespace@1.7.0': 76 | resolution: {integrity: sha512-fOS8AP/Vz4u/+etAZDFPBpsHK3JASlVAId/cf+SH2Hcv5V96wsuvihXuKUomV08dPEUQhv98pgx/o1NiFUBzmA==} 77 | peerDependencies: 78 | dtsgenerator: ^3.19.2 79 | tslib: ^2.6.3 80 | 81 | '@esbuild/aix-ppc64@0.25.2': 82 | resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==} 83 | engines: {node: '>=18'} 84 | cpu: [ppc64] 85 | os: [aix] 86 | 87 | '@esbuild/android-arm64@0.25.2': 88 | resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==} 89 | engines: {node: '>=18'} 90 | cpu: [arm64] 91 | os: [android] 92 | 93 | '@esbuild/android-arm@0.25.2': 94 | resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==} 95 | engines: {node: '>=18'} 96 | cpu: [arm] 97 | os: [android] 98 | 99 | '@esbuild/android-x64@0.25.2': 100 | resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==} 101 | engines: {node: '>=18'} 102 | cpu: [x64] 103 | os: [android] 104 | 105 | '@esbuild/darwin-arm64@0.25.2': 106 | resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==} 107 | engines: {node: '>=18'} 108 | cpu: [arm64] 109 | os: [darwin] 110 | 111 | '@esbuild/darwin-x64@0.25.2': 112 | resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==} 113 | engines: {node: '>=18'} 114 | cpu: [x64] 115 | os: [darwin] 116 | 117 | '@esbuild/freebsd-arm64@0.25.2': 118 | resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==} 119 | engines: {node: '>=18'} 120 | cpu: [arm64] 121 | os: [freebsd] 122 | 123 | '@esbuild/freebsd-x64@0.25.2': 124 | resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==} 125 | engines: {node: '>=18'} 126 | cpu: [x64] 127 | os: [freebsd] 128 | 129 | '@esbuild/linux-arm64@0.25.2': 130 | resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==} 131 | engines: {node: '>=18'} 132 | cpu: [arm64] 133 | os: [linux] 134 | 135 | '@esbuild/linux-arm@0.25.2': 136 | resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==} 137 | engines: {node: '>=18'} 138 | cpu: [arm] 139 | os: [linux] 140 | 141 | '@esbuild/linux-ia32@0.25.2': 142 | resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==} 143 | engines: {node: '>=18'} 144 | cpu: [ia32] 145 | os: [linux] 146 | 147 | '@esbuild/linux-loong64@0.25.2': 148 | resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==} 149 | engines: {node: '>=18'} 150 | cpu: [loong64] 151 | os: [linux] 152 | 153 | '@esbuild/linux-mips64el@0.25.2': 154 | resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==} 155 | engines: {node: '>=18'} 156 | cpu: [mips64el] 157 | os: [linux] 158 | 159 | '@esbuild/linux-ppc64@0.25.2': 160 | resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==} 161 | engines: {node: '>=18'} 162 | cpu: [ppc64] 163 | os: [linux] 164 | 165 | '@esbuild/linux-riscv64@0.25.2': 166 | resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==} 167 | engines: {node: '>=18'} 168 | cpu: [riscv64] 169 | os: [linux] 170 | 171 | '@esbuild/linux-s390x@0.25.2': 172 | resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==} 173 | engines: {node: '>=18'} 174 | cpu: [s390x] 175 | os: [linux] 176 | 177 | '@esbuild/linux-x64@0.25.2': 178 | resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==} 179 | engines: {node: '>=18'} 180 | cpu: [x64] 181 | os: [linux] 182 | 183 | '@esbuild/netbsd-arm64@0.25.2': 184 | resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==} 185 | engines: {node: '>=18'} 186 | cpu: [arm64] 187 | os: [netbsd] 188 | 189 | '@esbuild/netbsd-x64@0.25.2': 190 | resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==} 191 | engines: {node: '>=18'} 192 | cpu: [x64] 193 | os: [netbsd] 194 | 195 | '@esbuild/openbsd-arm64@0.25.2': 196 | resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==} 197 | engines: {node: '>=18'} 198 | cpu: [arm64] 199 | os: [openbsd] 200 | 201 | '@esbuild/openbsd-x64@0.25.2': 202 | resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==} 203 | engines: {node: '>=18'} 204 | cpu: [x64] 205 | os: [openbsd] 206 | 207 | '@esbuild/sunos-x64@0.25.2': 208 | resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==} 209 | engines: {node: '>=18'} 210 | cpu: [x64] 211 | os: [sunos] 212 | 213 | '@esbuild/win32-arm64@0.25.2': 214 | resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==} 215 | engines: {node: '>=18'} 216 | cpu: [arm64] 217 | os: [win32] 218 | 219 | '@esbuild/win32-ia32@0.25.2': 220 | resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==} 221 | engines: {node: '>=18'} 222 | cpu: [ia32] 223 | os: [win32] 224 | 225 | '@esbuild/win32-x64@0.25.2': 226 | resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==} 227 | engines: {node: '>=18'} 228 | cpu: [x64] 229 | os: [win32] 230 | 231 | '@eslint-community/eslint-utils@4.6.1': 232 | resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==} 233 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 234 | peerDependencies: 235 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 236 | 237 | '@eslint-community/regexpp@4.12.1': 238 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 239 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 240 | 241 | '@eslint/config-array@0.20.0': 242 | resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==} 243 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 244 | 245 | '@eslint/config-helpers@0.2.1': 246 | resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==} 247 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 248 | 249 | '@eslint/core@0.13.0': 250 | resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} 251 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 252 | 253 | '@eslint/eslintrc@3.3.1': 254 | resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} 255 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 256 | 257 | '@eslint/js@9.25.0': 258 | resolution: {integrity: sha512-iWhsUS8Wgxz9AXNfvfOPFSW4VfMXdVhp1hjkZVhXCrpgh/aLcc45rX6MPu+tIVUWDw0HfNwth7O28M1xDxNf9w==} 259 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 260 | 261 | '@eslint/object-schema@2.1.6': 262 | resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} 263 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 264 | 265 | '@eslint/plugin-kit@0.2.8': 266 | resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} 267 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 268 | 269 | '@humanfs/core@0.19.1': 270 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 271 | engines: {node: '>=18.18.0'} 272 | 273 | '@humanfs/node@0.16.6': 274 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 275 | engines: {node: '>=18.18.0'} 276 | 277 | '@humanwhocodes/module-importer@1.0.1': 278 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 279 | engines: {node: '>=12.22'} 280 | 281 | '@humanwhocodes/retry@0.3.1': 282 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 283 | engines: {node: '>=18.18'} 284 | 285 | '@humanwhocodes/retry@0.4.2': 286 | resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} 287 | engines: {node: '>=18.18'} 288 | 289 | '@isaacs/cliui@8.0.2': 290 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 291 | engines: {node: '>=12'} 292 | 293 | '@jridgewell/gen-mapping@0.3.8': 294 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 295 | engines: {node: '>=6.0.0'} 296 | 297 | '@jridgewell/resolve-uri@3.1.2': 298 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 299 | engines: {node: '>=6.0.0'} 300 | 301 | '@jridgewell/set-array@1.2.1': 302 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 303 | engines: {node: '>=6.0.0'} 304 | 305 | '@jridgewell/sourcemap-codec@1.5.0': 306 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 307 | 308 | '@jridgewell/trace-mapping@0.3.25': 309 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 310 | 311 | '@modelcontextprotocol/sdk@1.10.1': 312 | resolution: {integrity: sha512-xNYdFdkJqEfIaTVP1gPKoEvluACHZsHZegIoICX8DM1o6Qf3G5u2BQJHmgd0n4YgRPqqK/u1ujQvrgAxxSJT9w==} 313 | engines: {node: '>=18'} 314 | 315 | '@nodelib/fs.scandir@2.1.5': 316 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 317 | engines: {node: '>= 8'} 318 | 319 | '@nodelib/fs.stat@2.0.5': 320 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 321 | engines: {node: '>= 8'} 322 | 323 | '@nodelib/fs.walk@1.2.8': 324 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 325 | engines: {node: '>= 8'} 326 | 327 | '@pkgjs/parseargs@0.11.0': 328 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 329 | engines: {node: '>=14'} 330 | 331 | '@pkgr/core@0.2.4': 332 | resolution: {integrity: sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==} 333 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 334 | 335 | '@rollup/rollup-android-arm-eabi@4.40.0': 336 | resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==} 337 | cpu: [arm] 338 | os: [android] 339 | 340 | '@rollup/rollup-android-arm64@4.40.0': 341 | resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==} 342 | cpu: [arm64] 343 | os: [android] 344 | 345 | '@rollup/rollup-darwin-arm64@4.40.0': 346 | resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==} 347 | cpu: [arm64] 348 | os: [darwin] 349 | 350 | '@rollup/rollup-darwin-x64@4.40.0': 351 | resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==} 352 | cpu: [x64] 353 | os: [darwin] 354 | 355 | '@rollup/rollup-freebsd-arm64@4.40.0': 356 | resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==} 357 | cpu: [arm64] 358 | os: [freebsd] 359 | 360 | '@rollup/rollup-freebsd-x64@4.40.0': 361 | resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==} 362 | cpu: [x64] 363 | os: [freebsd] 364 | 365 | '@rollup/rollup-linux-arm-gnueabihf@4.40.0': 366 | resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==} 367 | cpu: [arm] 368 | os: [linux] 369 | 370 | '@rollup/rollup-linux-arm-musleabihf@4.40.0': 371 | resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==} 372 | cpu: [arm] 373 | os: [linux] 374 | 375 | '@rollup/rollup-linux-arm64-gnu@4.40.0': 376 | resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==} 377 | cpu: [arm64] 378 | os: [linux] 379 | 380 | '@rollup/rollup-linux-arm64-musl@4.40.0': 381 | resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==} 382 | cpu: [arm64] 383 | os: [linux] 384 | 385 | '@rollup/rollup-linux-loongarch64-gnu@4.40.0': 386 | resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==} 387 | cpu: [loong64] 388 | os: [linux] 389 | 390 | '@rollup/rollup-linux-powerpc64le-gnu@4.40.0': 391 | resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==} 392 | cpu: [ppc64] 393 | os: [linux] 394 | 395 | '@rollup/rollup-linux-riscv64-gnu@4.40.0': 396 | resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==} 397 | cpu: [riscv64] 398 | os: [linux] 399 | 400 | '@rollup/rollup-linux-riscv64-musl@4.40.0': 401 | resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==} 402 | cpu: [riscv64] 403 | os: [linux] 404 | 405 | '@rollup/rollup-linux-s390x-gnu@4.40.0': 406 | resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==} 407 | cpu: [s390x] 408 | os: [linux] 409 | 410 | '@rollup/rollup-linux-x64-gnu@4.40.0': 411 | resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==} 412 | cpu: [x64] 413 | os: [linux] 414 | 415 | '@rollup/rollup-linux-x64-musl@4.40.0': 416 | resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==} 417 | cpu: [x64] 418 | os: [linux] 419 | 420 | '@rollup/rollup-win32-arm64-msvc@4.40.0': 421 | resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==} 422 | cpu: [arm64] 423 | os: [win32] 424 | 425 | '@rollup/rollup-win32-ia32-msvc@4.40.0': 426 | resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==} 427 | cpu: [ia32] 428 | os: [win32] 429 | 430 | '@rollup/rollup-win32-x64-msvc@4.40.0': 431 | resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==} 432 | cpu: [x64] 433 | os: [win32] 434 | 435 | '@types/body-parser@1.19.5': 436 | resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} 437 | 438 | '@types/connect@3.4.38': 439 | resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} 440 | 441 | '@types/estree@1.0.7': 442 | resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} 443 | 444 | '@types/express-serve-static-core@5.0.6': 445 | resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==} 446 | 447 | '@types/express@5.0.1': 448 | resolution: {integrity: sha512-UZUw8vjpWFXuDnjFTh7/5c2TWDlQqeXHi6hcN7F2XSVT5P+WmUnnbFS3KA6Jnc6IsEqI2qCVu2bK0R0J4A8ZQQ==} 449 | 450 | '@types/http-errors@2.0.4': 451 | resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} 452 | 453 | '@types/json-schema@7.0.15': 454 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 455 | 456 | '@types/mime@1.3.5': 457 | resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} 458 | 459 | '@types/node@22.14.1': 460 | resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==} 461 | 462 | '@types/qs@6.9.18': 463 | resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==} 464 | 465 | '@types/range-parser@1.2.7': 466 | resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} 467 | 468 | '@types/send@0.17.4': 469 | resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} 470 | 471 | '@types/serve-static@1.15.7': 472 | resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} 473 | 474 | '@types/yargs-parser@21.0.3': 475 | resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} 476 | 477 | '@types/yargs@17.0.33': 478 | resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} 479 | 480 | '@typescript-eslint/eslint-plugin@8.30.1': 481 | resolution: {integrity: sha512-v+VWphxMjn+1t48/jO4t950D6KR8JaJuNXzi33Ve6P8sEmPr5k6CEXjdGwT6+LodVnEa91EQCtwjWNUCPweo+Q==} 482 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 483 | peerDependencies: 484 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 485 | eslint: ^8.57.0 || ^9.0.0 486 | typescript: '>=4.8.4 <5.9.0' 487 | 488 | '@typescript-eslint/parser@8.30.1': 489 | resolution: {integrity: sha512-H+vqmWwT5xoNrXqWs/fesmssOW70gxFlgcMlYcBaWNPIEWDgLa4W9nkSPmhuOgLnXq9QYgkZ31fhDyLhleCsAg==} 490 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 491 | peerDependencies: 492 | eslint: ^8.57.0 || ^9.0.0 493 | typescript: '>=4.8.4 <5.9.0' 494 | 495 | '@typescript-eslint/scope-manager@8.30.1': 496 | resolution: {integrity: sha512-+C0B6ChFXZkuaNDl73FJxRYT0G7ufVPOSQkqkpM/U198wUwUFOtgo1k/QzFh1KjpBitaK7R1tgjVz6o9HmsRPg==} 497 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 498 | 499 | '@typescript-eslint/type-utils@8.30.1': 500 | resolution: {integrity: sha512-64uBF76bfQiJyHgZISC7vcNz3adqQKIccVoKubyQcOnNcdJBvYOILV1v22Qhsw3tw3VQu5ll8ND6hycgAR5fEA==} 501 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 502 | peerDependencies: 503 | eslint: ^8.57.0 || ^9.0.0 504 | typescript: '>=4.8.4 <5.9.0' 505 | 506 | '@typescript-eslint/types@8.30.1': 507 | resolution: {integrity: sha512-81KawPfkuulyWo5QdyG/LOKbspyyiW+p4vpn4bYO7DM/hZImlVnFwrpCTnmNMOt8CvLRr5ojI9nU1Ekpw4RcEw==} 508 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 509 | 510 | '@typescript-eslint/typescript-estree@8.30.1': 511 | resolution: {integrity: sha512-kQQnxymiUy9tTb1F2uep9W6aBiYODgq5EMSk6Nxh4Z+BDUoYUSa029ISs5zTzKBFnexQEh71KqwjKnRz58lusQ==} 512 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 513 | peerDependencies: 514 | typescript: '>=4.8.4 <5.9.0' 515 | 516 | '@typescript-eslint/utils@8.30.1': 517 | resolution: {integrity: sha512-T/8q4R9En2tcEsWPQgB5BQ0XJVOtfARcUvOa8yJP3fh9M/mXraLxZrkCfGb6ChrO/V3W+Xbd04RacUEqk1CFEQ==} 518 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 519 | peerDependencies: 520 | eslint: ^8.57.0 || ^9.0.0 521 | typescript: '>=4.8.4 <5.9.0' 522 | 523 | '@typescript-eslint/visitor-keys@8.30.1': 524 | resolution: {integrity: sha512-aEhgas7aJ6vZnNFC7K4/vMGDGyOiqWcYZPpIWrTKuTAlsvDNKy2GFDqh9smL+iq069ZvR0YzEeq0B8NJlLzjFA==} 525 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 526 | 527 | accepts@2.0.0: 528 | resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} 529 | engines: {node: '>= 0.6'} 530 | 531 | acorn-jsx@5.3.2: 532 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 533 | peerDependencies: 534 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 535 | 536 | acorn@8.14.1: 537 | resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} 538 | engines: {node: '>=0.4.0'} 539 | hasBin: true 540 | 541 | agent-base@7.1.3: 542 | resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} 543 | engines: {node: '>= 14'} 544 | 545 | ajv@6.12.6: 546 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 547 | 548 | ansi-regex@5.0.1: 549 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 550 | engines: {node: '>=8'} 551 | 552 | ansi-regex@6.1.0: 553 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 554 | engines: {node: '>=12'} 555 | 556 | ansi-styles@4.3.0: 557 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 558 | engines: {node: '>=8'} 559 | 560 | ansi-styles@6.2.1: 561 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 562 | engines: {node: '>=12'} 563 | 564 | any-promise@1.3.0: 565 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 566 | 567 | argparse@2.0.1: 568 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 569 | 570 | atomic-sleep@1.0.0: 571 | resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} 572 | engines: {node: '>=8.0.0'} 573 | 574 | balanced-match@1.0.2: 575 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 576 | 577 | body-parser@2.2.0: 578 | resolution: {integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==} 579 | engines: {node: '>=18'} 580 | 581 | brace-expansion@1.1.11: 582 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 583 | 584 | brace-expansion@2.0.1: 585 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 586 | 587 | braces@3.0.3: 588 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 589 | engines: {node: '>=8'} 590 | 591 | bundle-require@5.1.0: 592 | resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==} 593 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 594 | peerDependencies: 595 | esbuild: '>=0.18' 596 | 597 | bytes@3.1.2: 598 | resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 599 | engines: {node: '>= 0.8'} 600 | 601 | cac@6.7.14: 602 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 603 | engines: {node: '>=8'} 604 | 605 | call-bind-apply-helpers@1.0.2: 606 | resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} 607 | engines: {node: '>= 0.4'} 608 | 609 | call-bound@1.0.4: 610 | resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} 611 | engines: {node: '>= 0.4'} 612 | 613 | callsites@3.1.0: 614 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 615 | engines: {node: '>=6'} 616 | 617 | chalk@4.1.2: 618 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 619 | engines: {node: '>=10'} 620 | 621 | chokidar@4.0.3: 622 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 623 | engines: {node: '>= 14.16.0'} 624 | 625 | cliui@8.0.1: 626 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 627 | engines: {node: '>=12'} 628 | 629 | color-convert@2.0.1: 630 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 631 | engines: {node: '>=7.0.0'} 632 | 633 | color-name@1.1.4: 634 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 635 | 636 | commander@12.1.0: 637 | resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} 638 | engines: {node: '>=18'} 639 | 640 | commander@4.1.1: 641 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 642 | engines: {node: '>= 6'} 643 | 644 | concat-map@0.0.1: 645 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 646 | 647 | consola@3.4.2: 648 | resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} 649 | engines: {node: ^14.18.0 || >=16.10.0} 650 | 651 | content-disposition@1.0.0: 652 | resolution: {integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==} 653 | engines: {node: '>= 0.6'} 654 | 655 | content-type@1.0.5: 656 | resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 657 | engines: {node: '>= 0.6'} 658 | 659 | cookie-signature@1.2.2: 660 | resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} 661 | engines: {node: '>=6.6.0'} 662 | 663 | cookie@0.7.2: 664 | resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 665 | engines: {node: '>= 0.6'} 666 | 667 | cors@2.8.5: 668 | resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} 669 | engines: {node: '>= 0.10'} 670 | 671 | cross-fetch@4.1.0: 672 | resolution: {integrity: sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==} 673 | 674 | cross-spawn@7.0.6: 675 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 676 | engines: {node: '>= 8'} 677 | 678 | debug@4.4.0: 679 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 680 | engines: {node: '>=6.0'} 681 | peerDependencies: 682 | supports-color: '*' 683 | peerDependenciesMeta: 684 | supports-color: 685 | optional: true 686 | 687 | deep-is@0.1.4: 688 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 689 | 690 | depd@2.0.0: 691 | resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 692 | engines: {node: '>= 0.8'} 693 | 694 | dotenv@16.5.0: 695 | resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==} 696 | engines: {node: '>=12'} 697 | 698 | dtsgenerator@3.19.2: 699 | resolution: {integrity: sha512-ehtdeCLaVrSzRO23QLnDQJ13CHZtTOS95RxQc3yGM0FhKimNLvt/JklzAv7JZPb1T09Fkj8lmKQtk32tuz/aXg==} 700 | engines: {node: '>= 18.0'} 701 | hasBin: true 702 | 703 | dunder-proto@1.0.1: 704 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 705 | engines: {node: '>= 0.4'} 706 | 707 | eastasianwidth@0.2.0: 708 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 709 | 710 | ee-first@1.1.1: 711 | resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 712 | 713 | emoji-regex@8.0.0: 714 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 715 | 716 | emoji-regex@9.2.2: 717 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 718 | 719 | encodeurl@2.0.0: 720 | resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 721 | engines: {node: '>= 0.8'} 722 | 723 | es-define-property@1.0.1: 724 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 725 | engines: {node: '>= 0.4'} 726 | 727 | es-errors@1.3.0: 728 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 729 | engines: {node: '>= 0.4'} 730 | 731 | es-object-atoms@1.1.1: 732 | resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 733 | engines: {node: '>= 0.4'} 734 | 735 | esbuild@0.25.2: 736 | resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==} 737 | engines: {node: '>=18'} 738 | hasBin: true 739 | 740 | escalade@3.2.0: 741 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 742 | engines: {node: '>=6'} 743 | 744 | escape-html@1.0.3: 745 | resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 746 | 747 | escape-string-regexp@4.0.0: 748 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 749 | engines: {node: '>=10'} 750 | 751 | eslint-config-prettier@10.1.2: 752 | resolution: {integrity: sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==} 753 | hasBin: true 754 | peerDependencies: 755 | eslint: '>=7.0.0' 756 | 757 | eslint-plugin-prettier@5.2.6: 758 | resolution: {integrity: sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==} 759 | engines: {node: ^14.18.0 || >=16.0.0} 760 | peerDependencies: 761 | '@types/eslint': '>=8.0.0' 762 | eslint: '>=8.0.0' 763 | eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0' 764 | prettier: '>=3.0.0' 765 | peerDependenciesMeta: 766 | '@types/eslint': 767 | optional: true 768 | eslint-config-prettier: 769 | optional: true 770 | 771 | eslint-scope@8.3.0: 772 | resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==} 773 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 774 | 775 | eslint-visitor-keys@3.4.3: 776 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 777 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 778 | 779 | eslint-visitor-keys@4.2.0: 780 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 781 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 782 | 783 | eslint@9.25.0: 784 | resolution: {integrity: sha512-MsBdObhM4cEwkzCiraDv7A6txFXEqtNXOb877TsSp2FCkBNl8JfVQrmiuDqC1IkejT6JLPzYBXx/xAiYhyzgGA==} 785 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 786 | hasBin: true 787 | peerDependencies: 788 | jiti: '*' 789 | peerDependenciesMeta: 790 | jiti: 791 | optional: true 792 | 793 | espree@10.3.0: 794 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 795 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 796 | 797 | esquery@1.6.0: 798 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 799 | engines: {node: '>=0.10'} 800 | 801 | esrecurse@4.3.0: 802 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 803 | engines: {node: '>=4.0'} 804 | 805 | estraverse@5.3.0: 806 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 807 | engines: {node: '>=4.0'} 808 | 809 | esutils@2.0.3: 810 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 811 | engines: {node: '>=0.10.0'} 812 | 813 | etag@1.8.1: 814 | resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 815 | engines: {node: '>= 0.6'} 816 | 817 | eventsource-parser@3.0.1: 818 | resolution: {integrity: sha512-VARTJ9CYeuQYb0pZEPbzi740OWFgpHe7AYJ2WFZVnUDUQp5Dk2yJUgF36YsZ81cOyxT0QxmXD2EQpapAouzWVA==} 819 | engines: {node: '>=18.0.0'} 820 | 821 | eventsource@3.0.6: 822 | resolution: {integrity: sha512-l19WpE2m9hSuyP06+FbuUUf1G+R0SFLrtQfbRb9PRr+oimOfxQhgGCbVaXg5IvZyyTThJsxh6L/srkMiCeBPDA==} 823 | engines: {node: '>=18.0.0'} 824 | 825 | express-rate-limit@7.5.0: 826 | resolution: {integrity: sha512-eB5zbQh5h+VenMPM3fh+nw1YExi5nMr6HUCR62ELSP11huvxm/Uir1H1QEyTkk5QX6A58pX6NmaTMceKZ0Eodg==} 827 | engines: {node: '>= 16'} 828 | peerDependencies: 829 | express: ^4.11 || 5 || ^5.0.0-beta.1 830 | 831 | express@5.1.0: 832 | resolution: {integrity: sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==} 833 | engines: {node: '>= 18'} 834 | 835 | fast-deep-equal@3.1.3: 836 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 837 | 838 | fast-diff@1.3.0: 839 | resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} 840 | 841 | fast-glob@3.3.3: 842 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 843 | engines: {node: '>=8.6.0'} 844 | 845 | fast-json-stable-stringify@2.1.0: 846 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 847 | 848 | fast-levenshtein@2.0.6: 849 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 850 | 851 | fast-redact@3.5.0: 852 | resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} 853 | engines: {node: '>=6'} 854 | 855 | fastq@1.19.1: 856 | resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 857 | 858 | fdir@6.4.3: 859 | resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==} 860 | peerDependencies: 861 | picomatch: ^3 || ^4 862 | peerDependenciesMeta: 863 | picomatch: 864 | optional: true 865 | 866 | file-entry-cache@8.0.0: 867 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 868 | engines: {node: '>=16.0.0'} 869 | 870 | fill-range@7.1.1: 871 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 872 | engines: {node: '>=8'} 873 | 874 | finalhandler@2.1.0: 875 | resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==} 876 | engines: {node: '>= 0.8'} 877 | 878 | find-up@5.0.0: 879 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 880 | engines: {node: '>=10'} 881 | 882 | flat-cache@4.0.1: 883 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 884 | engines: {node: '>=16'} 885 | 886 | flatted@3.3.3: 887 | resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} 888 | 889 | foreground-child@3.3.1: 890 | resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 891 | engines: {node: '>=14'} 892 | 893 | forwarded@0.2.0: 894 | resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 895 | engines: {node: '>= 0.6'} 896 | 897 | fresh@2.0.0: 898 | resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} 899 | engines: {node: '>= 0.8'} 900 | 901 | fsevents@2.3.3: 902 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 903 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 904 | os: [darwin] 905 | 906 | function-bind@1.1.2: 907 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 908 | 909 | get-caller-file@2.0.5: 910 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 911 | engines: {node: 6.* || 8.* || >= 10.*} 912 | 913 | get-intrinsic@1.3.0: 914 | resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} 915 | engines: {node: '>= 0.4'} 916 | 917 | get-proto@1.0.1: 918 | resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 919 | engines: {node: '>= 0.4'} 920 | 921 | get-tsconfig@4.10.0: 922 | resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} 923 | 924 | glob-parent@5.1.2: 925 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 926 | engines: {node: '>= 6'} 927 | 928 | glob-parent@6.0.2: 929 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 930 | engines: {node: '>=10.13.0'} 931 | 932 | glob@10.4.5: 933 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 934 | hasBin: true 935 | 936 | globals@14.0.0: 937 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 938 | engines: {node: '>=18'} 939 | 940 | gopd@1.2.0: 941 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 942 | engines: {node: '>= 0.4'} 943 | 944 | graphemer@1.4.0: 945 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 946 | 947 | has-flag@4.0.0: 948 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 949 | engines: {node: '>=8'} 950 | 951 | has-symbols@1.1.0: 952 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 953 | engines: {node: '>= 0.4'} 954 | 955 | hasown@2.0.2: 956 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 957 | engines: {node: '>= 0.4'} 958 | 959 | http-errors@2.0.0: 960 | resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 961 | engines: {node: '>= 0.8'} 962 | 963 | http-proxy-agent@7.0.2: 964 | resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} 965 | engines: {node: '>= 14'} 966 | 967 | https-proxy-agent@7.0.6: 968 | resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} 969 | engines: {node: '>= 14'} 970 | 971 | iconv-lite@0.6.3: 972 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 973 | engines: {node: '>=0.10.0'} 974 | 975 | ignore@5.3.2: 976 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 977 | engines: {node: '>= 4'} 978 | 979 | import-fresh@3.3.1: 980 | resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} 981 | engines: {node: '>=6'} 982 | 983 | imurmurhash@0.1.4: 984 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 985 | engines: {node: '>=0.8.19'} 986 | 987 | inherits@2.0.4: 988 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 989 | 990 | ipaddr.js@1.9.1: 991 | resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 992 | engines: {node: '>= 0.10'} 993 | 994 | is-extglob@2.1.1: 995 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 996 | engines: {node: '>=0.10.0'} 997 | 998 | is-fullwidth-code-point@3.0.0: 999 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1000 | engines: {node: '>=8'} 1001 | 1002 | is-glob@4.0.3: 1003 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1004 | engines: {node: '>=0.10.0'} 1005 | 1006 | is-number@7.0.0: 1007 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1008 | engines: {node: '>=0.12.0'} 1009 | 1010 | is-promise@4.0.0: 1011 | resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} 1012 | 1013 | isexe@2.0.0: 1014 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1015 | 1016 | jackspeak@3.4.3: 1017 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 1018 | 1019 | joycon@3.1.1: 1020 | resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} 1021 | engines: {node: '>=10'} 1022 | 1023 | js-yaml@4.1.0: 1024 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1025 | hasBin: true 1026 | 1027 | json-buffer@3.0.1: 1028 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1029 | 1030 | json-schema-traverse@0.4.1: 1031 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1032 | 1033 | json-stable-stringify-without-jsonify@1.0.1: 1034 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1035 | 1036 | keyv@4.5.4: 1037 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1038 | 1039 | levn@0.4.1: 1040 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1041 | engines: {node: '>= 0.8.0'} 1042 | 1043 | lilconfig@3.1.3: 1044 | resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} 1045 | engines: {node: '>=14'} 1046 | 1047 | lines-and-columns@1.2.4: 1048 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1049 | 1050 | load-tsconfig@0.2.5: 1051 | resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} 1052 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1053 | 1054 | locate-path@6.0.0: 1055 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1056 | engines: {node: '>=10'} 1057 | 1058 | lodash.merge@4.6.2: 1059 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1060 | 1061 | lodash.sortby@4.7.0: 1062 | resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} 1063 | 1064 | lru-cache@10.4.3: 1065 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1066 | 1067 | math-intrinsics@1.1.0: 1068 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 1069 | engines: {node: '>= 0.4'} 1070 | 1071 | media-typer@1.1.0: 1072 | resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} 1073 | engines: {node: '>= 0.8'} 1074 | 1075 | merge-descriptors@2.0.0: 1076 | resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} 1077 | engines: {node: '>=18'} 1078 | 1079 | merge2@1.4.1: 1080 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1081 | engines: {node: '>= 8'} 1082 | 1083 | micromatch@4.0.8: 1084 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1085 | engines: {node: '>=8.6'} 1086 | 1087 | mime-db@1.54.0: 1088 | resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} 1089 | engines: {node: '>= 0.6'} 1090 | 1091 | mime-types@3.0.1: 1092 | resolution: {integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==} 1093 | engines: {node: '>= 0.6'} 1094 | 1095 | minimatch@3.1.2: 1096 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1097 | 1098 | minimatch@9.0.5: 1099 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1100 | engines: {node: '>=16 || 14 >=14.17'} 1101 | 1102 | minipass@7.1.2: 1103 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1104 | engines: {node: '>=16 || 14 >=14.17'} 1105 | 1106 | ms@2.1.3: 1107 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1108 | 1109 | mz@2.7.0: 1110 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1111 | 1112 | natural-compare@1.4.0: 1113 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1114 | 1115 | negotiator@1.0.0: 1116 | resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} 1117 | engines: {node: '>= 0.6'} 1118 | 1119 | node-fetch@2.7.0: 1120 | resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 1121 | engines: {node: 4.x || >=6.0.0} 1122 | peerDependencies: 1123 | encoding: ^0.1.0 1124 | peerDependenciesMeta: 1125 | encoding: 1126 | optional: true 1127 | 1128 | object-assign@4.1.1: 1129 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1130 | engines: {node: '>=0.10.0'} 1131 | 1132 | object-inspect@1.13.4: 1133 | resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 1134 | engines: {node: '>= 0.4'} 1135 | 1136 | on-exit-leak-free@2.1.2: 1137 | resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} 1138 | engines: {node: '>=14.0.0'} 1139 | 1140 | on-finished@2.4.1: 1141 | resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 1142 | engines: {node: '>= 0.8'} 1143 | 1144 | once@1.4.0: 1145 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1146 | 1147 | optionator@0.9.4: 1148 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1149 | engines: {node: '>= 0.8.0'} 1150 | 1151 | p-limit@3.1.0: 1152 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1153 | engines: {node: '>=10'} 1154 | 1155 | p-locate@5.0.0: 1156 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1157 | engines: {node: '>=10'} 1158 | 1159 | package-json-from-dist@1.0.1: 1160 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 1161 | 1162 | parent-module@1.0.1: 1163 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1164 | engines: {node: '>=6'} 1165 | 1166 | parseurl@1.3.3: 1167 | resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 1168 | engines: {node: '>= 0.8'} 1169 | 1170 | path-exists@4.0.0: 1171 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1172 | engines: {node: '>=8'} 1173 | 1174 | path-key@3.1.1: 1175 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1176 | engines: {node: '>=8'} 1177 | 1178 | path-scurry@1.11.1: 1179 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 1180 | engines: {node: '>=16 || 14 >=14.18'} 1181 | 1182 | path-to-regexp@8.2.0: 1183 | resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==} 1184 | engines: {node: '>=16'} 1185 | 1186 | picocolors@1.1.1: 1187 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1188 | 1189 | picomatch@2.3.1: 1190 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1191 | engines: {node: '>=8.6'} 1192 | 1193 | picomatch@4.0.2: 1194 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 1195 | engines: {node: '>=12'} 1196 | 1197 | pino-abstract-transport@2.0.0: 1198 | resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==} 1199 | 1200 | pino-std-serializers@7.0.0: 1201 | resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==} 1202 | 1203 | pino@9.6.0: 1204 | resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==} 1205 | hasBin: true 1206 | 1207 | pirates@4.0.7: 1208 | resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} 1209 | engines: {node: '>= 6'} 1210 | 1211 | pkce-challenge@5.0.0: 1212 | resolution: {integrity: sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ==} 1213 | engines: {node: '>=16.20.0'} 1214 | 1215 | postcss-load-config@6.0.1: 1216 | resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} 1217 | engines: {node: '>= 18'} 1218 | peerDependencies: 1219 | jiti: '>=1.21.0' 1220 | postcss: '>=8.0.9' 1221 | tsx: ^4.8.1 1222 | yaml: ^2.4.2 1223 | peerDependenciesMeta: 1224 | jiti: 1225 | optional: true 1226 | postcss: 1227 | optional: true 1228 | tsx: 1229 | optional: true 1230 | yaml: 1231 | optional: true 1232 | 1233 | prelude-ls@1.2.1: 1234 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1235 | engines: {node: '>= 0.8.0'} 1236 | 1237 | prettier-linter-helpers@1.0.0: 1238 | resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} 1239 | engines: {node: '>=6.0.0'} 1240 | 1241 | prettier@3.5.3: 1242 | resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} 1243 | engines: {node: '>=14'} 1244 | hasBin: true 1245 | 1246 | process-warning@4.0.1: 1247 | resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==} 1248 | 1249 | proxy-addr@2.0.7: 1250 | resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 1251 | engines: {node: '>= 0.10'} 1252 | 1253 | punycode@2.3.1: 1254 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1255 | engines: {node: '>=6'} 1256 | 1257 | qs@6.14.0: 1258 | resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} 1259 | engines: {node: '>=0.6'} 1260 | 1261 | queue-microtask@1.2.3: 1262 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1263 | 1264 | quick-format-unescaped@4.0.4: 1265 | resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} 1266 | 1267 | range-parser@1.2.1: 1268 | resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 1269 | engines: {node: '>= 0.6'} 1270 | 1271 | raw-body@3.0.0: 1272 | resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==} 1273 | engines: {node: '>= 0.8'} 1274 | 1275 | readdirp@4.1.2: 1276 | resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 1277 | engines: {node: '>= 14.18.0'} 1278 | 1279 | real-require@0.2.0: 1280 | resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 1281 | engines: {node: '>= 12.13.0'} 1282 | 1283 | require-directory@2.1.1: 1284 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1285 | engines: {node: '>=0.10.0'} 1286 | 1287 | resolve-from@4.0.0: 1288 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1289 | engines: {node: '>=4'} 1290 | 1291 | resolve-from@5.0.0: 1292 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 1293 | engines: {node: '>=8'} 1294 | 1295 | resolve-pkg-maps@1.0.0: 1296 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1297 | 1298 | reusify@1.1.0: 1299 | resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 1300 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1301 | 1302 | rollup@4.40.0: 1303 | resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==} 1304 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1305 | hasBin: true 1306 | 1307 | router@2.2.0: 1308 | resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} 1309 | engines: {node: '>= 18'} 1310 | 1311 | run-parallel@1.2.0: 1312 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1313 | 1314 | safe-buffer@5.2.1: 1315 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1316 | 1317 | safe-stable-stringify@2.5.0: 1318 | resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} 1319 | engines: {node: '>=10'} 1320 | 1321 | safer-buffer@2.1.2: 1322 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 1323 | 1324 | semver@7.7.1: 1325 | resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} 1326 | engines: {node: '>=10'} 1327 | hasBin: true 1328 | 1329 | send@1.2.0: 1330 | resolution: {integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==} 1331 | engines: {node: '>= 18'} 1332 | 1333 | serve-static@2.2.0: 1334 | resolution: {integrity: sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==} 1335 | engines: {node: '>= 18'} 1336 | 1337 | setprototypeof@1.2.0: 1338 | resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 1339 | 1340 | shebang-command@2.0.0: 1341 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1342 | engines: {node: '>=8'} 1343 | 1344 | shebang-regex@3.0.0: 1345 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1346 | engines: {node: '>=8'} 1347 | 1348 | side-channel-list@1.0.0: 1349 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 1350 | engines: {node: '>= 0.4'} 1351 | 1352 | side-channel-map@1.0.1: 1353 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 1354 | engines: {node: '>= 0.4'} 1355 | 1356 | side-channel-weakmap@1.0.2: 1357 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 1358 | engines: {node: '>= 0.4'} 1359 | 1360 | side-channel@1.1.0: 1361 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 1362 | engines: {node: '>= 0.4'} 1363 | 1364 | signal-exit@4.1.0: 1365 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1366 | engines: {node: '>=14'} 1367 | 1368 | sonic-boom@4.2.0: 1369 | resolution: {integrity: sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==} 1370 | 1371 | source-map@0.8.0-beta.0: 1372 | resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} 1373 | engines: {node: '>= 8'} 1374 | 1375 | split2@4.2.0: 1376 | resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 1377 | engines: {node: '>= 10.x'} 1378 | 1379 | statuses@2.0.1: 1380 | resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 1381 | engines: {node: '>= 0.8'} 1382 | 1383 | string-width@4.2.3: 1384 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1385 | engines: {node: '>=8'} 1386 | 1387 | string-width@5.1.2: 1388 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1389 | engines: {node: '>=12'} 1390 | 1391 | strip-ansi@6.0.1: 1392 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1393 | engines: {node: '>=8'} 1394 | 1395 | strip-ansi@7.1.0: 1396 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1397 | engines: {node: '>=12'} 1398 | 1399 | strip-json-comments@3.1.1: 1400 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1401 | engines: {node: '>=8'} 1402 | 1403 | sucrase@3.35.0: 1404 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 1405 | engines: {node: '>=16 || 14 >=14.17'} 1406 | hasBin: true 1407 | 1408 | supports-color@7.2.0: 1409 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1410 | engines: {node: '>=8'} 1411 | 1412 | synckit@0.11.4: 1413 | resolution: {integrity: sha512-Q/XQKRaJiLiFIBNN+mndW7S/RHxvwzuZS6ZwmRzUBqJBv/5QIKCEwkBC8GBf8EQJKYnaFs0wOZbKTXBPj8L9oQ==} 1414 | engines: {node: ^14.18.0 || >=16.0.0} 1415 | 1416 | thenify-all@1.6.0: 1417 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1418 | engines: {node: '>=0.8'} 1419 | 1420 | thenify@3.3.1: 1421 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1422 | 1423 | thread-stream@3.1.0: 1424 | resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==} 1425 | 1426 | tinyexec@0.3.2: 1427 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 1428 | 1429 | tinyglobby@0.2.12: 1430 | resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==} 1431 | engines: {node: '>=12.0.0'} 1432 | 1433 | to-regex-range@5.0.1: 1434 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1435 | engines: {node: '>=8.0'} 1436 | 1437 | toidentifier@1.0.1: 1438 | resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 1439 | engines: {node: '>=0.6'} 1440 | 1441 | tr46@0.0.3: 1442 | resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 1443 | 1444 | tr46@1.0.1: 1445 | resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} 1446 | 1447 | tree-kill@1.2.2: 1448 | resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 1449 | hasBin: true 1450 | 1451 | ts-api-utils@2.1.0: 1452 | resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} 1453 | engines: {node: '>=18.12'} 1454 | peerDependencies: 1455 | typescript: '>=4.8.4' 1456 | 1457 | ts-interface-checker@0.1.13: 1458 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1459 | 1460 | tslib@2.8.1: 1461 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1462 | 1463 | tsup@8.4.0: 1464 | resolution: {integrity: sha512-b+eZbPCjz10fRryaAA7C8xlIHnf8VnsaRqydheLIqwG/Mcpfk8Z5zp3HayX7GaTygkigHl5cBUs+IhcySiIexQ==} 1465 | engines: {node: '>=18'} 1466 | hasBin: true 1467 | peerDependencies: 1468 | '@microsoft/api-extractor': ^7.36.0 1469 | '@swc/core': ^1 1470 | postcss: ^8.4.12 1471 | typescript: '>=4.5.0' 1472 | peerDependenciesMeta: 1473 | '@microsoft/api-extractor': 1474 | optional: true 1475 | '@swc/core': 1476 | optional: true 1477 | postcss: 1478 | optional: true 1479 | typescript: 1480 | optional: true 1481 | 1482 | tsx@4.19.3: 1483 | resolution: {integrity: sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==} 1484 | engines: {node: '>=18.0.0'} 1485 | hasBin: true 1486 | 1487 | type-check@0.4.0: 1488 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1489 | engines: {node: '>= 0.8.0'} 1490 | 1491 | type-is@2.0.1: 1492 | resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==} 1493 | engines: {node: '>= 0.6'} 1494 | 1495 | typescript-eslint@8.30.1: 1496 | resolution: {integrity: sha512-D7lC0kcehVH7Mb26MRQi64LMyRJsj3dToJxM1+JVTl53DQSV5/7oUGWQLcKl1C1KnoVHxMMU2FNQMffr7F3Row==} 1497 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1498 | peerDependencies: 1499 | eslint: ^8.57.0 || ^9.0.0 1500 | typescript: '>=4.8.4 <5.9.0' 1501 | 1502 | typescript@5.8.3: 1503 | resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} 1504 | engines: {node: '>=14.17'} 1505 | hasBin: true 1506 | 1507 | undici-types@6.21.0: 1508 | resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} 1509 | 1510 | unpipe@1.0.0: 1511 | resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 1512 | engines: {node: '>= 0.8'} 1513 | 1514 | uri-js@4.4.1: 1515 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1516 | 1517 | vary@1.1.2: 1518 | resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 1519 | engines: {node: '>= 0.8'} 1520 | 1521 | webidl-conversions@3.0.1: 1522 | resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 1523 | 1524 | webidl-conversions@4.0.2: 1525 | resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} 1526 | 1527 | whatwg-url@5.0.0: 1528 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 1529 | 1530 | whatwg-url@7.1.0: 1531 | resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} 1532 | 1533 | which@2.0.2: 1534 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1535 | engines: {node: '>= 8'} 1536 | hasBin: true 1537 | 1538 | word-wrap@1.2.5: 1539 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1540 | engines: {node: '>=0.10.0'} 1541 | 1542 | wrap-ansi@7.0.0: 1543 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1544 | engines: {node: '>=10'} 1545 | 1546 | wrap-ansi@8.1.0: 1547 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1548 | engines: {node: '>=12'} 1549 | 1550 | wrappy@1.0.2: 1551 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1552 | 1553 | y18n@5.0.8: 1554 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 1555 | engines: {node: '>=10'} 1556 | 1557 | yargs-parser@21.1.1: 1558 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1559 | engines: {node: '>=12'} 1560 | 1561 | yargs@17.7.2: 1562 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 1563 | engines: {node: '>=12'} 1564 | 1565 | yocto-queue@0.1.0: 1566 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1567 | engines: {node: '>=10'} 1568 | 1569 | zod-to-json-schema@3.24.5: 1570 | resolution: {integrity: sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==} 1571 | peerDependencies: 1572 | zod: ^3.24.1 1573 | 1574 | zod@3.24.3: 1575 | resolution: {integrity: sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==} 1576 | 1577 | snapshots: 1578 | 1579 | '@dtsgenerator/replace-namespace@1.7.0(dtsgenerator@3.19.2)(tslib@2.8.1)': 1580 | dependencies: 1581 | dtsgenerator: 3.19.2 1582 | tslib: 2.8.1 1583 | 1584 | '@esbuild/aix-ppc64@0.25.2': 1585 | optional: true 1586 | 1587 | '@esbuild/android-arm64@0.25.2': 1588 | optional: true 1589 | 1590 | '@esbuild/android-arm@0.25.2': 1591 | optional: true 1592 | 1593 | '@esbuild/android-x64@0.25.2': 1594 | optional: true 1595 | 1596 | '@esbuild/darwin-arm64@0.25.2': 1597 | optional: true 1598 | 1599 | '@esbuild/darwin-x64@0.25.2': 1600 | optional: true 1601 | 1602 | '@esbuild/freebsd-arm64@0.25.2': 1603 | optional: true 1604 | 1605 | '@esbuild/freebsd-x64@0.25.2': 1606 | optional: true 1607 | 1608 | '@esbuild/linux-arm64@0.25.2': 1609 | optional: true 1610 | 1611 | '@esbuild/linux-arm@0.25.2': 1612 | optional: true 1613 | 1614 | '@esbuild/linux-ia32@0.25.2': 1615 | optional: true 1616 | 1617 | '@esbuild/linux-loong64@0.25.2': 1618 | optional: true 1619 | 1620 | '@esbuild/linux-mips64el@0.25.2': 1621 | optional: true 1622 | 1623 | '@esbuild/linux-ppc64@0.25.2': 1624 | optional: true 1625 | 1626 | '@esbuild/linux-riscv64@0.25.2': 1627 | optional: true 1628 | 1629 | '@esbuild/linux-s390x@0.25.2': 1630 | optional: true 1631 | 1632 | '@esbuild/linux-x64@0.25.2': 1633 | optional: true 1634 | 1635 | '@esbuild/netbsd-arm64@0.25.2': 1636 | optional: true 1637 | 1638 | '@esbuild/netbsd-x64@0.25.2': 1639 | optional: true 1640 | 1641 | '@esbuild/openbsd-arm64@0.25.2': 1642 | optional: true 1643 | 1644 | '@esbuild/openbsd-x64@0.25.2': 1645 | optional: true 1646 | 1647 | '@esbuild/sunos-x64@0.25.2': 1648 | optional: true 1649 | 1650 | '@esbuild/win32-arm64@0.25.2': 1651 | optional: true 1652 | 1653 | '@esbuild/win32-ia32@0.25.2': 1654 | optional: true 1655 | 1656 | '@esbuild/win32-x64@0.25.2': 1657 | optional: true 1658 | 1659 | '@eslint-community/eslint-utils@4.6.1(eslint@9.25.0)': 1660 | dependencies: 1661 | eslint: 9.25.0 1662 | eslint-visitor-keys: 3.4.3 1663 | 1664 | '@eslint-community/regexpp@4.12.1': {} 1665 | 1666 | '@eslint/config-array@0.20.0': 1667 | dependencies: 1668 | '@eslint/object-schema': 2.1.6 1669 | debug: 4.4.0 1670 | minimatch: 3.1.2 1671 | transitivePeerDependencies: 1672 | - supports-color 1673 | 1674 | '@eslint/config-helpers@0.2.1': {} 1675 | 1676 | '@eslint/core@0.13.0': 1677 | dependencies: 1678 | '@types/json-schema': 7.0.15 1679 | 1680 | '@eslint/eslintrc@3.3.1': 1681 | dependencies: 1682 | ajv: 6.12.6 1683 | debug: 4.4.0 1684 | espree: 10.3.0 1685 | globals: 14.0.0 1686 | ignore: 5.3.2 1687 | import-fresh: 3.3.1 1688 | js-yaml: 4.1.0 1689 | minimatch: 3.1.2 1690 | strip-json-comments: 3.1.1 1691 | transitivePeerDependencies: 1692 | - supports-color 1693 | 1694 | '@eslint/js@9.25.0': {} 1695 | 1696 | '@eslint/object-schema@2.1.6': {} 1697 | 1698 | '@eslint/plugin-kit@0.2.8': 1699 | dependencies: 1700 | '@eslint/core': 0.13.0 1701 | levn: 0.4.1 1702 | 1703 | '@humanfs/core@0.19.1': {} 1704 | 1705 | '@humanfs/node@0.16.6': 1706 | dependencies: 1707 | '@humanfs/core': 0.19.1 1708 | '@humanwhocodes/retry': 0.3.1 1709 | 1710 | '@humanwhocodes/module-importer@1.0.1': {} 1711 | 1712 | '@humanwhocodes/retry@0.3.1': {} 1713 | 1714 | '@humanwhocodes/retry@0.4.2': {} 1715 | 1716 | '@isaacs/cliui@8.0.2': 1717 | dependencies: 1718 | string-width: 5.1.2 1719 | string-width-cjs: string-width@4.2.3 1720 | strip-ansi: 7.1.0 1721 | strip-ansi-cjs: strip-ansi@6.0.1 1722 | wrap-ansi: 8.1.0 1723 | wrap-ansi-cjs: wrap-ansi@7.0.0 1724 | 1725 | '@jridgewell/gen-mapping@0.3.8': 1726 | dependencies: 1727 | '@jridgewell/set-array': 1.2.1 1728 | '@jridgewell/sourcemap-codec': 1.5.0 1729 | '@jridgewell/trace-mapping': 0.3.25 1730 | 1731 | '@jridgewell/resolve-uri@3.1.2': {} 1732 | 1733 | '@jridgewell/set-array@1.2.1': {} 1734 | 1735 | '@jridgewell/sourcemap-codec@1.5.0': {} 1736 | 1737 | '@jridgewell/trace-mapping@0.3.25': 1738 | dependencies: 1739 | '@jridgewell/resolve-uri': 3.1.2 1740 | '@jridgewell/sourcemap-codec': 1.5.0 1741 | 1742 | '@modelcontextprotocol/sdk@1.10.1': 1743 | dependencies: 1744 | content-type: 1.0.5 1745 | cors: 2.8.5 1746 | cross-spawn: 7.0.6 1747 | eventsource: 3.0.6 1748 | express: 5.1.0 1749 | express-rate-limit: 7.5.0(express@5.1.0) 1750 | pkce-challenge: 5.0.0 1751 | raw-body: 3.0.0 1752 | zod: 3.24.3 1753 | zod-to-json-schema: 3.24.5(zod@3.24.3) 1754 | transitivePeerDependencies: 1755 | - supports-color 1756 | 1757 | '@nodelib/fs.scandir@2.1.5': 1758 | dependencies: 1759 | '@nodelib/fs.stat': 2.0.5 1760 | run-parallel: 1.2.0 1761 | 1762 | '@nodelib/fs.stat@2.0.5': {} 1763 | 1764 | '@nodelib/fs.walk@1.2.8': 1765 | dependencies: 1766 | '@nodelib/fs.scandir': 2.1.5 1767 | fastq: 1.19.1 1768 | 1769 | '@pkgjs/parseargs@0.11.0': 1770 | optional: true 1771 | 1772 | '@pkgr/core@0.2.4': {} 1773 | 1774 | '@rollup/rollup-android-arm-eabi@4.40.0': 1775 | optional: true 1776 | 1777 | '@rollup/rollup-android-arm64@4.40.0': 1778 | optional: true 1779 | 1780 | '@rollup/rollup-darwin-arm64@4.40.0': 1781 | optional: true 1782 | 1783 | '@rollup/rollup-darwin-x64@4.40.0': 1784 | optional: true 1785 | 1786 | '@rollup/rollup-freebsd-arm64@4.40.0': 1787 | optional: true 1788 | 1789 | '@rollup/rollup-freebsd-x64@4.40.0': 1790 | optional: true 1791 | 1792 | '@rollup/rollup-linux-arm-gnueabihf@4.40.0': 1793 | optional: true 1794 | 1795 | '@rollup/rollup-linux-arm-musleabihf@4.40.0': 1796 | optional: true 1797 | 1798 | '@rollup/rollup-linux-arm64-gnu@4.40.0': 1799 | optional: true 1800 | 1801 | '@rollup/rollup-linux-arm64-musl@4.40.0': 1802 | optional: true 1803 | 1804 | '@rollup/rollup-linux-loongarch64-gnu@4.40.0': 1805 | optional: true 1806 | 1807 | '@rollup/rollup-linux-powerpc64le-gnu@4.40.0': 1808 | optional: true 1809 | 1810 | '@rollup/rollup-linux-riscv64-gnu@4.40.0': 1811 | optional: true 1812 | 1813 | '@rollup/rollup-linux-riscv64-musl@4.40.0': 1814 | optional: true 1815 | 1816 | '@rollup/rollup-linux-s390x-gnu@4.40.0': 1817 | optional: true 1818 | 1819 | '@rollup/rollup-linux-x64-gnu@4.40.0': 1820 | optional: true 1821 | 1822 | '@rollup/rollup-linux-x64-musl@4.40.0': 1823 | optional: true 1824 | 1825 | '@rollup/rollup-win32-arm64-msvc@4.40.0': 1826 | optional: true 1827 | 1828 | '@rollup/rollup-win32-ia32-msvc@4.40.0': 1829 | optional: true 1830 | 1831 | '@rollup/rollup-win32-x64-msvc@4.40.0': 1832 | optional: true 1833 | 1834 | '@types/body-parser@1.19.5': 1835 | dependencies: 1836 | '@types/connect': 3.4.38 1837 | '@types/node': 22.14.1 1838 | 1839 | '@types/connect@3.4.38': 1840 | dependencies: 1841 | '@types/node': 22.14.1 1842 | 1843 | '@types/estree@1.0.7': {} 1844 | 1845 | '@types/express-serve-static-core@5.0.6': 1846 | dependencies: 1847 | '@types/node': 22.14.1 1848 | '@types/qs': 6.9.18 1849 | '@types/range-parser': 1.2.7 1850 | '@types/send': 0.17.4 1851 | 1852 | '@types/express@5.0.1': 1853 | dependencies: 1854 | '@types/body-parser': 1.19.5 1855 | '@types/express-serve-static-core': 5.0.6 1856 | '@types/serve-static': 1.15.7 1857 | 1858 | '@types/http-errors@2.0.4': {} 1859 | 1860 | '@types/json-schema@7.0.15': {} 1861 | 1862 | '@types/mime@1.3.5': {} 1863 | 1864 | '@types/node@22.14.1': 1865 | dependencies: 1866 | undici-types: 6.21.0 1867 | 1868 | '@types/qs@6.9.18': {} 1869 | 1870 | '@types/range-parser@1.2.7': {} 1871 | 1872 | '@types/send@0.17.4': 1873 | dependencies: 1874 | '@types/mime': 1.3.5 1875 | '@types/node': 22.14.1 1876 | 1877 | '@types/serve-static@1.15.7': 1878 | dependencies: 1879 | '@types/http-errors': 2.0.4 1880 | '@types/node': 22.14.1 1881 | '@types/send': 0.17.4 1882 | 1883 | '@types/yargs-parser@21.0.3': {} 1884 | 1885 | '@types/yargs@17.0.33': 1886 | dependencies: 1887 | '@types/yargs-parser': 21.0.3 1888 | 1889 | '@typescript-eslint/eslint-plugin@8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.25.0)(typescript@5.8.3))(eslint@9.25.0)(typescript@5.8.3)': 1890 | dependencies: 1891 | '@eslint-community/regexpp': 4.12.1 1892 | '@typescript-eslint/parser': 8.30.1(eslint@9.25.0)(typescript@5.8.3) 1893 | '@typescript-eslint/scope-manager': 8.30.1 1894 | '@typescript-eslint/type-utils': 8.30.1(eslint@9.25.0)(typescript@5.8.3) 1895 | '@typescript-eslint/utils': 8.30.1(eslint@9.25.0)(typescript@5.8.3) 1896 | '@typescript-eslint/visitor-keys': 8.30.1 1897 | eslint: 9.25.0 1898 | graphemer: 1.4.0 1899 | ignore: 5.3.2 1900 | natural-compare: 1.4.0 1901 | ts-api-utils: 2.1.0(typescript@5.8.3) 1902 | typescript: 5.8.3 1903 | transitivePeerDependencies: 1904 | - supports-color 1905 | 1906 | '@typescript-eslint/parser@8.30.1(eslint@9.25.0)(typescript@5.8.3)': 1907 | dependencies: 1908 | '@typescript-eslint/scope-manager': 8.30.1 1909 | '@typescript-eslint/types': 8.30.1 1910 | '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3) 1911 | '@typescript-eslint/visitor-keys': 8.30.1 1912 | debug: 4.4.0 1913 | eslint: 9.25.0 1914 | typescript: 5.8.3 1915 | transitivePeerDependencies: 1916 | - supports-color 1917 | 1918 | '@typescript-eslint/scope-manager@8.30.1': 1919 | dependencies: 1920 | '@typescript-eslint/types': 8.30.1 1921 | '@typescript-eslint/visitor-keys': 8.30.1 1922 | 1923 | '@typescript-eslint/type-utils@8.30.1(eslint@9.25.0)(typescript@5.8.3)': 1924 | dependencies: 1925 | '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3) 1926 | '@typescript-eslint/utils': 8.30.1(eslint@9.25.0)(typescript@5.8.3) 1927 | debug: 4.4.0 1928 | eslint: 9.25.0 1929 | ts-api-utils: 2.1.0(typescript@5.8.3) 1930 | typescript: 5.8.3 1931 | transitivePeerDependencies: 1932 | - supports-color 1933 | 1934 | '@typescript-eslint/types@8.30.1': {} 1935 | 1936 | '@typescript-eslint/typescript-estree@8.30.1(typescript@5.8.3)': 1937 | dependencies: 1938 | '@typescript-eslint/types': 8.30.1 1939 | '@typescript-eslint/visitor-keys': 8.30.1 1940 | debug: 4.4.0 1941 | fast-glob: 3.3.3 1942 | is-glob: 4.0.3 1943 | minimatch: 9.0.5 1944 | semver: 7.7.1 1945 | ts-api-utils: 2.1.0(typescript@5.8.3) 1946 | typescript: 5.8.3 1947 | transitivePeerDependencies: 1948 | - supports-color 1949 | 1950 | '@typescript-eslint/utils@8.30.1(eslint@9.25.0)(typescript@5.8.3)': 1951 | dependencies: 1952 | '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.0) 1953 | '@typescript-eslint/scope-manager': 8.30.1 1954 | '@typescript-eslint/types': 8.30.1 1955 | '@typescript-eslint/typescript-estree': 8.30.1(typescript@5.8.3) 1956 | eslint: 9.25.0 1957 | typescript: 5.8.3 1958 | transitivePeerDependencies: 1959 | - supports-color 1960 | 1961 | '@typescript-eslint/visitor-keys@8.30.1': 1962 | dependencies: 1963 | '@typescript-eslint/types': 8.30.1 1964 | eslint-visitor-keys: 4.2.0 1965 | 1966 | accepts@2.0.0: 1967 | dependencies: 1968 | mime-types: 3.0.1 1969 | negotiator: 1.0.0 1970 | 1971 | acorn-jsx@5.3.2(acorn@8.14.1): 1972 | dependencies: 1973 | acorn: 8.14.1 1974 | 1975 | acorn@8.14.1: {} 1976 | 1977 | agent-base@7.1.3: {} 1978 | 1979 | ajv@6.12.6: 1980 | dependencies: 1981 | fast-deep-equal: 3.1.3 1982 | fast-json-stable-stringify: 2.1.0 1983 | json-schema-traverse: 0.4.1 1984 | uri-js: 4.4.1 1985 | 1986 | ansi-regex@5.0.1: {} 1987 | 1988 | ansi-regex@6.1.0: {} 1989 | 1990 | ansi-styles@4.3.0: 1991 | dependencies: 1992 | color-convert: 2.0.1 1993 | 1994 | ansi-styles@6.2.1: {} 1995 | 1996 | any-promise@1.3.0: {} 1997 | 1998 | argparse@2.0.1: {} 1999 | 2000 | atomic-sleep@1.0.0: {} 2001 | 2002 | balanced-match@1.0.2: {} 2003 | 2004 | body-parser@2.2.0: 2005 | dependencies: 2006 | bytes: 3.1.2 2007 | content-type: 1.0.5 2008 | debug: 4.4.0 2009 | http-errors: 2.0.0 2010 | iconv-lite: 0.6.3 2011 | on-finished: 2.4.1 2012 | qs: 6.14.0 2013 | raw-body: 3.0.0 2014 | type-is: 2.0.1 2015 | transitivePeerDependencies: 2016 | - supports-color 2017 | 2018 | brace-expansion@1.1.11: 2019 | dependencies: 2020 | balanced-match: 1.0.2 2021 | concat-map: 0.0.1 2022 | 2023 | brace-expansion@2.0.1: 2024 | dependencies: 2025 | balanced-match: 1.0.2 2026 | 2027 | braces@3.0.3: 2028 | dependencies: 2029 | fill-range: 7.1.1 2030 | 2031 | bundle-require@5.1.0(esbuild@0.25.2): 2032 | dependencies: 2033 | esbuild: 0.25.2 2034 | load-tsconfig: 0.2.5 2035 | 2036 | bytes@3.1.2: {} 2037 | 2038 | cac@6.7.14: {} 2039 | 2040 | call-bind-apply-helpers@1.0.2: 2041 | dependencies: 2042 | es-errors: 1.3.0 2043 | function-bind: 1.1.2 2044 | 2045 | call-bound@1.0.4: 2046 | dependencies: 2047 | call-bind-apply-helpers: 1.0.2 2048 | get-intrinsic: 1.3.0 2049 | 2050 | callsites@3.1.0: {} 2051 | 2052 | chalk@4.1.2: 2053 | dependencies: 2054 | ansi-styles: 4.3.0 2055 | supports-color: 7.2.0 2056 | 2057 | chokidar@4.0.3: 2058 | dependencies: 2059 | readdirp: 4.1.2 2060 | 2061 | cliui@8.0.1: 2062 | dependencies: 2063 | string-width: 4.2.3 2064 | strip-ansi: 6.0.1 2065 | wrap-ansi: 7.0.0 2066 | 2067 | color-convert@2.0.1: 2068 | dependencies: 2069 | color-name: 1.1.4 2070 | 2071 | color-name@1.1.4: {} 2072 | 2073 | commander@12.1.0: {} 2074 | 2075 | commander@4.1.1: {} 2076 | 2077 | concat-map@0.0.1: {} 2078 | 2079 | consola@3.4.2: {} 2080 | 2081 | content-disposition@1.0.0: 2082 | dependencies: 2083 | safe-buffer: 5.2.1 2084 | 2085 | content-type@1.0.5: {} 2086 | 2087 | cookie-signature@1.2.2: {} 2088 | 2089 | cookie@0.7.2: {} 2090 | 2091 | cors@2.8.5: 2092 | dependencies: 2093 | object-assign: 4.1.1 2094 | vary: 1.1.2 2095 | 2096 | cross-fetch@4.1.0: 2097 | dependencies: 2098 | node-fetch: 2.7.0 2099 | transitivePeerDependencies: 2100 | - encoding 2101 | 2102 | cross-spawn@7.0.6: 2103 | dependencies: 2104 | path-key: 3.1.1 2105 | shebang-command: 2.0.0 2106 | which: 2.0.2 2107 | 2108 | debug@4.4.0: 2109 | dependencies: 2110 | ms: 2.1.3 2111 | 2112 | deep-is@0.1.4: {} 2113 | 2114 | depd@2.0.0: {} 2115 | 2116 | dotenv@16.5.0: {} 2117 | 2118 | dtsgenerator@3.19.2: 2119 | dependencies: 2120 | commander: 12.1.0 2121 | cross-fetch: 4.1.0 2122 | debug: 4.4.0 2123 | glob: 10.4.5 2124 | http-proxy-agent: 7.0.2 2125 | https-proxy-agent: 7.0.6 2126 | js-yaml: 4.1.0 2127 | tslib: 2.8.1 2128 | typescript: 5.8.3 2129 | transitivePeerDependencies: 2130 | - encoding 2131 | - supports-color 2132 | 2133 | dunder-proto@1.0.1: 2134 | dependencies: 2135 | call-bind-apply-helpers: 1.0.2 2136 | es-errors: 1.3.0 2137 | gopd: 1.2.0 2138 | 2139 | eastasianwidth@0.2.0: {} 2140 | 2141 | ee-first@1.1.1: {} 2142 | 2143 | emoji-regex@8.0.0: {} 2144 | 2145 | emoji-regex@9.2.2: {} 2146 | 2147 | encodeurl@2.0.0: {} 2148 | 2149 | es-define-property@1.0.1: {} 2150 | 2151 | es-errors@1.3.0: {} 2152 | 2153 | es-object-atoms@1.1.1: 2154 | dependencies: 2155 | es-errors: 1.3.0 2156 | 2157 | esbuild@0.25.2: 2158 | optionalDependencies: 2159 | '@esbuild/aix-ppc64': 0.25.2 2160 | '@esbuild/android-arm': 0.25.2 2161 | '@esbuild/android-arm64': 0.25.2 2162 | '@esbuild/android-x64': 0.25.2 2163 | '@esbuild/darwin-arm64': 0.25.2 2164 | '@esbuild/darwin-x64': 0.25.2 2165 | '@esbuild/freebsd-arm64': 0.25.2 2166 | '@esbuild/freebsd-x64': 0.25.2 2167 | '@esbuild/linux-arm': 0.25.2 2168 | '@esbuild/linux-arm64': 0.25.2 2169 | '@esbuild/linux-ia32': 0.25.2 2170 | '@esbuild/linux-loong64': 0.25.2 2171 | '@esbuild/linux-mips64el': 0.25.2 2172 | '@esbuild/linux-ppc64': 0.25.2 2173 | '@esbuild/linux-riscv64': 0.25.2 2174 | '@esbuild/linux-s390x': 0.25.2 2175 | '@esbuild/linux-x64': 0.25.2 2176 | '@esbuild/netbsd-arm64': 0.25.2 2177 | '@esbuild/netbsd-x64': 0.25.2 2178 | '@esbuild/openbsd-arm64': 0.25.2 2179 | '@esbuild/openbsd-x64': 0.25.2 2180 | '@esbuild/sunos-x64': 0.25.2 2181 | '@esbuild/win32-arm64': 0.25.2 2182 | '@esbuild/win32-ia32': 0.25.2 2183 | '@esbuild/win32-x64': 0.25.2 2184 | 2185 | escalade@3.2.0: {} 2186 | 2187 | escape-html@1.0.3: {} 2188 | 2189 | escape-string-regexp@4.0.0: {} 2190 | 2191 | eslint-config-prettier@10.1.2(eslint@9.25.0): 2192 | dependencies: 2193 | eslint: 9.25.0 2194 | 2195 | eslint-plugin-prettier@5.2.6(eslint-config-prettier@10.1.2(eslint@9.25.0))(eslint@9.25.0)(prettier@3.5.3): 2196 | dependencies: 2197 | eslint: 9.25.0 2198 | prettier: 3.5.3 2199 | prettier-linter-helpers: 1.0.0 2200 | synckit: 0.11.4 2201 | optionalDependencies: 2202 | eslint-config-prettier: 10.1.2(eslint@9.25.0) 2203 | 2204 | eslint-scope@8.3.0: 2205 | dependencies: 2206 | esrecurse: 4.3.0 2207 | estraverse: 5.3.0 2208 | 2209 | eslint-visitor-keys@3.4.3: {} 2210 | 2211 | eslint-visitor-keys@4.2.0: {} 2212 | 2213 | eslint@9.25.0: 2214 | dependencies: 2215 | '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.0) 2216 | '@eslint-community/regexpp': 4.12.1 2217 | '@eslint/config-array': 0.20.0 2218 | '@eslint/config-helpers': 0.2.1 2219 | '@eslint/core': 0.13.0 2220 | '@eslint/eslintrc': 3.3.1 2221 | '@eslint/js': 9.25.0 2222 | '@eslint/plugin-kit': 0.2.8 2223 | '@humanfs/node': 0.16.6 2224 | '@humanwhocodes/module-importer': 1.0.1 2225 | '@humanwhocodes/retry': 0.4.2 2226 | '@types/estree': 1.0.7 2227 | '@types/json-schema': 7.0.15 2228 | ajv: 6.12.6 2229 | chalk: 4.1.2 2230 | cross-spawn: 7.0.6 2231 | debug: 4.4.0 2232 | escape-string-regexp: 4.0.0 2233 | eslint-scope: 8.3.0 2234 | eslint-visitor-keys: 4.2.0 2235 | espree: 10.3.0 2236 | esquery: 1.6.0 2237 | esutils: 2.0.3 2238 | fast-deep-equal: 3.1.3 2239 | file-entry-cache: 8.0.0 2240 | find-up: 5.0.0 2241 | glob-parent: 6.0.2 2242 | ignore: 5.3.2 2243 | imurmurhash: 0.1.4 2244 | is-glob: 4.0.3 2245 | json-stable-stringify-without-jsonify: 1.0.1 2246 | lodash.merge: 4.6.2 2247 | minimatch: 3.1.2 2248 | natural-compare: 1.4.0 2249 | optionator: 0.9.4 2250 | transitivePeerDependencies: 2251 | - supports-color 2252 | 2253 | espree@10.3.0: 2254 | dependencies: 2255 | acorn: 8.14.1 2256 | acorn-jsx: 5.3.2(acorn@8.14.1) 2257 | eslint-visitor-keys: 4.2.0 2258 | 2259 | esquery@1.6.0: 2260 | dependencies: 2261 | estraverse: 5.3.0 2262 | 2263 | esrecurse@4.3.0: 2264 | dependencies: 2265 | estraverse: 5.3.0 2266 | 2267 | estraverse@5.3.0: {} 2268 | 2269 | esutils@2.0.3: {} 2270 | 2271 | etag@1.8.1: {} 2272 | 2273 | eventsource-parser@3.0.1: {} 2274 | 2275 | eventsource@3.0.6: 2276 | dependencies: 2277 | eventsource-parser: 3.0.1 2278 | 2279 | express-rate-limit@7.5.0(express@5.1.0): 2280 | dependencies: 2281 | express: 5.1.0 2282 | 2283 | express@5.1.0: 2284 | dependencies: 2285 | accepts: 2.0.0 2286 | body-parser: 2.2.0 2287 | content-disposition: 1.0.0 2288 | content-type: 1.0.5 2289 | cookie: 0.7.2 2290 | cookie-signature: 1.2.2 2291 | debug: 4.4.0 2292 | encodeurl: 2.0.0 2293 | escape-html: 1.0.3 2294 | etag: 1.8.1 2295 | finalhandler: 2.1.0 2296 | fresh: 2.0.0 2297 | http-errors: 2.0.0 2298 | merge-descriptors: 2.0.0 2299 | mime-types: 3.0.1 2300 | on-finished: 2.4.1 2301 | once: 1.4.0 2302 | parseurl: 1.3.3 2303 | proxy-addr: 2.0.7 2304 | qs: 6.14.0 2305 | range-parser: 1.2.1 2306 | router: 2.2.0 2307 | send: 1.2.0 2308 | serve-static: 2.2.0 2309 | statuses: 2.0.1 2310 | type-is: 2.0.1 2311 | vary: 1.1.2 2312 | transitivePeerDependencies: 2313 | - supports-color 2314 | 2315 | fast-deep-equal@3.1.3: {} 2316 | 2317 | fast-diff@1.3.0: {} 2318 | 2319 | fast-glob@3.3.3: 2320 | dependencies: 2321 | '@nodelib/fs.stat': 2.0.5 2322 | '@nodelib/fs.walk': 1.2.8 2323 | glob-parent: 5.1.2 2324 | merge2: 1.4.1 2325 | micromatch: 4.0.8 2326 | 2327 | fast-json-stable-stringify@2.1.0: {} 2328 | 2329 | fast-levenshtein@2.0.6: {} 2330 | 2331 | fast-redact@3.5.0: {} 2332 | 2333 | fastq@1.19.1: 2334 | dependencies: 2335 | reusify: 1.1.0 2336 | 2337 | fdir@6.4.3(picomatch@4.0.2): 2338 | optionalDependencies: 2339 | picomatch: 4.0.2 2340 | 2341 | file-entry-cache@8.0.0: 2342 | dependencies: 2343 | flat-cache: 4.0.1 2344 | 2345 | fill-range@7.1.1: 2346 | dependencies: 2347 | to-regex-range: 5.0.1 2348 | 2349 | finalhandler@2.1.0: 2350 | dependencies: 2351 | debug: 4.4.0 2352 | encodeurl: 2.0.0 2353 | escape-html: 1.0.3 2354 | on-finished: 2.4.1 2355 | parseurl: 1.3.3 2356 | statuses: 2.0.1 2357 | transitivePeerDependencies: 2358 | - supports-color 2359 | 2360 | find-up@5.0.0: 2361 | dependencies: 2362 | locate-path: 6.0.0 2363 | path-exists: 4.0.0 2364 | 2365 | flat-cache@4.0.1: 2366 | dependencies: 2367 | flatted: 3.3.3 2368 | keyv: 4.5.4 2369 | 2370 | flatted@3.3.3: {} 2371 | 2372 | foreground-child@3.3.1: 2373 | dependencies: 2374 | cross-spawn: 7.0.6 2375 | signal-exit: 4.1.0 2376 | 2377 | forwarded@0.2.0: {} 2378 | 2379 | fresh@2.0.0: {} 2380 | 2381 | fsevents@2.3.3: 2382 | optional: true 2383 | 2384 | function-bind@1.1.2: {} 2385 | 2386 | get-caller-file@2.0.5: {} 2387 | 2388 | get-intrinsic@1.3.0: 2389 | dependencies: 2390 | call-bind-apply-helpers: 1.0.2 2391 | es-define-property: 1.0.1 2392 | es-errors: 1.3.0 2393 | es-object-atoms: 1.1.1 2394 | function-bind: 1.1.2 2395 | get-proto: 1.0.1 2396 | gopd: 1.2.0 2397 | has-symbols: 1.1.0 2398 | hasown: 2.0.2 2399 | math-intrinsics: 1.1.0 2400 | 2401 | get-proto@1.0.1: 2402 | dependencies: 2403 | dunder-proto: 1.0.1 2404 | es-object-atoms: 1.1.1 2405 | 2406 | get-tsconfig@4.10.0: 2407 | dependencies: 2408 | resolve-pkg-maps: 1.0.0 2409 | 2410 | glob-parent@5.1.2: 2411 | dependencies: 2412 | is-glob: 4.0.3 2413 | 2414 | glob-parent@6.0.2: 2415 | dependencies: 2416 | is-glob: 4.0.3 2417 | 2418 | glob@10.4.5: 2419 | dependencies: 2420 | foreground-child: 3.3.1 2421 | jackspeak: 3.4.3 2422 | minimatch: 9.0.5 2423 | minipass: 7.1.2 2424 | package-json-from-dist: 1.0.1 2425 | path-scurry: 1.11.1 2426 | 2427 | globals@14.0.0: {} 2428 | 2429 | gopd@1.2.0: {} 2430 | 2431 | graphemer@1.4.0: {} 2432 | 2433 | has-flag@4.0.0: {} 2434 | 2435 | has-symbols@1.1.0: {} 2436 | 2437 | hasown@2.0.2: 2438 | dependencies: 2439 | function-bind: 1.1.2 2440 | 2441 | http-errors@2.0.0: 2442 | dependencies: 2443 | depd: 2.0.0 2444 | inherits: 2.0.4 2445 | setprototypeof: 1.2.0 2446 | statuses: 2.0.1 2447 | toidentifier: 1.0.1 2448 | 2449 | http-proxy-agent@7.0.2: 2450 | dependencies: 2451 | agent-base: 7.1.3 2452 | debug: 4.4.0 2453 | transitivePeerDependencies: 2454 | - supports-color 2455 | 2456 | https-proxy-agent@7.0.6: 2457 | dependencies: 2458 | agent-base: 7.1.3 2459 | debug: 4.4.0 2460 | transitivePeerDependencies: 2461 | - supports-color 2462 | 2463 | iconv-lite@0.6.3: 2464 | dependencies: 2465 | safer-buffer: 2.1.2 2466 | 2467 | ignore@5.3.2: {} 2468 | 2469 | import-fresh@3.3.1: 2470 | dependencies: 2471 | parent-module: 1.0.1 2472 | resolve-from: 4.0.0 2473 | 2474 | imurmurhash@0.1.4: {} 2475 | 2476 | inherits@2.0.4: {} 2477 | 2478 | ipaddr.js@1.9.1: {} 2479 | 2480 | is-extglob@2.1.1: {} 2481 | 2482 | is-fullwidth-code-point@3.0.0: {} 2483 | 2484 | is-glob@4.0.3: 2485 | dependencies: 2486 | is-extglob: 2.1.1 2487 | 2488 | is-number@7.0.0: {} 2489 | 2490 | is-promise@4.0.0: {} 2491 | 2492 | isexe@2.0.0: {} 2493 | 2494 | jackspeak@3.4.3: 2495 | dependencies: 2496 | '@isaacs/cliui': 8.0.2 2497 | optionalDependencies: 2498 | '@pkgjs/parseargs': 0.11.0 2499 | 2500 | joycon@3.1.1: {} 2501 | 2502 | js-yaml@4.1.0: 2503 | dependencies: 2504 | argparse: 2.0.1 2505 | 2506 | json-buffer@3.0.1: {} 2507 | 2508 | json-schema-traverse@0.4.1: {} 2509 | 2510 | json-stable-stringify-without-jsonify@1.0.1: {} 2511 | 2512 | keyv@4.5.4: 2513 | dependencies: 2514 | json-buffer: 3.0.1 2515 | 2516 | levn@0.4.1: 2517 | dependencies: 2518 | prelude-ls: 1.2.1 2519 | type-check: 0.4.0 2520 | 2521 | lilconfig@3.1.3: {} 2522 | 2523 | lines-and-columns@1.2.4: {} 2524 | 2525 | load-tsconfig@0.2.5: {} 2526 | 2527 | locate-path@6.0.0: 2528 | dependencies: 2529 | p-locate: 5.0.0 2530 | 2531 | lodash.merge@4.6.2: {} 2532 | 2533 | lodash.sortby@4.7.0: {} 2534 | 2535 | lru-cache@10.4.3: {} 2536 | 2537 | math-intrinsics@1.1.0: {} 2538 | 2539 | media-typer@1.1.0: {} 2540 | 2541 | merge-descriptors@2.0.0: {} 2542 | 2543 | merge2@1.4.1: {} 2544 | 2545 | micromatch@4.0.8: 2546 | dependencies: 2547 | braces: 3.0.3 2548 | picomatch: 2.3.1 2549 | 2550 | mime-db@1.54.0: {} 2551 | 2552 | mime-types@3.0.1: 2553 | dependencies: 2554 | mime-db: 1.54.0 2555 | 2556 | minimatch@3.1.2: 2557 | dependencies: 2558 | brace-expansion: 1.1.11 2559 | 2560 | minimatch@9.0.5: 2561 | dependencies: 2562 | brace-expansion: 2.0.1 2563 | 2564 | minipass@7.1.2: {} 2565 | 2566 | ms@2.1.3: {} 2567 | 2568 | mz@2.7.0: 2569 | dependencies: 2570 | any-promise: 1.3.0 2571 | object-assign: 4.1.1 2572 | thenify-all: 1.6.0 2573 | 2574 | natural-compare@1.4.0: {} 2575 | 2576 | negotiator@1.0.0: {} 2577 | 2578 | node-fetch@2.7.0: 2579 | dependencies: 2580 | whatwg-url: 5.0.0 2581 | 2582 | object-assign@4.1.1: {} 2583 | 2584 | object-inspect@1.13.4: {} 2585 | 2586 | on-exit-leak-free@2.1.2: {} 2587 | 2588 | on-finished@2.4.1: 2589 | dependencies: 2590 | ee-first: 1.1.1 2591 | 2592 | once@1.4.0: 2593 | dependencies: 2594 | wrappy: 1.0.2 2595 | 2596 | optionator@0.9.4: 2597 | dependencies: 2598 | deep-is: 0.1.4 2599 | fast-levenshtein: 2.0.6 2600 | levn: 0.4.1 2601 | prelude-ls: 1.2.1 2602 | type-check: 0.4.0 2603 | word-wrap: 1.2.5 2604 | 2605 | p-limit@3.1.0: 2606 | dependencies: 2607 | yocto-queue: 0.1.0 2608 | 2609 | p-locate@5.0.0: 2610 | dependencies: 2611 | p-limit: 3.1.0 2612 | 2613 | package-json-from-dist@1.0.1: {} 2614 | 2615 | parent-module@1.0.1: 2616 | dependencies: 2617 | callsites: 3.1.0 2618 | 2619 | parseurl@1.3.3: {} 2620 | 2621 | path-exists@4.0.0: {} 2622 | 2623 | path-key@3.1.1: {} 2624 | 2625 | path-scurry@1.11.1: 2626 | dependencies: 2627 | lru-cache: 10.4.3 2628 | minipass: 7.1.2 2629 | 2630 | path-to-regexp@8.2.0: {} 2631 | 2632 | picocolors@1.1.1: {} 2633 | 2634 | picomatch@2.3.1: {} 2635 | 2636 | picomatch@4.0.2: {} 2637 | 2638 | pino-abstract-transport@2.0.0: 2639 | dependencies: 2640 | split2: 4.2.0 2641 | 2642 | pino-std-serializers@7.0.0: {} 2643 | 2644 | pino@9.6.0: 2645 | dependencies: 2646 | atomic-sleep: 1.0.0 2647 | fast-redact: 3.5.0 2648 | on-exit-leak-free: 2.1.2 2649 | pino-abstract-transport: 2.0.0 2650 | pino-std-serializers: 7.0.0 2651 | process-warning: 4.0.1 2652 | quick-format-unescaped: 4.0.4 2653 | real-require: 0.2.0 2654 | safe-stable-stringify: 2.5.0 2655 | sonic-boom: 4.2.0 2656 | thread-stream: 3.1.0 2657 | 2658 | pirates@4.0.7: {} 2659 | 2660 | pkce-challenge@5.0.0: {} 2661 | 2662 | postcss-load-config@6.0.1(tsx@4.19.3): 2663 | dependencies: 2664 | lilconfig: 3.1.3 2665 | optionalDependencies: 2666 | tsx: 4.19.3 2667 | 2668 | prelude-ls@1.2.1: {} 2669 | 2670 | prettier-linter-helpers@1.0.0: 2671 | dependencies: 2672 | fast-diff: 1.3.0 2673 | 2674 | prettier@3.5.3: {} 2675 | 2676 | process-warning@4.0.1: {} 2677 | 2678 | proxy-addr@2.0.7: 2679 | dependencies: 2680 | forwarded: 0.2.0 2681 | ipaddr.js: 1.9.1 2682 | 2683 | punycode@2.3.1: {} 2684 | 2685 | qs@6.14.0: 2686 | dependencies: 2687 | side-channel: 1.1.0 2688 | 2689 | queue-microtask@1.2.3: {} 2690 | 2691 | quick-format-unescaped@4.0.4: {} 2692 | 2693 | range-parser@1.2.1: {} 2694 | 2695 | raw-body@3.0.0: 2696 | dependencies: 2697 | bytes: 3.1.2 2698 | http-errors: 2.0.0 2699 | iconv-lite: 0.6.3 2700 | unpipe: 1.0.0 2701 | 2702 | readdirp@4.1.2: {} 2703 | 2704 | real-require@0.2.0: {} 2705 | 2706 | require-directory@2.1.1: {} 2707 | 2708 | resolve-from@4.0.0: {} 2709 | 2710 | resolve-from@5.0.0: {} 2711 | 2712 | resolve-pkg-maps@1.0.0: {} 2713 | 2714 | reusify@1.1.0: {} 2715 | 2716 | rollup@4.40.0: 2717 | dependencies: 2718 | '@types/estree': 1.0.7 2719 | optionalDependencies: 2720 | '@rollup/rollup-android-arm-eabi': 4.40.0 2721 | '@rollup/rollup-android-arm64': 4.40.0 2722 | '@rollup/rollup-darwin-arm64': 4.40.0 2723 | '@rollup/rollup-darwin-x64': 4.40.0 2724 | '@rollup/rollup-freebsd-arm64': 4.40.0 2725 | '@rollup/rollup-freebsd-x64': 4.40.0 2726 | '@rollup/rollup-linux-arm-gnueabihf': 4.40.0 2727 | '@rollup/rollup-linux-arm-musleabihf': 4.40.0 2728 | '@rollup/rollup-linux-arm64-gnu': 4.40.0 2729 | '@rollup/rollup-linux-arm64-musl': 4.40.0 2730 | '@rollup/rollup-linux-loongarch64-gnu': 4.40.0 2731 | '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0 2732 | '@rollup/rollup-linux-riscv64-gnu': 4.40.0 2733 | '@rollup/rollup-linux-riscv64-musl': 4.40.0 2734 | '@rollup/rollup-linux-s390x-gnu': 4.40.0 2735 | '@rollup/rollup-linux-x64-gnu': 4.40.0 2736 | '@rollup/rollup-linux-x64-musl': 4.40.0 2737 | '@rollup/rollup-win32-arm64-msvc': 4.40.0 2738 | '@rollup/rollup-win32-ia32-msvc': 4.40.0 2739 | '@rollup/rollup-win32-x64-msvc': 4.40.0 2740 | fsevents: 2.3.3 2741 | 2742 | router@2.2.0: 2743 | dependencies: 2744 | debug: 4.4.0 2745 | depd: 2.0.0 2746 | is-promise: 4.0.0 2747 | parseurl: 1.3.3 2748 | path-to-regexp: 8.2.0 2749 | transitivePeerDependencies: 2750 | - supports-color 2751 | 2752 | run-parallel@1.2.0: 2753 | dependencies: 2754 | queue-microtask: 1.2.3 2755 | 2756 | safe-buffer@5.2.1: {} 2757 | 2758 | safe-stable-stringify@2.5.0: {} 2759 | 2760 | safer-buffer@2.1.2: {} 2761 | 2762 | semver@7.7.1: {} 2763 | 2764 | send@1.2.0: 2765 | dependencies: 2766 | debug: 4.4.0 2767 | encodeurl: 2.0.0 2768 | escape-html: 1.0.3 2769 | etag: 1.8.1 2770 | fresh: 2.0.0 2771 | http-errors: 2.0.0 2772 | mime-types: 3.0.1 2773 | ms: 2.1.3 2774 | on-finished: 2.4.1 2775 | range-parser: 1.2.1 2776 | statuses: 2.0.1 2777 | transitivePeerDependencies: 2778 | - supports-color 2779 | 2780 | serve-static@2.2.0: 2781 | dependencies: 2782 | encodeurl: 2.0.0 2783 | escape-html: 1.0.3 2784 | parseurl: 1.3.3 2785 | send: 1.2.0 2786 | transitivePeerDependencies: 2787 | - supports-color 2788 | 2789 | setprototypeof@1.2.0: {} 2790 | 2791 | shebang-command@2.0.0: 2792 | dependencies: 2793 | shebang-regex: 3.0.0 2794 | 2795 | shebang-regex@3.0.0: {} 2796 | 2797 | side-channel-list@1.0.0: 2798 | dependencies: 2799 | es-errors: 1.3.0 2800 | object-inspect: 1.13.4 2801 | 2802 | side-channel-map@1.0.1: 2803 | dependencies: 2804 | call-bound: 1.0.4 2805 | es-errors: 1.3.0 2806 | get-intrinsic: 1.3.0 2807 | object-inspect: 1.13.4 2808 | 2809 | side-channel-weakmap@1.0.2: 2810 | dependencies: 2811 | call-bound: 1.0.4 2812 | es-errors: 1.3.0 2813 | get-intrinsic: 1.3.0 2814 | object-inspect: 1.13.4 2815 | side-channel-map: 1.0.1 2816 | 2817 | side-channel@1.1.0: 2818 | dependencies: 2819 | es-errors: 1.3.0 2820 | object-inspect: 1.13.4 2821 | side-channel-list: 1.0.0 2822 | side-channel-map: 1.0.1 2823 | side-channel-weakmap: 1.0.2 2824 | 2825 | signal-exit@4.1.0: {} 2826 | 2827 | sonic-boom@4.2.0: 2828 | dependencies: 2829 | atomic-sleep: 1.0.0 2830 | 2831 | source-map@0.8.0-beta.0: 2832 | dependencies: 2833 | whatwg-url: 7.1.0 2834 | 2835 | split2@4.2.0: {} 2836 | 2837 | statuses@2.0.1: {} 2838 | 2839 | string-width@4.2.3: 2840 | dependencies: 2841 | emoji-regex: 8.0.0 2842 | is-fullwidth-code-point: 3.0.0 2843 | strip-ansi: 6.0.1 2844 | 2845 | string-width@5.1.2: 2846 | dependencies: 2847 | eastasianwidth: 0.2.0 2848 | emoji-regex: 9.2.2 2849 | strip-ansi: 7.1.0 2850 | 2851 | strip-ansi@6.0.1: 2852 | dependencies: 2853 | ansi-regex: 5.0.1 2854 | 2855 | strip-ansi@7.1.0: 2856 | dependencies: 2857 | ansi-regex: 6.1.0 2858 | 2859 | strip-json-comments@3.1.1: {} 2860 | 2861 | sucrase@3.35.0: 2862 | dependencies: 2863 | '@jridgewell/gen-mapping': 0.3.8 2864 | commander: 4.1.1 2865 | glob: 10.4.5 2866 | lines-and-columns: 1.2.4 2867 | mz: 2.7.0 2868 | pirates: 4.0.7 2869 | ts-interface-checker: 0.1.13 2870 | 2871 | supports-color@7.2.0: 2872 | dependencies: 2873 | has-flag: 4.0.0 2874 | 2875 | synckit@0.11.4: 2876 | dependencies: 2877 | '@pkgr/core': 0.2.4 2878 | tslib: 2.8.1 2879 | 2880 | thenify-all@1.6.0: 2881 | dependencies: 2882 | thenify: 3.3.1 2883 | 2884 | thenify@3.3.1: 2885 | dependencies: 2886 | any-promise: 1.3.0 2887 | 2888 | thread-stream@3.1.0: 2889 | dependencies: 2890 | real-require: 0.2.0 2891 | 2892 | tinyexec@0.3.2: {} 2893 | 2894 | tinyglobby@0.2.12: 2895 | dependencies: 2896 | fdir: 6.4.3(picomatch@4.0.2) 2897 | picomatch: 4.0.2 2898 | 2899 | to-regex-range@5.0.1: 2900 | dependencies: 2901 | is-number: 7.0.0 2902 | 2903 | toidentifier@1.0.1: {} 2904 | 2905 | tr46@0.0.3: {} 2906 | 2907 | tr46@1.0.1: 2908 | dependencies: 2909 | punycode: 2.3.1 2910 | 2911 | tree-kill@1.2.2: {} 2912 | 2913 | ts-api-utils@2.1.0(typescript@5.8.3): 2914 | dependencies: 2915 | typescript: 5.8.3 2916 | 2917 | ts-interface-checker@0.1.13: {} 2918 | 2919 | tslib@2.8.1: {} 2920 | 2921 | tsup@8.4.0(tsx@4.19.3)(typescript@5.8.3): 2922 | dependencies: 2923 | bundle-require: 5.1.0(esbuild@0.25.2) 2924 | cac: 6.7.14 2925 | chokidar: 4.0.3 2926 | consola: 3.4.2 2927 | debug: 4.4.0 2928 | esbuild: 0.25.2 2929 | joycon: 3.1.1 2930 | picocolors: 1.1.1 2931 | postcss-load-config: 6.0.1(tsx@4.19.3) 2932 | resolve-from: 5.0.0 2933 | rollup: 4.40.0 2934 | source-map: 0.8.0-beta.0 2935 | sucrase: 3.35.0 2936 | tinyexec: 0.3.2 2937 | tinyglobby: 0.2.12 2938 | tree-kill: 1.2.2 2939 | optionalDependencies: 2940 | typescript: 5.8.3 2941 | transitivePeerDependencies: 2942 | - jiti 2943 | - supports-color 2944 | - tsx 2945 | - yaml 2946 | 2947 | tsx@4.19.3: 2948 | dependencies: 2949 | esbuild: 0.25.2 2950 | get-tsconfig: 4.10.0 2951 | optionalDependencies: 2952 | fsevents: 2.3.3 2953 | 2954 | type-check@0.4.0: 2955 | dependencies: 2956 | prelude-ls: 1.2.1 2957 | 2958 | type-is@2.0.1: 2959 | dependencies: 2960 | content-type: 1.0.5 2961 | media-typer: 1.1.0 2962 | mime-types: 3.0.1 2963 | 2964 | typescript-eslint@8.30.1(eslint@9.25.0)(typescript@5.8.3): 2965 | dependencies: 2966 | '@typescript-eslint/eslint-plugin': 8.30.1(@typescript-eslint/parser@8.30.1(eslint@9.25.0)(typescript@5.8.3))(eslint@9.25.0)(typescript@5.8.3) 2967 | '@typescript-eslint/parser': 8.30.1(eslint@9.25.0)(typescript@5.8.3) 2968 | '@typescript-eslint/utils': 8.30.1(eslint@9.25.0)(typescript@5.8.3) 2969 | eslint: 9.25.0 2970 | typescript: 5.8.3 2971 | transitivePeerDependencies: 2972 | - supports-color 2973 | 2974 | typescript@5.8.3: {} 2975 | 2976 | undici-types@6.21.0: {} 2977 | 2978 | unpipe@1.0.0: {} 2979 | 2980 | uri-js@4.4.1: 2981 | dependencies: 2982 | punycode: 2.3.1 2983 | 2984 | vary@1.1.2: {} 2985 | 2986 | webidl-conversions@3.0.1: {} 2987 | 2988 | webidl-conversions@4.0.2: {} 2989 | 2990 | whatwg-url@5.0.0: 2991 | dependencies: 2992 | tr46: 0.0.3 2993 | webidl-conversions: 3.0.1 2994 | 2995 | whatwg-url@7.1.0: 2996 | dependencies: 2997 | lodash.sortby: 4.7.0 2998 | tr46: 1.0.1 2999 | webidl-conversions: 4.0.2 3000 | 3001 | which@2.0.2: 3002 | dependencies: 3003 | isexe: 2.0.0 3004 | 3005 | word-wrap@1.2.5: {} 3006 | 3007 | wrap-ansi@7.0.0: 3008 | dependencies: 3009 | ansi-styles: 4.3.0 3010 | string-width: 4.2.3 3011 | strip-ansi: 6.0.1 3012 | 3013 | wrap-ansi@8.1.0: 3014 | dependencies: 3015 | ansi-styles: 6.2.1 3016 | string-width: 5.1.2 3017 | strip-ansi: 7.1.0 3018 | 3019 | wrappy@1.0.2: {} 3020 | 3021 | y18n@5.0.8: {} 3022 | 3023 | yargs-parser@21.1.1: {} 3024 | 3025 | yargs@17.7.2: 3026 | dependencies: 3027 | cliui: 8.0.1 3028 | escalade: 3.2.0 3029 | get-caller-file: 2.0.5 3030 | require-directory: 2.1.1 3031 | string-width: 4.2.3 3032 | y18n: 5.0.8 3033 | yargs-parser: 21.1.1 3034 | 3035 | yocto-queue@0.1.0: {} 3036 | 3037 | zod-to-json-schema@3.24.5(zod@3.24.3): 3038 | dependencies: 3039 | zod: 3.24.3 3040 | 3041 | zod@3.24.3: {} 3042 | -------------------------------------------------------------------------------- /src/argocd/client.ts: -------------------------------------------------------------------------------- 1 | import { 2 | ApplicationLogEntry, 3 | V1alpha1Application, 4 | V1alpha1ApplicationList, 5 | V1alpha1ApplicationTree, 6 | V1EventList, 7 | V1alpha1ResourceAction, 8 | V1alpha1ResourceDiff, 9 | V1alpha1ResourceResult 10 | } from '../types/argocd-types.js'; 11 | import { HttpClient } from './http.js'; 12 | 13 | export class ArgoCDClient { 14 | private baseUrl: string; 15 | private apiToken: string; 16 | private client: HttpClient; 17 | 18 | constructor(baseUrl: string, apiToken: string) { 19 | this.baseUrl = baseUrl; 20 | this.apiToken = apiToken; 21 | this.client = new HttpClient(this.baseUrl, this.apiToken); 22 | } 23 | 24 | public async listApplications(params?: { search?: string }) { 25 | const { body } = await this.client.get(`/api/v1/applications`, params); 26 | return body; 27 | } 28 | 29 | public async getApplication(applicationName: string) { 30 | const { body } = await this.client.get( 31 | `/api/v1/applications/${applicationName}` 32 | ); 33 | return body; 34 | } 35 | 36 | public async createApplication(application: V1alpha1Application) { 37 | const { body } = await this.client.post( 38 | `/api/v1/applications`, 39 | null, 40 | application 41 | ); 42 | return body; 43 | } 44 | 45 | public async updateApplication(applicationName: string, application: V1alpha1Application) { 46 | const { body } = await this.client.put( 47 | `/api/v1/applications/${applicationName}`, 48 | null, 49 | application 50 | ); 51 | return body; 52 | } 53 | 54 | public async deleteApplication(applicationName: string) { 55 | const { body } = await this.client.delete( 56 | `/api/v1/applications/${applicationName}` 57 | ); 58 | return body; 59 | } 60 | 61 | public async syncApplication(applicationName: string) { 62 | const { body } = await this.client.post( 63 | `/api/v1/applications/${applicationName}/sync` 64 | ); 65 | return body; 66 | } 67 | 68 | public async getApplicationResourceTree(applicationName: string) { 69 | const { body } = await this.client.get( 70 | `/api/v1/applications/${applicationName}/resource-tree` 71 | ); 72 | return body; 73 | } 74 | 75 | public async getApplicationManagedResources(applicationName: string) { 76 | const { body } = await this.client.get<{ items: V1alpha1ResourceDiff[] }>( 77 | `/api/v1/applications/${applicationName}/managed-resources` 78 | ); 79 | return body; 80 | } 81 | 82 | public async getApplicationLogs(applicationName: string) { 83 | const logs: ApplicationLogEntry[] = []; 84 | await this.client.getStream( 85 | `/api/v1/applications/${applicationName}/logs`, 86 | { 87 | follow: false, 88 | tailLines: 100 89 | }, 90 | (chunk) => logs.push(chunk) 91 | ); 92 | return logs; 93 | } 94 | 95 | public async getWorkloadLogs( 96 | applicationName: string, 97 | applicationNamespace: string, 98 | resourceRef: V1alpha1ResourceResult 99 | ) { 100 | const logs: ApplicationLogEntry[] = []; 101 | await this.client.getStream( 102 | `/api/v1/applications/${applicationName}/logs`, 103 | { 104 | appNamespace: applicationNamespace, 105 | namespace: resourceRef.namespace, 106 | resourceName: resourceRef.name, 107 | group: resourceRef.group, 108 | kind: resourceRef.kind, 109 | version: resourceRef.version, 110 | follow: false, 111 | tailLines: 100 112 | }, 113 | (chunk) => logs.push(chunk) 114 | ); 115 | return logs; 116 | } 117 | 118 | public async getPodLogs(applicationName: string, podName: string) { 119 | const logs: ApplicationLogEntry[] = []; 120 | await this.client.getStream( 121 | `/api/v1/applications/${applicationName}/pods/${podName}/logs`, 122 | { 123 | follow: false, 124 | tailLines: 100 125 | }, 126 | (chunk) => logs.push(chunk) 127 | ); 128 | return logs; 129 | } 130 | 131 | public async getApplicationEvents(applicationName: string) { 132 | const { body } = await this.client.get( 133 | `/api/v1/applications/${applicationName}/events` 134 | ); 135 | return body; 136 | } 137 | 138 | public async getResourceEvents( 139 | applicationName: string, 140 | applicationNamespace: string, 141 | resourceUID: string, 142 | resourceNamespace: string, 143 | resourceName: string 144 | ) { 145 | const { body } = await this.client.get( 146 | `/api/v1/applications/${applicationName}/events`, 147 | { 148 | appNamespace: applicationNamespace, 149 | resourceNamespace, 150 | resourceUID, 151 | resourceName 152 | } 153 | ); 154 | return body; 155 | } 156 | 157 | public async getResourceActions( 158 | applicationName: string, 159 | applicationNamespace: string, 160 | resourceRef: V1alpha1ResourceResult 161 | ) { 162 | const { body } = await this.client.get<{ actions: V1alpha1ResourceAction[] }>( 163 | `/api/v1/applications/${applicationName}/resource/actions`, 164 | { 165 | appNamespace: applicationNamespace, 166 | namespace: resourceRef.namespace, 167 | resourceName: resourceRef.name, 168 | group: resourceRef.group, 169 | kind: resourceRef.kind, 170 | version: resourceRef.version 171 | } 172 | ); 173 | return body; 174 | } 175 | 176 | public async runResourceAction( 177 | applicationName: string, 178 | applicationNamespace: string, 179 | resourceRef: V1alpha1ResourceResult, 180 | action: string 181 | ) { 182 | const { body } = await this.client.post( 183 | `/api/v1/applications/${applicationName}/resource/actions`, 184 | { 185 | appNamespace: applicationNamespace, 186 | namespace: resourceRef.namespace, 187 | resourceName: resourceRef.name, 188 | group: resourceRef.group, 189 | kind: resourceRef.kind, 190 | version: resourceRef.version 191 | }, 192 | action 193 | ); 194 | return body; 195 | } 196 | } 197 | -------------------------------------------------------------------------------- /src/argocd/http.ts: -------------------------------------------------------------------------------- 1 | export interface HttpResponse { 2 | status: number; 3 | headers: Headers; 4 | body: T; 5 | } 6 | 7 | type SearchParams = Record | null; 8 | 9 | export class HttpClient { 10 | public readonly baseUrl: string; 11 | public readonly apiToken: string; 12 | public readonly headers: Record; 13 | 14 | constructor(baseUrl: string, apiToken: string) { 15 | this.baseUrl = baseUrl; 16 | this.apiToken = apiToken; 17 | this.headers = { 18 | Authorization: `Bearer ${this.apiToken}`, 19 | 'Content-Type': 'application/json' 20 | }; 21 | } 22 | 23 | private async request( 24 | url: string, 25 | params?: SearchParams, 26 | init?: RequestInit 27 | ): Promise> { 28 | const urlObject = this.absUrl(url); 29 | if (params) { 30 | Object.entries(params).forEach(([key, value]) => { 31 | urlObject.searchParams.set(key, value?.toString() || ''); 32 | }); 33 | } 34 | const response = await fetch(urlObject, { 35 | ...init, 36 | headers: { ...init?.headers, ...this.headers } 37 | }); 38 | const body = await response.json(); 39 | return { 40 | status: response.status, 41 | headers: response.headers, 42 | body: body as R 43 | }; 44 | } 45 | 46 | private async requestStream( 47 | url: string, 48 | params?: SearchParams, 49 | cb?: (chunk: R) => void, 50 | init?: RequestInit 51 | ) { 52 | const urlObject = this.absUrl(url); 53 | if (params) { 54 | Object.entries(params).forEach(([key, value]) => { 55 | urlObject.searchParams.set(key, value?.toString() || ''); 56 | }); 57 | } 58 | const response = await fetch(urlObject, { 59 | ...init, 60 | headers: { ...init?.headers, ...this.headers } 61 | }); 62 | const reader = response.body?.getReader(); 63 | if (!reader) { 64 | throw new Error('response body is not readable'); 65 | } 66 | const decoder = new TextDecoder('utf-8'); 67 | let buffer = ''; 68 | while (true) { 69 | const { done, value } = await reader.read(); 70 | if (done) { 71 | break; 72 | } 73 | buffer += decoder.decode(value, { stream: true }); 74 | const lines = buffer.split('\n'); 75 | buffer = lines.pop() || ''; 76 | 77 | for (const line of lines) { 78 | if (line.trim()) { 79 | const json = JSON.parse(line); 80 | cb?.(json['result']); 81 | } 82 | } 83 | } 84 | } 85 | 86 | absUrl(url: string): URL { 87 | if (url.startsWith('http://') || url.startsWith('https://')) { 88 | return new URL(url); 89 | } 90 | return new URL(url, this.baseUrl); 91 | } 92 | 93 | async get(url: string, params?: SearchParams): Promise> { 94 | const response = await this.request(url, params); 95 | return response; 96 | } 97 | 98 | async getStream(url: string, params?: SearchParams, cb?: (chunk: R) => void): Promise { 99 | await this.requestStream(url, params, cb); 100 | } 101 | 102 | async post(url: string, params?: SearchParams, body?: T): Promise> { 103 | const response = await this.request(url, params, { 104 | method: 'POST', 105 | body: body ? JSON.stringify(body) : undefined 106 | }); 107 | return response; 108 | } 109 | 110 | async put(url: string, params?: SearchParams, body?: T): Promise> { 111 | const response = await this.request(url, params, { 112 | method: 'PUT', 113 | body: body ? JSON.stringify(body) : undefined 114 | }); 115 | return response; 116 | } 117 | 118 | async delete(url: string, params?: SearchParams): Promise> { 119 | const response = await this.request(url, params, { 120 | method: 'DELETE' 121 | }); 122 | return response; 123 | } 124 | } 125 | -------------------------------------------------------------------------------- /src/cmd/cmd.ts: -------------------------------------------------------------------------------- 1 | import yargs from 'yargs'; 2 | import { hideBin } from 'yargs/helpers'; 3 | import { 4 | connectStdioTransport, 5 | connectHttpTransport, 6 | connectSSETransport 7 | } from '../server/transport.js'; 8 | 9 | export const cmd = () => { 10 | const exe = yargs(hideBin(process.argv)); 11 | 12 | exe.command( 13 | 'stdio', 14 | 'Start ArgoCD MCP server using stdio.', 15 | () => {}, 16 | () => connectStdioTransport() 17 | ); 18 | 19 | exe.command( 20 | 'sse', 21 | 'Start ArgoCD MCP server using SSE.', 22 | (yargs) => { 23 | return yargs.option('port', { 24 | type: 'number', 25 | default: 3000 26 | }); 27 | }, 28 | ({ port }) => connectSSETransport(port) 29 | ); 30 | 31 | exe.command( 32 | 'http', 33 | 'Start ArgoCD MCP server using Http Stream.', 34 | (yargs) => { 35 | return yargs.option('port', { 36 | type: 'number', 37 | default: 3000 38 | }); 39 | }, 40 | ({ port }) => connectHttpTransport(port) 41 | ); 42 | 43 | exe.demandCommand().parseSync(); 44 | }; 45 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { cmd } from './cmd/cmd.js'; 2 | import dotenv from 'dotenv'; 3 | 4 | dotenv.config(); 5 | cmd(); 6 | -------------------------------------------------------------------------------- /src/logging/logging.ts: -------------------------------------------------------------------------------- 1 | import { pino } from 'pino'; 2 | import { stderr } from 'process'; 3 | 4 | export const logger = pino(pino.destination(stderr)); 5 | -------------------------------------------------------------------------------- /src/server/server.ts: -------------------------------------------------------------------------------- 1 | import { McpServer, ToolCallback } from '@modelcontextprotocol/sdk/server/mcp.js'; 2 | 3 | import packageJSON from '../../package.json' with { type: 'json' }; 4 | import { ArgoCDClient } from '../argocd/client.js'; 5 | import { z, ZodRawShape } from 'zod'; 6 | import { V1alpha1Application, V1alpha1ResourceResult } from '../types/argocd-types.js'; 7 | import { 8 | ApplicationNamespaceSchema, 9 | ApplicationSchema, 10 | ResourceRefSchema 11 | } from '../shared/models/schema.js'; 12 | 13 | type ServerInfo = { 14 | argocdBaseUrl: string; 15 | argocdApiToken: string; 16 | }; 17 | 18 | export class Server extends McpServer { 19 | private argocdClient: ArgoCDClient; 20 | 21 | constructor(serverInfo: ServerInfo) { 22 | super({ 23 | name: packageJSON.name, 24 | version: packageJSON.version 25 | }); 26 | this.argocdClient = new ArgoCDClient(serverInfo.argocdBaseUrl, serverInfo.argocdApiToken); 27 | 28 | this.addJsonOutputTool( 29 | 'list_applications', 30 | 'list_applications returns list of applications', 31 | { 32 | search: z 33 | .string() 34 | .optional() 35 | .describe( 36 | 'Search applications by name. This is a partial match on the application name and does not support glob patterns (e.g. "*"). Optional.' 37 | ) 38 | }, 39 | async ({ search }) => 40 | await this.argocdClient.listApplications({ search: search ?? undefined }) 41 | ); 42 | this.addJsonOutputTool( 43 | 'get_application', 44 | 'get_application returns application by application name', 45 | { applicationName: z.string() }, 46 | async ({ applicationName }) => await this.argocdClient.getApplication(applicationName) 47 | ); 48 | this.addJsonOutputTool( 49 | 'create_application', 50 | 'create_application creates application', 51 | { application: ApplicationSchema }, 52 | async ({ application }) => 53 | await this.argocdClient.createApplication(application as V1alpha1Application) 54 | ); 55 | this.addJsonOutputTool( 56 | 'update_application', 57 | 'update_application updates application', 58 | { applicationName: z.string(), application: ApplicationSchema }, 59 | async ({ applicationName, application }) => 60 | await this.argocdClient.updateApplication( 61 | applicationName, 62 | application as V1alpha1Application 63 | ) 64 | ); 65 | this.addJsonOutputTool( 66 | 'delete_application', 67 | 'delete_application deletes application', 68 | { applicationName: z.string() }, 69 | async ({ applicationName }) => await this.argocdClient.deleteApplication(applicationName) 70 | ); 71 | this.addJsonOutputTool( 72 | 'sync_application', 73 | 'sync_application syncs application', 74 | { applicationName: z.string() }, 75 | async ({ applicationName }) => await this.argocdClient.syncApplication(applicationName) 76 | ); 77 | this.addJsonOutputTool( 78 | 'get_application_resource_tree', 79 | 'get_application_resource_tree returns resource tree for application by application name', 80 | { applicationName: z.string() }, 81 | async ({ applicationName }) => 82 | await this.argocdClient.getApplicationResourceTree(applicationName) 83 | ); 84 | this.addJsonOutputTool( 85 | 'get_application_managed_resources', 86 | 'get_application_managed_resources returns managed resources for application by application name', 87 | { applicationName: z.string() }, 88 | async ({ applicationName }) => 89 | await this.argocdClient.getApplicationManagedResources(applicationName) 90 | ); 91 | this.addJsonOutputTool( 92 | 'get_application_workload_logs', 93 | 'get_application_workload_logs returns logs for application workload (Deployment, StatefulSet, Pod, etc.) by application name and resource ref', 94 | { 95 | applicationName: z.string(), 96 | applicationNamespace: ApplicationNamespaceSchema, 97 | resourceRef: ResourceRefSchema 98 | }, 99 | async ({ applicationName, applicationNamespace, resourceRef }) => 100 | await this.argocdClient.getWorkloadLogs( 101 | applicationName, 102 | applicationNamespace, 103 | resourceRef as V1alpha1ResourceResult 104 | ) 105 | ); 106 | this.addJsonOutputTool( 107 | 'get_application_events', 108 | 'get_application_events returns events for application by application name', 109 | { applicationName: z.string() }, 110 | async ({ applicationName }) => await this.argocdClient.getApplicationEvents(applicationName) 111 | ); 112 | this.addJsonOutputTool( 113 | 'get_resource_events', 114 | 'get_resource_events returns events for a resource that is managed by an application', 115 | { 116 | applicationName: z.string(), 117 | applicationNamespace: ApplicationNamespaceSchema, 118 | resourceUID: z.string(), 119 | resourceNamespace: z.string(), 120 | resourceName: z.string() 121 | }, 122 | async ({ 123 | applicationName, 124 | applicationNamespace, 125 | resourceUID, 126 | resourceNamespace, 127 | resourceName 128 | }) => 129 | await this.argocdClient.getResourceEvents( 130 | applicationName, 131 | applicationNamespace, 132 | resourceUID, 133 | resourceNamespace, 134 | resourceName 135 | ) 136 | ); 137 | this.addJsonOutputTool( 138 | 'get_resource_actions', 139 | 'get_resource_actions returns actions for a resource that is managed by an application', 140 | { 141 | applicationName: z.string(), 142 | applicationNamespace: ApplicationNamespaceSchema, 143 | resourceRef: ResourceRefSchema 144 | }, 145 | async ({ applicationName, applicationNamespace, resourceRef }) => 146 | await this.argocdClient.getResourceActions( 147 | applicationName, 148 | applicationNamespace, 149 | resourceRef as V1alpha1ResourceResult 150 | ) 151 | ); 152 | this.addJsonOutputTool( 153 | 'run_resource_action', 154 | 'run_resource_action runs an action on a resource', 155 | { 156 | applicationName: z.string(), 157 | applicationNamespace: ApplicationNamespaceSchema, 158 | resourceRef: ResourceRefSchema, 159 | action: z.string() 160 | }, 161 | async ({ applicationName, applicationNamespace, resourceRef, action }) => 162 | await this.argocdClient.runResourceAction( 163 | applicationName, 164 | applicationNamespace, 165 | resourceRef as V1alpha1ResourceResult, 166 | action 167 | ) 168 | ); 169 | } 170 | 171 | private addJsonOutputTool( 172 | name: string, 173 | description: string, 174 | paramsSchema: Args, 175 | cb: (...cbArgs: Parameters>) => T 176 | ) { 177 | this.tool(name, description, paramsSchema as ZodRawShape, async (...args) => { 178 | try { 179 | const result = await cb.apply(this, args as Parameters>); 180 | return { 181 | isError: false, 182 | content: [{ type: 'text', text: JSON.stringify(result) }] 183 | }; 184 | } catch (error) { 185 | return { 186 | isError: true, 187 | content: [{ type: 'text', text: error instanceof Error ? error.message : String(error) }] 188 | }; 189 | } 190 | }); 191 | } 192 | } 193 | 194 | export const createServer = (serverInfo: ServerInfo) => { 195 | return new Server(serverInfo); 196 | }; 197 | -------------------------------------------------------------------------------- /src/server/transport.ts: -------------------------------------------------------------------------------- 1 | import { SSEServerTransport } from '@modelcontextprotocol/sdk/server/sse.js'; 2 | import express from 'express'; 3 | import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; 4 | import { logger } from '../logging/logging.js'; 5 | import { createServer } from './server.js'; 6 | import { randomUUID } from 'node:crypto'; 7 | import { StreamableHTTPServerTransport } from '@modelcontextprotocol/sdk/server/streamableHttp.js'; 8 | import { isInitializeRequest } from '@modelcontextprotocol/sdk/types.js'; 9 | 10 | export const connectStdioTransport = () => { 11 | const server = createServer({ 12 | argocdBaseUrl: process.env.ARGOCD_BASE_URL || '', 13 | argocdApiToken: process.env.ARGOCD_API_TOKEN || '' 14 | }); 15 | 16 | logger.info('Connecting to stdio transport'); 17 | server.connect(new StdioServerTransport()); 18 | }; 19 | 20 | export const connectSSETransport = (port: number) => { 21 | const app = express(); 22 | const transports: { [sessionId: string]: SSEServerTransport } = {}; 23 | 24 | app.get('/sse', async (req, res) => { 25 | const server = createServer({ 26 | argocdBaseUrl: (req.headers['x-argocd-base-url'] as string) || '', 27 | argocdApiToken: (req.headers['x-argocd-api-token'] as string) || '' 28 | }); 29 | 30 | const transport = new SSEServerTransport('/messages', res); 31 | transports[transport.sessionId] = transport; 32 | res.on('close', () => { 33 | delete transports[transport.sessionId]; 34 | }); 35 | await server.connect(transport); 36 | }); 37 | 38 | app.post('/messages', async (req, res) => { 39 | const sessionId = req.query.sessionId as string; 40 | const transport = transports[sessionId]; 41 | if (transport) { 42 | await transport.handlePostMessage(req, res); 43 | } else { 44 | res.status(400).send(`No transport found for sessionId: ${sessionId}`); 45 | } 46 | }); 47 | 48 | logger.info(`Connecting to SSE transport on port: ${port}`); 49 | app.listen(port); 50 | }; 51 | 52 | export const connectHttpTransport = (port: number) => { 53 | const app = express(); 54 | app.use(express.json()); 55 | 56 | const httpTransports: { [sessionId: string]: StreamableHTTPServerTransport } = {}; 57 | 58 | app.post('/mcp', async (req, res) => { 59 | const sessionIdFromHeader = req.headers['mcp-session-id'] as string | undefined; 60 | let transport: StreamableHTTPServerTransport; 61 | 62 | if (sessionIdFromHeader && httpTransports[sessionIdFromHeader]) { 63 | transport = httpTransports[sessionIdFromHeader]; 64 | } else if (!sessionIdFromHeader && isInitializeRequest(req.body)) { 65 | const argocdBaseUrl = (req.headers['x-argocd-base-url'] as string) || ''; 66 | const argocdApiToken = (req.headers['x-argocd-api-token'] as string) || ''; 67 | 68 | if (argocdBaseUrl == '' || argocdApiToken == '') { 69 | res 70 | .status(400) 71 | .send('x-argocd-base-url and x-argocd-api-token must be provided in headers.'); 72 | return; 73 | } 74 | 75 | transport = new StreamableHTTPServerTransport({ 76 | sessionIdGenerator: () => randomUUID(), 77 | onsessioninitialized: (newSessionId) => { 78 | httpTransports[newSessionId] = transport; 79 | } 80 | }); 81 | 82 | transport.onclose = () => { 83 | if (transport.sessionId) { 84 | delete httpTransports[transport.sessionId]; 85 | } 86 | }; 87 | 88 | const server = createServer({ 89 | argocdBaseUrl, 90 | argocdApiToken 91 | }); 92 | 93 | await server.connect(transport); 94 | } else { 95 | const errorMsg = sessionIdFromHeader 96 | ? `Invalid or expired session ID: ${sessionIdFromHeader}` 97 | : 'Bad Request: Not an initialization request and no valid session ID provided.'; 98 | res.status(400).json({ 99 | jsonrpc: '2.0', 100 | error: { 101 | code: -32000, 102 | message: errorMsg 103 | }, 104 | id: req.body?.id !== undefined ? req.body.id : null 105 | }); 106 | return; 107 | } 108 | 109 | await transport.handleRequest(req, res, req.body); 110 | }); 111 | 112 | const handleSessionRequest = async (req: express.Request, res: express.Response) => { 113 | const sessionId = req.headers['mcp-session-id'] as string | undefined; 114 | if (!sessionId || !httpTransports[sessionId]) { 115 | res.status(400).send('Invalid or missing session ID'); 116 | return; 117 | } 118 | const transport = httpTransports[sessionId]; 119 | await transport.handleRequest(req, res); 120 | }; 121 | 122 | app.get('/mcp', handleSessionRequest); 123 | app.delete('/mcp', handleSessionRequest); 124 | 125 | logger.info(`Connecting to Http Stream transport on port: ${port}`); 126 | app.listen(port); 127 | }; 128 | -------------------------------------------------------------------------------- /src/shared/models/schema.ts: -------------------------------------------------------------------------------- 1 | import { z } from 'zod'; 2 | 3 | export const ApplicationNamespaceSchema = z 4 | .string() 5 | .describe( 6 | `The namespace of the application. 7 | Note that this may differ from the namespace of individual resources. 8 | Make sure to verify the application namespace in the Application resource — it is often argocd, but not always.` 9 | ); 10 | 11 | export const ResourceRefSchema = z.object({ 12 | uid: z.string(), 13 | kind: z.string(), 14 | namespace: z.string(), 15 | name: z.string(), 16 | version: z.string(), 17 | group: z.string() 18 | }); 19 | 20 | export const ApplicationSchema = z.object({ 21 | metadata: z.object({ 22 | name: z.string(), 23 | namespace: ApplicationNamespaceSchema 24 | }), 25 | spec: z.object({ 26 | project: z.string(), 27 | source: z.object({ 28 | repoURL: z.string(), 29 | path: z.string(), 30 | targetRevision: z.string() 31 | }), 32 | syncPolicy: z.object({ 33 | syncOptions: z.array(z.string()), 34 | automated: z.object({ 35 | prune: z.boolean(), 36 | selfHeal: z.boolean() 37 | }).optional(), 38 | retry: z 39 | .object({ 40 | limit: z.number(), 41 | backoff: z.object({ 42 | duration: z.string(), 43 | maxDuration: z.string(), 44 | factor: z.number() 45 | }) 46 | }) 47 | }), 48 | destination: z.object({ 49 | server: z.string().optional(), 50 | namespace: z.string().optional(), 51 | name: z.string().optional() 52 | }) 53 | .refine( 54 | data => 55 | (!data.server && !!data.name) || (!!data.server && !data.name), 56 | { 57 | message: "Only one of server or name must be specified in destination" 58 | } 59 | ) 60 | .describe( 61 | `The destination of the application. 62 | Only one of server or name must be specified.` 63 | ) 64 | }) 65 | }); 66 | -------------------------------------------------------------------------------- /src/types/argocd-types.ts: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line @typescript-eslint/triple-slash-reference 2 | /// 3 | 4 | // Export types you need from the argocd.d.ts file for use in your project 5 | export type ApplicationLogEntry = ArgoCD.ApplicationLogEntry; 6 | export type V1alpha1Application = ArgoCD.V1alpha1Application; 7 | export type V1alpha1ApplicationList = ArgoCD.V1alpha1ApplicationList; 8 | export type V1alpha1ApplicationTree = ArgoCD.V1alpha1ApplicationTree; 9 | export type V1EventList = ArgoCD.V1EventList; 10 | export type V1alpha1ResourceAction = ArgoCD.V1alpha1ResourceAction; 11 | export type V1alpha1ResourceDiff = ArgoCD.V1alpha1ResourceDiff; 12 | export type V1alpha1ResourceResult = ArgoCD.V1alpha1ResourceResult; 13 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2016", 4 | "module": "NodeNext", 5 | "moduleResolution": "NodeNext", 6 | "outDir": "dist", 7 | "rootDir": "src", 8 | "strict": true, 9 | "esModuleInterop": true, 10 | "skipLibCheck": true, 11 | "forceConsistentCasingInFileNames": true, 12 | "sourceMap": true, 13 | "resolveJsonModule": true 14 | }, 15 | "exclude": [ 16 | "node_modules", 17 | "dist" 18 | ], 19 | "typeRoots": [ 20 | "node_modules/@types", 21 | "./src/types" 22 | ], 23 | "include": [ 24 | "src/**/*", 25 | "package.json" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "tsup" 2 | 3 | export default defineConfig({ 4 | entry: ["src/index.ts"], 5 | splitting: false, 6 | sourcemap: true, 7 | clean: true, 8 | dts: true, 9 | format: ["esm"], 10 | target: "es2016", 11 | banner: { 12 | js: '#!/usr/bin/env node' 13 | } 14 | }) --------------------------------------------------------------------------------