├── .github └── workflows │ └── mini-coder-auto-pr.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── mini-coder ├── jest.config.cjs ├── package-lock.json ├── package.json ├── src ├── cli.ts ├── client-manager.ts ├── config.ts └── types.ts └── tsconfig.json /.github/workflows/mini-coder-auto-pr.yml: -------------------------------------------------------------------------------- 1 | name: mini-coder-auto-pr 2 | on: 3 | issues: 4 | types: [opened, edited] 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Check out code 10 | uses: actions/checkout@v3 11 | 12 | - name: Set up Node 13 | uses: actions/setup-node@v3 14 | with: 15 | node-version: 18 16 | 17 | - uses: actions/create-github-app-token@v1 18 | id: app-token 19 | with: 20 | app-id: ${{ secrets.APP_ID }} 21 | private-key: ${{ secrets.PRIVATE_KEY }} 22 | 23 | - name: Install dependencies 24 | run: | 25 | npm ci 26 | npm run build 27 | 28 | - name: Run mini-coder 29 | env: 30 | ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} 31 | GITHUB_PERSONAL_ACCESS_TOKEN: ${{ steps.app-token.outputs.token }} 32 | run: | 33 | node dist/cli.js -i "${{ github.event.issue.title }}: ${{ github.event.issue.body }}" -e README.md -p ./ 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # vitepress build output 108 | **/.vitepress/dist 109 | 110 | # vitepress cache directory 111 | **/.vitepress/cache 112 | 113 | # Docusaurus cache and generated files 114 | .docusaurus 115 | 116 | # Serverless directories 117 | .serverless/ 118 | 119 | # FuseBox cache 120 | .fusebox/ 121 | 122 | # DynamoDB Local files 123 | .dynamodb/ 124 | 125 | # TernJS port file 126 | .tern-port 127 | 128 | # Stores VSCode versions used for testing VSCode extensions 129 | .vscode-test 130 | 131 | # yarn v2 132 | .yarn/cache 133 | .yarn/unplugged 134 | .yarn/build-state.yml 135 | .yarn/install-state.gz 136 | .pnp.* 137 | 138 | task.txt 139 | .docs-llm/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 laiso 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mini Coder CLI 2 | 3 | A CLI tool powered by Claude 3 that helps with coding tasks. 4 | 5 | ## Prerequisites 6 | 7 | - Node.js 18 or higher 8 | - An Anthropic API key 9 | 10 | ## Installation 11 | 12 | 1. Clone this repository 13 | 2. Install dependencies: 14 | ```bash 15 | npm install 16 | ``` 17 | 3. Set up your Anthropic API key: 18 | ```bash 19 | export ANTHROPIC_API_KEY=your-api-key 20 | ``` 21 | 22 | ## Usage 23 | 24 | Run the CLI with: 25 | 26 | ```bash 27 | npm run build 28 | node dist/cli.js [options] 29 | ``` 30 | 31 | ### Options 32 | 33 | - `-p, --path `: Project root directory path (default: current working directory) 34 | - `-i, --instruction `: Path to instruction file 35 | - `-e, --entry `: Entry point file path 36 | 37 | ### Example 38 | 39 | 1. Create an instruction file `task.txt`: 40 | ```txt 41 | Please refactor the User class in src/models/user.ts to use TypeScript interfaces 42 | ``` 43 | 44 | 2. Run the CLI: 45 | ```bash 46 | npm run build 47 | node dist/cli.js -p ./my-project -i task.txt -e src/models/user.ts 48 | # or 49 | ./bin/mini-coder 50 | ``` 51 | 52 | ### Options 53 | 54 | - `-p, --path ` - Specify project root directory path (default: current working directory) 55 | - `-i, --instruction ` - Path to instruction file (required) 56 | - `-e, --entry ` - Entry point file path (optional) 57 | 58 | ### Examples 59 | 60 | ```sh 61 | # Run with instruction file using current directory 62 | mini-coder -i instruction.txt 63 | 64 | # Run with custom project directory 65 | mini-coder -p /path/to/project -i instruction.txt 66 | 67 | # Run with entry point file 68 | mini-coder -p /path/to/project -i instruction.txt -e src/index.ts 69 | ``` 70 | 71 | ### Validation 72 | 73 | The CLI performs these validations: 74 | 75 | - Verifies the project directory exists and is a valid directory 76 | - If provided, verifies the entry point file exists 77 | - Checks that the instruction file can be read 78 | 79 | ### Configuration 80 | 81 | The tool automatically configures an MCP filesystem server pointing to the specified project directory for file access. 82 | 83 | If any validation fails, the program will exit with an error message explaining the issue. 84 | 85 | ## Testing 86 | 87 | ### Step 1: Create an Issue 88 | 1. Open the GitHub issue create page: [New Issue](https://github.com/laiso/mini-coder/issues/new) 89 | 2. Add the following details in the issue body to report the design: 90 | 91 | ### Step 2: Implement the Design 92 | 1. Once the issue is created, start working on the design implementation. 93 | 2. Reference the issue number in the commit messages to link the implementation with the issue. 94 | 95 | Make sure to review and merge the design implementation into the main branch and close the issue once the implementation is merged. -------------------------------------------------------------------------------- /bin/mini-coder: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import '../dist/cli.js'; -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'ts-jest', 3 | testEnvironment: 'node', 4 | testMatch: ['**/__tests__/**/*.ts?(x)', '**/?(*.)+(spec|test).ts?(x)'], 5 | }; 6 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mini-coder", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "mini-coder", 9 | "version": "0.1.0", 10 | "license": "MIT", 11 | "dependencies": { 12 | "@anthropic-ai/sdk": "latest", 13 | "@modelcontextprotocol/sdk": "latest", 14 | "@modelcontextprotocol/server-filesystem": "^0.6.2", 15 | "commander": "latest" 16 | }, 17 | "bin": { 18 | "mini-coder": "dist/cli.js" 19 | }, 20 | "devDependencies": { 21 | "@types/jest": "^29.5.14", 22 | "@types/node": "^22.10.5", 23 | "jest": "^29.7.0", 24 | "ts-jest": "^29.2.5", 25 | "tsx": "latest", 26 | "typescript": "^5.7.3" 27 | } 28 | }, 29 | "node_modules/@ampproject/remapping": { 30 | "version": "2.3.0", 31 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 32 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 33 | "dev": true, 34 | "license": "Apache-2.0", 35 | "dependencies": { 36 | "@jridgewell/gen-mapping": "^0.3.5", 37 | "@jridgewell/trace-mapping": "^0.3.24" 38 | }, 39 | "engines": { 40 | "node": ">=6.0.0" 41 | } 42 | }, 43 | "node_modules/@anthropic-ai/sdk": { 44 | "version": "0.33.1", 45 | "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.33.1.tgz", 46 | "integrity": "sha512-VrlbxiAdVRGuKP2UQlCnsShDHJKWepzvfRCkZMpU+oaUdKLpOfmylLMRojGrAgebV+kDtPjewCVP0laHXg+vsA==", 47 | "license": "MIT", 48 | "dependencies": { 49 | "@types/node": "^18.11.18", 50 | "@types/node-fetch": "^2.6.4", 51 | "abort-controller": "^3.0.0", 52 | "agentkeepalive": "^4.2.1", 53 | "form-data-encoder": "1.7.2", 54 | "formdata-node": "^4.3.2", 55 | "node-fetch": "^2.6.7" 56 | } 57 | }, 58 | "node_modules/@anthropic-ai/sdk/node_modules/@types/node": { 59 | "version": "18.19.70", 60 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.70.tgz", 61 | "integrity": "sha512-RE+K0+KZoEpDUbGGctnGdkrLFwi1eYKTlIHNl2Um98mUkGsm1u2Ff6Ltd0e8DktTtC98uy7rSj+hO8t/QuLoVQ==", 62 | "license": "MIT", 63 | "dependencies": { 64 | "undici-types": "~5.26.4" 65 | } 66 | }, 67 | "node_modules/@babel/code-frame": { 68 | "version": "7.26.2", 69 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", 70 | "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", 71 | "dev": true, 72 | "license": "MIT", 73 | "dependencies": { 74 | "@babel/helper-validator-identifier": "^7.25.9", 75 | "js-tokens": "^4.0.0", 76 | "picocolors": "^1.0.0" 77 | }, 78 | "engines": { 79 | "node": ">=6.9.0" 80 | } 81 | }, 82 | "node_modules/@babel/compat-data": { 83 | "version": "7.26.5", 84 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz", 85 | "integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==", 86 | "dev": true, 87 | "license": "MIT", 88 | "engines": { 89 | "node": ">=6.9.0" 90 | } 91 | }, 92 | "node_modules/@babel/core": { 93 | "version": "7.26.0", 94 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", 95 | "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", 96 | "dev": true, 97 | "license": "MIT", 98 | "dependencies": { 99 | "@ampproject/remapping": "^2.2.0", 100 | "@babel/code-frame": "^7.26.0", 101 | "@babel/generator": "^7.26.0", 102 | "@babel/helper-compilation-targets": "^7.25.9", 103 | "@babel/helper-module-transforms": "^7.26.0", 104 | "@babel/helpers": "^7.26.0", 105 | "@babel/parser": "^7.26.0", 106 | "@babel/template": "^7.25.9", 107 | "@babel/traverse": "^7.25.9", 108 | "@babel/types": "^7.26.0", 109 | "convert-source-map": "^2.0.0", 110 | "debug": "^4.1.0", 111 | "gensync": "^1.0.0-beta.2", 112 | "json5": "^2.2.3", 113 | "semver": "^6.3.1" 114 | }, 115 | "engines": { 116 | "node": ">=6.9.0" 117 | }, 118 | "funding": { 119 | "type": "opencollective", 120 | "url": "https://opencollective.com/babel" 121 | } 122 | }, 123 | "node_modules/@babel/generator": { 124 | "version": "7.26.5", 125 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz", 126 | "integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==", 127 | "dev": true, 128 | "license": "MIT", 129 | "dependencies": { 130 | "@babel/parser": "^7.26.5", 131 | "@babel/types": "^7.26.5", 132 | "@jridgewell/gen-mapping": "^0.3.5", 133 | "@jridgewell/trace-mapping": "^0.3.25", 134 | "jsesc": "^3.0.2" 135 | }, 136 | "engines": { 137 | "node": ">=6.9.0" 138 | } 139 | }, 140 | "node_modules/@babel/helper-compilation-targets": { 141 | "version": "7.26.5", 142 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", 143 | "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", 144 | "dev": true, 145 | "license": "MIT", 146 | "dependencies": { 147 | "@babel/compat-data": "^7.26.5", 148 | "@babel/helper-validator-option": "^7.25.9", 149 | "browserslist": "^4.24.0", 150 | "lru-cache": "^5.1.1", 151 | "semver": "^6.3.1" 152 | }, 153 | "engines": { 154 | "node": ">=6.9.0" 155 | } 156 | }, 157 | "node_modules/@babel/helper-module-imports": { 158 | "version": "7.25.9", 159 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", 160 | "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", 161 | "dev": true, 162 | "license": "MIT", 163 | "dependencies": { 164 | "@babel/traverse": "^7.25.9", 165 | "@babel/types": "^7.25.9" 166 | }, 167 | "engines": { 168 | "node": ">=6.9.0" 169 | } 170 | }, 171 | "node_modules/@babel/helper-module-transforms": { 172 | "version": "7.26.0", 173 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", 174 | "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", 175 | "dev": true, 176 | "license": "MIT", 177 | "dependencies": { 178 | "@babel/helper-module-imports": "^7.25.9", 179 | "@babel/helper-validator-identifier": "^7.25.9", 180 | "@babel/traverse": "^7.25.9" 181 | }, 182 | "engines": { 183 | "node": ">=6.9.0" 184 | }, 185 | "peerDependencies": { 186 | "@babel/core": "^7.0.0" 187 | } 188 | }, 189 | "node_modules/@babel/helper-plugin-utils": { 190 | "version": "7.26.5", 191 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", 192 | "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", 193 | "dev": true, 194 | "license": "MIT", 195 | "engines": { 196 | "node": ">=6.9.0" 197 | } 198 | }, 199 | "node_modules/@babel/helper-string-parser": { 200 | "version": "7.25.9", 201 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 202 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 203 | "dev": true, 204 | "license": "MIT", 205 | "engines": { 206 | "node": ">=6.9.0" 207 | } 208 | }, 209 | "node_modules/@babel/helper-validator-identifier": { 210 | "version": "7.25.9", 211 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 212 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 213 | "dev": true, 214 | "license": "MIT", 215 | "engines": { 216 | "node": ">=6.9.0" 217 | } 218 | }, 219 | "node_modules/@babel/helper-validator-option": { 220 | "version": "7.25.9", 221 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", 222 | "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", 223 | "dev": true, 224 | "license": "MIT", 225 | "engines": { 226 | "node": ">=6.9.0" 227 | } 228 | }, 229 | "node_modules/@babel/helpers": { 230 | "version": "7.26.0", 231 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", 232 | "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", 233 | "dev": true, 234 | "license": "MIT", 235 | "dependencies": { 236 | "@babel/template": "^7.25.9", 237 | "@babel/types": "^7.26.0" 238 | }, 239 | "engines": { 240 | "node": ">=6.9.0" 241 | } 242 | }, 243 | "node_modules/@babel/parser": { 244 | "version": "7.26.5", 245 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.5.tgz", 246 | "integrity": "sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==", 247 | "dev": true, 248 | "license": "MIT", 249 | "dependencies": { 250 | "@babel/types": "^7.26.5" 251 | }, 252 | "bin": { 253 | "parser": "bin/babel-parser.js" 254 | }, 255 | "engines": { 256 | "node": ">=6.0.0" 257 | } 258 | }, 259 | "node_modules/@babel/plugin-syntax-async-generators": { 260 | "version": "7.8.4", 261 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 262 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 263 | "dev": true, 264 | "license": "MIT", 265 | "dependencies": { 266 | "@babel/helper-plugin-utils": "^7.8.0" 267 | }, 268 | "peerDependencies": { 269 | "@babel/core": "^7.0.0-0" 270 | } 271 | }, 272 | "node_modules/@babel/plugin-syntax-bigint": { 273 | "version": "7.8.3", 274 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", 275 | "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", 276 | "dev": true, 277 | "license": "MIT", 278 | "dependencies": { 279 | "@babel/helper-plugin-utils": "^7.8.0" 280 | }, 281 | "peerDependencies": { 282 | "@babel/core": "^7.0.0-0" 283 | } 284 | }, 285 | "node_modules/@babel/plugin-syntax-class-properties": { 286 | "version": "7.12.13", 287 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", 288 | "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", 289 | "dev": true, 290 | "license": "MIT", 291 | "dependencies": { 292 | "@babel/helper-plugin-utils": "^7.12.13" 293 | }, 294 | "peerDependencies": { 295 | "@babel/core": "^7.0.0-0" 296 | } 297 | }, 298 | "node_modules/@babel/plugin-syntax-class-static-block": { 299 | "version": "7.14.5", 300 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", 301 | "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", 302 | "dev": true, 303 | "license": "MIT", 304 | "dependencies": { 305 | "@babel/helper-plugin-utils": "^7.14.5" 306 | }, 307 | "engines": { 308 | "node": ">=6.9.0" 309 | }, 310 | "peerDependencies": { 311 | "@babel/core": "^7.0.0-0" 312 | } 313 | }, 314 | "node_modules/@babel/plugin-syntax-import-attributes": { 315 | "version": "7.26.0", 316 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", 317 | "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", 318 | "dev": true, 319 | "license": "MIT", 320 | "dependencies": { 321 | "@babel/helper-plugin-utils": "^7.25.9" 322 | }, 323 | "engines": { 324 | "node": ">=6.9.0" 325 | }, 326 | "peerDependencies": { 327 | "@babel/core": "^7.0.0-0" 328 | } 329 | }, 330 | "node_modules/@babel/plugin-syntax-import-meta": { 331 | "version": "7.10.4", 332 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", 333 | "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", 334 | "dev": true, 335 | "license": "MIT", 336 | "dependencies": { 337 | "@babel/helper-plugin-utils": "^7.10.4" 338 | }, 339 | "peerDependencies": { 340 | "@babel/core": "^7.0.0-0" 341 | } 342 | }, 343 | "node_modules/@babel/plugin-syntax-json-strings": { 344 | "version": "7.8.3", 345 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 346 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 347 | "dev": true, 348 | "license": "MIT", 349 | "dependencies": { 350 | "@babel/helper-plugin-utils": "^7.8.0" 351 | }, 352 | "peerDependencies": { 353 | "@babel/core": "^7.0.0-0" 354 | } 355 | }, 356 | "node_modules/@babel/plugin-syntax-jsx": { 357 | "version": "7.25.9", 358 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", 359 | "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", 360 | "dev": true, 361 | "license": "MIT", 362 | "dependencies": { 363 | "@babel/helper-plugin-utils": "^7.25.9" 364 | }, 365 | "engines": { 366 | "node": ">=6.9.0" 367 | }, 368 | "peerDependencies": { 369 | "@babel/core": "^7.0.0-0" 370 | } 371 | }, 372 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 373 | "version": "7.10.4", 374 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 375 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 376 | "dev": true, 377 | "license": "MIT", 378 | "dependencies": { 379 | "@babel/helper-plugin-utils": "^7.10.4" 380 | }, 381 | "peerDependencies": { 382 | "@babel/core": "^7.0.0-0" 383 | } 384 | }, 385 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 386 | "version": "7.8.3", 387 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 388 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 389 | "dev": true, 390 | "license": "MIT", 391 | "dependencies": { 392 | "@babel/helper-plugin-utils": "^7.8.0" 393 | }, 394 | "peerDependencies": { 395 | "@babel/core": "^7.0.0-0" 396 | } 397 | }, 398 | "node_modules/@babel/plugin-syntax-numeric-separator": { 399 | "version": "7.10.4", 400 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 401 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 402 | "dev": true, 403 | "license": "MIT", 404 | "dependencies": { 405 | "@babel/helper-plugin-utils": "^7.10.4" 406 | }, 407 | "peerDependencies": { 408 | "@babel/core": "^7.0.0-0" 409 | } 410 | }, 411 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 412 | "version": "7.8.3", 413 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 414 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 415 | "dev": true, 416 | "license": "MIT", 417 | "dependencies": { 418 | "@babel/helper-plugin-utils": "^7.8.0" 419 | }, 420 | "peerDependencies": { 421 | "@babel/core": "^7.0.0-0" 422 | } 423 | }, 424 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 425 | "version": "7.8.3", 426 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 427 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 428 | "dev": true, 429 | "license": "MIT", 430 | "dependencies": { 431 | "@babel/helper-plugin-utils": "^7.8.0" 432 | }, 433 | "peerDependencies": { 434 | "@babel/core": "^7.0.0-0" 435 | } 436 | }, 437 | "node_modules/@babel/plugin-syntax-optional-chaining": { 438 | "version": "7.8.3", 439 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 440 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 441 | "dev": true, 442 | "license": "MIT", 443 | "dependencies": { 444 | "@babel/helper-plugin-utils": "^7.8.0" 445 | }, 446 | "peerDependencies": { 447 | "@babel/core": "^7.0.0-0" 448 | } 449 | }, 450 | "node_modules/@babel/plugin-syntax-private-property-in-object": { 451 | "version": "7.14.5", 452 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", 453 | "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", 454 | "dev": true, 455 | "license": "MIT", 456 | "dependencies": { 457 | "@babel/helper-plugin-utils": "^7.14.5" 458 | }, 459 | "engines": { 460 | "node": ">=6.9.0" 461 | }, 462 | "peerDependencies": { 463 | "@babel/core": "^7.0.0-0" 464 | } 465 | }, 466 | "node_modules/@babel/plugin-syntax-top-level-await": { 467 | "version": "7.14.5", 468 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", 469 | "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", 470 | "dev": true, 471 | "license": "MIT", 472 | "dependencies": { 473 | "@babel/helper-plugin-utils": "^7.14.5" 474 | }, 475 | "engines": { 476 | "node": ">=6.9.0" 477 | }, 478 | "peerDependencies": { 479 | "@babel/core": "^7.0.0-0" 480 | } 481 | }, 482 | "node_modules/@babel/plugin-syntax-typescript": { 483 | "version": "7.25.9", 484 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", 485 | "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", 486 | "dev": true, 487 | "license": "MIT", 488 | "dependencies": { 489 | "@babel/helper-plugin-utils": "^7.25.9" 490 | }, 491 | "engines": { 492 | "node": ">=6.9.0" 493 | }, 494 | "peerDependencies": { 495 | "@babel/core": "^7.0.0-0" 496 | } 497 | }, 498 | "node_modules/@babel/template": { 499 | "version": "7.25.9", 500 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", 501 | "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", 502 | "dev": true, 503 | "license": "MIT", 504 | "dependencies": { 505 | "@babel/code-frame": "^7.25.9", 506 | "@babel/parser": "^7.25.9", 507 | "@babel/types": "^7.25.9" 508 | }, 509 | "engines": { 510 | "node": ">=6.9.0" 511 | } 512 | }, 513 | "node_modules/@babel/traverse": { 514 | "version": "7.26.5", 515 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.5.tgz", 516 | "integrity": "sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==", 517 | "dev": true, 518 | "license": "MIT", 519 | "dependencies": { 520 | "@babel/code-frame": "^7.26.2", 521 | "@babel/generator": "^7.26.5", 522 | "@babel/parser": "^7.26.5", 523 | "@babel/template": "^7.25.9", 524 | "@babel/types": "^7.26.5", 525 | "debug": "^4.3.1", 526 | "globals": "^11.1.0" 527 | }, 528 | "engines": { 529 | "node": ">=6.9.0" 530 | } 531 | }, 532 | "node_modules/@babel/types": { 533 | "version": "7.26.5", 534 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.5.tgz", 535 | "integrity": "sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==", 536 | "dev": true, 537 | "license": "MIT", 538 | "dependencies": { 539 | "@babel/helper-string-parser": "^7.25.9", 540 | "@babel/helper-validator-identifier": "^7.25.9" 541 | }, 542 | "engines": { 543 | "node": ">=6.9.0" 544 | } 545 | }, 546 | "node_modules/@bcoe/v8-coverage": { 547 | "version": "0.2.3", 548 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", 549 | "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", 550 | "dev": true, 551 | "license": "MIT" 552 | }, 553 | "node_modules/@esbuild/aix-ppc64": { 554 | "version": "0.23.1", 555 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz", 556 | "integrity": "sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==", 557 | "cpu": [ 558 | "ppc64" 559 | ], 560 | "dev": true, 561 | "license": "MIT", 562 | "optional": true, 563 | "os": [ 564 | "aix" 565 | ], 566 | "engines": { 567 | "node": ">=18" 568 | } 569 | }, 570 | "node_modules/@esbuild/android-arm": { 571 | "version": "0.23.1", 572 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.1.tgz", 573 | "integrity": "sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==", 574 | "cpu": [ 575 | "arm" 576 | ], 577 | "dev": true, 578 | "license": "MIT", 579 | "optional": true, 580 | "os": [ 581 | "android" 582 | ], 583 | "engines": { 584 | "node": ">=18" 585 | } 586 | }, 587 | "node_modules/@esbuild/android-arm64": { 588 | "version": "0.23.1", 589 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz", 590 | "integrity": "sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==", 591 | "cpu": [ 592 | "arm64" 593 | ], 594 | "dev": true, 595 | "license": "MIT", 596 | "optional": true, 597 | "os": [ 598 | "android" 599 | ], 600 | "engines": { 601 | "node": ">=18" 602 | } 603 | }, 604 | "node_modules/@esbuild/android-x64": { 605 | "version": "0.23.1", 606 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.1.tgz", 607 | "integrity": "sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==", 608 | "cpu": [ 609 | "x64" 610 | ], 611 | "dev": true, 612 | "license": "MIT", 613 | "optional": true, 614 | "os": [ 615 | "android" 616 | ], 617 | "engines": { 618 | "node": ">=18" 619 | } 620 | }, 621 | "node_modules/@esbuild/darwin-arm64": { 622 | "version": "0.23.1", 623 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz", 624 | "integrity": "sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==", 625 | "cpu": [ 626 | "arm64" 627 | ], 628 | "dev": true, 629 | "license": "MIT", 630 | "optional": true, 631 | "os": [ 632 | "darwin" 633 | ], 634 | "engines": { 635 | "node": ">=18" 636 | } 637 | }, 638 | "node_modules/@esbuild/darwin-x64": { 639 | "version": "0.23.1", 640 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz", 641 | "integrity": "sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==", 642 | "cpu": [ 643 | "x64" 644 | ], 645 | "dev": true, 646 | "license": "MIT", 647 | "optional": true, 648 | "os": [ 649 | "darwin" 650 | ], 651 | "engines": { 652 | "node": ">=18" 653 | } 654 | }, 655 | "node_modules/@esbuild/freebsd-arm64": { 656 | "version": "0.23.1", 657 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz", 658 | "integrity": "sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==", 659 | "cpu": [ 660 | "arm64" 661 | ], 662 | "dev": true, 663 | "license": "MIT", 664 | "optional": true, 665 | "os": [ 666 | "freebsd" 667 | ], 668 | "engines": { 669 | "node": ">=18" 670 | } 671 | }, 672 | "node_modules/@esbuild/freebsd-x64": { 673 | "version": "0.23.1", 674 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz", 675 | "integrity": "sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==", 676 | "cpu": [ 677 | "x64" 678 | ], 679 | "dev": true, 680 | "license": "MIT", 681 | "optional": true, 682 | "os": [ 683 | "freebsd" 684 | ], 685 | "engines": { 686 | "node": ">=18" 687 | } 688 | }, 689 | "node_modules/@esbuild/linux-arm": { 690 | "version": "0.23.1", 691 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz", 692 | "integrity": "sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==", 693 | "cpu": [ 694 | "arm" 695 | ], 696 | "dev": true, 697 | "license": "MIT", 698 | "optional": true, 699 | "os": [ 700 | "linux" 701 | ], 702 | "engines": { 703 | "node": ">=18" 704 | } 705 | }, 706 | "node_modules/@esbuild/linux-arm64": { 707 | "version": "0.23.1", 708 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz", 709 | "integrity": "sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==", 710 | "cpu": [ 711 | "arm64" 712 | ], 713 | "dev": true, 714 | "license": "MIT", 715 | "optional": true, 716 | "os": [ 717 | "linux" 718 | ], 719 | "engines": { 720 | "node": ">=18" 721 | } 722 | }, 723 | "node_modules/@esbuild/linux-ia32": { 724 | "version": "0.23.1", 725 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz", 726 | "integrity": "sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==", 727 | "cpu": [ 728 | "ia32" 729 | ], 730 | "dev": true, 731 | "license": "MIT", 732 | "optional": true, 733 | "os": [ 734 | "linux" 735 | ], 736 | "engines": { 737 | "node": ">=18" 738 | } 739 | }, 740 | "node_modules/@esbuild/linux-loong64": { 741 | "version": "0.23.1", 742 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz", 743 | "integrity": "sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==", 744 | "cpu": [ 745 | "loong64" 746 | ], 747 | "dev": true, 748 | "license": "MIT", 749 | "optional": true, 750 | "os": [ 751 | "linux" 752 | ], 753 | "engines": { 754 | "node": ">=18" 755 | } 756 | }, 757 | "node_modules/@esbuild/linux-mips64el": { 758 | "version": "0.23.1", 759 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz", 760 | "integrity": "sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==", 761 | "cpu": [ 762 | "mips64el" 763 | ], 764 | "dev": true, 765 | "license": "MIT", 766 | "optional": true, 767 | "os": [ 768 | "linux" 769 | ], 770 | "engines": { 771 | "node": ">=18" 772 | } 773 | }, 774 | "node_modules/@esbuild/linux-ppc64": { 775 | "version": "0.23.1", 776 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz", 777 | "integrity": "sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==", 778 | "cpu": [ 779 | "ppc64" 780 | ], 781 | "dev": true, 782 | "license": "MIT", 783 | "optional": true, 784 | "os": [ 785 | "linux" 786 | ], 787 | "engines": { 788 | "node": ">=18" 789 | } 790 | }, 791 | "node_modules/@esbuild/linux-riscv64": { 792 | "version": "0.23.1", 793 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz", 794 | "integrity": "sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==", 795 | "cpu": [ 796 | "riscv64" 797 | ], 798 | "dev": true, 799 | "license": "MIT", 800 | "optional": true, 801 | "os": [ 802 | "linux" 803 | ], 804 | "engines": { 805 | "node": ">=18" 806 | } 807 | }, 808 | "node_modules/@esbuild/linux-s390x": { 809 | "version": "0.23.1", 810 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz", 811 | "integrity": "sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==", 812 | "cpu": [ 813 | "s390x" 814 | ], 815 | "dev": true, 816 | "license": "MIT", 817 | "optional": true, 818 | "os": [ 819 | "linux" 820 | ], 821 | "engines": { 822 | "node": ">=18" 823 | } 824 | }, 825 | "node_modules/@esbuild/linux-x64": { 826 | "version": "0.23.1", 827 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz", 828 | "integrity": "sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==", 829 | "cpu": [ 830 | "x64" 831 | ], 832 | "dev": true, 833 | "license": "MIT", 834 | "optional": true, 835 | "os": [ 836 | "linux" 837 | ], 838 | "engines": { 839 | "node": ">=18" 840 | } 841 | }, 842 | "node_modules/@esbuild/netbsd-x64": { 843 | "version": "0.23.1", 844 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz", 845 | "integrity": "sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==", 846 | "cpu": [ 847 | "x64" 848 | ], 849 | "dev": true, 850 | "license": "MIT", 851 | "optional": true, 852 | "os": [ 853 | "netbsd" 854 | ], 855 | "engines": { 856 | "node": ">=18" 857 | } 858 | }, 859 | "node_modules/@esbuild/openbsd-arm64": { 860 | "version": "0.23.1", 861 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz", 862 | "integrity": "sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==", 863 | "cpu": [ 864 | "arm64" 865 | ], 866 | "dev": true, 867 | "license": "MIT", 868 | "optional": true, 869 | "os": [ 870 | "openbsd" 871 | ], 872 | "engines": { 873 | "node": ">=18" 874 | } 875 | }, 876 | "node_modules/@esbuild/openbsd-x64": { 877 | "version": "0.23.1", 878 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz", 879 | "integrity": "sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==", 880 | "cpu": [ 881 | "x64" 882 | ], 883 | "dev": true, 884 | "license": "MIT", 885 | "optional": true, 886 | "os": [ 887 | "openbsd" 888 | ], 889 | "engines": { 890 | "node": ">=18" 891 | } 892 | }, 893 | "node_modules/@esbuild/sunos-x64": { 894 | "version": "0.23.1", 895 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz", 896 | "integrity": "sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==", 897 | "cpu": [ 898 | "x64" 899 | ], 900 | "dev": true, 901 | "license": "MIT", 902 | "optional": true, 903 | "os": [ 904 | "sunos" 905 | ], 906 | "engines": { 907 | "node": ">=18" 908 | } 909 | }, 910 | "node_modules/@esbuild/win32-arm64": { 911 | "version": "0.23.1", 912 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz", 913 | "integrity": "sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==", 914 | "cpu": [ 915 | "arm64" 916 | ], 917 | "dev": true, 918 | "license": "MIT", 919 | "optional": true, 920 | "os": [ 921 | "win32" 922 | ], 923 | "engines": { 924 | "node": ">=18" 925 | } 926 | }, 927 | "node_modules/@esbuild/win32-ia32": { 928 | "version": "0.23.1", 929 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz", 930 | "integrity": "sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==", 931 | "cpu": [ 932 | "ia32" 933 | ], 934 | "dev": true, 935 | "license": "MIT", 936 | "optional": true, 937 | "os": [ 938 | "win32" 939 | ], 940 | "engines": { 941 | "node": ">=18" 942 | } 943 | }, 944 | "node_modules/@esbuild/win32-x64": { 945 | "version": "0.23.1", 946 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz", 947 | "integrity": "sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==", 948 | "cpu": [ 949 | "x64" 950 | ], 951 | "dev": true, 952 | "license": "MIT", 953 | "optional": true, 954 | "os": [ 955 | "win32" 956 | ], 957 | "engines": { 958 | "node": ">=18" 959 | } 960 | }, 961 | "node_modules/@isaacs/cliui": { 962 | "version": "8.0.2", 963 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 964 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 965 | "license": "ISC", 966 | "dependencies": { 967 | "string-width": "^5.1.2", 968 | "string-width-cjs": "npm:string-width@^4.2.0", 969 | "strip-ansi": "^7.0.1", 970 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 971 | "wrap-ansi": "^8.1.0", 972 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 973 | }, 974 | "engines": { 975 | "node": ">=12" 976 | } 977 | }, 978 | "node_modules/@isaacs/cliui/node_modules/ansi-regex": { 979 | "version": "6.1.0", 980 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 981 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 982 | "license": "MIT", 983 | "engines": { 984 | "node": ">=12" 985 | }, 986 | "funding": { 987 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 988 | } 989 | }, 990 | "node_modules/@isaacs/cliui/node_modules/ansi-styles": { 991 | "version": "6.2.1", 992 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 993 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 994 | "license": "MIT", 995 | "engines": { 996 | "node": ">=12" 997 | }, 998 | "funding": { 999 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1000 | } 1001 | }, 1002 | "node_modules/@isaacs/cliui/node_modules/emoji-regex": { 1003 | "version": "9.2.2", 1004 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1005 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1006 | "license": "MIT" 1007 | }, 1008 | "node_modules/@isaacs/cliui/node_modules/string-width": { 1009 | "version": "5.1.2", 1010 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 1011 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 1012 | "license": "MIT", 1013 | "dependencies": { 1014 | "eastasianwidth": "^0.2.0", 1015 | "emoji-regex": "^9.2.2", 1016 | "strip-ansi": "^7.0.1" 1017 | }, 1018 | "engines": { 1019 | "node": ">=12" 1020 | }, 1021 | "funding": { 1022 | "url": "https://github.com/sponsors/sindresorhus" 1023 | } 1024 | }, 1025 | "node_modules/@isaacs/cliui/node_modules/strip-ansi": { 1026 | "version": "7.1.0", 1027 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 1028 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 1029 | "license": "MIT", 1030 | "dependencies": { 1031 | "ansi-regex": "^6.0.1" 1032 | }, 1033 | "engines": { 1034 | "node": ">=12" 1035 | }, 1036 | "funding": { 1037 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 1038 | } 1039 | }, 1040 | "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { 1041 | "version": "8.1.0", 1042 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 1043 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 1044 | "license": "MIT", 1045 | "dependencies": { 1046 | "ansi-styles": "^6.1.0", 1047 | "string-width": "^5.0.1", 1048 | "strip-ansi": "^7.0.1" 1049 | }, 1050 | "engines": { 1051 | "node": ">=12" 1052 | }, 1053 | "funding": { 1054 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 1055 | } 1056 | }, 1057 | "node_modules/@istanbuljs/load-nyc-config": { 1058 | "version": "1.1.0", 1059 | "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", 1060 | "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", 1061 | "dev": true, 1062 | "license": "ISC", 1063 | "dependencies": { 1064 | "camelcase": "^5.3.1", 1065 | "find-up": "^4.1.0", 1066 | "get-package-type": "^0.1.0", 1067 | "js-yaml": "^3.13.1", 1068 | "resolve-from": "^5.0.0" 1069 | }, 1070 | "engines": { 1071 | "node": ">=8" 1072 | } 1073 | }, 1074 | "node_modules/@istanbuljs/schema": { 1075 | "version": "0.1.3", 1076 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 1077 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 1078 | "dev": true, 1079 | "license": "MIT", 1080 | "engines": { 1081 | "node": ">=8" 1082 | } 1083 | }, 1084 | "node_modules/@jest/console": { 1085 | "version": "29.7.0", 1086 | "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", 1087 | "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", 1088 | "dev": true, 1089 | "license": "MIT", 1090 | "dependencies": { 1091 | "@jest/types": "^29.6.3", 1092 | "@types/node": "*", 1093 | "chalk": "^4.0.0", 1094 | "jest-message-util": "^29.7.0", 1095 | "jest-util": "^29.7.0", 1096 | "slash": "^3.0.0" 1097 | }, 1098 | "engines": { 1099 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1100 | } 1101 | }, 1102 | "node_modules/@jest/core": { 1103 | "version": "29.7.0", 1104 | "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", 1105 | "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", 1106 | "dev": true, 1107 | "license": "MIT", 1108 | "dependencies": { 1109 | "@jest/console": "^29.7.0", 1110 | "@jest/reporters": "^29.7.0", 1111 | "@jest/test-result": "^29.7.0", 1112 | "@jest/transform": "^29.7.0", 1113 | "@jest/types": "^29.6.3", 1114 | "@types/node": "*", 1115 | "ansi-escapes": "^4.2.1", 1116 | "chalk": "^4.0.0", 1117 | "ci-info": "^3.2.0", 1118 | "exit": "^0.1.2", 1119 | "graceful-fs": "^4.2.9", 1120 | "jest-changed-files": "^29.7.0", 1121 | "jest-config": "^29.7.0", 1122 | "jest-haste-map": "^29.7.0", 1123 | "jest-message-util": "^29.7.0", 1124 | "jest-regex-util": "^29.6.3", 1125 | "jest-resolve": "^29.7.0", 1126 | "jest-resolve-dependencies": "^29.7.0", 1127 | "jest-runner": "^29.7.0", 1128 | "jest-runtime": "^29.7.0", 1129 | "jest-snapshot": "^29.7.0", 1130 | "jest-util": "^29.7.0", 1131 | "jest-validate": "^29.7.0", 1132 | "jest-watcher": "^29.7.0", 1133 | "micromatch": "^4.0.4", 1134 | "pretty-format": "^29.7.0", 1135 | "slash": "^3.0.0", 1136 | "strip-ansi": "^6.0.0" 1137 | }, 1138 | "engines": { 1139 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1140 | }, 1141 | "peerDependencies": { 1142 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 1143 | }, 1144 | "peerDependenciesMeta": { 1145 | "node-notifier": { 1146 | "optional": true 1147 | } 1148 | } 1149 | }, 1150 | "node_modules/@jest/environment": { 1151 | "version": "29.7.0", 1152 | "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", 1153 | "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", 1154 | "dev": true, 1155 | "license": "MIT", 1156 | "dependencies": { 1157 | "@jest/fake-timers": "^29.7.0", 1158 | "@jest/types": "^29.6.3", 1159 | "@types/node": "*", 1160 | "jest-mock": "^29.7.0" 1161 | }, 1162 | "engines": { 1163 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1164 | } 1165 | }, 1166 | "node_modules/@jest/expect": { 1167 | "version": "29.7.0", 1168 | "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", 1169 | "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", 1170 | "dev": true, 1171 | "license": "MIT", 1172 | "dependencies": { 1173 | "expect": "^29.7.0", 1174 | "jest-snapshot": "^29.7.0" 1175 | }, 1176 | "engines": { 1177 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1178 | } 1179 | }, 1180 | "node_modules/@jest/expect-utils": { 1181 | "version": "29.7.0", 1182 | "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", 1183 | "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", 1184 | "dev": true, 1185 | "license": "MIT", 1186 | "dependencies": { 1187 | "jest-get-type": "^29.6.3" 1188 | }, 1189 | "engines": { 1190 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1191 | } 1192 | }, 1193 | "node_modules/@jest/fake-timers": { 1194 | "version": "29.7.0", 1195 | "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", 1196 | "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", 1197 | "dev": true, 1198 | "license": "MIT", 1199 | "dependencies": { 1200 | "@jest/types": "^29.6.3", 1201 | "@sinonjs/fake-timers": "^10.0.2", 1202 | "@types/node": "*", 1203 | "jest-message-util": "^29.7.0", 1204 | "jest-mock": "^29.7.0", 1205 | "jest-util": "^29.7.0" 1206 | }, 1207 | "engines": { 1208 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1209 | } 1210 | }, 1211 | "node_modules/@jest/globals": { 1212 | "version": "29.7.0", 1213 | "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", 1214 | "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", 1215 | "dev": true, 1216 | "license": "MIT", 1217 | "dependencies": { 1218 | "@jest/environment": "^29.7.0", 1219 | "@jest/expect": "^29.7.0", 1220 | "@jest/types": "^29.6.3", 1221 | "jest-mock": "^29.7.0" 1222 | }, 1223 | "engines": { 1224 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1225 | } 1226 | }, 1227 | "node_modules/@jest/reporters": { 1228 | "version": "29.7.0", 1229 | "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", 1230 | "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", 1231 | "dev": true, 1232 | "license": "MIT", 1233 | "dependencies": { 1234 | "@bcoe/v8-coverage": "^0.2.3", 1235 | "@jest/console": "^29.7.0", 1236 | "@jest/test-result": "^29.7.0", 1237 | "@jest/transform": "^29.7.0", 1238 | "@jest/types": "^29.6.3", 1239 | "@jridgewell/trace-mapping": "^0.3.18", 1240 | "@types/node": "*", 1241 | "chalk": "^4.0.0", 1242 | "collect-v8-coverage": "^1.0.0", 1243 | "exit": "^0.1.2", 1244 | "glob": "^7.1.3", 1245 | "graceful-fs": "^4.2.9", 1246 | "istanbul-lib-coverage": "^3.0.0", 1247 | "istanbul-lib-instrument": "^6.0.0", 1248 | "istanbul-lib-report": "^3.0.0", 1249 | "istanbul-lib-source-maps": "^4.0.0", 1250 | "istanbul-reports": "^3.1.3", 1251 | "jest-message-util": "^29.7.0", 1252 | "jest-util": "^29.7.0", 1253 | "jest-worker": "^29.7.0", 1254 | "slash": "^3.0.0", 1255 | "string-length": "^4.0.1", 1256 | "strip-ansi": "^6.0.0", 1257 | "v8-to-istanbul": "^9.0.1" 1258 | }, 1259 | "engines": { 1260 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1261 | }, 1262 | "peerDependencies": { 1263 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 1264 | }, 1265 | "peerDependenciesMeta": { 1266 | "node-notifier": { 1267 | "optional": true 1268 | } 1269 | } 1270 | }, 1271 | "node_modules/@jest/schemas": { 1272 | "version": "29.6.3", 1273 | "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", 1274 | "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", 1275 | "dev": true, 1276 | "license": "MIT", 1277 | "dependencies": { 1278 | "@sinclair/typebox": "^0.27.8" 1279 | }, 1280 | "engines": { 1281 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1282 | } 1283 | }, 1284 | "node_modules/@jest/source-map": { 1285 | "version": "29.6.3", 1286 | "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", 1287 | "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", 1288 | "dev": true, 1289 | "license": "MIT", 1290 | "dependencies": { 1291 | "@jridgewell/trace-mapping": "^0.3.18", 1292 | "callsites": "^3.0.0", 1293 | "graceful-fs": "^4.2.9" 1294 | }, 1295 | "engines": { 1296 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1297 | } 1298 | }, 1299 | "node_modules/@jest/test-result": { 1300 | "version": "29.7.0", 1301 | "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", 1302 | "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", 1303 | "dev": true, 1304 | "license": "MIT", 1305 | "dependencies": { 1306 | "@jest/console": "^29.7.0", 1307 | "@jest/types": "^29.6.3", 1308 | "@types/istanbul-lib-coverage": "^2.0.0", 1309 | "collect-v8-coverage": "^1.0.0" 1310 | }, 1311 | "engines": { 1312 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1313 | } 1314 | }, 1315 | "node_modules/@jest/test-sequencer": { 1316 | "version": "29.7.0", 1317 | "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", 1318 | "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", 1319 | "dev": true, 1320 | "license": "MIT", 1321 | "dependencies": { 1322 | "@jest/test-result": "^29.7.0", 1323 | "graceful-fs": "^4.2.9", 1324 | "jest-haste-map": "^29.7.0", 1325 | "slash": "^3.0.0" 1326 | }, 1327 | "engines": { 1328 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1329 | } 1330 | }, 1331 | "node_modules/@jest/transform": { 1332 | "version": "29.7.0", 1333 | "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", 1334 | "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", 1335 | "dev": true, 1336 | "license": "MIT", 1337 | "dependencies": { 1338 | "@babel/core": "^7.11.6", 1339 | "@jest/types": "^29.6.3", 1340 | "@jridgewell/trace-mapping": "^0.3.18", 1341 | "babel-plugin-istanbul": "^6.1.1", 1342 | "chalk": "^4.0.0", 1343 | "convert-source-map": "^2.0.0", 1344 | "fast-json-stable-stringify": "^2.1.0", 1345 | "graceful-fs": "^4.2.9", 1346 | "jest-haste-map": "^29.7.0", 1347 | "jest-regex-util": "^29.6.3", 1348 | "jest-util": "^29.7.0", 1349 | "micromatch": "^4.0.4", 1350 | "pirates": "^4.0.4", 1351 | "slash": "^3.0.0", 1352 | "write-file-atomic": "^4.0.2" 1353 | }, 1354 | "engines": { 1355 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1356 | } 1357 | }, 1358 | "node_modules/@jest/types": { 1359 | "version": "29.6.3", 1360 | "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", 1361 | "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", 1362 | "dev": true, 1363 | "license": "MIT", 1364 | "dependencies": { 1365 | "@jest/schemas": "^29.6.3", 1366 | "@types/istanbul-lib-coverage": "^2.0.0", 1367 | "@types/istanbul-reports": "^3.0.0", 1368 | "@types/node": "*", 1369 | "@types/yargs": "^17.0.8", 1370 | "chalk": "^4.0.0" 1371 | }, 1372 | "engines": { 1373 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1374 | } 1375 | }, 1376 | "node_modules/@jridgewell/gen-mapping": { 1377 | "version": "0.3.8", 1378 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 1379 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 1380 | "dev": true, 1381 | "license": "MIT", 1382 | "dependencies": { 1383 | "@jridgewell/set-array": "^1.2.1", 1384 | "@jridgewell/sourcemap-codec": "^1.4.10", 1385 | "@jridgewell/trace-mapping": "^0.3.24" 1386 | }, 1387 | "engines": { 1388 | "node": ">=6.0.0" 1389 | } 1390 | }, 1391 | "node_modules/@jridgewell/resolve-uri": { 1392 | "version": "3.1.2", 1393 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 1394 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 1395 | "dev": true, 1396 | "license": "MIT", 1397 | "engines": { 1398 | "node": ">=6.0.0" 1399 | } 1400 | }, 1401 | "node_modules/@jridgewell/set-array": { 1402 | "version": "1.2.1", 1403 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 1404 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 1405 | "dev": true, 1406 | "license": "MIT", 1407 | "engines": { 1408 | "node": ">=6.0.0" 1409 | } 1410 | }, 1411 | "node_modules/@jridgewell/sourcemap-codec": { 1412 | "version": "1.5.0", 1413 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 1414 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 1415 | "dev": true, 1416 | "license": "MIT" 1417 | }, 1418 | "node_modules/@jridgewell/trace-mapping": { 1419 | "version": "0.3.25", 1420 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 1421 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 1422 | "dev": true, 1423 | "license": "MIT", 1424 | "dependencies": { 1425 | "@jridgewell/resolve-uri": "^3.1.0", 1426 | "@jridgewell/sourcemap-codec": "^1.4.14" 1427 | } 1428 | }, 1429 | "node_modules/@modelcontextprotocol/sdk": { 1430 | "version": "1.1.1", 1431 | "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.1.1.tgz", 1432 | "integrity": "sha512-siCApQgBn3U8R93TdumLtezRyRIlrA/a63GrTRO1jP31fRyOohpu0iPLvXzsyptxmy7B8GDxr8+r+Phu6mHgzg==", 1433 | "license": "MIT", 1434 | "dependencies": { 1435 | "content-type": "^1.0.5", 1436 | "raw-body": "^3.0.0", 1437 | "zod": "^3.23.8" 1438 | }, 1439 | "engines": { 1440 | "node": ">=18" 1441 | } 1442 | }, 1443 | "node_modules/@modelcontextprotocol/server-filesystem": { 1444 | "version": "0.6.2", 1445 | "resolved": "https://registry.npmjs.org/@modelcontextprotocol/server-filesystem/-/server-filesystem-0.6.2.tgz", 1446 | "integrity": "sha512-qBrhLY524WEFmIg+s2O6bPIFBK8Dy0l20yjQ0reYN1moWYNy28kNyYgWVgTiSj4QvpMq2LFZs6foDHrG1Kgt2w==", 1447 | "license": "MIT", 1448 | "dependencies": { 1449 | "@modelcontextprotocol/sdk": "1.0.1", 1450 | "glob": "^10.3.10", 1451 | "zod-to-json-schema": "^3.23.5" 1452 | }, 1453 | "bin": { 1454 | "mcp-server-filesystem": "dist/index.js" 1455 | } 1456 | }, 1457 | "node_modules/@modelcontextprotocol/server-filesystem/node_modules/@modelcontextprotocol/sdk": { 1458 | "version": "1.0.1", 1459 | "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.0.1.tgz", 1460 | "integrity": "sha512-slLdFaxQJ9AlRg+hw28iiTtGvShAOgOKXcD0F91nUcRYiOMuS9ZBYjcdNZRXW9G5JQ511GRTdUy1zQVZDpJ+4w==", 1461 | "license": "MIT", 1462 | "dependencies": { 1463 | "content-type": "^1.0.5", 1464 | "raw-body": "^3.0.0", 1465 | "zod": "^3.23.8" 1466 | } 1467 | }, 1468 | "node_modules/@modelcontextprotocol/server-filesystem/node_modules/brace-expansion": { 1469 | "version": "2.0.1", 1470 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1471 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1472 | "license": "MIT", 1473 | "dependencies": { 1474 | "balanced-match": "^1.0.0" 1475 | } 1476 | }, 1477 | "node_modules/@modelcontextprotocol/server-filesystem/node_modules/glob": { 1478 | "version": "10.4.5", 1479 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 1480 | "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 1481 | "license": "ISC", 1482 | "dependencies": { 1483 | "foreground-child": "^3.1.0", 1484 | "jackspeak": "^3.1.2", 1485 | "minimatch": "^9.0.4", 1486 | "minipass": "^7.1.2", 1487 | "package-json-from-dist": "^1.0.0", 1488 | "path-scurry": "^1.11.1" 1489 | }, 1490 | "bin": { 1491 | "glob": "dist/esm/bin.mjs" 1492 | }, 1493 | "funding": { 1494 | "url": "https://github.com/sponsors/isaacs" 1495 | } 1496 | }, 1497 | "node_modules/@modelcontextprotocol/server-filesystem/node_modules/minimatch": { 1498 | "version": "9.0.5", 1499 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1500 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1501 | "license": "ISC", 1502 | "dependencies": { 1503 | "brace-expansion": "^2.0.1" 1504 | }, 1505 | "engines": { 1506 | "node": ">=16 || 14 >=14.17" 1507 | }, 1508 | "funding": { 1509 | "url": "https://github.com/sponsors/isaacs" 1510 | } 1511 | }, 1512 | "node_modules/@pkgjs/parseargs": { 1513 | "version": "0.11.0", 1514 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 1515 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 1516 | "license": "MIT", 1517 | "optional": true, 1518 | "engines": { 1519 | "node": ">=14" 1520 | } 1521 | }, 1522 | "node_modules/@sinclair/typebox": { 1523 | "version": "0.27.8", 1524 | "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", 1525 | "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", 1526 | "dev": true, 1527 | "license": "MIT" 1528 | }, 1529 | "node_modules/@sinonjs/commons": { 1530 | "version": "3.0.1", 1531 | "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", 1532 | "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", 1533 | "dev": true, 1534 | "license": "BSD-3-Clause", 1535 | "dependencies": { 1536 | "type-detect": "4.0.8" 1537 | } 1538 | }, 1539 | "node_modules/@sinonjs/fake-timers": { 1540 | "version": "10.3.0", 1541 | "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", 1542 | "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", 1543 | "dev": true, 1544 | "license": "BSD-3-Clause", 1545 | "dependencies": { 1546 | "@sinonjs/commons": "^3.0.0" 1547 | } 1548 | }, 1549 | "node_modules/@types/babel__core": { 1550 | "version": "7.20.5", 1551 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 1552 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 1553 | "dev": true, 1554 | "license": "MIT", 1555 | "dependencies": { 1556 | "@babel/parser": "^7.20.7", 1557 | "@babel/types": "^7.20.7", 1558 | "@types/babel__generator": "*", 1559 | "@types/babel__template": "*", 1560 | "@types/babel__traverse": "*" 1561 | } 1562 | }, 1563 | "node_modules/@types/babel__generator": { 1564 | "version": "7.6.8", 1565 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 1566 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 1567 | "dev": true, 1568 | "license": "MIT", 1569 | "dependencies": { 1570 | "@babel/types": "^7.0.0" 1571 | } 1572 | }, 1573 | "node_modules/@types/babel__template": { 1574 | "version": "7.4.4", 1575 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 1576 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 1577 | "dev": true, 1578 | "license": "MIT", 1579 | "dependencies": { 1580 | "@babel/parser": "^7.1.0", 1581 | "@babel/types": "^7.0.0" 1582 | } 1583 | }, 1584 | "node_modules/@types/babel__traverse": { 1585 | "version": "7.20.6", 1586 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", 1587 | "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", 1588 | "dev": true, 1589 | "license": "MIT", 1590 | "dependencies": { 1591 | "@babel/types": "^7.20.7" 1592 | } 1593 | }, 1594 | "node_modules/@types/graceful-fs": { 1595 | "version": "4.1.9", 1596 | "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", 1597 | "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", 1598 | "dev": true, 1599 | "license": "MIT", 1600 | "dependencies": { 1601 | "@types/node": "*" 1602 | } 1603 | }, 1604 | "node_modules/@types/istanbul-lib-coverage": { 1605 | "version": "2.0.6", 1606 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", 1607 | "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", 1608 | "dev": true, 1609 | "license": "MIT" 1610 | }, 1611 | "node_modules/@types/istanbul-lib-report": { 1612 | "version": "3.0.3", 1613 | "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", 1614 | "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", 1615 | "dev": true, 1616 | "license": "MIT", 1617 | "dependencies": { 1618 | "@types/istanbul-lib-coverage": "*" 1619 | } 1620 | }, 1621 | "node_modules/@types/istanbul-reports": { 1622 | "version": "3.0.4", 1623 | "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", 1624 | "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", 1625 | "dev": true, 1626 | "license": "MIT", 1627 | "dependencies": { 1628 | "@types/istanbul-lib-report": "*" 1629 | } 1630 | }, 1631 | "node_modules/@types/jest": { 1632 | "version": "29.5.14", 1633 | "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", 1634 | "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", 1635 | "dev": true, 1636 | "license": "MIT", 1637 | "dependencies": { 1638 | "expect": "^29.0.0", 1639 | "pretty-format": "^29.0.0" 1640 | } 1641 | }, 1642 | "node_modules/@types/node": { 1643 | "version": "22.10.5", 1644 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.5.tgz", 1645 | "integrity": "sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==", 1646 | "license": "MIT", 1647 | "dependencies": { 1648 | "undici-types": "~6.20.0" 1649 | } 1650 | }, 1651 | "node_modules/@types/node-fetch": { 1652 | "version": "2.6.12", 1653 | "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.12.tgz", 1654 | "integrity": "sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==", 1655 | "license": "MIT", 1656 | "dependencies": { 1657 | "@types/node": "*", 1658 | "form-data": "^4.0.0" 1659 | } 1660 | }, 1661 | "node_modules/@types/node/node_modules/undici-types": { 1662 | "version": "6.20.0", 1663 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", 1664 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", 1665 | "license": "MIT" 1666 | }, 1667 | "node_modules/@types/stack-utils": { 1668 | "version": "2.0.3", 1669 | "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", 1670 | "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", 1671 | "dev": true, 1672 | "license": "MIT" 1673 | }, 1674 | "node_modules/@types/yargs": { 1675 | "version": "17.0.33", 1676 | "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", 1677 | "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", 1678 | "dev": true, 1679 | "license": "MIT", 1680 | "dependencies": { 1681 | "@types/yargs-parser": "*" 1682 | } 1683 | }, 1684 | "node_modules/@types/yargs-parser": { 1685 | "version": "21.0.3", 1686 | "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", 1687 | "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", 1688 | "dev": true, 1689 | "license": "MIT" 1690 | }, 1691 | "node_modules/abort-controller": { 1692 | "version": "3.0.0", 1693 | "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", 1694 | "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", 1695 | "license": "MIT", 1696 | "dependencies": { 1697 | "event-target-shim": "^5.0.0" 1698 | }, 1699 | "engines": { 1700 | "node": ">=6.5" 1701 | } 1702 | }, 1703 | "node_modules/agentkeepalive": { 1704 | "version": "4.6.0", 1705 | "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.6.0.tgz", 1706 | "integrity": "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==", 1707 | "license": "MIT", 1708 | "dependencies": { 1709 | "humanize-ms": "^1.2.1" 1710 | }, 1711 | "engines": { 1712 | "node": ">= 8.0.0" 1713 | } 1714 | }, 1715 | "node_modules/ansi-escapes": { 1716 | "version": "4.3.2", 1717 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 1718 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 1719 | "dev": true, 1720 | "license": "MIT", 1721 | "dependencies": { 1722 | "type-fest": "^0.21.3" 1723 | }, 1724 | "engines": { 1725 | "node": ">=8" 1726 | }, 1727 | "funding": { 1728 | "url": "https://github.com/sponsors/sindresorhus" 1729 | } 1730 | }, 1731 | "node_modules/ansi-regex": { 1732 | "version": "5.0.1", 1733 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1734 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1735 | "license": "MIT", 1736 | "engines": { 1737 | "node": ">=8" 1738 | } 1739 | }, 1740 | "node_modules/ansi-styles": { 1741 | "version": "4.3.0", 1742 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1743 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1744 | "license": "MIT", 1745 | "dependencies": { 1746 | "color-convert": "^2.0.1" 1747 | }, 1748 | "engines": { 1749 | "node": ">=8" 1750 | }, 1751 | "funding": { 1752 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1753 | } 1754 | }, 1755 | "node_modules/anymatch": { 1756 | "version": "3.1.3", 1757 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1758 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1759 | "dev": true, 1760 | "license": "ISC", 1761 | "dependencies": { 1762 | "normalize-path": "^3.0.0", 1763 | "picomatch": "^2.0.4" 1764 | }, 1765 | "engines": { 1766 | "node": ">= 8" 1767 | } 1768 | }, 1769 | "node_modules/argparse": { 1770 | "version": "1.0.10", 1771 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 1772 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 1773 | "dev": true, 1774 | "license": "MIT", 1775 | "dependencies": { 1776 | "sprintf-js": "~1.0.2" 1777 | } 1778 | }, 1779 | "node_modules/async": { 1780 | "version": "3.2.6", 1781 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", 1782 | "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", 1783 | "dev": true, 1784 | "license": "MIT" 1785 | }, 1786 | "node_modules/asynckit": { 1787 | "version": "0.4.0", 1788 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 1789 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 1790 | "license": "MIT" 1791 | }, 1792 | "node_modules/babel-jest": { 1793 | "version": "29.7.0", 1794 | "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", 1795 | "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", 1796 | "dev": true, 1797 | "license": "MIT", 1798 | "dependencies": { 1799 | "@jest/transform": "^29.7.0", 1800 | "@types/babel__core": "^7.1.14", 1801 | "babel-plugin-istanbul": "^6.1.1", 1802 | "babel-preset-jest": "^29.6.3", 1803 | "chalk": "^4.0.0", 1804 | "graceful-fs": "^4.2.9", 1805 | "slash": "^3.0.0" 1806 | }, 1807 | "engines": { 1808 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1809 | }, 1810 | "peerDependencies": { 1811 | "@babel/core": "^7.8.0" 1812 | } 1813 | }, 1814 | "node_modules/babel-plugin-istanbul": { 1815 | "version": "6.1.1", 1816 | "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", 1817 | "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", 1818 | "dev": true, 1819 | "license": "BSD-3-Clause", 1820 | "dependencies": { 1821 | "@babel/helper-plugin-utils": "^7.0.0", 1822 | "@istanbuljs/load-nyc-config": "^1.0.0", 1823 | "@istanbuljs/schema": "^0.1.2", 1824 | "istanbul-lib-instrument": "^5.0.4", 1825 | "test-exclude": "^6.0.0" 1826 | }, 1827 | "engines": { 1828 | "node": ">=8" 1829 | } 1830 | }, 1831 | "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { 1832 | "version": "5.2.1", 1833 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", 1834 | "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", 1835 | "dev": true, 1836 | "license": "BSD-3-Clause", 1837 | "dependencies": { 1838 | "@babel/core": "^7.12.3", 1839 | "@babel/parser": "^7.14.7", 1840 | "@istanbuljs/schema": "^0.1.2", 1841 | "istanbul-lib-coverage": "^3.2.0", 1842 | "semver": "^6.3.0" 1843 | }, 1844 | "engines": { 1845 | "node": ">=8" 1846 | } 1847 | }, 1848 | "node_modules/babel-plugin-jest-hoist": { 1849 | "version": "29.6.3", 1850 | "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", 1851 | "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", 1852 | "dev": true, 1853 | "license": "MIT", 1854 | "dependencies": { 1855 | "@babel/template": "^7.3.3", 1856 | "@babel/types": "^7.3.3", 1857 | "@types/babel__core": "^7.1.14", 1858 | "@types/babel__traverse": "^7.0.6" 1859 | }, 1860 | "engines": { 1861 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1862 | } 1863 | }, 1864 | "node_modules/babel-preset-current-node-syntax": { 1865 | "version": "1.1.0", 1866 | "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", 1867 | "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", 1868 | "dev": true, 1869 | "license": "MIT", 1870 | "dependencies": { 1871 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1872 | "@babel/plugin-syntax-bigint": "^7.8.3", 1873 | "@babel/plugin-syntax-class-properties": "^7.12.13", 1874 | "@babel/plugin-syntax-class-static-block": "^7.14.5", 1875 | "@babel/plugin-syntax-import-attributes": "^7.24.7", 1876 | "@babel/plugin-syntax-import-meta": "^7.10.4", 1877 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1878 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", 1879 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1880 | "@babel/plugin-syntax-numeric-separator": "^7.10.4", 1881 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1882 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1883 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1884 | "@babel/plugin-syntax-private-property-in-object": "^7.14.5", 1885 | "@babel/plugin-syntax-top-level-await": "^7.14.5" 1886 | }, 1887 | "peerDependencies": { 1888 | "@babel/core": "^7.0.0" 1889 | } 1890 | }, 1891 | "node_modules/babel-preset-jest": { 1892 | "version": "29.6.3", 1893 | "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", 1894 | "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", 1895 | "dev": true, 1896 | "license": "MIT", 1897 | "dependencies": { 1898 | "babel-plugin-jest-hoist": "^29.6.3", 1899 | "babel-preset-current-node-syntax": "^1.0.0" 1900 | }, 1901 | "engines": { 1902 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 1903 | }, 1904 | "peerDependencies": { 1905 | "@babel/core": "^7.0.0" 1906 | } 1907 | }, 1908 | "node_modules/balanced-match": { 1909 | "version": "1.0.2", 1910 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1911 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1912 | "license": "MIT" 1913 | }, 1914 | "node_modules/brace-expansion": { 1915 | "version": "1.1.11", 1916 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1917 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1918 | "dev": true, 1919 | "license": "MIT", 1920 | "dependencies": { 1921 | "balanced-match": "^1.0.0", 1922 | "concat-map": "0.0.1" 1923 | } 1924 | }, 1925 | "node_modules/braces": { 1926 | "version": "3.0.3", 1927 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1928 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1929 | "dev": true, 1930 | "license": "MIT", 1931 | "dependencies": { 1932 | "fill-range": "^7.1.1" 1933 | }, 1934 | "engines": { 1935 | "node": ">=8" 1936 | } 1937 | }, 1938 | "node_modules/browserslist": { 1939 | "version": "4.24.4", 1940 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", 1941 | "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", 1942 | "dev": true, 1943 | "funding": [ 1944 | { 1945 | "type": "opencollective", 1946 | "url": "https://opencollective.com/browserslist" 1947 | }, 1948 | { 1949 | "type": "tidelift", 1950 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1951 | }, 1952 | { 1953 | "type": "github", 1954 | "url": "https://github.com/sponsors/ai" 1955 | } 1956 | ], 1957 | "license": "MIT", 1958 | "dependencies": { 1959 | "caniuse-lite": "^1.0.30001688", 1960 | "electron-to-chromium": "^1.5.73", 1961 | "node-releases": "^2.0.19", 1962 | "update-browserslist-db": "^1.1.1" 1963 | }, 1964 | "bin": { 1965 | "browserslist": "cli.js" 1966 | }, 1967 | "engines": { 1968 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1969 | } 1970 | }, 1971 | "node_modules/bs-logger": { 1972 | "version": "0.2.6", 1973 | "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", 1974 | "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", 1975 | "dev": true, 1976 | "license": "MIT", 1977 | "dependencies": { 1978 | "fast-json-stable-stringify": "2.x" 1979 | }, 1980 | "engines": { 1981 | "node": ">= 6" 1982 | } 1983 | }, 1984 | "node_modules/bser": { 1985 | "version": "2.1.1", 1986 | "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", 1987 | "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", 1988 | "dev": true, 1989 | "license": "Apache-2.0", 1990 | "dependencies": { 1991 | "node-int64": "^0.4.0" 1992 | } 1993 | }, 1994 | "node_modules/buffer-from": { 1995 | "version": "1.1.2", 1996 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1997 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 1998 | "dev": true, 1999 | "license": "MIT" 2000 | }, 2001 | "node_modules/bytes": { 2002 | "version": "3.1.2", 2003 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 2004 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 2005 | "license": "MIT", 2006 | "engines": { 2007 | "node": ">= 0.8" 2008 | } 2009 | }, 2010 | "node_modules/callsites": { 2011 | "version": "3.1.0", 2012 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 2013 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 2014 | "dev": true, 2015 | "license": "MIT", 2016 | "engines": { 2017 | "node": ">=6" 2018 | } 2019 | }, 2020 | "node_modules/camelcase": { 2021 | "version": "5.3.1", 2022 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 2023 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 2024 | "dev": true, 2025 | "license": "MIT", 2026 | "engines": { 2027 | "node": ">=6" 2028 | } 2029 | }, 2030 | "node_modules/caniuse-lite": { 2031 | "version": "1.0.30001692", 2032 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001692.tgz", 2033 | "integrity": "sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==", 2034 | "dev": true, 2035 | "funding": [ 2036 | { 2037 | "type": "opencollective", 2038 | "url": "https://opencollective.com/browserslist" 2039 | }, 2040 | { 2041 | "type": "tidelift", 2042 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 2043 | }, 2044 | { 2045 | "type": "github", 2046 | "url": "https://github.com/sponsors/ai" 2047 | } 2048 | ], 2049 | "license": "CC-BY-4.0" 2050 | }, 2051 | "node_modules/chalk": { 2052 | "version": "4.1.2", 2053 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2054 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2055 | "dev": true, 2056 | "license": "MIT", 2057 | "dependencies": { 2058 | "ansi-styles": "^4.1.0", 2059 | "supports-color": "^7.1.0" 2060 | }, 2061 | "engines": { 2062 | "node": ">=10" 2063 | }, 2064 | "funding": { 2065 | "url": "https://github.com/chalk/chalk?sponsor=1" 2066 | } 2067 | }, 2068 | "node_modules/char-regex": { 2069 | "version": "1.0.2", 2070 | "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", 2071 | "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", 2072 | "dev": true, 2073 | "license": "MIT", 2074 | "engines": { 2075 | "node": ">=10" 2076 | } 2077 | }, 2078 | "node_modules/ci-info": { 2079 | "version": "3.9.0", 2080 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", 2081 | "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", 2082 | "dev": true, 2083 | "funding": [ 2084 | { 2085 | "type": "github", 2086 | "url": "https://github.com/sponsors/sibiraj-s" 2087 | } 2088 | ], 2089 | "license": "MIT", 2090 | "engines": { 2091 | "node": ">=8" 2092 | } 2093 | }, 2094 | "node_modules/cjs-module-lexer": { 2095 | "version": "1.4.1", 2096 | "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", 2097 | "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", 2098 | "dev": true, 2099 | "license": "MIT" 2100 | }, 2101 | "node_modules/cliui": { 2102 | "version": "8.0.1", 2103 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 2104 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 2105 | "dev": true, 2106 | "license": "ISC", 2107 | "dependencies": { 2108 | "string-width": "^4.2.0", 2109 | "strip-ansi": "^6.0.1", 2110 | "wrap-ansi": "^7.0.0" 2111 | }, 2112 | "engines": { 2113 | "node": ">=12" 2114 | } 2115 | }, 2116 | "node_modules/co": { 2117 | "version": "4.6.0", 2118 | "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", 2119 | "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", 2120 | "dev": true, 2121 | "license": "MIT", 2122 | "engines": { 2123 | "iojs": ">= 1.0.0", 2124 | "node": ">= 0.12.0" 2125 | } 2126 | }, 2127 | "node_modules/collect-v8-coverage": { 2128 | "version": "1.0.2", 2129 | "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", 2130 | "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", 2131 | "dev": true, 2132 | "license": "MIT" 2133 | }, 2134 | "node_modules/color-convert": { 2135 | "version": "2.0.1", 2136 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2137 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2138 | "license": "MIT", 2139 | "dependencies": { 2140 | "color-name": "~1.1.4" 2141 | }, 2142 | "engines": { 2143 | "node": ">=7.0.0" 2144 | } 2145 | }, 2146 | "node_modules/color-name": { 2147 | "version": "1.1.4", 2148 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2149 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 2150 | "license": "MIT" 2151 | }, 2152 | "node_modules/combined-stream": { 2153 | "version": "1.0.8", 2154 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 2155 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 2156 | "license": "MIT", 2157 | "dependencies": { 2158 | "delayed-stream": "~1.0.0" 2159 | }, 2160 | "engines": { 2161 | "node": ">= 0.8" 2162 | } 2163 | }, 2164 | "node_modules/commander": { 2165 | "version": "9.5.0", 2166 | "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", 2167 | "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", 2168 | "license": "MIT", 2169 | "engines": { 2170 | "node": "^12.20.0 || >=14" 2171 | } 2172 | }, 2173 | "node_modules/concat-map": { 2174 | "version": "0.0.1", 2175 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 2176 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 2177 | "dev": true, 2178 | "license": "MIT" 2179 | }, 2180 | "node_modules/content-type": { 2181 | "version": "1.0.5", 2182 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 2183 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 2184 | "license": "MIT", 2185 | "engines": { 2186 | "node": ">= 0.6" 2187 | } 2188 | }, 2189 | "node_modules/convert-source-map": { 2190 | "version": "2.0.0", 2191 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 2192 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 2193 | "dev": true, 2194 | "license": "MIT" 2195 | }, 2196 | "node_modules/create-jest": { 2197 | "version": "29.7.0", 2198 | "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", 2199 | "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", 2200 | "dev": true, 2201 | "license": "MIT", 2202 | "dependencies": { 2203 | "@jest/types": "^29.6.3", 2204 | "chalk": "^4.0.0", 2205 | "exit": "^0.1.2", 2206 | "graceful-fs": "^4.2.9", 2207 | "jest-config": "^29.7.0", 2208 | "jest-util": "^29.7.0", 2209 | "prompts": "^2.0.1" 2210 | }, 2211 | "bin": { 2212 | "create-jest": "bin/create-jest.js" 2213 | }, 2214 | "engines": { 2215 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2216 | } 2217 | }, 2218 | "node_modules/cross-spawn": { 2219 | "version": "7.0.6", 2220 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 2221 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 2222 | "license": "MIT", 2223 | "dependencies": { 2224 | "path-key": "^3.1.0", 2225 | "shebang-command": "^2.0.0", 2226 | "which": "^2.0.1" 2227 | }, 2228 | "engines": { 2229 | "node": ">= 8" 2230 | } 2231 | }, 2232 | "node_modules/debug": { 2233 | "version": "4.4.0", 2234 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 2235 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 2236 | "dev": true, 2237 | "license": "MIT", 2238 | "dependencies": { 2239 | "ms": "^2.1.3" 2240 | }, 2241 | "engines": { 2242 | "node": ">=6.0" 2243 | }, 2244 | "peerDependenciesMeta": { 2245 | "supports-color": { 2246 | "optional": true 2247 | } 2248 | } 2249 | }, 2250 | "node_modules/dedent": { 2251 | "version": "1.5.3", 2252 | "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", 2253 | "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", 2254 | "dev": true, 2255 | "license": "MIT", 2256 | "peerDependencies": { 2257 | "babel-plugin-macros": "^3.1.0" 2258 | }, 2259 | "peerDependenciesMeta": { 2260 | "babel-plugin-macros": { 2261 | "optional": true 2262 | } 2263 | } 2264 | }, 2265 | "node_modules/deepmerge": { 2266 | "version": "4.3.1", 2267 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 2268 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 2269 | "dev": true, 2270 | "license": "MIT", 2271 | "engines": { 2272 | "node": ">=0.10.0" 2273 | } 2274 | }, 2275 | "node_modules/delayed-stream": { 2276 | "version": "1.0.0", 2277 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 2278 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 2279 | "license": "MIT", 2280 | "engines": { 2281 | "node": ">=0.4.0" 2282 | } 2283 | }, 2284 | "node_modules/depd": { 2285 | "version": "2.0.0", 2286 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 2287 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 2288 | "license": "MIT", 2289 | "engines": { 2290 | "node": ">= 0.8" 2291 | } 2292 | }, 2293 | "node_modules/detect-newline": { 2294 | "version": "3.1.0", 2295 | "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", 2296 | "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", 2297 | "dev": true, 2298 | "license": "MIT", 2299 | "engines": { 2300 | "node": ">=8" 2301 | } 2302 | }, 2303 | "node_modules/diff-sequences": { 2304 | "version": "29.6.3", 2305 | "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", 2306 | "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", 2307 | "dev": true, 2308 | "license": "MIT", 2309 | "engines": { 2310 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2311 | } 2312 | }, 2313 | "node_modules/eastasianwidth": { 2314 | "version": "0.2.0", 2315 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 2316 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 2317 | "license": "MIT" 2318 | }, 2319 | "node_modules/ejs": { 2320 | "version": "3.1.10", 2321 | "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", 2322 | "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", 2323 | "dev": true, 2324 | "license": "Apache-2.0", 2325 | "dependencies": { 2326 | "jake": "^10.8.5" 2327 | }, 2328 | "bin": { 2329 | "ejs": "bin/cli.js" 2330 | }, 2331 | "engines": { 2332 | "node": ">=0.10.0" 2333 | } 2334 | }, 2335 | "node_modules/electron-to-chromium": { 2336 | "version": "1.5.80", 2337 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.80.tgz", 2338 | "integrity": "sha512-LTrKpW0AqIuHwmlVNV+cjFYTnXtM9K37OGhpe0ZI10ScPSxqVSryZHIY3WnCS5NSYbBODRTZyhRMS2h5FAEqAw==", 2339 | "dev": true, 2340 | "license": "ISC" 2341 | }, 2342 | "node_modules/emittery": { 2343 | "version": "0.13.1", 2344 | "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", 2345 | "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", 2346 | "dev": true, 2347 | "license": "MIT", 2348 | "engines": { 2349 | "node": ">=12" 2350 | }, 2351 | "funding": { 2352 | "url": "https://github.com/sindresorhus/emittery?sponsor=1" 2353 | } 2354 | }, 2355 | "node_modules/emoji-regex": { 2356 | "version": "8.0.0", 2357 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2358 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2359 | "license": "MIT" 2360 | }, 2361 | "node_modules/error-ex": { 2362 | "version": "1.3.2", 2363 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 2364 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 2365 | "dev": true, 2366 | "license": "MIT", 2367 | "dependencies": { 2368 | "is-arrayish": "^0.2.1" 2369 | } 2370 | }, 2371 | "node_modules/esbuild": { 2372 | "version": "0.23.1", 2373 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz", 2374 | "integrity": "sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==", 2375 | "dev": true, 2376 | "hasInstallScript": true, 2377 | "license": "MIT", 2378 | "bin": { 2379 | "esbuild": "bin/esbuild" 2380 | }, 2381 | "engines": { 2382 | "node": ">=18" 2383 | }, 2384 | "optionalDependencies": { 2385 | "@esbuild/aix-ppc64": "0.23.1", 2386 | "@esbuild/android-arm": "0.23.1", 2387 | "@esbuild/android-arm64": "0.23.1", 2388 | "@esbuild/android-x64": "0.23.1", 2389 | "@esbuild/darwin-arm64": "0.23.1", 2390 | "@esbuild/darwin-x64": "0.23.1", 2391 | "@esbuild/freebsd-arm64": "0.23.1", 2392 | "@esbuild/freebsd-x64": "0.23.1", 2393 | "@esbuild/linux-arm": "0.23.1", 2394 | "@esbuild/linux-arm64": "0.23.1", 2395 | "@esbuild/linux-ia32": "0.23.1", 2396 | "@esbuild/linux-loong64": "0.23.1", 2397 | "@esbuild/linux-mips64el": "0.23.1", 2398 | "@esbuild/linux-ppc64": "0.23.1", 2399 | "@esbuild/linux-riscv64": "0.23.1", 2400 | "@esbuild/linux-s390x": "0.23.1", 2401 | "@esbuild/linux-x64": "0.23.1", 2402 | "@esbuild/netbsd-x64": "0.23.1", 2403 | "@esbuild/openbsd-arm64": "0.23.1", 2404 | "@esbuild/openbsd-x64": "0.23.1", 2405 | "@esbuild/sunos-x64": "0.23.1", 2406 | "@esbuild/win32-arm64": "0.23.1", 2407 | "@esbuild/win32-ia32": "0.23.1", 2408 | "@esbuild/win32-x64": "0.23.1" 2409 | } 2410 | }, 2411 | "node_modules/escalade": { 2412 | "version": "3.2.0", 2413 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 2414 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 2415 | "dev": true, 2416 | "license": "MIT", 2417 | "engines": { 2418 | "node": ">=6" 2419 | } 2420 | }, 2421 | "node_modules/escape-string-regexp": { 2422 | "version": "2.0.0", 2423 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", 2424 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", 2425 | "dev": true, 2426 | "license": "MIT", 2427 | "engines": { 2428 | "node": ">=8" 2429 | } 2430 | }, 2431 | "node_modules/esprima": { 2432 | "version": "4.0.1", 2433 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 2434 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", 2435 | "dev": true, 2436 | "license": "BSD-2-Clause", 2437 | "bin": { 2438 | "esparse": "bin/esparse.js", 2439 | "esvalidate": "bin/esvalidate.js" 2440 | }, 2441 | "engines": { 2442 | "node": ">=4" 2443 | } 2444 | }, 2445 | "node_modules/event-target-shim": { 2446 | "version": "5.0.1", 2447 | "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", 2448 | "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", 2449 | "license": "MIT", 2450 | "engines": { 2451 | "node": ">=6" 2452 | } 2453 | }, 2454 | "node_modules/execa": { 2455 | "version": "5.1.1", 2456 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 2457 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 2458 | "dev": true, 2459 | "license": "MIT", 2460 | "dependencies": { 2461 | "cross-spawn": "^7.0.3", 2462 | "get-stream": "^6.0.0", 2463 | "human-signals": "^2.1.0", 2464 | "is-stream": "^2.0.0", 2465 | "merge-stream": "^2.0.0", 2466 | "npm-run-path": "^4.0.1", 2467 | "onetime": "^5.1.2", 2468 | "signal-exit": "^3.0.3", 2469 | "strip-final-newline": "^2.0.0" 2470 | }, 2471 | "engines": { 2472 | "node": ">=10" 2473 | }, 2474 | "funding": { 2475 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 2476 | } 2477 | }, 2478 | "node_modules/exit": { 2479 | "version": "0.1.2", 2480 | "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", 2481 | "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", 2482 | "dev": true, 2483 | "engines": { 2484 | "node": ">= 0.8.0" 2485 | } 2486 | }, 2487 | "node_modules/expect": { 2488 | "version": "29.7.0", 2489 | "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", 2490 | "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", 2491 | "dev": true, 2492 | "license": "MIT", 2493 | "dependencies": { 2494 | "@jest/expect-utils": "^29.7.0", 2495 | "jest-get-type": "^29.6.3", 2496 | "jest-matcher-utils": "^29.7.0", 2497 | "jest-message-util": "^29.7.0", 2498 | "jest-util": "^29.7.0" 2499 | }, 2500 | "engines": { 2501 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 2502 | } 2503 | }, 2504 | "node_modules/fast-json-stable-stringify": { 2505 | "version": "2.1.0", 2506 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2507 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2508 | "dev": true, 2509 | "license": "MIT" 2510 | }, 2511 | "node_modules/fb-watchman": { 2512 | "version": "2.0.2", 2513 | "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", 2514 | "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", 2515 | "dev": true, 2516 | "license": "Apache-2.0", 2517 | "dependencies": { 2518 | "bser": "2.1.1" 2519 | } 2520 | }, 2521 | "node_modules/filelist": { 2522 | "version": "1.0.4", 2523 | "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", 2524 | "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", 2525 | "dev": true, 2526 | "license": "Apache-2.0", 2527 | "dependencies": { 2528 | "minimatch": "^5.0.1" 2529 | } 2530 | }, 2531 | "node_modules/filelist/node_modules/brace-expansion": { 2532 | "version": "2.0.1", 2533 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 2534 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 2535 | "dev": true, 2536 | "license": "MIT", 2537 | "dependencies": { 2538 | "balanced-match": "^1.0.0" 2539 | } 2540 | }, 2541 | "node_modules/filelist/node_modules/minimatch": { 2542 | "version": "5.1.6", 2543 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 2544 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 2545 | "dev": true, 2546 | "license": "ISC", 2547 | "dependencies": { 2548 | "brace-expansion": "^2.0.1" 2549 | }, 2550 | "engines": { 2551 | "node": ">=10" 2552 | } 2553 | }, 2554 | "node_modules/fill-range": { 2555 | "version": "7.1.1", 2556 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 2557 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 2558 | "dev": true, 2559 | "license": "MIT", 2560 | "dependencies": { 2561 | "to-regex-range": "^5.0.1" 2562 | }, 2563 | "engines": { 2564 | "node": ">=8" 2565 | } 2566 | }, 2567 | "node_modules/find-up": { 2568 | "version": "4.1.0", 2569 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 2570 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 2571 | "dev": true, 2572 | "license": "MIT", 2573 | "dependencies": { 2574 | "locate-path": "^5.0.0", 2575 | "path-exists": "^4.0.0" 2576 | }, 2577 | "engines": { 2578 | "node": ">=8" 2579 | } 2580 | }, 2581 | "node_modules/foreground-child": { 2582 | "version": "3.3.0", 2583 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 2584 | "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 2585 | "license": "ISC", 2586 | "dependencies": { 2587 | "cross-spawn": "^7.0.0", 2588 | "signal-exit": "^4.0.1" 2589 | }, 2590 | "engines": { 2591 | "node": ">=14" 2592 | }, 2593 | "funding": { 2594 | "url": "https://github.com/sponsors/isaacs" 2595 | } 2596 | }, 2597 | "node_modules/foreground-child/node_modules/signal-exit": { 2598 | "version": "4.1.0", 2599 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2600 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2601 | "license": "ISC", 2602 | "engines": { 2603 | "node": ">=14" 2604 | }, 2605 | "funding": { 2606 | "url": "https://github.com/sponsors/isaacs" 2607 | } 2608 | }, 2609 | "node_modules/form-data": { 2610 | "version": "4.0.1", 2611 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", 2612 | "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", 2613 | "license": "MIT", 2614 | "dependencies": { 2615 | "asynckit": "^0.4.0", 2616 | "combined-stream": "^1.0.8", 2617 | "mime-types": "^2.1.12" 2618 | }, 2619 | "engines": { 2620 | "node": ">= 6" 2621 | } 2622 | }, 2623 | "node_modules/form-data-encoder": { 2624 | "version": "1.7.2", 2625 | "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", 2626 | "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==", 2627 | "license": "MIT" 2628 | }, 2629 | "node_modules/formdata-node": { 2630 | "version": "4.4.1", 2631 | "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", 2632 | "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", 2633 | "license": "MIT", 2634 | "dependencies": { 2635 | "node-domexception": "1.0.0", 2636 | "web-streams-polyfill": "4.0.0-beta.3" 2637 | }, 2638 | "engines": { 2639 | "node": ">= 12.20" 2640 | } 2641 | }, 2642 | "node_modules/fs.realpath": { 2643 | "version": "1.0.0", 2644 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2645 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 2646 | "dev": true, 2647 | "license": "ISC" 2648 | }, 2649 | "node_modules/fsevents": { 2650 | "version": "2.3.3", 2651 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2652 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2653 | "dev": true, 2654 | "hasInstallScript": true, 2655 | "license": "MIT", 2656 | "optional": true, 2657 | "os": [ 2658 | "darwin" 2659 | ], 2660 | "engines": { 2661 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2662 | } 2663 | }, 2664 | "node_modules/function-bind": { 2665 | "version": "1.1.2", 2666 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 2667 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 2668 | "dev": true, 2669 | "license": "MIT", 2670 | "funding": { 2671 | "url": "https://github.com/sponsors/ljharb" 2672 | } 2673 | }, 2674 | "node_modules/gensync": { 2675 | "version": "1.0.0-beta.2", 2676 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 2677 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 2678 | "dev": true, 2679 | "license": "MIT", 2680 | "engines": { 2681 | "node": ">=6.9.0" 2682 | } 2683 | }, 2684 | "node_modules/get-caller-file": { 2685 | "version": "2.0.5", 2686 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 2687 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 2688 | "dev": true, 2689 | "license": "ISC", 2690 | "engines": { 2691 | "node": "6.* || 8.* || >= 10.*" 2692 | } 2693 | }, 2694 | "node_modules/get-package-type": { 2695 | "version": "0.1.0", 2696 | "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", 2697 | "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", 2698 | "dev": true, 2699 | "license": "MIT", 2700 | "engines": { 2701 | "node": ">=8.0.0" 2702 | } 2703 | }, 2704 | "node_modules/get-stream": { 2705 | "version": "6.0.1", 2706 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 2707 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 2708 | "dev": true, 2709 | "license": "MIT", 2710 | "engines": { 2711 | "node": ">=10" 2712 | }, 2713 | "funding": { 2714 | "url": "https://github.com/sponsors/sindresorhus" 2715 | } 2716 | }, 2717 | "node_modules/get-tsconfig": { 2718 | "version": "4.8.1", 2719 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.8.1.tgz", 2720 | "integrity": "sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==", 2721 | "dev": true, 2722 | "license": "MIT", 2723 | "dependencies": { 2724 | "resolve-pkg-maps": "^1.0.0" 2725 | }, 2726 | "funding": { 2727 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 2728 | } 2729 | }, 2730 | "node_modules/glob": { 2731 | "version": "7.2.3", 2732 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2733 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2734 | "deprecated": "Glob versions prior to v9 are no longer supported", 2735 | "dev": true, 2736 | "license": "ISC", 2737 | "dependencies": { 2738 | "fs.realpath": "^1.0.0", 2739 | "inflight": "^1.0.4", 2740 | "inherits": "2", 2741 | "minimatch": "^3.1.1", 2742 | "once": "^1.3.0", 2743 | "path-is-absolute": "^1.0.0" 2744 | }, 2745 | "engines": { 2746 | "node": "*" 2747 | }, 2748 | "funding": { 2749 | "url": "https://github.com/sponsors/isaacs" 2750 | } 2751 | }, 2752 | "node_modules/globals": { 2753 | "version": "11.12.0", 2754 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 2755 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 2756 | "dev": true, 2757 | "license": "MIT", 2758 | "engines": { 2759 | "node": ">=4" 2760 | } 2761 | }, 2762 | "node_modules/graceful-fs": { 2763 | "version": "4.2.11", 2764 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2765 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 2766 | "dev": true, 2767 | "license": "ISC" 2768 | }, 2769 | "node_modules/has-flag": { 2770 | "version": "4.0.0", 2771 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2772 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2773 | "dev": true, 2774 | "license": "MIT", 2775 | "engines": { 2776 | "node": ">=8" 2777 | } 2778 | }, 2779 | "node_modules/hasown": { 2780 | "version": "2.0.2", 2781 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2782 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2783 | "dev": true, 2784 | "license": "MIT", 2785 | "dependencies": { 2786 | "function-bind": "^1.1.2" 2787 | }, 2788 | "engines": { 2789 | "node": ">= 0.4" 2790 | } 2791 | }, 2792 | "node_modules/html-escaper": { 2793 | "version": "2.0.2", 2794 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 2795 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 2796 | "dev": true, 2797 | "license": "MIT" 2798 | }, 2799 | "node_modules/http-errors": { 2800 | "version": "2.0.0", 2801 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 2802 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 2803 | "license": "MIT", 2804 | "dependencies": { 2805 | "depd": "2.0.0", 2806 | "inherits": "2.0.4", 2807 | "setprototypeof": "1.2.0", 2808 | "statuses": "2.0.1", 2809 | "toidentifier": "1.0.1" 2810 | }, 2811 | "engines": { 2812 | "node": ">= 0.8" 2813 | } 2814 | }, 2815 | "node_modules/human-signals": { 2816 | "version": "2.1.0", 2817 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 2818 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 2819 | "dev": true, 2820 | "license": "Apache-2.0", 2821 | "engines": { 2822 | "node": ">=10.17.0" 2823 | } 2824 | }, 2825 | "node_modules/humanize-ms": { 2826 | "version": "1.2.1", 2827 | "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", 2828 | "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", 2829 | "license": "MIT", 2830 | "dependencies": { 2831 | "ms": "^2.0.0" 2832 | } 2833 | }, 2834 | "node_modules/iconv-lite": { 2835 | "version": "0.6.3", 2836 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 2837 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 2838 | "license": "MIT", 2839 | "dependencies": { 2840 | "safer-buffer": ">= 2.1.2 < 3.0.0" 2841 | }, 2842 | "engines": { 2843 | "node": ">=0.10.0" 2844 | } 2845 | }, 2846 | "node_modules/import-local": { 2847 | "version": "3.2.0", 2848 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", 2849 | "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", 2850 | "dev": true, 2851 | "license": "MIT", 2852 | "dependencies": { 2853 | "pkg-dir": "^4.2.0", 2854 | "resolve-cwd": "^3.0.0" 2855 | }, 2856 | "bin": { 2857 | "import-local-fixture": "fixtures/cli.js" 2858 | }, 2859 | "engines": { 2860 | "node": ">=8" 2861 | }, 2862 | "funding": { 2863 | "url": "https://github.com/sponsors/sindresorhus" 2864 | } 2865 | }, 2866 | "node_modules/imurmurhash": { 2867 | "version": "0.1.4", 2868 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2869 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2870 | "dev": true, 2871 | "license": "MIT", 2872 | "engines": { 2873 | "node": ">=0.8.19" 2874 | } 2875 | }, 2876 | "node_modules/inflight": { 2877 | "version": "1.0.6", 2878 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2879 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2880 | "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.", 2881 | "dev": true, 2882 | "license": "ISC", 2883 | "dependencies": { 2884 | "once": "^1.3.0", 2885 | "wrappy": "1" 2886 | } 2887 | }, 2888 | "node_modules/inherits": { 2889 | "version": "2.0.4", 2890 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2891 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2892 | "license": "ISC" 2893 | }, 2894 | "node_modules/is-arrayish": { 2895 | "version": "0.2.1", 2896 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2897 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 2898 | "dev": true, 2899 | "license": "MIT" 2900 | }, 2901 | "node_modules/is-core-module": { 2902 | "version": "2.16.1", 2903 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 2904 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 2905 | "dev": true, 2906 | "license": "MIT", 2907 | "dependencies": { 2908 | "hasown": "^2.0.2" 2909 | }, 2910 | "engines": { 2911 | "node": ">= 0.4" 2912 | }, 2913 | "funding": { 2914 | "url": "https://github.com/sponsors/ljharb" 2915 | } 2916 | }, 2917 | "node_modules/is-fullwidth-code-point": { 2918 | "version": "3.0.0", 2919 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2920 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2921 | "license": "MIT", 2922 | "engines": { 2923 | "node": ">=8" 2924 | } 2925 | }, 2926 | "node_modules/is-generator-fn": { 2927 | "version": "2.1.0", 2928 | "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", 2929 | "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", 2930 | "dev": true, 2931 | "license": "MIT", 2932 | "engines": { 2933 | "node": ">=6" 2934 | } 2935 | }, 2936 | "node_modules/is-number": { 2937 | "version": "7.0.0", 2938 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2939 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2940 | "dev": true, 2941 | "license": "MIT", 2942 | "engines": { 2943 | "node": ">=0.12.0" 2944 | } 2945 | }, 2946 | "node_modules/is-stream": { 2947 | "version": "2.0.1", 2948 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 2949 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 2950 | "dev": true, 2951 | "license": "MIT", 2952 | "engines": { 2953 | "node": ">=8" 2954 | }, 2955 | "funding": { 2956 | "url": "https://github.com/sponsors/sindresorhus" 2957 | } 2958 | }, 2959 | "node_modules/isexe": { 2960 | "version": "2.0.0", 2961 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2962 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2963 | "license": "ISC" 2964 | }, 2965 | "node_modules/istanbul-lib-coverage": { 2966 | "version": "3.2.2", 2967 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 2968 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 2969 | "dev": true, 2970 | "license": "BSD-3-Clause", 2971 | "engines": { 2972 | "node": ">=8" 2973 | } 2974 | }, 2975 | "node_modules/istanbul-lib-instrument": { 2976 | "version": "6.0.3", 2977 | "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", 2978 | "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", 2979 | "dev": true, 2980 | "license": "BSD-3-Clause", 2981 | "dependencies": { 2982 | "@babel/core": "^7.23.9", 2983 | "@babel/parser": "^7.23.9", 2984 | "@istanbuljs/schema": "^0.1.3", 2985 | "istanbul-lib-coverage": "^3.2.0", 2986 | "semver": "^7.5.4" 2987 | }, 2988 | "engines": { 2989 | "node": ">=10" 2990 | } 2991 | }, 2992 | "node_modules/istanbul-lib-instrument/node_modules/semver": { 2993 | "version": "7.6.3", 2994 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2995 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2996 | "dev": true, 2997 | "license": "ISC", 2998 | "bin": { 2999 | "semver": "bin/semver.js" 3000 | }, 3001 | "engines": { 3002 | "node": ">=10" 3003 | } 3004 | }, 3005 | "node_modules/istanbul-lib-report": { 3006 | "version": "3.0.1", 3007 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 3008 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 3009 | "dev": true, 3010 | "license": "BSD-3-Clause", 3011 | "dependencies": { 3012 | "istanbul-lib-coverage": "^3.0.0", 3013 | "make-dir": "^4.0.0", 3014 | "supports-color": "^7.1.0" 3015 | }, 3016 | "engines": { 3017 | "node": ">=10" 3018 | } 3019 | }, 3020 | "node_modules/istanbul-lib-source-maps": { 3021 | "version": "4.0.1", 3022 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", 3023 | "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", 3024 | "dev": true, 3025 | "license": "BSD-3-Clause", 3026 | "dependencies": { 3027 | "debug": "^4.1.1", 3028 | "istanbul-lib-coverage": "^3.0.0", 3029 | "source-map": "^0.6.1" 3030 | }, 3031 | "engines": { 3032 | "node": ">=10" 3033 | } 3034 | }, 3035 | "node_modules/istanbul-reports": { 3036 | "version": "3.1.7", 3037 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", 3038 | "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", 3039 | "dev": true, 3040 | "license": "BSD-3-Clause", 3041 | "dependencies": { 3042 | "html-escaper": "^2.0.0", 3043 | "istanbul-lib-report": "^3.0.0" 3044 | }, 3045 | "engines": { 3046 | "node": ">=8" 3047 | } 3048 | }, 3049 | "node_modules/jackspeak": { 3050 | "version": "3.4.3", 3051 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 3052 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 3053 | "license": "BlueOak-1.0.0", 3054 | "dependencies": { 3055 | "@isaacs/cliui": "^8.0.2" 3056 | }, 3057 | "funding": { 3058 | "url": "https://github.com/sponsors/isaacs" 3059 | }, 3060 | "optionalDependencies": { 3061 | "@pkgjs/parseargs": "^0.11.0" 3062 | } 3063 | }, 3064 | "node_modules/jake": { 3065 | "version": "10.9.2", 3066 | "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", 3067 | "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", 3068 | "dev": true, 3069 | "license": "Apache-2.0", 3070 | "dependencies": { 3071 | "async": "^3.2.3", 3072 | "chalk": "^4.0.2", 3073 | "filelist": "^1.0.4", 3074 | "minimatch": "^3.1.2" 3075 | }, 3076 | "bin": { 3077 | "jake": "bin/cli.js" 3078 | }, 3079 | "engines": { 3080 | "node": ">=10" 3081 | } 3082 | }, 3083 | "node_modules/jest": { 3084 | "version": "29.7.0", 3085 | "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", 3086 | "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", 3087 | "dev": true, 3088 | "license": "MIT", 3089 | "dependencies": { 3090 | "@jest/core": "^29.7.0", 3091 | "@jest/types": "^29.6.3", 3092 | "import-local": "^3.0.2", 3093 | "jest-cli": "^29.7.0" 3094 | }, 3095 | "bin": { 3096 | "jest": "bin/jest.js" 3097 | }, 3098 | "engines": { 3099 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3100 | }, 3101 | "peerDependencies": { 3102 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 3103 | }, 3104 | "peerDependenciesMeta": { 3105 | "node-notifier": { 3106 | "optional": true 3107 | } 3108 | } 3109 | }, 3110 | "node_modules/jest-changed-files": { 3111 | "version": "29.7.0", 3112 | "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", 3113 | "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", 3114 | "dev": true, 3115 | "license": "MIT", 3116 | "dependencies": { 3117 | "execa": "^5.0.0", 3118 | "jest-util": "^29.7.0", 3119 | "p-limit": "^3.1.0" 3120 | }, 3121 | "engines": { 3122 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3123 | } 3124 | }, 3125 | "node_modules/jest-circus": { 3126 | "version": "29.7.0", 3127 | "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", 3128 | "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", 3129 | "dev": true, 3130 | "license": "MIT", 3131 | "dependencies": { 3132 | "@jest/environment": "^29.7.0", 3133 | "@jest/expect": "^29.7.0", 3134 | "@jest/test-result": "^29.7.0", 3135 | "@jest/types": "^29.6.3", 3136 | "@types/node": "*", 3137 | "chalk": "^4.0.0", 3138 | "co": "^4.6.0", 3139 | "dedent": "^1.0.0", 3140 | "is-generator-fn": "^2.0.0", 3141 | "jest-each": "^29.7.0", 3142 | "jest-matcher-utils": "^29.7.0", 3143 | "jest-message-util": "^29.7.0", 3144 | "jest-runtime": "^29.7.0", 3145 | "jest-snapshot": "^29.7.0", 3146 | "jest-util": "^29.7.0", 3147 | "p-limit": "^3.1.0", 3148 | "pretty-format": "^29.7.0", 3149 | "pure-rand": "^6.0.0", 3150 | "slash": "^3.0.0", 3151 | "stack-utils": "^2.0.3" 3152 | }, 3153 | "engines": { 3154 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3155 | } 3156 | }, 3157 | "node_modules/jest-cli": { 3158 | "version": "29.7.0", 3159 | "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", 3160 | "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", 3161 | "dev": true, 3162 | "license": "MIT", 3163 | "dependencies": { 3164 | "@jest/core": "^29.7.0", 3165 | "@jest/test-result": "^29.7.0", 3166 | "@jest/types": "^29.6.3", 3167 | "chalk": "^4.0.0", 3168 | "create-jest": "^29.7.0", 3169 | "exit": "^0.1.2", 3170 | "import-local": "^3.0.2", 3171 | "jest-config": "^29.7.0", 3172 | "jest-util": "^29.7.0", 3173 | "jest-validate": "^29.7.0", 3174 | "yargs": "^17.3.1" 3175 | }, 3176 | "bin": { 3177 | "jest": "bin/jest.js" 3178 | }, 3179 | "engines": { 3180 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3181 | }, 3182 | "peerDependencies": { 3183 | "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" 3184 | }, 3185 | "peerDependenciesMeta": { 3186 | "node-notifier": { 3187 | "optional": true 3188 | } 3189 | } 3190 | }, 3191 | "node_modules/jest-config": { 3192 | "version": "29.7.0", 3193 | "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", 3194 | "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", 3195 | "dev": true, 3196 | "license": "MIT", 3197 | "dependencies": { 3198 | "@babel/core": "^7.11.6", 3199 | "@jest/test-sequencer": "^29.7.0", 3200 | "@jest/types": "^29.6.3", 3201 | "babel-jest": "^29.7.0", 3202 | "chalk": "^4.0.0", 3203 | "ci-info": "^3.2.0", 3204 | "deepmerge": "^4.2.2", 3205 | "glob": "^7.1.3", 3206 | "graceful-fs": "^4.2.9", 3207 | "jest-circus": "^29.7.0", 3208 | "jest-environment-node": "^29.7.0", 3209 | "jest-get-type": "^29.6.3", 3210 | "jest-regex-util": "^29.6.3", 3211 | "jest-resolve": "^29.7.0", 3212 | "jest-runner": "^29.7.0", 3213 | "jest-util": "^29.7.0", 3214 | "jest-validate": "^29.7.0", 3215 | "micromatch": "^4.0.4", 3216 | "parse-json": "^5.2.0", 3217 | "pretty-format": "^29.7.0", 3218 | "slash": "^3.0.0", 3219 | "strip-json-comments": "^3.1.1" 3220 | }, 3221 | "engines": { 3222 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3223 | }, 3224 | "peerDependencies": { 3225 | "@types/node": "*", 3226 | "ts-node": ">=9.0.0" 3227 | }, 3228 | "peerDependenciesMeta": { 3229 | "@types/node": { 3230 | "optional": true 3231 | }, 3232 | "ts-node": { 3233 | "optional": true 3234 | } 3235 | } 3236 | }, 3237 | "node_modules/jest-diff": { 3238 | "version": "29.7.0", 3239 | "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", 3240 | "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", 3241 | "dev": true, 3242 | "license": "MIT", 3243 | "dependencies": { 3244 | "chalk": "^4.0.0", 3245 | "diff-sequences": "^29.6.3", 3246 | "jest-get-type": "^29.6.3", 3247 | "pretty-format": "^29.7.0" 3248 | }, 3249 | "engines": { 3250 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3251 | } 3252 | }, 3253 | "node_modules/jest-docblock": { 3254 | "version": "29.7.0", 3255 | "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", 3256 | "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", 3257 | "dev": true, 3258 | "license": "MIT", 3259 | "dependencies": { 3260 | "detect-newline": "^3.0.0" 3261 | }, 3262 | "engines": { 3263 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3264 | } 3265 | }, 3266 | "node_modules/jest-each": { 3267 | "version": "29.7.0", 3268 | "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", 3269 | "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", 3270 | "dev": true, 3271 | "license": "MIT", 3272 | "dependencies": { 3273 | "@jest/types": "^29.6.3", 3274 | "chalk": "^4.0.0", 3275 | "jest-get-type": "^29.6.3", 3276 | "jest-util": "^29.7.0", 3277 | "pretty-format": "^29.7.0" 3278 | }, 3279 | "engines": { 3280 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3281 | } 3282 | }, 3283 | "node_modules/jest-environment-node": { 3284 | "version": "29.7.0", 3285 | "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", 3286 | "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", 3287 | "dev": true, 3288 | "license": "MIT", 3289 | "dependencies": { 3290 | "@jest/environment": "^29.7.0", 3291 | "@jest/fake-timers": "^29.7.0", 3292 | "@jest/types": "^29.6.3", 3293 | "@types/node": "*", 3294 | "jest-mock": "^29.7.0", 3295 | "jest-util": "^29.7.0" 3296 | }, 3297 | "engines": { 3298 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3299 | } 3300 | }, 3301 | "node_modules/jest-get-type": { 3302 | "version": "29.6.3", 3303 | "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", 3304 | "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", 3305 | "dev": true, 3306 | "license": "MIT", 3307 | "engines": { 3308 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3309 | } 3310 | }, 3311 | "node_modules/jest-haste-map": { 3312 | "version": "29.7.0", 3313 | "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", 3314 | "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", 3315 | "dev": true, 3316 | "license": "MIT", 3317 | "dependencies": { 3318 | "@jest/types": "^29.6.3", 3319 | "@types/graceful-fs": "^4.1.3", 3320 | "@types/node": "*", 3321 | "anymatch": "^3.0.3", 3322 | "fb-watchman": "^2.0.0", 3323 | "graceful-fs": "^4.2.9", 3324 | "jest-regex-util": "^29.6.3", 3325 | "jest-util": "^29.7.0", 3326 | "jest-worker": "^29.7.0", 3327 | "micromatch": "^4.0.4", 3328 | "walker": "^1.0.8" 3329 | }, 3330 | "engines": { 3331 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3332 | }, 3333 | "optionalDependencies": { 3334 | "fsevents": "^2.3.2" 3335 | } 3336 | }, 3337 | "node_modules/jest-leak-detector": { 3338 | "version": "29.7.0", 3339 | "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", 3340 | "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", 3341 | "dev": true, 3342 | "license": "MIT", 3343 | "dependencies": { 3344 | "jest-get-type": "^29.6.3", 3345 | "pretty-format": "^29.7.0" 3346 | }, 3347 | "engines": { 3348 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3349 | } 3350 | }, 3351 | "node_modules/jest-matcher-utils": { 3352 | "version": "29.7.0", 3353 | "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", 3354 | "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", 3355 | "dev": true, 3356 | "license": "MIT", 3357 | "dependencies": { 3358 | "chalk": "^4.0.0", 3359 | "jest-diff": "^29.7.0", 3360 | "jest-get-type": "^29.6.3", 3361 | "pretty-format": "^29.7.0" 3362 | }, 3363 | "engines": { 3364 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3365 | } 3366 | }, 3367 | "node_modules/jest-message-util": { 3368 | "version": "29.7.0", 3369 | "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", 3370 | "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", 3371 | "dev": true, 3372 | "license": "MIT", 3373 | "dependencies": { 3374 | "@babel/code-frame": "^7.12.13", 3375 | "@jest/types": "^29.6.3", 3376 | "@types/stack-utils": "^2.0.0", 3377 | "chalk": "^4.0.0", 3378 | "graceful-fs": "^4.2.9", 3379 | "micromatch": "^4.0.4", 3380 | "pretty-format": "^29.7.0", 3381 | "slash": "^3.0.0", 3382 | "stack-utils": "^2.0.3" 3383 | }, 3384 | "engines": { 3385 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3386 | } 3387 | }, 3388 | "node_modules/jest-mock": { 3389 | "version": "29.7.0", 3390 | "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", 3391 | "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", 3392 | "dev": true, 3393 | "license": "MIT", 3394 | "dependencies": { 3395 | "@jest/types": "^29.6.3", 3396 | "@types/node": "*", 3397 | "jest-util": "^29.7.0" 3398 | }, 3399 | "engines": { 3400 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3401 | } 3402 | }, 3403 | "node_modules/jest-pnp-resolver": { 3404 | "version": "1.2.3", 3405 | "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", 3406 | "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", 3407 | "dev": true, 3408 | "license": "MIT", 3409 | "engines": { 3410 | "node": ">=6" 3411 | }, 3412 | "peerDependencies": { 3413 | "jest-resolve": "*" 3414 | }, 3415 | "peerDependenciesMeta": { 3416 | "jest-resolve": { 3417 | "optional": true 3418 | } 3419 | } 3420 | }, 3421 | "node_modules/jest-regex-util": { 3422 | "version": "29.6.3", 3423 | "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", 3424 | "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", 3425 | "dev": true, 3426 | "license": "MIT", 3427 | "engines": { 3428 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3429 | } 3430 | }, 3431 | "node_modules/jest-resolve": { 3432 | "version": "29.7.0", 3433 | "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", 3434 | "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", 3435 | "dev": true, 3436 | "license": "MIT", 3437 | "dependencies": { 3438 | "chalk": "^4.0.0", 3439 | "graceful-fs": "^4.2.9", 3440 | "jest-haste-map": "^29.7.0", 3441 | "jest-pnp-resolver": "^1.2.2", 3442 | "jest-util": "^29.7.0", 3443 | "jest-validate": "^29.7.0", 3444 | "resolve": "^1.20.0", 3445 | "resolve.exports": "^2.0.0", 3446 | "slash": "^3.0.0" 3447 | }, 3448 | "engines": { 3449 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3450 | } 3451 | }, 3452 | "node_modules/jest-resolve-dependencies": { 3453 | "version": "29.7.0", 3454 | "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", 3455 | "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", 3456 | "dev": true, 3457 | "license": "MIT", 3458 | "dependencies": { 3459 | "jest-regex-util": "^29.6.3", 3460 | "jest-snapshot": "^29.7.0" 3461 | }, 3462 | "engines": { 3463 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3464 | } 3465 | }, 3466 | "node_modules/jest-runner": { 3467 | "version": "29.7.0", 3468 | "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", 3469 | "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", 3470 | "dev": true, 3471 | "license": "MIT", 3472 | "dependencies": { 3473 | "@jest/console": "^29.7.0", 3474 | "@jest/environment": "^29.7.0", 3475 | "@jest/test-result": "^29.7.0", 3476 | "@jest/transform": "^29.7.0", 3477 | "@jest/types": "^29.6.3", 3478 | "@types/node": "*", 3479 | "chalk": "^4.0.0", 3480 | "emittery": "^0.13.1", 3481 | "graceful-fs": "^4.2.9", 3482 | "jest-docblock": "^29.7.0", 3483 | "jest-environment-node": "^29.7.0", 3484 | "jest-haste-map": "^29.7.0", 3485 | "jest-leak-detector": "^29.7.0", 3486 | "jest-message-util": "^29.7.0", 3487 | "jest-resolve": "^29.7.0", 3488 | "jest-runtime": "^29.7.0", 3489 | "jest-util": "^29.7.0", 3490 | "jest-watcher": "^29.7.0", 3491 | "jest-worker": "^29.7.0", 3492 | "p-limit": "^3.1.0", 3493 | "source-map-support": "0.5.13" 3494 | }, 3495 | "engines": { 3496 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3497 | } 3498 | }, 3499 | "node_modules/jest-runtime": { 3500 | "version": "29.7.0", 3501 | "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", 3502 | "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", 3503 | "dev": true, 3504 | "license": "MIT", 3505 | "dependencies": { 3506 | "@jest/environment": "^29.7.0", 3507 | "@jest/fake-timers": "^29.7.0", 3508 | "@jest/globals": "^29.7.0", 3509 | "@jest/source-map": "^29.6.3", 3510 | "@jest/test-result": "^29.7.0", 3511 | "@jest/transform": "^29.7.0", 3512 | "@jest/types": "^29.6.3", 3513 | "@types/node": "*", 3514 | "chalk": "^4.0.0", 3515 | "cjs-module-lexer": "^1.0.0", 3516 | "collect-v8-coverage": "^1.0.0", 3517 | "glob": "^7.1.3", 3518 | "graceful-fs": "^4.2.9", 3519 | "jest-haste-map": "^29.7.0", 3520 | "jest-message-util": "^29.7.0", 3521 | "jest-mock": "^29.7.0", 3522 | "jest-regex-util": "^29.6.3", 3523 | "jest-resolve": "^29.7.0", 3524 | "jest-snapshot": "^29.7.0", 3525 | "jest-util": "^29.7.0", 3526 | "slash": "^3.0.0", 3527 | "strip-bom": "^4.0.0" 3528 | }, 3529 | "engines": { 3530 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3531 | } 3532 | }, 3533 | "node_modules/jest-snapshot": { 3534 | "version": "29.7.0", 3535 | "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", 3536 | "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", 3537 | "dev": true, 3538 | "license": "MIT", 3539 | "dependencies": { 3540 | "@babel/core": "^7.11.6", 3541 | "@babel/generator": "^7.7.2", 3542 | "@babel/plugin-syntax-jsx": "^7.7.2", 3543 | "@babel/plugin-syntax-typescript": "^7.7.2", 3544 | "@babel/types": "^7.3.3", 3545 | "@jest/expect-utils": "^29.7.0", 3546 | "@jest/transform": "^29.7.0", 3547 | "@jest/types": "^29.6.3", 3548 | "babel-preset-current-node-syntax": "^1.0.0", 3549 | "chalk": "^4.0.0", 3550 | "expect": "^29.7.0", 3551 | "graceful-fs": "^4.2.9", 3552 | "jest-diff": "^29.7.0", 3553 | "jest-get-type": "^29.6.3", 3554 | "jest-matcher-utils": "^29.7.0", 3555 | "jest-message-util": "^29.7.0", 3556 | "jest-util": "^29.7.0", 3557 | "natural-compare": "^1.4.0", 3558 | "pretty-format": "^29.7.0", 3559 | "semver": "^7.5.3" 3560 | }, 3561 | "engines": { 3562 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3563 | } 3564 | }, 3565 | "node_modules/jest-snapshot/node_modules/semver": { 3566 | "version": "7.6.3", 3567 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3568 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3569 | "dev": true, 3570 | "license": "ISC", 3571 | "bin": { 3572 | "semver": "bin/semver.js" 3573 | }, 3574 | "engines": { 3575 | "node": ">=10" 3576 | } 3577 | }, 3578 | "node_modules/jest-util": { 3579 | "version": "29.7.0", 3580 | "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", 3581 | "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", 3582 | "dev": true, 3583 | "license": "MIT", 3584 | "dependencies": { 3585 | "@jest/types": "^29.6.3", 3586 | "@types/node": "*", 3587 | "chalk": "^4.0.0", 3588 | "ci-info": "^3.2.0", 3589 | "graceful-fs": "^4.2.9", 3590 | "picomatch": "^2.2.3" 3591 | }, 3592 | "engines": { 3593 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3594 | } 3595 | }, 3596 | "node_modules/jest-validate": { 3597 | "version": "29.7.0", 3598 | "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", 3599 | "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", 3600 | "dev": true, 3601 | "license": "MIT", 3602 | "dependencies": { 3603 | "@jest/types": "^29.6.3", 3604 | "camelcase": "^6.2.0", 3605 | "chalk": "^4.0.0", 3606 | "jest-get-type": "^29.6.3", 3607 | "leven": "^3.1.0", 3608 | "pretty-format": "^29.7.0" 3609 | }, 3610 | "engines": { 3611 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3612 | } 3613 | }, 3614 | "node_modules/jest-validate/node_modules/camelcase": { 3615 | "version": "6.3.0", 3616 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", 3617 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", 3618 | "dev": true, 3619 | "license": "MIT", 3620 | "engines": { 3621 | "node": ">=10" 3622 | }, 3623 | "funding": { 3624 | "url": "https://github.com/sponsors/sindresorhus" 3625 | } 3626 | }, 3627 | "node_modules/jest-watcher": { 3628 | "version": "29.7.0", 3629 | "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", 3630 | "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", 3631 | "dev": true, 3632 | "license": "MIT", 3633 | "dependencies": { 3634 | "@jest/test-result": "^29.7.0", 3635 | "@jest/types": "^29.6.3", 3636 | "@types/node": "*", 3637 | "ansi-escapes": "^4.2.1", 3638 | "chalk": "^4.0.0", 3639 | "emittery": "^0.13.1", 3640 | "jest-util": "^29.7.0", 3641 | "string-length": "^4.0.1" 3642 | }, 3643 | "engines": { 3644 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3645 | } 3646 | }, 3647 | "node_modules/jest-worker": { 3648 | "version": "29.7.0", 3649 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", 3650 | "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", 3651 | "dev": true, 3652 | "license": "MIT", 3653 | "dependencies": { 3654 | "@types/node": "*", 3655 | "jest-util": "^29.7.0", 3656 | "merge-stream": "^2.0.0", 3657 | "supports-color": "^8.0.0" 3658 | }, 3659 | "engines": { 3660 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 3661 | } 3662 | }, 3663 | "node_modules/jest-worker/node_modules/supports-color": { 3664 | "version": "8.1.1", 3665 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 3666 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 3667 | "dev": true, 3668 | "license": "MIT", 3669 | "dependencies": { 3670 | "has-flag": "^4.0.0" 3671 | }, 3672 | "engines": { 3673 | "node": ">=10" 3674 | }, 3675 | "funding": { 3676 | "url": "https://github.com/chalk/supports-color?sponsor=1" 3677 | } 3678 | }, 3679 | "node_modules/js-tokens": { 3680 | "version": "4.0.0", 3681 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 3682 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 3683 | "dev": true, 3684 | "license": "MIT" 3685 | }, 3686 | "node_modules/js-yaml": { 3687 | "version": "3.14.1", 3688 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 3689 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 3690 | "dev": true, 3691 | "license": "MIT", 3692 | "dependencies": { 3693 | "argparse": "^1.0.7", 3694 | "esprima": "^4.0.0" 3695 | }, 3696 | "bin": { 3697 | "js-yaml": "bin/js-yaml.js" 3698 | } 3699 | }, 3700 | "node_modules/jsesc": { 3701 | "version": "3.1.0", 3702 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 3703 | "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 3704 | "dev": true, 3705 | "license": "MIT", 3706 | "bin": { 3707 | "jsesc": "bin/jsesc" 3708 | }, 3709 | "engines": { 3710 | "node": ">=6" 3711 | } 3712 | }, 3713 | "node_modules/json-parse-even-better-errors": { 3714 | "version": "2.3.1", 3715 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 3716 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 3717 | "dev": true, 3718 | "license": "MIT" 3719 | }, 3720 | "node_modules/json5": { 3721 | "version": "2.2.3", 3722 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 3723 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 3724 | "dev": true, 3725 | "license": "MIT", 3726 | "bin": { 3727 | "json5": "lib/cli.js" 3728 | }, 3729 | "engines": { 3730 | "node": ">=6" 3731 | } 3732 | }, 3733 | "node_modules/kleur": { 3734 | "version": "3.0.3", 3735 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", 3736 | "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", 3737 | "dev": true, 3738 | "license": "MIT", 3739 | "engines": { 3740 | "node": ">=6" 3741 | } 3742 | }, 3743 | "node_modules/leven": { 3744 | "version": "3.1.0", 3745 | "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", 3746 | "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", 3747 | "dev": true, 3748 | "license": "MIT", 3749 | "engines": { 3750 | "node": ">=6" 3751 | } 3752 | }, 3753 | "node_modules/lines-and-columns": { 3754 | "version": "1.2.4", 3755 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 3756 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 3757 | "dev": true, 3758 | "license": "MIT" 3759 | }, 3760 | "node_modules/locate-path": { 3761 | "version": "5.0.0", 3762 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 3763 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 3764 | "dev": true, 3765 | "license": "MIT", 3766 | "dependencies": { 3767 | "p-locate": "^4.1.0" 3768 | }, 3769 | "engines": { 3770 | "node": ">=8" 3771 | } 3772 | }, 3773 | "node_modules/lodash.memoize": { 3774 | "version": "4.1.2", 3775 | "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", 3776 | "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", 3777 | "dev": true, 3778 | "license": "MIT" 3779 | }, 3780 | "node_modules/lru-cache": { 3781 | "version": "5.1.1", 3782 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 3783 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 3784 | "dev": true, 3785 | "license": "ISC", 3786 | "dependencies": { 3787 | "yallist": "^3.0.2" 3788 | } 3789 | }, 3790 | "node_modules/make-dir": { 3791 | "version": "4.0.0", 3792 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 3793 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 3794 | "dev": true, 3795 | "license": "MIT", 3796 | "dependencies": { 3797 | "semver": "^7.5.3" 3798 | }, 3799 | "engines": { 3800 | "node": ">=10" 3801 | }, 3802 | "funding": { 3803 | "url": "https://github.com/sponsors/sindresorhus" 3804 | } 3805 | }, 3806 | "node_modules/make-dir/node_modules/semver": { 3807 | "version": "7.6.3", 3808 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 3809 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 3810 | "dev": true, 3811 | "license": "ISC", 3812 | "bin": { 3813 | "semver": "bin/semver.js" 3814 | }, 3815 | "engines": { 3816 | "node": ">=10" 3817 | } 3818 | }, 3819 | "node_modules/make-error": { 3820 | "version": "1.3.6", 3821 | "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", 3822 | "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", 3823 | "dev": true, 3824 | "license": "ISC" 3825 | }, 3826 | "node_modules/makeerror": { 3827 | "version": "1.0.12", 3828 | "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", 3829 | "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", 3830 | "dev": true, 3831 | "license": "BSD-3-Clause", 3832 | "dependencies": { 3833 | "tmpl": "1.0.5" 3834 | } 3835 | }, 3836 | "node_modules/merge-stream": { 3837 | "version": "2.0.0", 3838 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 3839 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 3840 | "dev": true, 3841 | "license": "MIT" 3842 | }, 3843 | "node_modules/micromatch": { 3844 | "version": "4.0.8", 3845 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 3846 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 3847 | "dev": true, 3848 | "license": "MIT", 3849 | "dependencies": { 3850 | "braces": "^3.0.3", 3851 | "picomatch": "^2.3.1" 3852 | }, 3853 | "engines": { 3854 | "node": ">=8.6" 3855 | } 3856 | }, 3857 | "node_modules/mime-db": { 3858 | "version": "1.52.0", 3859 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 3860 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 3861 | "license": "MIT", 3862 | "engines": { 3863 | "node": ">= 0.6" 3864 | } 3865 | }, 3866 | "node_modules/mime-types": { 3867 | "version": "2.1.35", 3868 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 3869 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 3870 | "license": "MIT", 3871 | "dependencies": { 3872 | "mime-db": "1.52.0" 3873 | }, 3874 | "engines": { 3875 | "node": ">= 0.6" 3876 | } 3877 | }, 3878 | "node_modules/mimic-fn": { 3879 | "version": "2.1.0", 3880 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3881 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3882 | "dev": true, 3883 | "license": "MIT", 3884 | "engines": { 3885 | "node": ">=6" 3886 | } 3887 | }, 3888 | "node_modules/minimatch": { 3889 | "version": "3.1.2", 3890 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3891 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3892 | "dev": true, 3893 | "license": "ISC", 3894 | "dependencies": { 3895 | "brace-expansion": "^1.1.7" 3896 | }, 3897 | "engines": { 3898 | "node": "*" 3899 | } 3900 | }, 3901 | "node_modules/minipass": { 3902 | "version": "7.1.2", 3903 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 3904 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 3905 | "license": "ISC", 3906 | "engines": { 3907 | "node": ">=16 || 14 >=14.17" 3908 | } 3909 | }, 3910 | "node_modules/ms": { 3911 | "version": "2.1.3", 3912 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 3913 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 3914 | "license": "MIT" 3915 | }, 3916 | "node_modules/natural-compare": { 3917 | "version": "1.4.0", 3918 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3919 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3920 | "dev": true, 3921 | "license": "MIT" 3922 | }, 3923 | "node_modules/node-domexception": { 3924 | "version": "1.0.0", 3925 | "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", 3926 | "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", 3927 | "funding": [ 3928 | { 3929 | "type": "github", 3930 | "url": "https://github.com/sponsors/jimmywarting" 3931 | }, 3932 | { 3933 | "type": "github", 3934 | "url": "https://paypal.me/jimmywarting" 3935 | } 3936 | ], 3937 | "license": "MIT", 3938 | "engines": { 3939 | "node": ">=10.5.0" 3940 | } 3941 | }, 3942 | "node_modules/node-fetch": { 3943 | "version": "2.7.0", 3944 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 3945 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 3946 | "license": "MIT", 3947 | "dependencies": { 3948 | "whatwg-url": "^5.0.0" 3949 | }, 3950 | "engines": { 3951 | "node": "4.x || >=6.0.0" 3952 | }, 3953 | "peerDependencies": { 3954 | "encoding": "^0.1.0" 3955 | }, 3956 | "peerDependenciesMeta": { 3957 | "encoding": { 3958 | "optional": true 3959 | } 3960 | } 3961 | }, 3962 | "node_modules/node-int64": { 3963 | "version": "0.4.0", 3964 | "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", 3965 | "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", 3966 | "dev": true, 3967 | "license": "MIT" 3968 | }, 3969 | "node_modules/node-releases": { 3970 | "version": "2.0.19", 3971 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 3972 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 3973 | "dev": true, 3974 | "license": "MIT" 3975 | }, 3976 | "node_modules/normalize-path": { 3977 | "version": "3.0.0", 3978 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3979 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3980 | "dev": true, 3981 | "license": "MIT", 3982 | "engines": { 3983 | "node": ">=0.10.0" 3984 | } 3985 | }, 3986 | "node_modules/npm-run-path": { 3987 | "version": "4.0.1", 3988 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3989 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3990 | "dev": true, 3991 | "license": "MIT", 3992 | "dependencies": { 3993 | "path-key": "^3.0.0" 3994 | }, 3995 | "engines": { 3996 | "node": ">=8" 3997 | } 3998 | }, 3999 | "node_modules/once": { 4000 | "version": "1.4.0", 4001 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 4002 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 4003 | "dev": true, 4004 | "license": "ISC", 4005 | "dependencies": { 4006 | "wrappy": "1" 4007 | } 4008 | }, 4009 | "node_modules/onetime": { 4010 | "version": "5.1.2", 4011 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 4012 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 4013 | "dev": true, 4014 | "license": "MIT", 4015 | "dependencies": { 4016 | "mimic-fn": "^2.1.0" 4017 | }, 4018 | "engines": { 4019 | "node": ">=6" 4020 | }, 4021 | "funding": { 4022 | "url": "https://github.com/sponsors/sindresorhus" 4023 | } 4024 | }, 4025 | "node_modules/p-limit": { 4026 | "version": "3.1.0", 4027 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 4028 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 4029 | "dev": true, 4030 | "license": "MIT", 4031 | "dependencies": { 4032 | "yocto-queue": "^0.1.0" 4033 | }, 4034 | "engines": { 4035 | "node": ">=10" 4036 | }, 4037 | "funding": { 4038 | "url": "https://github.com/sponsors/sindresorhus" 4039 | } 4040 | }, 4041 | "node_modules/p-locate": { 4042 | "version": "4.1.0", 4043 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 4044 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 4045 | "dev": true, 4046 | "license": "MIT", 4047 | "dependencies": { 4048 | "p-limit": "^2.2.0" 4049 | }, 4050 | "engines": { 4051 | "node": ">=8" 4052 | } 4053 | }, 4054 | "node_modules/p-locate/node_modules/p-limit": { 4055 | "version": "2.3.0", 4056 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 4057 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 4058 | "dev": true, 4059 | "license": "MIT", 4060 | "dependencies": { 4061 | "p-try": "^2.0.0" 4062 | }, 4063 | "engines": { 4064 | "node": ">=6" 4065 | }, 4066 | "funding": { 4067 | "url": "https://github.com/sponsors/sindresorhus" 4068 | } 4069 | }, 4070 | "node_modules/p-try": { 4071 | "version": "2.2.0", 4072 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 4073 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 4074 | "dev": true, 4075 | "license": "MIT", 4076 | "engines": { 4077 | "node": ">=6" 4078 | } 4079 | }, 4080 | "node_modules/package-json-from-dist": { 4081 | "version": "1.0.1", 4082 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 4083 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 4084 | "license": "BlueOak-1.0.0" 4085 | }, 4086 | "node_modules/parse-json": { 4087 | "version": "5.2.0", 4088 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 4089 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 4090 | "dev": true, 4091 | "license": "MIT", 4092 | "dependencies": { 4093 | "@babel/code-frame": "^7.0.0", 4094 | "error-ex": "^1.3.1", 4095 | "json-parse-even-better-errors": "^2.3.0", 4096 | "lines-and-columns": "^1.1.6" 4097 | }, 4098 | "engines": { 4099 | "node": ">=8" 4100 | }, 4101 | "funding": { 4102 | "url": "https://github.com/sponsors/sindresorhus" 4103 | } 4104 | }, 4105 | "node_modules/path-exists": { 4106 | "version": "4.0.0", 4107 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 4108 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 4109 | "dev": true, 4110 | "license": "MIT", 4111 | "engines": { 4112 | "node": ">=8" 4113 | } 4114 | }, 4115 | "node_modules/path-is-absolute": { 4116 | "version": "1.0.1", 4117 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 4118 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 4119 | "dev": true, 4120 | "license": "MIT", 4121 | "engines": { 4122 | "node": ">=0.10.0" 4123 | } 4124 | }, 4125 | "node_modules/path-key": { 4126 | "version": "3.1.1", 4127 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 4128 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 4129 | "license": "MIT", 4130 | "engines": { 4131 | "node": ">=8" 4132 | } 4133 | }, 4134 | "node_modules/path-parse": { 4135 | "version": "1.0.7", 4136 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 4137 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 4138 | "dev": true, 4139 | "license": "MIT" 4140 | }, 4141 | "node_modules/path-scurry": { 4142 | "version": "1.11.1", 4143 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 4144 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 4145 | "license": "BlueOak-1.0.0", 4146 | "dependencies": { 4147 | "lru-cache": "^10.2.0", 4148 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 4149 | }, 4150 | "engines": { 4151 | "node": ">=16 || 14 >=14.18" 4152 | }, 4153 | "funding": { 4154 | "url": "https://github.com/sponsors/isaacs" 4155 | } 4156 | }, 4157 | "node_modules/path-scurry/node_modules/lru-cache": { 4158 | "version": "10.4.3", 4159 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 4160 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 4161 | "license": "ISC" 4162 | }, 4163 | "node_modules/picocolors": { 4164 | "version": "1.1.1", 4165 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 4166 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 4167 | "dev": true, 4168 | "license": "ISC" 4169 | }, 4170 | "node_modules/picomatch": { 4171 | "version": "2.3.1", 4172 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 4173 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 4174 | "dev": true, 4175 | "license": "MIT", 4176 | "engines": { 4177 | "node": ">=8.6" 4178 | }, 4179 | "funding": { 4180 | "url": "https://github.com/sponsors/jonschlinkert" 4181 | } 4182 | }, 4183 | "node_modules/pirates": { 4184 | "version": "4.0.6", 4185 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 4186 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 4187 | "dev": true, 4188 | "license": "MIT", 4189 | "engines": { 4190 | "node": ">= 6" 4191 | } 4192 | }, 4193 | "node_modules/pkg-dir": { 4194 | "version": "4.2.0", 4195 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 4196 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 4197 | "dev": true, 4198 | "license": "MIT", 4199 | "dependencies": { 4200 | "find-up": "^4.0.0" 4201 | }, 4202 | "engines": { 4203 | "node": ">=8" 4204 | } 4205 | }, 4206 | "node_modules/pretty-format": { 4207 | "version": "29.7.0", 4208 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", 4209 | "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", 4210 | "dev": true, 4211 | "license": "MIT", 4212 | "dependencies": { 4213 | "@jest/schemas": "^29.6.3", 4214 | "ansi-styles": "^5.0.0", 4215 | "react-is": "^18.0.0" 4216 | }, 4217 | "engines": { 4218 | "node": "^14.15.0 || ^16.10.0 || >=18.0.0" 4219 | } 4220 | }, 4221 | "node_modules/pretty-format/node_modules/ansi-styles": { 4222 | "version": "5.2.0", 4223 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", 4224 | "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", 4225 | "dev": true, 4226 | "license": "MIT", 4227 | "engines": { 4228 | "node": ">=10" 4229 | }, 4230 | "funding": { 4231 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4232 | } 4233 | }, 4234 | "node_modules/prompts": { 4235 | "version": "2.4.2", 4236 | "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", 4237 | "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", 4238 | "dev": true, 4239 | "license": "MIT", 4240 | "dependencies": { 4241 | "kleur": "^3.0.3", 4242 | "sisteransi": "^1.0.5" 4243 | }, 4244 | "engines": { 4245 | "node": ">= 6" 4246 | } 4247 | }, 4248 | "node_modules/pure-rand": { 4249 | "version": "6.1.0", 4250 | "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", 4251 | "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", 4252 | "dev": true, 4253 | "funding": [ 4254 | { 4255 | "type": "individual", 4256 | "url": "https://github.com/sponsors/dubzzz" 4257 | }, 4258 | { 4259 | "type": "opencollective", 4260 | "url": "https://opencollective.com/fast-check" 4261 | } 4262 | ], 4263 | "license": "MIT" 4264 | }, 4265 | "node_modules/raw-body": { 4266 | "version": "3.0.0", 4267 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz", 4268 | "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", 4269 | "license": "MIT", 4270 | "dependencies": { 4271 | "bytes": "3.1.2", 4272 | "http-errors": "2.0.0", 4273 | "iconv-lite": "0.6.3", 4274 | "unpipe": "1.0.0" 4275 | }, 4276 | "engines": { 4277 | "node": ">= 0.8" 4278 | } 4279 | }, 4280 | "node_modules/react-is": { 4281 | "version": "18.3.1", 4282 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", 4283 | "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", 4284 | "dev": true, 4285 | "license": "MIT" 4286 | }, 4287 | "node_modules/require-directory": { 4288 | "version": "2.1.1", 4289 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 4290 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 4291 | "dev": true, 4292 | "license": "MIT", 4293 | "engines": { 4294 | "node": ">=0.10.0" 4295 | } 4296 | }, 4297 | "node_modules/resolve": { 4298 | "version": "1.22.10", 4299 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 4300 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 4301 | "dev": true, 4302 | "license": "MIT", 4303 | "dependencies": { 4304 | "is-core-module": "^2.16.0", 4305 | "path-parse": "^1.0.7", 4306 | "supports-preserve-symlinks-flag": "^1.0.0" 4307 | }, 4308 | "bin": { 4309 | "resolve": "bin/resolve" 4310 | }, 4311 | "engines": { 4312 | "node": ">= 0.4" 4313 | }, 4314 | "funding": { 4315 | "url": "https://github.com/sponsors/ljharb" 4316 | } 4317 | }, 4318 | "node_modules/resolve-cwd": { 4319 | "version": "3.0.0", 4320 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 4321 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 4322 | "dev": true, 4323 | "license": "MIT", 4324 | "dependencies": { 4325 | "resolve-from": "^5.0.0" 4326 | }, 4327 | "engines": { 4328 | "node": ">=8" 4329 | } 4330 | }, 4331 | "node_modules/resolve-from": { 4332 | "version": "5.0.0", 4333 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 4334 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 4335 | "dev": true, 4336 | "license": "MIT", 4337 | "engines": { 4338 | "node": ">=8" 4339 | } 4340 | }, 4341 | "node_modules/resolve-pkg-maps": { 4342 | "version": "1.0.0", 4343 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 4344 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 4345 | "dev": true, 4346 | "license": "MIT", 4347 | "funding": { 4348 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 4349 | } 4350 | }, 4351 | "node_modules/resolve.exports": { 4352 | "version": "2.0.3", 4353 | "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", 4354 | "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", 4355 | "dev": true, 4356 | "license": "MIT", 4357 | "engines": { 4358 | "node": ">=10" 4359 | } 4360 | }, 4361 | "node_modules/safer-buffer": { 4362 | "version": "2.1.2", 4363 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 4364 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 4365 | "license": "MIT" 4366 | }, 4367 | "node_modules/semver": { 4368 | "version": "6.3.1", 4369 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 4370 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 4371 | "dev": true, 4372 | "license": "ISC", 4373 | "bin": { 4374 | "semver": "bin/semver.js" 4375 | } 4376 | }, 4377 | "node_modules/setprototypeof": { 4378 | "version": "1.2.0", 4379 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 4380 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 4381 | "license": "ISC" 4382 | }, 4383 | "node_modules/shebang-command": { 4384 | "version": "2.0.0", 4385 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 4386 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 4387 | "license": "MIT", 4388 | "dependencies": { 4389 | "shebang-regex": "^3.0.0" 4390 | }, 4391 | "engines": { 4392 | "node": ">=8" 4393 | } 4394 | }, 4395 | "node_modules/shebang-regex": { 4396 | "version": "3.0.0", 4397 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 4398 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 4399 | "license": "MIT", 4400 | "engines": { 4401 | "node": ">=8" 4402 | } 4403 | }, 4404 | "node_modules/signal-exit": { 4405 | "version": "3.0.7", 4406 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 4407 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 4408 | "dev": true, 4409 | "license": "ISC" 4410 | }, 4411 | "node_modules/sisteransi": { 4412 | "version": "1.0.5", 4413 | "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", 4414 | "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", 4415 | "dev": true, 4416 | "license": "MIT" 4417 | }, 4418 | "node_modules/slash": { 4419 | "version": "3.0.0", 4420 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 4421 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 4422 | "dev": true, 4423 | "license": "MIT", 4424 | "engines": { 4425 | "node": ">=8" 4426 | } 4427 | }, 4428 | "node_modules/source-map": { 4429 | "version": "0.6.1", 4430 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 4431 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 4432 | "dev": true, 4433 | "license": "BSD-3-Clause", 4434 | "engines": { 4435 | "node": ">=0.10.0" 4436 | } 4437 | }, 4438 | "node_modules/source-map-support": { 4439 | "version": "0.5.13", 4440 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", 4441 | "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", 4442 | "dev": true, 4443 | "license": "MIT", 4444 | "dependencies": { 4445 | "buffer-from": "^1.0.0", 4446 | "source-map": "^0.6.0" 4447 | } 4448 | }, 4449 | "node_modules/sprintf-js": { 4450 | "version": "1.0.3", 4451 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 4452 | "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", 4453 | "dev": true, 4454 | "license": "BSD-3-Clause" 4455 | }, 4456 | "node_modules/stack-utils": { 4457 | "version": "2.0.6", 4458 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", 4459 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", 4460 | "dev": true, 4461 | "license": "MIT", 4462 | "dependencies": { 4463 | "escape-string-regexp": "^2.0.0" 4464 | }, 4465 | "engines": { 4466 | "node": ">=10" 4467 | } 4468 | }, 4469 | "node_modules/statuses": { 4470 | "version": "2.0.1", 4471 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 4472 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 4473 | "license": "MIT", 4474 | "engines": { 4475 | "node": ">= 0.8" 4476 | } 4477 | }, 4478 | "node_modules/string-length": { 4479 | "version": "4.0.2", 4480 | "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", 4481 | "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", 4482 | "dev": true, 4483 | "license": "MIT", 4484 | "dependencies": { 4485 | "char-regex": "^1.0.2", 4486 | "strip-ansi": "^6.0.0" 4487 | }, 4488 | "engines": { 4489 | "node": ">=10" 4490 | } 4491 | }, 4492 | "node_modules/string-width": { 4493 | "version": "4.2.3", 4494 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 4495 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 4496 | "license": "MIT", 4497 | "dependencies": { 4498 | "emoji-regex": "^8.0.0", 4499 | "is-fullwidth-code-point": "^3.0.0", 4500 | "strip-ansi": "^6.0.1" 4501 | }, 4502 | "engines": { 4503 | "node": ">=8" 4504 | } 4505 | }, 4506 | "node_modules/string-width-cjs": { 4507 | "name": "string-width", 4508 | "version": "4.2.3", 4509 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 4510 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 4511 | "license": "MIT", 4512 | "dependencies": { 4513 | "emoji-regex": "^8.0.0", 4514 | "is-fullwidth-code-point": "^3.0.0", 4515 | "strip-ansi": "^6.0.1" 4516 | }, 4517 | "engines": { 4518 | "node": ">=8" 4519 | } 4520 | }, 4521 | "node_modules/strip-ansi": { 4522 | "version": "6.0.1", 4523 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4524 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4525 | "license": "MIT", 4526 | "dependencies": { 4527 | "ansi-regex": "^5.0.1" 4528 | }, 4529 | "engines": { 4530 | "node": ">=8" 4531 | } 4532 | }, 4533 | "node_modules/strip-ansi-cjs": { 4534 | "name": "strip-ansi", 4535 | "version": "6.0.1", 4536 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4537 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4538 | "license": "MIT", 4539 | "dependencies": { 4540 | "ansi-regex": "^5.0.1" 4541 | }, 4542 | "engines": { 4543 | "node": ">=8" 4544 | } 4545 | }, 4546 | "node_modules/strip-bom": { 4547 | "version": "4.0.0", 4548 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", 4549 | "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", 4550 | "dev": true, 4551 | "license": "MIT", 4552 | "engines": { 4553 | "node": ">=8" 4554 | } 4555 | }, 4556 | "node_modules/strip-final-newline": { 4557 | "version": "2.0.0", 4558 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 4559 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 4560 | "dev": true, 4561 | "license": "MIT", 4562 | "engines": { 4563 | "node": ">=6" 4564 | } 4565 | }, 4566 | "node_modules/strip-json-comments": { 4567 | "version": "3.1.1", 4568 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 4569 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 4570 | "dev": true, 4571 | "license": "MIT", 4572 | "engines": { 4573 | "node": ">=8" 4574 | }, 4575 | "funding": { 4576 | "url": "https://github.com/sponsors/sindresorhus" 4577 | } 4578 | }, 4579 | "node_modules/supports-color": { 4580 | "version": "7.2.0", 4581 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4582 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4583 | "dev": true, 4584 | "license": "MIT", 4585 | "dependencies": { 4586 | "has-flag": "^4.0.0" 4587 | }, 4588 | "engines": { 4589 | "node": ">=8" 4590 | } 4591 | }, 4592 | "node_modules/supports-preserve-symlinks-flag": { 4593 | "version": "1.0.0", 4594 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 4595 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 4596 | "dev": true, 4597 | "license": "MIT", 4598 | "engines": { 4599 | "node": ">= 0.4" 4600 | }, 4601 | "funding": { 4602 | "url": "https://github.com/sponsors/ljharb" 4603 | } 4604 | }, 4605 | "node_modules/test-exclude": { 4606 | "version": "6.0.0", 4607 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", 4608 | "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", 4609 | "dev": true, 4610 | "license": "ISC", 4611 | "dependencies": { 4612 | "@istanbuljs/schema": "^0.1.2", 4613 | "glob": "^7.1.4", 4614 | "minimatch": "^3.0.4" 4615 | }, 4616 | "engines": { 4617 | "node": ">=8" 4618 | } 4619 | }, 4620 | "node_modules/tmpl": { 4621 | "version": "1.0.5", 4622 | "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", 4623 | "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", 4624 | "dev": true, 4625 | "license": "BSD-3-Clause" 4626 | }, 4627 | "node_modules/to-regex-range": { 4628 | "version": "5.0.1", 4629 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4630 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4631 | "dev": true, 4632 | "license": "MIT", 4633 | "dependencies": { 4634 | "is-number": "^7.0.0" 4635 | }, 4636 | "engines": { 4637 | "node": ">=8.0" 4638 | } 4639 | }, 4640 | "node_modules/toidentifier": { 4641 | "version": "1.0.1", 4642 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 4643 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 4644 | "license": "MIT", 4645 | "engines": { 4646 | "node": ">=0.6" 4647 | } 4648 | }, 4649 | "node_modules/tr46": { 4650 | "version": "0.0.3", 4651 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 4652 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 4653 | "license": "MIT" 4654 | }, 4655 | "node_modules/ts-jest": { 4656 | "version": "29.2.5", 4657 | "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.2.5.tgz", 4658 | "integrity": "sha512-KD8zB2aAZrcKIdGk4OwpJggeLcH1FgrICqDSROWqlnJXGCXK4Mn6FcdK2B6670Xr73lHMG1kHw8R87A0ecZ+vA==", 4659 | "dev": true, 4660 | "license": "MIT", 4661 | "dependencies": { 4662 | "bs-logger": "^0.2.6", 4663 | "ejs": "^3.1.10", 4664 | "fast-json-stable-stringify": "^2.1.0", 4665 | "jest-util": "^29.0.0", 4666 | "json5": "^2.2.3", 4667 | "lodash.memoize": "^4.1.2", 4668 | "make-error": "^1.3.6", 4669 | "semver": "^7.6.3", 4670 | "yargs-parser": "^21.1.1" 4671 | }, 4672 | "bin": { 4673 | "ts-jest": "cli.js" 4674 | }, 4675 | "engines": { 4676 | "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0" 4677 | }, 4678 | "peerDependencies": { 4679 | "@babel/core": ">=7.0.0-beta.0 <8", 4680 | "@jest/transform": "^29.0.0", 4681 | "@jest/types": "^29.0.0", 4682 | "babel-jest": "^29.0.0", 4683 | "jest": "^29.0.0", 4684 | "typescript": ">=4.3 <6" 4685 | }, 4686 | "peerDependenciesMeta": { 4687 | "@babel/core": { 4688 | "optional": true 4689 | }, 4690 | "@jest/transform": { 4691 | "optional": true 4692 | }, 4693 | "@jest/types": { 4694 | "optional": true 4695 | }, 4696 | "babel-jest": { 4697 | "optional": true 4698 | }, 4699 | "esbuild": { 4700 | "optional": true 4701 | } 4702 | } 4703 | }, 4704 | "node_modules/ts-jest/node_modules/semver": { 4705 | "version": "7.6.3", 4706 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 4707 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 4708 | "dev": true, 4709 | "license": "ISC", 4710 | "bin": { 4711 | "semver": "bin/semver.js" 4712 | }, 4713 | "engines": { 4714 | "node": ">=10" 4715 | } 4716 | }, 4717 | "node_modules/tsx": { 4718 | "version": "4.19.2", 4719 | "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.19.2.tgz", 4720 | "integrity": "sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==", 4721 | "dev": true, 4722 | "license": "MIT", 4723 | "dependencies": { 4724 | "esbuild": "~0.23.0", 4725 | "get-tsconfig": "^4.7.5" 4726 | }, 4727 | "bin": { 4728 | "tsx": "dist/cli.mjs" 4729 | }, 4730 | "engines": { 4731 | "node": ">=18.0.0" 4732 | }, 4733 | "optionalDependencies": { 4734 | "fsevents": "~2.3.3" 4735 | } 4736 | }, 4737 | "node_modules/type-detect": { 4738 | "version": "4.0.8", 4739 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", 4740 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", 4741 | "dev": true, 4742 | "license": "MIT", 4743 | "engines": { 4744 | "node": ">=4" 4745 | } 4746 | }, 4747 | "node_modules/type-fest": { 4748 | "version": "0.21.3", 4749 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 4750 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 4751 | "dev": true, 4752 | "license": "(MIT OR CC0-1.0)", 4753 | "engines": { 4754 | "node": ">=10" 4755 | }, 4756 | "funding": { 4757 | "url": "https://github.com/sponsors/sindresorhus" 4758 | } 4759 | }, 4760 | "node_modules/typescript": { 4761 | "version": "5.7.3", 4762 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", 4763 | "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", 4764 | "dev": true, 4765 | "license": "Apache-2.0", 4766 | "bin": { 4767 | "tsc": "bin/tsc", 4768 | "tsserver": "bin/tsserver" 4769 | }, 4770 | "engines": { 4771 | "node": ">=14.17" 4772 | } 4773 | }, 4774 | "node_modules/undici-types": { 4775 | "version": "5.26.5", 4776 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 4777 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 4778 | "license": "MIT" 4779 | }, 4780 | "node_modules/unpipe": { 4781 | "version": "1.0.0", 4782 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 4783 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 4784 | "license": "MIT", 4785 | "engines": { 4786 | "node": ">= 0.8" 4787 | } 4788 | }, 4789 | "node_modules/update-browserslist-db": { 4790 | "version": "1.1.2", 4791 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz", 4792 | "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==", 4793 | "dev": true, 4794 | "funding": [ 4795 | { 4796 | "type": "opencollective", 4797 | "url": "https://opencollective.com/browserslist" 4798 | }, 4799 | { 4800 | "type": "tidelift", 4801 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4802 | }, 4803 | { 4804 | "type": "github", 4805 | "url": "https://github.com/sponsors/ai" 4806 | } 4807 | ], 4808 | "license": "MIT", 4809 | "dependencies": { 4810 | "escalade": "^3.2.0", 4811 | "picocolors": "^1.1.1" 4812 | }, 4813 | "bin": { 4814 | "update-browserslist-db": "cli.js" 4815 | }, 4816 | "peerDependencies": { 4817 | "browserslist": ">= 4.21.0" 4818 | } 4819 | }, 4820 | "node_modules/v8-to-istanbul": { 4821 | "version": "9.3.0", 4822 | "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", 4823 | "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", 4824 | "dev": true, 4825 | "license": "ISC", 4826 | "dependencies": { 4827 | "@jridgewell/trace-mapping": "^0.3.12", 4828 | "@types/istanbul-lib-coverage": "^2.0.1", 4829 | "convert-source-map": "^2.0.0" 4830 | }, 4831 | "engines": { 4832 | "node": ">=10.12.0" 4833 | } 4834 | }, 4835 | "node_modules/walker": { 4836 | "version": "1.0.8", 4837 | "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", 4838 | "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", 4839 | "dev": true, 4840 | "license": "Apache-2.0", 4841 | "dependencies": { 4842 | "makeerror": "1.0.12" 4843 | } 4844 | }, 4845 | "node_modules/web-streams-polyfill": { 4846 | "version": "4.0.0-beta.3", 4847 | "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", 4848 | "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", 4849 | "license": "MIT", 4850 | "engines": { 4851 | "node": ">= 14" 4852 | } 4853 | }, 4854 | "node_modules/webidl-conversions": { 4855 | "version": "3.0.1", 4856 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 4857 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 4858 | "license": "BSD-2-Clause" 4859 | }, 4860 | "node_modules/whatwg-url": { 4861 | "version": "5.0.0", 4862 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 4863 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 4864 | "license": "MIT", 4865 | "dependencies": { 4866 | "tr46": "~0.0.3", 4867 | "webidl-conversions": "^3.0.0" 4868 | } 4869 | }, 4870 | "node_modules/which": { 4871 | "version": "2.0.2", 4872 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4873 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4874 | "license": "ISC", 4875 | "dependencies": { 4876 | "isexe": "^2.0.0" 4877 | }, 4878 | "bin": { 4879 | "node-which": "bin/node-which" 4880 | }, 4881 | "engines": { 4882 | "node": ">= 8" 4883 | } 4884 | }, 4885 | "node_modules/wrap-ansi": { 4886 | "version": "7.0.0", 4887 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4888 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4889 | "dev": true, 4890 | "license": "MIT", 4891 | "dependencies": { 4892 | "ansi-styles": "^4.0.0", 4893 | "string-width": "^4.1.0", 4894 | "strip-ansi": "^6.0.0" 4895 | }, 4896 | "engines": { 4897 | "node": ">=10" 4898 | }, 4899 | "funding": { 4900 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4901 | } 4902 | }, 4903 | "node_modules/wrap-ansi-cjs": { 4904 | "name": "wrap-ansi", 4905 | "version": "7.0.0", 4906 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4907 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4908 | "license": "MIT", 4909 | "dependencies": { 4910 | "ansi-styles": "^4.0.0", 4911 | "string-width": "^4.1.0", 4912 | "strip-ansi": "^6.0.0" 4913 | }, 4914 | "engines": { 4915 | "node": ">=10" 4916 | }, 4917 | "funding": { 4918 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4919 | } 4920 | }, 4921 | "node_modules/wrappy": { 4922 | "version": "1.0.2", 4923 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4924 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4925 | "dev": true, 4926 | "license": "ISC" 4927 | }, 4928 | "node_modules/write-file-atomic": { 4929 | "version": "4.0.2", 4930 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", 4931 | "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", 4932 | "dev": true, 4933 | "license": "ISC", 4934 | "dependencies": { 4935 | "imurmurhash": "^0.1.4", 4936 | "signal-exit": "^3.0.7" 4937 | }, 4938 | "engines": { 4939 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 4940 | } 4941 | }, 4942 | "node_modules/y18n": { 4943 | "version": "5.0.8", 4944 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 4945 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 4946 | "dev": true, 4947 | "license": "ISC", 4948 | "engines": { 4949 | "node": ">=10" 4950 | } 4951 | }, 4952 | "node_modules/yallist": { 4953 | "version": "3.1.1", 4954 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 4955 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 4956 | "dev": true, 4957 | "license": "ISC" 4958 | }, 4959 | "node_modules/yargs": { 4960 | "version": "17.7.2", 4961 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 4962 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 4963 | "dev": true, 4964 | "license": "MIT", 4965 | "dependencies": { 4966 | "cliui": "^8.0.1", 4967 | "escalade": "^3.1.1", 4968 | "get-caller-file": "^2.0.5", 4969 | "require-directory": "^2.1.1", 4970 | "string-width": "^4.2.3", 4971 | "y18n": "^5.0.5", 4972 | "yargs-parser": "^21.1.1" 4973 | }, 4974 | "engines": { 4975 | "node": ">=12" 4976 | } 4977 | }, 4978 | "node_modules/yargs-parser": { 4979 | "version": "21.1.1", 4980 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 4981 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 4982 | "dev": true, 4983 | "license": "ISC", 4984 | "engines": { 4985 | "node": ">=12" 4986 | } 4987 | }, 4988 | "node_modules/yocto-queue": { 4989 | "version": "0.1.0", 4990 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4991 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4992 | "dev": true, 4993 | "license": "MIT", 4994 | "engines": { 4995 | "node": ">=10" 4996 | }, 4997 | "funding": { 4998 | "url": "https://github.com/sponsors/sindresorhus" 4999 | } 5000 | }, 5001 | "node_modules/zod": { 5002 | "version": "3.24.1", 5003 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz", 5004 | "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==", 5005 | "license": "MIT", 5006 | "funding": { 5007 | "url": "https://github.com/sponsors/colinhacks" 5008 | } 5009 | }, 5010 | "node_modules/zod-to-json-schema": { 5011 | "version": "3.24.1", 5012 | "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.1.tgz", 5013 | "integrity": "sha512-3h08nf3Vw3Wl3PK+q3ow/lIil81IT2Oa7YpQyUUDsEWbXveMesdfK1xBd2RhCkynwZndAxixji/7SYJJowr62w==", 5014 | "license": "ISC", 5015 | "peerDependencies": { 5016 | "zod": "^3.24.1" 5017 | } 5018 | } 5019 | } 5020 | } 5021 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mini-coder", 3 | "version": "0.1.0", 4 | "main": "dist/cli.js", 5 | "bin": { 6 | "mini-coder": "./dist/cli.js" 7 | }, 8 | "type": "module", 9 | "scripts": { 10 | "test": "jest", 11 | "build": "tsc --project tsconfig.json", 12 | "start": "node ./dist/cli.js" 13 | }, 14 | "author": "laiso", 15 | "license": "MIT", 16 | "description": "", 17 | "dependencies": { 18 | "@anthropic-ai/sdk": "latest", 19 | "@modelcontextprotocol/sdk": "latest", 20 | "@modelcontextprotocol/server-filesystem": "^0.6.2", 21 | "commander": "latest" 22 | }, 23 | "devDependencies": { 24 | "@types/jest": "^29.5.14", 25 | "@types/node": "^22.10.5", 26 | "jest": "^29.7.0", 27 | "ts-jest": "^29.2.5", 28 | "tsx": "latest", 29 | "typescript": "^5.7.3" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- 1 | import Anthropic from '@anthropic-ai/sdk'; 2 | import { CallToolResultSchema, McpError } from '@modelcontextprotocol/sdk/types.js'; 3 | import { Command } from 'commander'; 4 | import { initializeToolsAndClients } from './client-manager.js'; 5 | import { MCPServersConfig } from './types.js'; 6 | import path from 'path'; 7 | import fs from 'fs'; 8 | 9 | const MODEL_NAME = 'claude-3-5-sonnet-latest'; 10 | 11 | function processMessages( 12 | messages: Anthropic.MessageParam[], 13 | currentToolUseBlock: Anthropic.ToolUseBlock | undefined 14 | ): { updatedMessages: Anthropic.MessageParam[]; continue: boolean } { 15 | if (!currentToolUseBlock) { 16 | return { updatedMessages: messages, continue: false }; 17 | } 18 | const updatedMessages = [...messages]; 19 | return { updatedMessages, continue: true }; 20 | } 21 | 22 | async function handleMessageContent( 23 | message: Anthropic.Message, 24 | messages: Anthropic.MessageParam[] 25 | ): Promise<{ toolUseBlock: Anthropic.ToolUseBlock | undefined; messages: Anthropic.MessageParam[] }> { 26 | let currentToolUseBlock: Anthropic.ToolUseBlock | undefined; 27 | const updatedMessages = [...messages]; // Create new array to avoid mutation 28 | 29 | for (const contentBlock of message.content) { 30 | if (contentBlock.type === 'text') { 31 | updatedMessages.push({ 32 | role: 'assistant', 33 | content: contentBlock.text, 34 | }); 35 | console.log('Assistant:', contentBlock.text); 36 | } else if (contentBlock.type === 'tool_use') { 37 | currentToolUseBlock = contentBlock; 38 | } 39 | } 40 | 41 | return { 42 | toolUseBlock: currentToolUseBlock, 43 | messages: updatedMessages 44 | }; 45 | } 46 | 47 | async function main(userQuestion: string, projectDirectory: string, serverConfig: MCPServersConfig, maxIterations = 10) { 48 | const anthropicClient = new Anthropic(); // gets API Key from environment variable ANTHROPIC_API_KEY 49 | 50 | const { allTools, toolServerMap } = await initializeToolsAndClients(serverConfig); 51 | 52 | let conversationMessages: Anthropic.MessageParam[] = []; 53 | 54 | const userMessage: Anthropic.MessageParam = { 55 | role: 'user', 56 | content: userQuestion, 57 | }; 58 | 59 | conversationMessages.push(userMessage); 60 | 61 | const systemMessage = `You are Mini Coder, a highly skilled software engineer with extensive knowledge in various programming languages, frameworks, design patterns, and best practices. 62 | Current Working Directory: ${projectDirectory} 63 | For more information about tasks, you can read the documentation in the docs/ directory. 64 | `; 65 | 66 | let message = await anthropicClient.messages.create({ 67 | model: MODEL_NAME, 68 | max_tokens: 2024, 69 | temperature: 0.0, 70 | system: systemMessage, 71 | messages: conversationMessages, 72 | tools: allTools, 73 | }); 74 | 75 | let { toolUseBlock, messages } = await handleMessageContent(message, conversationMessages); 76 | conversationMessages = messages; 77 | let currentToolUseBlock = toolUseBlock; 78 | 79 | let iterationCount = 0; 80 | while (currentToolUseBlock && iterationCount < maxIterations) { 81 | iterationCount++; 82 | if (currentToolUseBlock) { 83 | console.log({ currentToolUseBlock }); 84 | } 85 | const { updatedMessages, continue: shouldContinue } = processMessages(conversationMessages, currentToolUseBlock); 86 | conversationMessages = updatedMessages; 87 | if (!shouldContinue) break; 88 | 89 | const mcpClient = toolServerMap.get(currentToolUseBlock.name); 90 | if (!mcpClient) { 91 | throw new Error(`Tool server not found for tool ${currentToolUseBlock.name}`); 92 | } 93 | 94 | let toolResult; 95 | try { 96 | toolResult = await mcpClient.callTool( 97 | { 98 | name: currentToolUseBlock.name, 99 | arguments: currentToolUseBlock.input as { [x: string]: unknown }, 100 | }, 101 | CallToolResultSchema, 102 | ); 103 | } catch (error) { 104 | console.error('Error calling tool:', error); 105 | const mcpError = new McpError((error as any).code, (error as any).message, (error as any).data); 106 | conversationMessages.push({ 107 | role: 'user', 108 | content: `ToolUser: ${JSON.stringify(currentToolUseBlock)}, Error: ${mcpError.message}`, 109 | }); 110 | currentToolUseBlock = undefined; 111 | continue; 112 | } 113 | 114 | for (const resultContent of toolResult.content as any[]) { 115 | console.log('Tool Result:', resultContent.text.slice(0, 255)); 116 | const userMessage: Anthropic.MessageParam = { 117 | role: 'user', 118 | content: resultContent.text, 119 | }; 120 | conversationMessages.push(userMessage); 121 | } 122 | 123 | message = await anthropicClient.messages.create({ 124 | model: MODEL_NAME, 125 | max_tokens: 2024, 126 | temperature: 0.0, 127 | system: systemMessage, 128 | messages: conversationMessages, 129 | tools: allTools, 130 | }); 131 | 132 | currentToolUseBlock = await handleMessageContent(message, conversationMessages).then(result => { 133 | conversationMessages = result.messages; 134 | return result.toolUseBlock; 135 | }); 136 | } 137 | 138 | const mcpClients = new Set(toolServerMap.values()); 139 | for (const client of mcpClients) { 140 | await client.close(); 141 | console.log('Closed.'); 142 | } 143 | process.exit(0); 144 | } 145 | 146 | const program = new Command(); 147 | program 148 | .option('-p, --path ', 'project root directory path', process.cwd()) 149 | .option('-i, --instruction ', 'path to instruction file') 150 | .option('-e, --entry ', 'entry point file path') 151 | .parse(process.argv); 152 | 153 | const options = program.opts(); 154 | const projectRootDirectory = path.resolve(options.path); 155 | 156 | // Verify directory exists 157 | if (!fs.existsSync(projectRootDirectory) || !fs.statSync(projectRootDirectory).isDirectory()) { 158 | console.error(`Error: ${projectRootDirectory} is not a valid directory`); 159 | process.exit(1); 160 | } 161 | 162 | if (!options.instruction) { 163 | console.error('Error: Instruction file path is required'); 164 | process.exit(1); 165 | } 166 | 167 | let instruction = ''; 168 | if (fs.existsSync(options.instruction) && fs.statSync(options.instruction).isFile()) { 169 | const instructionFilePath = path.resolve(options.instruction); 170 | instruction = fs.readFileSync(instructionFilePath, 'utf-8'); 171 | } else { 172 | instruction = options.instruction.trim(); 173 | } 174 | console.log('Instruction:', instruction.slice(0, 255)); 175 | 176 | // Verify entry point file exists if provided 177 | const entryPoint = options.entry ? path.resolve(options.entry) : undefined; 178 | if (entryPoint && (!fs.existsSync(entryPoint) || !fs.statSync(entryPoint).isFile())) { 179 | console.error(`Error: ${entryPoint} is not a valid file`); 180 | process.exit(1); 181 | } 182 | 183 | const serverConfiguration = { 184 | mcpServers: { 185 | filesystem: { 186 | command: 'npx', 187 | args: ['-y', '@modelcontextprotocol/server-filesystem', projectRootDirectory], 188 | }, 189 | github: { 190 | command: 'docker', 191 | args: [ 192 | 'run', 193 | '-i', 194 | '--rm', 195 | '-e', 196 | 'GITHUB_PERSONAL_ACCESS_TOKEN', 197 | 'mcp/github' 198 | ], 199 | env: { 200 | GITHUB_PERSONAL_ACCESS_TOKEN: process.env.GITHUB_PERSONAL_ACCESS_TOKEN || '', 201 | }, 202 | } 203 | }, 204 | }; 205 | 206 | const eventPayload = process.env.GITHUB_EVENT_PATH 207 | ? JSON.parse(fs.readFileSync(process.env.GITHUB_EVENT_PATH, 'utf8')) 208 | : {}; 209 | 210 | const issueNumber = eventPayload?.issue?.number || 'N/A'; 211 | 212 | let initialInstruction = ''; 213 | try { 214 | initialInstruction = ` 215 | ENTRY_POINT: ${entryPoint || 'N/A'} 216 | GITHUB_REPOSITORY: ${process.env.GITHUB_REPOSITORY || 'N/A'} 217 | GITHUB_ISSUE_NUMBER: ${issueNumber} 218 | === 219 | ${instruction} 220 | `; 221 | } catch (error) { 222 | console.error(`Error reading instruction file: ${(error as Error).message}`); 223 | process.exit(1); 224 | } 225 | 226 | export default main(initialInstruction, projectRootDirectory, serverConfiguration, 10); 227 | -------------------------------------------------------------------------------- /src/client-manager.ts: -------------------------------------------------------------------------------- 1 | import { Client } from '@modelcontextprotocol/sdk/client/index.js'; 2 | import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'; 3 | import Anthropic from '@anthropic-ai/sdk'; 4 | import { MCPServersConfig } from './types.js'; 5 | 6 | export async function initializeToolsAndClients(config: MCPServersConfig): Promise<{ 7 | allTools: Anthropic.Tool[], 8 | toolServerMap: Map, 9 | }> { 10 | let allTools: Anthropic.Tool[] = []; 11 | const toolServerMap = new Map(); 12 | 13 | // Initialize clients 14 | for (const key in config.mcpServers) { 15 | // Skip GitHub MCP server if GITHUB_PERSONAL_ACCESS_TOKEN is not defined 16 | if (key === 'github' && !process.env.GITHUB_PERSONAL_ACCESS_TOKEN) { 17 | console.log('Skipping GitHub MCP server initialization: GITHUB_PERSONAL_ACCESS_TOKEN is not defined'); 18 | continue; 19 | } 20 | 21 | const params = config.mcpServers[key]; 22 | const client = new Client( 23 | { 24 | name: "mini-coder", 25 | version: '0.1.0', 26 | }, 27 | { 28 | capabilities: { 29 | sampling: {}, 30 | }, 31 | }, 32 | ); 33 | 34 | await client.connect(new StdioClientTransport(params)); 35 | 36 | const toolList = await client.listTools(); 37 | const tools = toolList.tools.map((tool) => { 38 | if (toolServerMap.has(tool.name)) { 39 | console.warn(`Warning: Tool name "${tool.name}" is already registered. Overwriting previous registration.`); 40 | } 41 | toolServerMap.set(tool.name, client); 42 | return { 43 | name: tool.name, 44 | description: tool.description, 45 | input_schema: tool.inputSchema, 46 | }; 47 | }); 48 | 49 | allTools = allTools.concat(tools); 50 | } 51 | 52 | return { allTools, toolServerMap }; 53 | } -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- 1 | export type MCPServersConfig = { 2 | mcpServers: Record 6 | }>; 7 | }; 8 | 9 | export const defaultConfig: MCPServersConfig = { 10 | mcpServers: { 11 | filesystem: { 12 | command: 'npx', 13 | args: ['-y', '@modelcontextprotocol/server-filesystem'], 14 | }, 15 | }, 16 | }; -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | import { Client } from '@modelcontextprotocol/sdk/client/index.js'; 2 | import Anthropic from '@anthropic-ai/sdk'; 3 | 4 | export type MCPServersConfig = { 5 | mcpServers: Record 9 | }>; 10 | }; 11 | 12 | export type ToolsAndClients = { 13 | allTools: Anthropic.Tool[], 14 | toolServerMap: Map, 15 | }; -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2017", 4 | "module": "esnext", 5 | "moduleResolution": "node", 6 | "outDir": "./dist", 7 | "rootDir": "./src", 8 | 9 | "strict": true, 10 | "esModuleInterop": true, 11 | "skipLibCheck": true, 12 | "forceConsistentCasingInFileNames": true, 13 | "types": ["jest", "node"] 14 | }, 15 | "include": ["src/**/*"], 16 | "exclude": ["node_modules", "**/*.spec.ts"] 17 | } 18 | --------------------------------------------------------------------------------