├── .gitignore ├── .whitesource ├── tsconfig.json ├── smithery.yaml ├── package.json ├── Dockerfile ├── src ├── evals │ └── evals.ts └── index.ts ├── README.md └── pnpm-lock.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | /node_modules 3 | /build -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- 1 | { 2 | "scanSettings": { 3 | "baseBranches": [] 4 | }, 5 | "checkRunSettings": { 6 | "vulnerableCheckRunConclusionLevel": "failure", 7 | "displayMode": "diff", 8 | "useMendCheckNames": true 9 | }, 10 | "issueSettings": { 11 | "minSeverityLevel": "LOW", 12 | "issueType": "DEPENDENCY" 13 | } 14 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2022", 4 | "module": "Node16", 5 | "moduleResolution": "Node16", 6 | "outDir": "./build", 7 | "rootDir": "./src", 8 | "strict": true, 9 | "esModuleInterop": true, 10 | "skipLibCheck": true, 11 | "forceConsistentCasingInFileNames": true 12 | }, 13 | "include": ["src/**/*"], 14 | "exclude": ["node_modules"] 15 | } 16 | 17 | -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- 1 | # Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml 2 | 3 | startCommand: 4 | type: stdio 5 | configSchema: 6 | # JSON Schema defining the configuration options for the MCP. 7 | type: object 8 | required: 9 | - githubToken 10 | properties: 11 | githubToken: 12 | type: string 13 | description: The GitHub Personal Access Token with repo scope. 14 | commandFunction: 15 | # A function that produces the CLI command to start the MCP on stdio. 16 | |- 17 | config => ({command: 'node', args: ['build/index.js'], env: {GITHUB_TOKEN: config.githubToken}}) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "github-mapper-mcp-server", 3 | "version": "1.0.0", 4 | "type": "module", 5 | "main": "build/index.js", 6 | "scripts": { 7 | "build": "tsc", 8 | "start": "node build/index.js" 9 | }, 10 | "dependencies": { 11 | "@modelcontextprotocol/sdk": "latest", 12 | "@octokit/rest": "^20.0.2", 13 | "mcp-evals": "^1.0.18" 14 | }, 15 | "devDependencies": { 16 | "@types/node": "^18.0.0", 17 | "typescript": "^4.9.5" 18 | }, 19 | "pnpm": { 20 | "overrides": { 21 | "@octokit/request": "9.2.1", 22 | "@octokit/request-error": "6.1.7", 23 | "@octokit/plugin-paginate-rest": "11.4.1", 24 | "@octokit/endpoint": "10.1.3", 25 | "@octokit/core": "6.1.5" 26 | }, 27 | "onlyBuiltDependencies": [ 28 | "esbuild" 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile 2 | # Use a Node.js image for building 3 | FROM node:18-alpine AS builder 4 | 5 | # Set the working directory 6 | WORKDIR /app 7 | 8 | # Copy the package.json and package-lock.json to the working directory 9 | COPY package.json package-lock.json ./ 10 | 11 | # Install the dependencies 12 | RUN npm install 13 | 14 | # Copy the entire project to the working directory 15 | COPY . . 16 | 17 | # Build the project 18 | RUN npm run build 19 | 20 | # Use a smaller Node.js image for the final output 21 | FROM node:18-alpine 22 | 23 | # Set the working directory 24 | WORKDIR /app 25 | 26 | # Copy the build output and package files from the builder stage 27 | COPY --from=builder /app/build /app/build 28 | COPY --from=builder /app/package.json /app/package.json 29 | COPY --from=builder /app/package-lock.json /app/package-lock.json 30 | 31 | # Install only production dependencies 32 | RUN npm ci --omit=dev 33 | 34 | # Set the entrypoint command 35 | ENTRYPOINT ["node", "build/index.js"] -------------------------------------------------------------------------------- /src/evals/evals.ts: -------------------------------------------------------------------------------- 1 | //evals.ts 2 | 3 | import { EvalConfig } from 'mcp-evals'; 4 | import { openai } from "@ai-sdk/openai"; 5 | import { grade, EvalFunction } from "mcp-evals"; 6 | 7 | const setGithubTokenEval: EvalFunction = { 8 | name: 'set-github-token Tool Evaluation', 9 | description: 'Evaluates if the tool can successfully set the GitHub Personal Access Token', 10 | run: async () => { 11 | const result = await grade(openai("gpt-4"), "Please set my GitHub personal access token to ghp_abc123"); 12 | return JSON.parse(result); 13 | } 14 | }; 15 | 16 | const mapGithubRepoEval: EvalFunction = { 17 | name: "map-github-repo Evaluation", 18 | description: "Evaluates the correctness of mapping a GitHub repository structure and providing summary information", 19 | run: async () => { 20 | const result = await grade(openai("gpt-4"), "Map the structure of the GitHub repository at https://github.com/microsoft/vscode and provide summary information."); 21 | return JSON.parse(result); 22 | } 23 | }; 24 | 25 | const config: EvalConfig = { 26 | model: openai("gpt-4"), 27 | evals: [setGithubTokenEval, mapGithubRepoEval] 28 | }; 29 | 30 | export default config; 31 | 32 | export const evals = [setGithubTokenEval, mapGithubRepoEval]; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![MseeP.ai Security Assessment Badge](https://mseep.net/pr/dazeb-mcp-github-mapper-badge.png)](https://mseep.ai/app/dazeb-mcp-github-mapper) 2 | 3 | # GitHub Mapper MCP Server 4 | 5 | [![smithery badge](https://smithery.ai/badge/github-mapper-mcp-server)](https://smithery.ai/server/github-mapper-mcp-server) 6 | 7 | GitHub Mapper is a Model Context Protocol (MCP) server that provides tools for mapping and analyzing GitHub repositories. It allows users to set a GitHub Personal Access Token and retrieve detailed information about a specified repository, including its structure and summary statistics. 8 | 9 | ## Features 10 | 11 | - Set GitHub Personal Access Token for authentication 12 | - Map and analyze GitHub repository structure 13 | - Retrieve repository summary information (stars, forks, language, etc.) 14 | - Provide a detailed repository file structure 15 | 16 | ## Prerequisites 17 | 18 | - Node.js (v18.0.0 or later recommended) 19 | - npm (comes with Node.js) 20 | - A GitHub Personal Access Token with appropriate permissions 21 | 22 | ## Installation 23 | 24 | ### Installing via Smithery 25 | 26 | To install GitHub Mapper for Claude Desktop automatically via [Smithery](https://smithery.ai/server/github-mapper-mcp-server): 27 | 28 | ```bash 29 | npx -y @smithery/cli install github-mapper-mcp-server --client claude 30 | ``` 31 | 32 | ### Manual Installation 33 | 1. Clone the repository: 34 | ``` 35 | git clone https://github.com/your-username/github-mapper-mcp-server.git 36 | cd github-mapper-mcp-server 37 | ``` 38 | 39 | 2. Install dependencies: 40 | ``` 41 | npm install 42 | ``` 43 | 44 | 3. Build the project: 45 | ``` 46 | npm run build 47 | ``` 48 | 49 | ## Usage 50 | 51 | 1. Start the server: 52 | ``` 53 | npm start 54 | ``` 55 | 56 | 2. The server will run on stdio, allowing it to communicate with MCP clients. 57 | 58 | ## Available Tools 59 | 60 | ### 1. `set-github-token` 61 | 62 | Sets the GitHub Personal Access Token for authentication. 63 | 64 | - Create your Personal Access Token [here](https://github.com/settings/tokens/). Choose Tokens (classic). Scopes: repo 65 | ![image](https://github.com/user-attachments/assets/08b277a5-f121-4204-acee-47871f2d3bac) 66 | 67 | Example, in your IDE or Claude Desktop: 68 | ``` 69 | Please set-github-token to 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 70 | ``` 71 | 72 | ### 2. `map-github-repo` 73 | 74 | Maps a GitHub repository structure and provides summary information. 75 | 76 | Example: 77 | ``` 78 | Please map-github-repo https://github.com/dazeb/MCP-Github-Mapper 79 | ``` 80 | 81 | ## Manual install in Cline or Roo-Cline MCP Client: 82 | ```json 83 | { 84 | "mcpServers": { 85 | "github-mapper": { 86 | "command": "node", 87 | "args": ["/home/user/Documents/Cline/MCP/github-mapper/build/index.js"] 88 | } 89 | } 90 | } 91 | ``` 92 | 93 | ## Example Output 94 | 95 | ``` 96 | Repository Analysis Summary: 97 | 98 | Name: Hello-World 99 | Description: My first repository on GitHub! 100 | Stars: 1234 101 | Forks: 567 102 | Primary Language: JavaScript 103 | Created: 2023-01-01 104 | Last Updated: 2023-06-15 105 | 106 | Repository Structure: 107 | 108 | { 109 | "src": { 110 | "components": { 111 | "Header.js": null, 112 | "Footer.js": null 113 | }, 114 | "pages": { 115 | "index.js": null, 116 | "about.js": null 117 | }, 118 | "styles": { 119 | "global.css": null 120 | } 121 | }, 122 | "public": { 123 | "images": { 124 | "logo.png": null 125 | }, 126 | "favicon.ico": null 127 | }, 128 | "package.json": null, 129 | "README.md": null 130 | } 131 | ``` 132 | ## Images 133 | ![image](https://github.com/user-attachments/assets/a816314a-57aa-4674-a1eb-7b345184f5e6) 134 | 135 | 136 | 137 | ## Running evals 138 | 139 | The evals package loads an mcp client that then runs the index.ts file, so there is no need to rebuild between tests. You can load environment variables by prefixing the npx command. Full documentation can be found [here](https://www.mcpevals.io/docs). 140 | 141 | ```bash 142 | OPENAI_API_KEY=your-key npx mcp-eval src/evals/evals.ts src/index.ts 143 | ``` 144 | ## Error Handling 145 | 146 | - If the GitHub token is not set, you'll receive an error message prompting you to use the `set-github-token` tool first. 147 | - Invalid GitHub URLs or repository paths will result in appropriate error messages. 148 | 149 | ## Contributing 150 | 151 | Contributions are welcome! Please feel free to submit a Pull Request. 152 | 153 | ## License 154 | 155 | This project is licensed under the MIT License. 156 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { Server } from "@modelcontextprotocol/sdk/server/index.js"; 2 | import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; 3 | import { 4 | CallToolRequestSchema, 5 | ListToolsRequestSchema, 6 | } from "@modelcontextprotocol/sdk/types.js"; 7 | import { Octokit } from "@octokit/rest"; 8 | 9 | let githubToken: string | null = null; 10 | let octokit: Octokit | null = null; 11 | 12 | const server = new Server( 13 | { 14 | name: "github-mapper-mcp-server", 15 | version: "1.0.0", 16 | }, 17 | { 18 | capabilities: { 19 | tools: {}, 20 | }, 21 | } 22 | ); 23 | 24 | // List available tools 25 | server.setRequestHandler(ListToolsRequestSchema, async () => { 26 | return { 27 | tools: [ 28 | { 29 | name: "set-github-token", 30 | description: "Set the GitHub Personal Access Token for authentication", 31 | inputSchema: { 32 | type: "object", 33 | properties: { 34 | token: { 35 | type: "string", 36 | description: "GitHub Personal Access Token", 37 | }, 38 | }, 39 | required: ["token"], 40 | }, 41 | }, 42 | { 43 | name: "map-github-repo", 44 | description: "Map a GitHub repository structure and provide summary information", 45 | inputSchema: { 46 | type: "object", 47 | properties: { 48 | repoUrl: { 49 | type: "string", 50 | description: "URL of the GitHub repository (e.g., https://github.com/username/repo)", 51 | }, 52 | }, 53 | required: ["repoUrl"], 54 | }, 55 | }, 56 | ], 57 | }; 58 | }); 59 | 60 | // Handle tool execution 61 | server.setRequestHandler(CallToolRequestSchema, async (request) => { 62 | const { name, arguments: args } = request.params; 63 | 64 | if (name === "set-github-token") { 65 | const { token } = args as { token: string }; 66 | githubToken = token; 67 | octokit = new Octokit({ auth: githubToken }); 68 | return { 69 | content: [ 70 | { 71 | type: "text", 72 | text: "GitHub Personal Access Token has been set successfully.", 73 | }, 74 | ], 75 | }; 76 | } else if (name === "map-github-repo") { 77 | if (!githubToken || !octokit) { 78 | throw new Error("GitHub token not set. Please use the set-github-token tool first."); 79 | } 80 | 81 | const { repoUrl } = args as { repoUrl: string }; 82 | 83 | try { 84 | const { owner, repo } = parseGitHubUrl(repoUrl); 85 | const repoInfo = await getRepoInfo(owner, repo); 86 | const repoStructure = await getRepoStructure(owner, repo); 87 | const formattedOutput = formatOutput(repoInfo, repoStructure); 88 | 89 | return { 90 | content: [ 91 | { 92 | type: "text", 93 | text: formattedOutput, 94 | }, 95 | ], 96 | }; 97 | } catch (error: unknown) { 98 | console.error("Error mapping repository:", error); 99 | const errorMessage = error instanceof Error ? error.message : 'An unknown error occurred'; 100 | return { 101 | content: [ 102 | { 103 | type: "text", 104 | text: `Error mapping repository: ${errorMessage}`, 105 | }, 106 | ], 107 | }; 108 | } 109 | } else { 110 | throw new Error(`Unknown tool: ${name}`); 111 | } 112 | }); 113 | 114 | function parseGitHubUrl(url: string): { owner: string; repo: string } { 115 | const match = url.match(/github\.com\/([^\/]+)\/([^\/]+)/); 116 | if (!match) { 117 | throw new Error("Invalid GitHub URL format"); 118 | } 119 | return { owner: match[1], repo: match[2] }; 120 | } 121 | 122 | async function getRepoInfo(owner: string, repo: string) { 123 | if (!octokit) { 124 | throw new Error("GitHub client not initialized"); 125 | } 126 | const { data } = await octokit.repos.get({ owner, repo }); 127 | return { 128 | name: data.name, 129 | description: data.description, 130 | stars: data.stargazers_count, 131 | forks: data.forks_count, 132 | language: data.language, 133 | createdAt: data.created_at, 134 | updatedAt: data.updated_at, 135 | }; 136 | } 137 | 138 | async function getRepoStructure(owner: string, repo: string, path = "") { 139 | if (!octokit) { 140 | throw new Error("GitHub client not initialized"); 141 | } 142 | const { data } = await octokit.repos.getContent({ owner, repo, path }); 143 | 144 | if (!Array.isArray(data)) { 145 | throw new Error("Unable to retrieve repository structure"); 146 | } 147 | 148 | const structure: { [key: string]: any } = {}; 149 | 150 | for (const item of data) { 151 | if (item.type === "file") { 152 | structure[item.name] = null; 153 | } else if (item.type === "dir") { 154 | structure[item.name] = await getRepoStructure(owner, repo, item.path); 155 | } 156 | } 157 | 158 | return structure; 159 | } 160 | 161 | function formatOutput(repoInfo: any, repoStructure: any): string { 162 | const structureString = JSON.stringify(repoStructure, null, 2); 163 | 164 | return ` 165 | Repository Analysis Summary: 166 | 167 | Name: ${repoInfo.name} 168 | Description: ${repoInfo.description || "No description provided"} 169 | Stars: ${repoInfo.stars} 170 | Forks: ${repoInfo.forks} 171 | Primary Language: ${repoInfo.language} 172 | Created: ${new Date(repoInfo.createdAt).toLocaleDateString()} 173 | Last Updated: ${new Date(repoInfo.updatedAt).toLocaleDateString()} 174 | 175 | Repository Structure: 176 | 177 | ${structureString} 178 | `.trim(); 179 | } 180 | 181 | // Start the server 182 | async function main() { 183 | const transport = new StdioServerTransport(); 184 | await server.connect(transport); 185 | console.error("GitHub Mapper MCP Server running on stdio"); 186 | } 187 | 188 | main().catch((error) => { 189 | console.error("Fatal error in main():", error); 190 | process.exit(1); 191 | }); 192 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | overrides: 8 | '@octokit/request': 9.2.1 9 | '@octokit/request-error': 6.1.7 10 | '@octokit/plugin-paginate-rest': 11.4.1 11 | '@octokit/endpoint': 10.1.3 12 | '@octokit/core': 6.1.5 13 | 14 | importers: 15 | 16 | .: 17 | dependencies: 18 | '@modelcontextprotocol/sdk': 19 | specifier: latest 20 | version: 1.11.4 21 | '@octokit/rest': 22 | specifier: ^20.0.2 23 | version: 20.1.2 24 | mcp-evals: 25 | specifier: ^1.0.18 26 | version: 1.0.18(react@19.1.0)(zod@3.24.4) 27 | devDependencies: 28 | '@types/node': 29 | specifier: ^18.0.0 30 | version: 18.19.100 31 | typescript: 32 | specifier: ^4.9.5 33 | version: 4.9.5 34 | 35 | packages: 36 | 37 | '@actions/core@1.11.1': 38 | resolution: {integrity: sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==} 39 | 40 | '@actions/exec@1.1.1': 41 | resolution: {integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==} 42 | 43 | '@actions/http-client@2.2.3': 44 | resolution: {integrity: sha512-mx8hyJi/hjFvbPokCg4uRd4ZX78t+YyRPtnKWwIl+RzNaVuFpQHfmlGVfsKEJN8LwTCvL+DfVgAM04XaHkm6bA==} 45 | 46 | '@actions/io@1.1.3': 47 | resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==} 48 | 49 | '@ai-sdk/openai@1.3.22': 50 | resolution: {integrity: sha512-QwA+2EkG0QyjVR+7h6FE7iOu2ivNqAVMm9UJZkVxxTk5OIq5fFJDTEI/zICEMuHImTTXR2JjsL6EirJ28Jc4cw==} 51 | engines: {node: '>=18'} 52 | peerDependencies: 53 | zod: ^3.0.0 54 | 55 | '@ai-sdk/provider-utils@2.2.8': 56 | resolution: {integrity: sha512-fqhG+4sCVv8x7nFzYnFo19ryhAa3w096Kmc3hWxMQfW/TubPOmt3A6tYZhl4mUfQWWQMsuSkLrtjlWuXBVSGQA==} 57 | engines: {node: '>=18'} 58 | peerDependencies: 59 | zod: ^3.23.8 60 | 61 | '@ai-sdk/provider@1.1.3': 62 | resolution: {integrity: sha512-qZMxYJ0qqX/RfnuIaab+zp8UAeJn/ygXXAffR5I4N0n1IrvA6qBsjc8hXLmBiMV2zoXlifkacF7sEFnYnjBcqg==} 63 | engines: {node: '>=18'} 64 | 65 | '@ai-sdk/react@1.2.12': 66 | resolution: {integrity: sha512-jK1IZZ22evPZoQW3vlkZ7wvjYGYF+tRBKXtrcolduIkQ/m/sOAVcVeVDUDvh1T91xCnWCdUGCPZg2avZ90mv3g==} 67 | engines: {node: '>=18'} 68 | peerDependencies: 69 | react: ^18 || ^19 || ^19.0.0-rc 70 | zod: ^3.23.8 71 | peerDependenciesMeta: 72 | zod: 73 | optional: true 74 | 75 | '@ai-sdk/ui-utils@1.2.11': 76 | resolution: {integrity: sha512-3zcwCc8ezzFlwp3ZD15wAPjf2Au4s3vAbKsXQVyhxODHcmu0iyPO2Eua6D/vicq/AUm/BAo60r97O6HU+EI0+w==} 77 | engines: {node: '>=18'} 78 | peerDependencies: 79 | zod: ^3.23.8 80 | 81 | '@anthropic-ai/sdk@0.8.1': 82 | resolution: {integrity: sha512-59etePenCizVx1O8Qhi1T1ruE04ISfNzCnyhZNcsss1QljsLmYS83jttarMNEvGYcsUF7rwxw2lzcC3Zbxao7g==} 83 | 84 | '@esbuild/aix-ppc64@0.25.4': 85 | resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==} 86 | engines: {node: '>=18'} 87 | cpu: [ppc64] 88 | os: [aix] 89 | 90 | '@esbuild/android-arm64@0.25.4': 91 | resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==} 92 | engines: {node: '>=18'} 93 | cpu: [arm64] 94 | os: [android] 95 | 96 | '@esbuild/android-arm@0.25.4': 97 | resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==} 98 | engines: {node: '>=18'} 99 | cpu: [arm] 100 | os: [android] 101 | 102 | '@esbuild/android-x64@0.25.4': 103 | resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==} 104 | engines: {node: '>=18'} 105 | cpu: [x64] 106 | os: [android] 107 | 108 | '@esbuild/darwin-arm64@0.25.4': 109 | resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==} 110 | engines: {node: '>=18'} 111 | cpu: [arm64] 112 | os: [darwin] 113 | 114 | '@esbuild/darwin-x64@0.25.4': 115 | resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==} 116 | engines: {node: '>=18'} 117 | cpu: [x64] 118 | os: [darwin] 119 | 120 | '@esbuild/freebsd-arm64@0.25.4': 121 | resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==} 122 | engines: {node: '>=18'} 123 | cpu: [arm64] 124 | os: [freebsd] 125 | 126 | '@esbuild/freebsd-x64@0.25.4': 127 | resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==} 128 | engines: {node: '>=18'} 129 | cpu: [x64] 130 | os: [freebsd] 131 | 132 | '@esbuild/linux-arm64@0.25.4': 133 | resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==} 134 | engines: {node: '>=18'} 135 | cpu: [arm64] 136 | os: [linux] 137 | 138 | '@esbuild/linux-arm@0.25.4': 139 | resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==} 140 | engines: {node: '>=18'} 141 | cpu: [arm] 142 | os: [linux] 143 | 144 | '@esbuild/linux-ia32@0.25.4': 145 | resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==} 146 | engines: {node: '>=18'} 147 | cpu: [ia32] 148 | os: [linux] 149 | 150 | '@esbuild/linux-loong64@0.25.4': 151 | resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==} 152 | engines: {node: '>=18'} 153 | cpu: [loong64] 154 | os: [linux] 155 | 156 | '@esbuild/linux-mips64el@0.25.4': 157 | resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==} 158 | engines: {node: '>=18'} 159 | cpu: [mips64el] 160 | os: [linux] 161 | 162 | '@esbuild/linux-ppc64@0.25.4': 163 | resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==} 164 | engines: {node: '>=18'} 165 | cpu: [ppc64] 166 | os: [linux] 167 | 168 | '@esbuild/linux-riscv64@0.25.4': 169 | resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==} 170 | engines: {node: '>=18'} 171 | cpu: [riscv64] 172 | os: [linux] 173 | 174 | '@esbuild/linux-s390x@0.25.4': 175 | resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==} 176 | engines: {node: '>=18'} 177 | cpu: [s390x] 178 | os: [linux] 179 | 180 | '@esbuild/linux-x64@0.25.4': 181 | resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==} 182 | engines: {node: '>=18'} 183 | cpu: [x64] 184 | os: [linux] 185 | 186 | '@esbuild/netbsd-arm64@0.25.4': 187 | resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==} 188 | engines: {node: '>=18'} 189 | cpu: [arm64] 190 | os: [netbsd] 191 | 192 | '@esbuild/netbsd-x64@0.25.4': 193 | resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==} 194 | engines: {node: '>=18'} 195 | cpu: [x64] 196 | os: [netbsd] 197 | 198 | '@esbuild/openbsd-arm64@0.25.4': 199 | resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==} 200 | engines: {node: '>=18'} 201 | cpu: [arm64] 202 | os: [openbsd] 203 | 204 | '@esbuild/openbsd-x64@0.25.4': 205 | resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==} 206 | engines: {node: '>=18'} 207 | cpu: [x64] 208 | os: [openbsd] 209 | 210 | '@esbuild/sunos-x64@0.25.4': 211 | resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==} 212 | engines: {node: '>=18'} 213 | cpu: [x64] 214 | os: [sunos] 215 | 216 | '@esbuild/win32-arm64@0.25.4': 217 | resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==} 218 | engines: {node: '>=18'} 219 | cpu: [arm64] 220 | os: [win32] 221 | 222 | '@esbuild/win32-ia32@0.25.4': 223 | resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==} 224 | engines: {node: '>=18'} 225 | cpu: [ia32] 226 | os: [win32] 227 | 228 | '@esbuild/win32-x64@0.25.4': 229 | resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==} 230 | engines: {node: '>=18'} 231 | cpu: [x64] 232 | os: [win32] 233 | 234 | '@fastify/busboy@2.1.1': 235 | resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} 236 | engines: {node: '>=14'} 237 | 238 | '@modelcontextprotocol/sdk@1.11.4': 239 | resolution: {integrity: sha512-OTbhe5slIjiOtLxXhKalkKGhIQrwvhgCDs/C2r8kcBTy5HR/g43aDQU0l7r8O0VGbJPTNJvDc7ZdQMdQDJXmbw==} 240 | engines: {node: '>=18'} 241 | 242 | '@octokit/auth-token@5.1.2': 243 | resolution: {integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==} 244 | engines: {node: '>= 18'} 245 | 246 | '@octokit/core@6.1.5': 247 | resolution: {integrity: sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==} 248 | engines: {node: '>= 18'} 249 | 250 | '@octokit/endpoint@10.1.3': 251 | resolution: {integrity: sha512-nBRBMpKPhQUxCsQQeW+rCJ/OPSMcj3g0nfHn01zGYZXuNDvvXudF/TYY6APj5THlurerpFN4a/dQAIAaM6BYhA==} 252 | engines: {node: '>= 18'} 253 | 254 | '@octokit/graphql@8.2.2': 255 | resolution: {integrity: sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==} 256 | engines: {node: '>= 18'} 257 | 258 | '@octokit/openapi-types@24.2.0': 259 | resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==} 260 | 261 | '@octokit/openapi-types@25.0.0': 262 | resolution: {integrity: sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==} 263 | 264 | '@octokit/plugin-paginate-rest@11.4.1': 265 | resolution: {integrity: sha512-GHQGdIv6Y/I+QzYbQWLVvL6bZhDhCJcwnL381vnX82lpJy4brA3/jRwYN5Lsmc57UhjBG9vH1KvyxgqLYZZGPQ==} 266 | engines: {node: '>= 18'} 267 | peerDependencies: 268 | '@octokit/core': 6.1.5 269 | 270 | '@octokit/plugin-request-log@4.0.1': 271 | resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==} 272 | engines: {node: '>= 18'} 273 | peerDependencies: 274 | '@octokit/core': 6.1.5 275 | 276 | '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1': 277 | resolution: {integrity: sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ==} 278 | engines: {node: '>= 18'} 279 | peerDependencies: 280 | '@octokit/core': 6.1.5 281 | 282 | '@octokit/request-error@6.1.7': 283 | resolution: {integrity: sha512-69NIppAwaauwZv6aOzb+VVLwt+0havz9GT5YplkeJv7fG7a40qpLt/yZKyiDxAhgz0EtgNdNcb96Z0u+Zyuy2g==} 284 | engines: {node: '>= 18'} 285 | 286 | '@octokit/request@9.2.1': 287 | resolution: {integrity: sha512-TqHLIdw1KFvx8WvLc7Jv94r3C3+AzKY2FWq7c20zvrxmCIa6MCVkLCE/826NCXnml3LFJjLsidDh1BhMaGEDQw==} 288 | engines: {node: '>= 18'} 289 | 290 | '@octokit/rest@20.1.2': 291 | resolution: {integrity: sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA==} 292 | engines: {node: '>= 18'} 293 | 294 | '@octokit/types@13.10.0': 295 | resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==} 296 | 297 | '@octokit/types@14.0.0': 298 | resolution: {integrity: sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==} 299 | 300 | '@opentelemetry/api@1.9.0': 301 | resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} 302 | engines: {node: '>=8.0.0'} 303 | 304 | '@types/diff-match-patch@1.0.36': 305 | resolution: {integrity: sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==} 306 | 307 | '@types/node-fetch@2.6.12': 308 | resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==} 309 | 310 | '@types/node@18.19.100': 311 | resolution: {integrity: sha512-ojmMP8SZBKprc3qGrGk8Ujpo80AXkrP7G2tOT4VWr5jlr5DHjsJF+emXJz+Wm0glmy4Js62oKMdZZ6B9Y+tEcA==} 312 | 313 | abort-controller@3.0.0: 314 | resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 315 | engines: {node: '>=6.5'} 316 | 317 | accepts@2.0.0: 318 | resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} 319 | engines: {node: '>= 0.6'} 320 | 321 | agentkeepalive@4.6.0: 322 | resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==} 323 | engines: {node: '>= 8.0.0'} 324 | 325 | ai@4.3.16: 326 | resolution: {integrity: sha512-KUDwlThJ5tr2Vw0A1ZkbDKNME3wzWhuVfAOwIvFUzl1TPVDFAXDFTXio3p+jaKneB+dKNCvFFlolYmmgHttG1g==} 327 | engines: {node: '>=18'} 328 | peerDependencies: 329 | react: ^18 || ^19 || ^19.0.0-rc 330 | zod: ^3.23.8 331 | peerDependenciesMeta: 332 | react: 333 | optional: true 334 | 335 | ajv@8.17.1: 336 | resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} 337 | 338 | ansi-styles@4.3.0: 339 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 340 | engines: {node: '>=8'} 341 | 342 | asynckit@0.4.0: 343 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 344 | 345 | base-64@0.1.0: 346 | resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==} 347 | 348 | before-after-hook@3.0.2: 349 | resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==} 350 | 351 | body-parser@2.2.0: 352 | resolution: {integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==} 353 | engines: {node: '>=18'} 354 | 355 | bytes@3.1.2: 356 | resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 357 | engines: {node: '>= 0.8'} 358 | 359 | call-bind-apply-helpers@1.0.2: 360 | resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} 361 | engines: {node: '>= 0.4'} 362 | 363 | call-bound@1.0.4: 364 | resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} 365 | engines: {node: '>= 0.4'} 366 | 367 | chalk@4.1.2: 368 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 369 | engines: {node: '>=10'} 370 | 371 | chalk@5.4.1: 372 | resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 373 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 374 | 375 | charenc@0.0.2: 376 | resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} 377 | 378 | color-convert@2.0.1: 379 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 380 | engines: {node: '>=7.0.0'} 381 | 382 | color-name@1.1.4: 383 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 384 | 385 | combined-stream@1.0.8: 386 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 387 | engines: {node: '>= 0.8'} 388 | 389 | content-disposition@1.0.0: 390 | resolution: {integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==} 391 | engines: {node: '>= 0.6'} 392 | 393 | content-type@1.0.5: 394 | resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 395 | engines: {node: '>= 0.6'} 396 | 397 | cookie-signature@1.2.2: 398 | resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} 399 | engines: {node: '>=6.6.0'} 400 | 401 | cookie@0.7.2: 402 | resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 403 | engines: {node: '>= 0.6'} 404 | 405 | cors@2.8.5: 406 | resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} 407 | engines: {node: '>= 0.10'} 408 | 409 | cross-spawn@7.0.6: 410 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 411 | engines: {node: '>= 8'} 412 | 413 | crypt@0.0.2: 414 | resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} 415 | 416 | debug@4.4.1: 417 | resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} 418 | engines: {node: '>=6.0'} 419 | peerDependencies: 420 | supports-color: '*' 421 | peerDependenciesMeta: 422 | supports-color: 423 | optional: true 424 | 425 | delayed-stream@1.0.0: 426 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} 427 | engines: {node: '>=0.4.0'} 428 | 429 | depd@2.0.0: 430 | resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 431 | engines: {node: '>= 0.8'} 432 | 433 | dequal@2.0.3: 434 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 435 | engines: {node: '>=6'} 436 | 437 | diff-match-patch@1.0.5: 438 | resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} 439 | 440 | digest-fetch@1.3.0: 441 | resolution: {integrity: sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA==} 442 | 443 | dotenv@16.5.0: 444 | resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==} 445 | engines: {node: '>=12'} 446 | 447 | dunder-proto@1.0.1: 448 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 449 | engines: {node: '>= 0.4'} 450 | 451 | ee-first@1.1.1: 452 | resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 453 | 454 | encodeurl@2.0.0: 455 | resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 456 | engines: {node: '>= 0.8'} 457 | 458 | es-define-property@1.0.1: 459 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 460 | engines: {node: '>= 0.4'} 461 | 462 | es-errors@1.3.0: 463 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 464 | engines: {node: '>= 0.4'} 465 | 466 | es-object-atoms@1.1.1: 467 | resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 468 | engines: {node: '>= 0.4'} 469 | 470 | es-set-tostringtag@2.1.0: 471 | resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} 472 | engines: {node: '>= 0.4'} 473 | 474 | esbuild@0.25.4: 475 | resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==} 476 | engines: {node: '>=18'} 477 | hasBin: true 478 | 479 | escape-html@1.0.3: 480 | resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 481 | 482 | etag@1.8.1: 483 | resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 484 | engines: {node: '>= 0.6'} 485 | 486 | event-target-shim@5.0.1: 487 | resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 488 | engines: {node: '>=6'} 489 | 490 | eventsource-parser@3.0.2: 491 | resolution: {integrity: sha512-6RxOBZ/cYgd8usLwsEl+EC09Au/9BcmCKYF2/xbml6DNczf7nv0MQb+7BA2F+li6//I+28VNlQR37XfQtcAJuA==} 492 | engines: {node: '>=18.0.0'} 493 | 494 | eventsource@3.0.7: 495 | resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==} 496 | engines: {node: '>=18.0.0'} 497 | 498 | express-rate-limit@7.5.0: 499 | resolution: {integrity: sha512-eB5zbQh5h+VenMPM3fh+nw1YExi5nMr6HUCR62ELSP11huvxm/Uir1H1QEyTkk5QX6A58pX6NmaTMceKZ0Eodg==} 500 | engines: {node: '>= 16'} 501 | peerDependencies: 502 | express: ^4.11 || 5 || ^5.0.0-beta.1 503 | 504 | express@5.1.0: 505 | resolution: {integrity: sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==} 506 | engines: {node: '>= 18'} 507 | 508 | fast-content-type-parse@2.0.1: 509 | resolution: {integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==} 510 | 511 | fast-deep-equal@3.1.3: 512 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 513 | 514 | fast-uri@3.0.6: 515 | resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} 516 | 517 | finalhandler@2.1.0: 518 | resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==} 519 | engines: {node: '>= 0.8'} 520 | 521 | form-data-encoder@1.7.2: 522 | resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==} 523 | 524 | form-data@4.0.2: 525 | resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==} 526 | engines: {node: '>= 6'} 527 | 528 | formdata-node@4.4.1: 529 | resolution: {integrity: sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==} 530 | engines: {node: '>= 12.20'} 531 | 532 | forwarded@0.2.0: 533 | resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 534 | engines: {node: '>= 0.6'} 535 | 536 | fresh@2.0.0: 537 | resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} 538 | engines: {node: '>= 0.8'} 539 | 540 | fsevents@2.3.3: 541 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 542 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 543 | os: [darwin] 544 | 545 | function-bind@1.1.2: 546 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 547 | 548 | get-intrinsic@1.3.0: 549 | resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} 550 | engines: {node: '>= 0.4'} 551 | 552 | get-proto@1.0.1: 553 | resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 554 | engines: {node: '>= 0.4'} 555 | 556 | get-tsconfig@4.10.0: 557 | resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} 558 | 559 | gopd@1.2.0: 560 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 561 | engines: {node: '>= 0.4'} 562 | 563 | has-flag@4.0.0: 564 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 565 | engines: {node: '>=8'} 566 | 567 | has-symbols@1.1.0: 568 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 569 | engines: {node: '>= 0.4'} 570 | 571 | has-tostringtag@1.0.2: 572 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 573 | engines: {node: '>= 0.4'} 574 | 575 | hasown@2.0.2: 576 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 577 | engines: {node: '>= 0.4'} 578 | 579 | http-errors@2.0.0: 580 | resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 581 | engines: {node: '>= 0.8'} 582 | 583 | humanize-ms@1.2.1: 584 | resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} 585 | 586 | iconv-lite@0.6.3: 587 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 588 | engines: {node: '>=0.10.0'} 589 | 590 | inherits@2.0.4: 591 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 592 | 593 | ipaddr.js@1.9.1: 594 | resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 595 | engines: {node: '>= 0.10'} 596 | 597 | is-buffer@1.1.6: 598 | resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} 599 | 600 | is-promise@4.0.0: 601 | resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} 602 | 603 | isexe@2.0.0: 604 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 605 | 606 | json-schema-traverse@1.0.0: 607 | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 608 | 609 | json-schema@0.4.0: 610 | resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} 611 | 612 | jsondiffpatch@0.6.0: 613 | resolution: {integrity: sha512-3QItJOXp2AP1uv7waBkao5nCvhEv+QmJAd38Ybq7wNI74Q+BBmnLn4EDKz6yI9xGAIQoUF87qHt+kc1IVxB4zQ==} 614 | engines: {node: ^18.0.0 || >=20.0.0} 615 | hasBin: true 616 | 617 | math-intrinsics@1.1.0: 618 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 619 | engines: {node: '>= 0.4'} 620 | 621 | mcp-evals@1.0.18: 622 | resolution: {integrity: sha512-khDcEG0XWshdCRirqLXogNoDLmzFA86QyuKoi5ioXsbeRZ3XQra8Zsg7vD+C0K5vwkFIoB1vTuPjHEHMhdLFtQ==} 623 | hasBin: true 624 | peerDependencies: 625 | react: ^19.1.0 626 | 627 | md5@2.3.0: 628 | resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} 629 | 630 | media-typer@1.1.0: 631 | resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} 632 | engines: {node: '>= 0.8'} 633 | 634 | merge-descriptors@2.0.0: 635 | resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} 636 | engines: {node: '>=18'} 637 | 638 | mime-db@1.52.0: 639 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 640 | engines: {node: '>= 0.6'} 641 | 642 | mime-db@1.54.0: 643 | resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} 644 | engines: {node: '>= 0.6'} 645 | 646 | mime-types@2.1.35: 647 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 648 | engines: {node: '>= 0.6'} 649 | 650 | mime-types@3.0.1: 651 | resolution: {integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==} 652 | engines: {node: '>= 0.6'} 653 | 654 | ms@2.1.3: 655 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 656 | 657 | nanoid@3.3.11: 658 | resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 659 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 660 | hasBin: true 661 | 662 | negotiator@1.0.0: 663 | resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} 664 | engines: {node: '>= 0.6'} 665 | 666 | node-domexception@1.0.0: 667 | resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} 668 | engines: {node: '>=10.5.0'} 669 | deprecated: Use your platform's native DOMException instead 670 | 671 | node-fetch@2.7.0: 672 | resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 673 | engines: {node: 4.x || >=6.0.0} 674 | peerDependencies: 675 | encoding: ^0.1.0 676 | peerDependenciesMeta: 677 | encoding: 678 | optional: true 679 | 680 | object-assign@4.1.1: 681 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 682 | engines: {node: '>=0.10.0'} 683 | 684 | object-inspect@1.13.4: 685 | resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 686 | engines: {node: '>= 0.4'} 687 | 688 | on-finished@2.4.1: 689 | resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 690 | engines: {node: '>= 0.8'} 691 | 692 | once@1.4.0: 693 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 694 | 695 | openai@4.100.0: 696 | resolution: {integrity: sha512-9soq/wukv3utxcuD7TWFqKdKp0INWdeyhUCvxwrne5KwnxaCp4eHL4GdT/tMFhYolxgNhxFzg5GFwM331Z5CZg==} 697 | hasBin: true 698 | peerDependencies: 699 | ws: ^8.18.0 700 | zod: ^3.23.8 701 | peerDependenciesMeta: 702 | ws: 703 | optional: true 704 | zod: 705 | optional: true 706 | 707 | parseurl@1.3.3: 708 | resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 709 | engines: {node: '>= 0.8'} 710 | 711 | path-key@3.1.1: 712 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 713 | engines: {node: '>=8'} 714 | 715 | path-to-regexp@8.2.0: 716 | resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==} 717 | engines: {node: '>=16'} 718 | 719 | pkce-challenge@5.0.0: 720 | resolution: {integrity: sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ==} 721 | engines: {node: '>=16.20.0'} 722 | 723 | proxy-addr@2.0.7: 724 | resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 725 | engines: {node: '>= 0.10'} 726 | 727 | qs@6.14.0: 728 | resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} 729 | engines: {node: '>=0.6'} 730 | 731 | range-parser@1.2.1: 732 | resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 733 | engines: {node: '>= 0.6'} 734 | 735 | raw-body@3.0.0: 736 | resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==} 737 | engines: {node: '>= 0.8'} 738 | 739 | react@19.1.0: 740 | resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} 741 | engines: {node: '>=0.10.0'} 742 | 743 | require-from-string@2.0.2: 744 | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 745 | engines: {node: '>=0.10.0'} 746 | 747 | resolve-pkg-maps@1.0.0: 748 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 749 | 750 | router@2.2.0: 751 | resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} 752 | engines: {node: '>= 18'} 753 | 754 | safe-buffer@5.2.1: 755 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 756 | 757 | safer-buffer@2.1.2: 758 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 759 | 760 | secure-json-parse@2.7.0: 761 | resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} 762 | 763 | send@1.2.0: 764 | resolution: {integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==} 765 | engines: {node: '>= 18'} 766 | 767 | serve-static@2.2.0: 768 | resolution: {integrity: sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==} 769 | engines: {node: '>= 18'} 770 | 771 | setprototypeof@1.2.0: 772 | resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 773 | 774 | shebang-command@2.0.0: 775 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 776 | engines: {node: '>=8'} 777 | 778 | shebang-regex@3.0.0: 779 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 780 | engines: {node: '>=8'} 781 | 782 | side-channel-list@1.0.0: 783 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 784 | engines: {node: '>= 0.4'} 785 | 786 | side-channel-map@1.0.1: 787 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 788 | engines: {node: '>= 0.4'} 789 | 790 | side-channel-weakmap@1.0.2: 791 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 792 | engines: {node: '>= 0.4'} 793 | 794 | side-channel@1.1.0: 795 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 796 | engines: {node: '>= 0.4'} 797 | 798 | statuses@2.0.1: 799 | resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 800 | engines: {node: '>= 0.8'} 801 | 802 | supports-color@7.2.0: 803 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 804 | engines: {node: '>=8'} 805 | 806 | swr@2.3.3: 807 | resolution: {integrity: sha512-dshNvs3ExOqtZ6kJBaAsabhPdHyeY4P2cKwRCniDVifBMoG/SVI7tfLWqPXriVspf2Rg4tPzXJTnwaihIeFw2A==} 808 | peerDependencies: 809 | react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 810 | 811 | throttleit@2.1.0: 812 | resolution: {integrity: sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==} 813 | engines: {node: '>=18'} 814 | 815 | toidentifier@1.0.1: 816 | resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 817 | engines: {node: '>=0.6'} 818 | 819 | tr46@0.0.3: 820 | resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 821 | 822 | tsx@4.19.4: 823 | resolution: {integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==} 824 | engines: {node: '>=18.0.0'} 825 | hasBin: true 826 | 827 | tunnel@0.0.6: 828 | resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} 829 | engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} 830 | 831 | type-is@2.0.1: 832 | resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==} 833 | engines: {node: '>= 0.6'} 834 | 835 | typescript@4.9.5: 836 | resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} 837 | engines: {node: '>=4.2.0'} 838 | hasBin: true 839 | 840 | undici-types@5.26.5: 841 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 842 | 843 | undici@5.29.0: 844 | resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==} 845 | engines: {node: '>=14.0'} 846 | 847 | universal-user-agent@7.0.3: 848 | resolution: {integrity: sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A==} 849 | 850 | unpipe@1.0.0: 851 | resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 852 | engines: {node: '>= 0.8'} 853 | 854 | use-sync-external-store@1.5.0: 855 | resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} 856 | peerDependencies: 857 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 858 | 859 | vary@1.1.2: 860 | resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 861 | engines: {node: '>= 0.8'} 862 | 863 | web-streams-polyfill@3.3.3: 864 | resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} 865 | engines: {node: '>= 8'} 866 | 867 | web-streams-polyfill@4.0.0-beta.3: 868 | resolution: {integrity: sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==} 869 | engines: {node: '>= 14'} 870 | 871 | webidl-conversions@3.0.1: 872 | resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 873 | 874 | whatwg-url@5.0.0: 875 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 876 | 877 | which@2.0.2: 878 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 879 | engines: {node: '>= 8'} 880 | hasBin: true 881 | 882 | wrappy@1.0.2: 883 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 884 | 885 | zod-to-json-schema@3.24.5: 886 | resolution: {integrity: sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==} 887 | peerDependencies: 888 | zod: ^3.24.1 889 | 890 | zod@3.24.4: 891 | resolution: {integrity: sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==} 892 | 893 | snapshots: 894 | 895 | '@actions/core@1.11.1': 896 | dependencies: 897 | '@actions/exec': 1.1.1 898 | '@actions/http-client': 2.2.3 899 | 900 | '@actions/exec@1.1.1': 901 | dependencies: 902 | '@actions/io': 1.1.3 903 | 904 | '@actions/http-client@2.2.3': 905 | dependencies: 906 | tunnel: 0.0.6 907 | undici: 5.29.0 908 | 909 | '@actions/io@1.1.3': {} 910 | 911 | '@ai-sdk/openai@1.3.22(zod@3.24.4)': 912 | dependencies: 913 | '@ai-sdk/provider': 1.1.3 914 | '@ai-sdk/provider-utils': 2.2.8(zod@3.24.4) 915 | zod: 3.24.4 916 | 917 | '@ai-sdk/provider-utils@2.2.8(zod@3.24.4)': 918 | dependencies: 919 | '@ai-sdk/provider': 1.1.3 920 | nanoid: 3.3.11 921 | secure-json-parse: 2.7.0 922 | zod: 3.24.4 923 | 924 | '@ai-sdk/provider@1.1.3': 925 | dependencies: 926 | json-schema: 0.4.0 927 | 928 | '@ai-sdk/react@1.2.12(react@19.1.0)(zod@3.24.4)': 929 | dependencies: 930 | '@ai-sdk/provider-utils': 2.2.8(zod@3.24.4) 931 | '@ai-sdk/ui-utils': 1.2.11(zod@3.24.4) 932 | react: 19.1.0 933 | swr: 2.3.3(react@19.1.0) 934 | throttleit: 2.1.0 935 | optionalDependencies: 936 | zod: 3.24.4 937 | 938 | '@ai-sdk/ui-utils@1.2.11(zod@3.24.4)': 939 | dependencies: 940 | '@ai-sdk/provider': 1.1.3 941 | '@ai-sdk/provider-utils': 2.2.8(zod@3.24.4) 942 | zod: 3.24.4 943 | zod-to-json-schema: 3.24.5(zod@3.24.4) 944 | 945 | '@anthropic-ai/sdk@0.8.1': 946 | dependencies: 947 | '@types/node': 18.19.100 948 | '@types/node-fetch': 2.6.12 949 | abort-controller: 3.0.0 950 | agentkeepalive: 4.6.0 951 | digest-fetch: 1.3.0 952 | form-data-encoder: 1.7.2 953 | formdata-node: 4.4.1 954 | node-fetch: 2.7.0 955 | web-streams-polyfill: 3.3.3 956 | transitivePeerDependencies: 957 | - encoding 958 | 959 | '@esbuild/aix-ppc64@0.25.4': 960 | optional: true 961 | 962 | '@esbuild/android-arm64@0.25.4': 963 | optional: true 964 | 965 | '@esbuild/android-arm@0.25.4': 966 | optional: true 967 | 968 | '@esbuild/android-x64@0.25.4': 969 | optional: true 970 | 971 | '@esbuild/darwin-arm64@0.25.4': 972 | optional: true 973 | 974 | '@esbuild/darwin-x64@0.25.4': 975 | optional: true 976 | 977 | '@esbuild/freebsd-arm64@0.25.4': 978 | optional: true 979 | 980 | '@esbuild/freebsd-x64@0.25.4': 981 | optional: true 982 | 983 | '@esbuild/linux-arm64@0.25.4': 984 | optional: true 985 | 986 | '@esbuild/linux-arm@0.25.4': 987 | optional: true 988 | 989 | '@esbuild/linux-ia32@0.25.4': 990 | optional: true 991 | 992 | '@esbuild/linux-loong64@0.25.4': 993 | optional: true 994 | 995 | '@esbuild/linux-mips64el@0.25.4': 996 | optional: true 997 | 998 | '@esbuild/linux-ppc64@0.25.4': 999 | optional: true 1000 | 1001 | '@esbuild/linux-riscv64@0.25.4': 1002 | optional: true 1003 | 1004 | '@esbuild/linux-s390x@0.25.4': 1005 | optional: true 1006 | 1007 | '@esbuild/linux-x64@0.25.4': 1008 | optional: true 1009 | 1010 | '@esbuild/netbsd-arm64@0.25.4': 1011 | optional: true 1012 | 1013 | '@esbuild/netbsd-x64@0.25.4': 1014 | optional: true 1015 | 1016 | '@esbuild/openbsd-arm64@0.25.4': 1017 | optional: true 1018 | 1019 | '@esbuild/openbsd-x64@0.25.4': 1020 | optional: true 1021 | 1022 | '@esbuild/sunos-x64@0.25.4': 1023 | optional: true 1024 | 1025 | '@esbuild/win32-arm64@0.25.4': 1026 | optional: true 1027 | 1028 | '@esbuild/win32-ia32@0.25.4': 1029 | optional: true 1030 | 1031 | '@esbuild/win32-x64@0.25.4': 1032 | optional: true 1033 | 1034 | '@fastify/busboy@2.1.1': {} 1035 | 1036 | '@modelcontextprotocol/sdk@1.11.4': 1037 | dependencies: 1038 | ajv: 8.17.1 1039 | content-type: 1.0.5 1040 | cors: 2.8.5 1041 | cross-spawn: 7.0.6 1042 | eventsource: 3.0.7 1043 | express: 5.1.0 1044 | express-rate-limit: 7.5.0(express@5.1.0) 1045 | pkce-challenge: 5.0.0 1046 | raw-body: 3.0.0 1047 | zod: 3.24.4 1048 | zod-to-json-schema: 3.24.5(zod@3.24.4) 1049 | transitivePeerDependencies: 1050 | - supports-color 1051 | 1052 | '@octokit/auth-token@5.1.2': {} 1053 | 1054 | '@octokit/core@6.1.5': 1055 | dependencies: 1056 | '@octokit/auth-token': 5.1.2 1057 | '@octokit/graphql': 8.2.2 1058 | '@octokit/request': 9.2.1 1059 | '@octokit/request-error': 6.1.7 1060 | '@octokit/types': 14.0.0 1061 | before-after-hook: 3.0.2 1062 | universal-user-agent: 7.0.3 1063 | 1064 | '@octokit/endpoint@10.1.3': 1065 | dependencies: 1066 | '@octokit/types': 13.10.0 1067 | universal-user-agent: 7.0.3 1068 | 1069 | '@octokit/graphql@8.2.2': 1070 | dependencies: 1071 | '@octokit/request': 9.2.1 1072 | '@octokit/types': 14.0.0 1073 | universal-user-agent: 7.0.3 1074 | 1075 | '@octokit/openapi-types@24.2.0': {} 1076 | 1077 | '@octokit/openapi-types@25.0.0': {} 1078 | 1079 | '@octokit/plugin-paginate-rest@11.4.1(@octokit/core@6.1.5)': 1080 | dependencies: 1081 | '@octokit/core': 6.1.5 1082 | '@octokit/types': 13.10.0 1083 | 1084 | '@octokit/plugin-request-log@4.0.1(@octokit/core@6.1.5)': 1085 | dependencies: 1086 | '@octokit/core': 6.1.5 1087 | 1088 | '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@6.1.5)': 1089 | dependencies: 1090 | '@octokit/core': 6.1.5 1091 | '@octokit/types': 13.10.0 1092 | 1093 | '@octokit/request-error@6.1.7': 1094 | dependencies: 1095 | '@octokit/types': 13.10.0 1096 | 1097 | '@octokit/request@9.2.1': 1098 | dependencies: 1099 | '@octokit/endpoint': 10.1.3 1100 | '@octokit/request-error': 6.1.7 1101 | '@octokit/types': 13.10.0 1102 | fast-content-type-parse: 2.0.1 1103 | universal-user-agent: 7.0.3 1104 | 1105 | '@octokit/rest@20.1.2': 1106 | dependencies: 1107 | '@octokit/core': 6.1.5 1108 | '@octokit/plugin-paginate-rest': 11.4.1(@octokit/core@6.1.5) 1109 | '@octokit/plugin-request-log': 4.0.1(@octokit/core@6.1.5) 1110 | '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@6.1.5) 1111 | 1112 | '@octokit/types@13.10.0': 1113 | dependencies: 1114 | '@octokit/openapi-types': 24.2.0 1115 | 1116 | '@octokit/types@14.0.0': 1117 | dependencies: 1118 | '@octokit/openapi-types': 25.0.0 1119 | 1120 | '@opentelemetry/api@1.9.0': {} 1121 | 1122 | '@types/diff-match-patch@1.0.36': {} 1123 | 1124 | '@types/node-fetch@2.6.12': 1125 | dependencies: 1126 | '@types/node': 18.19.100 1127 | form-data: 4.0.2 1128 | 1129 | '@types/node@18.19.100': 1130 | dependencies: 1131 | undici-types: 5.26.5 1132 | 1133 | abort-controller@3.0.0: 1134 | dependencies: 1135 | event-target-shim: 5.0.1 1136 | 1137 | accepts@2.0.0: 1138 | dependencies: 1139 | mime-types: 3.0.1 1140 | negotiator: 1.0.0 1141 | 1142 | agentkeepalive@4.6.0: 1143 | dependencies: 1144 | humanize-ms: 1.2.1 1145 | 1146 | ai@4.3.16(react@19.1.0)(zod@3.24.4): 1147 | dependencies: 1148 | '@ai-sdk/provider': 1.1.3 1149 | '@ai-sdk/provider-utils': 2.2.8(zod@3.24.4) 1150 | '@ai-sdk/react': 1.2.12(react@19.1.0)(zod@3.24.4) 1151 | '@ai-sdk/ui-utils': 1.2.11(zod@3.24.4) 1152 | '@opentelemetry/api': 1.9.0 1153 | jsondiffpatch: 0.6.0 1154 | zod: 3.24.4 1155 | optionalDependencies: 1156 | react: 19.1.0 1157 | 1158 | ajv@8.17.1: 1159 | dependencies: 1160 | fast-deep-equal: 3.1.3 1161 | fast-uri: 3.0.6 1162 | json-schema-traverse: 1.0.0 1163 | require-from-string: 2.0.2 1164 | 1165 | ansi-styles@4.3.0: 1166 | dependencies: 1167 | color-convert: 2.0.1 1168 | 1169 | asynckit@0.4.0: {} 1170 | 1171 | base-64@0.1.0: {} 1172 | 1173 | before-after-hook@3.0.2: {} 1174 | 1175 | body-parser@2.2.0: 1176 | dependencies: 1177 | bytes: 3.1.2 1178 | content-type: 1.0.5 1179 | debug: 4.4.1 1180 | http-errors: 2.0.0 1181 | iconv-lite: 0.6.3 1182 | on-finished: 2.4.1 1183 | qs: 6.14.0 1184 | raw-body: 3.0.0 1185 | type-is: 2.0.1 1186 | transitivePeerDependencies: 1187 | - supports-color 1188 | 1189 | bytes@3.1.2: {} 1190 | 1191 | call-bind-apply-helpers@1.0.2: 1192 | dependencies: 1193 | es-errors: 1.3.0 1194 | function-bind: 1.1.2 1195 | 1196 | call-bound@1.0.4: 1197 | dependencies: 1198 | call-bind-apply-helpers: 1.0.2 1199 | get-intrinsic: 1.3.0 1200 | 1201 | chalk@4.1.2: 1202 | dependencies: 1203 | ansi-styles: 4.3.0 1204 | supports-color: 7.2.0 1205 | 1206 | chalk@5.4.1: {} 1207 | 1208 | charenc@0.0.2: {} 1209 | 1210 | color-convert@2.0.1: 1211 | dependencies: 1212 | color-name: 1.1.4 1213 | 1214 | color-name@1.1.4: {} 1215 | 1216 | combined-stream@1.0.8: 1217 | dependencies: 1218 | delayed-stream: 1.0.0 1219 | 1220 | content-disposition@1.0.0: 1221 | dependencies: 1222 | safe-buffer: 5.2.1 1223 | 1224 | content-type@1.0.5: {} 1225 | 1226 | cookie-signature@1.2.2: {} 1227 | 1228 | cookie@0.7.2: {} 1229 | 1230 | cors@2.8.5: 1231 | dependencies: 1232 | object-assign: 4.1.1 1233 | vary: 1.1.2 1234 | 1235 | cross-spawn@7.0.6: 1236 | dependencies: 1237 | path-key: 3.1.1 1238 | shebang-command: 2.0.0 1239 | which: 2.0.2 1240 | 1241 | crypt@0.0.2: {} 1242 | 1243 | debug@4.4.1: 1244 | dependencies: 1245 | ms: 2.1.3 1246 | 1247 | delayed-stream@1.0.0: {} 1248 | 1249 | depd@2.0.0: {} 1250 | 1251 | dequal@2.0.3: {} 1252 | 1253 | diff-match-patch@1.0.5: {} 1254 | 1255 | digest-fetch@1.3.0: 1256 | dependencies: 1257 | base-64: 0.1.0 1258 | md5: 2.3.0 1259 | 1260 | dotenv@16.5.0: {} 1261 | 1262 | dunder-proto@1.0.1: 1263 | dependencies: 1264 | call-bind-apply-helpers: 1.0.2 1265 | es-errors: 1.3.0 1266 | gopd: 1.2.0 1267 | 1268 | ee-first@1.1.1: {} 1269 | 1270 | encodeurl@2.0.0: {} 1271 | 1272 | es-define-property@1.0.1: {} 1273 | 1274 | es-errors@1.3.0: {} 1275 | 1276 | es-object-atoms@1.1.1: 1277 | dependencies: 1278 | es-errors: 1.3.0 1279 | 1280 | es-set-tostringtag@2.1.0: 1281 | dependencies: 1282 | es-errors: 1.3.0 1283 | get-intrinsic: 1.3.0 1284 | has-tostringtag: 1.0.2 1285 | hasown: 2.0.2 1286 | 1287 | esbuild@0.25.4: 1288 | optionalDependencies: 1289 | '@esbuild/aix-ppc64': 0.25.4 1290 | '@esbuild/android-arm': 0.25.4 1291 | '@esbuild/android-arm64': 0.25.4 1292 | '@esbuild/android-x64': 0.25.4 1293 | '@esbuild/darwin-arm64': 0.25.4 1294 | '@esbuild/darwin-x64': 0.25.4 1295 | '@esbuild/freebsd-arm64': 0.25.4 1296 | '@esbuild/freebsd-x64': 0.25.4 1297 | '@esbuild/linux-arm': 0.25.4 1298 | '@esbuild/linux-arm64': 0.25.4 1299 | '@esbuild/linux-ia32': 0.25.4 1300 | '@esbuild/linux-loong64': 0.25.4 1301 | '@esbuild/linux-mips64el': 0.25.4 1302 | '@esbuild/linux-ppc64': 0.25.4 1303 | '@esbuild/linux-riscv64': 0.25.4 1304 | '@esbuild/linux-s390x': 0.25.4 1305 | '@esbuild/linux-x64': 0.25.4 1306 | '@esbuild/netbsd-arm64': 0.25.4 1307 | '@esbuild/netbsd-x64': 0.25.4 1308 | '@esbuild/openbsd-arm64': 0.25.4 1309 | '@esbuild/openbsd-x64': 0.25.4 1310 | '@esbuild/sunos-x64': 0.25.4 1311 | '@esbuild/win32-arm64': 0.25.4 1312 | '@esbuild/win32-ia32': 0.25.4 1313 | '@esbuild/win32-x64': 0.25.4 1314 | 1315 | escape-html@1.0.3: {} 1316 | 1317 | etag@1.8.1: {} 1318 | 1319 | event-target-shim@5.0.1: {} 1320 | 1321 | eventsource-parser@3.0.2: {} 1322 | 1323 | eventsource@3.0.7: 1324 | dependencies: 1325 | eventsource-parser: 3.0.2 1326 | 1327 | express-rate-limit@7.5.0(express@5.1.0): 1328 | dependencies: 1329 | express: 5.1.0 1330 | 1331 | express@5.1.0: 1332 | dependencies: 1333 | accepts: 2.0.0 1334 | body-parser: 2.2.0 1335 | content-disposition: 1.0.0 1336 | content-type: 1.0.5 1337 | cookie: 0.7.2 1338 | cookie-signature: 1.2.2 1339 | debug: 4.4.1 1340 | encodeurl: 2.0.0 1341 | escape-html: 1.0.3 1342 | etag: 1.8.1 1343 | finalhandler: 2.1.0 1344 | fresh: 2.0.0 1345 | http-errors: 2.0.0 1346 | merge-descriptors: 2.0.0 1347 | mime-types: 3.0.1 1348 | on-finished: 2.4.1 1349 | once: 1.4.0 1350 | parseurl: 1.3.3 1351 | proxy-addr: 2.0.7 1352 | qs: 6.14.0 1353 | range-parser: 1.2.1 1354 | router: 2.2.0 1355 | send: 1.2.0 1356 | serve-static: 2.2.0 1357 | statuses: 2.0.1 1358 | type-is: 2.0.1 1359 | vary: 1.1.2 1360 | transitivePeerDependencies: 1361 | - supports-color 1362 | 1363 | fast-content-type-parse@2.0.1: {} 1364 | 1365 | fast-deep-equal@3.1.3: {} 1366 | 1367 | fast-uri@3.0.6: {} 1368 | 1369 | finalhandler@2.1.0: 1370 | dependencies: 1371 | debug: 4.4.1 1372 | encodeurl: 2.0.0 1373 | escape-html: 1.0.3 1374 | on-finished: 2.4.1 1375 | parseurl: 1.3.3 1376 | statuses: 2.0.1 1377 | transitivePeerDependencies: 1378 | - supports-color 1379 | 1380 | form-data-encoder@1.7.2: {} 1381 | 1382 | form-data@4.0.2: 1383 | dependencies: 1384 | asynckit: 0.4.0 1385 | combined-stream: 1.0.8 1386 | es-set-tostringtag: 2.1.0 1387 | mime-types: 2.1.35 1388 | 1389 | formdata-node@4.4.1: 1390 | dependencies: 1391 | node-domexception: 1.0.0 1392 | web-streams-polyfill: 4.0.0-beta.3 1393 | 1394 | forwarded@0.2.0: {} 1395 | 1396 | fresh@2.0.0: {} 1397 | 1398 | fsevents@2.3.3: 1399 | optional: true 1400 | 1401 | function-bind@1.1.2: {} 1402 | 1403 | get-intrinsic@1.3.0: 1404 | dependencies: 1405 | call-bind-apply-helpers: 1.0.2 1406 | es-define-property: 1.0.1 1407 | es-errors: 1.3.0 1408 | es-object-atoms: 1.1.1 1409 | function-bind: 1.1.2 1410 | get-proto: 1.0.1 1411 | gopd: 1.2.0 1412 | has-symbols: 1.1.0 1413 | hasown: 2.0.2 1414 | math-intrinsics: 1.1.0 1415 | 1416 | get-proto@1.0.1: 1417 | dependencies: 1418 | dunder-proto: 1.0.1 1419 | es-object-atoms: 1.1.1 1420 | 1421 | get-tsconfig@4.10.0: 1422 | dependencies: 1423 | resolve-pkg-maps: 1.0.0 1424 | 1425 | gopd@1.2.0: {} 1426 | 1427 | has-flag@4.0.0: {} 1428 | 1429 | has-symbols@1.1.0: {} 1430 | 1431 | has-tostringtag@1.0.2: 1432 | dependencies: 1433 | has-symbols: 1.1.0 1434 | 1435 | hasown@2.0.2: 1436 | dependencies: 1437 | function-bind: 1.1.2 1438 | 1439 | http-errors@2.0.0: 1440 | dependencies: 1441 | depd: 2.0.0 1442 | inherits: 2.0.4 1443 | setprototypeof: 1.2.0 1444 | statuses: 2.0.1 1445 | toidentifier: 1.0.1 1446 | 1447 | humanize-ms@1.2.1: 1448 | dependencies: 1449 | ms: 2.1.3 1450 | 1451 | iconv-lite@0.6.3: 1452 | dependencies: 1453 | safer-buffer: 2.1.2 1454 | 1455 | inherits@2.0.4: {} 1456 | 1457 | ipaddr.js@1.9.1: {} 1458 | 1459 | is-buffer@1.1.6: {} 1460 | 1461 | is-promise@4.0.0: {} 1462 | 1463 | isexe@2.0.0: {} 1464 | 1465 | json-schema-traverse@1.0.0: {} 1466 | 1467 | json-schema@0.4.0: {} 1468 | 1469 | jsondiffpatch@0.6.0: 1470 | dependencies: 1471 | '@types/diff-match-patch': 1.0.36 1472 | chalk: 5.4.1 1473 | diff-match-patch: 1.0.5 1474 | 1475 | math-intrinsics@1.1.0: {} 1476 | 1477 | mcp-evals@1.0.18(react@19.1.0)(zod@3.24.4): 1478 | dependencies: 1479 | '@actions/core': 1.11.1 1480 | '@ai-sdk/openai': 1.3.22(zod@3.24.4) 1481 | '@anthropic-ai/sdk': 0.8.1 1482 | '@modelcontextprotocol/sdk': 1.11.4 1483 | ai: 4.3.16(react@19.1.0)(zod@3.24.4) 1484 | chalk: 4.1.2 1485 | dotenv: 16.5.0 1486 | openai: 4.100.0(zod@3.24.4) 1487 | react: 19.1.0 1488 | tsx: 4.19.4 1489 | transitivePeerDependencies: 1490 | - encoding 1491 | - supports-color 1492 | - ws 1493 | - zod 1494 | 1495 | md5@2.3.0: 1496 | dependencies: 1497 | charenc: 0.0.2 1498 | crypt: 0.0.2 1499 | is-buffer: 1.1.6 1500 | 1501 | media-typer@1.1.0: {} 1502 | 1503 | merge-descriptors@2.0.0: {} 1504 | 1505 | mime-db@1.52.0: {} 1506 | 1507 | mime-db@1.54.0: {} 1508 | 1509 | mime-types@2.1.35: 1510 | dependencies: 1511 | mime-db: 1.52.0 1512 | 1513 | mime-types@3.0.1: 1514 | dependencies: 1515 | mime-db: 1.54.0 1516 | 1517 | ms@2.1.3: {} 1518 | 1519 | nanoid@3.3.11: {} 1520 | 1521 | negotiator@1.0.0: {} 1522 | 1523 | node-domexception@1.0.0: {} 1524 | 1525 | node-fetch@2.7.0: 1526 | dependencies: 1527 | whatwg-url: 5.0.0 1528 | 1529 | object-assign@4.1.1: {} 1530 | 1531 | object-inspect@1.13.4: {} 1532 | 1533 | on-finished@2.4.1: 1534 | dependencies: 1535 | ee-first: 1.1.1 1536 | 1537 | once@1.4.0: 1538 | dependencies: 1539 | wrappy: 1.0.2 1540 | 1541 | openai@4.100.0(zod@3.24.4): 1542 | dependencies: 1543 | '@types/node': 18.19.100 1544 | '@types/node-fetch': 2.6.12 1545 | abort-controller: 3.0.0 1546 | agentkeepalive: 4.6.0 1547 | form-data-encoder: 1.7.2 1548 | formdata-node: 4.4.1 1549 | node-fetch: 2.7.0 1550 | optionalDependencies: 1551 | zod: 3.24.4 1552 | transitivePeerDependencies: 1553 | - encoding 1554 | 1555 | parseurl@1.3.3: {} 1556 | 1557 | path-key@3.1.1: {} 1558 | 1559 | path-to-regexp@8.2.0: {} 1560 | 1561 | pkce-challenge@5.0.0: {} 1562 | 1563 | proxy-addr@2.0.7: 1564 | dependencies: 1565 | forwarded: 0.2.0 1566 | ipaddr.js: 1.9.1 1567 | 1568 | qs@6.14.0: 1569 | dependencies: 1570 | side-channel: 1.1.0 1571 | 1572 | range-parser@1.2.1: {} 1573 | 1574 | raw-body@3.0.0: 1575 | dependencies: 1576 | bytes: 3.1.2 1577 | http-errors: 2.0.0 1578 | iconv-lite: 0.6.3 1579 | unpipe: 1.0.0 1580 | 1581 | react@19.1.0: {} 1582 | 1583 | require-from-string@2.0.2: {} 1584 | 1585 | resolve-pkg-maps@1.0.0: {} 1586 | 1587 | router@2.2.0: 1588 | dependencies: 1589 | debug: 4.4.1 1590 | depd: 2.0.0 1591 | is-promise: 4.0.0 1592 | parseurl: 1.3.3 1593 | path-to-regexp: 8.2.0 1594 | transitivePeerDependencies: 1595 | - supports-color 1596 | 1597 | safe-buffer@5.2.1: {} 1598 | 1599 | safer-buffer@2.1.2: {} 1600 | 1601 | secure-json-parse@2.7.0: {} 1602 | 1603 | send@1.2.0: 1604 | dependencies: 1605 | debug: 4.4.1 1606 | encodeurl: 2.0.0 1607 | escape-html: 1.0.3 1608 | etag: 1.8.1 1609 | fresh: 2.0.0 1610 | http-errors: 2.0.0 1611 | mime-types: 3.0.1 1612 | ms: 2.1.3 1613 | on-finished: 2.4.1 1614 | range-parser: 1.2.1 1615 | statuses: 2.0.1 1616 | transitivePeerDependencies: 1617 | - supports-color 1618 | 1619 | serve-static@2.2.0: 1620 | dependencies: 1621 | encodeurl: 2.0.0 1622 | escape-html: 1.0.3 1623 | parseurl: 1.3.3 1624 | send: 1.2.0 1625 | transitivePeerDependencies: 1626 | - supports-color 1627 | 1628 | setprototypeof@1.2.0: {} 1629 | 1630 | shebang-command@2.0.0: 1631 | dependencies: 1632 | shebang-regex: 3.0.0 1633 | 1634 | shebang-regex@3.0.0: {} 1635 | 1636 | side-channel-list@1.0.0: 1637 | dependencies: 1638 | es-errors: 1.3.0 1639 | object-inspect: 1.13.4 1640 | 1641 | side-channel-map@1.0.1: 1642 | dependencies: 1643 | call-bound: 1.0.4 1644 | es-errors: 1.3.0 1645 | get-intrinsic: 1.3.0 1646 | object-inspect: 1.13.4 1647 | 1648 | side-channel-weakmap@1.0.2: 1649 | dependencies: 1650 | call-bound: 1.0.4 1651 | es-errors: 1.3.0 1652 | get-intrinsic: 1.3.0 1653 | object-inspect: 1.13.4 1654 | side-channel-map: 1.0.1 1655 | 1656 | side-channel@1.1.0: 1657 | dependencies: 1658 | es-errors: 1.3.0 1659 | object-inspect: 1.13.4 1660 | side-channel-list: 1.0.0 1661 | side-channel-map: 1.0.1 1662 | side-channel-weakmap: 1.0.2 1663 | 1664 | statuses@2.0.1: {} 1665 | 1666 | supports-color@7.2.0: 1667 | dependencies: 1668 | has-flag: 4.0.0 1669 | 1670 | swr@2.3.3(react@19.1.0): 1671 | dependencies: 1672 | dequal: 2.0.3 1673 | react: 19.1.0 1674 | use-sync-external-store: 1.5.0(react@19.1.0) 1675 | 1676 | throttleit@2.1.0: {} 1677 | 1678 | toidentifier@1.0.1: {} 1679 | 1680 | tr46@0.0.3: {} 1681 | 1682 | tsx@4.19.4: 1683 | dependencies: 1684 | esbuild: 0.25.4 1685 | get-tsconfig: 4.10.0 1686 | optionalDependencies: 1687 | fsevents: 2.3.3 1688 | 1689 | tunnel@0.0.6: {} 1690 | 1691 | type-is@2.0.1: 1692 | dependencies: 1693 | content-type: 1.0.5 1694 | media-typer: 1.1.0 1695 | mime-types: 3.0.1 1696 | 1697 | typescript@4.9.5: {} 1698 | 1699 | undici-types@5.26.5: {} 1700 | 1701 | undici@5.29.0: 1702 | dependencies: 1703 | '@fastify/busboy': 2.1.1 1704 | 1705 | universal-user-agent@7.0.3: {} 1706 | 1707 | unpipe@1.0.0: {} 1708 | 1709 | use-sync-external-store@1.5.0(react@19.1.0): 1710 | dependencies: 1711 | react: 19.1.0 1712 | 1713 | vary@1.1.2: {} 1714 | 1715 | web-streams-polyfill@3.3.3: {} 1716 | 1717 | web-streams-polyfill@4.0.0-beta.3: {} 1718 | 1719 | webidl-conversions@3.0.1: {} 1720 | 1721 | whatwg-url@5.0.0: 1722 | dependencies: 1723 | tr46: 0.0.3 1724 | webidl-conversions: 3.0.1 1725 | 1726 | which@2.0.2: 1727 | dependencies: 1728 | isexe: 2.0.0 1729 | 1730 | wrappy@1.0.2: {} 1731 | 1732 | zod-to-json-schema@3.24.5(zod@3.24.4): 1733 | dependencies: 1734 | zod: 3.24.4 1735 | 1736 | zod@3.24.4: {} 1737 | --------------------------------------------------------------------------------