├── .env.example ├── .gitignore ├── README.md ├── TESTING.md ├── examples ├── mcp-settings.example.json └── modes.example.json ├── package-lock.json ├── package.json ├── src └── index.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | # Configuration path for custom modes 2 | # Default: %APPDATA%/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_custom_modes.json 3 | MODES_CONFIG_PATH=/path/to/custom/modes.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | .env 4 | *.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Modes MCP Server 2 | 3 | An MCP server for managing Roo's custom operational modes, providing programmatic control over mode configuration and management. 4 | 5 | ## Features 6 | 7 | - Full CRUD operations for custom modes 8 | - Schema validation with Zod 9 | - File system watching for config changes 10 | - Error handling with standard MCP error codes 11 | - Atomic file operations 12 | 13 | ## Installation 14 | 15 | ```bash 16 | # Clone the repository 17 | git clone https://github.com/mkc909/modes-mcp-server.git 18 | cd modes-mcp-server 19 | 20 | # Install dependencies 21 | npm install 22 | 23 | # Build the project 24 | npm run build 25 | ``` 26 | 27 | ## Configuration 28 | 29 | ### 1. Environment Variables 30 | Copy `.env.example` to `.env` and adjust as needed: 31 | ```bash 32 | cp .env.example .env 33 | ``` 34 | 35 | Available environment variables: 36 | - `MODES_CONFIG_PATH`: Path to custom modes configuration file (default: `%APPDATA%/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_custom_modes.json`) 37 | 38 | ### 2. Custom Modes Configuration 39 | Create a JSON file for your custom modes configuration. See `examples/modes.example.json` for the format: 40 | 41 | ```json 42 | { 43 | "customModes": [ 44 | { 45 | "slug": "example-mode", 46 | "name": "Example Mode", 47 | "roleDefinition": "Example role definition describing the mode's capabilities and responsibilities.", 48 | "groups": [ 49 | "read", 50 | ["edit", { 51 | "fileRegex": "\\.md$", 52 | "description": "Can edit markdown files only" 53 | }], 54 | "command", 55 | "mcp" 56 | ], 57 | "customInstructions": "Example custom instructions for the mode." 58 | } 59 | ] 60 | } 61 | ``` 62 | 63 | ### 3. MCP Settings 64 | Add the server configuration to your MCP settings file (typically at `%APPDATA%/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json`). See `examples/mcp-settings.example.json` for the format: 65 | 66 | ```json 67 | { 68 | "mcpServers": { 69 | "modes": { 70 | "command": "node", 71 | "args": ["/path/to/modes-mcp-server/build/index.js"], 72 | "env": { 73 | "MODES_CONFIG_PATH": "/path/to/custom/modes.json" 74 | }, 75 | "disabled": false, 76 | "alwaysAllow": [] 77 | } 78 | } 79 | } 80 | ``` 81 | 82 | ## Operational Modes Framework 83 | 84 | The server manages a comprehensive set of operational modes: 85 | 86 | ### Core System Modes 87 | 1. **Planning Mode** 🎯 88 | - Strategic Planning Specialist 89 | - System design and resource allocation 90 | - Project roadmap development 91 | 92 | 2. **Analytics Mode** 📊 93 | - Data Analysis Expert 94 | - Metrics tracking and analysis 95 | - Performance monitoring 96 | 97 | 3. **Research Mode** 🔍 98 | - System Research Specialist 99 | - Best practices research 100 | - Solution exploration 101 | 102 | 4. **Implementation Mode** ⚙️ 103 | - Operations Implementation Expert 104 | - System deployment 105 | - Process execution 106 | 107 | 5. **Troubleshooting Mode** 🔧 108 | - System Resolution Specialist 109 | - Problem identification 110 | - Issue resolution 111 | 112 | 6. **Quality Control Mode** ✅ 113 | - Quality Assurance Expert 114 | - System validation 115 | - Performance verification 116 | 117 | 7. **Integration Mode** 🔄 118 | - Systems Integration Specialist 119 | - Cross-system coordination 120 | - Workflow optimization 121 | 122 | 8. **Documentation Mode** 📝 123 | - Knowledge Management Specialist 124 | - Process documentation 125 | - Standard maintenance 126 | 127 | 9. **Session Management Mode** ⚡ 128 | - Session Management Specialist 129 | - Daily workflow orchestration 130 | - State management 131 | 132 | ### Specialized Modes 133 | - **Trade Ops Manager** 134 | - Systematic trading and risk management 135 | - Trade documentation and analysis 136 | - Market analysis and strategy optimization 137 | 138 | ## Mode Transition Flow 139 | 140 | ```mermaid 141 | graph TD 142 | A[Planning] --> B[Research] 143 | B --> C[Implementation] 144 | C --> D[Integration] 145 | D --> E[Quality Control] 146 | E --> F[Analytics] 147 | F --> G[Troubleshooting] 148 | G --> H[Documentation] 149 | H --> A 150 | ``` 151 | 152 | ## Available Tools 153 | 154 | ### list_modes 155 | Lists all custom modes currently configured. 156 | 157 | ### get_mode 158 | Get details of a specific mode by its slug. 159 | 160 | Parameters: 161 | - `slug`: The unique identifier of the mode 162 | 163 | ### create_mode 164 | Create a new custom mode. 165 | 166 | Parameters: 167 | - `slug`: Unique identifier (lowercase letters, numbers, and hyphens) 168 | - `name`: Display name for the mode 169 | - `roleDefinition`: Detailed description of the mode's role and capabilities 170 | - `groups`: Array of allowed tool groups 171 | - `customInstructions`: (optional) Additional instructions for the mode 172 | 173 | ### update_mode 174 | Update an existing custom mode. 175 | 176 | Parameters: 177 | - `slug`: The unique identifier of the mode to update 178 | - `updates`: Object containing the fields to update (name, roleDefinition, groups, customInstructions) 179 | 180 | ### delete_mode 181 | Delete a custom mode. 182 | 183 | Parameters: 184 | - `slug`: The unique identifier of the mode to delete 185 | 186 | ### validate_mode 187 | Validate a mode configuration without saving it. 188 | 189 | Parameters: 190 | - `mode`: Complete mode configuration object to validate 191 | 192 | ## Mode Configuration Schema 193 | 194 | ```typescript 195 | interface CustomMode { 196 | slug: string; // Lowercase letters, numbers, and hyphens only 197 | name: string; // Display name 198 | roleDefinition: string; // Detailed description 199 | groups: (string | [string, { fileRegex: string, description: string }])[]; 200 | customInstructions?: string; // Optional additional instructions 201 | } 202 | ``` 203 | 204 | ## Development 205 | 206 | 1. Make changes to the source code in `src/` 207 | 2. Build the project: 208 | ```bash 209 | npm run build 210 | ``` 211 | 3. Start the server: 212 | ```bash 213 | npm start 214 | ``` 215 | 216 | ## Best Practices 217 | 218 | 1. **Mode Selection** 219 | - Choose appropriate mode for task 220 | - Follow mode-specific workflows 221 | - Use designated tool groups 222 | 223 | 2. **Mode Transitions** 224 | - Follow natural transition flow 225 | - Complete current mode tasks 226 | - Preserve context between modes 227 | 228 | 3. **Configuration Management** 229 | - Validate changes before saving 230 | - Maintain clear role definitions 231 | - Document mode capabilities 232 | 233 | ## Error Handling 234 | 235 | The server uses standard MCP error codes: 236 | - `InvalidParams`: Invalid input parameters or mode not found 237 | - `MethodNotFound`: Unknown tool requested 238 | - `InternalError`: File system errors or other internal issues 239 | 240 | ## Testing 241 | 242 | See [TESTING.md](TESTING.md) for comprehensive test cases and validation procedures. 243 | 244 | ## Contributing 245 | 246 | 1. Fork repository 247 | 2. Create feature branch 248 | 3. Submit pull request 249 | 4. Follow coding standards 250 | 251 | ## License 252 | 253 | MIT License - see [LICENSE](LICENSE) for details -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- 1 | # Modes MCP Server Testing 2 | 3 | ## Test Cases and Results 4 | 5 | ### 1. List Modes 6 | ```typescript 7 | // Test: List all current modes 8 | await use_mcp_tool({ 9 | server_name: "modes", 10 | tool_name: "list_modes", 11 | arguments: {} 12 | }); 13 | ``` 14 | Expected: Returns array of current custom modes 15 | Status: ✅ Success 16 | 17 | ### 2. Create Mode 18 | ```typescript 19 | // Test: Create a new test mode 20 | await use_mcp_tool({ 21 | server_name: "modes", 22 | tool_name: "create_mode", 23 | arguments: { 24 | slug: "test-mode", 25 | name: "Test Mode", 26 | roleDefinition: "Test mode for validation", 27 | groups: ["read", "edit"], 28 | customInstructions: "Test instructions" 29 | } 30 | }); 31 | ``` 32 | Expected: Creates new mode and returns success message 33 | Status: ✅ Success 34 | 35 | ### 3. Get Mode 36 | ```typescript 37 | // Test: Retrieve the test mode 38 | await use_mcp_tool({ 39 | server_name: "modes", 40 | tool_name: "get_mode", 41 | arguments: { 42 | slug: "test-mode" 43 | } 44 | }); 45 | ``` 46 | Expected: Returns details of test mode 47 | Status: ✅ Success 48 | 49 | ### 4. Update Mode 50 | ```typescript 51 | // Test: Update test mode 52 | await use_mcp_tool({ 53 | server_name: "modes", 54 | tool_name: "update_mode", 55 | arguments: { 56 | slug: "test-mode", 57 | updates: { 58 | name: "Updated Test Mode", 59 | customInstructions: "Updated test instructions" 60 | } 61 | } 62 | }); 63 | ``` 64 | Expected: Updates mode and returns success message 65 | Status: ✅ Success 66 | 67 | ### 5. Validate Mode 68 | ```typescript 69 | // Test: Validate a mode configuration 70 | await use_mcp_tool({ 71 | server_name: "modes", 72 | tool_name: "validate_mode", 73 | arguments: { 74 | mode: { 75 | slug: "valid-test", 76 | name: "Valid Test", 77 | roleDefinition: "Valid test mode", 78 | groups: ["read"] 79 | } 80 | } 81 | }); 82 | ``` 83 | Expected: Returns validation success message 84 | Status: ✅ Success 85 | 86 | ### 6. Delete Mode 87 | ```typescript 88 | // Test: Delete test mode 89 | await use_mcp_tool({ 90 | server_name: "modes", 91 | tool_name: "delete_mode", 92 | arguments: { 93 | slug: "test-mode" 94 | } 95 | }); 96 | ``` 97 | Expected: Deletes mode and returns success message 98 | Status: ✅ Success 99 | 100 | ## Error Cases 101 | 102 | ### 1. Invalid Mode Slug 103 | ```typescript 104 | // Test: Create mode with invalid slug 105 | await use_mcp_tool({ 106 | server_name: "modes", 107 | tool_name: "create_mode", 108 | arguments: { 109 | slug: "Test Mode", // Contains spaces and capitals 110 | name: "Test Mode", 111 | roleDefinition: "Test mode", 112 | groups: ["read"] 113 | } 114 | }); 115 | ``` 116 | Expected: Returns InvalidParams error 117 | Status: ✅ Success 118 | 119 | ### 2. Get Non-existent Mode 120 | ```typescript 121 | // Test: Get mode that doesn't exist 122 | await use_mcp_tool({ 123 | server_name: "modes", 124 | tool_name: "get_mode", 125 | arguments: { 126 | slug: "non-existent" 127 | } 128 | }); 129 | ``` 130 | Expected: Returns InvalidParams error 131 | Status: ✅ Success 132 | 133 | ### 3. Invalid Group Configuration 134 | ```typescript 135 | // Test: Create mode with invalid group config 136 | await use_mcp_tool({ 137 | server_name: "modes", 138 | tool_name: "create_mode", 139 | arguments: { 140 | slug: "invalid-groups", 141 | name: "Invalid Groups", 142 | roleDefinition: "Test mode", 143 | groups: ["invalid-group"] 144 | } 145 | }); 146 | ``` 147 | Expected: Returns InvalidParams error 148 | Status: ✅ Success 149 | 150 | ## File System Tests 151 | 152 | ### 1. Config File Watching 153 | 1. Make change to config file 154 | 2. Verify server logs change detection 155 | Status: ✅ Success 156 | 157 | ### 2. Config File Backup 158 | 1. Verify config file is preserved during updates 159 | 2. Verify atomic writes for config updates 160 | Status: ✅ Success 161 | 162 | ## Performance Tests 163 | 164 | ### 1. Large Config Load 165 | 1. Test with 100+ modes in config 166 | 2. Verify reasonable load times 167 | Status: ✅ Success 168 | 169 | ### 2. Concurrent Operations 170 | 1. Test multiple rapid operations 171 | 2. Verify file locking prevents corruption 172 | Status: ✅ Success 173 | 174 | ## Integration Tests 175 | 176 | ### 1. VSCode Integration 177 | 1. Verify modes appear in VSCode mode selector 178 | 2. Verify mode switching works correctly 179 | Status: ✅ Success 180 | 181 | ### 2. File Restrictions 182 | 1. Verify file access restrictions work 183 | 2. Test file pattern matching 184 | Status: ✅ Success 185 | 186 | ## Notes 187 | - All tests performed on Windows 11 188 | - Node.js version: v20.11.0 189 | - TypeScript version: 5.3.3 -------------------------------------------------------------------------------- /examples/mcp-settings.example.json: -------------------------------------------------------------------------------- 1 | { 2 | "mcpServers": { 3 | "modes": { 4 | "command": "node", 5 | "args": ["/path/to/modes-mcp-server/build/index.js"], 6 | "env": { 7 | "MODES_CONFIG_PATH": "/path/to/custom/modes.json" 8 | }, 9 | "disabled": false, 10 | "alwaysAllow": [] 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /examples/modes.example.json: -------------------------------------------------------------------------------- 1 | { 2 | "customModes": [ 3 | { 4 | "slug": "example-mode", 5 | "name": "Example Mode", 6 | "roleDefinition": "Example role definition describing the mode's capabilities and responsibilities.", 7 | "groups": [ 8 | "read", 9 | ["edit", { 10 | "fileRegex": "\\.md$", 11 | "description": "Can edit markdown files only" 12 | }], 13 | "command", 14 | "mcp" 15 | ], 16 | "customInstructions": "Example custom instructions for the mode." 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "modes-mcp-server", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "modes-mcp-server", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "@modelcontextprotocol/sdk": "0.6.0", 12 | "chokidar": "^3.5.3", 13 | "fs-extra": "^11.2.0", 14 | "zod": "^3.22.4" 15 | }, 16 | "devDependencies": { 17 | "@types/fs-extra": "^11.0.4", 18 | "@types/jest": "^29.5.11", 19 | "@types/node": "^20.11.5", 20 | "jest": "^29.7.0", 21 | "ts-jest": "^29.1.1", 22 | "typescript": "^5.3.3" 23 | } 24 | }, 25 | "node_modules/@ampproject/remapping": { 26 | "version": "2.3.0", 27 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 28 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 29 | "dev": true, 30 | "license": "Apache-2.0", 31 | "dependencies": { 32 | "@jridgewell/gen-mapping": "^0.3.5", 33 | "@jridgewell/trace-mapping": "^0.3.24" 34 | }, 35 | "engines": { 36 | "node": ">=6.0.0" 37 | } 38 | }, 39 | "node_modules/@babel/code-frame": { 40 | "version": "7.26.2", 41 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", 42 | "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", 43 | "dev": true, 44 | "license": "MIT", 45 | "dependencies": { 46 | "@babel/helper-validator-identifier": "^7.25.9", 47 | "js-tokens": "^4.0.0", 48 | "picocolors": "^1.0.0" 49 | }, 50 | "engines": { 51 | "node": ">=6.9.0" 52 | } 53 | }, 54 | "node_modules/@babel/compat-data": { 55 | "version": "7.26.5", 56 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz", 57 | "integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==", 58 | "dev": true, 59 | "license": "MIT", 60 | "engines": { 61 | "node": ">=6.9.0" 62 | } 63 | }, 64 | "node_modules/@babel/core": { 65 | "version": "7.26.7", 66 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.7.tgz", 67 | "integrity": "sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==", 68 | "dev": true, 69 | "license": "MIT", 70 | "dependencies": { 71 | "@ampproject/remapping": "^2.2.0", 72 | "@babel/code-frame": "^7.26.2", 73 | "@babel/generator": "^7.26.5", 74 | "@babel/helper-compilation-targets": "^7.26.5", 75 | "@babel/helper-module-transforms": "^7.26.0", 76 | "@babel/helpers": "^7.26.7", 77 | "@babel/parser": "^7.26.7", 78 | "@babel/template": "^7.25.9", 79 | "@babel/traverse": "^7.26.7", 80 | "@babel/types": "^7.26.7", 81 | "convert-source-map": "^2.0.0", 82 | "debug": "^4.1.0", 83 | "gensync": "^1.0.0-beta.2", 84 | "json5": "^2.2.3", 85 | "semver": "^6.3.1" 86 | }, 87 | "engines": { 88 | "node": ">=6.9.0" 89 | }, 90 | "funding": { 91 | "type": "opencollective", 92 | "url": "https://opencollective.com/babel" 93 | } 94 | }, 95 | "node_modules/@babel/generator": { 96 | "version": "7.26.5", 97 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz", 98 | "integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==", 99 | "dev": true, 100 | "license": "MIT", 101 | "dependencies": { 102 | "@babel/parser": "^7.26.5", 103 | "@babel/types": "^7.26.5", 104 | "@jridgewell/gen-mapping": "^0.3.5", 105 | "@jridgewell/trace-mapping": "^0.3.25", 106 | "jsesc": "^3.0.2" 107 | }, 108 | "engines": { 109 | "node": ">=6.9.0" 110 | } 111 | }, 112 | "node_modules/@babel/helper-compilation-targets": { 113 | "version": "7.26.5", 114 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", 115 | "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", 116 | "dev": true, 117 | "license": "MIT", 118 | "dependencies": { 119 | "@babel/compat-data": "^7.26.5", 120 | "@babel/helper-validator-option": "^7.25.9", 121 | "browserslist": "^4.24.0", 122 | "lru-cache": "^5.1.1", 123 | "semver": "^6.3.1" 124 | }, 125 | "engines": { 126 | "node": ">=6.9.0" 127 | } 128 | }, 129 | "node_modules/@babel/helper-module-imports": { 130 | "version": "7.25.9", 131 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", 132 | "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", 133 | "dev": true, 134 | "license": "MIT", 135 | "dependencies": { 136 | "@babel/traverse": "^7.25.9", 137 | "@babel/types": "^7.25.9" 138 | }, 139 | "engines": { 140 | "node": ">=6.9.0" 141 | } 142 | }, 143 | "node_modules/@babel/helper-module-transforms": { 144 | "version": "7.26.0", 145 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", 146 | "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", 147 | "dev": true, 148 | "license": "MIT", 149 | "dependencies": { 150 | "@babel/helper-module-imports": "^7.25.9", 151 | "@babel/helper-validator-identifier": "^7.25.9", 152 | "@babel/traverse": "^7.25.9" 153 | }, 154 | "engines": { 155 | "node": ">=6.9.0" 156 | }, 157 | "peerDependencies": { 158 | "@babel/core": "^7.0.0" 159 | } 160 | }, 161 | "node_modules/@babel/helper-plugin-utils": { 162 | "version": "7.26.5", 163 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", 164 | "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", 165 | "dev": true, 166 | "license": "MIT", 167 | "engines": { 168 | "node": ">=6.9.0" 169 | } 170 | }, 171 | "node_modules/@babel/helper-string-parser": { 172 | "version": "7.25.9", 173 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 174 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 175 | "dev": true, 176 | "license": "MIT", 177 | "engines": { 178 | "node": ">=6.9.0" 179 | } 180 | }, 181 | "node_modules/@babel/helper-validator-identifier": { 182 | "version": "7.25.9", 183 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 184 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 185 | "dev": true, 186 | "license": "MIT", 187 | "engines": { 188 | "node": ">=6.9.0" 189 | } 190 | }, 191 | "node_modules/@babel/helper-validator-option": { 192 | "version": "7.25.9", 193 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", 194 | "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", 195 | "dev": true, 196 | "license": "MIT", 197 | "engines": { 198 | "node": ">=6.9.0" 199 | } 200 | }, 201 | "node_modules/@babel/helpers": { 202 | "version": "7.26.7", 203 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.7.tgz", 204 | "integrity": "sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==", 205 | "dev": true, 206 | "license": "MIT", 207 | "dependencies": { 208 | "@babel/template": "^7.25.9", 209 | "@babel/types": "^7.26.7" 210 | }, 211 | "engines": { 212 | "node": ">=6.9.0" 213 | } 214 | }, 215 | "node_modules/@babel/parser": { 216 | "version": "7.26.7", 217 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.7.tgz", 218 | "integrity": "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==", 219 | "dev": true, 220 | "license": "MIT", 221 | "dependencies": { 222 | "@babel/types": "^7.26.7" 223 | }, 224 | "bin": { 225 | "parser": "bin/babel-parser.js" 226 | }, 227 | "engines": { 228 | "node": ">=6.0.0" 229 | } 230 | }, 231 | "node_modules/@babel/plugin-syntax-async-generators": { 232 | "version": "7.8.4", 233 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 234 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 235 | "dev": true, 236 | "license": "MIT", 237 | "dependencies": { 238 | "@babel/helper-plugin-utils": "^7.8.0" 239 | }, 240 | "peerDependencies": { 241 | "@babel/core": "^7.0.0-0" 242 | } 243 | }, 244 | "node_modules/@babel/plugin-syntax-bigint": { 245 | "version": "7.8.3", 246 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 247 | "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 248 | "dev": true, 249 | "license": "MIT", 250 | "dependencies": { 251 | "@babel/helper-plugin-utils": "^7.8.0" 252 | }, 253 | "peerDependencies": { 254 | "@babel/core": "^7.0.0-0" 255 | } 256 | }, 257 | "node_modules/@babel/plugin-syntax-class-properties": { 258 | "version": "7.12.13", 259 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 260 | "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 261 | "dev": true, 262 | "license": "MIT", 263 | "dependencies": { 264 | "@babel/helper-plugin-utils": "^7.12.13" 265 | }, 266 | "peerDependencies": { 267 | "@babel/core": "^7.0.0-0" 268 | } 269 | }, 270 | "node_modules/@babel/plugin-syntax-class-static-block": { 271 | "version": "7.14.5", 272 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", 273 | "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", 274 | "dev": true, 275 | "license": "MIT", 276 | "dependencies": { 277 | "@babel/helper-plugin-utils": "^7.14.5" 278 | }, 279 | "engines": { 280 | "node": ">=6.9.0" 281 | }, 282 | "peerDependencies": { 283 | "@babel/core": "^7.0.0-0" 284 | } 285 | }, 286 | "node_modules/@babel/plugin-syntax-import-attributes": { 287 | "version": "7.26.0", 288 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", 289 | "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", 290 | "dev": true, 291 | "license": "MIT", 292 | "dependencies": { 293 | "@babel/helper-plugin-utils": "^7.25.9" 294 | }, 295 | "engines": { 296 | "node": ">=6.9.0" 297 | }, 298 | "peerDependencies": { 299 | "@babel/core": "^7.0.0-0" 300 | } 301 | }, 302 | "node_modules/@babel/plugin-syntax-import-meta": { 303 | "version": "7.10.4", 304 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 305 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 306 | "dev": true, 307 | "license": "MIT", 308 | "dependencies": { 309 | "@babel/helper-plugin-utils": "^7.10.4" 310 | }, 311 | "peerDependencies": { 312 | "@babel/core": "^7.0.0-0" 313 | } 314 | }, 315 | "node_modules/@babel/plugin-syntax-json-strings": { 316 | "version": "7.8.3", 317 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 318 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 319 | "dev": true, 320 | "license": "MIT", 321 | "dependencies": { 322 | "@babel/helper-plugin-utils": "^7.8.0" 323 | }, 324 | "peerDependencies": { 325 | "@babel/core": "^7.0.0-0" 326 | } 327 | }, 328 | "node_modules/@babel/plugin-syntax-jsx": { 329 | "version": "7.25.9", 330 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", 331 | "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", 332 | "dev": true, 333 | "license": "MIT", 334 | "dependencies": { 335 | "@babel/helper-plugin-utils": "^7.25.9" 336 | }, 337 | "engines": { 338 | "node": ">=6.9.0" 339 | }, 340 | "peerDependencies": { 341 | "@babel/core": "^7.0.0-0" 342 | } 343 | }, 344 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 345 | "version": "7.10.4", 346 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 347 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 348 | "dev": true, 349 | "license": "MIT", 350 | "dependencies": { 351 | "@babel/helper-plugin-utils": "^7.10.4" 352 | }, 353 | "peerDependencies": { 354 | "@babel/core": "^7.0.0-0" 355 | } 356 | }, 357 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 358 | "version": "7.8.3", 359 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 360 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 361 | "dev": true, 362 | "license": "MIT", 363 | "dependencies": { 364 | "@babel/helper-plugin-utils": "^7.8.0" 365 | }, 366 | "peerDependencies": { 367 | "@babel/core": "^7.0.0-0" 368 | } 369 | }, 370 | "node_modules/@babel/plugin-syntax-numeric-separator": { 371 | "version": "7.10.4", 372 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 373 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 374 | "dev": true, 375 | "license": "MIT", 376 | "dependencies": { 377 | "@babel/helper-plugin-utils": "^7.10.4" 378 | }, 379 | "peerDependencies": { 380 | "@babel/core": "^7.0.0-0" 381 | } 382 | }, 383 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 384 | "version": "7.8.3", 385 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 386 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 387 | "dev": true, 388 | "license": "MIT", 389 | "dependencies": { 390 | "@babel/helper-plugin-utils": "^7.8.0" 391 | }, 392 | "peerDependencies": { 393 | "@babel/core": "^7.0.0-0" 394 | } 395 | }, 396 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 397 | "version": "7.8.3", 398 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 399 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 400 | "dev": true, 401 | "license": "MIT", 402 | "dependencies": { 403 | "@babel/helper-plugin-utils": "^7.8.0" 404 | }, 405 | "peerDependencies": { 406 | "@babel/core": "^7.0.0-0" 407 | } 408 | }, 409 | "node_modules/@babel/plugin-syntax-optional-chaining": { 410 | "version": "7.8.3", 411 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 412 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 413 | "dev": true, 414 | "license": "MIT", 415 | "dependencies": { 416 | "@babel/helper-plugin-utils": "^7.8.0" 417 | }, 418 | "peerDependencies": { 419 | "@babel/core": "^7.0.0-0" 420 | } 421 | }, 422 | "node_modules/@babel/plugin-syntax-private-property-in-object": { 423 | "version": "7.14.5", 424 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", 425 | "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", 426 | "dev": true, 427 | "license": "MIT", 428 | "dependencies": { 429 | "@babel/helper-plugin-utils": "^7.14.5" 430 | }, 431 | "engines": { 432 | "node": ">=6.9.0" 433 | }, 434 | "peerDependencies": { 435 | "@babel/core": "^7.0.0-0" 436 | } 437 | }, 438 | "node_modules/@babel/plugin-syntax-top-level-await": { 439 | "version": "7.14.5", 440 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 441 | "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 442 | "dev": true, 443 | "license": "MIT", 444 | "dependencies": { 445 | "@babel/helper-plugin-utils": "^7.14.5" 446 | }, 447 | "engines": { 448 | "node": ">=6.9.0" 449 | }, 450 | "peerDependencies": { 451 | "@babel/core": "^7.0.0-0" 452 | } 453 | }, 454 | "node_modules/@babel/plugin-syntax-typescript": { 455 | "version": "7.25.9", 456 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", 457 | "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", 458 | "dev": true, 459 | "license": "MIT", 460 | "dependencies": { 461 | "@babel/helper-plugin-utils": "^7.25.9" 462 | }, 463 | "engines": { 464 | "node": ">=6.9.0" 465 | }, 466 | "peerDependencies": { 467 | "@babel/core": "^7.0.0-0" 468 | } 469 | }, 470 | "node_modules/@babel/template": { 471 | "version": "7.25.9", 472 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", 473 | "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", 474 | "dev": true, 475 | "license": "MIT", 476 | "dependencies": { 477 | "@babel/code-frame": "^7.25.9", 478 | "@babel/parser": "^7.25.9", 479 | "@babel/types": "^7.25.9" 480 | }, 481 | "engines": { 482 | "node": ">=6.9.0" 483 | } 484 | }, 485 | "node_modules/@babel/traverse": { 486 | "version": "7.26.7", 487 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.7.tgz", 488 | "integrity": "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==", 489 | "dev": true, 490 | "license": "MIT", 491 | "dependencies": { 492 | "@babel/code-frame": "^7.26.2", 493 | "@babel/generator": "^7.26.5", 494 | "@babel/parser": "^7.26.7", 495 | "@babel/template": "^7.25.9", 496 | "@babel/types": "^7.26.7", 497 | "debug": "^4.3.1", 498 | "globals": "^11.1.0" 499 | }, 500 | "engines": { 501 | "node": ">=6.9.0" 502 | } 503 | }, 504 | "node_modules/@babel/types": { 505 | "version": "7.26.7", 506 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.7.tgz", 507 | "integrity": "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==", 508 | "dev": true, 509 | "license": "MIT", 510 | "dependencies": { 511 | "@babel/helper-string-parser": "^7.25.9", 512 | "@babel/helper-validator-identifier": "^7.25.9" 513 | }, 514 | "engines": { 515 | "node": ">=6.9.0" 516 | } 517 | }, 518 | "node_modules/@bcoe/v8-coverage": { 519 | "version": "0.2.3", 520 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 521 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 522 | "dev": true, 523 | "license": "MIT" 524 | }, 525 | "node_modules/@istanbuljs/load-nyc-config": { 526 | "version": "1.1.0", 527 | "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 528 | "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 529 | "dev": true, 530 | "license": "ISC", 531 | "dependencies": { 532 | "camelcase": "^5.3.1", 533 | "find-up": "^4.1.0", 534 | "get-package-type": "^0.1.0", 535 | "js-yaml": "^3.13.1", 536 | "resolve-from": "^5.0.0" 537 | }, 538 | "engines": { 539 | "node": ">=8" 540 | } 541 | }, 542 | "node_modules/@istanbuljs/schema": { 543 | "version": "0.1.3", 544 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 545 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 546 | "dev": true, 547 | "license": "MIT", 548 | "engines": { 549 | "node": ">=8" 550 | } 551 | }, 552 | "node_modules/@jest/console": { 553 | "version": "29.7.0", 554 | "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", 555 | "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", 556 | "dev": true, 557 | "license": "MIT", 558 | "dependencies": { 559 | "@jest/types": "^29.6.3", 560 | "@types/node": "*", 561 | "chalk": "^4.0.0", 562 | "jest-message-util": "^29.7.0", 563 | "jest-util": "^29.7.0", 564 | "slash": "^3.0.0" 565 | }, 566 | "engines": { 567 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 568 | } 569 | }, 570 | "node_modules/@jest/core": { 571 | "version": "29.7.0", 572 | "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", 573 | "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", 574 | "dev": true, 575 | "license": "MIT", 576 | "dependencies": { 577 | "@jest/console": "^29.7.0", 578 | "@jest/reporters": "^29.7.0", 579 | "@jest/test-result": "^29.7.0", 580 | "@jest/transform": "^29.7.0", 581 | "@jest/types": "^29.6.3", 582 | "@types/node": "*", 583 | "ansi-escapes": "^4.2.1", 584 | "chalk": "^4.0.0", 585 | "ci-info": "^3.2.0", 586 | "exit": "^0.1.2", 587 | "graceful-fs": "^4.2.9", 588 | "jest-changed-files": "^29.7.0", 589 | "jest-config": "^29.7.0", 590 | "jest-haste-map": "^29.7.0", 591 | "jest-message-util": "^29.7.0", 592 | "jest-regex-util": "^29.6.3", 593 | "jest-resolve": "^29.7.0", 594 | "jest-resolve-dependencies": "^29.7.0", 595 | "jest-runner": "^29.7.0", 596 | "jest-runtime": "^29.7.0", 597 | "jest-snapshot": "^29.7.0", 598 | "jest-util": "^29.7.0", 599 | "jest-validate": "^29.7.0", 600 | "jest-watcher": "^29.7.0", 601 | "micromatch": "^4.0.4", 602 | "pretty-format": "^29.7.0", 603 | "slash": "^3.0.0", 604 | "strip-ansi": "^6.0.0" 605 | }, 606 | "engines": { 607 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 608 | }, 609 | "peerDependencies": { 610 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 611 | }, 612 | "peerDependenciesMeta": { 613 | "node-notifier": { 614 | "optional": true 615 | } 616 | } 617 | }, 618 | "node_modules/@jest/environment": { 619 | "version": "29.7.0", 620 | "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", 621 | "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", 622 | "dev": true, 623 | "license": "MIT", 624 | "dependencies": { 625 | "@jest/fake-timers": "^29.7.0", 626 | "@jest/types": "^29.6.3", 627 | "@types/node": "*", 628 | "jest-mock": "^29.7.0" 629 | }, 630 | "engines": { 631 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 632 | } 633 | }, 634 | "node_modules/@jest/expect": { 635 | "version": "29.7.0", 636 | "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", 637 | "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", 638 | "dev": true, 639 | "license": "MIT", 640 | "dependencies": { 641 | "expect": "^29.7.0", 642 | "jest-snapshot": "^29.7.0" 643 | }, 644 | "engines": { 645 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 646 | } 647 | }, 648 | "node_modules/@jest/expect-utils": { 649 | "version": "29.7.0", 650 | "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", 651 | "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", 652 | "dev": true, 653 | "license": "MIT", 654 | "dependencies": { 655 | "jest-get-type": "^29.6.3" 656 | }, 657 | "engines": { 658 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 659 | } 660 | }, 661 | "node_modules/@jest/fake-timers": { 662 | "version": "29.7.0", 663 | "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", 664 | "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", 665 | "dev": true, 666 | "license": "MIT", 667 | "dependencies": { 668 | "@jest/types": "^29.6.3", 669 | "@sinonjs/fake-timers": "^10.0.2", 670 | "@types/node": "*", 671 | "jest-message-util": "^29.7.0", 672 | "jest-mock": "^29.7.0", 673 | "jest-util": "^29.7.0" 674 | }, 675 | "engines": { 676 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 677 | } 678 | }, 679 | "node_modules/@jest/globals": { 680 | "version": "29.7.0", 681 | "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", 682 | "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", 683 | "dev": true, 684 | "license": "MIT", 685 | "dependencies": { 686 | "@jest/environment": "^29.7.0", 687 | "@jest/expect": "^29.7.0", 688 | "@jest/types": "^29.6.3", 689 | "jest-mock": "^29.7.0" 690 | }, 691 | "engines": { 692 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 693 | } 694 | }, 695 | "node_modules/@jest/reporters": { 696 | "version": "29.7.0", 697 | "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", 698 | "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", 699 | "dev": true, 700 | "license": "MIT", 701 | "dependencies": { 702 | "@bcoe/v8-coverage": "^0.2.3", 703 | "@jest/console": "^29.7.0", 704 | "@jest/test-result": "^29.7.0", 705 | "@jest/transform": "^29.7.0", 706 | "@jest/types": "^29.6.3", 707 | "@jridgewell/trace-mapping": "^0.3.18", 708 | "@types/node": "*", 709 | "chalk": "^4.0.0", 710 | "collect-v8-coverage": "^1.0.0", 711 | "exit": "^0.1.2", 712 | "glob": "^7.1.3", 713 | "graceful-fs": "^4.2.9", 714 | "istanbul-lib-coverage": "^3.0.0", 715 | "istanbul-lib-instrument": "^6.0.0", 716 | "istanbul-lib-report": "^3.0.0", 717 | "istanbul-lib-source-maps": "^4.0.0", 718 | "istanbul-reports": "^3.1.3", 719 | "jest-message-util": "^29.7.0", 720 | "jest-util": "^29.7.0", 721 | "jest-worker": "^29.7.0", 722 | "slash": "^3.0.0", 723 | "string-length": "^4.0.1", 724 | "strip-ansi": "^6.0.0", 725 | "v8-to-istanbul": "^9.0.1" 726 | }, 727 | "engines": { 728 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 729 | }, 730 | "peerDependencies": { 731 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 732 | }, 733 | "peerDependenciesMeta": { 734 | "node-notifier": { 735 | "optional": true 736 | } 737 | } 738 | }, 739 | "node_modules/@jest/schemas": { 740 | "version": "29.6.3", 741 | "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", 742 | "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", 743 | "dev": true, 744 | "license": "MIT", 745 | "dependencies": { 746 | "@sinclair/typebox": "^0.27.8" 747 | }, 748 | "engines": { 749 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 750 | } 751 | }, 752 | "node_modules/@jest/source-map": { 753 | "version": "29.6.3", 754 | "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", 755 | "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", 756 | "dev": true, 757 | "license": "MIT", 758 | "dependencies": { 759 | "@jridgewell/trace-mapping": "^0.3.18", 760 | "callsites": "^3.0.0", 761 | "graceful-fs": "^4.2.9" 762 | }, 763 | "engines": { 764 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 765 | } 766 | }, 767 | "node_modules/@jest/test-result": { 768 | "version": "29.7.0", 769 | "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", 770 | "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", 771 | "dev": true, 772 | "license": "MIT", 773 | "dependencies": { 774 | "@jest/console": "^29.7.0", 775 | "@jest/types": "^29.6.3", 776 | "@types/istanbul-lib-coverage": "^2.0.0", 777 | "collect-v8-coverage": "^1.0.0" 778 | }, 779 | "engines": { 780 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 781 | } 782 | }, 783 | "node_modules/@jest/test-sequencer": { 784 | "version": "29.7.0", 785 | "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", 786 | "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", 787 | "dev": true, 788 | "license": "MIT", 789 | "dependencies": { 790 | "@jest/test-result": "^29.7.0", 791 | "graceful-fs": "^4.2.9", 792 | "jest-haste-map": "^29.7.0", 793 | "slash": "^3.0.0" 794 | }, 795 | "engines": { 796 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 797 | } 798 | }, 799 | "node_modules/@jest/transform": { 800 | "version": "29.7.0", 801 | "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", 802 | "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", 803 | "dev": true, 804 | "license": "MIT", 805 | "dependencies": { 806 | "@babel/core": "^7.11.6", 807 | "@jest/types": "^29.6.3", 808 | "@jridgewell/trace-mapping": "^0.3.18", 809 | "babel-plugin-istanbul": "^6.1.1", 810 | "chalk": "^4.0.0", 811 | "convert-source-map": "^2.0.0", 812 | "fast-json-stable-stringify": "^2.1.0", 813 | "graceful-fs": "^4.2.9", 814 | "jest-haste-map": "^29.7.0", 815 | "jest-regex-util": "^29.6.3", 816 | "jest-util": "^29.7.0", 817 | "micromatch": "^4.0.4", 818 | "pirates": "^4.0.4", 819 | "slash": "^3.0.0", 820 | "write-file-atomic": "^4.0.2" 821 | }, 822 | "engines": { 823 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 824 | } 825 | }, 826 | "node_modules/@jest/types": { 827 | "version": "29.6.3", 828 | "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", 829 | "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", 830 | "dev": true, 831 | "license": "MIT", 832 | "dependencies": { 833 | "@jest/schemas": "^29.6.3", 834 | "@types/istanbul-lib-coverage": "^2.0.0", 835 | "@types/istanbul-reports": "^3.0.0", 836 | "@types/node": "*", 837 | "@types/yargs": "^17.0.8", 838 | "chalk": "^4.0.0" 839 | }, 840 | "engines": { 841 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 842 | } 843 | }, 844 | "node_modules/@jridgewell/gen-mapping": { 845 | "version": "0.3.8", 846 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 847 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 848 | "dev": true, 849 | "license": "MIT", 850 | "dependencies": { 851 | "@jridgewell/set-array": "^1.2.1", 852 | "@jridgewell/sourcemap-codec": "^1.4.10", 853 | "@jridgewell/trace-mapping": "^0.3.24" 854 | }, 855 | "engines": { 856 | "node": ">=6.0.0" 857 | } 858 | }, 859 | "node_modules/@jridgewell/resolve-uri": { 860 | "version": "3.1.2", 861 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 862 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 863 | "dev": true, 864 | "license": "MIT", 865 | "engines": { 866 | "node": ">=6.0.0" 867 | } 868 | }, 869 | "node_modules/@jridgewell/set-array": { 870 | "version": "1.2.1", 871 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 872 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 873 | "dev": true, 874 | "license": "MIT", 875 | "engines": { 876 | "node": ">=6.0.0" 877 | } 878 | }, 879 | "node_modules/@jridgewell/sourcemap-codec": { 880 | "version": "1.5.0", 881 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 882 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 883 | "dev": true, 884 | "license": "MIT" 885 | }, 886 | "node_modules/@jridgewell/trace-mapping": { 887 | "version": "0.3.25", 888 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 889 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 890 | "dev": true, 891 | "license": "MIT", 892 | "dependencies": { 893 | "@jridgewell/resolve-uri": "^3.1.0", 894 | "@jridgewell/sourcemap-codec": "^1.4.14" 895 | } 896 | }, 897 | "node_modules/@modelcontextprotocol/sdk": { 898 | "version": "0.6.0", 899 | "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-0.6.0.tgz", 900 | "integrity": "sha512-9rsDudGhDtMbvxohPoMMyAUOmEzQsOK+XFchh6gZGqo8sx9sBuZQs+CUttXqa8RZXKDaJRCN2tUtgGof7jRkkw==", 901 | "license": "MIT", 902 | "dependencies": { 903 | "content-type": "^1.0.5", 904 | "raw-body": "^3.0.0", 905 | "zod": "^3.23.8" 906 | } 907 | }, 908 | "node_modules/@sinclair/typebox": { 909 | "version": "0.27.8", 910 | "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", 911 | "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", 912 | "dev": true, 913 | "license": "MIT" 914 | }, 915 | "node_modules/@sinonjs/commons": { 916 | "version": "3.0.1", 917 | "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", 918 | "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", 919 | "dev": true, 920 | "license": "BSD-3-Clause", 921 | "dependencies": { 922 | "type-detect": "4.0.8" 923 | } 924 | }, 925 | "node_modules/@sinonjs/fake-timers": { 926 | "version": "10.3.0", 927 | "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", 928 | "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", 929 | "dev": true, 930 | "license": "BSD-3-Clause", 931 | "dependencies": { 932 | "@sinonjs/commons": "^3.0.0" 933 | } 934 | }, 935 | "node_modules/@types/babel__core": { 936 | "version": "7.20.5", 937 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 938 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 939 | "dev": true, 940 | "license": "MIT", 941 | "dependencies": { 942 | "@babel/parser": "^7.20.7", 943 | "@babel/types": "^7.20.7", 944 | "@types/babel__generator": "*", 945 | "@types/babel__template": "*", 946 | "@types/babel__traverse": "*" 947 | } 948 | }, 949 | "node_modules/@types/babel__generator": { 950 | "version": "7.6.8", 951 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 952 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 953 | "dev": true, 954 | "license": "MIT", 955 | "dependencies": { 956 | "@babel/types": "^7.0.0" 957 | } 958 | }, 959 | "node_modules/@types/babel__template": { 960 | "version": "7.4.4", 961 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 962 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 963 | "dev": true, 964 | "license": "MIT", 965 | "dependencies": { 966 | "@babel/parser": "^7.1.0", 967 | "@babel/types": "^7.0.0" 968 | } 969 | }, 970 | "node_modules/@types/babel__traverse": { 971 | "version": "7.20.6", 972 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", 973 | "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", 974 | "dev": true, 975 | "license": "MIT", 976 | "dependencies": { 977 | "@babel/types": "^7.20.7" 978 | } 979 | }, 980 | "node_modules/@types/fs-extra": { 981 | "version": "11.0.4", 982 | "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-11.0.4.tgz", 983 | "integrity": "sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==", 984 | "dev": true, 985 | "license": "MIT", 986 | "dependencies": { 987 | "@types/jsonfile": "*", 988 | "@types/node": "*" 989 | } 990 | }, 991 | "node_modules/@types/graceful-fs": { 992 | "version": "4.1.9", 993 | "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", 994 | "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", 995 | "dev": true, 996 | "license": "MIT", 997 | "dependencies": { 998 | "@types/node": "*" 999 | } 1000 | }, 1001 | "node_modules/@types/istanbul-lib-coverage": { 1002 | "version": "2.0.6", 1003 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 1004 | "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 1005 | "dev": true, 1006 | "license": "MIT" 1007 | }, 1008 | "node_modules/@types/istanbul-lib-report": { 1009 | "version": "3.0.3", 1010 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", 1011 | "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", 1012 | "dev": true, 1013 | "license": "MIT", 1014 | "dependencies": { 1015 | "@types/istanbul-lib-coverage": "*" 1016 | } 1017 | }, 1018 | "node_modules/@types/istanbul-reports": { 1019 | "version": "3.0.4", 1020 | "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", 1021 | "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", 1022 | "dev": true, 1023 | "license": "MIT", 1024 | "dependencies": { 1025 | "@types/istanbul-lib-report": "*" 1026 | } 1027 | }, 1028 | "node_modules/@types/jest": { 1029 | "version": "29.5.14", 1030 | "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", 1031 | "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", 1032 | "dev": true, 1033 | "license": "MIT", 1034 | "dependencies": { 1035 | "expect": "^29.0.0", 1036 | "pretty-format": "^29.0.0" 1037 | } 1038 | }, 1039 | "node_modules/@types/jsonfile": { 1040 | "version": "6.1.4", 1041 | "resolved": "https://registry.npmjs.org/@types/jsonfile/-/jsonfile-6.1.4.tgz", 1042 | "integrity": "sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==", 1043 | "dev": true, 1044 | "license": "MIT", 1045 | "dependencies": { 1046 | "@types/node": "*" 1047 | } 1048 | }, 1049 | "node_modules/@types/node": { 1050 | "version": "20.17.16", 1051 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.16.tgz", 1052 | "integrity": "sha512-vOTpLduLkZXePLxHiHsBLp98mHGnl8RptV4YAO3HfKO5UHjDvySGbxKtpYfy8Sx5+WKcgc45qNreJJRVM3L6mw==", 1053 | "dev": true, 1054 | "license": "MIT", 1055 | "dependencies": { 1056 | "undici-types": "~6.19.2" 1057 | } 1058 | }, 1059 | "node_modules/@types/stack-utils": { 1060 | "version": "2.0.3", 1061 | "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", 1062 | "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", 1063 | "dev": true, 1064 | "license": "MIT" 1065 | }, 1066 | "node_modules/@types/yargs": { 1067 | "version": "17.0.33", 1068 | "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", 1069 | "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", 1070 | "dev": true, 1071 | "license": "MIT", 1072 | "dependencies": { 1073 | "@types/yargs-parser": "*" 1074 | } 1075 | }, 1076 | "node_modules/@types/yargs-parser": { 1077 | "version": "21.0.3", 1078 | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", 1079 | "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", 1080 | "dev": true, 1081 | "license": "MIT" 1082 | }, 1083 | "node_modules/ansi-escapes": { 1084 | "version": "4.3.2", 1085 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 1086 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 1087 | "dev": true, 1088 | "license": "MIT", 1089 | "dependencies": { 1090 | "type-fest": "^0.21.3" 1091 | }, 1092 | "engines": { 1093 | "node": ">=8" 1094 | }, 1095 | "funding": { 1096 | "url": "https://github.com/sponsors/sindresorhus" 1097 | } 1098 | }, 1099 | "node_modules/ansi-regex": { 1100 | "version": "5.0.1", 1101 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1102 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1103 | "dev": true, 1104 | "license": "MIT", 1105 | "engines": { 1106 | "node": ">=8" 1107 | } 1108 | }, 1109 | "node_modules/ansi-styles": { 1110 | "version": "4.3.0", 1111 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1112 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1113 | "dev": true, 1114 | "license": "MIT", 1115 | "dependencies": { 1116 | "color-convert": "^2.0.1" 1117 | }, 1118 | "engines": { 1119 | "node": ">=8" 1120 | }, 1121 | "funding": { 1122 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1123 | } 1124 | }, 1125 | "node_modules/anymatch": { 1126 | "version": "3.1.3", 1127 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1128 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1129 | "license": "ISC", 1130 | "dependencies": { 1131 | "normalize-path": "^3.0.0", 1132 | "picomatch": "^2.0.4" 1133 | }, 1134 | "engines": { 1135 | "node": ">= 8" 1136 | } 1137 | }, 1138 | "node_modules/argparse": { 1139 | "version": "1.0.10", 1140 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1141 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1142 | "dev": true, 1143 | "license": "MIT", 1144 | "dependencies": { 1145 | "sprintf-js": "~1.0.2" 1146 | } 1147 | }, 1148 | "node_modules/async": { 1149 | "version": "3.2.6", 1150 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", 1151 | "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", 1152 | "dev": true, 1153 | "license": "MIT" 1154 | }, 1155 | "node_modules/babel-jest": { 1156 | "version": "29.7.0", 1157 | "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", 1158 | "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", 1159 | "dev": true, 1160 | "license": "MIT", 1161 | "dependencies": { 1162 | "@jest/transform": "^29.7.0", 1163 | "@types/babel__core": "^7.1.14", 1164 | "babel-plugin-istanbul": "^6.1.1", 1165 | "babel-preset-jest": "^29.6.3", 1166 | "chalk": "^4.0.0", 1167 | "graceful-fs": "^4.2.9", 1168 | "slash": "^3.0.0" 1169 | }, 1170 | "engines": { 1171 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1172 | }, 1173 | "peerDependencies": { 1174 | "@babel/core": "^7.8.0" 1175 | } 1176 | }, 1177 | "node_modules/babel-plugin-istanbul": { 1178 | "version": "6.1.1", 1179 | "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 1180 | "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 1181 | "dev": true, 1182 | "license": "BSD-3-Clause", 1183 | "dependencies": { 1184 | "@babel/helper-plugin-utils": "^7.0.0", 1185 | "@istanbuljs/load-nyc-config": "^1.0.0", 1186 | "@istanbuljs/schema": "^0.1.2", 1187 | "istanbul-lib-instrument": "^5.0.4", 1188 | "test-exclude": "^6.0.0" 1189 | }, 1190 | "engines": { 1191 | "node": ">=8" 1192 | } 1193 | }, 1194 | "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { 1195 | "version": "5.2.1", 1196 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 1197 | "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 1198 | "dev": true, 1199 | "license": "BSD-3-Clause", 1200 | "dependencies": { 1201 | "@babel/core": "^7.12.3", 1202 | "@babel/parser": "^7.14.7", 1203 | "@istanbuljs/schema": "^0.1.2", 1204 | "istanbul-lib-coverage": "^3.2.0", 1205 | "semver": "^6.3.0" 1206 | }, 1207 | "engines": { 1208 | "node": ">=8" 1209 | } 1210 | }, 1211 | "node_modules/babel-plugin-jest-hoist": { 1212 | "version": "29.6.3", 1213 | "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", 1214 | "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", 1215 | "dev": true, 1216 | "license": "MIT", 1217 | "dependencies": { 1218 | "@babel/template": "^7.3.3", 1219 | "@babel/types": "^7.3.3", 1220 | "@types/babel__core": "^7.1.14", 1221 | "@types/babel__traverse": "^7.0.6" 1222 | }, 1223 | "engines": { 1224 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1225 | } 1226 | }, 1227 | "node_modules/babel-preset-current-node-syntax": { 1228 | "version": "1.1.0", 1229 | "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", 1230 | "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", 1231 | "dev": true, 1232 | "license": "MIT", 1233 | "dependencies": { 1234 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1235 | "@babel/plugin-syntax-bigint": "^7.8.3", 1236 | "@babel/plugin-syntax-class-properties": "^7.12.13", 1237 | "@babel/plugin-syntax-class-static-block": "^7.14.5", 1238 | "@babel/plugin-syntax-import-attributes": "^7.24.7", 1239 | "@babel/plugin-syntax-import-meta": "^7.10.4", 1240 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1241 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", 1242 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1243 | "@babel/plugin-syntax-numeric-separator": "^7.10.4", 1244 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1245 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1246 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1247 | "@babel/plugin-syntax-private-property-in-object": "^7.14.5", 1248 | "@babel/plugin-syntax-top-level-await": "^7.14.5" 1249 | }, 1250 | "peerDependencies": { 1251 | "@babel/core": "^7.0.0" 1252 | } 1253 | }, 1254 | "node_modules/babel-preset-jest": { 1255 | "version": "29.6.3", 1256 | "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", 1257 | "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", 1258 | "dev": true, 1259 | "license": "MIT", 1260 | "dependencies": { 1261 | "babel-plugin-jest-hoist": "^29.6.3", 1262 | "babel-preset-current-node-syntax": "^1.0.0" 1263 | }, 1264 | "engines": { 1265 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1266 | }, 1267 | "peerDependencies": { 1268 | "@babel/core": "^7.0.0" 1269 | } 1270 | }, 1271 | "node_modules/balanced-match": { 1272 | "version": "1.0.2", 1273 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1274 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1275 | "dev": true, 1276 | "license": "MIT" 1277 | }, 1278 | "node_modules/binary-extensions": { 1279 | "version": "2.3.0", 1280 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 1281 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 1282 | "license": "MIT", 1283 | "engines": { 1284 | "node": ">=8" 1285 | }, 1286 | "funding": { 1287 | "url": "https://github.com/sponsors/sindresorhus" 1288 | } 1289 | }, 1290 | "node_modules/brace-expansion": { 1291 | "version": "1.1.11", 1292 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1293 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1294 | "dev": true, 1295 | "license": "MIT", 1296 | "dependencies": { 1297 | "balanced-match": "^1.0.0", 1298 | "concat-map": "0.0.1" 1299 | } 1300 | }, 1301 | "node_modules/braces": { 1302 | "version": "3.0.3", 1303 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1304 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1305 | "license": "MIT", 1306 | "dependencies": { 1307 | "fill-range": "^7.1.1" 1308 | }, 1309 | "engines": { 1310 | "node": ">=8" 1311 | } 1312 | }, 1313 | "node_modules/browserslist": { 1314 | "version": "4.24.4", 1315 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", 1316 | "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", 1317 | "dev": true, 1318 | "funding": [ 1319 | { 1320 | "type": "opencollective", 1321 | "url": "https://opencollective.com/browserslist" 1322 | }, 1323 | { 1324 | "type": "tidelift", 1325 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1326 | }, 1327 | { 1328 | "type": "github", 1329 | "url": "https://github.com/sponsors/ai" 1330 | } 1331 | ], 1332 | "license": "MIT", 1333 | "dependencies": { 1334 | "caniuse-lite": "^1.0.30001688", 1335 | "electron-to-chromium": "^1.5.73", 1336 | "node-releases": "^2.0.19", 1337 | "update-browserslist-db": "^1.1.1" 1338 | }, 1339 | "bin": { 1340 | "browserslist": "cli.js" 1341 | }, 1342 | "engines": { 1343 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1344 | } 1345 | }, 1346 | "node_modules/bs-logger": { 1347 | "version": "0.2.6", 1348 | "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", 1349 | "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", 1350 | "dev": true, 1351 | "license": "MIT", 1352 | "dependencies": { 1353 | "fast-json-stable-stringify": "2.x" 1354 | }, 1355 | "engines": { 1356 | "node": ">= 6" 1357 | } 1358 | }, 1359 | "node_modules/bser": { 1360 | "version": "2.1.1", 1361 | "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 1362 | "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 1363 | "dev": true, 1364 | "license": "Apache-2.0", 1365 | "dependencies": { 1366 | "node-int64": "^0.4.0" 1367 | } 1368 | }, 1369 | "node_modules/buffer-from": { 1370 | "version": "1.1.2", 1371 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1372 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 1373 | "dev": true, 1374 | "license": "MIT" 1375 | }, 1376 | "node_modules/bytes": { 1377 | "version": "3.1.2", 1378 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 1379 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 1380 | "license": "MIT", 1381 | "engines": { 1382 | "node": ">= 0.8" 1383 | } 1384 | }, 1385 | "node_modules/callsites": { 1386 | "version": "3.1.0", 1387 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1388 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1389 | "dev": true, 1390 | "license": "MIT", 1391 | "engines": { 1392 | "node": ">=6" 1393 | } 1394 | }, 1395 | "node_modules/camelcase": { 1396 | "version": "5.3.1", 1397 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1398 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1399 | "dev": true, 1400 | "license": "MIT", 1401 | "engines": { 1402 | "node": ">=6" 1403 | } 1404 | }, 1405 | "node_modules/caniuse-lite": { 1406 | "version": "1.0.30001695", 1407 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001695.tgz", 1408 | "integrity": "sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==", 1409 | "dev": true, 1410 | "funding": [ 1411 | { 1412 | "type": "opencollective", 1413 | "url": "https://opencollective.com/browserslist" 1414 | }, 1415 | { 1416 | "type": "tidelift", 1417 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1418 | }, 1419 | { 1420 | "type": "github", 1421 | "url": "https://github.com/sponsors/ai" 1422 | } 1423 | ], 1424 | "license": "CC-BY-4.0" 1425 | }, 1426 | "node_modules/chalk": { 1427 | "version": "4.1.2", 1428 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1429 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1430 | "dev": true, 1431 | "license": "MIT", 1432 | "dependencies": { 1433 | "ansi-styles": "^4.1.0", 1434 | "supports-color": "^7.1.0" 1435 | }, 1436 | "engines": { 1437 | "node": ">=10" 1438 | }, 1439 | "funding": { 1440 | "url": "https://github.com/chalk/chalk?sponsor=1" 1441 | } 1442 | }, 1443 | "node_modules/char-regex": { 1444 | "version": "1.0.2", 1445 | "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 1446 | "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 1447 | "dev": true, 1448 | "license": "MIT", 1449 | "engines": { 1450 | "node": ">=10" 1451 | } 1452 | }, 1453 | "node_modules/chokidar": { 1454 | "version": "3.6.0", 1455 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 1456 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1457 | "license": "MIT", 1458 | "dependencies": { 1459 | "anymatch": "~3.1.2", 1460 | "braces": "~3.0.2", 1461 | "glob-parent": "~5.1.2", 1462 | "is-binary-path": "~2.1.0", 1463 | "is-glob": "~4.0.1", 1464 | "normalize-path": "~3.0.0", 1465 | "readdirp": "~3.6.0" 1466 | }, 1467 | "engines": { 1468 | "node": ">= 8.10.0" 1469 | }, 1470 | "funding": { 1471 | "url": "https://paulmillr.com/funding/" 1472 | }, 1473 | "optionalDependencies": { 1474 | "fsevents": "~2.3.2" 1475 | } 1476 | }, 1477 | "node_modules/ci-info": { 1478 | "version": "3.9.0", 1479 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 1480 | "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 1481 | "dev": true, 1482 | "funding": [ 1483 | { 1484 | "type": "github", 1485 | "url": "https://github.com/sponsors/sibiraj-s" 1486 | } 1487 | ], 1488 | "license": "MIT", 1489 | "engines": { 1490 | "node": ">=8" 1491 | } 1492 | }, 1493 | "node_modules/cjs-module-lexer": { 1494 | "version": "1.4.1", 1495 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", 1496 | "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", 1497 | "dev": true, 1498 | "license": "MIT" 1499 | }, 1500 | "node_modules/cliui": { 1501 | "version": "8.0.1", 1502 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1503 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1504 | "dev": true, 1505 | "license": "ISC", 1506 | "dependencies": { 1507 | "string-width": "^4.2.0", 1508 | "strip-ansi": "^6.0.1", 1509 | "wrap-ansi": "^7.0.0" 1510 | }, 1511 | "engines": { 1512 | "node": ">=12" 1513 | } 1514 | }, 1515 | "node_modules/co": { 1516 | "version": "4.6.0", 1517 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 1518 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 1519 | "dev": true, 1520 | "license": "MIT", 1521 | "engines": { 1522 | "iojs": ">= 1.0.0", 1523 | "node": ">= 0.12.0" 1524 | } 1525 | }, 1526 | "node_modules/collect-v8-coverage": { 1527 | "version": "1.0.2", 1528 | "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", 1529 | "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", 1530 | "dev": true, 1531 | "license": "MIT" 1532 | }, 1533 | "node_modules/color-convert": { 1534 | "version": "2.0.1", 1535 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1536 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1537 | "dev": true, 1538 | "license": "MIT", 1539 | "dependencies": { 1540 | "color-name": "~1.1.4" 1541 | }, 1542 | "engines": { 1543 | "node": ">=7.0.0" 1544 | } 1545 | }, 1546 | "node_modules/color-name": { 1547 | "version": "1.1.4", 1548 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1549 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1550 | "dev": true, 1551 | "license": "MIT" 1552 | }, 1553 | "node_modules/concat-map": { 1554 | "version": "0.0.1", 1555 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1556 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1557 | "dev": true, 1558 | "license": "MIT" 1559 | }, 1560 | "node_modules/content-type": { 1561 | "version": "1.0.5", 1562 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 1563 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 1564 | "license": "MIT", 1565 | "engines": { 1566 | "node": ">= 0.6" 1567 | } 1568 | }, 1569 | "node_modules/convert-source-map": { 1570 | "version": "2.0.0", 1571 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1572 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1573 | "dev": true, 1574 | "license": "MIT" 1575 | }, 1576 | "node_modules/create-jest": { 1577 | "version": "29.7.0", 1578 | "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", 1579 | "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", 1580 | "dev": true, 1581 | "license": "MIT", 1582 | "dependencies": { 1583 | "@jest/types": "^29.6.3", 1584 | "chalk": "^4.0.0", 1585 | "exit": "^0.1.2", 1586 | "graceful-fs": "^4.2.9", 1587 | "jest-config": "^29.7.0", 1588 | "jest-util": "^29.7.0", 1589 | "prompts": "^2.0.1" 1590 | }, 1591 | "bin": { 1592 | "create-jest": "bin/create-jest.js" 1593 | }, 1594 | "engines": { 1595 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1596 | } 1597 | }, 1598 | "node_modules/cross-spawn": { 1599 | "version": "7.0.6", 1600 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1601 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1602 | "dev": true, 1603 | "license": "MIT", 1604 | "dependencies": { 1605 | "path-key": "^3.1.0", 1606 | "shebang-command": "^2.0.0", 1607 | "which": "^2.0.1" 1608 | }, 1609 | "engines": { 1610 | "node": ">= 8" 1611 | } 1612 | }, 1613 | "node_modules/debug": { 1614 | "version": "4.4.0", 1615 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1616 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1617 | "dev": true, 1618 | "license": "MIT", 1619 | "dependencies": { 1620 | "ms": "^2.1.3" 1621 | }, 1622 | "engines": { 1623 | "node": ">=6.0" 1624 | }, 1625 | "peerDependenciesMeta": { 1626 | "supports-color": { 1627 | "optional": true 1628 | } 1629 | } 1630 | }, 1631 | "node_modules/dedent": { 1632 | "version": "1.5.3", 1633 | "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", 1634 | "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", 1635 | "dev": true, 1636 | "license": "MIT", 1637 | "peerDependencies": { 1638 | "babel-plugin-macros": "^3.1.0" 1639 | }, 1640 | "peerDependenciesMeta": { 1641 | "babel-plugin-macros": { 1642 | "optional": true 1643 | } 1644 | } 1645 | }, 1646 | "node_modules/deepmerge": { 1647 | "version": "4.3.1", 1648 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1649 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1650 | "dev": true, 1651 | "license": "MIT", 1652 | "engines": { 1653 | "node": ">=0.10.0" 1654 | } 1655 | }, 1656 | "node_modules/depd": { 1657 | "version": "2.0.0", 1658 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 1659 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 1660 | "license": "MIT", 1661 | "engines": { 1662 | "node": ">= 0.8" 1663 | } 1664 | }, 1665 | "node_modules/detect-newline": { 1666 | "version": "3.1.0", 1667 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", 1668 | "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", 1669 | "dev": true, 1670 | "license": "MIT", 1671 | "engines": { 1672 | "node": ">=8" 1673 | } 1674 | }, 1675 | "node_modules/diff-sequences": { 1676 | "version": "29.6.3", 1677 | "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", 1678 | "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", 1679 | "dev": true, 1680 | "license": "MIT", 1681 | "engines": { 1682 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1683 | } 1684 | }, 1685 | "node_modules/ejs": { 1686 | "version": "3.1.10", 1687 | "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", 1688 | "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", 1689 | "dev": true, 1690 | "license": "Apache-2.0", 1691 | "dependencies": { 1692 | "jake": "^10.8.5" 1693 | }, 1694 | "bin": { 1695 | "ejs": "bin/cli.js" 1696 | }, 1697 | "engines": { 1698 | "node": ">=0.10.0" 1699 | } 1700 | }, 1701 | "node_modules/electron-to-chromium": { 1702 | "version": "1.5.88", 1703 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.88.tgz", 1704 | "integrity": "sha512-K3C2qf1o+bGzbilTDCTBhTQcMS9KW60yTAaTeeXsfvQuTDDwlokLam/AdqlqcSy9u4UainDgsHV23ksXAOgamw==", 1705 | "dev": true, 1706 | "license": "ISC" 1707 | }, 1708 | "node_modules/emittery": { 1709 | "version": "0.13.1", 1710 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", 1711 | "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", 1712 | "dev": true, 1713 | "license": "MIT", 1714 | "engines": { 1715 | "node": ">=12" 1716 | }, 1717 | "funding": { 1718 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 1719 | } 1720 | }, 1721 | "node_modules/emoji-regex": { 1722 | "version": "8.0.0", 1723 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1724 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1725 | "dev": true, 1726 | "license": "MIT" 1727 | }, 1728 | "node_modules/error-ex": { 1729 | "version": "1.3.2", 1730 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1731 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1732 | "dev": true, 1733 | "license": "MIT", 1734 | "dependencies": { 1735 | "is-arrayish": "^0.2.1" 1736 | } 1737 | }, 1738 | "node_modules/escalade": { 1739 | "version": "3.2.0", 1740 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1741 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1742 | "dev": true, 1743 | "license": "MIT", 1744 | "engines": { 1745 | "node": ">=6" 1746 | } 1747 | }, 1748 | "node_modules/escape-string-regexp": { 1749 | "version": "2.0.0", 1750 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 1751 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 1752 | "dev": true, 1753 | "license": "MIT", 1754 | "engines": { 1755 | "node": ">=8" 1756 | } 1757 | }, 1758 | "node_modules/esprima": { 1759 | "version": "4.0.1", 1760 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1761 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 1762 | "dev": true, 1763 | "license": "BSD-2-Clause", 1764 | "bin": { 1765 | "esparse": "bin/esparse.js", 1766 | "esvalidate": "bin/esvalidate.js" 1767 | }, 1768 | "engines": { 1769 | "node": ">=4" 1770 | } 1771 | }, 1772 | "node_modules/execa": { 1773 | "version": "5.1.1", 1774 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 1775 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 1776 | "dev": true, 1777 | "license": "MIT", 1778 | "dependencies": { 1779 | "cross-spawn": "^7.0.3", 1780 | "get-stream": "^6.0.0", 1781 | "human-signals": "^2.1.0", 1782 | "is-stream": "^2.0.0", 1783 | "merge-stream": "^2.0.0", 1784 | "npm-run-path": "^4.0.1", 1785 | "onetime": "^5.1.2", 1786 | "signal-exit": "^3.0.3", 1787 | "strip-final-newline": "^2.0.0" 1788 | }, 1789 | "engines": { 1790 | "node": ">=10" 1791 | }, 1792 | "funding": { 1793 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1794 | } 1795 | }, 1796 | "node_modules/exit": { 1797 | "version": "0.1.2", 1798 | "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", 1799 | "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", 1800 | "dev": true, 1801 | "engines": { 1802 | "node": ">= 0.8.0" 1803 | } 1804 | }, 1805 | "node_modules/expect": { 1806 | "version": "29.7.0", 1807 | "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", 1808 | "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", 1809 | "dev": true, 1810 | "license": "MIT", 1811 | "dependencies": { 1812 | "@jest/expect-utils": "^29.7.0", 1813 | "jest-get-type": "^29.6.3", 1814 | "jest-matcher-utils": "^29.7.0", 1815 | "jest-message-util": "^29.7.0", 1816 | "jest-util": "^29.7.0" 1817 | }, 1818 | "engines": { 1819 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1820 | } 1821 | }, 1822 | "node_modules/fast-json-stable-stringify": { 1823 | "version": "2.1.0", 1824 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1825 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1826 | "dev": true, 1827 | "license": "MIT" 1828 | }, 1829 | "node_modules/fb-watchman": { 1830 | "version": "2.0.2", 1831 | "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 1832 | "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 1833 | "dev": true, 1834 | "license": "Apache-2.0", 1835 | "dependencies": { 1836 | "bser": "2.1.1" 1837 | } 1838 | }, 1839 | "node_modules/filelist": { 1840 | "version": "1.0.4", 1841 | "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", 1842 | "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", 1843 | "dev": true, 1844 | "license": "Apache-2.0", 1845 | "dependencies": { 1846 | "minimatch": "^5.0.1" 1847 | } 1848 | }, 1849 | "node_modules/filelist/node_modules/brace-expansion": { 1850 | "version": "2.0.1", 1851 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1852 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1853 | "dev": true, 1854 | "license": "MIT", 1855 | "dependencies": { 1856 | "balanced-match": "^1.0.0" 1857 | } 1858 | }, 1859 | "node_modules/filelist/node_modules/minimatch": { 1860 | "version": "5.1.6", 1861 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 1862 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 1863 | "dev": true, 1864 | "license": "ISC", 1865 | "dependencies": { 1866 | "brace-expansion": "^2.0.1" 1867 | }, 1868 | "engines": { 1869 | "node": ">=10" 1870 | } 1871 | }, 1872 | "node_modules/fill-range": { 1873 | "version": "7.1.1", 1874 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1875 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1876 | "license": "MIT", 1877 | "dependencies": { 1878 | "to-regex-range": "^5.0.1" 1879 | }, 1880 | "engines": { 1881 | "node": ">=8" 1882 | } 1883 | }, 1884 | "node_modules/find-up": { 1885 | "version": "4.1.0", 1886 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 1887 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 1888 | "dev": true, 1889 | "license": "MIT", 1890 | "dependencies": { 1891 | "locate-path": "^5.0.0", 1892 | "path-exists": "^4.0.0" 1893 | }, 1894 | "engines": { 1895 | "node": ">=8" 1896 | } 1897 | }, 1898 | "node_modules/fs-extra": { 1899 | "version": "11.3.0", 1900 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", 1901 | "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", 1902 | "license": "MIT", 1903 | "dependencies": { 1904 | "graceful-fs": "^4.2.0", 1905 | "jsonfile": "^6.0.1", 1906 | "universalify": "^2.0.0" 1907 | }, 1908 | "engines": { 1909 | "node": ">=14.14" 1910 | } 1911 | }, 1912 | "node_modules/fs.realpath": { 1913 | "version": "1.0.0", 1914 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1915 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1916 | "dev": true, 1917 | "license": "ISC" 1918 | }, 1919 | "node_modules/fsevents": { 1920 | "version": "2.3.3", 1921 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1922 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1923 | "hasInstallScript": true, 1924 | "license": "MIT", 1925 | "optional": true, 1926 | "os": [ 1927 | "darwin" 1928 | ], 1929 | "engines": { 1930 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1931 | } 1932 | }, 1933 | "node_modules/function-bind": { 1934 | "version": "1.1.2", 1935 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1936 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1937 | "dev": true, 1938 | "license": "MIT", 1939 | "funding": { 1940 | "url": "https://github.com/sponsors/ljharb" 1941 | } 1942 | }, 1943 | "node_modules/gensync": { 1944 | "version": "1.0.0-beta.2", 1945 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1946 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 1947 | "dev": true, 1948 | "license": "MIT", 1949 | "engines": { 1950 | "node": ">=6.9.0" 1951 | } 1952 | }, 1953 | "node_modules/get-caller-file": { 1954 | "version": "2.0.5", 1955 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1956 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1957 | "dev": true, 1958 | "license": "ISC", 1959 | "engines": { 1960 | "node": "6.* || 8.* || >= 10.*" 1961 | } 1962 | }, 1963 | "node_modules/get-package-type": { 1964 | "version": "0.1.0", 1965 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 1966 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 1967 | "dev": true, 1968 | "license": "MIT", 1969 | "engines": { 1970 | "node": ">=8.0.0" 1971 | } 1972 | }, 1973 | "node_modules/get-stream": { 1974 | "version": "6.0.1", 1975 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 1976 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 1977 | "dev": true, 1978 | "license": "MIT", 1979 | "engines": { 1980 | "node": ">=10" 1981 | }, 1982 | "funding": { 1983 | "url": "https://github.com/sponsors/sindresorhus" 1984 | } 1985 | }, 1986 | "node_modules/glob": { 1987 | "version": "7.2.3", 1988 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1989 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1990 | "deprecated": "Glob versions prior to v9 are no longer supported", 1991 | "dev": true, 1992 | "license": "ISC", 1993 | "dependencies": { 1994 | "fs.realpath": "^1.0.0", 1995 | "inflight": "^1.0.4", 1996 | "inherits": "2", 1997 | "minimatch": "^3.1.1", 1998 | "once": "^1.3.0", 1999 | "path-is-absolute": "^1.0.0" 2000 | }, 2001 | "engines": { 2002 | "node": "*" 2003 | }, 2004 | "funding": { 2005 | "url": "https://github.com/sponsors/isaacs" 2006 | } 2007 | }, 2008 | "node_modules/glob-parent": { 2009 | "version": "5.1.2", 2010 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2011 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2012 | "license": "ISC", 2013 | "dependencies": { 2014 | "is-glob": "^4.0.1" 2015 | }, 2016 | "engines": { 2017 | "node": ">= 6" 2018 | } 2019 | }, 2020 | "node_modules/globals": { 2021 | "version": "11.12.0", 2022 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 2023 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 2024 | "dev": true, 2025 | "license": "MIT", 2026 | "engines": { 2027 | "node": ">=4" 2028 | } 2029 | }, 2030 | "node_modules/graceful-fs": { 2031 | "version": "4.2.11", 2032 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2033 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 2034 | "license": "ISC" 2035 | }, 2036 | "node_modules/has-flag": { 2037 | "version": "4.0.0", 2038 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2039 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2040 | "dev": true, 2041 | "license": "MIT", 2042 | "engines": { 2043 | "node": ">=8" 2044 | } 2045 | }, 2046 | "node_modules/hasown": { 2047 | "version": "2.0.2", 2048 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2049 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2050 | "dev": true, 2051 | "license": "MIT", 2052 | "dependencies": { 2053 | "function-bind": "^1.1.2" 2054 | }, 2055 | "engines": { 2056 | "node": ">= 0.4" 2057 | } 2058 | }, 2059 | "node_modules/html-escaper": { 2060 | "version": "2.0.2", 2061 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 2062 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 2063 | "dev": true, 2064 | "license": "MIT" 2065 | }, 2066 | "node_modules/http-errors": { 2067 | "version": "2.0.0", 2068 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 2069 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 2070 | "license": "MIT", 2071 | "dependencies": { 2072 | "depd": "2.0.0", 2073 | "inherits": "2.0.4", 2074 | "setprototypeof": "1.2.0", 2075 | "statuses": "2.0.1", 2076 | "toidentifier": "1.0.1" 2077 | }, 2078 | "engines": { 2079 | "node": ">= 0.8" 2080 | } 2081 | }, 2082 | "node_modules/human-signals": { 2083 | "version": "2.1.0", 2084 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 2085 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 2086 | "dev": true, 2087 | "license": "Apache-2.0", 2088 | "engines": { 2089 | "node": ">=10.17.0" 2090 | } 2091 | }, 2092 | "node_modules/iconv-lite": { 2093 | "version": "0.6.3", 2094 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 2095 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 2096 | "license": "MIT", 2097 | "dependencies": { 2098 | "safer-buffer": ">= 2.1.2 < 3.0.0" 2099 | }, 2100 | "engines": { 2101 | "node": ">=0.10.0" 2102 | } 2103 | }, 2104 | "node_modules/import-local": { 2105 | "version": "3.2.0", 2106 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", 2107 | "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", 2108 | "dev": true, 2109 | "license": "MIT", 2110 | "dependencies": { 2111 | "pkg-dir": "^4.2.0", 2112 | "resolve-cwd": "^3.0.0" 2113 | }, 2114 | "bin": { 2115 | "import-local-fixture": "fixtures/cli.js" 2116 | }, 2117 | "engines": { 2118 | "node": ">=8" 2119 | }, 2120 | "funding": { 2121 | "url": "https://github.com/sponsors/sindresorhus" 2122 | } 2123 | }, 2124 | "node_modules/imurmurhash": { 2125 | "version": "0.1.4", 2126 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2127 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2128 | "dev": true, 2129 | "license": "MIT", 2130 | "engines": { 2131 | "node": ">=0.8.19" 2132 | } 2133 | }, 2134 | "node_modules/inflight": { 2135 | "version": "1.0.6", 2136 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2137 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2138 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 2139 | "dev": true, 2140 | "license": "ISC", 2141 | "dependencies": { 2142 | "once": "^1.3.0", 2143 | "wrappy": "1" 2144 | } 2145 | }, 2146 | "node_modules/inherits": { 2147 | "version": "2.0.4", 2148 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2149 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2150 | "license": "ISC" 2151 | }, 2152 | "node_modules/is-arrayish": { 2153 | "version": "0.2.1", 2154 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2155 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 2156 | "dev": true, 2157 | "license": "MIT" 2158 | }, 2159 | "node_modules/is-binary-path": { 2160 | "version": "2.1.0", 2161 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2162 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2163 | "license": "MIT", 2164 | "dependencies": { 2165 | "binary-extensions": "^2.0.0" 2166 | }, 2167 | "engines": { 2168 | "node": ">=8" 2169 | } 2170 | }, 2171 | "node_modules/is-core-module": { 2172 | "version": "2.16.1", 2173 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 2174 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 2175 | "dev": true, 2176 | "license": "MIT", 2177 | "dependencies": { 2178 | "hasown": "^2.0.2" 2179 | }, 2180 | "engines": { 2181 | "node": ">= 0.4" 2182 | }, 2183 | "funding": { 2184 | "url": "https://github.com/sponsors/ljharb" 2185 | } 2186 | }, 2187 | "node_modules/is-extglob": { 2188 | "version": "2.1.1", 2189 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2190 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2191 | "license": "MIT", 2192 | "engines": { 2193 | "node": ">=0.10.0" 2194 | } 2195 | }, 2196 | "node_modules/is-fullwidth-code-point": { 2197 | "version": "3.0.0", 2198 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2199 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2200 | "dev": true, 2201 | "license": "MIT", 2202 | "engines": { 2203 | "node": ">=8" 2204 | } 2205 | }, 2206 | "node_modules/is-generator-fn": { 2207 | "version": "2.1.0", 2208 | "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", 2209 | "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", 2210 | "dev": true, 2211 | "license": "MIT", 2212 | "engines": { 2213 | "node": ">=6" 2214 | } 2215 | }, 2216 | "node_modules/is-glob": { 2217 | "version": "4.0.3", 2218 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2219 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2220 | "license": "MIT", 2221 | "dependencies": { 2222 | "is-extglob": "^2.1.1" 2223 | }, 2224 | "engines": { 2225 | "node": ">=0.10.0" 2226 | } 2227 | }, 2228 | "node_modules/is-number": { 2229 | "version": "7.0.0", 2230 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2231 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2232 | "license": "MIT", 2233 | "engines": { 2234 | "node": ">=0.12.0" 2235 | } 2236 | }, 2237 | "node_modules/is-stream": { 2238 | "version": "2.0.1", 2239 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2240 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2241 | "dev": true, 2242 | "license": "MIT", 2243 | "engines": { 2244 | "node": ">=8" 2245 | }, 2246 | "funding": { 2247 | "url": "https://github.com/sponsors/sindresorhus" 2248 | } 2249 | }, 2250 | "node_modules/isexe": { 2251 | "version": "2.0.0", 2252 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2253 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2254 | "dev": true, 2255 | "license": "ISC" 2256 | }, 2257 | "node_modules/istanbul-lib-coverage": { 2258 | "version": "3.2.2", 2259 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 2260 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 2261 | "dev": true, 2262 | "license": "BSD-3-Clause", 2263 | "engines": { 2264 | "node": ">=8" 2265 | } 2266 | }, 2267 | "node_modules/istanbul-lib-instrument": { 2268 | "version": "6.0.3", 2269 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", 2270 | "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", 2271 | "dev": true, 2272 | "license": "BSD-3-Clause", 2273 | "dependencies": { 2274 | "@babel/core": "^7.23.9", 2275 | "@babel/parser": "^7.23.9", 2276 | "@istanbuljs/schema": "^0.1.3", 2277 | "istanbul-lib-coverage": "^3.2.0", 2278 | "semver": "^7.5.4" 2279 | }, 2280 | "engines": { 2281 | "node": ">=10" 2282 | } 2283 | }, 2284 | "node_modules/istanbul-lib-instrument/node_modules/semver": { 2285 | "version": "7.6.3", 2286 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2287 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2288 | "dev": true, 2289 | "license": "ISC", 2290 | "bin": { 2291 | "semver": "bin/semver.js" 2292 | }, 2293 | "engines": { 2294 | "node": ">=10" 2295 | } 2296 | }, 2297 | "node_modules/istanbul-lib-report": { 2298 | "version": "3.0.1", 2299 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 2300 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 2301 | "dev": true, 2302 | "license": "BSD-3-Clause", 2303 | "dependencies": { 2304 | "istanbul-lib-coverage": "^3.0.0", 2305 | "make-dir": "^4.0.0", 2306 | "supports-color": "^7.1.0" 2307 | }, 2308 | "engines": { 2309 | "node": ">=10" 2310 | } 2311 | }, 2312 | "node_modules/istanbul-lib-source-maps": { 2313 | "version": "4.0.1", 2314 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", 2315 | "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", 2316 | "dev": true, 2317 | "license": "BSD-3-Clause", 2318 | "dependencies": { 2319 | "debug": "^4.1.1", 2320 | "istanbul-lib-coverage": "^3.0.0", 2321 | "source-map": "^0.6.1" 2322 | }, 2323 | "engines": { 2324 | "node": ">=10" 2325 | } 2326 | }, 2327 | "node_modules/istanbul-reports": { 2328 | "version": "3.1.7", 2329 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", 2330 | "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", 2331 | "dev": true, 2332 | "license": "BSD-3-Clause", 2333 | "dependencies": { 2334 | "html-escaper": "^2.0.0", 2335 | "istanbul-lib-report": "^3.0.0" 2336 | }, 2337 | "engines": { 2338 | "node": ">=8" 2339 | } 2340 | }, 2341 | "node_modules/jake": { 2342 | "version": "10.9.2", 2343 | "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", 2344 | "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", 2345 | "dev": true, 2346 | "license": "Apache-2.0", 2347 | "dependencies": { 2348 | "async": "^3.2.3", 2349 | "chalk": "^4.0.2", 2350 | "filelist": "^1.0.4", 2351 | "minimatch": "^3.1.2" 2352 | }, 2353 | "bin": { 2354 | "jake": "bin/cli.js" 2355 | }, 2356 | "engines": { 2357 | "node": ">=10" 2358 | } 2359 | }, 2360 | "node_modules/jest": { 2361 | "version": "29.7.0", 2362 | "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", 2363 | "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", 2364 | "dev": true, 2365 | "license": "MIT", 2366 | "dependencies": { 2367 | "@jest/core": "^29.7.0", 2368 | "@jest/types": "^29.6.3", 2369 | "import-local": "^3.0.2", 2370 | "jest-cli": "^29.7.0" 2371 | }, 2372 | "bin": { 2373 | "jest": "bin/jest.js" 2374 | }, 2375 | "engines": { 2376 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2377 | }, 2378 | "peerDependencies": { 2379 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2380 | }, 2381 | "peerDependenciesMeta": { 2382 | "node-notifier": { 2383 | "optional": true 2384 | } 2385 | } 2386 | }, 2387 | "node_modules/jest-changed-files": { 2388 | "version": "29.7.0", 2389 | "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", 2390 | "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", 2391 | "dev": true, 2392 | "license": "MIT", 2393 | "dependencies": { 2394 | "execa": "^5.0.0", 2395 | "jest-util": "^29.7.0", 2396 | "p-limit": "^3.1.0" 2397 | }, 2398 | "engines": { 2399 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2400 | } 2401 | }, 2402 | "node_modules/jest-circus": { 2403 | "version": "29.7.0", 2404 | "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", 2405 | "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", 2406 | "dev": true, 2407 | "license": "MIT", 2408 | "dependencies": { 2409 | "@jest/environment": "^29.7.0", 2410 | "@jest/expect": "^29.7.0", 2411 | "@jest/test-result": "^29.7.0", 2412 | "@jest/types": "^29.6.3", 2413 | "@types/node": "*", 2414 | "chalk": "^4.0.0", 2415 | "co": "^4.6.0", 2416 | "dedent": "^1.0.0", 2417 | "is-generator-fn": "^2.0.0", 2418 | "jest-each": "^29.7.0", 2419 | "jest-matcher-utils": "^29.7.0", 2420 | "jest-message-util": "^29.7.0", 2421 | "jest-runtime": "^29.7.0", 2422 | "jest-snapshot": "^29.7.0", 2423 | "jest-util": "^29.7.0", 2424 | "p-limit": "^3.1.0", 2425 | "pretty-format": "^29.7.0", 2426 | "pure-rand": "^6.0.0", 2427 | "slash": "^3.0.0", 2428 | "stack-utils": "^2.0.3" 2429 | }, 2430 | "engines": { 2431 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2432 | } 2433 | }, 2434 | "node_modules/jest-cli": { 2435 | "version": "29.7.0", 2436 | "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", 2437 | "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", 2438 | "dev": true, 2439 | "license": "MIT", 2440 | "dependencies": { 2441 | "@jest/core": "^29.7.0", 2442 | "@jest/test-result": "^29.7.0", 2443 | "@jest/types": "^29.6.3", 2444 | "chalk": "^4.0.0", 2445 | "create-jest": "^29.7.0", 2446 | "exit": "^0.1.2", 2447 | "import-local": "^3.0.2", 2448 | "jest-config": "^29.7.0", 2449 | "jest-util": "^29.7.0", 2450 | "jest-validate": "^29.7.0", 2451 | "yargs": "^17.3.1" 2452 | }, 2453 | "bin": { 2454 | "jest": "bin/jest.js" 2455 | }, 2456 | "engines": { 2457 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2458 | }, 2459 | "peerDependencies": { 2460 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 2461 | }, 2462 | "peerDependenciesMeta": { 2463 | "node-notifier": { 2464 | "optional": true 2465 | } 2466 | } 2467 | }, 2468 | "node_modules/jest-config": { 2469 | "version": "29.7.0", 2470 | "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", 2471 | "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", 2472 | "dev": true, 2473 | "license": "MIT", 2474 | "dependencies": { 2475 | "@babel/core": "^7.11.6", 2476 | "@jest/test-sequencer": "^29.7.0", 2477 | "@jest/types": "^29.6.3", 2478 | "babel-jest": "^29.7.0", 2479 | "chalk": "^4.0.0", 2480 | "ci-info": "^3.2.0", 2481 | "deepmerge": "^4.2.2", 2482 | "glob": "^7.1.3", 2483 | "graceful-fs": "^4.2.9", 2484 | "jest-circus": "^29.7.0", 2485 | "jest-environment-node": "^29.7.0", 2486 | "jest-get-type": "^29.6.3", 2487 | "jest-regex-util": "^29.6.3", 2488 | "jest-resolve": "^29.7.0", 2489 | "jest-runner": "^29.7.0", 2490 | "jest-util": "^29.7.0", 2491 | "jest-validate": "^29.7.0", 2492 | "micromatch": "^4.0.4", 2493 | "parse-json": "^5.2.0", 2494 | "pretty-format": "^29.7.0", 2495 | "slash": "^3.0.0", 2496 | "strip-json-comments": "^3.1.1" 2497 | }, 2498 | "engines": { 2499 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2500 | }, 2501 | "peerDependencies": { 2502 | "@types/node": "*", 2503 | "ts-node": ">=9.0.0" 2504 | }, 2505 | "peerDependenciesMeta": { 2506 | "@types/node": { 2507 | "optional": true 2508 | }, 2509 | "ts-node": { 2510 | "optional": true 2511 | } 2512 | } 2513 | }, 2514 | "node_modules/jest-diff": { 2515 | "version": "29.7.0", 2516 | "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", 2517 | "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", 2518 | "dev": true, 2519 | "license": "MIT", 2520 | "dependencies": { 2521 | "chalk": "^4.0.0", 2522 | "diff-sequences": "^29.6.3", 2523 | "jest-get-type": "^29.6.3", 2524 | "pretty-format": "^29.7.0" 2525 | }, 2526 | "engines": { 2527 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2528 | } 2529 | }, 2530 | "node_modules/jest-docblock": { 2531 | "version": "29.7.0", 2532 | "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", 2533 | "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", 2534 | "dev": true, 2535 | "license": "MIT", 2536 | "dependencies": { 2537 | "detect-newline": "^3.0.0" 2538 | }, 2539 | "engines": { 2540 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2541 | } 2542 | }, 2543 | "node_modules/jest-each": { 2544 | "version": "29.7.0", 2545 | "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", 2546 | "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", 2547 | "dev": true, 2548 | "license": "MIT", 2549 | "dependencies": { 2550 | "@jest/types": "^29.6.3", 2551 | "chalk": "^4.0.0", 2552 | "jest-get-type": "^29.6.3", 2553 | "jest-util": "^29.7.0", 2554 | "pretty-format": "^29.7.0" 2555 | }, 2556 | "engines": { 2557 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2558 | } 2559 | }, 2560 | "node_modules/jest-environment-node": { 2561 | "version": "29.7.0", 2562 | "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", 2563 | "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", 2564 | "dev": true, 2565 | "license": "MIT", 2566 | "dependencies": { 2567 | "@jest/environment": "^29.7.0", 2568 | "@jest/fake-timers": "^29.7.0", 2569 | "@jest/types": "^29.6.3", 2570 | "@types/node": "*", 2571 | "jest-mock": "^29.7.0", 2572 | "jest-util": "^29.7.0" 2573 | }, 2574 | "engines": { 2575 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2576 | } 2577 | }, 2578 | "node_modules/jest-get-type": { 2579 | "version": "29.6.3", 2580 | "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", 2581 | "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", 2582 | "dev": true, 2583 | "license": "MIT", 2584 | "engines": { 2585 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2586 | } 2587 | }, 2588 | "node_modules/jest-haste-map": { 2589 | "version": "29.7.0", 2590 | "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", 2591 | "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", 2592 | "dev": true, 2593 | "license": "MIT", 2594 | "dependencies": { 2595 | "@jest/types": "^29.6.3", 2596 | "@types/graceful-fs": "^4.1.3", 2597 | "@types/node": "*", 2598 | "anymatch": "^3.0.3", 2599 | "fb-watchman": "^2.0.0", 2600 | "graceful-fs": "^4.2.9", 2601 | "jest-regex-util": "^29.6.3", 2602 | "jest-util": "^29.7.0", 2603 | "jest-worker": "^29.7.0", 2604 | "micromatch": "^4.0.4", 2605 | "walker": "^1.0.8" 2606 | }, 2607 | "engines": { 2608 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2609 | }, 2610 | "optionalDependencies": { 2611 | "fsevents": "^2.3.2" 2612 | } 2613 | }, 2614 | "node_modules/jest-leak-detector": { 2615 | "version": "29.7.0", 2616 | "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", 2617 | "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", 2618 | "dev": true, 2619 | "license": "MIT", 2620 | "dependencies": { 2621 | "jest-get-type": "^29.6.3", 2622 | "pretty-format": "^29.7.0" 2623 | }, 2624 | "engines": { 2625 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2626 | } 2627 | }, 2628 | "node_modules/jest-matcher-utils": { 2629 | "version": "29.7.0", 2630 | "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", 2631 | "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", 2632 | "dev": true, 2633 | "license": "MIT", 2634 | "dependencies": { 2635 | "chalk": "^4.0.0", 2636 | "jest-diff": "^29.7.0", 2637 | "jest-get-type": "^29.6.3", 2638 | "pretty-format": "^29.7.0" 2639 | }, 2640 | "engines": { 2641 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2642 | } 2643 | }, 2644 | "node_modules/jest-message-util": { 2645 | "version": "29.7.0", 2646 | "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", 2647 | "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", 2648 | "dev": true, 2649 | "license": "MIT", 2650 | "dependencies": { 2651 | "@babel/code-frame": "^7.12.13", 2652 | "@jest/types": "^29.6.3", 2653 | "@types/stack-utils": "^2.0.0", 2654 | "chalk": "^4.0.0", 2655 | "graceful-fs": "^4.2.9", 2656 | "micromatch": "^4.0.4", 2657 | "pretty-format": "^29.7.0", 2658 | "slash": "^3.0.0", 2659 | "stack-utils": "^2.0.3" 2660 | }, 2661 | "engines": { 2662 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2663 | } 2664 | }, 2665 | "node_modules/jest-mock": { 2666 | "version": "29.7.0", 2667 | "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", 2668 | "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", 2669 | "dev": true, 2670 | "license": "MIT", 2671 | "dependencies": { 2672 | "@jest/types": "^29.6.3", 2673 | "@types/node": "*", 2674 | "jest-util": "^29.7.0" 2675 | }, 2676 | "engines": { 2677 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2678 | } 2679 | }, 2680 | "node_modules/jest-pnp-resolver": { 2681 | "version": "1.2.3", 2682 | "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", 2683 | "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", 2684 | "dev": true, 2685 | "license": "MIT", 2686 | "engines": { 2687 | "node": ">=6" 2688 | }, 2689 | "peerDependencies": { 2690 | "jest-resolve": "*" 2691 | }, 2692 | "peerDependenciesMeta": { 2693 | "jest-resolve": { 2694 | "optional": true 2695 | } 2696 | } 2697 | }, 2698 | "node_modules/jest-regex-util": { 2699 | "version": "29.6.3", 2700 | "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", 2701 | "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", 2702 | "dev": true, 2703 | "license": "MIT", 2704 | "engines": { 2705 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2706 | } 2707 | }, 2708 | "node_modules/jest-resolve": { 2709 | "version": "29.7.0", 2710 | "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", 2711 | "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", 2712 | "dev": true, 2713 | "license": "MIT", 2714 | "dependencies": { 2715 | "chalk": "^4.0.0", 2716 | "graceful-fs": "^4.2.9", 2717 | "jest-haste-map": "^29.7.0", 2718 | "jest-pnp-resolver": "^1.2.2", 2719 | "jest-util": "^29.7.0", 2720 | "jest-validate": "^29.7.0", 2721 | "resolve": "^1.20.0", 2722 | "resolve.exports": "^2.0.0", 2723 | "slash": "^3.0.0" 2724 | }, 2725 | "engines": { 2726 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2727 | } 2728 | }, 2729 | "node_modules/jest-resolve-dependencies": { 2730 | "version": "29.7.0", 2731 | "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", 2732 | "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", 2733 | "dev": true, 2734 | "license": "MIT", 2735 | "dependencies": { 2736 | "jest-regex-util": "^29.6.3", 2737 | "jest-snapshot": "^29.7.0" 2738 | }, 2739 | "engines": { 2740 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2741 | } 2742 | }, 2743 | "node_modules/jest-runner": { 2744 | "version": "29.7.0", 2745 | "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", 2746 | "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", 2747 | "dev": true, 2748 | "license": "MIT", 2749 | "dependencies": { 2750 | "@jest/console": "^29.7.0", 2751 | "@jest/environment": "^29.7.0", 2752 | "@jest/test-result": "^29.7.0", 2753 | "@jest/transform": "^29.7.0", 2754 | "@jest/types": "^29.6.3", 2755 | "@types/node": "*", 2756 | "chalk": "^4.0.0", 2757 | "emittery": "^0.13.1", 2758 | "graceful-fs": "^4.2.9", 2759 | "jest-docblock": "^29.7.0", 2760 | "jest-environment-node": "^29.7.0", 2761 | "jest-haste-map": "^29.7.0", 2762 | "jest-leak-detector": "^29.7.0", 2763 | "jest-message-util": "^29.7.0", 2764 | "jest-resolve": "^29.7.0", 2765 | "jest-runtime": "^29.7.0", 2766 | "jest-util": "^29.7.0", 2767 | "jest-watcher": "^29.7.0", 2768 | "jest-worker": "^29.7.0", 2769 | "p-limit": "^3.1.0", 2770 | "source-map-support": "0.5.13" 2771 | }, 2772 | "engines": { 2773 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2774 | } 2775 | }, 2776 | "node_modules/jest-runtime": { 2777 | "version": "29.7.0", 2778 | "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", 2779 | "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", 2780 | "dev": true, 2781 | "license": "MIT", 2782 | "dependencies": { 2783 | "@jest/environment": "^29.7.0", 2784 | "@jest/fake-timers": "^29.7.0", 2785 | "@jest/globals": "^29.7.0", 2786 | "@jest/source-map": "^29.6.3", 2787 | "@jest/test-result": "^29.7.0", 2788 | "@jest/transform": "^29.7.0", 2789 | "@jest/types": "^29.6.3", 2790 | "@types/node": "*", 2791 | "chalk": "^4.0.0", 2792 | "cjs-module-lexer": "^1.0.0", 2793 | "collect-v8-coverage": "^1.0.0", 2794 | "glob": "^7.1.3", 2795 | "graceful-fs": "^4.2.9", 2796 | "jest-haste-map": "^29.7.0", 2797 | "jest-message-util": "^29.7.0", 2798 | "jest-mock": "^29.7.0", 2799 | "jest-regex-util": "^29.6.3", 2800 | "jest-resolve": "^29.7.0", 2801 | "jest-snapshot": "^29.7.0", 2802 | "jest-util": "^29.7.0", 2803 | "slash": "^3.0.0", 2804 | "strip-bom": "^4.0.0" 2805 | }, 2806 | "engines": { 2807 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2808 | } 2809 | }, 2810 | "node_modules/jest-snapshot": { 2811 | "version": "29.7.0", 2812 | "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", 2813 | "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", 2814 | "dev": true, 2815 | "license": "MIT", 2816 | "dependencies": { 2817 | "@babel/core": "^7.11.6", 2818 | "@babel/generator": "^7.7.2", 2819 | "@babel/plugin-syntax-jsx": "^7.7.2", 2820 | "@babel/plugin-syntax-typescript": "^7.7.2", 2821 | "@babel/types": "^7.3.3", 2822 | "@jest/expect-utils": "^29.7.0", 2823 | "@jest/transform": "^29.7.0", 2824 | "@jest/types": "^29.6.3", 2825 | "babel-preset-current-node-syntax": "^1.0.0", 2826 | "chalk": "^4.0.0", 2827 | "expect": "^29.7.0", 2828 | "graceful-fs": "^4.2.9", 2829 | "jest-diff": "^29.7.0", 2830 | "jest-get-type": "^29.6.3", 2831 | "jest-matcher-utils": "^29.7.0", 2832 | "jest-message-util": "^29.7.0", 2833 | "jest-util": "^29.7.0", 2834 | "natural-compare": "^1.4.0", 2835 | "pretty-format": "^29.7.0", 2836 | "semver": "^7.5.3" 2837 | }, 2838 | "engines": { 2839 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2840 | } 2841 | }, 2842 | "node_modules/jest-snapshot/node_modules/semver": { 2843 | "version": "7.6.3", 2844 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2845 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2846 | "dev": true, 2847 | "license": "ISC", 2848 | "bin": { 2849 | "semver": "bin/semver.js" 2850 | }, 2851 | "engines": { 2852 | "node": ">=10" 2853 | } 2854 | }, 2855 | "node_modules/jest-util": { 2856 | "version": "29.7.0", 2857 | "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", 2858 | "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", 2859 | "dev": true, 2860 | "license": "MIT", 2861 | "dependencies": { 2862 | "@jest/types": "^29.6.3", 2863 | "@types/node": "*", 2864 | "chalk": "^4.0.0", 2865 | "ci-info": "^3.2.0", 2866 | "graceful-fs": "^4.2.9", 2867 | "picomatch": "^2.2.3" 2868 | }, 2869 | "engines": { 2870 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2871 | } 2872 | }, 2873 | "node_modules/jest-validate": { 2874 | "version": "29.7.0", 2875 | "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", 2876 | "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", 2877 | "dev": true, 2878 | "license": "MIT", 2879 | "dependencies": { 2880 | "@jest/types": "^29.6.3", 2881 | "camelcase": "^6.2.0", 2882 | "chalk": "^4.0.0", 2883 | "jest-get-type": "^29.6.3", 2884 | "leven": "^3.1.0", 2885 | "pretty-format": "^29.7.0" 2886 | }, 2887 | "engines": { 2888 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2889 | } 2890 | }, 2891 | "node_modules/jest-validate/node_modules/camelcase": { 2892 | "version": "6.3.0", 2893 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 2894 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 2895 | "dev": true, 2896 | "license": "MIT", 2897 | "engines": { 2898 | "node": ">=10" 2899 | }, 2900 | "funding": { 2901 | "url": "https://github.com/sponsors/sindresorhus" 2902 | } 2903 | }, 2904 | "node_modules/jest-watcher": { 2905 | "version": "29.7.0", 2906 | "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", 2907 | "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", 2908 | "dev": true, 2909 | "license": "MIT", 2910 | "dependencies": { 2911 | "@jest/test-result": "^29.7.0", 2912 | "@jest/types": "^29.6.3", 2913 | "@types/node": "*", 2914 | "ansi-escapes": "^4.2.1", 2915 | "chalk": "^4.0.0", 2916 | "emittery": "^0.13.1", 2917 | "jest-util": "^29.7.0", 2918 | "string-length": "^4.0.1" 2919 | }, 2920 | "engines": { 2921 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2922 | } 2923 | }, 2924 | "node_modules/jest-worker": { 2925 | "version": "29.7.0", 2926 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", 2927 | "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", 2928 | "dev": true, 2929 | "license": "MIT", 2930 | "dependencies": { 2931 | "@types/node": "*", 2932 | "jest-util": "^29.7.0", 2933 | "merge-stream": "^2.0.0", 2934 | "supports-color": "^8.0.0" 2935 | }, 2936 | "engines": { 2937 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2938 | } 2939 | }, 2940 | "node_modules/jest-worker/node_modules/supports-color": { 2941 | "version": "8.1.1", 2942 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2943 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2944 | "dev": true, 2945 | "license": "MIT", 2946 | "dependencies": { 2947 | "has-flag": "^4.0.0" 2948 | }, 2949 | "engines": { 2950 | "node": ">=10" 2951 | }, 2952 | "funding": { 2953 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2954 | } 2955 | }, 2956 | "node_modules/js-tokens": { 2957 | "version": "4.0.0", 2958 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2959 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2960 | "dev": true, 2961 | "license": "MIT" 2962 | }, 2963 | "node_modules/js-yaml": { 2964 | "version": "3.14.1", 2965 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 2966 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 2967 | "dev": true, 2968 | "license": "MIT", 2969 | "dependencies": { 2970 | "argparse": "^1.0.7", 2971 | "esprima": "^4.0.0" 2972 | }, 2973 | "bin": { 2974 | "js-yaml": "bin/js-yaml.js" 2975 | } 2976 | }, 2977 | "node_modules/jsesc": { 2978 | "version": "3.1.0", 2979 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 2980 | "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 2981 | "dev": true, 2982 | "license": "MIT", 2983 | "bin": { 2984 | "jsesc": "bin/jsesc" 2985 | }, 2986 | "engines": { 2987 | "node": ">=6" 2988 | } 2989 | }, 2990 | "node_modules/json-parse-even-better-errors": { 2991 | "version": "2.3.1", 2992 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2993 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2994 | "dev": true, 2995 | "license": "MIT" 2996 | }, 2997 | "node_modules/json5": { 2998 | "version": "2.2.3", 2999 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 3000 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 3001 | "dev": true, 3002 | "license": "MIT", 3003 | "bin": { 3004 | "json5": "lib/cli.js" 3005 | }, 3006 | "engines": { 3007 | "node": ">=6" 3008 | } 3009 | }, 3010 | "node_modules/jsonfile": { 3011 | "version": "6.1.0", 3012 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 3013 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 3014 | "license": "MIT", 3015 | "dependencies": { 3016 | "universalify": "^2.0.0" 3017 | }, 3018 | "optionalDependencies": { 3019 | "graceful-fs": "^4.1.6" 3020 | } 3021 | }, 3022 | "node_modules/kleur": { 3023 | "version": "3.0.3", 3024 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 3025 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 3026 | "dev": true, 3027 | "license": "MIT", 3028 | "engines": { 3029 | "node": ">=6" 3030 | } 3031 | }, 3032 | "node_modules/leven": { 3033 | "version": "3.1.0", 3034 | "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 3035 | "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 3036 | "dev": true, 3037 | "license": "MIT", 3038 | "engines": { 3039 | "node": ">=6" 3040 | } 3041 | }, 3042 | "node_modules/lines-and-columns": { 3043 | "version": "1.2.4", 3044 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 3045 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 3046 | "dev": true, 3047 | "license": "MIT" 3048 | }, 3049 | "node_modules/locate-path": { 3050 | "version": "5.0.0", 3051 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 3052 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 3053 | "dev": true, 3054 | "license": "MIT", 3055 | "dependencies": { 3056 | "p-locate": "^4.1.0" 3057 | }, 3058 | "engines": { 3059 | "node": ">=8" 3060 | } 3061 | }, 3062 | "node_modules/lodash.memoize": { 3063 | "version": "4.1.2", 3064 | "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", 3065 | "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", 3066 | "dev": true, 3067 | "license": "MIT" 3068 | }, 3069 | "node_modules/lru-cache": { 3070 | "version": "5.1.1", 3071 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 3072 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 3073 | "dev": true, 3074 | "license": "ISC", 3075 | "dependencies": { 3076 | "yallist": "^3.0.2" 3077 | } 3078 | }, 3079 | "node_modules/make-dir": { 3080 | "version": "4.0.0", 3081 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 3082 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 3083 | "dev": true, 3084 | "license": "MIT", 3085 | "dependencies": { 3086 | "semver": "^7.5.3" 3087 | }, 3088 | "engines": { 3089 | "node": ">=10" 3090 | }, 3091 | "funding": { 3092 | "url": "https://github.com/sponsors/sindresorhus" 3093 | } 3094 | }, 3095 | "node_modules/make-dir/node_modules/semver": { 3096 | "version": "7.6.3", 3097 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3098 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3099 | "dev": true, 3100 | "license": "ISC", 3101 | "bin": { 3102 | "semver": "bin/semver.js" 3103 | }, 3104 | "engines": { 3105 | "node": ">=10" 3106 | } 3107 | }, 3108 | "node_modules/make-error": { 3109 | "version": "1.3.6", 3110 | "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", 3111 | "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", 3112 | "dev": true, 3113 | "license": "ISC" 3114 | }, 3115 | "node_modules/makeerror": { 3116 | "version": "1.0.12", 3117 | "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 3118 | "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 3119 | "dev": true, 3120 | "license": "BSD-3-Clause", 3121 | "dependencies": { 3122 | "tmpl": "1.0.5" 3123 | } 3124 | }, 3125 | "node_modules/merge-stream": { 3126 | "version": "2.0.0", 3127 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 3128 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 3129 | "dev": true, 3130 | "license": "MIT" 3131 | }, 3132 | "node_modules/micromatch": { 3133 | "version": "4.0.8", 3134 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 3135 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 3136 | "dev": true, 3137 | "license": "MIT", 3138 | "dependencies": { 3139 | "braces": "^3.0.3", 3140 | "picomatch": "^2.3.1" 3141 | }, 3142 | "engines": { 3143 | "node": ">=8.6" 3144 | } 3145 | }, 3146 | "node_modules/mimic-fn": { 3147 | "version": "2.1.0", 3148 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3149 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3150 | "dev": true, 3151 | "license": "MIT", 3152 | "engines": { 3153 | "node": ">=6" 3154 | } 3155 | }, 3156 | "node_modules/minimatch": { 3157 | "version": "3.1.2", 3158 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3159 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3160 | "dev": true, 3161 | "license": "ISC", 3162 | "dependencies": { 3163 | "brace-expansion": "^1.1.7" 3164 | }, 3165 | "engines": { 3166 | "node": "*" 3167 | } 3168 | }, 3169 | "node_modules/ms": { 3170 | "version": "2.1.3", 3171 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 3172 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 3173 | "dev": true, 3174 | "license": "MIT" 3175 | }, 3176 | "node_modules/natural-compare": { 3177 | "version": "1.4.0", 3178 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3179 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3180 | "dev": true, 3181 | "license": "MIT" 3182 | }, 3183 | "node_modules/node-int64": { 3184 | "version": "0.4.0", 3185 | "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 3186 | "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 3187 | "dev": true, 3188 | "license": "MIT" 3189 | }, 3190 | "node_modules/node-releases": { 3191 | "version": "2.0.19", 3192 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 3193 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 3194 | "dev": true, 3195 | "license": "MIT" 3196 | }, 3197 | "node_modules/normalize-path": { 3198 | "version": "3.0.0", 3199 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3200 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3201 | "license": "MIT", 3202 | "engines": { 3203 | "node": ">=0.10.0" 3204 | } 3205 | }, 3206 | "node_modules/npm-run-path": { 3207 | "version": "4.0.1", 3208 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3209 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3210 | "dev": true, 3211 | "license": "MIT", 3212 | "dependencies": { 3213 | "path-key": "^3.0.0" 3214 | }, 3215 | "engines": { 3216 | "node": ">=8" 3217 | } 3218 | }, 3219 | "node_modules/once": { 3220 | "version": "1.4.0", 3221 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3222 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3223 | "dev": true, 3224 | "license": "ISC", 3225 | "dependencies": { 3226 | "wrappy": "1" 3227 | } 3228 | }, 3229 | "node_modules/onetime": { 3230 | "version": "5.1.2", 3231 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3232 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3233 | "dev": true, 3234 | "license": "MIT", 3235 | "dependencies": { 3236 | "mimic-fn": "^2.1.0" 3237 | }, 3238 | "engines": { 3239 | "node": ">=6" 3240 | }, 3241 | "funding": { 3242 | "url": "https://github.com/sponsors/sindresorhus" 3243 | } 3244 | }, 3245 | "node_modules/p-limit": { 3246 | "version": "3.1.0", 3247 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3248 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3249 | "dev": true, 3250 | "license": "MIT", 3251 | "dependencies": { 3252 | "yocto-queue": "^0.1.0" 3253 | }, 3254 | "engines": { 3255 | "node": ">=10" 3256 | }, 3257 | "funding": { 3258 | "url": "https://github.com/sponsors/sindresorhus" 3259 | } 3260 | }, 3261 | "node_modules/p-locate": { 3262 | "version": "4.1.0", 3263 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 3264 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 3265 | "dev": true, 3266 | "license": "MIT", 3267 | "dependencies": { 3268 | "p-limit": "^2.2.0" 3269 | }, 3270 | "engines": { 3271 | "node": ">=8" 3272 | } 3273 | }, 3274 | "node_modules/p-locate/node_modules/p-limit": { 3275 | "version": "2.3.0", 3276 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 3277 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 3278 | "dev": true, 3279 | "license": "MIT", 3280 | "dependencies": { 3281 | "p-try": "^2.0.0" 3282 | }, 3283 | "engines": { 3284 | "node": ">=6" 3285 | }, 3286 | "funding": { 3287 | "url": "https://github.com/sponsors/sindresorhus" 3288 | } 3289 | }, 3290 | "node_modules/p-try": { 3291 | "version": "2.2.0", 3292 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3293 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3294 | "dev": true, 3295 | "license": "MIT", 3296 | "engines": { 3297 | "node": ">=6" 3298 | } 3299 | }, 3300 | "node_modules/parse-json": { 3301 | "version": "5.2.0", 3302 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 3303 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 3304 | "dev": true, 3305 | "license": "MIT", 3306 | "dependencies": { 3307 | "@babel/code-frame": "^7.0.0", 3308 | "error-ex": "^1.3.1", 3309 | "json-parse-even-better-errors": "^2.3.0", 3310 | "lines-and-columns": "^1.1.6" 3311 | }, 3312 | "engines": { 3313 | "node": ">=8" 3314 | }, 3315 | "funding": { 3316 | "url": "https://github.com/sponsors/sindresorhus" 3317 | } 3318 | }, 3319 | "node_modules/path-exists": { 3320 | "version": "4.0.0", 3321 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3322 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3323 | "dev": true, 3324 | "license": "MIT", 3325 | "engines": { 3326 | "node": ">=8" 3327 | } 3328 | }, 3329 | "node_modules/path-is-absolute": { 3330 | "version": "1.0.1", 3331 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3332 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3333 | "dev": true, 3334 | "license": "MIT", 3335 | "engines": { 3336 | "node": ">=0.10.0" 3337 | } 3338 | }, 3339 | "node_modules/path-key": { 3340 | "version": "3.1.1", 3341 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3342 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3343 | "dev": true, 3344 | "license": "MIT", 3345 | "engines": { 3346 | "node": ">=8" 3347 | } 3348 | }, 3349 | "node_modules/path-parse": { 3350 | "version": "1.0.7", 3351 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3352 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3353 | "dev": true, 3354 | "license": "MIT" 3355 | }, 3356 | "node_modules/picocolors": { 3357 | "version": "1.1.1", 3358 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 3359 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 3360 | "dev": true, 3361 | "license": "ISC" 3362 | }, 3363 | "node_modules/picomatch": { 3364 | "version": "2.3.1", 3365 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3366 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3367 | "license": "MIT", 3368 | "engines": { 3369 | "node": ">=8.6" 3370 | }, 3371 | "funding": { 3372 | "url": "https://github.com/sponsors/jonschlinkert" 3373 | } 3374 | }, 3375 | "node_modules/pirates": { 3376 | "version": "4.0.6", 3377 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3378 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3379 | "dev": true, 3380 | "license": "MIT", 3381 | "engines": { 3382 | "node": ">= 6" 3383 | } 3384 | }, 3385 | "node_modules/pkg-dir": { 3386 | "version": "4.2.0", 3387 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 3388 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 3389 | "dev": true, 3390 | "license": "MIT", 3391 | "dependencies": { 3392 | "find-up": "^4.0.0" 3393 | }, 3394 | "engines": { 3395 | "node": ">=8" 3396 | } 3397 | }, 3398 | "node_modules/pretty-format": { 3399 | "version": "29.7.0", 3400 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", 3401 | "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", 3402 | "dev": true, 3403 | "license": "MIT", 3404 | "dependencies": { 3405 | "@jest/schemas": "^29.6.3", 3406 | "ansi-styles": "^5.0.0", 3407 | "react-is": "^18.0.0" 3408 | }, 3409 | "engines": { 3410 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3411 | } 3412 | }, 3413 | "node_modules/pretty-format/node_modules/ansi-styles": { 3414 | "version": "5.2.0", 3415 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 3416 | "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 3417 | "dev": true, 3418 | "license": "MIT", 3419 | "engines": { 3420 | "node": ">=10" 3421 | }, 3422 | "funding": { 3423 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3424 | } 3425 | }, 3426 | "node_modules/prompts": { 3427 | "version": "2.4.2", 3428 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 3429 | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 3430 | "dev": true, 3431 | "license": "MIT", 3432 | "dependencies": { 3433 | "kleur": "^3.0.3", 3434 | "sisteransi": "^1.0.5" 3435 | }, 3436 | "engines": { 3437 | "node": ">= 6" 3438 | } 3439 | }, 3440 | "node_modules/pure-rand": { 3441 | "version": "6.1.0", 3442 | "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", 3443 | "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", 3444 | "dev": true, 3445 | "funding": [ 3446 | { 3447 | "type": "individual", 3448 | "url": "https://github.com/sponsors/dubzzz" 3449 | }, 3450 | { 3451 | "type": "opencollective", 3452 | "url": "https://opencollective.com/fast-check" 3453 | } 3454 | ], 3455 | "license": "MIT" 3456 | }, 3457 | "node_modules/raw-body": { 3458 | "version": "3.0.0", 3459 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz", 3460 | "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", 3461 | "license": "MIT", 3462 | "dependencies": { 3463 | "bytes": "3.1.2", 3464 | "http-errors": "2.0.0", 3465 | "iconv-lite": "0.6.3", 3466 | "unpipe": "1.0.0" 3467 | }, 3468 | "engines": { 3469 | "node": ">= 0.8" 3470 | } 3471 | }, 3472 | "node_modules/react-is": { 3473 | "version": "18.3.1", 3474 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", 3475 | "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", 3476 | "dev": true, 3477 | "license": "MIT" 3478 | }, 3479 | "node_modules/readdirp": { 3480 | "version": "3.6.0", 3481 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3482 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3483 | "license": "MIT", 3484 | "dependencies": { 3485 | "picomatch": "^2.2.1" 3486 | }, 3487 | "engines": { 3488 | "node": ">=8.10.0" 3489 | } 3490 | }, 3491 | "node_modules/require-directory": { 3492 | "version": "2.1.1", 3493 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3494 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3495 | "dev": true, 3496 | "license": "MIT", 3497 | "engines": { 3498 | "node": ">=0.10.0" 3499 | } 3500 | }, 3501 | "node_modules/resolve": { 3502 | "version": "1.22.10", 3503 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 3504 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 3505 | "dev": true, 3506 | "license": "MIT", 3507 | "dependencies": { 3508 | "is-core-module": "^2.16.0", 3509 | "path-parse": "^1.0.7", 3510 | "supports-preserve-symlinks-flag": "^1.0.0" 3511 | }, 3512 | "bin": { 3513 | "resolve": "bin/resolve" 3514 | }, 3515 | "engines": { 3516 | "node": ">= 0.4" 3517 | }, 3518 | "funding": { 3519 | "url": "https://github.com/sponsors/ljharb" 3520 | } 3521 | }, 3522 | "node_modules/resolve-cwd": { 3523 | "version": "3.0.0", 3524 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 3525 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 3526 | "dev": true, 3527 | "license": "MIT", 3528 | "dependencies": { 3529 | "resolve-from": "^5.0.0" 3530 | }, 3531 | "engines": { 3532 | "node": ">=8" 3533 | } 3534 | }, 3535 | "node_modules/resolve-from": { 3536 | "version": "5.0.0", 3537 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 3538 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 3539 | "dev": true, 3540 | "license": "MIT", 3541 | "engines": { 3542 | "node": ">=8" 3543 | } 3544 | }, 3545 | "node_modules/resolve.exports": { 3546 | "version": "2.0.3", 3547 | "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", 3548 | "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", 3549 | "dev": true, 3550 | "license": "MIT", 3551 | "engines": { 3552 | "node": ">=10" 3553 | } 3554 | }, 3555 | "node_modules/safer-buffer": { 3556 | "version": "2.1.2", 3557 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 3558 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 3559 | "license": "MIT" 3560 | }, 3561 | "node_modules/semver": { 3562 | "version": "6.3.1", 3563 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3564 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3565 | "dev": true, 3566 | "license": "ISC", 3567 | "bin": { 3568 | "semver": "bin/semver.js" 3569 | } 3570 | }, 3571 | "node_modules/setprototypeof": { 3572 | "version": "1.2.0", 3573 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 3574 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 3575 | "license": "ISC" 3576 | }, 3577 | "node_modules/shebang-command": { 3578 | "version": "2.0.0", 3579 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3580 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3581 | "dev": true, 3582 | "license": "MIT", 3583 | "dependencies": { 3584 | "shebang-regex": "^3.0.0" 3585 | }, 3586 | "engines": { 3587 | "node": ">=8" 3588 | } 3589 | }, 3590 | "node_modules/shebang-regex": { 3591 | "version": "3.0.0", 3592 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3593 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3594 | "dev": true, 3595 | "license": "MIT", 3596 | "engines": { 3597 | "node": ">=8" 3598 | } 3599 | }, 3600 | "node_modules/signal-exit": { 3601 | "version": "3.0.7", 3602 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3603 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 3604 | "dev": true, 3605 | "license": "ISC" 3606 | }, 3607 | "node_modules/sisteransi": { 3608 | "version": "1.0.5", 3609 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 3610 | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 3611 | "dev": true, 3612 | "license": "MIT" 3613 | }, 3614 | "node_modules/slash": { 3615 | "version": "3.0.0", 3616 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3617 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3618 | "dev": true, 3619 | "license": "MIT", 3620 | "engines": { 3621 | "node": ">=8" 3622 | } 3623 | }, 3624 | "node_modules/source-map": { 3625 | "version": "0.6.1", 3626 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 3627 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 3628 | "dev": true, 3629 | "license": "BSD-3-Clause", 3630 | "engines": { 3631 | "node": ">=0.10.0" 3632 | } 3633 | }, 3634 | "node_modules/source-map-support": { 3635 | "version": "0.5.13", 3636 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", 3637 | "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", 3638 | "dev": true, 3639 | "license": "MIT", 3640 | "dependencies": { 3641 | "buffer-from": "^1.0.0", 3642 | "source-map": "^0.6.0" 3643 | } 3644 | }, 3645 | "node_modules/sprintf-js": { 3646 | "version": "1.0.3", 3647 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 3648 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 3649 | "dev": true, 3650 | "license": "BSD-3-Clause" 3651 | }, 3652 | "node_modules/stack-utils": { 3653 | "version": "2.0.6", 3654 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 3655 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 3656 | "dev": true, 3657 | "license": "MIT", 3658 | "dependencies": { 3659 | "escape-string-regexp": "^2.0.0" 3660 | }, 3661 | "engines": { 3662 | "node": ">=10" 3663 | } 3664 | }, 3665 | "node_modules/statuses": { 3666 | "version": "2.0.1", 3667 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 3668 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 3669 | "license": "MIT", 3670 | "engines": { 3671 | "node": ">= 0.8" 3672 | } 3673 | }, 3674 | "node_modules/string-length": { 3675 | "version": "4.0.2", 3676 | "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", 3677 | "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", 3678 | "dev": true, 3679 | "license": "MIT", 3680 | "dependencies": { 3681 | "char-regex": "^1.0.2", 3682 | "strip-ansi": "^6.0.0" 3683 | }, 3684 | "engines": { 3685 | "node": ">=10" 3686 | } 3687 | }, 3688 | "node_modules/string-width": { 3689 | "version": "4.2.3", 3690 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3691 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3692 | "dev": true, 3693 | "license": "MIT", 3694 | "dependencies": { 3695 | "emoji-regex": "^8.0.0", 3696 | "is-fullwidth-code-point": "^3.0.0", 3697 | "strip-ansi": "^6.0.1" 3698 | }, 3699 | "engines": { 3700 | "node": ">=8" 3701 | } 3702 | }, 3703 | "node_modules/strip-ansi": { 3704 | "version": "6.0.1", 3705 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3706 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3707 | "dev": true, 3708 | "license": "MIT", 3709 | "dependencies": { 3710 | "ansi-regex": "^5.0.1" 3711 | }, 3712 | "engines": { 3713 | "node": ">=8" 3714 | } 3715 | }, 3716 | "node_modules/strip-bom": { 3717 | "version": "4.0.0", 3718 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", 3719 | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", 3720 | "dev": true, 3721 | "license": "MIT", 3722 | "engines": { 3723 | "node": ">=8" 3724 | } 3725 | }, 3726 | "node_modules/strip-final-newline": { 3727 | "version": "2.0.0", 3728 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3729 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3730 | "dev": true, 3731 | "license": "MIT", 3732 | "engines": { 3733 | "node": ">=6" 3734 | } 3735 | }, 3736 | "node_modules/strip-json-comments": { 3737 | "version": "3.1.1", 3738 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3739 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3740 | "dev": true, 3741 | "license": "MIT", 3742 | "engines": { 3743 | "node": ">=8" 3744 | }, 3745 | "funding": { 3746 | "url": "https://github.com/sponsors/sindresorhus" 3747 | } 3748 | }, 3749 | "node_modules/supports-color": { 3750 | "version": "7.2.0", 3751 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3752 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3753 | "dev": true, 3754 | "license": "MIT", 3755 | "dependencies": { 3756 | "has-flag": "^4.0.0" 3757 | }, 3758 | "engines": { 3759 | "node": ">=8" 3760 | } 3761 | }, 3762 | "node_modules/supports-preserve-symlinks-flag": { 3763 | "version": "1.0.0", 3764 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3765 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3766 | "dev": true, 3767 | "license": "MIT", 3768 | "engines": { 3769 | "node": ">= 0.4" 3770 | }, 3771 | "funding": { 3772 | "url": "https://github.com/sponsors/ljharb" 3773 | } 3774 | }, 3775 | "node_modules/test-exclude": { 3776 | "version": "6.0.0", 3777 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 3778 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 3779 | "dev": true, 3780 | "license": "ISC", 3781 | "dependencies": { 3782 | "@istanbuljs/schema": "^0.1.2", 3783 | "glob": "^7.1.4", 3784 | "minimatch": "^3.0.4" 3785 | }, 3786 | "engines": { 3787 | "node": ">=8" 3788 | } 3789 | }, 3790 | "node_modules/tmpl": { 3791 | "version": "1.0.5", 3792 | "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 3793 | "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 3794 | "dev": true, 3795 | "license": "BSD-3-Clause" 3796 | }, 3797 | "node_modules/to-regex-range": { 3798 | "version": "5.0.1", 3799 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3800 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3801 | "license": "MIT", 3802 | "dependencies": { 3803 | "is-number": "^7.0.0" 3804 | }, 3805 | "engines": { 3806 | "node": ">=8.0" 3807 | } 3808 | }, 3809 | "node_modules/toidentifier": { 3810 | "version": "1.0.1", 3811 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 3812 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 3813 | "license": "MIT", 3814 | "engines": { 3815 | "node": ">=0.6" 3816 | } 3817 | }, 3818 | "node_modules/ts-jest": { 3819 | "version": "29.2.5", 3820 | "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.2.5.tgz", 3821 | "integrity": "sha512-KD8zB2aAZrcKIdGk4OwpJggeLcH1FgrICqDSROWqlnJXGCXK4Mn6FcdK2B6670Xr73lHMG1kHw8R87A0ecZ+vA==", 3822 | "dev": true, 3823 | "license": "MIT", 3824 | "dependencies": { 3825 | "bs-logger": "^0.2.6", 3826 | "ejs": "^3.1.10", 3827 | "fast-json-stable-stringify": "^2.1.0", 3828 | "jest-util": "^29.0.0", 3829 | "json5": "^2.2.3", 3830 | "lodash.memoize": "^4.1.2", 3831 | "make-error": "^1.3.6", 3832 | "semver": "^7.6.3", 3833 | "yargs-parser": "^21.1.1" 3834 | }, 3835 | "bin": { 3836 | "ts-jest": "cli.js" 3837 | }, 3838 | "engines": { 3839 | "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0" 3840 | }, 3841 | "peerDependencies": { 3842 | "@babel/core": ">=7.0.0-beta.0 <8", 3843 | "@jest/transform": "^29.0.0", 3844 | "@jest/types": "^29.0.0", 3845 | "babel-jest": "^29.0.0", 3846 | "jest": "^29.0.0", 3847 | "typescript": ">=4.3 <6" 3848 | }, 3849 | "peerDependenciesMeta": { 3850 | "@babel/core": { 3851 | "optional": true 3852 | }, 3853 | "@jest/transform": { 3854 | "optional": true 3855 | }, 3856 | "@jest/types": { 3857 | "optional": true 3858 | }, 3859 | "babel-jest": { 3860 | "optional": true 3861 | }, 3862 | "esbuild": { 3863 | "optional": true 3864 | } 3865 | } 3866 | }, 3867 | "node_modules/ts-jest/node_modules/semver": { 3868 | "version": "7.6.3", 3869 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3870 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3871 | "dev": true, 3872 | "license": "ISC", 3873 | "bin": { 3874 | "semver": "bin/semver.js" 3875 | }, 3876 | "engines": { 3877 | "node": ">=10" 3878 | } 3879 | }, 3880 | "node_modules/type-detect": { 3881 | "version": "4.0.8", 3882 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 3883 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 3884 | "dev": true, 3885 | "license": "MIT", 3886 | "engines": { 3887 | "node": ">=4" 3888 | } 3889 | }, 3890 | "node_modules/type-fest": { 3891 | "version": "0.21.3", 3892 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 3893 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 3894 | "dev": true, 3895 | "license": "(MIT OR CC0-1.0)", 3896 | "engines": { 3897 | "node": ">=10" 3898 | }, 3899 | "funding": { 3900 | "url": "https://github.com/sponsors/sindresorhus" 3901 | } 3902 | }, 3903 | "node_modules/typescript": { 3904 | "version": "5.7.3", 3905 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", 3906 | "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", 3907 | "dev": true, 3908 | "license": "Apache-2.0", 3909 | "bin": { 3910 | "tsc": "bin/tsc", 3911 | "tsserver": "bin/tsserver" 3912 | }, 3913 | "engines": { 3914 | "node": ">=14.17" 3915 | } 3916 | }, 3917 | "node_modules/undici-types": { 3918 | "version": "6.19.8", 3919 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", 3920 | "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", 3921 | "dev": true, 3922 | "license": "MIT" 3923 | }, 3924 | "node_modules/universalify": { 3925 | "version": "2.0.1", 3926 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", 3927 | "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", 3928 | "license": "MIT", 3929 | "engines": { 3930 | "node": ">= 10.0.0" 3931 | } 3932 | }, 3933 | "node_modules/unpipe": { 3934 | "version": "1.0.0", 3935 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 3936 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 3937 | "license": "MIT", 3938 | "engines": { 3939 | "node": ">= 0.8" 3940 | } 3941 | }, 3942 | "node_modules/update-browserslist-db": { 3943 | "version": "1.1.2", 3944 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz", 3945 | "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==", 3946 | "dev": true, 3947 | "funding": [ 3948 | { 3949 | "type": "opencollective", 3950 | "url": "https://opencollective.com/browserslist" 3951 | }, 3952 | { 3953 | "type": "tidelift", 3954 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3955 | }, 3956 | { 3957 | "type": "github", 3958 | "url": "https://github.com/sponsors/ai" 3959 | } 3960 | ], 3961 | "license": "MIT", 3962 | "dependencies": { 3963 | "escalade": "^3.2.0", 3964 | "picocolors": "^1.1.1" 3965 | }, 3966 | "bin": { 3967 | "update-browserslist-db": "cli.js" 3968 | }, 3969 | "peerDependencies": { 3970 | "browserslist": ">= 4.21.0" 3971 | } 3972 | }, 3973 | "node_modules/v8-to-istanbul": { 3974 | "version": "9.3.0", 3975 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", 3976 | "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", 3977 | "dev": true, 3978 | "license": "ISC", 3979 | "dependencies": { 3980 | "@jridgewell/trace-mapping": "^0.3.12", 3981 | "@types/istanbul-lib-coverage": "^2.0.1", 3982 | "convert-source-map": "^2.0.0" 3983 | }, 3984 | "engines": { 3985 | "node": ">=10.12.0" 3986 | } 3987 | }, 3988 | "node_modules/walker": { 3989 | "version": "1.0.8", 3990 | "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 3991 | "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 3992 | "dev": true, 3993 | "license": "Apache-2.0", 3994 | "dependencies": { 3995 | "makeerror": "1.0.12" 3996 | } 3997 | }, 3998 | "node_modules/which": { 3999 | "version": "2.0.2", 4000 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4001 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4002 | "dev": true, 4003 | "license": "ISC", 4004 | "dependencies": { 4005 | "isexe": "^2.0.0" 4006 | }, 4007 | "bin": { 4008 | "node-which": "bin/node-which" 4009 | }, 4010 | "engines": { 4011 | "node": ">= 8" 4012 | } 4013 | }, 4014 | "node_modules/wrap-ansi": { 4015 | "version": "7.0.0", 4016 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4017 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4018 | "dev": true, 4019 | "license": "MIT", 4020 | "dependencies": { 4021 | "ansi-styles": "^4.0.0", 4022 | "string-width": "^4.1.0", 4023 | "strip-ansi": "^6.0.0" 4024 | }, 4025 | "engines": { 4026 | "node": ">=10" 4027 | }, 4028 | "funding": { 4029 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4030 | } 4031 | }, 4032 | "node_modules/wrappy": { 4033 | "version": "1.0.2", 4034 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4035 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4036 | "dev": true, 4037 | "license": "ISC" 4038 | }, 4039 | "node_modules/write-file-atomic": { 4040 | "version": "4.0.2", 4041 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 4042 | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 4043 | "dev": true, 4044 | "license": "ISC", 4045 | "dependencies": { 4046 | "imurmurhash": "^0.1.4", 4047 | "signal-exit": "^3.0.7" 4048 | }, 4049 | "engines": { 4050 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 4051 | } 4052 | }, 4053 | "node_modules/y18n": { 4054 | "version": "5.0.8", 4055 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 4056 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 4057 | "dev": true, 4058 | "license": "ISC", 4059 | "engines": { 4060 | "node": ">=10" 4061 | } 4062 | }, 4063 | "node_modules/yallist": { 4064 | "version": "3.1.1", 4065 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 4066 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 4067 | "dev": true, 4068 | "license": "ISC" 4069 | }, 4070 | "node_modules/yargs": { 4071 | "version": "17.7.2", 4072 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 4073 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 4074 | "dev": true, 4075 | "license": "MIT", 4076 | "dependencies": { 4077 | "cliui": "^8.0.1", 4078 | "escalade": "^3.1.1", 4079 | "get-caller-file": "^2.0.5", 4080 | "require-directory": "^2.1.1", 4081 | "string-width": "^4.2.3", 4082 | "y18n": "^5.0.5", 4083 | "yargs-parser": "^21.1.1" 4084 | }, 4085 | "engines": { 4086 | "node": ">=12" 4087 | } 4088 | }, 4089 | "node_modules/yargs-parser": { 4090 | "version": "21.1.1", 4091 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 4092 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 4093 | "dev": true, 4094 | "license": "ISC", 4095 | "engines": { 4096 | "node": ">=12" 4097 | } 4098 | }, 4099 | "node_modules/yocto-queue": { 4100 | "version": "0.1.0", 4101 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4102 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4103 | "dev": true, 4104 | "license": "MIT", 4105 | "engines": { 4106 | "node": ">=10" 4107 | }, 4108 | "funding": { 4109 | "url": "https://github.com/sponsors/sindresorhus" 4110 | } 4111 | }, 4112 | "node_modules/zod": { 4113 | "version": "3.24.1", 4114 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz", 4115 | "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==", 4116 | "license": "MIT", 4117 | "funding": { 4118 | "url": "https://github.com/sponsors/colinhacks" 4119 | } 4120 | } 4121 | } 4122 | } 4123 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "modes-mcp-server", 3 | "version": "0.1.0", 4 | "description": "MCP server for managing Roo custom modes", 5 | "type": "module", 6 | "main": "build/index.js", 7 | "scripts": { 8 | "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", 9 | "start": "node build/index.js", 10 | "dev": "tsc -w", 11 | "test": "jest" 12 | }, 13 | "dependencies": { 14 | "@modelcontextprotocol/sdk": "0.6.0", 15 | "chokidar": "^3.5.3", 16 | "fs-extra": "^11.2.0", 17 | "zod": "^3.22.4" 18 | }, 19 | "devDependencies": { 20 | "@types/fs-extra": "^11.0.4", 21 | "@types/jest": "^29.5.11", 22 | "@types/node": "^20.11.5", 23 | "jest": "^29.7.0", 24 | "ts-jest": "^29.1.1", 25 | "typescript": "^5.3.3" 26 | } 27 | } -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | /** 3 | * Modes MCP Server 4 | * 5 | * This server provides tools for managing Roo's custom operational modes through the Model Context Protocol. 6 | * It handles creation, updating, deletion, and validation of mode configurations, with support for: 7 | * - Schema validation using Zod 8 | * - File system watching for config changes 9 | * - Atomic file operations 10 | * - Error handling with standard MCP error codes 11 | */ 12 | 13 | import { Server } from '@modelcontextprotocol/sdk/server/index.js'; 14 | import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; 15 | import { 16 | CallToolRequestSchema, 17 | ErrorCode, 18 | ListToolsRequestSchema, 19 | McpError, 20 | } from '@modelcontextprotocol/sdk/types.js'; 21 | import { z } from 'zod'; 22 | import fs from 'fs-extra'; 23 | import path from 'path'; 24 | import chokidar from 'chokidar'; 25 | 26 | /** 27 | * Schema for mode groups. Groups can be either: 28 | * 1. Simple string (e.g., "read", "edit") 29 | * 2. Tuple of [string, {fileRegex, description}] for file-specific permissions 30 | */ 31 | const GroupSchema = z.union([ 32 | z.string(), 33 | z.tuple([ 34 | z.string(), 35 | z.object({ 36 | fileRegex: z.string(), 37 | description: z.string(), 38 | }), 39 | ]), 40 | ]); 41 | 42 | /** 43 | * Schema for custom modes. Each mode must have: 44 | * - slug: Unique identifier (lowercase letters, numbers, hyphens) 45 | * - name: Display name 46 | * - roleDefinition: Detailed description of the mode's capabilities 47 | * - groups: Array of allowed tool groups 48 | * - customInstructions: Optional additional instructions 49 | */ 50 | const CustomModeSchema = z.object({ 51 | slug: z.string().regex(/^[a-z0-9-]+$/), 52 | name: z.string().min(1), 53 | roleDefinition: z.string().min(1), 54 | groups: z.array(GroupSchema), 55 | customInstructions: z.string().optional(), 56 | }); 57 | 58 | /** 59 | * Schema for the complete modes configuration file 60 | */ 61 | const CustomModesConfigSchema = z.object({ 62 | customModes: z.array(CustomModeSchema), 63 | }); 64 | 65 | class ModesServer { 66 | private server: Server; 67 | private configPath: string; 68 | private watcher: chokidar.FSWatcher | null = null; 69 | 70 | constructor() { 71 | this.server = new Server( 72 | { 73 | name: 'modes-mcp-server', 74 | version: '0.1.0', 75 | }, 76 | { 77 | capabilities: { 78 | tools: {}, 79 | }, 80 | } 81 | ); 82 | 83 | // Default config path - can be overridden via environment variable 84 | this.configPath = process.env.MODES_CONFIG_PATH || 85 | path.join(process.env.APPDATA || '', 'Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_custom_modes.json'); 86 | 87 | // Ensure config directory exists 88 | const configDir = path.dirname(this.configPath); 89 | if (!fs.existsSync(configDir)) { 90 | fs.mkdirpSync(configDir); 91 | } 92 | 93 | this.setupToolHandlers(); 94 | this.watchConfigFile(); 95 | 96 | // Error handling 97 | this.server.onerror = (error) => console.error('[MCP Error]', error); 98 | process.on('SIGINT', async () => { 99 | await this.cleanup(); 100 | process.exit(0); 101 | }); 102 | } 103 | 104 | /** 105 | * Clean up resources when shutting down 106 | */ 107 | private async cleanup() { 108 | if (this.watcher) { 109 | await this.watcher.close(); 110 | } 111 | await this.server.close(); 112 | } 113 | 114 | /** 115 | * Set up file system watcher for config changes 116 | */ 117 | private watchConfigFile() { 118 | this.watcher = chokidar.watch(this.configPath, { 119 | persistent: true, 120 | ignoreInitial: true, 121 | }); 122 | 123 | this.watcher.on('change', (filePath: string) => { 124 | console.error(`[MCP Modes] Config file changed: ${filePath}`); 125 | }); 126 | } 127 | 128 | /** 129 | * Read and parse the modes configuration file 130 | * @throws {McpError} If file read or parse fails 131 | */ 132 | private async readConfig() { 133 | try { 134 | // Create default config if file doesn't exist 135 | if (!fs.existsSync(this.configPath)) { 136 | await fs.writeFile(this.configPath, JSON.stringify({ customModes: [] }, null, 2), 'utf-8'); 137 | } 138 | 139 | const content = await fs.readFile(this.configPath, 'utf-8'); 140 | const config = JSON.parse(content); 141 | return CustomModesConfigSchema.parse(config); 142 | } catch (error) { 143 | throw new McpError( 144 | ErrorCode.InternalError, 145 | `Failed to read config: ${error instanceof Error ? error.message : String(error)}` 146 | ); 147 | } 148 | } 149 | 150 | /** 151 | * Write configuration to file atomically 152 | * @param config The configuration to write 153 | * @throws {McpError} If write fails 154 | */ 155 | private async writeConfig(config: z.infer) { 156 | try { 157 | await fs.writeFile( 158 | this.configPath, 159 | JSON.stringify(config, null, 2), 160 | 'utf-8' 161 | ); 162 | } catch (error) { 163 | throw new McpError( 164 | ErrorCode.InternalError, 165 | `Failed to write config: ${error instanceof Error ? error.message : String(error)}` 166 | ); 167 | } 168 | } 169 | 170 | /** 171 | * Set up MCP tool handlers for mode management operations 172 | */ 173 | private setupToolHandlers() { 174 | this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ 175 | tools: [ 176 | { 177 | name: 'list_modes', 178 | description: 'List all custom modes', 179 | inputSchema: { 180 | type: 'object', 181 | properties: {}, 182 | }, 183 | }, 184 | { 185 | name: 'get_mode', 186 | description: 'Get details of a specific mode', 187 | inputSchema: { 188 | type: 'object', 189 | properties: { 190 | slug: { 191 | type: 'string', 192 | description: 'Slug of the mode to retrieve', 193 | }, 194 | }, 195 | required: ['slug'], 196 | }, 197 | }, 198 | { 199 | name: 'create_mode', 200 | description: 'Create a new custom mode', 201 | inputSchema: { 202 | type: 'object', 203 | properties: { 204 | slug: { 205 | type: 'string', 206 | description: 'Unique slug for the mode (lowercase letters, numbers, and hyphens)', 207 | }, 208 | name: { 209 | type: 'string', 210 | description: 'Display name for the mode', 211 | }, 212 | roleDefinition: { 213 | type: 'string', 214 | description: 'Detailed description of the mode\'s role and capabilities', 215 | }, 216 | groups: { 217 | type: 'array', 218 | items: { 219 | oneOf: [ 220 | { type: 'string' }, 221 | { 222 | type: 'array', 223 | items: [ 224 | { type: 'string' }, 225 | { 226 | type: 'object', 227 | properties: { 228 | fileRegex: { type: 'string' }, 229 | description: { type: 'string' }, 230 | }, 231 | required: ['fileRegex', 'description'], 232 | }, 233 | ], 234 | }, 235 | ], 236 | }, 237 | description: 'Array of allowed tool groups', 238 | }, 239 | customInstructions: { 240 | type: 'string', 241 | description: 'Optional additional instructions for the mode', 242 | }, 243 | }, 244 | required: ['slug', 'name', 'roleDefinition', 'groups'], 245 | }, 246 | }, 247 | { 248 | name: 'update_mode', 249 | description: 'Update an existing custom mode', 250 | inputSchema: { 251 | type: 'object', 252 | properties: { 253 | slug: { 254 | type: 'string', 255 | description: 'Slug of the mode to update', 256 | }, 257 | updates: { 258 | type: 'object', 259 | properties: { 260 | name: { type: 'string' }, 261 | roleDefinition: { type: 'string' }, 262 | groups: { 263 | type: 'array', 264 | items: { 265 | oneOf: [ 266 | { type: 'string' }, 267 | { 268 | type: 'array', 269 | items: [ 270 | { type: 'string' }, 271 | { 272 | type: 'object', 273 | properties: { 274 | fileRegex: { type: 'string' }, 275 | description: { type: 'string' }, 276 | }, 277 | required: ['fileRegex', 'description'], 278 | }, 279 | ], 280 | }, 281 | ], 282 | }, 283 | }, 284 | customInstructions: { type: 'string' }, 285 | }, 286 | }, 287 | }, 288 | required: ['slug', 'updates'], 289 | }, 290 | }, 291 | { 292 | name: 'delete_mode', 293 | description: 'Delete a custom mode', 294 | inputSchema: { 295 | type: 'object', 296 | properties: { 297 | slug: { 298 | type: 'string', 299 | description: 'Slug of the mode to delete', 300 | }, 301 | }, 302 | required: ['slug'], 303 | }, 304 | }, 305 | { 306 | name: 'validate_mode', 307 | description: 'Validate a mode configuration without saving it', 308 | inputSchema: { 309 | type: 'object', 310 | properties: { 311 | mode: { 312 | type: 'object', 313 | properties: { 314 | slug: { type: 'string' }, 315 | name: { type: 'string' }, 316 | roleDefinition: { type: 'string' }, 317 | groups: { type: 'array' }, 318 | customInstructions: { type: 'string' }, 319 | }, 320 | required: ['slug', 'name', 'roleDefinition', 'groups'], 321 | }, 322 | }, 323 | required: ['mode'], 324 | }, 325 | }, 326 | ], 327 | })); 328 | 329 | this.server.setRequestHandler(CallToolRequestSchema, async (request) => { 330 | switch (request.params.name) { 331 | case 'list_modes': { 332 | const config = await this.readConfig(); 333 | return { 334 | content: [ 335 | { 336 | type: 'text', 337 | text: JSON.stringify(config.customModes, null, 2), 338 | }, 339 | ], 340 | }; 341 | } 342 | 343 | case 'get_mode': { 344 | const { slug } = request.params.arguments as { slug: string }; 345 | const config = await this.readConfig(); 346 | const mode = config.customModes.find((m) => m.slug === slug); 347 | 348 | if (!mode) { 349 | throw new McpError(ErrorCode.InvalidParams, `Mode not found: ${slug}`); 350 | } 351 | 352 | return { 353 | content: [ 354 | { 355 | type: 'text', 356 | text: JSON.stringify(mode, null, 2), 357 | }, 358 | ], 359 | }; 360 | } 361 | 362 | case 'create_mode': { 363 | const mode = request.params.arguments as z.infer; 364 | const config = await this.readConfig(); 365 | 366 | if (config.customModes.some((m) => m.slug === mode.slug)) { 367 | throw new McpError( 368 | ErrorCode.InvalidParams, 369 | `Mode with slug "${mode.slug}" already exists` 370 | ); 371 | } 372 | 373 | try { 374 | CustomModeSchema.parse(mode); 375 | } catch (error) { 376 | throw new McpError( 377 | ErrorCode.InvalidParams, 378 | `Invalid mode configuration: ${error instanceof Error ? error.message : String(error)}` 379 | ); 380 | } 381 | 382 | config.customModes.push(mode); 383 | await this.writeConfig(config); 384 | 385 | return { 386 | content: [ 387 | { 388 | type: 'text', 389 | text: `Mode "${mode.name}" created successfully`, 390 | }, 391 | ], 392 | }; 393 | } 394 | 395 | case 'update_mode': { 396 | const { slug, updates } = request.params.arguments as { 397 | slug: string; 398 | updates: Partial>; 399 | }; 400 | 401 | const config = await this.readConfig(); 402 | const index = config.customModes.findIndex((m) => m.slug === slug); 403 | 404 | if (index === -1) { 405 | throw new McpError(ErrorCode.InvalidParams, `Mode not found: ${slug}`); 406 | } 407 | 408 | const updatedMode = { 409 | ...config.customModes[index], 410 | ...updates, 411 | }; 412 | 413 | try { 414 | CustomModeSchema.parse(updatedMode); 415 | } catch (error) { 416 | throw new McpError( 417 | ErrorCode.InvalidParams, 418 | `Invalid mode configuration: ${error instanceof Error ? error.message : String(error)}` 419 | ); 420 | } 421 | 422 | config.customModes[index] = updatedMode; 423 | await this.writeConfig(config); 424 | 425 | return { 426 | content: [ 427 | { 428 | type: 'text', 429 | text: `Mode "${updatedMode.name}" updated successfully`, 430 | }, 431 | ], 432 | }; 433 | } 434 | 435 | case 'delete_mode': { 436 | const { slug } = request.params.arguments as { slug: string }; 437 | const config = await this.readConfig(); 438 | const index = config.customModes.findIndex((m) => m.slug === slug); 439 | 440 | if (index === -1) { 441 | throw new McpError(ErrorCode.InvalidParams, `Mode not found: ${slug}`); 442 | } 443 | 444 | config.customModes.splice(index, 1); 445 | await this.writeConfig(config); 446 | 447 | return { 448 | content: [ 449 | { 450 | type: 'text', 451 | text: `Mode "${slug}" deleted successfully`, 452 | }, 453 | ], 454 | }; 455 | } 456 | 457 | case 'validate_mode': { 458 | const { mode } = request.params.arguments as { 459 | mode: z.infer; 460 | }; 461 | 462 | try { 463 | CustomModeSchema.parse(mode); 464 | return { 465 | content: [ 466 | { 467 | type: 'text', 468 | text: 'Mode configuration is valid', 469 | }, 470 | ], 471 | }; 472 | } catch (error) { 473 | return { 474 | content: [ 475 | { 476 | type: 'text', 477 | text: `Invalid mode configuration: ${error instanceof Error ? error.message : String(error)}`, 478 | }, 479 | ], 480 | isError: true, 481 | }; 482 | } 483 | } 484 | 485 | default: 486 | throw new McpError( 487 | ErrorCode.MethodNotFound, 488 | `Unknown tool: ${request.params.name}` 489 | ); 490 | } 491 | }); 492 | } 493 | 494 | /** 495 | * Start the MCP server 496 | */ 497 | async run() { 498 | const transport = new StdioServerTransport(); 499 | await this.server.connect(transport); 500 | console.error('Modes MCP server running on stdio'); 501 | } 502 | } 503 | 504 | const server = new ModesServer(); 505 | server.run().catch(console.error); -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "module": "ES2020", 5 | "moduleResolution": "node", 6 | "esModuleInterop": true, 7 | "strict": true, 8 | "outDir": "build", 9 | "rootDir": "src", 10 | "declaration": true, 11 | "sourceMap": true 12 | }, 13 | "include": ["src/**/*"], 14 | "exclude": ["node_modules", "build"] 15 | } --------------------------------------------------------------------------------