├── .gitignore ├── Dockerfile ├── README.md ├── build ├── config.js ├── dify-client.js ├── index.js └── types.js ├── package-lock.json ├── package.json ├── smithery.yaml ├── src ├── config.ts ├── dify-client.ts ├── index.ts └── types.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | config.yaml 2 | 3 | node_modules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config 2 | # Stage 1: build 3 | FROM node:lts-alpine AS builder 4 | WORKDIR /app 5 | COPY package.json package-lock.json tsconfig.json ./ 6 | COPY src ./src 7 | RUN npm ci && npm run build 8 | 9 | # Stage 2: production 10 | FROM node:lts-alpine 11 | WORKDIR /app 12 | # Copy built files and dependencies 13 | COPY --from=builder /app/build ./build 14 | COPY --from=builder /app/package.json ./package.json 15 | COPY --from=builder /app/package-lock.json ./package-lock.json 16 | RUN npm ci --omit=dev && chmod +x build/index.js 17 | 18 | # Use shell entrypoint to generate config and start server 19 | ENTRYPOINT ["sh"] 20 | CMD [] 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dify Workflows MCP 服务器 (TypeScript) 2 | [![smithery badge](https://smithery.ai/badge/@localSummer/dify-workflow-mcp)](https://smithery.ai/server/@localSummer/dify-workflow-mcp) 3 | 4 | 一个 Model Context Protocol (MCP) 服务器的 TypeScript 实现,将 Dify 工作流作为工具暴露出来。 5 | 6 | ## 特性 7 | 8 | - 将 Dify 应用程序转换为 MCP 工具 9 | - 支持从 Dify 工作流流式响应(待实现) 10 | - 通过 YAML 配置文件进行配置 11 | - 使用 TypeScript 编写,具有类型安全性 12 | 13 | ## 前提条件 14 | 15 | - Node.js 18 或更高版本 16 | - npm 8 或更高版本 17 | - 访问 Dify API 和应用程序密钥 18 | 19 | ## 安装 20 | 21 | ### Installing via Smithery 22 | 23 | To install Dify Workflows for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@localSummer/dify-workflow-mcp): 24 | 25 | ```bash 26 | npx -y @smithery/cli install @localSummer/dify-workflow-mcp --client claude 27 | ``` 28 | 29 | ### Manual Installation 30 | 1. 克隆仓库: 31 | 32 | ```bash 33 | git clone https://github.com/localSummer/dify-workflow-mcp 34 | cd dify-workflow-mcp 35 | ``` 36 | 37 | 2. 安装依赖: 38 | 39 | ```bash 40 | npm install 41 | ``` 42 | 43 | 3. 创建配置文件: 44 | ```yaml 45 | # config.yaml 46 | dify_base_url: 'https://api.dify.ai/v1' 47 | dify_app_sks: 48 | - 'your-dify-app-sk-1' # 替换为你的实际 Dify 应用程序密钥 49 | - 'your-dify-app-sk-2' # 替换为你的实际 Dify 应用程序密钥 50 | ``` 51 | 52 | ## 使用方法 53 | 54 | 1. 构建项目: 55 | 56 | ```bash 57 | npm run build 58 | ``` 59 | 60 | 2. 启动服务器: 61 | ```bash 62 | npm start 63 | ``` 64 | 65 | 开发环境: 66 | 67 | ```bash 68 | npm run dev 69 | ``` 70 | 71 | ## 配置 72 | 73 | 服务器可以使用 YAML 文件进行配置。默认情况下,它会在项目根目录中查找 `config.yaml`。您可以使用 `CONFIG_PATH` 环境变量指定不同的路径。 74 | 75 | ### 配置选项 76 | 77 | - `dify_base_url`: Dify API 的基本 URL 78 | - `dify_app_sks`: Dify 应用程序密钥列表 79 | 80 | ## Cline/Roo Code配置 81 | ```json 82 | "dify-workflow-mcp": { 83 | "command": "node", 84 | "args": [ 85 | "path/dify-workflow-mcp/build/index.js" 86 | ], 87 | "env": { 88 | "CONFIG_PATH": "path/dify-workflow-mcp/config.yaml" 89 | }, 90 | "disabled": false, 91 | "alwaysAllow": [], 92 | "timeout": 300 93 | } 94 | ``` 95 | 96 | ## 注意事项 97 | - 当前运行工作流使用的响应模式是:response_mode: 'blocking',会等待工作流执行完成后输出最终结果 98 | - 当前工作流输出字段为:`code` 和 `checkResult`,如输出字段不一致,需要调整下面的代码 99 | ```ts 100 | const { code, checkResult } = responseData.data.outputs; 101 | ``` 102 | 103 | ## 许可证 104 | 105 | ISC 106 | -------------------------------------------------------------------------------- /build/config.js: -------------------------------------------------------------------------------- 1 | import { readFileSync } from 'fs'; 2 | import { parse } from 'yaml'; 3 | /** 4 | * 从指定路径读取配置文件内容。 5 | * @param configPath - 配置文件的路径。 6 | * @returns 配置文件内容字符串。 7 | * @throws 当文件读取失败时抛出错误。 8 | */ 9 | function readConfigFile(configPath) { 10 | try { 11 | return readFileSync(configPath, 'utf8'); 12 | } 13 | catch (error) { 14 | const errorMessage = error instanceof Error ? error.message : 'Unknown error'; 15 | throw new Error(`Failed to read config file: ${errorMessage}`); 16 | } 17 | } 18 | /** 19 | * 解析配置文件内容为 DifyConfig 对象。 20 | * @param fileContents - 配置文件内容字符串。 21 | * @returns 解析后的 DifyConfig 对象。 22 | * @throws 当配置文件格式不正确时抛出错误。 23 | */ 24 | function parseConfigFile(fileContents) { 25 | try { 26 | return parse(fileContents); 27 | } 28 | catch (error) { 29 | const errorMessage = error instanceof Error ? error.message : 'Unknown error'; 30 | throw new Error(`Failed to parse config file: ${errorMessage}`); 31 | } 32 | } 33 | /** 34 | * 验证 DifyConfig 对象是否包含必需的字段。 35 | * @param config - 要验证的 DifyConfig 对象。 36 | * @throws 当缺少必需字段时抛出错误。 37 | */ 38 | function validateConfig(config) { 39 | if (!config.dify_base_url) { 40 | throw new Error('Missing required field: dify_base_url'); 41 | } 42 | if (!Array.isArray(config.dify_app_sks) || config.dify_app_sks.length === 0) { 43 | throw new Error('Missing or invalid field: dify_app_sks must be a non-empty array'); 44 | } 45 | } 46 | /** 47 | * 从指定路径加载 Dify 配置。 48 | * @param configPath - 配置文件的路径。 49 | * @returns 加载的 Dify 配置对象。 50 | * @throws 当配置文件缺失、格式不正确或缺少必需字段时抛出错误。 51 | */ 52 | export function loadConfig(configPath) { 53 | try { 54 | const fileContents = readConfigFile(configPath); 55 | const config = parseConfigFile(fileContents); 56 | validateConfig(config); 57 | return config; 58 | } 59 | catch (error) { 60 | const errorMessage = error instanceof Error ? error.message : 'Unknown error'; 61 | throw new Error(`Failed to load config: ${errorMessage}`); 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /build/dify-client.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | /** 3 | * 封装 Axios 客户端,处理通用配置和请求。 4 | */ 5 | class HttpClient { 6 | client; 7 | /** 8 | * 构造函数,创建 HttpClient 实例。 9 | * @param baseUrl 基础 URL 10 | * @param appSk 应用密钥 11 | */ 12 | constructor(baseUrl, appSk) { 13 | this.client = axios.create({ 14 | baseURL: baseUrl, 15 | headers: { 16 | Authorization: `Bearer ${appSk}`, 17 | 'Content-Type': 'application/json', 18 | }, 19 | }); 20 | } 21 | /** 22 | * 发起 GET 请求。 23 | * @param url 请求 URL 24 | * @returns 响应数据 25 | * @throws 当请求失败时抛出错误 26 | */ 27 | async get(url) { 28 | try { 29 | const response = await this.client.get(url); 30 | return response.data; 31 | } 32 | catch (error) { 33 | throw new Error(`GET 请求失败: ${error.message}`); 34 | } 35 | } 36 | /** 37 | * 发起 POST 请求。 38 | * @param url 请求 URL 39 | * @param data 请求数据 40 | * @returns 响应数据 41 | * @throws 当请求失败时抛出错误 42 | */ 43 | async post(url, data) { 44 | try { 45 | const response = await this.client.post(url, data); 46 | return response.data; 47 | } 48 | catch (error) { 49 | throw new Error(`POST 请求失败: ${error.message}`); 50 | } 51 | } 52 | } 53 | /** 54 | * 提供与 Dify API 交互的方法。 55 | */ 56 | export class DifyClient { 57 | httpClient; 58 | /** 59 | * 构造函数,创建 DifyClient 实例。 60 | * @param baseUrl Dify API 的基础 URL 61 | * @param appSk 应用程序的密钥 62 | */ 63 | constructor(baseUrl, appSk) { 64 | this.httpClient = new HttpClient(baseUrl, appSk); 65 | } 66 | /** 67 | * 获取 Dify 应用的信息。 68 | * @returns 包含应用信息的 Promise 69 | * @throws 当获取应用信息失败时抛出错误 70 | */ 71 | async getAppInfo() { 72 | try { 73 | return await this.httpClient.get('/info'); 74 | } 75 | catch (error) { 76 | throw new Error(`获取应用信息失败: ${error.message}`); 77 | } 78 | } 79 | /** 80 | * 获取 Dify 应用的参数。 81 | * @returns 包含应用参数的 Promise 82 | * @throws 当获取参数失败时抛出错误 83 | */ 84 | async getParameters() { 85 | try { 86 | return await this.httpClient.get('/parameters'); 87 | } 88 | catch (error) { 89 | throw new Error(`获取参数失败: ${error.message}`); 90 | } 91 | } 92 | /** 93 | * 运行 Dify 工作流。 94 | * @param inputs 工作流的输入数据 95 | * @returns 包含工作流输出的 Promise 96 | * @throws 当运行工作流失败时抛出错误 97 | */ 98 | async runWorkflow(inputs) { 99 | try { 100 | const randomUser = this.generateRandomUser(); 101 | const responseData = await this.httpClient.post('/workflows/run', { 102 | inputs, 103 | response_mode: 'blocking', 104 | user: randomUser, 105 | }); 106 | const { code, checkResult } = responseData.data.outputs; 107 | const result = [code, checkResult].join('\n\n'); 108 | return result || 'No response from workflow'; 109 | } 110 | catch (error) { 111 | throw new Error(`运行工作流失败: ${error.message}`); 112 | } 113 | } 114 | /** 115 | * 停止指定 ID 的任务执行。 116 | * @param taskId 要停止的任务的 ID 117 | * @throws 当停止执行任务失败时抛出错误 118 | */ 119 | async stopExecution(taskId) { 120 | try { 121 | await this.httpClient.post(`/chat-messages/${taskId}/stop`, null); // 修改点:不传递请求体 122 | } 123 | catch (error) { 124 | throw new Error(`停止执行任务失败: ${error.message}`); 125 | } 126 | } 127 | /** 128 | * 生成一个随机的用户名。 129 | * @returns 随机生成的用户名 130 | */ 131 | generateRandomUser() { 132 | return `dify-mcp-server-ts-${Math.random().toString(16).slice(0, 12)}`; 133 | } 134 | } 135 | -------------------------------------------------------------------------------- /build/index.js: -------------------------------------------------------------------------------- 1 | import { Server } from '@modelcontextprotocol/sdk/server/index.js'; 2 | import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; 3 | import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprotocol/sdk/types.js'; 4 | import { z } from 'zod'; 5 | import path, { dirname } from 'path'; 6 | import { fileURLToPath } from 'url'; 7 | import { loadConfig } from './config.js'; 8 | import { DifyClient } from './dify-client.js'; 9 | import { UserInputControlType } from './types.js'; 10 | const __filename = fileURLToPath(import.meta.url); 11 | const __dirname = dirname(__filename); 12 | // Load configuration 13 | const config = loadConfig(process.env.CONFIG_PATH || path.resolve(__dirname, '../config.yaml')); 14 | // Create server instance 15 | const server = new Server({ 16 | name: 'dify-workflow-mcp', 17 | version: '1.0.0' 18 | }, { 19 | capabilities: { 20 | tools: {} 21 | } 22 | }); 23 | // cache dify parameters 24 | const difyParametersMap = new Map(); 25 | // cache name app sks 26 | const appSkMap = new Map(); 27 | // Initialize Dify clients 28 | const difyClients = new Map(); 29 | for (const appSk of config.dify_app_sks) { 30 | const client = new DifyClient(config.dify_base_url, appSk); 31 | difyClients.set(appSk, client); 32 | } 33 | // List available tools 34 | server.setRequestHandler(ListToolsRequestSchema, async () => { 35 | const tools = []; 36 | let index = 0; 37 | for (const client of difyClients.values()) { 38 | try { 39 | const [appInfo, parameters] = await Promise.all([client.getAppInfo(), client.getParameters()]); 40 | const inputSchema = convertDifyParametersToJsonSchema(parameters); 41 | // Cache Dify parameters 42 | difyParametersMap.set(appInfo.name, parameters); 43 | // Cache app sk 44 | appSkMap.set(appInfo.name, config.dify_app_sks[index++]); 45 | tools.push({ 46 | name: appInfo.name, 47 | description: appInfo.description, 48 | inputSchema 49 | }); 50 | } 51 | catch (error) { 52 | console.error('Failed to load tool:', error); 53 | } 54 | } 55 | return { tools }; 56 | }); 57 | // Handle tool execution 58 | server.setRequestHandler(CallToolRequestSchema, async (request) => { 59 | const { name, arguments: args } = request.params; 60 | try { 61 | // Find the corresponding Dify client 62 | const appSk = appSkMap.get(name); 63 | if (!appSk) { 64 | throw new Error('Unsupported tool'); 65 | } 66 | const client = difyClients.get(appSk); 67 | if (!client) { 68 | throw new Error('No Dify client available'); 69 | } 70 | const difyParameters = difyParametersMap.get(name); 71 | if (!difyParameters) { 72 | throw new Error('No Dify parameters available'); 73 | } 74 | // Validate input parameters 75 | const validatedArgs = await validateInputParameters(args, difyParameters); 76 | // Execute the workflow 77 | const result = await client.runWorkflow(validatedArgs); 78 | return { 79 | content: [ 80 | { 81 | type: 'text', 82 | text: result 83 | } 84 | ] 85 | }; 86 | } 87 | catch (error) { 88 | if (error instanceof z.ZodError) { 89 | throw new Error(`Invalid arguments: ${error.errors.map((e) => `${e.path.join('.')}: ${e.message}`).join(', ')}`); 90 | } 91 | throw error; 92 | } 93 | }); 94 | // Validate input parameters 95 | const validateInputParameters = (args, difyParameters) => { 96 | const schema = z.object(Object.fromEntries(difyParameters.user_input_form.map((form) => { 97 | if (isParagraphInput(form)) { 98 | const { required, label, variable } = form[UserInputControlType.ParagraphInput]; 99 | const currentSchema = required 100 | ? z.string({ 101 | message: `${label} is required!` 102 | }) 103 | : z.optional(z.string()); 104 | return [variable, currentSchema]; 105 | } 106 | if (isTextInput(form)) { 107 | const { required, label, variable } = form[UserInputControlType.TextInput]; 108 | const currentSchema = required 109 | ? z.string({ 110 | message: `${label} is required!` 111 | }) 112 | : z.optional(z.string()); 113 | return [variable, currentSchema]; 114 | } 115 | if (isSelectInput(form)) { 116 | const { required, options, variable } = form[UserInputControlType.SelectInput]; 117 | const currentSchema = required 118 | ? z.enum(options) 119 | : z.optional(z.enum(options)); 120 | return [variable, currentSchema]; 121 | } 122 | if (isNumberInput(form)) { 123 | const { required, label, variable } = form[UserInputControlType.NumberInput]; 124 | const currentSchema = required 125 | ? z.number({ 126 | message: `${label} is required!` 127 | }) 128 | : z.optional(z.number()); 129 | return [variable, currentSchema]; 130 | } 131 | throw new Error(`Invalid difyParameters`); 132 | }))); 133 | return schema.parse(args); 134 | }; 135 | /** 136 | * Convert Dify parameters to JSON Schema 137 | */ 138 | const convertDifyParametersToJsonSchema = (parameters) => { 139 | const inputSchema = { 140 | type: 'object', 141 | properties: {}, 142 | required: [] 143 | }; 144 | for (const input of parameters.user_input_form) { 145 | // 处理 UserInputControlType.TextInput 146 | if (isTextInput(input)) { 147 | inputSchema.properties[input[UserInputControlType.TextInput].variable] = { 148 | type: 'string' 149 | }; 150 | } 151 | // 处理 UserInputControlType.ParagraphInput 152 | if (isParagraphInput(input)) { 153 | inputSchema.properties[input[UserInputControlType.ParagraphInput].variable] = { 154 | type: 'string' 155 | }; 156 | } 157 | // 处理 UserInputControlType.SelectInput 158 | if (isSelectInput(input)) { 159 | inputSchema.properties[input[UserInputControlType.SelectInput].variable] = { 160 | type: 'array', 161 | enum: input[UserInputControlType.SelectInput].options 162 | }; 163 | } 164 | // 处理 UserInputControlType.NumberInput 165 | if (isNumberInput(input)) { 166 | inputSchema.properties[input[UserInputControlType.NumberInput].variable] = { 167 | type: 'number' 168 | }; 169 | } 170 | } 171 | return inputSchema; 172 | }; 173 | const isTextInput = (input) => { 174 | return input['text'] !== undefined; 175 | }; 176 | const isParagraphInput = (input) => { 177 | return input['paragraph'] !== undefined; 178 | }; 179 | const isSelectInput = (input) => { 180 | return input['select'] !== undefined; 181 | }; 182 | const isNumberInput = (input) => { 183 | return input['number'] !== undefined; 184 | }; 185 | // Start the server 186 | async function main() { 187 | const transport = new StdioServerTransport(); 188 | await server.connect(transport); 189 | console.error('Dify MCP Server running on stdio'); 190 | } 191 | main().catch((error) => { 192 | console.error('Fatal error in main():', error); 193 | process.exit(1); 194 | }); 195 | -------------------------------------------------------------------------------- /build/types.js: -------------------------------------------------------------------------------- 1 | export var UserInputControlType; 2 | (function (UserInputControlType) { 3 | UserInputControlType["TextInput"] = "text-input"; 4 | UserInputControlType["ParagraphInput"] = "paragraph"; 5 | UserInputControlType["SelectInput"] = "select"; 6 | UserInputControlType["NumberInput"] = "number"; 7 | })(UserInputControlType || (UserInputControlType = {})); 8 | export class BaseUserInputForm { 9 | } 10 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dify-mcp-server-ts", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "dify-mcp-server-ts", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "@modelcontextprotocol/inspector": "^0.2.7", 13 | "@modelcontextprotocol/sdk": "^1.0.0", 14 | "@types/axios": "^0.14.0", 15 | "axios": "^1.6.7", 16 | "yaml": "^2.3.4", 17 | "zod": "^3.22.4" 18 | }, 19 | "bin": { 20 | "dify-mcp": "build/index.js" 21 | }, 22 | "devDependencies": { 23 | "@types/node": "^20.11.16", 24 | "ts-node": "^10.9.2", 25 | "typescript": "^5.3.3" 26 | } 27 | }, 28 | "node_modules/@alloc/quick-lru": { 29 | "version": "5.2.0", 30 | "resolved": "https://registry.npmmirror.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 31 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 32 | "license": "MIT", 33 | "peer": true, 34 | "engines": { 35 | "node": ">=10" 36 | }, 37 | "funding": { 38 | "url": "https://github.com/sponsors/sindresorhus" 39 | } 40 | }, 41 | "node_modules/@cspotcode/source-map-support": { 42 | "version": "0.8.1", 43 | "resolved": "https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", 44 | "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", 45 | "license": "MIT", 46 | "dependencies": { 47 | "@jridgewell/trace-mapping": "0.3.9" 48 | }, 49 | "engines": { 50 | "node": ">=12" 51 | } 52 | }, 53 | "node_modules/@floating-ui/core": { 54 | "version": "1.6.9", 55 | "resolved": "https://registry.npmmirror.com/@floating-ui/core/-/core-1.6.9.tgz", 56 | "integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==", 57 | "license": "MIT", 58 | "dependencies": { 59 | "@floating-ui/utils": "^0.2.9" 60 | } 61 | }, 62 | "node_modules/@floating-ui/dom": { 63 | "version": "1.6.13", 64 | "resolved": "https://registry.npmmirror.com/@floating-ui/dom/-/dom-1.6.13.tgz", 65 | "integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==", 66 | "license": "MIT", 67 | "dependencies": { 68 | "@floating-ui/core": "^1.6.0", 69 | "@floating-ui/utils": "^0.2.9" 70 | } 71 | }, 72 | "node_modules/@floating-ui/react-dom": { 73 | "version": "2.1.2", 74 | "resolved": "https://registry.npmmirror.com/@floating-ui/react-dom/-/react-dom-2.1.2.tgz", 75 | "integrity": "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==", 76 | "license": "MIT", 77 | "dependencies": { 78 | "@floating-ui/dom": "^1.0.0" 79 | }, 80 | "peerDependencies": { 81 | "react": ">=16.8.0", 82 | "react-dom": ">=16.8.0" 83 | } 84 | }, 85 | "node_modules/@floating-ui/utils": { 86 | "version": "0.2.9", 87 | "resolved": "https://registry.npmmirror.com/@floating-ui/utils/-/utils-0.2.9.tgz", 88 | "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==", 89 | "license": "MIT" 90 | }, 91 | "node_modules/@isaacs/cliui": { 92 | "version": "8.0.2", 93 | "resolved": "https://registry.npmmirror.com/@isaacs/cliui/-/cliui-8.0.2.tgz", 94 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 95 | "license": "ISC", 96 | "peer": true, 97 | "dependencies": { 98 | "string-width": "^5.1.2", 99 | "string-width-cjs": "npm:string-width@^4.2.0", 100 | "strip-ansi": "^7.0.1", 101 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 102 | "wrap-ansi": "^8.1.0", 103 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 104 | }, 105 | "engines": { 106 | "node": ">=12" 107 | } 108 | }, 109 | "node_modules/@jridgewell/gen-mapping": { 110 | "version": "0.3.8", 111 | "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 112 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 113 | "license": "MIT", 114 | "peer": true, 115 | "dependencies": { 116 | "@jridgewell/set-array": "^1.2.1", 117 | "@jridgewell/sourcemap-codec": "^1.4.10", 118 | "@jridgewell/trace-mapping": "^0.3.24" 119 | }, 120 | "engines": { 121 | "node": ">=6.0.0" 122 | } 123 | }, 124 | "node_modules/@jridgewell/gen-mapping/node_modules/@jridgewell/trace-mapping": { 125 | "version": "0.3.25", 126 | "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 127 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 128 | "license": "MIT", 129 | "peer": true, 130 | "dependencies": { 131 | "@jridgewell/resolve-uri": "^3.1.0", 132 | "@jridgewell/sourcemap-codec": "^1.4.14" 133 | } 134 | }, 135 | "node_modules/@jridgewell/resolve-uri": { 136 | "version": "3.1.2", 137 | "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 138 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 139 | "license": "MIT", 140 | "engines": { 141 | "node": ">=6.0.0" 142 | } 143 | }, 144 | "node_modules/@jridgewell/set-array": { 145 | "version": "1.2.1", 146 | "resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.2.1.tgz", 147 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 148 | "license": "MIT", 149 | "peer": true, 150 | "engines": { 151 | "node": ">=6.0.0" 152 | } 153 | }, 154 | "node_modules/@jridgewell/sourcemap-codec": { 155 | "version": "1.5.0", 156 | "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 157 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 158 | "license": "MIT" 159 | }, 160 | "node_modules/@jridgewell/trace-mapping": { 161 | "version": "0.3.9", 162 | "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", 163 | "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", 164 | "license": "MIT", 165 | "dependencies": { 166 | "@jridgewell/resolve-uri": "^3.0.3", 167 | "@jridgewell/sourcemap-codec": "^1.4.10" 168 | } 169 | }, 170 | "node_modules/@modelcontextprotocol/inspector": { 171 | "version": "0.2.7", 172 | "resolved": "https://registry.npmmirror.com/@modelcontextprotocol/inspector/-/inspector-0.2.7.tgz", 173 | "integrity": "sha512-uErVi0fh0suPjmFiJGRyqeLdaPPDX8D8RCfxVdSIt3ti+mLZzJ6p8zBQJXxEj63r43a1AFfr5YmRmUjVuZC0Vw==", 174 | "license": "MIT", 175 | "workspaces": [ 176 | "client", 177 | "server" 178 | ], 179 | "dependencies": { 180 | "@modelcontextprotocol/inspector-client": "0.2.7", 181 | "@modelcontextprotocol/inspector-server": "0.2.7", 182 | "concurrently": "^9.0.1", 183 | "spawn-rx": "^5.1.0", 184 | "ts-node": "^10.9.2" 185 | }, 186 | "bin": { 187 | "mcp-inspector": "bin/cli.js" 188 | } 189 | }, 190 | "node_modules/@modelcontextprotocol/inspector-client": { 191 | "version": "0.2.7", 192 | "resolved": "https://registry.npmmirror.com/@modelcontextprotocol/inspector-client/-/inspector-client-0.2.7.tgz", 193 | "integrity": "sha512-ZEEzfZxp1TF/hNpWHDzq8A+cmkWkmcAg4Amo/PYBWTn9jQOjUqZF1IVKEn1+PuHhOM0OzruDM/gd6ggnjnIdcA==", 194 | "license": "MIT", 195 | "dependencies": { 196 | "@modelcontextprotocol/sdk": "^1.0.1", 197 | "@radix-ui/react-icons": "^1.3.0", 198 | "@radix-ui/react-label": "^2.1.0", 199 | "@radix-ui/react-select": "^2.1.2", 200 | "@radix-ui/react-slot": "^1.1.0", 201 | "@radix-ui/react-tabs": "^1.1.1", 202 | "class-variance-authority": "^0.7.0", 203 | "clsx": "^2.1.1", 204 | "lucide-react": "^0.447.0", 205 | "react": "^18.3.1", 206 | "react-dom": "^18.3.1", 207 | "react-toastify": "^10.0.6", 208 | "serve-handler": "^6.1.6", 209 | "tailwind-merge": "^2.5.3", 210 | "tailwindcss-animate": "^1.0.7", 211 | "zod": "^3.23.8" 212 | }, 213 | "bin": { 214 | "mcp-inspector-client": "bin/cli.js" 215 | } 216 | }, 217 | "node_modules/@modelcontextprotocol/inspector-server": { 218 | "version": "0.2.7", 219 | "resolved": "https://registry.npmmirror.com/@modelcontextprotocol/inspector-server/-/inspector-server-0.2.7.tgz", 220 | "integrity": "sha512-DKdSfeAFvoIt/4Wykk5zd0jwgtZn4lpVClDsU6Thn4YTahVBFDGJHGHyLkYiIWKDO9/bfvRQoqGBQw1DOhLhvQ==", 221 | "license": "MIT", 222 | "dependencies": { 223 | "@modelcontextprotocol/sdk": "^1.0.1", 224 | "cors": "^2.8.5", 225 | "eventsource": "^2.0.2", 226 | "express": "^4.21.0", 227 | "ws": "^8.18.0", 228 | "zod": "^3.23.8" 229 | }, 230 | "bin": { 231 | "mcp-inspector-server": "build/index.js" 232 | } 233 | }, 234 | "node_modules/@modelcontextprotocol/sdk": { 235 | "version": "1.3.1", 236 | "resolved": "https://registry.npmmirror.com/@modelcontextprotocol/sdk/-/sdk-1.3.1.tgz", 237 | "integrity": "sha512-Fu3HstNO03/S5nvwh3KjRfP5JOSMl6IbOBxRl6JBDXMFRHPSJ4kiiV7n5yJjY51GtrFw3Y+V/vdsweN5bxULWQ==", 238 | "license": "MIT", 239 | "dependencies": { 240 | "content-type": "^1.0.5", 241 | "raw-body": "^3.0.0", 242 | "zod": "^3.23.8", 243 | "zod-to-json-schema": "^3.24.1" 244 | }, 245 | "engines": { 246 | "node": ">=18" 247 | } 248 | }, 249 | "node_modules/@nodelib/fs.scandir": { 250 | "version": "2.1.5", 251 | "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 252 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 253 | "license": "MIT", 254 | "peer": true, 255 | "dependencies": { 256 | "@nodelib/fs.stat": "2.0.5", 257 | "run-parallel": "^1.1.9" 258 | }, 259 | "engines": { 260 | "node": ">= 8" 261 | } 262 | }, 263 | "node_modules/@nodelib/fs.stat": { 264 | "version": "2.0.5", 265 | "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 266 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 267 | "license": "MIT", 268 | "peer": true, 269 | "engines": { 270 | "node": ">= 8" 271 | } 272 | }, 273 | "node_modules/@nodelib/fs.walk": { 274 | "version": "1.2.8", 275 | "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 276 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 277 | "license": "MIT", 278 | "peer": true, 279 | "dependencies": { 280 | "@nodelib/fs.scandir": "2.1.5", 281 | "fastq": "^1.6.0" 282 | }, 283 | "engines": { 284 | "node": ">= 8" 285 | } 286 | }, 287 | "node_modules/@pkgjs/parseargs": { 288 | "version": "0.11.0", 289 | "resolved": "https://registry.npmmirror.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 290 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 291 | "license": "MIT", 292 | "optional": true, 293 | "peer": true, 294 | "engines": { 295 | "node": ">=14" 296 | } 297 | }, 298 | "node_modules/@radix-ui/number": { 299 | "version": "1.1.0", 300 | "resolved": "https://registry.npmmirror.com/@radix-ui/number/-/number-1.1.0.tgz", 301 | "integrity": "sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==", 302 | "license": "MIT" 303 | }, 304 | "node_modules/@radix-ui/primitive": { 305 | "version": "1.1.1", 306 | "resolved": "https://registry.npmmirror.com/@radix-ui/primitive/-/primitive-1.1.1.tgz", 307 | "integrity": "sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==", 308 | "license": "MIT" 309 | }, 310 | "node_modules/@radix-ui/react-arrow": { 311 | "version": "1.1.1", 312 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-arrow/-/react-arrow-1.1.1.tgz", 313 | "integrity": "sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==", 314 | "license": "MIT", 315 | "dependencies": { 316 | "@radix-ui/react-primitive": "2.0.1" 317 | }, 318 | "peerDependencies": { 319 | "@types/react": "*", 320 | "@types/react-dom": "*", 321 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 322 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 323 | }, 324 | "peerDependenciesMeta": { 325 | "@types/react": { 326 | "optional": true 327 | }, 328 | "@types/react-dom": { 329 | "optional": true 330 | } 331 | } 332 | }, 333 | "node_modules/@radix-ui/react-collection": { 334 | "version": "1.1.1", 335 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-collection/-/react-collection-1.1.1.tgz", 336 | "integrity": "sha512-LwT3pSho9Dljg+wY2KN2mrrh6y3qELfftINERIzBUO9e0N+t0oMTyn3k9iv+ZqgrwGkRnLpNJrsMv9BZlt2yuA==", 337 | "license": "MIT", 338 | "dependencies": { 339 | "@radix-ui/react-compose-refs": "1.1.1", 340 | "@radix-ui/react-context": "1.1.1", 341 | "@radix-ui/react-primitive": "2.0.1", 342 | "@radix-ui/react-slot": "1.1.1" 343 | }, 344 | "peerDependencies": { 345 | "@types/react": "*", 346 | "@types/react-dom": "*", 347 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 348 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 349 | }, 350 | "peerDependenciesMeta": { 351 | "@types/react": { 352 | "optional": true 353 | }, 354 | "@types/react-dom": { 355 | "optional": true 356 | } 357 | } 358 | }, 359 | "node_modules/@radix-ui/react-compose-refs": { 360 | "version": "1.1.1", 361 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.1.tgz", 362 | "integrity": "sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==", 363 | "license": "MIT", 364 | "peerDependencies": { 365 | "@types/react": "*", 366 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 367 | }, 368 | "peerDependenciesMeta": { 369 | "@types/react": { 370 | "optional": true 371 | } 372 | } 373 | }, 374 | "node_modules/@radix-ui/react-context": { 375 | "version": "1.1.1", 376 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-context/-/react-context-1.1.1.tgz", 377 | "integrity": "sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==", 378 | "license": "MIT", 379 | "peerDependencies": { 380 | "@types/react": "*", 381 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 382 | }, 383 | "peerDependenciesMeta": { 384 | "@types/react": { 385 | "optional": true 386 | } 387 | } 388 | }, 389 | "node_modules/@radix-ui/react-direction": { 390 | "version": "1.1.0", 391 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-direction/-/react-direction-1.1.0.tgz", 392 | "integrity": "sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==", 393 | "license": "MIT", 394 | "peerDependencies": { 395 | "@types/react": "*", 396 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 397 | }, 398 | "peerDependenciesMeta": { 399 | "@types/react": { 400 | "optional": true 401 | } 402 | } 403 | }, 404 | "node_modules/@radix-ui/react-dismissable-layer": { 405 | "version": "1.1.3", 406 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.3.tgz", 407 | "integrity": "sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==", 408 | "license": "MIT", 409 | "dependencies": { 410 | "@radix-ui/primitive": "1.1.1", 411 | "@radix-ui/react-compose-refs": "1.1.1", 412 | "@radix-ui/react-primitive": "2.0.1", 413 | "@radix-ui/react-use-callback-ref": "1.1.0", 414 | "@radix-ui/react-use-escape-keydown": "1.1.0" 415 | }, 416 | "peerDependencies": { 417 | "@types/react": "*", 418 | "@types/react-dom": "*", 419 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 420 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 421 | }, 422 | "peerDependenciesMeta": { 423 | "@types/react": { 424 | "optional": true 425 | }, 426 | "@types/react-dom": { 427 | "optional": true 428 | } 429 | } 430 | }, 431 | "node_modules/@radix-ui/react-focus-guards": { 432 | "version": "1.1.1", 433 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.1.tgz", 434 | "integrity": "sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==", 435 | "license": "MIT", 436 | "peerDependencies": { 437 | "@types/react": "*", 438 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 439 | }, 440 | "peerDependenciesMeta": { 441 | "@types/react": { 442 | "optional": true 443 | } 444 | } 445 | }, 446 | "node_modules/@radix-ui/react-focus-scope": { 447 | "version": "1.1.1", 448 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.1.tgz", 449 | "integrity": "sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==", 450 | "license": "MIT", 451 | "dependencies": { 452 | "@radix-ui/react-compose-refs": "1.1.1", 453 | "@radix-ui/react-primitive": "2.0.1", 454 | "@radix-ui/react-use-callback-ref": "1.1.0" 455 | }, 456 | "peerDependencies": { 457 | "@types/react": "*", 458 | "@types/react-dom": "*", 459 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 460 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 461 | }, 462 | "peerDependenciesMeta": { 463 | "@types/react": { 464 | "optional": true 465 | }, 466 | "@types/react-dom": { 467 | "optional": true 468 | } 469 | } 470 | }, 471 | "node_modules/@radix-ui/react-icons": { 472 | "version": "1.3.2", 473 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-icons/-/react-icons-1.3.2.tgz", 474 | "integrity": "sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==", 475 | "license": "MIT", 476 | "peerDependencies": { 477 | "react": "^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc" 478 | } 479 | }, 480 | "node_modules/@radix-ui/react-id": { 481 | "version": "1.1.0", 482 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-id/-/react-id-1.1.0.tgz", 483 | "integrity": "sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==", 484 | "license": "MIT", 485 | "dependencies": { 486 | "@radix-ui/react-use-layout-effect": "1.1.0" 487 | }, 488 | "peerDependencies": { 489 | "@types/react": "*", 490 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 491 | }, 492 | "peerDependenciesMeta": { 493 | "@types/react": { 494 | "optional": true 495 | } 496 | } 497 | }, 498 | "node_modules/@radix-ui/react-label": { 499 | "version": "2.1.1", 500 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-label/-/react-label-2.1.1.tgz", 501 | "integrity": "sha512-UUw5E4e/2+4kFMH7+YxORXGWggtY6sM8WIwh5RZchhLuUg2H1hc98Py+pr8HMz6rdaYrK2t296ZEjYLOCO5uUw==", 502 | "license": "MIT", 503 | "dependencies": { 504 | "@radix-ui/react-primitive": "2.0.1" 505 | }, 506 | "peerDependencies": { 507 | "@types/react": "*", 508 | "@types/react-dom": "*", 509 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 510 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 511 | }, 512 | "peerDependenciesMeta": { 513 | "@types/react": { 514 | "optional": true 515 | }, 516 | "@types/react-dom": { 517 | "optional": true 518 | } 519 | } 520 | }, 521 | "node_modules/@radix-ui/react-popper": { 522 | "version": "1.2.1", 523 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-popper/-/react-popper-1.2.1.tgz", 524 | "integrity": "sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==", 525 | "license": "MIT", 526 | "dependencies": { 527 | "@floating-ui/react-dom": "^2.0.0", 528 | "@radix-ui/react-arrow": "1.1.1", 529 | "@radix-ui/react-compose-refs": "1.1.1", 530 | "@radix-ui/react-context": "1.1.1", 531 | "@radix-ui/react-primitive": "2.0.1", 532 | "@radix-ui/react-use-callback-ref": "1.1.0", 533 | "@radix-ui/react-use-layout-effect": "1.1.0", 534 | "@radix-ui/react-use-rect": "1.1.0", 535 | "@radix-ui/react-use-size": "1.1.0", 536 | "@radix-ui/rect": "1.1.0" 537 | }, 538 | "peerDependencies": { 539 | "@types/react": "*", 540 | "@types/react-dom": "*", 541 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 542 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 543 | }, 544 | "peerDependenciesMeta": { 545 | "@types/react": { 546 | "optional": true 547 | }, 548 | "@types/react-dom": { 549 | "optional": true 550 | } 551 | } 552 | }, 553 | "node_modules/@radix-ui/react-portal": { 554 | "version": "1.1.3", 555 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-portal/-/react-portal-1.1.3.tgz", 556 | "integrity": "sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==", 557 | "license": "MIT", 558 | "dependencies": { 559 | "@radix-ui/react-primitive": "2.0.1", 560 | "@radix-ui/react-use-layout-effect": "1.1.0" 561 | }, 562 | "peerDependencies": { 563 | "@types/react": "*", 564 | "@types/react-dom": "*", 565 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 566 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 567 | }, 568 | "peerDependenciesMeta": { 569 | "@types/react": { 570 | "optional": true 571 | }, 572 | "@types/react-dom": { 573 | "optional": true 574 | } 575 | } 576 | }, 577 | "node_modules/@radix-ui/react-presence": { 578 | "version": "1.1.2", 579 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-presence/-/react-presence-1.1.2.tgz", 580 | "integrity": "sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==", 581 | "license": "MIT", 582 | "dependencies": { 583 | "@radix-ui/react-compose-refs": "1.1.1", 584 | "@radix-ui/react-use-layout-effect": "1.1.0" 585 | }, 586 | "peerDependencies": { 587 | "@types/react": "*", 588 | "@types/react-dom": "*", 589 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 590 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 591 | }, 592 | "peerDependenciesMeta": { 593 | "@types/react": { 594 | "optional": true 595 | }, 596 | "@types/react-dom": { 597 | "optional": true 598 | } 599 | } 600 | }, 601 | "node_modules/@radix-ui/react-primitive": { 602 | "version": "2.0.1", 603 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-primitive/-/react-primitive-2.0.1.tgz", 604 | "integrity": "sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==", 605 | "license": "MIT", 606 | "dependencies": { 607 | "@radix-ui/react-slot": "1.1.1" 608 | }, 609 | "peerDependencies": { 610 | "@types/react": "*", 611 | "@types/react-dom": "*", 612 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 613 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 614 | }, 615 | "peerDependenciesMeta": { 616 | "@types/react": { 617 | "optional": true 618 | }, 619 | "@types/react-dom": { 620 | "optional": true 621 | } 622 | } 623 | }, 624 | "node_modules/@radix-ui/react-roving-focus": { 625 | "version": "1.1.1", 626 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.1.tgz", 627 | "integrity": "sha512-QE1RoxPGJ/Nm8Qmk0PxP8ojmoaS67i0s7hVssS7KuI2FQoc/uzVlZsqKfQvxPE6D8hICCPHJ4D88zNhT3OOmkw==", 628 | "license": "MIT", 629 | "dependencies": { 630 | "@radix-ui/primitive": "1.1.1", 631 | "@radix-ui/react-collection": "1.1.1", 632 | "@radix-ui/react-compose-refs": "1.1.1", 633 | "@radix-ui/react-context": "1.1.1", 634 | "@radix-ui/react-direction": "1.1.0", 635 | "@radix-ui/react-id": "1.1.0", 636 | "@radix-ui/react-primitive": "2.0.1", 637 | "@radix-ui/react-use-callback-ref": "1.1.0", 638 | "@radix-ui/react-use-controllable-state": "1.1.0" 639 | }, 640 | "peerDependencies": { 641 | "@types/react": "*", 642 | "@types/react-dom": "*", 643 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 644 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 645 | }, 646 | "peerDependenciesMeta": { 647 | "@types/react": { 648 | "optional": true 649 | }, 650 | "@types/react-dom": { 651 | "optional": true 652 | } 653 | } 654 | }, 655 | "node_modules/@radix-ui/react-select": { 656 | "version": "2.1.4", 657 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-select/-/react-select-2.1.4.tgz", 658 | "integrity": "sha512-pOkb2u8KgO47j/h7AylCj7dJsm69BXcjkrvTqMptFqsE2i0p8lHkfgneXKjAgPzBMivnoMyt8o4KiV4wYzDdyQ==", 659 | "license": "MIT", 660 | "dependencies": { 661 | "@radix-ui/number": "1.1.0", 662 | "@radix-ui/primitive": "1.1.1", 663 | "@radix-ui/react-collection": "1.1.1", 664 | "@radix-ui/react-compose-refs": "1.1.1", 665 | "@radix-ui/react-context": "1.1.1", 666 | "@radix-ui/react-direction": "1.1.0", 667 | "@radix-ui/react-dismissable-layer": "1.1.3", 668 | "@radix-ui/react-focus-guards": "1.1.1", 669 | "@radix-ui/react-focus-scope": "1.1.1", 670 | "@radix-ui/react-id": "1.1.0", 671 | "@radix-ui/react-popper": "1.2.1", 672 | "@radix-ui/react-portal": "1.1.3", 673 | "@radix-ui/react-primitive": "2.0.1", 674 | "@radix-ui/react-slot": "1.1.1", 675 | "@radix-ui/react-use-callback-ref": "1.1.0", 676 | "@radix-ui/react-use-controllable-state": "1.1.0", 677 | "@radix-ui/react-use-layout-effect": "1.1.0", 678 | "@radix-ui/react-use-previous": "1.1.0", 679 | "@radix-ui/react-visually-hidden": "1.1.1", 680 | "aria-hidden": "^1.1.1", 681 | "react-remove-scroll": "^2.6.1" 682 | }, 683 | "peerDependencies": { 684 | "@types/react": "*", 685 | "@types/react-dom": "*", 686 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 687 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 688 | }, 689 | "peerDependenciesMeta": { 690 | "@types/react": { 691 | "optional": true 692 | }, 693 | "@types/react-dom": { 694 | "optional": true 695 | } 696 | } 697 | }, 698 | "node_modules/@radix-ui/react-slot": { 699 | "version": "1.1.1", 700 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-slot/-/react-slot-1.1.1.tgz", 701 | "integrity": "sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==", 702 | "license": "MIT", 703 | "dependencies": { 704 | "@radix-ui/react-compose-refs": "1.1.1" 705 | }, 706 | "peerDependencies": { 707 | "@types/react": "*", 708 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 709 | }, 710 | "peerDependenciesMeta": { 711 | "@types/react": { 712 | "optional": true 713 | } 714 | } 715 | }, 716 | "node_modules/@radix-ui/react-tabs": { 717 | "version": "1.1.2", 718 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-tabs/-/react-tabs-1.1.2.tgz", 719 | "integrity": "sha512-9u/tQJMcC2aGq7KXpGivMm1mgq7oRJKXphDwdypPd/j21j/2znamPU8WkXgnhUaTrSFNIt8XhOyCAupg8/GbwQ==", 720 | "license": "MIT", 721 | "dependencies": { 722 | "@radix-ui/primitive": "1.1.1", 723 | "@radix-ui/react-context": "1.1.1", 724 | "@radix-ui/react-direction": "1.1.0", 725 | "@radix-ui/react-id": "1.1.0", 726 | "@radix-ui/react-presence": "1.1.2", 727 | "@radix-ui/react-primitive": "2.0.1", 728 | "@radix-ui/react-roving-focus": "1.1.1", 729 | "@radix-ui/react-use-controllable-state": "1.1.0" 730 | }, 731 | "peerDependencies": { 732 | "@types/react": "*", 733 | "@types/react-dom": "*", 734 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 735 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 736 | }, 737 | "peerDependenciesMeta": { 738 | "@types/react": { 739 | "optional": true 740 | }, 741 | "@types/react-dom": { 742 | "optional": true 743 | } 744 | } 745 | }, 746 | "node_modules/@radix-ui/react-use-callback-ref": { 747 | "version": "1.1.0", 748 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz", 749 | "integrity": "sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==", 750 | "license": "MIT", 751 | "peerDependencies": { 752 | "@types/react": "*", 753 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 754 | }, 755 | "peerDependenciesMeta": { 756 | "@types/react": { 757 | "optional": true 758 | } 759 | } 760 | }, 761 | "node_modules/@radix-ui/react-use-controllable-state": { 762 | "version": "1.1.0", 763 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz", 764 | "integrity": "sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==", 765 | "license": "MIT", 766 | "dependencies": { 767 | "@radix-ui/react-use-callback-ref": "1.1.0" 768 | }, 769 | "peerDependencies": { 770 | "@types/react": "*", 771 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 772 | }, 773 | "peerDependenciesMeta": { 774 | "@types/react": { 775 | "optional": true 776 | } 777 | } 778 | }, 779 | "node_modules/@radix-ui/react-use-escape-keydown": { 780 | "version": "1.1.0", 781 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.0.tgz", 782 | "integrity": "sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==", 783 | "license": "MIT", 784 | "dependencies": { 785 | "@radix-ui/react-use-callback-ref": "1.1.0" 786 | }, 787 | "peerDependencies": { 788 | "@types/react": "*", 789 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 790 | }, 791 | "peerDependenciesMeta": { 792 | "@types/react": { 793 | "optional": true 794 | } 795 | } 796 | }, 797 | "node_modules/@radix-ui/react-use-layout-effect": { 798 | "version": "1.1.0", 799 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.0.tgz", 800 | "integrity": "sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==", 801 | "license": "MIT", 802 | "peerDependencies": { 803 | "@types/react": "*", 804 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 805 | }, 806 | "peerDependenciesMeta": { 807 | "@types/react": { 808 | "optional": true 809 | } 810 | } 811 | }, 812 | "node_modules/@radix-ui/react-use-previous": { 813 | "version": "1.1.0", 814 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-use-previous/-/react-use-previous-1.1.0.tgz", 815 | "integrity": "sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==", 816 | "license": "MIT", 817 | "peerDependencies": { 818 | "@types/react": "*", 819 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 820 | }, 821 | "peerDependenciesMeta": { 822 | "@types/react": { 823 | "optional": true 824 | } 825 | } 826 | }, 827 | "node_modules/@radix-ui/react-use-rect": { 828 | "version": "1.1.0", 829 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-use-rect/-/react-use-rect-1.1.0.tgz", 830 | "integrity": "sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==", 831 | "license": "MIT", 832 | "dependencies": { 833 | "@radix-ui/rect": "1.1.0" 834 | }, 835 | "peerDependencies": { 836 | "@types/react": "*", 837 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 838 | }, 839 | "peerDependenciesMeta": { 840 | "@types/react": { 841 | "optional": true 842 | } 843 | } 844 | }, 845 | "node_modules/@radix-ui/react-use-size": { 846 | "version": "1.1.0", 847 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-use-size/-/react-use-size-1.1.0.tgz", 848 | "integrity": "sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==", 849 | "license": "MIT", 850 | "dependencies": { 851 | "@radix-ui/react-use-layout-effect": "1.1.0" 852 | }, 853 | "peerDependencies": { 854 | "@types/react": "*", 855 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 856 | }, 857 | "peerDependenciesMeta": { 858 | "@types/react": { 859 | "optional": true 860 | } 861 | } 862 | }, 863 | "node_modules/@radix-ui/react-visually-hidden": { 864 | "version": "1.1.1", 865 | "resolved": "https://registry.npmmirror.com/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.1.1.tgz", 866 | "integrity": "sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==", 867 | "license": "MIT", 868 | "dependencies": { 869 | "@radix-ui/react-primitive": "2.0.1" 870 | }, 871 | "peerDependencies": { 872 | "@types/react": "*", 873 | "@types/react-dom": "*", 874 | "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", 875 | "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" 876 | }, 877 | "peerDependenciesMeta": { 878 | "@types/react": { 879 | "optional": true 880 | }, 881 | "@types/react-dom": { 882 | "optional": true 883 | } 884 | } 885 | }, 886 | "node_modules/@radix-ui/rect": { 887 | "version": "1.1.0", 888 | "resolved": "https://registry.npmmirror.com/@radix-ui/rect/-/rect-1.1.0.tgz", 889 | "integrity": "sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==", 890 | "license": "MIT" 891 | }, 892 | "node_modules/@tsconfig/node10": { 893 | "version": "1.0.11", 894 | "resolved": "https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.11.tgz", 895 | "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", 896 | "license": "MIT" 897 | }, 898 | "node_modules/@tsconfig/node12": { 899 | "version": "1.0.11", 900 | "resolved": "https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz", 901 | "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", 902 | "license": "MIT" 903 | }, 904 | "node_modules/@tsconfig/node14": { 905 | "version": "1.0.3", 906 | "resolved": "https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz", 907 | "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", 908 | "license": "MIT" 909 | }, 910 | "node_modules/@tsconfig/node16": { 911 | "version": "1.0.4", 912 | "resolved": "https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz", 913 | "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", 914 | "license": "MIT" 915 | }, 916 | "node_modules/@types/axios": { 917 | "version": "0.14.4", 918 | "resolved": "https://registry.npmmirror.com/@types/axios/-/axios-0.14.4.tgz", 919 | "integrity": "sha512-9JgOaunvQdsQ/qW2OPmE5+hCeUB52lQSolecrFrthct55QekhmXEwT203s20RL+UHtCQc15y3VXpby9E7Kkh/g==", 920 | "deprecated": "This is a stub types definition. axios provides its own type definitions, so you do not need this installed.", 921 | "license": "MIT", 922 | "dependencies": { 923 | "axios": "*" 924 | } 925 | }, 926 | "node_modules/@types/node": { 927 | "version": "20.17.14", 928 | "resolved": "https://registry.npmmirror.com/@types/node/-/node-20.17.14.tgz", 929 | "integrity": "sha512-w6qdYetNL5KRBiSClK/KWai+2IMEJuAj+EujKCumalFOwXtvOXaEan9AuwcRID2IcOIAWSIfR495hBtgKlx2zg==", 930 | "license": "MIT", 931 | "dependencies": { 932 | "undici-types": "~6.19.2" 933 | } 934 | }, 935 | "node_modules/accepts": { 936 | "version": "1.3.8", 937 | "resolved": "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz", 938 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 939 | "license": "MIT", 940 | "dependencies": { 941 | "mime-types": "~2.1.34", 942 | "negotiator": "0.6.3" 943 | }, 944 | "engines": { 945 | "node": ">= 0.6" 946 | } 947 | }, 948 | "node_modules/acorn": { 949 | "version": "8.14.0", 950 | "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.14.0.tgz", 951 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 952 | "license": "MIT", 953 | "bin": { 954 | "acorn": "bin/acorn" 955 | }, 956 | "engines": { 957 | "node": ">=0.4.0" 958 | } 959 | }, 960 | "node_modules/acorn-walk": { 961 | "version": "8.3.4", 962 | "resolved": "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.3.4.tgz", 963 | "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", 964 | "license": "MIT", 965 | "dependencies": { 966 | "acorn": "^8.11.0" 967 | }, 968 | "engines": { 969 | "node": ">=0.4.0" 970 | } 971 | }, 972 | "node_modules/ansi-regex": { 973 | "version": "6.1.0", 974 | "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.1.0.tgz", 975 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 976 | "license": "MIT", 977 | "peer": true, 978 | "engines": { 979 | "node": ">=12" 980 | }, 981 | "funding": { 982 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 983 | } 984 | }, 985 | "node_modules/ansi-styles": { 986 | "version": "4.3.0", 987 | "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", 988 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 989 | "license": "MIT", 990 | "dependencies": { 991 | "color-convert": "^2.0.1" 992 | }, 993 | "engines": { 994 | "node": ">=8" 995 | }, 996 | "funding": { 997 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 998 | } 999 | }, 1000 | "node_modules/any-promise": { 1001 | "version": "1.3.0", 1002 | "resolved": "https://registry.npmmirror.com/any-promise/-/any-promise-1.3.0.tgz", 1003 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 1004 | "license": "MIT", 1005 | "peer": true 1006 | }, 1007 | "node_modules/anymatch": { 1008 | "version": "3.1.3", 1009 | "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz", 1010 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1011 | "license": "ISC", 1012 | "peer": true, 1013 | "dependencies": { 1014 | "normalize-path": "^3.0.0", 1015 | "picomatch": "^2.0.4" 1016 | }, 1017 | "engines": { 1018 | "node": ">= 8" 1019 | } 1020 | }, 1021 | "node_modules/arg": { 1022 | "version": "4.1.3", 1023 | "resolved": "https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz", 1024 | "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", 1025 | "license": "MIT" 1026 | }, 1027 | "node_modules/aria-hidden": { 1028 | "version": "1.2.4", 1029 | "resolved": "https://registry.npmmirror.com/aria-hidden/-/aria-hidden-1.2.4.tgz", 1030 | "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", 1031 | "license": "MIT", 1032 | "dependencies": { 1033 | "tslib": "^2.0.0" 1034 | }, 1035 | "engines": { 1036 | "node": ">=10" 1037 | } 1038 | }, 1039 | "node_modules/array-flatten": { 1040 | "version": "1.1.1", 1041 | "resolved": "https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz", 1042 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", 1043 | "license": "MIT" 1044 | }, 1045 | "node_modules/asynckit": { 1046 | "version": "0.4.0", 1047 | "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", 1048 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 1049 | "license": "MIT" 1050 | }, 1051 | "node_modules/axios": { 1052 | "version": "1.7.9", 1053 | "resolved": "https://registry.npmmirror.com/axios/-/axios-1.7.9.tgz", 1054 | "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", 1055 | "license": "MIT", 1056 | "dependencies": { 1057 | "follow-redirects": "^1.15.6", 1058 | "form-data": "^4.0.0", 1059 | "proxy-from-env": "^1.1.0" 1060 | } 1061 | }, 1062 | "node_modules/balanced-match": { 1063 | "version": "1.0.2", 1064 | "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", 1065 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1066 | "license": "MIT" 1067 | }, 1068 | "node_modules/binary-extensions": { 1069 | "version": "2.3.0", 1070 | "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.3.0.tgz", 1071 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 1072 | "license": "MIT", 1073 | "peer": true, 1074 | "engines": { 1075 | "node": ">=8" 1076 | }, 1077 | "funding": { 1078 | "url": "https://github.com/sponsors/sindresorhus" 1079 | } 1080 | }, 1081 | "node_modules/body-parser": { 1082 | "version": "1.20.3", 1083 | "resolved": "https://registry.npmmirror.com/body-parser/-/body-parser-1.20.3.tgz", 1084 | "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", 1085 | "license": "MIT", 1086 | "dependencies": { 1087 | "bytes": "3.1.2", 1088 | "content-type": "~1.0.5", 1089 | "debug": "2.6.9", 1090 | "depd": "2.0.0", 1091 | "destroy": "1.2.0", 1092 | "http-errors": "2.0.0", 1093 | "iconv-lite": "0.4.24", 1094 | "on-finished": "2.4.1", 1095 | "qs": "6.13.0", 1096 | "raw-body": "2.5.2", 1097 | "type-is": "~1.6.18", 1098 | "unpipe": "1.0.0" 1099 | }, 1100 | "engines": { 1101 | "node": ">= 0.8", 1102 | "npm": "1.2.8000 || >= 1.4.16" 1103 | } 1104 | }, 1105 | "node_modules/body-parser/node_modules/iconv-lite": { 1106 | "version": "0.4.24", 1107 | "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", 1108 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1109 | "license": "MIT", 1110 | "dependencies": { 1111 | "safer-buffer": ">= 2.1.2 < 3" 1112 | }, 1113 | "engines": { 1114 | "node": ">=0.10.0" 1115 | } 1116 | }, 1117 | "node_modules/body-parser/node_modules/raw-body": { 1118 | "version": "2.5.2", 1119 | "resolved": "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.2.tgz", 1120 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 1121 | "license": "MIT", 1122 | "dependencies": { 1123 | "bytes": "3.1.2", 1124 | "http-errors": "2.0.0", 1125 | "iconv-lite": "0.4.24", 1126 | "unpipe": "1.0.0" 1127 | }, 1128 | "engines": { 1129 | "node": ">= 0.8" 1130 | } 1131 | }, 1132 | "node_modules/brace-expansion": { 1133 | "version": "1.1.11", 1134 | "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", 1135 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1136 | "license": "MIT", 1137 | "dependencies": { 1138 | "balanced-match": "^1.0.0", 1139 | "concat-map": "0.0.1" 1140 | } 1141 | }, 1142 | "node_modules/braces": { 1143 | "version": "3.0.3", 1144 | "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz", 1145 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1146 | "license": "MIT", 1147 | "peer": true, 1148 | "dependencies": { 1149 | "fill-range": "^7.1.1" 1150 | }, 1151 | "engines": { 1152 | "node": ">=8" 1153 | } 1154 | }, 1155 | "node_modules/bytes": { 1156 | "version": "3.1.2", 1157 | "resolved": "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz", 1158 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 1159 | "license": "MIT", 1160 | "engines": { 1161 | "node": ">= 0.8" 1162 | } 1163 | }, 1164 | "node_modules/call-bind-apply-helpers": { 1165 | "version": "1.0.1", 1166 | "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", 1167 | "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", 1168 | "license": "MIT", 1169 | "dependencies": { 1170 | "es-errors": "^1.3.0", 1171 | "function-bind": "^1.1.2" 1172 | }, 1173 | "engines": { 1174 | "node": ">= 0.4" 1175 | } 1176 | }, 1177 | "node_modules/call-bound": { 1178 | "version": "1.0.3", 1179 | "resolved": "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.3.tgz", 1180 | "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", 1181 | "license": "MIT", 1182 | "dependencies": { 1183 | "call-bind-apply-helpers": "^1.0.1", 1184 | "get-intrinsic": "^1.2.6" 1185 | }, 1186 | "engines": { 1187 | "node": ">= 0.4" 1188 | }, 1189 | "funding": { 1190 | "url": "https://github.com/sponsors/ljharb" 1191 | } 1192 | }, 1193 | "node_modules/camelcase-css": { 1194 | "version": "2.0.1", 1195 | "resolved": "https://registry.npmmirror.com/camelcase-css/-/camelcase-css-2.0.1.tgz", 1196 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 1197 | "license": "MIT", 1198 | "peer": true, 1199 | "engines": { 1200 | "node": ">= 6" 1201 | } 1202 | }, 1203 | "node_modules/chalk": { 1204 | "version": "4.1.2", 1205 | "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", 1206 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1207 | "license": "MIT", 1208 | "dependencies": { 1209 | "ansi-styles": "^4.1.0", 1210 | "supports-color": "^7.1.0" 1211 | }, 1212 | "engines": { 1213 | "node": ">=10" 1214 | }, 1215 | "funding": { 1216 | "url": "https://github.com/chalk/chalk?sponsor=1" 1217 | } 1218 | }, 1219 | "node_modules/chalk/node_modules/supports-color": { 1220 | "version": "7.2.0", 1221 | "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", 1222 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1223 | "license": "MIT", 1224 | "dependencies": { 1225 | "has-flag": "^4.0.0" 1226 | }, 1227 | "engines": { 1228 | "node": ">=8" 1229 | } 1230 | }, 1231 | "node_modules/chokidar": { 1232 | "version": "3.6.0", 1233 | "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz", 1234 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1235 | "license": "MIT", 1236 | "peer": true, 1237 | "dependencies": { 1238 | "anymatch": "~3.1.2", 1239 | "braces": "~3.0.2", 1240 | "glob-parent": "~5.1.2", 1241 | "is-binary-path": "~2.1.0", 1242 | "is-glob": "~4.0.1", 1243 | "normalize-path": "~3.0.0", 1244 | "readdirp": "~3.6.0" 1245 | }, 1246 | "engines": { 1247 | "node": ">= 8.10.0" 1248 | }, 1249 | "funding": { 1250 | "url": "https://paulmillr.com/funding/" 1251 | }, 1252 | "optionalDependencies": { 1253 | "fsevents": "~2.3.2" 1254 | } 1255 | }, 1256 | "node_modules/chokidar/node_modules/glob-parent": { 1257 | "version": "5.1.2", 1258 | "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", 1259 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1260 | "license": "ISC", 1261 | "peer": true, 1262 | "dependencies": { 1263 | "is-glob": "^4.0.1" 1264 | }, 1265 | "engines": { 1266 | "node": ">= 6" 1267 | } 1268 | }, 1269 | "node_modules/class-variance-authority": { 1270 | "version": "0.7.1", 1271 | "resolved": "https://registry.npmmirror.com/class-variance-authority/-/class-variance-authority-0.7.1.tgz", 1272 | "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==", 1273 | "license": "Apache-2.0", 1274 | "dependencies": { 1275 | "clsx": "^2.1.1" 1276 | }, 1277 | "funding": { 1278 | "url": "https://polar.sh/cva" 1279 | } 1280 | }, 1281 | "node_modules/cliui": { 1282 | "version": "8.0.1", 1283 | "resolved": "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz", 1284 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1285 | "license": "ISC", 1286 | "dependencies": { 1287 | "string-width": "^4.2.0", 1288 | "strip-ansi": "^6.0.1", 1289 | "wrap-ansi": "^7.0.0" 1290 | }, 1291 | "engines": { 1292 | "node": ">=12" 1293 | } 1294 | }, 1295 | "node_modules/cliui/node_modules/ansi-regex": { 1296 | "version": "5.0.1", 1297 | "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", 1298 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1299 | "license": "MIT", 1300 | "engines": { 1301 | "node": ">=8" 1302 | } 1303 | }, 1304 | "node_modules/cliui/node_modules/emoji-regex": { 1305 | "version": "8.0.0", 1306 | "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", 1307 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1308 | "license": "MIT" 1309 | }, 1310 | "node_modules/cliui/node_modules/string-width": { 1311 | "version": "4.2.3", 1312 | "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", 1313 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1314 | "license": "MIT", 1315 | "dependencies": { 1316 | "emoji-regex": "^8.0.0", 1317 | "is-fullwidth-code-point": "^3.0.0", 1318 | "strip-ansi": "^6.0.1" 1319 | }, 1320 | "engines": { 1321 | "node": ">=8" 1322 | } 1323 | }, 1324 | "node_modules/cliui/node_modules/strip-ansi": { 1325 | "version": "6.0.1", 1326 | "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", 1327 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1328 | "license": "MIT", 1329 | "dependencies": { 1330 | "ansi-regex": "^5.0.1" 1331 | }, 1332 | "engines": { 1333 | "node": ">=8" 1334 | } 1335 | }, 1336 | "node_modules/cliui/node_modules/wrap-ansi": { 1337 | "version": "7.0.0", 1338 | "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 1339 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 1340 | "license": "MIT", 1341 | "dependencies": { 1342 | "ansi-styles": "^4.0.0", 1343 | "string-width": "^4.1.0", 1344 | "strip-ansi": "^6.0.0" 1345 | }, 1346 | "engines": { 1347 | "node": ">=10" 1348 | }, 1349 | "funding": { 1350 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 1351 | } 1352 | }, 1353 | "node_modules/clsx": { 1354 | "version": "2.1.1", 1355 | "resolved": "https://registry.npmmirror.com/clsx/-/clsx-2.1.1.tgz", 1356 | "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 1357 | "license": "MIT", 1358 | "engines": { 1359 | "node": ">=6" 1360 | } 1361 | }, 1362 | "node_modules/color-convert": { 1363 | "version": "2.0.1", 1364 | "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", 1365 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1366 | "license": "MIT", 1367 | "dependencies": { 1368 | "color-name": "~1.1.4" 1369 | }, 1370 | "engines": { 1371 | "node": ">=7.0.0" 1372 | } 1373 | }, 1374 | "node_modules/color-name": { 1375 | "version": "1.1.4", 1376 | "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", 1377 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1378 | "license": "MIT" 1379 | }, 1380 | "node_modules/combined-stream": { 1381 | "version": "1.0.8", 1382 | "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", 1383 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1384 | "license": "MIT", 1385 | "dependencies": { 1386 | "delayed-stream": "~1.0.0" 1387 | }, 1388 | "engines": { 1389 | "node": ">= 0.8" 1390 | } 1391 | }, 1392 | "node_modules/commander": { 1393 | "version": "4.1.1", 1394 | "resolved": "https://registry.npmmirror.com/commander/-/commander-4.1.1.tgz", 1395 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1396 | "license": "MIT", 1397 | "peer": true, 1398 | "engines": { 1399 | "node": ">= 6" 1400 | } 1401 | }, 1402 | "node_modules/concat-map": { 1403 | "version": "0.0.1", 1404 | "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", 1405 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1406 | "license": "MIT" 1407 | }, 1408 | "node_modules/concurrently": { 1409 | "version": "9.1.2", 1410 | "resolved": "https://registry.npmmirror.com/concurrently/-/concurrently-9.1.2.tgz", 1411 | "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", 1412 | "license": "MIT", 1413 | "dependencies": { 1414 | "chalk": "^4.1.2", 1415 | "lodash": "^4.17.21", 1416 | "rxjs": "^7.8.1", 1417 | "shell-quote": "^1.8.1", 1418 | "supports-color": "^8.1.1", 1419 | "tree-kill": "^1.2.2", 1420 | "yargs": "^17.7.2" 1421 | }, 1422 | "bin": { 1423 | "conc": "dist/bin/concurrently.js", 1424 | "concurrently": "dist/bin/concurrently.js" 1425 | }, 1426 | "engines": { 1427 | "node": ">=18" 1428 | }, 1429 | "funding": { 1430 | "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" 1431 | } 1432 | }, 1433 | "node_modules/content-disposition": { 1434 | "version": "0.5.4", 1435 | "resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz", 1436 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 1437 | "license": "MIT", 1438 | "dependencies": { 1439 | "safe-buffer": "5.2.1" 1440 | }, 1441 | "engines": { 1442 | "node": ">= 0.6" 1443 | } 1444 | }, 1445 | "node_modules/content-type": { 1446 | "version": "1.0.5", 1447 | "resolved": "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz", 1448 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 1449 | "license": "MIT", 1450 | "engines": { 1451 | "node": ">= 0.6" 1452 | } 1453 | }, 1454 | "node_modules/cookie": { 1455 | "version": "0.7.1", 1456 | "resolved": "https://registry.npmmirror.com/cookie/-/cookie-0.7.1.tgz", 1457 | "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", 1458 | "license": "MIT", 1459 | "engines": { 1460 | "node": ">= 0.6" 1461 | } 1462 | }, 1463 | "node_modules/cookie-signature": { 1464 | "version": "1.0.6", 1465 | "resolved": "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz", 1466 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", 1467 | "license": "MIT" 1468 | }, 1469 | "node_modules/cors": { 1470 | "version": "2.8.5", 1471 | "resolved": "https://registry.npmmirror.com/cors/-/cors-2.8.5.tgz", 1472 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 1473 | "license": "MIT", 1474 | "dependencies": { 1475 | "object-assign": "^4", 1476 | "vary": "^1" 1477 | }, 1478 | "engines": { 1479 | "node": ">= 0.10" 1480 | } 1481 | }, 1482 | "node_modules/create-require": { 1483 | "version": "1.1.1", 1484 | "resolved": "https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz", 1485 | "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", 1486 | "license": "MIT" 1487 | }, 1488 | "node_modules/cross-spawn": { 1489 | "version": "7.0.6", 1490 | "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz", 1491 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1492 | "license": "MIT", 1493 | "peer": true, 1494 | "dependencies": { 1495 | "path-key": "^3.1.0", 1496 | "shebang-command": "^2.0.0", 1497 | "which": "^2.0.1" 1498 | }, 1499 | "engines": { 1500 | "node": ">= 8" 1501 | } 1502 | }, 1503 | "node_modules/cssesc": { 1504 | "version": "3.0.0", 1505 | "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", 1506 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1507 | "license": "MIT", 1508 | "peer": true, 1509 | "bin": { 1510 | "cssesc": "bin/cssesc" 1511 | }, 1512 | "engines": { 1513 | "node": ">=4" 1514 | } 1515 | }, 1516 | "node_modules/debug": { 1517 | "version": "2.6.9", 1518 | "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz", 1519 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1520 | "license": "MIT", 1521 | "dependencies": { 1522 | "ms": "2.0.0" 1523 | } 1524 | }, 1525 | "node_modules/delayed-stream": { 1526 | "version": "1.0.0", 1527 | "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", 1528 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1529 | "license": "MIT", 1530 | "engines": { 1531 | "node": ">=0.4.0" 1532 | } 1533 | }, 1534 | "node_modules/depd": { 1535 | "version": "2.0.0", 1536 | "resolved": "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz", 1537 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 1538 | "license": "MIT", 1539 | "engines": { 1540 | "node": ">= 0.8" 1541 | } 1542 | }, 1543 | "node_modules/destroy": { 1544 | "version": "1.2.0", 1545 | "resolved": "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz", 1546 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 1547 | "license": "MIT", 1548 | "engines": { 1549 | "node": ">= 0.8", 1550 | "npm": "1.2.8000 || >= 1.4.16" 1551 | } 1552 | }, 1553 | "node_modules/detect-node-es": { 1554 | "version": "1.1.0", 1555 | "resolved": "https://registry.npmmirror.com/detect-node-es/-/detect-node-es-1.1.0.tgz", 1556 | "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", 1557 | "license": "MIT" 1558 | }, 1559 | "node_modules/didyoumean": { 1560 | "version": "1.2.2", 1561 | "resolved": "https://registry.npmmirror.com/didyoumean/-/didyoumean-1.2.2.tgz", 1562 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 1563 | "license": "Apache-2.0", 1564 | "peer": true 1565 | }, 1566 | "node_modules/diff": { 1567 | "version": "4.0.2", 1568 | "resolved": "https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz", 1569 | "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", 1570 | "license": "BSD-3-Clause", 1571 | "engines": { 1572 | "node": ">=0.3.1" 1573 | } 1574 | }, 1575 | "node_modules/dlv": { 1576 | "version": "1.1.3", 1577 | "resolved": "https://registry.npmmirror.com/dlv/-/dlv-1.1.3.tgz", 1578 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 1579 | "license": "MIT", 1580 | "peer": true 1581 | }, 1582 | "node_modules/dunder-proto": { 1583 | "version": "1.0.1", 1584 | "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz", 1585 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 1586 | "license": "MIT", 1587 | "dependencies": { 1588 | "call-bind-apply-helpers": "^1.0.1", 1589 | "es-errors": "^1.3.0", 1590 | "gopd": "^1.2.0" 1591 | }, 1592 | "engines": { 1593 | "node": ">= 0.4" 1594 | } 1595 | }, 1596 | "node_modules/eastasianwidth": { 1597 | "version": "0.2.0", 1598 | "resolved": "https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1599 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1600 | "license": "MIT", 1601 | "peer": true 1602 | }, 1603 | "node_modules/ee-first": { 1604 | "version": "1.1.1", 1605 | "resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz", 1606 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 1607 | "license": "MIT" 1608 | }, 1609 | "node_modules/emoji-regex": { 1610 | "version": "9.2.2", 1611 | "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz", 1612 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1613 | "license": "MIT", 1614 | "peer": true 1615 | }, 1616 | "node_modules/encodeurl": { 1617 | "version": "2.0.0", 1618 | "resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-2.0.0.tgz", 1619 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 1620 | "license": "MIT", 1621 | "engines": { 1622 | "node": ">= 0.8" 1623 | } 1624 | }, 1625 | "node_modules/es-define-property": { 1626 | "version": "1.0.1", 1627 | "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz", 1628 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1629 | "license": "MIT", 1630 | "engines": { 1631 | "node": ">= 0.4" 1632 | } 1633 | }, 1634 | "node_modules/es-errors": { 1635 | "version": "1.3.0", 1636 | "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz", 1637 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1638 | "license": "MIT", 1639 | "engines": { 1640 | "node": ">= 0.4" 1641 | } 1642 | }, 1643 | "node_modules/es-object-atoms": { 1644 | "version": "1.1.1", 1645 | "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 1646 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 1647 | "license": "MIT", 1648 | "dependencies": { 1649 | "es-errors": "^1.3.0" 1650 | }, 1651 | "engines": { 1652 | "node": ">= 0.4" 1653 | } 1654 | }, 1655 | "node_modules/escalade": { 1656 | "version": "3.2.0", 1657 | "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz", 1658 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1659 | "license": "MIT", 1660 | "engines": { 1661 | "node": ">=6" 1662 | } 1663 | }, 1664 | "node_modules/escape-html": { 1665 | "version": "1.0.3", 1666 | "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz", 1667 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 1668 | "license": "MIT" 1669 | }, 1670 | "node_modules/etag": { 1671 | "version": "1.8.1", 1672 | "resolved": "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz", 1673 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 1674 | "license": "MIT", 1675 | "engines": { 1676 | "node": ">= 0.6" 1677 | } 1678 | }, 1679 | "node_modules/eventsource": { 1680 | "version": "2.0.2", 1681 | "resolved": "https://registry.npmmirror.com/eventsource/-/eventsource-2.0.2.tgz", 1682 | "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", 1683 | "license": "MIT", 1684 | "engines": { 1685 | "node": ">=12.0.0" 1686 | } 1687 | }, 1688 | "node_modules/express": { 1689 | "version": "4.21.2", 1690 | "resolved": "https://registry.npmmirror.com/express/-/express-4.21.2.tgz", 1691 | "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", 1692 | "license": "MIT", 1693 | "dependencies": { 1694 | "accepts": "~1.3.8", 1695 | "array-flatten": "1.1.1", 1696 | "body-parser": "1.20.3", 1697 | "content-disposition": "0.5.4", 1698 | "content-type": "~1.0.4", 1699 | "cookie": "0.7.1", 1700 | "cookie-signature": "1.0.6", 1701 | "debug": "2.6.9", 1702 | "depd": "2.0.0", 1703 | "encodeurl": "~2.0.0", 1704 | "escape-html": "~1.0.3", 1705 | "etag": "~1.8.1", 1706 | "finalhandler": "1.3.1", 1707 | "fresh": "0.5.2", 1708 | "http-errors": "2.0.0", 1709 | "merge-descriptors": "1.0.3", 1710 | "methods": "~1.1.2", 1711 | "on-finished": "2.4.1", 1712 | "parseurl": "~1.3.3", 1713 | "path-to-regexp": "0.1.12", 1714 | "proxy-addr": "~2.0.7", 1715 | "qs": "6.13.0", 1716 | "range-parser": "~1.2.1", 1717 | "safe-buffer": "5.2.1", 1718 | "send": "0.19.0", 1719 | "serve-static": "1.16.2", 1720 | "setprototypeof": "1.2.0", 1721 | "statuses": "2.0.1", 1722 | "type-is": "~1.6.18", 1723 | "utils-merge": "1.0.1", 1724 | "vary": "~1.1.2" 1725 | }, 1726 | "engines": { 1727 | "node": ">= 0.10.0" 1728 | }, 1729 | "funding": { 1730 | "type": "opencollective", 1731 | "url": "https://opencollective.com/express" 1732 | } 1733 | }, 1734 | "node_modules/fast-glob": { 1735 | "version": "3.3.3", 1736 | "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz", 1737 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 1738 | "license": "MIT", 1739 | "peer": true, 1740 | "dependencies": { 1741 | "@nodelib/fs.stat": "^2.0.2", 1742 | "@nodelib/fs.walk": "^1.2.3", 1743 | "glob-parent": "^5.1.2", 1744 | "merge2": "^1.3.0", 1745 | "micromatch": "^4.0.8" 1746 | }, 1747 | "engines": { 1748 | "node": ">=8.6.0" 1749 | } 1750 | }, 1751 | "node_modules/fast-glob/node_modules/glob-parent": { 1752 | "version": "5.1.2", 1753 | "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", 1754 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1755 | "license": "ISC", 1756 | "peer": true, 1757 | "dependencies": { 1758 | "is-glob": "^4.0.1" 1759 | }, 1760 | "engines": { 1761 | "node": ">= 6" 1762 | } 1763 | }, 1764 | "node_modules/fastq": { 1765 | "version": "1.18.0", 1766 | "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.18.0.tgz", 1767 | "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==", 1768 | "license": "ISC", 1769 | "peer": true, 1770 | "dependencies": { 1771 | "reusify": "^1.0.4" 1772 | } 1773 | }, 1774 | "node_modules/fill-range": { 1775 | "version": "7.1.1", 1776 | "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz", 1777 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1778 | "license": "MIT", 1779 | "peer": true, 1780 | "dependencies": { 1781 | "to-regex-range": "^5.0.1" 1782 | }, 1783 | "engines": { 1784 | "node": ">=8" 1785 | } 1786 | }, 1787 | "node_modules/finalhandler": { 1788 | "version": "1.3.1", 1789 | "resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.3.1.tgz", 1790 | "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", 1791 | "license": "MIT", 1792 | "dependencies": { 1793 | "debug": "2.6.9", 1794 | "encodeurl": "~2.0.0", 1795 | "escape-html": "~1.0.3", 1796 | "on-finished": "2.4.1", 1797 | "parseurl": "~1.3.3", 1798 | "statuses": "2.0.1", 1799 | "unpipe": "~1.0.0" 1800 | }, 1801 | "engines": { 1802 | "node": ">= 0.8" 1803 | } 1804 | }, 1805 | "node_modules/follow-redirects": { 1806 | "version": "1.15.9", 1807 | "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.9.tgz", 1808 | "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", 1809 | "funding": [ 1810 | { 1811 | "type": "individual", 1812 | "url": "https://github.com/sponsors/RubenVerborgh" 1813 | } 1814 | ], 1815 | "license": "MIT", 1816 | "engines": { 1817 | "node": ">=4.0" 1818 | }, 1819 | "peerDependenciesMeta": { 1820 | "debug": { 1821 | "optional": true 1822 | } 1823 | } 1824 | }, 1825 | "node_modules/foreground-child": { 1826 | "version": "3.3.0", 1827 | "resolved": "https://registry.npmmirror.com/foreground-child/-/foreground-child-3.3.0.tgz", 1828 | "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 1829 | "license": "ISC", 1830 | "peer": true, 1831 | "dependencies": { 1832 | "cross-spawn": "^7.0.0", 1833 | "signal-exit": "^4.0.1" 1834 | }, 1835 | "engines": { 1836 | "node": ">=14" 1837 | }, 1838 | "funding": { 1839 | "url": "https://github.com/sponsors/isaacs" 1840 | } 1841 | }, 1842 | "node_modules/form-data": { 1843 | "version": "4.0.1", 1844 | "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.1.tgz", 1845 | "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", 1846 | "license": "MIT", 1847 | "dependencies": { 1848 | "asynckit": "^0.4.0", 1849 | "combined-stream": "^1.0.8", 1850 | "mime-types": "^2.1.12" 1851 | }, 1852 | "engines": { 1853 | "node": ">= 6" 1854 | } 1855 | }, 1856 | "node_modules/forwarded": { 1857 | "version": "0.2.0", 1858 | "resolved": "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz", 1859 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 1860 | "license": "MIT", 1861 | "engines": { 1862 | "node": ">= 0.6" 1863 | } 1864 | }, 1865 | "node_modules/fresh": { 1866 | "version": "0.5.2", 1867 | "resolved": "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz", 1868 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 1869 | "license": "MIT", 1870 | "engines": { 1871 | "node": ">= 0.6" 1872 | } 1873 | }, 1874 | "node_modules/fsevents": { 1875 | "version": "2.3.3", 1876 | "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", 1877 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1878 | "hasInstallScript": true, 1879 | "license": "MIT", 1880 | "optional": true, 1881 | "os": [ 1882 | "darwin" 1883 | ], 1884 | "peer": true, 1885 | "engines": { 1886 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1887 | } 1888 | }, 1889 | "node_modules/function-bind": { 1890 | "version": "1.1.2", 1891 | "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz", 1892 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1893 | "license": "MIT", 1894 | "funding": { 1895 | "url": "https://github.com/sponsors/ljharb" 1896 | } 1897 | }, 1898 | "node_modules/get-caller-file": { 1899 | "version": "2.0.5", 1900 | "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", 1901 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1902 | "license": "ISC", 1903 | "engines": { 1904 | "node": "6.* || 8.* || >= 10.*" 1905 | } 1906 | }, 1907 | "node_modules/get-intrinsic": { 1908 | "version": "1.2.7", 1909 | "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.7.tgz", 1910 | "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", 1911 | "license": "MIT", 1912 | "dependencies": { 1913 | "call-bind-apply-helpers": "^1.0.1", 1914 | "es-define-property": "^1.0.1", 1915 | "es-errors": "^1.3.0", 1916 | "es-object-atoms": "^1.0.0", 1917 | "function-bind": "^1.1.2", 1918 | "get-proto": "^1.0.0", 1919 | "gopd": "^1.2.0", 1920 | "has-symbols": "^1.1.0", 1921 | "hasown": "^2.0.2", 1922 | "math-intrinsics": "^1.1.0" 1923 | }, 1924 | "engines": { 1925 | "node": ">= 0.4" 1926 | }, 1927 | "funding": { 1928 | "url": "https://github.com/sponsors/ljharb" 1929 | } 1930 | }, 1931 | "node_modules/get-nonce": { 1932 | "version": "1.0.1", 1933 | "resolved": "https://registry.npmmirror.com/get-nonce/-/get-nonce-1.0.1.tgz", 1934 | "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", 1935 | "license": "MIT", 1936 | "engines": { 1937 | "node": ">=6" 1938 | } 1939 | }, 1940 | "node_modules/get-proto": { 1941 | "version": "1.0.1", 1942 | "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz", 1943 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 1944 | "license": "MIT", 1945 | "dependencies": { 1946 | "dunder-proto": "^1.0.1", 1947 | "es-object-atoms": "^1.0.0" 1948 | }, 1949 | "engines": { 1950 | "node": ">= 0.4" 1951 | } 1952 | }, 1953 | "node_modules/glob": { 1954 | "version": "10.4.5", 1955 | "resolved": "https://registry.npmmirror.com/glob/-/glob-10.4.5.tgz", 1956 | "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 1957 | "license": "ISC", 1958 | "peer": true, 1959 | "dependencies": { 1960 | "foreground-child": "^3.1.0", 1961 | "jackspeak": "^3.1.2", 1962 | "minimatch": "^9.0.4", 1963 | "minipass": "^7.1.2", 1964 | "package-json-from-dist": "^1.0.0", 1965 | "path-scurry": "^1.11.1" 1966 | }, 1967 | "bin": { 1968 | "glob": "dist/esm/bin.mjs" 1969 | }, 1970 | "funding": { 1971 | "url": "https://github.com/sponsors/isaacs" 1972 | } 1973 | }, 1974 | "node_modules/glob-parent": { 1975 | "version": "6.0.2", 1976 | "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz", 1977 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1978 | "license": "ISC", 1979 | "peer": true, 1980 | "dependencies": { 1981 | "is-glob": "^4.0.3" 1982 | }, 1983 | "engines": { 1984 | "node": ">=10.13.0" 1985 | } 1986 | }, 1987 | "node_modules/glob/node_modules/brace-expansion": { 1988 | "version": "2.0.1", 1989 | "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz", 1990 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1991 | "license": "MIT", 1992 | "peer": true, 1993 | "dependencies": { 1994 | "balanced-match": "^1.0.0" 1995 | } 1996 | }, 1997 | "node_modules/glob/node_modules/minimatch": { 1998 | "version": "9.0.5", 1999 | "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz", 2000 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2001 | "license": "ISC", 2002 | "peer": true, 2003 | "dependencies": { 2004 | "brace-expansion": "^2.0.1" 2005 | }, 2006 | "engines": { 2007 | "node": ">=16 || 14 >=14.17" 2008 | }, 2009 | "funding": { 2010 | "url": "https://github.com/sponsors/isaacs" 2011 | } 2012 | }, 2013 | "node_modules/gopd": { 2014 | "version": "1.2.0", 2015 | "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz", 2016 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 2017 | "license": "MIT", 2018 | "engines": { 2019 | "node": ">= 0.4" 2020 | }, 2021 | "funding": { 2022 | "url": "https://github.com/sponsors/ljharb" 2023 | } 2024 | }, 2025 | "node_modules/has-flag": { 2026 | "version": "4.0.0", 2027 | "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", 2028 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2029 | "license": "MIT", 2030 | "engines": { 2031 | "node": ">=8" 2032 | } 2033 | }, 2034 | "node_modules/has-symbols": { 2035 | "version": "1.1.0", 2036 | "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz", 2037 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 2038 | "license": "MIT", 2039 | "engines": { 2040 | "node": ">= 0.4" 2041 | }, 2042 | "funding": { 2043 | "url": "https://github.com/sponsors/ljharb" 2044 | } 2045 | }, 2046 | "node_modules/hasown": { 2047 | "version": "2.0.2", 2048 | "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz", 2049 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2050 | "license": "MIT", 2051 | "dependencies": { 2052 | "function-bind": "^1.1.2" 2053 | }, 2054 | "engines": { 2055 | "node": ">= 0.4" 2056 | } 2057 | }, 2058 | "node_modules/http-errors": { 2059 | "version": "2.0.0", 2060 | "resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.0.tgz", 2061 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 2062 | "license": "MIT", 2063 | "dependencies": { 2064 | "depd": "2.0.0", 2065 | "inherits": "2.0.4", 2066 | "setprototypeof": "1.2.0", 2067 | "statuses": "2.0.1", 2068 | "toidentifier": "1.0.1" 2069 | }, 2070 | "engines": { 2071 | "node": ">= 0.8" 2072 | } 2073 | }, 2074 | "node_modules/iconv-lite": { 2075 | "version": "0.6.3", 2076 | "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz", 2077 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 2078 | "license": "MIT", 2079 | "dependencies": { 2080 | "safer-buffer": ">= 2.1.2 < 3.0.0" 2081 | }, 2082 | "engines": { 2083 | "node": ">=0.10.0" 2084 | } 2085 | }, 2086 | "node_modules/inherits": { 2087 | "version": "2.0.4", 2088 | "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", 2089 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2090 | "license": "ISC" 2091 | }, 2092 | "node_modules/ipaddr.js": { 2093 | "version": "1.9.1", 2094 | "resolved": "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 2095 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 2096 | "license": "MIT", 2097 | "engines": { 2098 | "node": ">= 0.10" 2099 | } 2100 | }, 2101 | "node_modules/is-binary-path": { 2102 | "version": "2.1.0", 2103 | "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", 2104 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2105 | "license": "MIT", 2106 | "peer": true, 2107 | "dependencies": { 2108 | "binary-extensions": "^2.0.0" 2109 | }, 2110 | "engines": { 2111 | "node": ">=8" 2112 | } 2113 | }, 2114 | "node_modules/is-core-module": { 2115 | "version": "2.16.1", 2116 | "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.16.1.tgz", 2117 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 2118 | "license": "MIT", 2119 | "peer": true, 2120 | "dependencies": { 2121 | "hasown": "^2.0.2" 2122 | }, 2123 | "engines": { 2124 | "node": ">= 0.4" 2125 | }, 2126 | "funding": { 2127 | "url": "https://github.com/sponsors/ljharb" 2128 | } 2129 | }, 2130 | "node_modules/is-extglob": { 2131 | "version": "2.1.1", 2132 | "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", 2133 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2134 | "license": "MIT", 2135 | "peer": true, 2136 | "engines": { 2137 | "node": ">=0.10.0" 2138 | } 2139 | }, 2140 | "node_modules/is-fullwidth-code-point": { 2141 | "version": "3.0.0", 2142 | "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2143 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2144 | "license": "MIT", 2145 | "engines": { 2146 | "node": ">=8" 2147 | } 2148 | }, 2149 | "node_modules/is-glob": { 2150 | "version": "4.0.3", 2151 | "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", 2152 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2153 | "license": "MIT", 2154 | "peer": true, 2155 | "dependencies": { 2156 | "is-extglob": "^2.1.1" 2157 | }, 2158 | "engines": { 2159 | "node": ">=0.10.0" 2160 | } 2161 | }, 2162 | "node_modules/is-number": { 2163 | "version": "7.0.0", 2164 | "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", 2165 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2166 | "license": "MIT", 2167 | "peer": true, 2168 | "engines": { 2169 | "node": ">=0.12.0" 2170 | } 2171 | }, 2172 | "node_modules/isexe": { 2173 | "version": "2.0.0", 2174 | "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", 2175 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2176 | "license": "ISC", 2177 | "peer": true 2178 | }, 2179 | "node_modules/jackspeak": { 2180 | "version": "3.4.3", 2181 | "resolved": "https://registry.npmmirror.com/jackspeak/-/jackspeak-3.4.3.tgz", 2182 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 2183 | "license": "BlueOak-1.0.0", 2184 | "peer": true, 2185 | "dependencies": { 2186 | "@isaacs/cliui": "^8.0.2" 2187 | }, 2188 | "funding": { 2189 | "url": "https://github.com/sponsors/isaacs" 2190 | }, 2191 | "optionalDependencies": { 2192 | "@pkgjs/parseargs": "^0.11.0" 2193 | } 2194 | }, 2195 | "node_modules/jiti": { 2196 | "version": "1.21.7", 2197 | "resolved": "https://registry.npmmirror.com/jiti/-/jiti-1.21.7.tgz", 2198 | "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", 2199 | "license": "MIT", 2200 | "peer": true, 2201 | "bin": { 2202 | "jiti": "bin/jiti.js" 2203 | } 2204 | }, 2205 | "node_modules/js-tokens": { 2206 | "version": "4.0.0", 2207 | "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", 2208 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2209 | "license": "MIT" 2210 | }, 2211 | "node_modules/lilconfig": { 2212 | "version": "3.1.3", 2213 | "resolved": "https://registry.npmmirror.com/lilconfig/-/lilconfig-3.1.3.tgz", 2214 | "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", 2215 | "license": "MIT", 2216 | "peer": true, 2217 | "engines": { 2218 | "node": ">=14" 2219 | }, 2220 | "funding": { 2221 | "url": "https://github.com/sponsors/antonk52" 2222 | } 2223 | }, 2224 | "node_modules/lines-and-columns": { 2225 | "version": "1.2.4", 2226 | "resolved": "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2227 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2228 | "license": "MIT", 2229 | "peer": true 2230 | }, 2231 | "node_modules/lodash": { 2232 | "version": "4.17.21", 2233 | "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", 2234 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2235 | "license": "MIT" 2236 | }, 2237 | "node_modules/loose-envify": { 2238 | "version": "1.4.0", 2239 | "resolved": "https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz", 2240 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2241 | "license": "MIT", 2242 | "dependencies": { 2243 | "js-tokens": "^3.0.0 || ^4.0.0" 2244 | }, 2245 | "bin": { 2246 | "loose-envify": "cli.js" 2247 | } 2248 | }, 2249 | "node_modules/lru-cache": { 2250 | "version": "10.4.3", 2251 | "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-10.4.3.tgz", 2252 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 2253 | "license": "ISC", 2254 | "peer": true 2255 | }, 2256 | "node_modules/lucide-react": { 2257 | "version": "0.447.0", 2258 | "resolved": "https://registry.npmmirror.com/lucide-react/-/lucide-react-0.447.0.tgz", 2259 | "integrity": "sha512-SZ//hQmvi+kDKrNepArVkYK7/jfeZ5uFNEnYmd45RKZcbGD78KLnrcNXmgeg6m+xNHFvTG+CblszXCy4n6DN4w==", 2260 | "license": "ISC", 2261 | "peerDependencies": { 2262 | "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" 2263 | } 2264 | }, 2265 | "node_modules/make-error": { 2266 | "version": "1.3.6", 2267 | "resolved": "https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz", 2268 | "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", 2269 | "license": "ISC" 2270 | }, 2271 | "node_modules/math-intrinsics": { 2272 | "version": "1.1.0", 2273 | "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 2274 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 2275 | "license": "MIT", 2276 | "engines": { 2277 | "node": ">= 0.4" 2278 | } 2279 | }, 2280 | "node_modules/media-typer": { 2281 | "version": "0.3.0", 2282 | "resolved": "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz", 2283 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 2284 | "license": "MIT", 2285 | "engines": { 2286 | "node": ">= 0.6" 2287 | } 2288 | }, 2289 | "node_modules/merge-descriptors": { 2290 | "version": "1.0.3", 2291 | "resolved": "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz", 2292 | "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", 2293 | "license": "MIT", 2294 | "funding": { 2295 | "url": "https://github.com/sponsors/sindresorhus" 2296 | } 2297 | }, 2298 | "node_modules/merge2": { 2299 | "version": "1.4.1", 2300 | "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", 2301 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2302 | "license": "MIT", 2303 | "peer": true, 2304 | "engines": { 2305 | "node": ">= 8" 2306 | } 2307 | }, 2308 | "node_modules/methods": { 2309 | "version": "1.1.2", 2310 | "resolved": "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz", 2311 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 2312 | "license": "MIT", 2313 | "engines": { 2314 | "node": ">= 0.6" 2315 | } 2316 | }, 2317 | "node_modules/micromatch": { 2318 | "version": "4.0.8", 2319 | "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz", 2320 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2321 | "license": "MIT", 2322 | "peer": true, 2323 | "dependencies": { 2324 | "braces": "^3.0.3", 2325 | "picomatch": "^2.3.1" 2326 | }, 2327 | "engines": { 2328 | "node": ">=8.6" 2329 | } 2330 | }, 2331 | "node_modules/mime": { 2332 | "version": "1.6.0", 2333 | "resolved": "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz", 2334 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 2335 | "license": "MIT", 2336 | "bin": { 2337 | "mime": "cli.js" 2338 | }, 2339 | "engines": { 2340 | "node": ">=4" 2341 | } 2342 | }, 2343 | "node_modules/mime-db": { 2344 | "version": "1.52.0", 2345 | "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", 2346 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2347 | "license": "MIT", 2348 | "engines": { 2349 | "node": ">= 0.6" 2350 | } 2351 | }, 2352 | "node_modules/mime-types": { 2353 | "version": "2.1.35", 2354 | "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", 2355 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2356 | "license": "MIT", 2357 | "dependencies": { 2358 | "mime-db": "1.52.0" 2359 | }, 2360 | "engines": { 2361 | "node": ">= 0.6" 2362 | } 2363 | }, 2364 | "node_modules/minimatch": { 2365 | "version": "3.1.2", 2366 | "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", 2367 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2368 | "license": "ISC", 2369 | "dependencies": { 2370 | "brace-expansion": "^1.1.7" 2371 | }, 2372 | "engines": { 2373 | "node": "*" 2374 | } 2375 | }, 2376 | "node_modules/minipass": { 2377 | "version": "7.1.2", 2378 | "resolved": "https://registry.npmmirror.com/minipass/-/minipass-7.1.2.tgz", 2379 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 2380 | "license": "ISC", 2381 | "peer": true, 2382 | "engines": { 2383 | "node": ">=16 || 14 >=14.17" 2384 | } 2385 | }, 2386 | "node_modules/ms": { 2387 | "version": "2.0.0", 2388 | "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz", 2389 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 2390 | "license": "MIT" 2391 | }, 2392 | "node_modules/mz": { 2393 | "version": "2.7.0", 2394 | "resolved": "https://registry.npmmirror.com/mz/-/mz-2.7.0.tgz", 2395 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2396 | "license": "MIT", 2397 | "peer": true, 2398 | "dependencies": { 2399 | "any-promise": "^1.0.0", 2400 | "object-assign": "^4.0.1", 2401 | "thenify-all": "^1.0.0" 2402 | } 2403 | }, 2404 | "node_modules/nanoid": { 2405 | "version": "3.3.8", 2406 | "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.8.tgz", 2407 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 2408 | "funding": [ 2409 | { 2410 | "type": "github", 2411 | "url": "https://github.com/sponsors/ai" 2412 | } 2413 | ], 2414 | "license": "MIT", 2415 | "peer": true, 2416 | "bin": { 2417 | "nanoid": "bin/nanoid.cjs" 2418 | }, 2419 | "engines": { 2420 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2421 | } 2422 | }, 2423 | "node_modules/negotiator": { 2424 | "version": "0.6.3", 2425 | "resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz", 2426 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 2427 | "license": "MIT", 2428 | "engines": { 2429 | "node": ">= 0.6" 2430 | } 2431 | }, 2432 | "node_modules/normalize-path": { 2433 | "version": "3.0.0", 2434 | "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", 2435 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2436 | "license": "MIT", 2437 | "peer": true, 2438 | "engines": { 2439 | "node": ">=0.10.0" 2440 | } 2441 | }, 2442 | "node_modules/object-assign": { 2443 | "version": "4.1.1", 2444 | "resolved": "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz", 2445 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2446 | "license": "MIT", 2447 | "engines": { 2448 | "node": ">=0.10.0" 2449 | } 2450 | }, 2451 | "node_modules/object-hash": { 2452 | "version": "3.0.0", 2453 | "resolved": "https://registry.npmmirror.com/object-hash/-/object-hash-3.0.0.tgz", 2454 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 2455 | "license": "MIT", 2456 | "peer": true, 2457 | "engines": { 2458 | "node": ">= 6" 2459 | } 2460 | }, 2461 | "node_modules/object-inspect": { 2462 | "version": "1.13.3", 2463 | "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.3.tgz", 2464 | "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", 2465 | "license": "MIT", 2466 | "engines": { 2467 | "node": ">= 0.4" 2468 | }, 2469 | "funding": { 2470 | "url": "https://github.com/sponsors/ljharb" 2471 | } 2472 | }, 2473 | "node_modules/on-finished": { 2474 | "version": "2.4.1", 2475 | "resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz", 2476 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 2477 | "license": "MIT", 2478 | "dependencies": { 2479 | "ee-first": "1.1.1" 2480 | }, 2481 | "engines": { 2482 | "node": ">= 0.8" 2483 | } 2484 | }, 2485 | "node_modules/package-json-from-dist": { 2486 | "version": "1.0.1", 2487 | "resolved": "https://registry.npmmirror.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 2488 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 2489 | "license": "BlueOak-1.0.0", 2490 | "peer": true 2491 | }, 2492 | "node_modules/parseurl": { 2493 | "version": "1.3.3", 2494 | "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz", 2495 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 2496 | "license": "MIT", 2497 | "engines": { 2498 | "node": ">= 0.8" 2499 | } 2500 | }, 2501 | "node_modules/path-is-inside": { 2502 | "version": "1.0.2", 2503 | "resolved": "https://registry.npmmirror.com/path-is-inside/-/path-is-inside-1.0.2.tgz", 2504 | "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", 2505 | "license": "(WTFPL OR MIT)" 2506 | }, 2507 | "node_modules/path-key": { 2508 | "version": "3.1.1", 2509 | "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", 2510 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2511 | "license": "MIT", 2512 | "peer": true, 2513 | "engines": { 2514 | "node": ">=8" 2515 | } 2516 | }, 2517 | "node_modules/path-parse": { 2518 | "version": "1.0.7", 2519 | "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", 2520 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2521 | "license": "MIT", 2522 | "peer": true 2523 | }, 2524 | "node_modules/path-scurry": { 2525 | "version": "1.11.1", 2526 | "resolved": "https://registry.npmmirror.com/path-scurry/-/path-scurry-1.11.1.tgz", 2527 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2528 | "license": "BlueOak-1.0.0", 2529 | "peer": true, 2530 | "dependencies": { 2531 | "lru-cache": "^10.2.0", 2532 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2533 | }, 2534 | "engines": { 2535 | "node": ">=16 || 14 >=14.18" 2536 | }, 2537 | "funding": { 2538 | "url": "https://github.com/sponsors/isaacs" 2539 | } 2540 | }, 2541 | "node_modules/path-to-regexp": { 2542 | "version": "0.1.12", 2543 | "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz", 2544 | "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", 2545 | "license": "MIT" 2546 | }, 2547 | "node_modules/picocolors": { 2548 | "version": "1.1.1", 2549 | "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz", 2550 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2551 | "license": "ISC", 2552 | "peer": true 2553 | }, 2554 | "node_modules/picomatch": { 2555 | "version": "2.3.1", 2556 | "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", 2557 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2558 | "license": "MIT", 2559 | "peer": true, 2560 | "engines": { 2561 | "node": ">=8.6" 2562 | }, 2563 | "funding": { 2564 | "url": "https://github.com/sponsors/jonschlinkert" 2565 | } 2566 | }, 2567 | "node_modules/pify": { 2568 | "version": "2.3.0", 2569 | "resolved": "https://registry.npmmirror.com/pify/-/pify-2.3.0.tgz", 2570 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 2571 | "license": "MIT", 2572 | "peer": true, 2573 | "engines": { 2574 | "node": ">=0.10.0" 2575 | } 2576 | }, 2577 | "node_modules/pirates": { 2578 | "version": "4.0.6", 2579 | "resolved": "https://registry.npmmirror.com/pirates/-/pirates-4.0.6.tgz", 2580 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 2581 | "license": "MIT", 2582 | "peer": true, 2583 | "engines": { 2584 | "node": ">= 6" 2585 | } 2586 | }, 2587 | "node_modules/postcss": { 2588 | "version": "8.5.1", 2589 | "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.1.tgz", 2590 | "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", 2591 | "funding": [ 2592 | { 2593 | "type": "opencollective", 2594 | "url": "https://opencollective.com/postcss/" 2595 | }, 2596 | { 2597 | "type": "tidelift", 2598 | "url": "https://tidelift.com/funding/github/npm/postcss" 2599 | }, 2600 | { 2601 | "type": "github", 2602 | "url": "https://github.com/sponsors/ai" 2603 | } 2604 | ], 2605 | "license": "MIT", 2606 | "peer": true, 2607 | "dependencies": { 2608 | "nanoid": "^3.3.8", 2609 | "picocolors": "^1.1.1", 2610 | "source-map-js": "^1.2.1" 2611 | }, 2612 | "engines": { 2613 | "node": "^10 || ^12 || >=14" 2614 | } 2615 | }, 2616 | "node_modules/postcss-import": { 2617 | "version": "15.1.0", 2618 | "resolved": "https://registry.npmmirror.com/postcss-import/-/postcss-import-15.1.0.tgz", 2619 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 2620 | "license": "MIT", 2621 | "peer": true, 2622 | "dependencies": { 2623 | "postcss-value-parser": "^4.0.0", 2624 | "read-cache": "^1.0.0", 2625 | "resolve": "^1.1.7" 2626 | }, 2627 | "engines": { 2628 | "node": ">=14.0.0" 2629 | }, 2630 | "peerDependencies": { 2631 | "postcss": "^8.0.0" 2632 | } 2633 | }, 2634 | "node_modules/postcss-js": { 2635 | "version": "4.0.1", 2636 | "resolved": "https://registry.npmmirror.com/postcss-js/-/postcss-js-4.0.1.tgz", 2637 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 2638 | "license": "MIT", 2639 | "peer": true, 2640 | "dependencies": { 2641 | "camelcase-css": "^2.0.1" 2642 | }, 2643 | "engines": { 2644 | "node": "^12 || ^14 || >= 16" 2645 | }, 2646 | "funding": { 2647 | "type": "opencollective", 2648 | "url": "https://opencollective.com/postcss/" 2649 | }, 2650 | "peerDependencies": { 2651 | "postcss": "^8.4.21" 2652 | } 2653 | }, 2654 | "node_modules/postcss-load-config": { 2655 | "version": "4.0.2", 2656 | "resolved": "https://registry.npmmirror.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 2657 | "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 2658 | "funding": [ 2659 | { 2660 | "type": "opencollective", 2661 | "url": "https://opencollective.com/postcss/" 2662 | }, 2663 | { 2664 | "type": "github", 2665 | "url": "https://github.com/sponsors/ai" 2666 | } 2667 | ], 2668 | "license": "MIT", 2669 | "peer": true, 2670 | "dependencies": { 2671 | "lilconfig": "^3.0.0", 2672 | "yaml": "^2.3.4" 2673 | }, 2674 | "engines": { 2675 | "node": ">= 14" 2676 | }, 2677 | "peerDependencies": { 2678 | "postcss": ">=8.0.9", 2679 | "ts-node": ">=9.0.0" 2680 | }, 2681 | "peerDependenciesMeta": { 2682 | "postcss": { 2683 | "optional": true 2684 | }, 2685 | "ts-node": { 2686 | "optional": true 2687 | } 2688 | } 2689 | }, 2690 | "node_modules/postcss-nested": { 2691 | "version": "6.2.0", 2692 | "resolved": "https://registry.npmmirror.com/postcss-nested/-/postcss-nested-6.2.0.tgz", 2693 | "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", 2694 | "funding": [ 2695 | { 2696 | "type": "opencollective", 2697 | "url": "https://opencollective.com/postcss/" 2698 | }, 2699 | { 2700 | "type": "github", 2701 | "url": "https://github.com/sponsors/ai" 2702 | } 2703 | ], 2704 | "license": "MIT", 2705 | "peer": true, 2706 | "dependencies": { 2707 | "postcss-selector-parser": "^6.1.1" 2708 | }, 2709 | "engines": { 2710 | "node": ">=12.0" 2711 | }, 2712 | "peerDependencies": { 2713 | "postcss": "^8.2.14" 2714 | } 2715 | }, 2716 | "node_modules/postcss-selector-parser": { 2717 | "version": "6.1.2", 2718 | "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", 2719 | "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", 2720 | "license": "MIT", 2721 | "peer": true, 2722 | "dependencies": { 2723 | "cssesc": "^3.0.0", 2724 | "util-deprecate": "^1.0.2" 2725 | }, 2726 | "engines": { 2727 | "node": ">=4" 2728 | } 2729 | }, 2730 | "node_modules/postcss-value-parser": { 2731 | "version": "4.2.0", 2732 | "resolved": "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 2733 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 2734 | "license": "MIT", 2735 | "peer": true 2736 | }, 2737 | "node_modules/proxy-addr": { 2738 | "version": "2.0.7", 2739 | "resolved": "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz", 2740 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 2741 | "license": "MIT", 2742 | "dependencies": { 2743 | "forwarded": "0.2.0", 2744 | "ipaddr.js": "1.9.1" 2745 | }, 2746 | "engines": { 2747 | "node": ">= 0.10" 2748 | } 2749 | }, 2750 | "node_modules/proxy-from-env": { 2751 | "version": "1.1.0", 2752 | "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 2753 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 2754 | "license": "MIT" 2755 | }, 2756 | "node_modules/qs": { 2757 | "version": "6.13.0", 2758 | "resolved": "https://registry.npmmirror.com/qs/-/qs-6.13.0.tgz", 2759 | "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", 2760 | "license": "BSD-3-Clause", 2761 | "dependencies": { 2762 | "side-channel": "^1.0.6" 2763 | }, 2764 | "engines": { 2765 | "node": ">=0.6" 2766 | }, 2767 | "funding": { 2768 | "url": "https://github.com/sponsors/ljharb" 2769 | } 2770 | }, 2771 | "node_modules/queue-microtask": { 2772 | "version": "1.2.3", 2773 | "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", 2774 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2775 | "funding": [ 2776 | { 2777 | "type": "github", 2778 | "url": "https://github.com/sponsors/feross" 2779 | }, 2780 | { 2781 | "type": "patreon", 2782 | "url": "https://www.patreon.com/feross" 2783 | }, 2784 | { 2785 | "type": "consulting", 2786 | "url": "https://feross.org/support" 2787 | } 2788 | ], 2789 | "license": "MIT", 2790 | "peer": true 2791 | }, 2792 | "node_modules/range-parser": { 2793 | "version": "1.2.1", 2794 | "resolved": "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz", 2795 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 2796 | "license": "MIT", 2797 | "engines": { 2798 | "node": ">= 0.6" 2799 | } 2800 | }, 2801 | "node_modules/raw-body": { 2802 | "version": "3.0.0", 2803 | "resolved": "https://registry.npmmirror.com/raw-body/-/raw-body-3.0.0.tgz", 2804 | "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", 2805 | "license": "MIT", 2806 | "dependencies": { 2807 | "bytes": "3.1.2", 2808 | "http-errors": "2.0.0", 2809 | "iconv-lite": "0.6.3", 2810 | "unpipe": "1.0.0" 2811 | }, 2812 | "engines": { 2813 | "node": ">= 0.8" 2814 | } 2815 | }, 2816 | "node_modules/react": { 2817 | "version": "18.3.1", 2818 | "resolved": "https://registry.npmmirror.com/react/-/react-18.3.1.tgz", 2819 | "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", 2820 | "license": "MIT", 2821 | "dependencies": { 2822 | "loose-envify": "^1.1.0" 2823 | }, 2824 | "engines": { 2825 | "node": ">=0.10.0" 2826 | } 2827 | }, 2828 | "node_modules/react-dom": { 2829 | "version": "18.3.1", 2830 | "resolved": "https://registry.npmmirror.com/react-dom/-/react-dom-18.3.1.tgz", 2831 | "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", 2832 | "license": "MIT", 2833 | "dependencies": { 2834 | "loose-envify": "^1.1.0", 2835 | "scheduler": "^0.23.2" 2836 | }, 2837 | "peerDependencies": { 2838 | "react": "^18.3.1" 2839 | } 2840 | }, 2841 | "node_modules/react-remove-scroll": { 2842 | "version": "2.6.2", 2843 | "resolved": "https://registry.npmmirror.com/react-remove-scroll/-/react-remove-scroll-2.6.2.tgz", 2844 | "integrity": "sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==", 2845 | "license": "MIT", 2846 | "dependencies": { 2847 | "react-remove-scroll-bar": "^2.3.7", 2848 | "react-style-singleton": "^2.2.1", 2849 | "tslib": "^2.1.0", 2850 | "use-callback-ref": "^1.3.3", 2851 | "use-sidecar": "^1.1.2" 2852 | }, 2853 | "engines": { 2854 | "node": ">=10" 2855 | }, 2856 | "peerDependencies": { 2857 | "@types/react": "*", 2858 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" 2859 | }, 2860 | "peerDependenciesMeta": { 2861 | "@types/react": { 2862 | "optional": true 2863 | } 2864 | } 2865 | }, 2866 | "node_modules/react-remove-scroll-bar": { 2867 | "version": "2.3.8", 2868 | "resolved": "https://registry.npmmirror.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz", 2869 | "integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==", 2870 | "license": "MIT", 2871 | "dependencies": { 2872 | "react-style-singleton": "^2.2.2", 2873 | "tslib": "^2.0.0" 2874 | }, 2875 | "engines": { 2876 | "node": ">=10" 2877 | }, 2878 | "peerDependencies": { 2879 | "@types/react": "*", 2880 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" 2881 | }, 2882 | "peerDependenciesMeta": { 2883 | "@types/react": { 2884 | "optional": true 2885 | } 2886 | } 2887 | }, 2888 | "node_modules/react-style-singleton": { 2889 | "version": "2.2.3", 2890 | "resolved": "https://registry.npmmirror.com/react-style-singleton/-/react-style-singleton-2.2.3.tgz", 2891 | "integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==", 2892 | "license": "MIT", 2893 | "dependencies": { 2894 | "get-nonce": "^1.0.0", 2895 | "tslib": "^2.0.0" 2896 | }, 2897 | "engines": { 2898 | "node": ">=10" 2899 | }, 2900 | "peerDependencies": { 2901 | "@types/react": "*", 2902 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" 2903 | }, 2904 | "peerDependenciesMeta": { 2905 | "@types/react": { 2906 | "optional": true 2907 | } 2908 | } 2909 | }, 2910 | "node_modules/react-toastify": { 2911 | "version": "10.0.6", 2912 | "resolved": "https://registry.npmmirror.com/react-toastify/-/react-toastify-10.0.6.tgz", 2913 | "integrity": "sha512-yYjp+omCDf9lhZcrZHKbSq7YMuK0zcYkDFTzfRFgTXkTFHZ1ToxwAonzA4JI5CxA91JpjFLmwEsZEgfYfOqI1A==", 2914 | "license": "MIT", 2915 | "dependencies": { 2916 | "clsx": "^2.1.0" 2917 | }, 2918 | "peerDependencies": { 2919 | "react": ">=18", 2920 | "react-dom": ">=18" 2921 | } 2922 | }, 2923 | "node_modules/read-cache": { 2924 | "version": "1.0.0", 2925 | "resolved": "https://registry.npmmirror.com/read-cache/-/read-cache-1.0.0.tgz", 2926 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 2927 | "license": "MIT", 2928 | "peer": true, 2929 | "dependencies": { 2930 | "pify": "^2.3.0" 2931 | } 2932 | }, 2933 | "node_modules/readdirp": { 2934 | "version": "3.6.0", 2935 | "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", 2936 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2937 | "license": "MIT", 2938 | "peer": true, 2939 | "dependencies": { 2940 | "picomatch": "^2.2.1" 2941 | }, 2942 | "engines": { 2943 | "node": ">=8.10.0" 2944 | } 2945 | }, 2946 | "node_modules/require-directory": { 2947 | "version": "2.1.1", 2948 | "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz", 2949 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 2950 | "license": "MIT", 2951 | "engines": { 2952 | "node": ">=0.10.0" 2953 | } 2954 | }, 2955 | "node_modules/resolve": { 2956 | "version": "1.22.10", 2957 | "resolved": "https://registry.npmmirror.com/resolve/-/resolve-1.22.10.tgz", 2958 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 2959 | "license": "MIT", 2960 | "peer": true, 2961 | "dependencies": { 2962 | "is-core-module": "^2.16.0", 2963 | "path-parse": "^1.0.7", 2964 | "supports-preserve-symlinks-flag": "^1.0.0" 2965 | }, 2966 | "bin": { 2967 | "resolve": "bin/resolve" 2968 | }, 2969 | "engines": { 2970 | "node": ">= 0.4" 2971 | }, 2972 | "funding": { 2973 | "url": "https://github.com/sponsors/ljharb" 2974 | } 2975 | }, 2976 | "node_modules/reusify": { 2977 | "version": "1.0.4", 2978 | "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", 2979 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2980 | "license": "MIT", 2981 | "peer": true, 2982 | "engines": { 2983 | "iojs": ">=1.0.0", 2984 | "node": ">=0.10.0" 2985 | } 2986 | }, 2987 | "node_modules/run-parallel": { 2988 | "version": "1.2.0", 2989 | "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", 2990 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2991 | "funding": [ 2992 | { 2993 | "type": "github", 2994 | "url": "https://github.com/sponsors/feross" 2995 | }, 2996 | { 2997 | "type": "patreon", 2998 | "url": "https://www.patreon.com/feross" 2999 | }, 3000 | { 3001 | "type": "consulting", 3002 | "url": "https://feross.org/support" 3003 | } 3004 | ], 3005 | "license": "MIT", 3006 | "peer": true, 3007 | "dependencies": { 3008 | "queue-microtask": "^1.2.2" 3009 | } 3010 | }, 3011 | "node_modules/rxjs": { 3012 | "version": "7.8.1", 3013 | "resolved": "https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz", 3014 | "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", 3015 | "license": "Apache-2.0", 3016 | "dependencies": { 3017 | "tslib": "^2.1.0" 3018 | } 3019 | }, 3020 | "node_modules/safe-buffer": { 3021 | "version": "5.2.1", 3022 | "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz", 3023 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3024 | "funding": [ 3025 | { 3026 | "type": "github", 3027 | "url": "https://github.com/sponsors/feross" 3028 | }, 3029 | { 3030 | "type": "patreon", 3031 | "url": "https://www.patreon.com/feross" 3032 | }, 3033 | { 3034 | "type": "consulting", 3035 | "url": "https://feross.org/support" 3036 | } 3037 | ], 3038 | "license": "MIT" 3039 | }, 3040 | "node_modules/safer-buffer": { 3041 | "version": "2.1.2", 3042 | "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", 3043 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 3044 | "license": "MIT" 3045 | }, 3046 | "node_modules/scheduler": { 3047 | "version": "0.23.2", 3048 | "resolved": "https://registry.npmmirror.com/scheduler/-/scheduler-0.23.2.tgz", 3049 | "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", 3050 | "license": "MIT", 3051 | "dependencies": { 3052 | "loose-envify": "^1.1.0" 3053 | } 3054 | }, 3055 | "node_modules/send": { 3056 | "version": "0.19.0", 3057 | "resolved": "https://registry.npmmirror.com/send/-/send-0.19.0.tgz", 3058 | "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", 3059 | "license": "MIT", 3060 | "dependencies": { 3061 | "debug": "2.6.9", 3062 | "depd": "2.0.0", 3063 | "destroy": "1.2.0", 3064 | "encodeurl": "~1.0.2", 3065 | "escape-html": "~1.0.3", 3066 | "etag": "~1.8.1", 3067 | "fresh": "0.5.2", 3068 | "http-errors": "2.0.0", 3069 | "mime": "1.6.0", 3070 | "ms": "2.1.3", 3071 | "on-finished": "2.4.1", 3072 | "range-parser": "~1.2.1", 3073 | "statuses": "2.0.1" 3074 | }, 3075 | "engines": { 3076 | "node": ">= 0.8.0" 3077 | } 3078 | }, 3079 | "node_modules/send/node_modules/encodeurl": { 3080 | "version": "1.0.2", 3081 | "resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz", 3082 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 3083 | "license": "MIT", 3084 | "engines": { 3085 | "node": ">= 0.8" 3086 | } 3087 | }, 3088 | "node_modules/send/node_modules/ms": { 3089 | "version": "2.1.3", 3090 | "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", 3091 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 3092 | "license": "MIT" 3093 | }, 3094 | "node_modules/serve-handler": { 3095 | "version": "6.1.6", 3096 | "resolved": "https://registry.npmmirror.com/serve-handler/-/serve-handler-6.1.6.tgz", 3097 | "integrity": "sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ==", 3098 | "license": "MIT", 3099 | "dependencies": { 3100 | "bytes": "3.0.0", 3101 | "content-disposition": "0.5.2", 3102 | "mime-types": "2.1.18", 3103 | "minimatch": "3.1.2", 3104 | "path-is-inside": "1.0.2", 3105 | "path-to-regexp": "3.3.0", 3106 | "range-parser": "1.2.0" 3107 | } 3108 | }, 3109 | "node_modules/serve-handler/node_modules/bytes": { 3110 | "version": "3.0.0", 3111 | "resolved": "https://registry.npmmirror.com/bytes/-/bytes-3.0.0.tgz", 3112 | "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", 3113 | "license": "MIT", 3114 | "engines": { 3115 | "node": ">= 0.8" 3116 | } 3117 | }, 3118 | "node_modules/serve-handler/node_modules/content-disposition": { 3119 | "version": "0.5.2", 3120 | "resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.2.tgz", 3121 | "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", 3122 | "license": "MIT", 3123 | "engines": { 3124 | "node": ">= 0.6" 3125 | } 3126 | }, 3127 | "node_modules/serve-handler/node_modules/mime-db": { 3128 | "version": "1.33.0", 3129 | "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.33.0.tgz", 3130 | "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", 3131 | "license": "MIT", 3132 | "engines": { 3133 | "node": ">= 0.6" 3134 | } 3135 | }, 3136 | "node_modules/serve-handler/node_modules/mime-types": { 3137 | "version": "2.1.18", 3138 | "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.18.tgz", 3139 | "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", 3140 | "license": "MIT", 3141 | "dependencies": { 3142 | "mime-db": "~1.33.0" 3143 | }, 3144 | "engines": { 3145 | "node": ">= 0.6" 3146 | } 3147 | }, 3148 | "node_modules/serve-handler/node_modules/path-to-regexp": { 3149 | "version": "3.3.0", 3150 | "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-3.3.0.tgz", 3151 | "integrity": "sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==", 3152 | "license": "MIT" 3153 | }, 3154 | "node_modules/serve-handler/node_modules/range-parser": { 3155 | "version": "1.2.0", 3156 | "resolved": "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.0.tgz", 3157 | "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", 3158 | "license": "MIT", 3159 | "engines": { 3160 | "node": ">= 0.6" 3161 | } 3162 | }, 3163 | "node_modules/serve-static": { 3164 | "version": "1.16.2", 3165 | "resolved": "https://registry.npmmirror.com/serve-static/-/serve-static-1.16.2.tgz", 3166 | "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", 3167 | "license": "MIT", 3168 | "dependencies": { 3169 | "encodeurl": "~2.0.0", 3170 | "escape-html": "~1.0.3", 3171 | "parseurl": "~1.3.3", 3172 | "send": "0.19.0" 3173 | }, 3174 | "engines": { 3175 | "node": ">= 0.8.0" 3176 | } 3177 | }, 3178 | "node_modules/setprototypeof": { 3179 | "version": "1.2.0", 3180 | "resolved": "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz", 3181 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 3182 | "license": "ISC" 3183 | }, 3184 | "node_modules/shebang-command": { 3185 | "version": "2.0.0", 3186 | "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", 3187 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3188 | "license": "MIT", 3189 | "peer": true, 3190 | "dependencies": { 3191 | "shebang-regex": "^3.0.0" 3192 | }, 3193 | "engines": { 3194 | "node": ">=8" 3195 | } 3196 | }, 3197 | "node_modules/shebang-regex": { 3198 | "version": "3.0.0", 3199 | "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", 3200 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3201 | "license": "MIT", 3202 | "peer": true, 3203 | "engines": { 3204 | "node": ">=8" 3205 | } 3206 | }, 3207 | "node_modules/shell-quote": { 3208 | "version": "1.8.2", 3209 | "resolved": "https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.2.tgz", 3210 | "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", 3211 | "license": "MIT", 3212 | "engines": { 3213 | "node": ">= 0.4" 3214 | }, 3215 | "funding": { 3216 | "url": "https://github.com/sponsors/ljharb" 3217 | } 3218 | }, 3219 | "node_modules/side-channel": { 3220 | "version": "1.1.0", 3221 | "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz", 3222 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 3223 | "license": "MIT", 3224 | "dependencies": { 3225 | "es-errors": "^1.3.0", 3226 | "object-inspect": "^1.13.3", 3227 | "side-channel-list": "^1.0.0", 3228 | "side-channel-map": "^1.0.1", 3229 | "side-channel-weakmap": "^1.0.2" 3230 | }, 3231 | "engines": { 3232 | "node": ">= 0.4" 3233 | }, 3234 | "funding": { 3235 | "url": "https://github.com/sponsors/ljharb" 3236 | } 3237 | }, 3238 | "node_modules/side-channel-list": { 3239 | "version": "1.0.0", 3240 | "resolved": "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.0.tgz", 3241 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 3242 | "license": "MIT", 3243 | "dependencies": { 3244 | "es-errors": "^1.3.0", 3245 | "object-inspect": "^1.13.3" 3246 | }, 3247 | "engines": { 3248 | "node": ">= 0.4" 3249 | }, 3250 | "funding": { 3251 | "url": "https://github.com/sponsors/ljharb" 3252 | } 3253 | }, 3254 | "node_modules/side-channel-map": { 3255 | "version": "1.0.1", 3256 | "resolved": "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz", 3257 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 3258 | "license": "MIT", 3259 | "dependencies": { 3260 | "call-bound": "^1.0.2", 3261 | "es-errors": "^1.3.0", 3262 | "get-intrinsic": "^1.2.5", 3263 | "object-inspect": "^1.13.3" 3264 | }, 3265 | "engines": { 3266 | "node": ">= 0.4" 3267 | }, 3268 | "funding": { 3269 | "url": "https://github.com/sponsors/ljharb" 3270 | } 3271 | }, 3272 | "node_modules/side-channel-weakmap": { 3273 | "version": "1.0.2", 3274 | "resolved": "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 3275 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 3276 | "license": "MIT", 3277 | "dependencies": { 3278 | "call-bound": "^1.0.2", 3279 | "es-errors": "^1.3.0", 3280 | "get-intrinsic": "^1.2.5", 3281 | "object-inspect": "^1.13.3", 3282 | "side-channel-map": "^1.0.1" 3283 | }, 3284 | "engines": { 3285 | "node": ">= 0.4" 3286 | }, 3287 | "funding": { 3288 | "url": "https://github.com/sponsors/ljharb" 3289 | } 3290 | }, 3291 | "node_modules/signal-exit": { 3292 | "version": "4.1.0", 3293 | "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz", 3294 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 3295 | "license": "ISC", 3296 | "peer": true, 3297 | "engines": { 3298 | "node": ">=14" 3299 | }, 3300 | "funding": { 3301 | "url": "https://github.com/sponsors/isaacs" 3302 | } 3303 | }, 3304 | "node_modules/source-map-js": { 3305 | "version": "1.2.1", 3306 | "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", 3307 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 3308 | "license": "BSD-3-Clause", 3309 | "peer": true, 3310 | "engines": { 3311 | "node": ">=0.10.0" 3312 | } 3313 | }, 3314 | "node_modules/spawn-rx": { 3315 | "version": "5.1.1", 3316 | "resolved": "https://registry.npmmirror.com/spawn-rx/-/spawn-rx-5.1.1.tgz", 3317 | "integrity": "sha512-1JdzBG9PKsvu364u+vZWvrj5VPN8hjTzevWvTJ+MdZFIxYkz6QLlhWtqtngn9IxBotyQ0/DfWKhQTQjWq9RQ0g==", 3318 | "license": "MIT", 3319 | "dependencies": { 3320 | "debug": "^4.3.7", 3321 | "rxjs": "^7.8.1" 3322 | } 3323 | }, 3324 | "node_modules/spawn-rx/node_modules/debug": { 3325 | "version": "4.4.0", 3326 | "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.0.tgz", 3327 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 3328 | "license": "MIT", 3329 | "dependencies": { 3330 | "ms": "^2.1.3" 3331 | }, 3332 | "engines": { 3333 | "node": ">=6.0" 3334 | }, 3335 | "peerDependenciesMeta": { 3336 | "supports-color": { 3337 | "optional": true 3338 | } 3339 | } 3340 | }, 3341 | "node_modules/spawn-rx/node_modules/ms": { 3342 | "version": "2.1.3", 3343 | "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", 3344 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 3345 | "license": "MIT" 3346 | }, 3347 | "node_modules/statuses": { 3348 | "version": "2.0.1", 3349 | "resolved": "https://registry.npmmirror.com/statuses/-/statuses-2.0.1.tgz", 3350 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 3351 | "license": "MIT", 3352 | "engines": { 3353 | "node": ">= 0.8" 3354 | } 3355 | }, 3356 | "node_modules/string-width": { 3357 | "version": "5.1.2", 3358 | "resolved": "https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz", 3359 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 3360 | "license": "MIT", 3361 | "peer": true, 3362 | "dependencies": { 3363 | "eastasianwidth": "^0.2.0", 3364 | "emoji-regex": "^9.2.2", 3365 | "strip-ansi": "^7.0.1" 3366 | }, 3367 | "engines": { 3368 | "node": ">=12" 3369 | }, 3370 | "funding": { 3371 | "url": "https://github.com/sponsors/sindresorhus" 3372 | } 3373 | }, 3374 | "node_modules/string-width-cjs": { 3375 | "name": "string-width", 3376 | "version": "4.2.3", 3377 | "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", 3378 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3379 | "license": "MIT", 3380 | "peer": true, 3381 | "dependencies": { 3382 | "emoji-regex": "^8.0.0", 3383 | "is-fullwidth-code-point": "^3.0.0", 3384 | "strip-ansi": "^6.0.1" 3385 | }, 3386 | "engines": { 3387 | "node": ">=8" 3388 | } 3389 | }, 3390 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 3391 | "version": "5.0.1", 3392 | "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", 3393 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3394 | "license": "MIT", 3395 | "peer": true, 3396 | "engines": { 3397 | "node": ">=8" 3398 | } 3399 | }, 3400 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 3401 | "version": "8.0.0", 3402 | "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", 3403 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3404 | "license": "MIT", 3405 | "peer": true 3406 | }, 3407 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 3408 | "version": "6.0.1", 3409 | "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", 3410 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3411 | "license": "MIT", 3412 | "peer": true, 3413 | "dependencies": { 3414 | "ansi-regex": "^5.0.1" 3415 | }, 3416 | "engines": { 3417 | "node": ">=8" 3418 | } 3419 | }, 3420 | "node_modules/strip-ansi": { 3421 | "version": "7.1.0", 3422 | "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.0.tgz", 3423 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3424 | "license": "MIT", 3425 | "peer": true, 3426 | "dependencies": { 3427 | "ansi-regex": "^6.0.1" 3428 | }, 3429 | "engines": { 3430 | "node": ">=12" 3431 | }, 3432 | "funding": { 3433 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 3434 | } 3435 | }, 3436 | "node_modules/strip-ansi-cjs": { 3437 | "name": "strip-ansi", 3438 | "version": "6.0.1", 3439 | "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", 3440 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3441 | "license": "MIT", 3442 | "peer": true, 3443 | "dependencies": { 3444 | "ansi-regex": "^5.0.1" 3445 | }, 3446 | "engines": { 3447 | "node": ">=8" 3448 | } 3449 | }, 3450 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 3451 | "version": "5.0.1", 3452 | "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", 3453 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3454 | "license": "MIT", 3455 | "peer": true, 3456 | "engines": { 3457 | "node": ">=8" 3458 | } 3459 | }, 3460 | "node_modules/sucrase": { 3461 | "version": "3.35.0", 3462 | "resolved": "https://registry.npmmirror.com/sucrase/-/sucrase-3.35.0.tgz", 3463 | "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 3464 | "license": "MIT", 3465 | "peer": true, 3466 | "dependencies": { 3467 | "@jridgewell/gen-mapping": "^0.3.2", 3468 | "commander": "^4.0.0", 3469 | "glob": "^10.3.10", 3470 | "lines-and-columns": "^1.1.6", 3471 | "mz": "^2.7.0", 3472 | "pirates": "^4.0.1", 3473 | "ts-interface-checker": "^0.1.9" 3474 | }, 3475 | "bin": { 3476 | "sucrase": "bin/sucrase", 3477 | "sucrase-node": "bin/sucrase-node" 3478 | }, 3479 | "engines": { 3480 | "node": ">=16 || 14 >=14.17" 3481 | } 3482 | }, 3483 | "node_modules/supports-color": { 3484 | "version": "8.1.1", 3485 | "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz", 3486 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 3487 | "license": "MIT", 3488 | "dependencies": { 3489 | "has-flag": "^4.0.0" 3490 | }, 3491 | "engines": { 3492 | "node": ">=10" 3493 | }, 3494 | "funding": { 3495 | "url": "https://github.com/chalk/supports-color?sponsor=1" 3496 | } 3497 | }, 3498 | "node_modules/supports-preserve-symlinks-flag": { 3499 | "version": "1.0.0", 3500 | "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3501 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3502 | "license": "MIT", 3503 | "peer": true, 3504 | "engines": { 3505 | "node": ">= 0.4" 3506 | }, 3507 | "funding": { 3508 | "url": "https://github.com/sponsors/ljharb" 3509 | } 3510 | }, 3511 | "node_modules/tailwind-merge": { 3512 | "version": "2.6.0", 3513 | "resolved": "https://registry.npmmirror.com/tailwind-merge/-/tailwind-merge-2.6.0.tgz", 3514 | "integrity": "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==", 3515 | "license": "MIT", 3516 | "funding": { 3517 | "type": "github", 3518 | "url": "https://github.com/sponsors/dcastil" 3519 | } 3520 | }, 3521 | "node_modules/tailwindcss": { 3522 | "version": "3.4.17", 3523 | "resolved": "https://registry.npmmirror.com/tailwindcss/-/tailwindcss-3.4.17.tgz", 3524 | "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", 3525 | "license": "MIT", 3526 | "peer": true, 3527 | "dependencies": { 3528 | "@alloc/quick-lru": "^5.2.0", 3529 | "arg": "^5.0.2", 3530 | "chokidar": "^3.6.0", 3531 | "didyoumean": "^1.2.2", 3532 | "dlv": "^1.1.3", 3533 | "fast-glob": "^3.3.2", 3534 | "glob-parent": "^6.0.2", 3535 | "is-glob": "^4.0.3", 3536 | "jiti": "^1.21.6", 3537 | "lilconfig": "^3.1.3", 3538 | "micromatch": "^4.0.8", 3539 | "normalize-path": "^3.0.0", 3540 | "object-hash": "^3.0.0", 3541 | "picocolors": "^1.1.1", 3542 | "postcss": "^8.4.47", 3543 | "postcss-import": "^15.1.0", 3544 | "postcss-js": "^4.0.1", 3545 | "postcss-load-config": "^4.0.2", 3546 | "postcss-nested": "^6.2.0", 3547 | "postcss-selector-parser": "^6.1.2", 3548 | "resolve": "^1.22.8", 3549 | "sucrase": "^3.35.0" 3550 | }, 3551 | "bin": { 3552 | "tailwind": "lib/cli.js", 3553 | "tailwindcss": "lib/cli.js" 3554 | }, 3555 | "engines": { 3556 | "node": ">=14.0.0" 3557 | } 3558 | }, 3559 | "node_modules/tailwindcss-animate": { 3560 | "version": "1.0.7", 3561 | "resolved": "https://registry.npmmirror.com/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz", 3562 | "integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==", 3563 | "license": "MIT", 3564 | "peerDependencies": { 3565 | "tailwindcss": ">=3.0.0 || insiders" 3566 | } 3567 | }, 3568 | "node_modules/tailwindcss/node_modules/arg": { 3569 | "version": "5.0.2", 3570 | "resolved": "https://registry.npmmirror.com/arg/-/arg-5.0.2.tgz", 3571 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 3572 | "license": "MIT", 3573 | "peer": true 3574 | }, 3575 | "node_modules/thenify": { 3576 | "version": "3.3.1", 3577 | "resolved": "https://registry.npmmirror.com/thenify/-/thenify-3.3.1.tgz", 3578 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 3579 | "license": "MIT", 3580 | "peer": true, 3581 | "dependencies": { 3582 | "any-promise": "^1.0.0" 3583 | } 3584 | }, 3585 | "node_modules/thenify-all": { 3586 | "version": "1.6.0", 3587 | "resolved": "https://registry.npmmirror.com/thenify-all/-/thenify-all-1.6.0.tgz", 3588 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 3589 | "license": "MIT", 3590 | "peer": true, 3591 | "dependencies": { 3592 | "thenify": ">= 3.1.0 < 4" 3593 | }, 3594 | "engines": { 3595 | "node": ">=0.8" 3596 | } 3597 | }, 3598 | "node_modules/to-regex-range": { 3599 | "version": "5.0.1", 3600 | "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", 3601 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3602 | "license": "MIT", 3603 | "peer": true, 3604 | "dependencies": { 3605 | "is-number": "^7.0.0" 3606 | }, 3607 | "engines": { 3608 | "node": ">=8.0" 3609 | } 3610 | }, 3611 | "node_modules/toidentifier": { 3612 | "version": "1.0.1", 3613 | "resolved": "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz", 3614 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 3615 | "license": "MIT", 3616 | "engines": { 3617 | "node": ">=0.6" 3618 | } 3619 | }, 3620 | "node_modules/tree-kill": { 3621 | "version": "1.2.2", 3622 | "resolved": "https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz", 3623 | "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", 3624 | "license": "MIT", 3625 | "bin": { 3626 | "tree-kill": "cli.js" 3627 | } 3628 | }, 3629 | "node_modules/ts-interface-checker": { 3630 | "version": "0.1.13", 3631 | "resolved": "https://registry.npmmirror.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 3632 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 3633 | "license": "Apache-2.0", 3634 | "peer": true 3635 | }, 3636 | "node_modules/ts-node": { 3637 | "version": "10.9.2", 3638 | "resolved": "https://registry.npmmirror.com/ts-node/-/ts-node-10.9.2.tgz", 3639 | "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", 3640 | "license": "MIT", 3641 | "dependencies": { 3642 | "@cspotcode/source-map-support": "^0.8.0", 3643 | "@tsconfig/node10": "^1.0.7", 3644 | "@tsconfig/node12": "^1.0.7", 3645 | "@tsconfig/node14": "^1.0.0", 3646 | "@tsconfig/node16": "^1.0.2", 3647 | "acorn": "^8.4.1", 3648 | "acorn-walk": "^8.1.1", 3649 | "arg": "^4.1.0", 3650 | "create-require": "^1.1.0", 3651 | "diff": "^4.0.1", 3652 | "make-error": "^1.1.1", 3653 | "v8-compile-cache-lib": "^3.0.1", 3654 | "yn": "3.1.1" 3655 | }, 3656 | "bin": { 3657 | "ts-node": "dist/bin.js", 3658 | "ts-node-cwd": "dist/bin-cwd.js", 3659 | "ts-node-esm": "dist/bin-esm.js", 3660 | "ts-node-script": "dist/bin-script.js", 3661 | "ts-node-transpile-only": "dist/bin-transpile.js", 3662 | "ts-script": "dist/bin-script-deprecated.js" 3663 | }, 3664 | "peerDependencies": { 3665 | "@swc/core": ">=1.2.50", 3666 | "@swc/wasm": ">=1.2.50", 3667 | "@types/node": "*", 3668 | "typescript": ">=2.7" 3669 | }, 3670 | "peerDependenciesMeta": { 3671 | "@swc/core": { 3672 | "optional": true 3673 | }, 3674 | "@swc/wasm": { 3675 | "optional": true 3676 | } 3677 | } 3678 | }, 3679 | "node_modules/tslib": { 3680 | "version": "2.8.1", 3681 | "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz", 3682 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 3683 | "license": "0BSD" 3684 | }, 3685 | "node_modules/type-is": { 3686 | "version": "1.6.18", 3687 | "resolved": "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz", 3688 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 3689 | "license": "MIT", 3690 | "dependencies": { 3691 | "media-typer": "0.3.0", 3692 | "mime-types": "~2.1.24" 3693 | }, 3694 | "engines": { 3695 | "node": ">= 0.6" 3696 | } 3697 | }, 3698 | "node_modules/typescript": { 3699 | "version": "5.7.3", 3700 | "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.7.3.tgz", 3701 | "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", 3702 | "license": "Apache-2.0", 3703 | "bin": { 3704 | "tsc": "bin/tsc", 3705 | "tsserver": "bin/tsserver" 3706 | }, 3707 | "engines": { 3708 | "node": ">=14.17" 3709 | } 3710 | }, 3711 | "node_modules/undici-types": { 3712 | "version": "6.19.8", 3713 | "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-6.19.8.tgz", 3714 | "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", 3715 | "license": "MIT" 3716 | }, 3717 | "node_modules/unpipe": { 3718 | "version": "1.0.0", 3719 | "resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz", 3720 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 3721 | "license": "MIT", 3722 | "engines": { 3723 | "node": ">= 0.8" 3724 | } 3725 | }, 3726 | "node_modules/use-callback-ref": { 3727 | "version": "1.3.3", 3728 | "resolved": "https://registry.npmmirror.com/use-callback-ref/-/use-callback-ref-1.3.3.tgz", 3729 | "integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==", 3730 | "license": "MIT", 3731 | "dependencies": { 3732 | "tslib": "^2.0.0" 3733 | }, 3734 | "engines": { 3735 | "node": ">=10" 3736 | }, 3737 | "peerDependencies": { 3738 | "@types/react": "*", 3739 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" 3740 | }, 3741 | "peerDependenciesMeta": { 3742 | "@types/react": { 3743 | "optional": true 3744 | } 3745 | } 3746 | }, 3747 | "node_modules/use-sidecar": { 3748 | "version": "1.1.3", 3749 | "resolved": "https://registry.npmmirror.com/use-sidecar/-/use-sidecar-1.1.3.tgz", 3750 | "integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==", 3751 | "license": "MIT", 3752 | "dependencies": { 3753 | "detect-node-es": "^1.1.0", 3754 | "tslib": "^2.0.0" 3755 | }, 3756 | "engines": { 3757 | "node": ">=10" 3758 | }, 3759 | "peerDependencies": { 3760 | "@types/react": "*", 3761 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" 3762 | }, 3763 | "peerDependenciesMeta": { 3764 | "@types/react": { 3765 | "optional": true 3766 | } 3767 | } 3768 | }, 3769 | "node_modules/util-deprecate": { 3770 | "version": "1.0.2", 3771 | "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", 3772 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 3773 | "license": "MIT", 3774 | "peer": true 3775 | }, 3776 | "node_modules/utils-merge": { 3777 | "version": "1.0.1", 3778 | "resolved": "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz", 3779 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 3780 | "license": "MIT", 3781 | "engines": { 3782 | "node": ">= 0.4.0" 3783 | } 3784 | }, 3785 | "node_modules/v8-compile-cache-lib": { 3786 | "version": "3.0.1", 3787 | "resolved": "https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", 3788 | "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", 3789 | "license": "MIT" 3790 | }, 3791 | "node_modules/vary": { 3792 | "version": "1.1.2", 3793 | "resolved": "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz", 3794 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 3795 | "license": "MIT", 3796 | "engines": { 3797 | "node": ">= 0.8" 3798 | } 3799 | }, 3800 | "node_modules/which": { 3801 | "version": "2.0.2", 3802 | "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", 3803 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3804 | "license": "ISC", 3805 | "peer": true, 3806 | "dependencies": { 3807 | "isexe": "^2.0.0" 3808 | }, 3809 | "bin": { 3810 | "node-which": "bin/node-which" 3811 | }, 3812 | "engines": { 3813 | "node": ">= 8" 3814 | } 3815 | }, 3816 | "node_modules/wrap-ansi": { 3817 | "version": "8.1.0", 3818 | "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 3819 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 3820 | "license": "MIT", 3821 | "peer": true, 3822 | "dependencies": { 3823 | "ansi-styles": "^6.1.0", 3824 | "string-width": "^5.0.1", 3825 | "strip-ansi": "^7.0.1" 3826 | }, 3827 | "engines": { 3828 | "node": ">=12" 3829 | }, 3830 | "funding": { 3831 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3832 | } 3833 | }, 3834 | "node_modules/wrap-ansi-cjs": { 3835 | "name": "wrap-ansi", 3836 | "version": "7.0.0", 3837 | "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3838 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3839 | "license": "MIT", 3840 | "peer": true, 3841 | "dependencies": { 3842 | "ansi-styles": "^4.0.0", 3843 | "string-width": "^4.1.0", 3844 | "strip-ansi": "^6.0.0" 3845 | }, 3846 | "engines": { 3847 | "node": ">=10" 3848 | }, 3849 | "funding": { 3850 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3851 | } 3852 | }, 3853 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 3854 | "version": "5.0.1", 3855 | "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", 3856 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3857 | "license": "MIT", 3858 | "peer": true, 3859 | "engines": { 3860 | "node": ">=8" 3861 | } 3862 | }, 3863 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 3864 | "version": "8.0.0", 3865 | "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", 3866 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3867 | "license": "MIT", 3868 | "peer": true 3869 | }, 3870 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 3871 | "version": "4.2.3", 3872 | "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", 3873 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3874 | "license": "MIT", 3875 | "peer": true, 3876 | "dependencies": { 3877 | "emoji-regex": "^8.0.0", 3878 | "is-fullwidth-code-point": "^3.0.0", 3879 | "strip-ansi": "^6.0.1" 3880 | }, 3881 | "engines": { 3882 | "node": ">=8" 3883 | } 3884 | }, 3885 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 3886 | "version": "6.0.1", 3887 | "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", 3888 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3889 | "license": "MIT", 3890 | "peer": true, 3891 | "dependencies": { 3892 | "ansi-regex": "^5.0.1" 3893 | }, 3894 | "engines": { 3895 | "node": ">=8" 3896 | } 3897 | }, 3898 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 3899 | "version": "6.2.1", 3900 | "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.1.tgz", 3901 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 3902 | "license": "MIT", 3903 | "peer": true, 3904 | "engines": { 3905 | "node": ">=12" 3906 | }, 3907 | "funding": { 3908 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3909 | } 3910 | }, 3911 | "node_modules/ws": { 3912 | "version": "8.18.0", 3913 | "resolved": "https://registry.npmmirror.com/ws/-/ws-8.18.0.tgz", 3914 | "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", 3915 | "license": "MIT", 3916 | "engines": { 3917 | "node": ">=10.0.0" 3918 | }, 3919 | "peerDependencies": { 3920 | "bufferutil": "^4.0.1", 3921 | "utf-8-validate": ">=5.0.2" 3922 | }, 3923 | "peerDependenciesMeta": { 3924 | "bufferutil": { 3925 | "optional": true 3926 | }, 3927 | "utf-8-validate": { 3928 | "optional": true 3929 | } 3930 | } 3931 | }, 3932 | "node_modules/y18n": { 3933 | "version": "5.0.8", 3934 | "resolved": "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz", 3935 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3936 | "license": "ISC", 3937 | "engines": { 3938 | "node": ">=10" 3939 | } 3940 | }, 3941 | "node_modules/yaml": { 3942 | "version": "2.7.0", 3943 | "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.7.0.tgz", 3944 | "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", 3945 | "license": "ISC", 3946 | "bin": { 3947 | "yaml": "bin.mjs" 3948 | }, 3949 | "engines": { 3950 | "node": ">= 14" 3951 | } 3952 | }, 3953 | "node_modules/yargs": { 3954 | "version": "17.7.2", 3955 | "resolved": "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz", 3956 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 3957 | "license": "MIT", 3958 | "dependencies": { 3959 | "cliui": "^8.0.1", 3960 | "escalade": "^3.1.1", 3961 | "get-caller-file": "^2.0.5", 3962 | "require-directory": "^2.1.1", 3963 | "string-width": "^4.2.3", 3964 | "y18n": "^5.0.5", 3965 | "yargs-parser": "^21.1.1" 3966 | }, 3967 | "engines": { 3968 | "node": ">=12" 3969 | } 3970 | }, 3971 | "node_modules/yargs-parser": { 3972 | "version": "21.1.1", 3973 | "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz", 3974 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 3975 | "license": "ISC", 3976 | "engines": { 3977 | "node": ">=12" 3978 | } 3979 | }, 3980 | "node_modules/yargs/node_modules/ansi-regex": { 3981 | "version": "5.0.1", 3982 | "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", 3983 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3984 | "license": "MIT", 3985 | "engines": { 3986 | "node": ">=8" 3987 | } 3988 | }, 3989 | "node_modules/yargs/node_modules/emoji-regex": { 3990 | "version": "8.0.0", 3991 | "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", 3992 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3993 | "license": "MIT" 3994 | }, 3995 | "node_modules/yargs/node_modules/string-width": { 3996 | "version": "4.2.3", 3997 | "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", 3998 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3999 | "license": "MIT", 4000 | "dependencies": { 4001 | "emoji-regex": "^8.0.0", 4002 | "is-fullwidth-code-point": "^3.0.0", 4003 | "strip-ansi": "^6.0.1" 4004 | }, 4005 | "engines": { 4006 | "node": ">=8" 4007 | } 4008 | }, 4009 | "node_modules/yargs/node_modules/strip-ansi": { 4010 | "version": "6.0.1", 4011 | "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", 4012 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4013 | "license": "MIT", 4014 | "dependencies": { 4015 | "ansi-regex": "^5.0.1" 4016 | }, 4017 | "engines": { 4018 | "node": ">=8" 4019 | } 4020 | }, 4021 | "node_modules/yn": { 4022 | "version": "3.1.1", 4023 | "resolved": "https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz", 4024 | "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", 4025 | "license": "MIT", 4026 | "engines": { 4027 | "node": ">=6" 4028 | } 4029 | }, 4030 | "node_modules/zod": { 4031 | "version": "3.24.1", 4032 | "resolved": "https://registry.npmmirror.com/zod/-/zod-3.24.1.tgz", 4033 | "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==", 4034 | "license": "MIT", 4035 | "funding": { 4036 | "url": "https://github.com/sponsors/colinhacks" 4037 | } 4038 | }, 4039 | "node_modules/zod-to-json-schema": { 4040 | "version": "3.24.1", 4041 | "resolved": "https://registry.npmmirror.com/zod-to-json-schema/-/zod-to-json-schema-3.24.1.tgz", 4042 | "integrity": "sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==", 4043 | "license": "ISC", 4044 | "peerDependencies": { 4045 | "zod": "^3.24.1" 4046 | } 4047 | } 4048 | } 4049 | } 4050 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dify-workflow-mcp", 3 | "version": "1.0.0", 4 | "description": "A TypeScript MCP server for Dify workflows", 5 | "type": "module", 6 | "bin": { 7 | "dify-mcp": "./build/index.js" 8 | }, 9 | "scripts": { 10 | "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", 11 | "start": "node build/index.js", 12 | "dev": "ts-node --esm src/index.ts", 13 | "inspector": "npx @modelcontextprotocol/inspector build/index.js" 14 | }, 15 | "keywords": [ 16 | "mcp", 17 | "dify", 18 | "typescript" 19 | ], 20 | "author": "", 21 | "license": "ISC", 22 | "dependencies": { 23 | "@modelcontextprotocol/inspector": "^0.2.7", 24 | "@modelcontextprotocol/sdk": "^1.0.0", 25 | "@types/axios": "^0.14.0", 26 | "axios": "^1.6.7", 27 | "yaml": "^2.3.4", 28 | "zod": "^3.22.4" 29 | }, 30 | "devDependencies": { 31 | "@types/node": "^20.11.16", 32 | "ts-node": "^10.9.2", 33 | "typescript": "^5.3.3" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- 1 | # Smithery configuration file: https://smithery.ai/docs/build/project-config 2 | 3 | startCommand: 4 | type: stdio 5 | commandFunction: 6 | # A JS function that produces the CLI command based on the given config to start the MCP on stdio. 7 | |- 8 | (config)=>({command:'sh',args:['-c',`cat >config.yaml < ' - "'+sk+'"').join('\n')} 12 | EOF 13 | node build/index.js`],env:{CONFIG_PATH:'config.yaml'}}) 14 | configSchema: 15 | # JSON Schema defining the configuration options for the MCP. 16 | type: object 17 | required: 18 | - difyBaseUrl 19 | - difyAppSks 20 | properties: 21 | difyBaseUrl: 22 | type: string 23 | description: Dify API base URL 24 | difyAppSks: 25 | type: array 26 | items: 27 | type: string 28 | description: List of Dify application secret keys 29 | exampleConfig: 30 | difyBaseUrl: https://api.dify.ai/v1 31 | difyAppSks: 32 | - sk-app-123 33 | - sk-app-456 34 | -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- 1 | import { readFileSync } from 'fs'; 2 | import { parse } from 'yaml'; 3 | import { DifyConfig } from './types.js'; 4 | 5 | /** 6 | * 从指定路径读取配置文件内容。 7 | * @param configPath - 配置文件的路径。 8 | * @returns 配置文件内容字符串。 9 | * @throws 当文件读取失败时抛出错误。 10 | */ 11 | function readConfigFile(configPath: string): string { 12 | try { 13 | return readFileSync(configPath, 'utf8'); 14 | } catch (error) { 15 | const errorMessage = error instanceof Error ? error.message : 'Unknown error'; 16 | throw new Error(`Failed to read config file: ${errorMessage}`); 17 | } 18 | } 19 | 20 | /** 21 | * 解析配置文件内容为 DifyConfig 对象。 22 | * @param fileContents - 配置文件内容字符串。 23 | * @returns 解析后的 DifyConfig 对象。 24 | * @throws 当配置文件格式不正确时抛出错误。 25 | */ 26 | function parseConfigFile(fileContents: string): DifyConfig { 27 | try { 28 | return parse(fileContents) as DifyConfig; 29 | } catch (error) { 30 | const errorMessage = error instanceof Error ? error.message : 'Unknown error'; 31 | throw new Error(`Failed to parse config file: ${errorMessage}`); 32 | } 33 | } 34 | 35 | /** 36 | * 验证 DifyConfig 对象是否包含必需的字段。 37 | * @param config - 要验证的 DifyConfig 对象。 38 | * @throws 当缺少必需字段时抛出错误。 39 | */ 40 | function validateConfig(config: DifyConfig): void { 41 | if (!config.dify_base_url) { 42 | throw new Error('Missing required field: dify_base_url'); 43 | } 44 | if (!Array.isArray(config.dify_app_sks) || config.dify_app_sks.length === 0) { 45 | throw new Error('Missing or invalid field: dify_app_sks must be a non-empty array'); 46 | } 47 | } 48 | 49 | /** 50 | * 从指定路径加载 Dify 配置。 51 | * @param configPath - 配置文件的路径。 52 | * @returns 加载的 Dify 配置对象。 53 | * @throws 当配置文件缺失、格式不正确或缺少必需字段时抛出错误。 54 | */ 55 | export function loadConfig(configPath: string): DifyConfig { 56 | try { 57 | const fileContents = readConfigFile(configPath); 58 | const config = parseConfigFile(fileContents); 59 | validateConfig(config); 60 | return config; 61 | } catch (error) { 62 | const errorMessage = error instanceof Error ? error.message : 'Unknown error'; 63 | throw new Error(`Failed to load config: ${errorMessage}`); 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /src/dify-client.ts: -------------------------------------------------------------------------------- 1 | import axios, { AxiosInstance } from 'axios'; 2 | import { DifyAppInfo, DifyParameters } from './types.js'; 3 | 4 | /** 5 | * 封装 Axios 客户端,处理通用配置和请求。 6 | */ 7 | class HttpClient { 8 | private client: AxiosInstance; 9 | 10 | /** 11 | * 构造函数,创建 HttpClient 实例。 12 | * @param baseUrl 基础 URL 13 | * @param appSk 应用密钥 14 | */ 15 | constructor(baseUrl: string, appSk: string) { 16 | this.client = axios.create({ 17 | baseURL: baseUrl, 18 | headers: { 19 | Authorization: `Bearer ${appSk}`, 20 | 'Content-Type': 'application/json', 21 | }, 22 | }); 23 | } 24 | 25 | /** 26 | * 发起 GET 请求。 27 | * @param url 请求 URL 28 | * @returns 响应数据 29 | * @throws 当请求失败时抛出错误 30 | */ 31 | async get(url: string): Promise { 32 | try { 33 | const response = await this.client.get(url); 34 | return response.data; 35 | } catch (error: any) { 36 | throw new Error(`GET 请求失败: ${error.message}`); 37 | } 38 | } 39 | 40 | /** 41 | * 发起 POST 请求。 42 | * @param url 请求 URL 43 | * @param data 请求数据 44 | * @returns 响应数据 45 | * @throws 当请求失败时抛出错误 46 | */ 47 | async post(url: string, data: any): Promise { 48 | try { 49 | const response = await this.client.post(url, data); 50 | return response.data; 51 | } catch (error: any) { 52 | throw new Error(`POST 请求失败: ${error.message}`); 53 | } 54 | } 55 | } 56 | 57 | /** 58 | * 提供与 Dify API 交互的方法。 59 | */ 60 | export class DifyClient { 61 | private httpClient: HttpClient; 62 | 63 | /** 64 | * 构造函数,创建 DifyClient 实例。 65 | * @param baseUrl Dify API 的基础 URL 66 | * @param appSk 应用程序的密钥 67 | */ 68 | constructor(baseUrl: string, appSk: string) { 69 | this.httpClient = new HttpClient(baseUrl, appSk); 70 | } 71 | 72 | /** 73 | * 获取 Dify 应用的信息。 74 | * @returns 包含应用信息的 Promise 75 | * @throws 当获取应用信息失败时抛出错误 76 | */ 77 | async getAppInfo(): Promise { 78 | try { 79 | return await this.httpClient.get('/info'); 80 | } catch (error: any) { 81 | throw new Error(`获取应用信息失败: ${error.message}`); 82 | } 83 | } 84 | 85 | /** 86 | * 获取 Dify 应用的参数。 87 | * @returns 包含应用参数的 Promise 88 | * @throws 当获取参数失败时抛出错误 89 | */ 90 | async getParameters(): Promise { 91 | try { 92 | return await this.httpClient.get('/parameters'); 93 | } catch (error: any) { 94 | throw new Error(`获取参数失败: ${error.message}`); 95 | } 96 | } 97 | 98 | /** 99 | * 运行 Dify 工作流。 100 | * @param inputs 工作流的输入数据 101 | * @returns 包含工作流输出的 Promise 102 | * @throws 当运行工作流失败时抛出错误 103 | */ 104 | async runWorkflow(inputs: Record): Promise { 105 | try { 106 | const randomUser = this.generateRandomUser(); 107 | const responseData = await this.httpClient.post<{ 108 | data: { outputs: { code: string; checkResult: string } }; 109 | }>('/workflows/run', { 110 | inputs, 111 | response_mode: 'blocking', 112 | user: randomUser, 113 | }); 114 | 115 | const { code, checkResult } = responseData.data.outputs; 116 | const result = [code, checkResult].join('\n\n'); 117 | return result || 'No response from workflow'; 118 | } catch (error: any) { 119 | throw new Error(`运行工作流失败: ${error.message}`); 120 | } 121 | } 122 | 123 | /** 124 | * 停止指定 ID 的任务执行。 125 | * @param taskId 要停止的任务的 ID 126 | * @throws 当停止执行任务失败时抛出错误 127 | */ 128 | async stopExecution(taskId: string): Promise { 129 | try { 130 | await this.httpClient.post(`/chat-messages/${taskId}/stop`, null); // 修改点:不传递请求体 131 | } catch (error: any) { 132 | throw new Error(`停止执行任务失败: ${error.message}`); 133 | } 134 | } 135 | 136 | /** 137 | * 生成一个随机的用户名。 138 | * @returns 随机生成的用户名 139 | */ 140 | private generateRandomUser(): string { 141 | return `dify-mcp-server-ts-${Math.random().toString(16).slice(0, 12)}`; 142 | } 143 | } 144 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { Server } from '@modelcontextprotocol/sdk/server/index.js' 2 | import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js' 3 | import { CallToolRequestSchema, ListToolsRequestSchema } from '@modelcontextprotocol/sdk/types.js' 4 | import { z } from 'zod' 5 | import path, { dirname } from 'path'; 6 | import { fileURLToPath } from 'url'; 7 | import { loadConfig } from './config.js' 8 | import { DifyClient } from './dify-client.js' 9 | import { 10 | BaseUserInputForm, 11 | DifyParameters, 12 | MCPTool, 13 | MCPToolInputSchema, 14 | NumberUserInputForm, 15 | ParagraphUserInputForm, 16 | SelectUserInputForm, 17 | TextUserInputForm, 18 | UserInputControlType 19 | } from './types.js' 20 | 21 | const __filename = fileURLToPath(import.meta.url); 22 | const __dirname = dirname(__filename); 23 | 24 | // Load configuration 25 | const config = loadConfig(process.env.CONFIG_PATH || path.resolve(__dirname, '../config.yaml')) 26 | 27 | // Create server instance 28 | const server = new Server( 29 | { 30 | name: 'dify-workflow-mcp', 31 | version: '1.0.0' 32 | }, 33 | { 34 | capabilities: { 35 | tools: {} 36 | } 37 | } 38 | ) 39 | 40 | // cache dify parameters 41 | const difyParametersMap = new Map() 42 | // cache name app sks 43 | const appSkMap = new Map() 44 | // Initialize Dify clients 45 | const difyClients = new Map() 46 | for (const appSk of config.dify_app_sks) { 47 | const client = new DifyClient(config.dify_base_url, appSk) 48 | difyClients.set(appSk, client) 49 | } 50 | 51 | // List available tools 52 | server.setRequestHandler(ListToolsRequestSchema, async () => { 53 | const tools: MCPTool[] = [] 54 | 55 | let index = 0 56 | 57 | for (const client of difyClients.values()) { 58 | try { 59 | const [appInfo, parameters] = await Promise.all([client.getAppInfo(), client.getParameters()]) 60 | 61 | const inputSchema: MCPToolInputSchema = convertDifyParametersToJsonSchema(parameters) 62 | 63 | // Cache Dify parameters 64 | difyParametersMap.set(appInfo.name, parameters) 65 | 66 | // Cache app sk 67 | appSkMap.set(appInfo.name, config.dify_app_sks[index++]) 68 | 69 | tools.push({ 70 | name: appInfo.name, 71 | description: appInfo.description, 72 | inputSchema 73 | }) 74 | } catch (error) { 75 | console.error('Failed to load tool:', error) 76 | } 77 | } 78 | 79 | return { tools } 80 | }) 81 | 82 | // Handle tool execution 83 | server.setRequestHandler(CallToolRequestSchema, async (request) => { 84 | const { name, arguments: args } = request.params 85 | 86 | try { 87 | // Find the corresponding Dify client 88 | const appSk = appSkMap.get(name) 89 | if (!appSk) { 90 | throw new Error('Unsupported tool') 91 | } 92 | const client = difyClients.get(appSk) 93 | if (!client) { 94 | throw new Error('No Dify client available') 95 | } 96 | 97 | const difyParameters = difyParametersMap.get(name) 98 | if (!difyParameters) { 99 | throw new Error('No Dify parameters available') 100 | } 101 | 102 | // Validate input parameters 103 | const validatedArgs = await validateInputParameters(args, difyParameters) 104 | 105 | // Execute the workflow 106 | const result = await client.runWorkflow(validatedArgs) 107 | 108 | return { 109 | content: [ 110 | { 111 | type: 'text', 112 | text: result 113 | } 114 | ] 115 | } 116 | } catch (error) { 117 | if (error instanceof z.ZodError) { 118 | throw new Error(`Invalid arguments: ${error.errors.map((e) => `${e.path.join('.')}: ${e.message}`).join(', ')}`) 119 | } 120 | throw error 121 | } 122 | }) 123 | 124 | // Validate input parameters 125 | const validateInputParameters = (args: any, difyParameters: DifyParameters) => { 126 | const schema = z.object( 127 | Object.fromEntries( 128 | difyParameters.user_input_form.map((form) => { 129 | if (isParagraphInput(form)) { 130 | const { required, label, variable } = form[UserInputControlType.ParagraphInput] 131 | const currentSchema = required 132 | ? z.string({ 133 | message: `${label} is required!` 134 | }) 135 | : z.optional(z.string()) 136 | return [variable, currentSchema] 137 | } 138 | 139 | if (isTextInput(form)) { 140 | const { required, label, variable } = form[UserInputControlType.TextInput] 141 | const currentSchema = required 142 | ? z.string({ 143 | message: `${label} is required!` 144 | }) 145 | : z.optional(z.string()) 146 | return [variable, currentSchema] 147 | } 148 | 149 | if (isSelectInput(form)) { 150 | const { required, options, variable } = form[UserInputControlType.SelectInput] 151 | const currentSchema = required 152 | ? z.enum(options as [string, ...string[]]) 153 | : z.optional(z.enum(options as [string, ...string[]])) 154 | return [variable, currentSchema] 155 | } 156 | 157 | if (isNumberInput(form)) { 158 | const { required, label, variable } = form[UserInputControlType.NumberInput] 159 | const currentSchema = required 160 | ? z.number({ 161 | message: `${label} is required!` 162 | }) 163 | : z.optional(z.number()) 164 | return [variable, currentSchema] 165 | } 166 | 167 | throw new Error(`Invalid difyParameters`) 168 | }) 169 | ) 170 | ) 171 | return schema.parse(args) 172 | } 173 | 174 | /** 175 | * Convert Dify parameters to JSON Schema 176 | */ 177 | const convertDifyParametersToJsonSchema = (parameters: DifyParameters): MCPToolInputSchema => { 178 | const inputSchema: MCPToolInputSchema = { 179 | type: 'object', 180 | properties: {}, 181 | required: [] 182 | } 183 | for (const input of parameters.user_input_form) { 184 | // 处理 UserInputControlType.TextInput 185 | if (isTextInput(input)) { 186 | inputSchema.properties[input[UserInputControlType.TextInput].variable] = { 187 | type: 'string' 188 | } 189 | } 190 | 191 | // 处理 UserInputControlType.ParagraphInput 192 | if (isParagraphInput(input)) { 193 | inputSchema.properties[input[UserInputControlType.ParagraphInput].variable] = { 194 | type: 'string' 195 | } 196 | } 197 | 198 | // 处理 UserInputControlType.SelectInput 199 | if (isSelectInput(input)) { 200 | inputSchema.properties[input[UserInputControlType.SelectInput].variable] = { 201 | type: 'array', 202 | enum: input[UserInputControlType.SelectInput].options 203 | } 204 | } 205 | 206 | // 处理 UserInputControlType.NumberInput 207 | if (isNumberInput(input)) { 208 | inputSchema.properties[input[UserInputControlType.NumberInput].variable] = { 209 | type: 'number' 210 | } 211 | } 212 | } 213 | return inputSchema 214 | } 215 | 216 | const isTextInput = (input: BaseUserInputForm): input is TextUserInputForm => { 217 | return input['text'] !== undefined 218 | } 219 | 220 | const isParagraphInput = (input: BaseUserInputForm): input is ParagraphUserInputForm => { 221 | return input['paragraph'] !== undefined 222 | } 223 | 224 | const isSelectInput = (input: BaseUserInputForm): input is SelectUserInputForm => { 225 | return input['select'] !== undefined 226 | } 227 | 228 | const isNumberInput = (input: BaseUserInputForm): input is NumberUserInputForm => { 229 | return input['number'] !== undefined 230 | } 231 | 232 | // Start the server 233 | async function main() { 234 | const transport = new StdioServerTransport() 235 | await server.connect(transport) 236 | console.error('Dify MCP Server running on stdio') 237 | } 238 | 239 | main().catch((error) => { 240 | console.error('Fatal error in main():', error) 241 | process.exit(1) 242 | }) 243 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | import { ToolSchema } from '@modelcontextprotocol/sdk/types.js' 2 | import { z } from 'zod' 3 | 4 | // Configuration types 5 | export interface DifyConfig { 6 | dify_base_url: string 7 | dify_app_sks: string[] 8 | } 9 | 10 | // Dify API response types 11 | export interface DifyAppInfo { 12 | name: string 13 | description: string 14 | tags: string[] 15 | } 16 | 17 | export interface DifyParameterField { 18 | label: string 19 | variable: string 20 | required: boolean 21 | default: string 22 | } 23 | 24 | export interface DifyFileUploadConfig { 25 | enabled: boolean 26 | number_limits: number 27 | detail: string 28 | transfer_methods: string[] 29 | } 30 | 31 | export interface DifySystemParameters { 32 | file_size_limit: number 33 | image_file_size_limit: number 34 | audio_file_size_limit: number 35 | video_file_size_limit: number 36 | } 37 | 38 | interface BaseInputControl { 39 | label: string 40 | variable: string 41 | required: boolean 42 | default?: string 43 | } 44 | 45 | export enum UserInputControlType { 46 | TextInput = 'text-input', 47 | ParagraphInput = 'paragraph', 48 | SelectInput = 'select', 49 | NumberInput = 'number' 50 | } 51 | 52 | export abstract class BaseUserInputForm { 53 | [key: string]: BaseInputControl 54 | } 55 | 56 | export interface TextUserInputForm extends BaseUserInputForm { 57 | [UserInputControlType.TextInput]: BaseInputControl 58 | } 59 | 60 | export interface ParagraphUserInputForm extends BaseUserInputForm { 61 | [UserInputControlType.ParagraphInput]: BaseInputControl 62 | } 63 | 64 | export interface SelectUserInputForm extends BaseUserInputForm { 65 | [UserInputControlType.SelectInput]: BaseInputControl & { 66 | options: string[] 67 | } 68 | } 69 | 70 | export interface NumberUserInputForm extends BaseUserInputForm { 71 | [UserInputControlType.NumberInput]: BaseInputControl 72 | } 73 | 74 | export type UserInputForm = TextUserInputForm | ParagraphUserInputForm | SelectUserInputForm | NumberUserInputForm 75 | 76 | export interface DifyParameters { 77 | user_input_form: UserInputForm[] 78 | file_upload: { 79 | image: DifyFileUploadConfig 80 | } 81 | system_parameters: DifySystemParameters 82 | } 83 | 84 | // MCP Tool types 85 | export type MCPToolInputSchema = Required['inputSchema']> 86 | 87 | export interface MCPTool { 88 | name: string 89 | description: string 90 | inputSchema: MCPToolInputSchema 91 | } 92 | 93 | // Dify API response types 94 | export interface DifyWorkflowResponse { 95 | answer: string 96 | task_id: string 97 | } 98 | -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------