├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── docker-publish.yml │ └── node.js.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── compose.yaml ├── env.example ├── package-lock.json ├── package.json ├── src ├── config │ └── config.js ├── controllers │ └── artistController.js ├── routes │ └── artistRoutes.js ├── server.js └── services │ ├── fetchArtistMusicBrainzID.js │ └── fetchData.js ├── test └── unit │ └── envCheck.test.js └── vitest.config.js /.dockerignore: -------------------------------------------------------------------------------- 1 | # Include any files or directories that you don't want to be copied to your 2 | # container here (e.g., local build artifacts, temporary files, etc.). 3 | # 4 | # For more help, visit the .dockerignore file reference guide at 5 | # https://docs.docker.com/go/build-context-dockerignore/ 6 | 7 | **/.classpath 8 | **/.dockerignore 9 | **/.env 10 | **/.git 11 | **/.gitignore 12 | **/.project 13 | **/.settings 14 | **/.toolstarget 15 | **/.vs 16 | **/.vscode 17 | **/.next 18 | **/.cache 19 | **/*.*proj.user 20 | **/*.dbmdl 21 | **/*.jfm 22 | **/charts 23 | **/docker-compose* 24 | **/compose.y*ml 25 | **/Dockerfile* 26 | **/node_modules 27 | **/npm-debug.log 28 | **/obj 29 | **/secrets.dev.yaml 30 | **/values.dev.yaml 31 | **/build 32 | **/dist 33 | **/coverage 34 | **/*.lcov 35 | LICENSE 36 | README.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | 32 | **Additional context** 33 | Add any other context about the problem here. 34 | -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- 1 | name: Docker 2 | 3 | # This workflow uses actions that are not certified by GitHub. 4 | # They are provided by a third-party and are governed by 5 | # separate terms of service, privacy policy, and support 6 | # documentation. 7 | 8 | on: 9 | push: 10 | branches: [ "master" ] 11 | # Publish semver tags as releases. 12 | tags: [ 'v*.*.*' ] 13 | pull_request: 14 | branches: [ "master" ] 15 | 16 | env: 17 | # Use docker.io for Docker Hub if empty 18 | REGISTRY: ghcr.io 19 | # github.repository as / 20 | IMAGE_NAME: ${{ github.repository }} 21 | 22 | 23 | jobs: 24 | build: 25 | 26 | runs-on: ubuntu-latest 27 | permissions: 28 | contents: read 29 | packages: write 30 | # This is used to complete the identity challenge 31 | # with sigstore/fulcio when running outside of PRs. 32 | id-token: write 33 | 34 | steps: 35 | - name: Checkout repository 36 | uses: actions/checkout@v4 37 | 38 | # Install the cosign tool except on PR 39 | # https://github.com/sigstore/cosign-installer 40 | - name: Install cosign 41 | if: github.event_name != 'pull_request' 42 | uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0 43 | with: 44 | cosign-release: 'v2.2.4' 45 | 46 | # Set up BuildKit Docker container builder to be able to build 47 | # multi-platform images and export cache 48 | # https://github.com/docker/setup-buildx-action 49 | - name: Set up Docker Buildx 50 | uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 51 | 52 | # Login against a Docker registry except on PR 53 | # https://github.com/docker/login-action 54 | - name: Log into registry ${{ env.REGISTRY }} 55 | if: github.event_name != 'pull_request' 56 | uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 57 | with: 58 | registry: ${{ env.REGISTRY }} 59 | username: ${{ github.actor }} 60 | password: ${{ secrets.GITHUB_TOKEN }} 61 | 62 | # Extract metadata (tags, labels) for Docker 63 | # https://github.com/docker/metadata-action 64 | - name: Extract Docker metadata 65 | id: meta 66 | uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 67 | with: 68 | images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} 69 | 70 | # Build and push Docker image with Buildx (don't push on PR) 71 | # https://github.com/docker/build-push-action 72 | - name: Build and push Docker image 73 | id: build-and-push 74 | uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 75 | with: 76 | context: . 77 | push: ${{ github.event_name != 'pull_request' }} 78 | tags: ${{ steps.meta.outputs.tags }} 79 | labels: ${{ steps.meta.outputs.labels }} 80 | cache-from: type=gha 81 | cache-to: type=gha,mode=max 82 | 83 | # Sign the resulting Docker image digest except on PRs. 84 | # This will only write to the public Rekor transparency log when the Docker 85 | # repository is public to avoid leaking data. If you would like to publish 86 | # transparency data even for private images, pass --force to cosign below. 87 | # https://github.com/sigstore/cosign 88 | - name: Sign the published Docker image 89 | if: ${{ github.event_name != 'pull_request' }} 90 | env: 91 | # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable 92 | TAGS: ${{ steps.meta.outputs.tags }} 93 | DIGEST: ${{ steps.build-and-push.outputs.digest }} 94 | # This step uses the identity token to provision an ephemeral certificate 95 | # against the sigstore community Fulcio instance. 96 | run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST} 97 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- 1 | # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node 2 | # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs 3 | 4 | name: Node.js CI 5 | 6 | on: 7 | push: 8 | branches: [ "develop" ] 9 | pull_request: 10 | branches: [ "develop" ] 11 | 12 | jobs: 13 | build: 14 | 15 | runs-on: ubuntu-latest 16 | 17 | strategy: 18 | matrix: 19 | node-version: [23.x] 20 | # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ 21 | 22 | steps: 23 | - uses: actions/checkout@v4 24 | - name: Use Node.js ${{ matrix.node-version }} 25 | uses: actions/setup-node@v4 26 | with: 27 | node-version: ${{ matrix.node-version }} 28 | cache: 'npm' 29 | - run: npm ci 30 | - run: npm run build --if-present 31 | - run: npm test 32 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # syntax=docker/dockerfile:1 2 | 3 | # If you need more help, visit the Dockerfile reference guide at 4 | # https://docs.docker.com/go/dockerfile-reference/ 5 | 6 | # Want to help us make this template better? Share your feedback here: https://forms.gle/ybq9Krt8jtBL3iCk7 7 | 8 | ARG NODE_VERSION=20 9 | 10 | FROM node:${NODE_VERSION}-alpine 11 | 12 | # Use production node environment by default. 13 | ENV NODE_ENV=production 14 | 15 | 16 | WORKDIR /usr/src/app 17 | 18 | # Download dependencies as a separate step to take advantage of Docker's caching. 19 | # Leverage a cache mount to /root/.npm to speed up subsequent builds. 20 | # Leverage a bind mounts to package.json and package-lock.json to avoid having to copy them into 21 | # into this layer. 22 | RUN --mount=type=bind,source=package.json,target=package.json \ 23 | --mount=type=bind,source=package-lock.json,target=package-lock.json \ 24 | --mount=type=cache,target=/root/.npm \ 25 | npm ci --omit=dev 26 | 27 | # Run the application as a non-root user. 28 | USER node 29 | 30 | # Copy the rest of the source files into the image. 31 | COPY . . 32 | 33 | # Expose the port that the application listens on. 34 | EXPOSE 4500 35 | 36 | # Run the application. 37 | CMD node src/server.js 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | >[!CAUTION] 2 | >If left unchecked, this script will add an enormously large amount of music to a lidarr instance, as this pulls the ARTIST id and lidarr will then proceed to monitor the ENTIRE artist discography. You have been warned. 3 | 4 | 5 | # Recommendarr 6 | 7 | *Name (WIP)* 8 | 9 | This is a very simple app that queries ListenBrainz API for a users generated playlists. This allows a way for someone who has connected spotify, last.fm, apple music, soundcloud, and/or youtube to listenbrainz to grab artist information from these generated playlists and spit out a JSON object of all the artists MusicBrainz ID's. 10 | 11 | This allows, for example, someone to then point Lidarr to the URL using the custom list import and have these artists automatically added to their library. 12 | 13 | >[!TIP] 14 | >Plexamp can be used aswell, you just have to link it to last.fm first, then link last.fm to listenbrainz. https://plex.tv/users/other-services 15 | 16 | > [!IMPORTANT] 17 | > This script will not work with lidarr until [this PR](https://github.com/Lidarr/Lidarr/pull/5399) is live (Currently in pre-release 2.10.0.4574) 18 | 19 | 20 | ## Installation 21 | 22 | ### unRaid community apps 23 | *soon* 24 | 25 | ### docker-compose 26 | 27 | ```yaml 28 | services: 29 | server: 30 | image: ghcr.io/shadowalker125/recommendarr:latest 31 | container_name: recommendarr 32 | environment: 33 | PUID: 1000 34 | PGID: 1000 35 | NODE_ENV: production 36 | USERS: "" 37 | LISTS: "" 38 | ports: 39 | - "4500:4500" 40 | ``` 41 | 42 | 43 | ## Environment Variables 44 | 45 | To run this project, you will need to update the following environment variables to your .env file 46 | 47 | Users is an array of any Listenbrainz usernames: 48 | 49 | `USERS` 50 | 51 | Lists is any of the created lists in listenbrainz. "weekly-exploration" is the recommended one 52 | 53 | `LISTS` 54 | 55 | ## Usage/Examples 56 | 57 | To use with Lidarr, open Settings > Import Lists > Add List > Custom List 58 | 59 | Change settings to your liking regarding monitoring, quality profile, etc... 60 | 61 | For the List URL, simply add the url and port '4500' for the running instance of recommendarr 62 | 63 | ex: 'http://localhost:4500' 64 | 65 | spits out JSON object 66 | 67 | ```json 68 | [{"MusicBrainzId":"41656317-c512-456f-9fe7-1f7fb8482a34"}, 69 | {"MusicBrainzId":"8ccd44fb-1c4a-4c5f-98b5-cf3b35a2aa5c"}, 70 | {"MusicBrainzId":"04473ad7-3aed-4e8f-bd7f-b64784263560"}, 71 | {"MusicBrainzId":"295c7990-1fe6-4135-b748-c30717b7fff8"}] 72 | ``` 73 | 74 | -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | server: 3 | build: . 4 | container_name: recommendarr 5 | environment: 6 | PUID: 1000 7 | PGID: 1000 8 | NODE_ENV: production 9 | USERS: "" 10 | LISTS: "" 11 | ports: 12 | - "4500:4500" -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- 1 | #Your ListenBrainz username https://listenbrainz.org/user/USER_NAME_HERE/ 2 | USERS= [ 3 | user1, 4 | user2 5 | ] 6 | 7 | #The lists you want imported, this will pull all artist's MusicBrainzId from every song in the playlist 8 | #A list of acceptable playlist can be found here https://api.listenbrainz.org/1/user/USER_NAME_HERE/playlists/createdfor 9 | #look at the property source_patch, the name must match exactly 10 | LISTS= [ 11 | weekly-exploration, 12 | example-list-2 13 | ] 14 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lidarr-list", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "lidarr-list", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "axios": "^1.7.9", 13 | "dotenv": "^16.4.7", 14 | "fastify": "^5.2.1", 15 | "sprintf-js": "^1.1.3" 16 | }, 17 | "devDependencies": { 18 | "@vitest/coverage-v8": "^3.0.6", 19 | "@vitest/ui": "^3.0.6", 20 | "nodemon": "^3.1.9" 21 | } 22 | }, 23 | "node_modules/@ampproject/remapping": { 24 | "version": "2.3.0", 25 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 26 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 27 | "dev": true, 28 | "license": "Apache-2.0", 29 | "dependencies": { 30 | "@jridgewell/gen-mapping": "^0.3.5", 31 | "@jridgewell/trace-mapping": "^0.3.24" 32 | }, 33 | "engines": { 34 | "node": ">=6.0.0" 35 | } 36 | }, 37 | "node_modules/@babel/helper-string-parser": { 38 | "version": "7.25.9", 39 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 40 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 41 | "dev": true, 42 | "license": "MIT", 43 | "engines": { 44 | "node": ">=6.9.0" 45 | } 46 | }, 47 | "node_modules/@babel/helper-validator-identifier": { 48 | "version": "7.25.9", 49 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 50 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 51 | "dev": true, 52 | "license": "MIT", 53 | "engines": { 54 | "node": ">=6.9.0" 55 | } 56 | }, 57 | "node_modules/@babel/parser": { 58 | "version": "7.26.9", 59 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz", 60 | "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", 61 | "dev": true, 62 | "license": "MIT", 63 | "dependencies": { 64 | "@babel/types": "^7.26.9" 65 | }, 66 | "bin": { 67 | "parser": "bin/babel-parser.js" 68 | }, 69 | "engines": { 70 | "node": ">=6.0.0" 71 | } 72 | }, 73 | "node_modules/@babel/types": { 74 | "version": "7.26.9", 75 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", 76 | "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", 77 | "dev": true, 78 | "license": "MIT", 79 | "dependencies": { 80 | "@babel/helper-string-parser": "^7.25.9", 81 | "@babel/helper-validator-identifier": "^7.25.9" 82 | }, 83 | "engines": { 84 | "node": ">=6.9.0" 85 | } 86 | }, 87 | "node_modules/@bcoe/v8-coverage": { 88 | "version": "1.0.2", 89 | "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-1.0.2.tgz", 90 | "integrity": "sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==", 91 | "dev": true, 92 | "license": "MIT", 93 | "engines": { 94 | "node": ">=18" 95 | } 96 | }, 97 | "node_modules/@esbuild/aix-ppc64": { 98 | "version": "0.24.2", 99 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", 100 | "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", 101 | "cpu": [ 102 | "ppc64" 103 | ], 104 | "dev": true, 105 | "license": "MIT", 106 | "optional": true, 107 | "os": [ 108 | "aix" 109 | ], 110 | "peer": true, 111 | "engines": { 112 | "node": ">=18" 113 | } 114 | }, 115 | "node_modules/@esbuild/android-arm": { 116 | "version": "0.24.2", 117 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", 118 | "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", 119 | "cpu": [ 120 | "arm" 121 | ], 122 | "dev": true, 123 | "license": "MIT", 124 | "optional": true, 125 | "os": [ 126 | "android" 127 | ], 128 | "peer": true, 129 | "engines": { 130 | "node": ">=18" 131 | } 132 | }, 133 | "node_modules/@esbuild/android-arm64": { 134 | "version": "0.24.2", 135 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", 136 | "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", 137 | "cpu": [ 138 | "arm64" 139 | ], 140 | "dev": true, 141 | "license": "MIT", 142 | "optional": true, 143 | "os": [ 144 | "android" 145 | ], 146 | "peer": true, 147 | "engines": { 148 | "node": ">=18" 149 | } 150 | }, 151 | "node_modules/@esbuild/android-x64": { 152 | "version": "0.24.2", 153 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", 154 | "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", 155 | "cpu": [ 156 | "x64" 157 | ], 158 | "dev": true, 159 | "license": "MIT", 160 | "optional": true, 161 | "os": [ 162 | "android" 163 | ], 164 | "peer": true, 165 | "engines": { 166 | "node": ">=18" 167 | } 168 | }, 169 | "node_modules/@esbuild/darwin-arm64": { 170 | "version": "0.24.2", 171 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", 172 | "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", 173 | "cpu": [ 174 | "arm64" 175 | ], 176 | "dev": true, 177 | "license": "MIT", 178 | "optional": true, 179 | "os": [ 180 | "darwin" 181 | ], 182 | "peer": true, 183 | "engines": { 184 | "node": ">=18" 185 | } 186 | }, 187 | "node_modules/@esbuild/darwin-x64": { 188 | "version": "0.24.2", 189 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", 190 | "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", 191 | "cpu": [ 192 | "x64" 193 | ], 194 | "dev": true, 195 | "license": "MIT", 196 | "optional": true, 197 | "os": [ 198 | "darwin" 199 | ], 200 | "peer": true, 201 | "engines": { 202 | "node": ">=18" 203 | } 204 | }, 205 | "node_modules/@esbuild/freebsd-arm64": { 206 | "version": "0.24.2", 207 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", 208 | "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", 209 | "cpu": [ 210 | "arm64" 211 | ], 212 | "dev": true, 213 | "license": "MIT", 214 | "optional": true, 215 | "os": [ 216 | "freebsd" 217 | ], 218 | "peer": true, 219 | "engines": { 220 | "node": ">=18" 221 | } 222 | }, 223 | "node_modules/@esbuild/freebsd-x64": { 224 | "version": "0.24.2", 225 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", 226 | "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", 227 | "cpu": [ 228 | "x64" 229 | ], 230 | "dev": true, 231 | "license": "MIT", 232 | "optional": true, 233 | "os": [ 234 | "freebsd" 235 | ], 236 | "peer": true, 237 | "engines": { 238 | "node": ">=18" 239 | } 240 | }, 241 | "node_modules/@esbuild/linux-arm": { 242 | "version": "0.24.2", 243 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", 244 | "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", 245 | "cpu": [ 246 | "arm" 247 | ], 248 | "dev": true, 249 | "license": "MIT", 250 | "optional": true, 251 | "os": [ 252 | "linux" 253 | ], 254 | "peer": true, 255 | "engines": { 256 | "node": ">=18" 257 | } 258 | }, 259 | "node_modules/@esbuild/linux-arm64": { 260 | "version": "0.24.2", 261 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", 262 | "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", 263 | "cpu": [ 264 | "arm64" 265 | ], 266 | "dev": true, 267 | "license": "MIT", 268 | "optional": true, 269 | "os": [ 270 | "linux" 271 | ], 272 | "peer": true, 273 | "engines": { 274 | "node": ">=18" 275 | } 276 | }, 277 | "node_modules/@esbuild/linux-ia32": { 278 | "version": "0.24.2", 279 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", 280 | "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", 281 | "cpu": [ 282 | "ia32" 283 | ], 284 | "dev": true, 285 | "license": "MIT", 286 | "optional": true, 287 | "os": [ 288 | "linux" 289 | ], 290 | "peer": true, 291 | "engines": { 292 | "node": ">=18" 293 | } 294 | }, 295 | "node_modules/@esbuild/linux-loong64": { 296 | "version": "0.24.2", 297 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", 298 | "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", 299 | "cpu": [ 300 | "loong64" 301 | ], 302 | "dev": true, 303 | "license": "MIT", 304 | "optional": true, 305 | "os": [ 306 | "linux" 307 | ], 308 | "peer": true, 309 | "engines": { 310 | "node": ">=18" 311 | } 312 | }, 313 | "node_modules/@esbuild/linux-mips64el": { 314 | "version": "0.24.2", 315 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", 316 | "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", 317 | "cpu": [ 318 | "mips64el" 319 | ], 320 | "dev": true, 321 | "license": "MIT", 322 | "optional": true, 323 | "os": [ 324 | "linux" 325 | ], 326 | "peer": true, 327 | "engines": { 328 | "node": ">=18" 329 | } 330 | }, 331 | "node_modules/@esbuild/linux-ppc64": { 332 | "version": "0.24.2", 333 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", 334 | "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", 335 | "cpu": [ 336 | "ppc64" 337 | ], 338 | "dev": true, 339 | "license": "MIT", 340 | "optional": true, 341 | "os": [ 342 | "linux" 343 | ], 344 | "peer": true, 345 | "engines": { 346 | "node": ">=18" 347 | } 348 | }, 349 | "node_modules/@esbuild/linux-riscv64": { 350 | "version": "0.24.2", 351 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", 352 | "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", 353 | "cpu": [ 354 | "riscv64" 355 | ], 356 | "dev": true, 357 | "license": "MIT", 358 | "optional": true, 359 | "os": [ 360 | "linux" 361 | ], 362 | "peer": true, 363 | "engines": { 364 | "node": ">=18" 365 | } 366 | }, 367 | "node_modules/@esbuild/linux-s390x": { 368 | "version": "0.24.2", 369 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", 370 | "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", 371 | "cpu": [ 372 | "s390x" 373 | ], 374 | "dev": true, 375 | "license": "MIT", 376 | "optional": true, 377 | "os": [ 378 | "linux" 379 | ], 380 | "peer": true, 381 | "engines": { 382 | "node": ">=18" 383 | } 384 | }, 385 | "node_modules/@esbuild/linux-x64": { 386 | "version": "0.24.2", 387 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", 388 | "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", 389 | "cpu": [ 390 | "x64" 391 | ], 392 | "dev": true, 393 | "license": "MIT", 394 | "optional": true, 395 | "os": [ 396 | "linux" 397 | ], 398 | "peer": true, 399 | "engines": { 400 | "node": ">=18" 401 | } 402 | }, 403 | "node_modules/@esbuild/netbsd-arm64": { 404 | "version": "0.24.2", 405 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", 406 | "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", 407 | "cpu": [ 408 | "arm64" 409 | ], 410 | "dev": true, 411 | "license": "MIT", 412 | "optional": true, 413 | "os": [ 414 | "netbsd" 415 | ], 416 | "peer": true, 417 | "engines": { 418 | "node": ">=18" 419 | } 420 | }, 421 | "node_modules/@esbuild/netbsd-x64": { 422 | "version": "0.24.2", 423 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", 424 | "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", 425 | "cpu": [ 426 | "x64" 427 | ], 428 | "dev": true, 429 | "license": "MIT", 430 | "optional": true, 431 | "os": [ 432 | "netbsd" 433 | ], 434 | "peer": true, 435 | "engines": { 436 | "node": ">=18" 437 | } 438 | }, 439 | "node_modules/@esbuild/openbsd-arm64": { 440 | "version": "0.24.2", 441 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", 442 | "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", 443 | "cpu": [ 444 | "arm64" 445 | ], 446 | "dev": true, 447 | "license": "MIT", 448 | "optional": true, 449 | "os": [ 450 | "openbsd" 451 | ], 452 | "peer": true, 453 | "engines": { 454 | "node": ">=18" 455 | } 456 | }, 457 | "node_modules/@esbuild/openbsd-x64": { 458 | "version": "0.24.2", 459 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", 460 | "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", 461 | "cpu": [ 462 | "x64" 463 | ], 464 | "dev": true, 465 | "license": "MIT", 466 | "optional": true, 467 | "os": [ 468 | "openbsd" 469 | ], 470 | "peer": true, 471 | "engines": { 472 | "node": ">=18" 473 | } 474 | }, 475 | "node_modules/@esbuild/sunos-x64": { 476 | "version": "0.24.2", 477 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", 478 | "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", 479 | "cpu": [ 480 | "x64" 481 | ], 482 | "dev": true, 483 | "license": "MIT", 484 | "optional": true, 485 | "os": [ 486 | "sunos" 487 | ], 488 | "peer": true, 489 | "engines": { 490 | "node": ">=18" 491 | } 492 | }, 493 | "node_modules/@esbuild/win32-arm64": { 494 | "version": "0.24.2", 495 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", 496 | "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", 497 | "cpu": [ 498 | "arm64" 499 | ], 500 | "dev": true, 501 | "license": "MIT", 502 | "optional": true, 503 | "os": [ 504 | "win32" 505 | ], 506 | "peer": true, 507 | "engines": { 508 | "node": ">=18" 509 | } 510 | }, 511 | "node_modules/@esbuild/win32-ia32": { 512 | "version": "0.24.2", 513 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", 514 | "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", 515 | "cpu": [ 516 | "ia32" 517 | ], 518 | "dev": true, 519 | "license": "MIT", 520 | "optional": true, 521 | "os": [ 522 | "win32" 523 | ], 524 | "peer": true, 525 | "engines": { 526 | "node": ">=18" 527 | } 528 | }, 529 | "node_modules/@esbuild/win32-x64": { 530 | "version": "0.24.2", 531 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", 532 | "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", 533 | "cpu": [ 534 | "x64" 535 | ], 536 | "dev": true, 537 | "license": "MIT", 538 | "optional": true, 539 | "os": [ 540 | "win32" 541 | ], 542 | "peer": true, 543 | "engines": { 544 | "node": ">=18" 545 | } 546 | }, 547 | "node_modules/@fastify/ajv-compiler": { 548 | "version": "4.0.2", 549 | "resolved": "https://registry.npmjs.org/@fastify/ajv-compiler/-/ajv-compiler-4.0.2.tgz", 550 | "integrity": "sha512-Rkiu/8wIjpsf46Rr+Fitd3HRP+VsxUFDDeag0hs9L0ksfnwx2g7SPQQTFL0E8Qv+rfXzQOxBJnjUB9ITUDjfWQ==", 551 | "funding": [ 552 | { 553 | "type": "github", 554 | "url": "https://github.com/sponsors/fastify" 555 | }, 556 | { 557 | "type": "opencollective", 558 | "url": "https://opencollective.com/fastify" 559 | } 560 | ], 561 | "license": "MIT", 562 | "dependencies": { 563 | "ajv": "^8.12.0", 564 | "ajv-formats": "^3.0.1", 565 | "fast-uri": "^3.0.0" 566 | } 567 | }, 568 | "node_modules/@fastify/error": { 569 | "version": "4.0.0", 570 | "resolved": "https://registry.npmjs.org/@fastify/error/-/error-4.0.0.tgz", 571 | "integrity": "sha512-OO/SA8As24JtT1usTUTKgGH7uLvhfwZPwlptRi2Dp5P4KKmJI3gvsZ8MIHnNwDs4sLf/aai5LzTyl66xr7qMxA==", 572 | "license": "MIT" 573 | }, 574 | "node_modules/@fastify/fast-json-stringify-compiler": { 575 | "version": "5.0.2", 576 | "resolved": "https://registry.npmjs.org/@fastify/fast-json-stringify-compiler/-/fast-json-stringify-compiler-5.0.2.tgz", 577 | "integrity": "sha512-YdR7gqlLg1xZAQa+SX4sMNzQHY5pC54fu9oC5aYSUqBhyn6fkLkrdtKlpVdCNPlwuUuXA1PjFTEmvMF6ZVXVGw==", 578 | "funding": [ 579 | { 580 | "type": "github", 581 | "url": "https://github.com/sponsors/fastify" 582 | }, 583 | { 584 | "type": "opencollective", 585 | "url": "https://opencollective.com/fastify" 586 | } 587 | ], 588 | "license": "MIT", 589 | "dependencies": { 590 | "fast-json-stringify": "^6.0.0" 591 | } 592 | }, 593 | "node_modules/@fastify/forwarded": { 594 | "version": "3.0.0", 595 | "resolved": "https://registry.npmjs.org/@fastify/forwarded/-/forwarded-3.0.0.tgz", 596 | "integrity": "sha512-kJExsp4JCms7ipzg7SJ3y8DwmePaELHxKYtg+tZow+k0znUTf3cb+npgyqm8+ATZOdmfgfydIebPDWM172wfyA==", 597 | "license": "MIT" 598 | }, 599 | "node_modules/@fastify/merge-json-schemas": { 600 | "version": "0.2.1", 601 | "resolved": "https://registry.npmjs.org/@fastify/merge-json-schemas/-/merge-json-schemas-0.2.1.tgz", 602 | "integrity": "sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==", 603 | "funding": [ 604 | { 605 | "type": "github", 606 | "url": "https://github.com/sponsors/fastify" 607 | }, 608 | { 609 | "type": "opencollective", 610 | "url": "https://opencollective.com/fastify" 611 | } 612 | ], 613 | "license": "MIT", 614 | "dependencies": { 615 | "dequal": "^2.0.3" 616 | } 617 | }, 618 | "node_modules/@fastify/proxy-addr": { 619 | "version": "5.0.0", 620 | "resolved": "https://registry.npmjs.org/@fastify/proxy-addr/-/proxy-addr-5.0.0.tgz", 621 | "integrity": "sha512-37qVVA1qZ5sgH7KpHkkC4z9SK6StIsIcOmpjvMPXNb3vx2GQxhZocogVYbr2PbbeLCQxYIPDok307xEvRZOzGA==", 622 | "license": "MIT", 623 | "dependencies": { 624 | "@fastify/forwarded": "^3.0.0", 625 | "ipaddr.js": "^2.1.0" 626 | } 627 | }, 628 | "node_modules/@isaacs/cliui": { 629 | "version": "8.0.2", 630 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 631 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 632 | "dev": true, 633 | "license": "ISC", 634 | "dependencies": { 635 | "string-width": "^5.1.2", 636 | "string-width-cjs": "npm:string-width@^4.2.0", 637 | "strip-ansi": "^7.0.1", 638 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 639 | "wrap-ansi": "^8.1.0", 640 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 641 | }, 642 | "engines": { 643 | "node": ">=12" 644 | } 645 | }, 646 | "node_modules/@istanbuljs/schema": { 647 | "version": "0.1.3", 648 | "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", 649 | "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", 650 | "dev": true, 651 | "license": "MIT", 652 | "engines": { 653 | "node": ">=8" 654 | } 655 | }, 656 | "node_modules/@jridgewell/gen-mapping": { 657 | "version": "0.3.8", 658 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 659 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 660 | "dev": true, 661 | "license": "MIT", 662 | "dependencies": { 663 | "@jridgewell/set-array": "^1.2.1", 664 | "@jridgewell/sourcemap-codec": "^1.4.10", 665 | "@jridgewell/trace-mapping": "^0.3.24" 666 | }, 667 | "engines": { 668 | "node": ">=6.0.0" 669 | } 670 | }, 671 | "node_modules/@jridgewell/resolve-uri": { 672 | "version": "3.1.2", 673 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 674 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 675 | "dev": true, 676 | "license": "MIT", 677 | "engines": { 678 | "node": ">=6.0.0" 679 | } 680 | }, 681 | "node_modules/@jridgewell/set-array": { 682 | "version": "1.2.1", 683 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 684 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 685 | "dev": true, 686 | "license": "MIT", 687 | "engines": { 688 | "node": ">=6.0.0" 689 | } 690 | }, 691 | "node_modules/@jridgewell/sourcemap-codec": { 692 | "version": "1.5.0", 693 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 694 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 695 | "dev": true, 696 | "license": "MIT" 697 | }, 698 | "node_modules/@jridgewell/trace-mapping": { 699 | "version": "0.3.25", 700 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 701 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 702 | "dev": true, 703 | "license": "MIT", 704 | "dependencies": { 705 | "@jridgewell/resolve-uri": "^3.1.0", 706 | "@jridgewell/sourcemap-codec": "^1.4.14" 707 | } 708 | }, 709 | "node_modules/@pkgjs/parseargs": { 710 | "version": "0.11.0", 711 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 712 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 713 | "dev": true, 714 | "license": "MIT", 715 | "optional": true, 716 | "engines": { 717 | "node": ">=14" 718 | } 719 | }, 720 | "node_modules/@polka/url": { 721 | "version": "1.0.0-next.28", 722 | "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", 723 | "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==", 724 | "dev": true, 725 | "license": "MIT" 726 | }, 727 | "node_modules/@rollup/rollup-android-arm-eabi": { 728 | "version": "4.34.8", 729 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz", 730 | "integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==", 731 | "cpu": [ 732 | "arm" 733 | ], 734 | "dev": true, 735 | "license": "MIT", 736 | "optional": true, 737 | "os": [ 738 | "android" 739 | ], 740 | "peer": true 741 | }, 742 | "node_modules/@rollup/rollup-android-arm64": { 743 | "version": "4.34.8", 744 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz", 745 | "integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==", 746 | "cpu": [ 747 | "arm64" 748 | ], 749 | "dev": true, 750 | "license": "MIT", 751 | "optional": true, 752 | "os": [ 753 | "android" 754 | ], 755 | "peer": true 756 | }, 757 | "node_modules/@rollup/rollup-darwin-arm64": { 758 | "version": "4.34.8", 759 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz", 760 | "integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==", 761 | "cpu": [ 762 | "arm64" 763 | ], 764 | "dev": true, 765 | "license": "MIT", 766 | "optional": true, 767 | "os": [ 768 | "darwin" 769 | ], 770 | "peer": true 771 | }, 772 | "node_modules/@rollup/rollup-darwin-x64": { 773 | "version": "4.34.8", 774 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz", 775 | "integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==", 776 | "cpu": [ 777 | "x64" 778 | ], 779 | "dev": true, 780 | "license": "MIT", 781 | "optional": true, 782 | "os": [ 783 | "darwin" 784 | ], 785 | "peer": true 786 | }, 787 | "node_modules/@rollup/rollup-freebsd-arm64": { 788 | "version": "4.34.8", 789 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz", 790 | "integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==", 791 | "cpu": [ 792 | "arm64" 793 | ], 794 | "dev": true, 795 | "license": "MIT", 796 | "optional": true, 797 | "os": [ 798 | "freebsd" 799 | ], 800 | "peer": true 801 | }, 802 | "node_modules/@rollup/rollup-freebsd-x64": { 803 | "version": "4.34.8", 804 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz", 805 | "integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==", 806 | "cpu": [ 807 | "x64" 808 | ], 809 | "dev": true, 810 | "license": "MIT", 811 | "optional": true, 812 | "os": [ 813 | "freebsd" 814 | ], 815 | "peer": true 816 | }, 817 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 818 | "version": "4.34.8", 819 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz", 820 | "integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==", 821 | "cpu": [ 822 | "arm" 823 | ], 824 | "dev": true, 825 | "license": "MIT", 826 | "optional": true, 827 | "os": [ 828 | "linux" 829 | ], 830 | "peer": true 831 | }, 832 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 833 | "version": "4.34.8", 834 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz", 835 | "integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==", 836 | "cpu": [ 837 | "arm" 838 | ], 839 | "dev": true, 840 | "license": "MIT", 841 | "optional": true, 842 | "os": [ 843 | "linux" 844 | ], 845 | "peer": true 846 | }, 847 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 848 | "version": "4.34.8", 849 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz", 850 | "integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==", 851 | "cpu": [ 852 | "arm64" 853 | ], 854 | "dev": true, 855 | "license": "MIT", 856 | "optional": true, 857 | "os": [ 858 | "linux" 859 | ], 860 | "peer": true 861 | }, 862 | "node_modules/@rollup/rollup-linux-arm64-musl": { 863 | "version": "4.34.8", 864 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz", 865 | "integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==", 866 | "cpu": [ 867 | "arm64" 868 | ], 869 | "dev": true, 870 | "license": "MIT", 871 | "optional": true, 872 | "os": [ 873 | "linux" 874 | ], 875 | "peer": true 876 | }, 877 | "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 878 | "version": "4.34.8", 879 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz", 880 | "integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==", 881 | "cpu": [ 882 | "loong64" 883 | ], 884 | "dev": true, 885 | "license": "MIT", 886 | "optional": true, 887 | "os": [ 888 | "linux" 889 | ], 890 | "peer": true 891 | }, 892 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 893 | "version": "4.34.8", 894 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz", 895 | "integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==", 896 | "cpu": [ 897 | "ppc64" 898 | ], 899 | "dev": true, 900 | "license": "MIT", 901 | "optional": true, 902 | "os": [ 903 | "linux" 904 | ], 905 | "peer": true 906 | }, 907 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 908 | "version": "4.34.8", 909 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz", 910 | "integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==", 911 | "cpu": [ 912 | "riscv64" 913 | ], 914 | "dev": true, 915 | "license": "MIT", 916 | "optional": true, 917 | "os": [ 918 | "linux" 919 | ], 920 | "peer": true 921 | }, 922 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 923 | "version": "4.34.8", 924 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz", 925 | "integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==", 926 | "cpu": [ 927 | "s390x" 928 | ], 929 | "dev": true, 930 | "license": "MIT", 931 | "optional": true, 932 | "os": [ 933 | "linux" 934 | ], 935 | "peer": true 936 | }, 937 | "node_modules/@rollup/rollup-linux-x64-gnu": { 938 | "version": "4.34.8", 939 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz", 940 | "integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==", 941 | "cpu": [ 942 | "x64" 943 | ], 944 | "dev": true, 945 | "license": "MIT", 946 | "optional": true, 947 | "os": [ 948 | "linux" 949 | ], 950 | "peer": true 951 | }, 952 | "node_modules/@rollup/rollup-linux-x64-musl": { 953 | "version": "4.34.8", 954 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz", 955 | "integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==", 956 | "cpu": [ 957 | "x64" 958 | ], 959 | "dev": true, 960 | "license": "MIT", 961 | "optional": true, 962 | "os": [ 963 | "linux" 964 | ], 965 | "peer": true 966 | }, 967 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 968 | "version": "4.34.8", 969 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz", 970 | "integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==", 971 | "cpu": [ 972 | "arm64" 973 | ], 974 | "dev": true, 975 | "license": "MIT", 976 | "optional": true, 977 | "os": [ 978 | "win32" 979 | ], 980 | "peer": true 981 | }, 982 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 983 | "version": "4.34.8", 984 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz", 985 | "integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==", 986 | "cpu": [ 987 | "ia32" 988 | ], 989 | "dev": true, 990 | "license": "MIT", 991 | "optional": true, 992 | "os": [ 993 | "win32" 994 | ], 995 | "peer": true 996 | }, 997 | "node_modules/@rollup/rollup-win32-x64-msvc": { 998 | "version": "4.34.8", 999 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz", 1000 | "integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==", 1001 | "cpu": [ 1002 | "x64" 1003 | ], 1004 | "dev": true, 1005 | "license": "MIT", 1006 | "optional": true, 1007 | "os": [ 1008 | "win32" 1009 | ], 1010 | "peer": true 1011 | }, 1012 | "node_modules/@types/estree": { 1013 | "version": "1.0.6", 1014 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 1015 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 1016 | "dev": true, 1017 | "license": "MIT", 1018 | "peer": true 1019 | }, 1020 | "node_modules/@vitest/coverage-v8": { 1021 | "version": "3.0.6", 1022 | "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-3.0.6.tgz", 1023 | "integrity": "sha512-JRTlR8Bw+4BcmVTICa7tJsxqphAktakiLsAmibVLAWbu1lauFddY/tXeM6sAyl1cgkPuXtpnUgaCPhTdz1Qapg==", 1024 | "dev": true, 1025 | "license": "MIT", 1026 | "dependencies": { 1027 | "@ampproject/remapping": "^2.3.0", 1028 | "@bcoe/v8-coverage": "^1.0.2", 1029 | "debug": "^4.4.0", 1030 | "istanbul-lib-coverage": "^3.2.2", 1031 | "istanbul-lib-report": "^3.0.1", 1032 | "istanbul-lib-source-maps": "^5.0.6", 1033 | "istanbul-reports": "^3.1.7", 1034 | "magic-string": "^0.30.17", 1035 | "magicast": "^0.3.5", 1036 | "std-env": "^3.8.0", 1037 | "test-exclude": "^7.0.1", 1038 | "tinyrainbow": "^2.0.0" 1039 | }, 1040 | "funding": { 1041 | "url": "https://opencollective.com/vitest" 1042 | }, 1043 | "peerDependencies": { 1044 | "@vitest/browser": "3.0.6", 1045 | "vitest": "3.0.6" 1046 | }, 1047 | "peerDependenciesMeta": { 1048 | "@vitest/browser": { 1049 | "optional": true 1050 | } 1051 | } 1052 | }, 1053 | "node_modules/@vitest/expect": { 1054 | "version": "3.0.6", 1055 | "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.0.6.tgz", 1056 | "integrity": "sha512-zBduHf/ja7/QRX4HdP1DSq5XrPgdN+jzLOwaTq/0qZjYfgETNFCKf9nOAp2j3hmom3oTbczuUzrzg9Hafh7hNg==", 1057 | "dev": true, 1058 | "license": "MIT", 1059 | "peer": true, 1060 | "dependencies": { 1061 | "@vitest/spy": "3.0.6", 1062 | "@vitest/utils": "3.0.6", 1063 | "chai": "^5.2.0", 1064 | "tinyrainbow": "^2.0.0" 1065 | }, 1066 | "funding": { 1067 | "url": "https://opencollective.com/vitest" 1068 | } 1069 | }, 1070 | "node_modules/@vitest/mocker": { 1071 | "version": "3.0.6", 1072 | "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.0.6.tgz", 1073 | "integrity": "sha512-KPztr4/tn7qDGZfqlSPQoF2VgJcKxnDNhmfR3VgZ6Fy1bO8T9Fc1stUiTXtqz0yG24VpD00pZP5f8EOFknjNuQ==", 1074 | "dev": true, 1075 | "license": "MIT", 1076 | "peer": true, 1077 | "dependencies": { 1078 | "@vitest/spy": "3.0.6", 1079 | "estree-walker": "^3.0.3", 1080 | "magic-string": "^0.30.17" 1081 | }, 1082 | "funding": { 1083 | "url": "https://opencollective.com/vitest" 1084 | }, 1085 | "peerDependencies": { 1086 | "msw": "^2.4.9", 1087 | "vite": "^5.0.0 || ^6.0.0" 1088 | }, 1089 | "peerDependenciesMeta": { 1090 | "msw": { 1091 | "optional": true 1092 | }, 1093 | "vite": { 1094 | "optional": true 1095 | } 1096 | } 1097 | }, 1098 | "node_modules/@vitest/pretty-format": { 1099 | "version": "3.0.6", 1100 | "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.0.6.tgz", 1101 | "integrity": "sha512-Zyctv3dbNL+67qtHfRnUE/k8qxduOamRfAL1BurEIQSyOEFffoMvx2pnDSSbKAAVxY0Ej2J/GH2dQKI0W2JyVg==", 1102 | "dev": true, 1103 | "license": "MIT", 1104 | "dependencies": { 1105 | "tinyrainbow": "^2.0.0" 1106 | }, 1107 | "funding": { 1108 | "url": "https://opencollective.com/vitest" 1109 | } 1110 | }, 1111 | "node_modules/@vitest/runner": { 1112 | "version": "3.0.6", 1113 | "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.0.6.tgz", 1114 | "integrity": "sha512-JopP4m/jGoaG1+CBqubV/5VMbi7L+NQCJTu1J1Pf6YaUbk7bZtaq5CX7p+8sY64Sjn1UQ1XJparHfcvTTdu9cA==", 1115 | "dev": true, 1116 | "license": "MIT", 1117 | "peer": true, 1118 | "dependencies": { 1119 | "@vitest/utils": "3.0.6", 1120 | "pathe": "^2.0.3" 1121 | }, 1122 | "funding": { 1123 | "url": "https://opencollective.com/vitest" 1124 | } 1125 | }, 1126 | "node_modules/@vitest/snapshot": { 1127 | "version": "3.0.6", 1128 | "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.0.6.tgz", 1129 | "integrity": "sha512-qKSmxNQwT60kNwwJHMVwavvZsMGXWmngD023OHSgn873pV0lylK7dwBTfYP7e4URy5NiBCHHiQGA9DHkYkqRqg==", 1130 | "dev": true, 1131 | "license": "MIT", 1132 | "peer": true, 1133 | "dependencies": { 1134 | "@vitest/pretty-format": "3.0.6", 1135 | "magic-string": "^0.30.17", 1136 | "pathe": "^2.0.3" 1137 | }, 1138 | "funding": { 1139 | "url": "https://opencollective.com/vitest" 1140 | } 1141 | }, 1142 | "node_modules/@vitest/spy": { 1143 | "version": "3.0.6", 1144 | "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.0.6.tgz", 1145 | "integrity": "sha512-HfOGx/bXtjy24fDlTOpgiAEJbRfFxoX3zIGagCqACkFKKZ/TTOE6gYMKXlqecvxEndKFuNHcHqP081ggZ2yM0Q==", 1146 | "dev": true, 1147 | "license": "MIT", 1148 | "peer": true, 1149 | "dependencies": { 1150 | "tinyspy": "^3.0.2" 1151 | }, 1152 | "funding": { 1153 | "url": "https://opencollective.com/vitest" 1154 | } 1155 | }, 1156 | "node_modules/@vitest/ui": { 1157 | "version": "3.0.6", 1158 | "resolved": "https://registry.npmjs.org/@vitest/ui/-/ui-3.0.6.tgz", 1159 | "integrity": "sha512-N4M2IUG2Q5LCeX4OWs48pQF4P3qsFejmDTc6QWGRFTLPrEe5EvM5HN0WSUnGAmuzQpSWv7ItfSsIJIWaEM2wpQ==", 1160 | "dev": true, 1161 | "license": "MIT", 1162 | "dependencies": { 1163 | "@vitest/utils": "3.0.6", 1164 | "fflate": "^0.8.2", 1165 | "flatted": "^3.3.2", 1166 | "pathe": "^2.0.3", 1167 | "sirv": "^3.0.1", 1168 | "tinyglobby": "^0.2.11", 1169 | "tinyrainbow": "^2.0.0" 1170 | }, 1171 | "funding": { 1172 | "url": "https://opencollective.com/vitest" 1173 | }, 1174 | "peerDependencies": { 1175 | "vitest": "3.0.6" 1176 | } 1177 | }, 1178 | "node_modules/@vitest/utils": { 1179 | "version": "3.0.6", 1180 | "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.0.6.tgz", 1181 | "integrity": "sha512-18ktZpf4GQFTbf9jK543uspU03Q2qya7ZGya5yiZ0Gx0nnnalBvd5ZBislbl2EhLjM8A8rt4OilqKG7QwcGkvQ==", 1182 | "dev": true, 1183 | "license": "MIT", 1184 | "dependencies": { 1185 | "@vitest/pretty-format": "3.0.6", 1186 | "loupe": "^3.1.3", 1187 | "tinyrainbow": "^2.0.0" 1188 | }, 1189 | "funding": { 1190 | "url": "https://opencollective.com/vitest" 1191 | } 1192 | }, 1193 | "node_modules/abstract-logging": { 1194 | "version": "2.0.1", 1195 | "resolved": "https://registry.npmjs.org/abstract-logging/-/abstract-logging-2.0.1.tgz", 1196 | "integrity": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==", 1197 | "license": "MIT" 1198 | }, 1199 | "node_modules/ajv": { 1200 | "version": "8.17.1", 1201 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", 1202 | "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", 1203 | "license": "MIT", 1204 | "dependencies": { 1205 | "fast-deep-equal": "^3.1.3", 1206 | "fast-uri": "^3.0.1", 1207 | "json-schema-traverse": "^1.0.0", 1208 | "require-from-string": "^2.0.2" 1209 | }, 1210 | "funding": { 1211 | "type": "github", 1212 | "url": "https://github.com/sponsors/epoberezkin" 1213 | } 1214 | }, 1215 | "node_modules/ajv-formats": { 1216 | "version": "3.0.1", 1217 | "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", 1218 | "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", 1219 | "license": "MIT", 1220 | "dependencies": { 1221 | "ajv": "^8.0.0" 1222 | }, 1223 | "peerDependencies": { 1224 | "ajv": "^8.0.0" 1225 | }, 1226 | "peerDependenciesMeta": { 1227 | "ajv": { 1228 | "optional": true 1229 | } 1230 | } 1231 | }, 1232 | "node_modules/ansi-regex": { 1233 | "version": "6.1.0", 1234 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", 1235 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", 1236 | "dev": true, 1237 | "license": "MIT", 1238 | "engines": { 1239 | "node": ">=12" 1240 | }, 1241 | "funding": { 1242 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 1243 | } 1244 | }, 1245 | "node_modules/ansi-styles": { 1246 | "version": "6.2.1", 1247 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 1248 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 1249 | "dev": true, 1250 | "license": "MIT", 1251 | "engines": { 1252 | "node": ">=12" 1253 | }, 1254 | "funding": { 1255 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1256 | } 1257 | }, 1258 | "node_modules/anymatch": { 1259 | "version": "3.1.3", 1260 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1261 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1262 | "dev": true, 1263 | "license": "ISC", 1264 | "dependencies": { 1265 | "normalize-path": "^3.0.0", 1266 | "picomatch": "^2.0.4" 1267 | }, 1268 | "engines": { 1269 | "node": ">= 8" 1270 | } 1271 | }, 1272 | "node_modules/assertion-error": { 1273 | "version": "2.0.1", 1274 | "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", 1275 | "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", 1276 | "dev": true, 1277 | "license": "MIT", 1278 | "peer": true, 1279 | "engines": { 1280 | "node": ">=12" 1281 | } 1282 | }, 1283 | "node_modules/asynckit": { 1284 | "version": "0.4.0", 1285 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 1286 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 1287 | "license": "MIT" 1288 | }, 1289 | "node_modules/atomic-sleep": { 1290 | "version": "1.0.0", 1291 | "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", 1292 | "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", 1293 | "license": "MIT", 1294 | "engines": { 1295 | "node": ">=8.0.0" 1296 | } 1297 | }, 1298 | "node_modules/avvio": { 1299 | "version": "9.1.0", 1300 | "resolved": "https://registry.npmjs.org/avvio/-/avvio-9.1.0.tgz", 1301 | "integrity": "sha512-fYASnYi600CsH/j9EQov7lECAniYiBFiiAtBNuZYLA2leLe9qOvZzqYHFjtIj6gD2VMoMLP14834LFWvr4IfDw==", 1302 | "license": "MIT", 1303 | "dependencies": { 1304 | "@fastify/error": "^4.0.0", 1305 | "fastq": "^1.17.1" 1306 | } 1307 | }, 1308 | "node_modules/axios": { 1309 | "version": "1.7.9", 1310 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz", 1311 | "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", 1312 | "license": "MIT", 1313 | "dependencies": { 1314 | "follow-redirects": "^1.15.6", 1315 | "form-data": "^4.0.0", 1316 | "proxy-from-env": "^1.1.0" 1317 | } 1318 | }, 1319 | "node_modules/balanced-match": { 1320 | "version": "1.0.2", 1321 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1322 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1323 | "dev": true, 1324 | "license": "MIT" 1325 | }, 1326 | "node_modules/binary-extensions": { 1327 | "version": "2.3.0", 1328 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 1329 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 1330 | "dev": true, 1331 | "license": "MIT", 1332 | "engines": { 1333 | "node": ">=8" 1334 | }, 1335 | "funding": { 1336 | "url": "https://github.com/sponsors/sindresorhus" 1337 | } 1338 | }, 1339 | "node_modules/brace-expansion": { 1340 | "version": "1.1.11", 1341 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1342 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1343 | "dev": true, 1344 | "license": "MIT", 1345 | "dependencies": { 1346 | "balanced-match": "^1.0.0", 1347 | "concat-map": "0.0.1" 1348 | } 1349 | }, 1350 | "node_modules/braces": { 1351 | "version": "3.0.3", 1352 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1353 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1354 | "dev": true, 1355 | "license": "MIT", 1356 | "dependencies": { 1357 | "fill-range": "^7.1.1" 1358 | }, 1359 | "engines": { 1360 | "node": ">=8" 1361 | } 1362 | }, 1363 | "node_modules/cac": { 1364 | "version": "6.7.14", 1365 | "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", 1366 | "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", 1367 | "dev": true, 1368 | "license": "MIT", 1369 | "peer": true, 1370 | "engines": { 1371 | "node": ">=8" 1372 | } 1373 | }, 1374 | "node_modules/call-bind-apply-helpers": { 1375 | "version": "1.0.2", 1376 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 1377 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 1378 | "license": "MIT", 1379 | "dependencies": { 1380 | "es-errors": "^1.3.0", 1381 | "function-bind": "^1.1.2" 1382 | }, 1383 | "engines": { 1384 | "node": ">= 0.4" 1385 | } 1386 | }, 1387 | "node_modules/chai": { 1388 | "version": "5.2.0", 1389 | "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz", 1390 | "integrity": "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==", 1391 | "dev": true, 1392 | "license": "MIT", 1393 | "peer": true, 1394 | "dependencies": { 1395 | "assertion-error": "^2.0.1", 1396 | "check-error": "^2.1.1", 1397 | "deep-eql": "^5.0.1", 1398 | "loupe": "^3.1.0", 1399 | "pathval": "^2.0.0" 1400 | }, 1401 | "engines": { 1402 | "node": ">=12" 1403 | } 1404 | }, 1405 | "node_modules/check-error": { 1406 | "version": "2.1.1", 1407 | "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", 1408 | "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", 1409 | "dev": true, 1410 | "license": "MIT", 1411 | "peer": true, 1412 | "engines": { 1413 | "node": ">= 16" 1414 | } 1415 | }, 1416 | "node_modules/chokidar": { 1417 | "version": "3.6.0", 1418 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 1419 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1420 | "dev": true, 1421 | "license": "MIT", 1422 | "dependencies": { 1423 | "anymatch": "~3.1.2", 1424 | "braces": "~3.0.2", 1425 | "glob-parent": "~5.1.2", 1426 | "is-binary-path": "~2.1.0", 1427 | "is-glob": "~4.0.1", 1428 | "normalize-path": "~3.0.0", 1429 | "readdirp": "~3.6.0" 1430 | }, 1431 | "engines": { 1432 | "node": ">= 8.10.0" 1433 | }, 1434 | "funding": { 1435 | "url": "https://paulmillr.com/funding/" 1436 | }, 1437 | "optionalDependencies": { 1438 | "fsevents": "~2.3.2" 1439 | } 1440 | }, 1441 | "node_modules/color-convert": { 1442 | "version": "2.0.1", 1443 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1444 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1445 | "dev": true, 1446 | "license": "MIT", 1447 | "dependencies": { 1448 | "color-name": "~1.1.4" 1449 | }, 1450 | "engines": { 1451 | "node": ">=7.0.0" 1452 | } 1453 | }, 1454 | "node_modules/color-name": { 1455 | "version": "1.1.4", 1456 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1457 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1458 | "dev": true, 1459 | "license": "MIT" 1460 | }, 1461 | "node_modules/combined-stream": { 1462 | "version": "1.0.8", 1463 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1464 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1465 | "license": "MIT", 1466 | "dependencies": { 1467 | "delayed-stream": "~1.0.0" 1468 | }, 1469 | "engines": { 1470 | "node": ">= 0.8" 1471 | } 1472 | }, 1473 | "node_modules/concat-map": { 1474 | "version": "0.0.1", 1475 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1476 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1477 | "dev": true, 1478 | "license": "MIT" 1479 | }, 1480 | "node_modules/cookie": { 1481 | "version": "1.0.2", 1482 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz", 1483 | "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==", 1484 | "license": "MIT", 1485 | "engines": { 1486 | "node": ">=18" 1487 | } 1488 | }, 1489 | "node_modules/cross-spawn": { 1490 | "version": "7.0.6", 1491 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1492 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1493 | "dev": true, 1494 | "license": "MIT", 1495 | "dependencies": { 1496 | "path-key": "^3.1.0", 1497 | "shebang-command": "^2.0.0", 1498 | "which": "^2.0.1" 1499 | }, 1500 | "engines": { 1501 | "node": ">= 8" 1502 | } 1503 | }, 1504 | "node_modules/debug": { 1505 | "version": "4.4.0", 1506 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1507 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1508 | "dev": true, 1509 | "license": "MIT", 1510 | "dependencies": { 1511 | "ms": "^2.1.3" 1512 | }, 1513 | "engines": { 1514 | "node": ">=6.0" 1515 | }, 1516 | "peerDependenciesMeta": { 1517 | "supports-color": { 1518 | "optional": true 1519 | } 1520 | } 1521 | }, 1522 | "node_modules/deep-eql": { 1523 | "version": "5.0.2", 1524 | "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", 1525 | "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", 1526 | "dev": true, 1527 | "license": "MIT", 1528 | "peer": true, 1529 | "engines": { 1530 | "node": ">=6" 1531 | } 1532 | }, 1533 | "node_modules/delayed-stream": { 1534 | "version": "1.0.0", 1535 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1536 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1537 | "license": "MIT", 1538 | "engines": { 1539 | "node": ">=0.4.0" 1540 | } 1541 | }, 1542 | "node_modules/dequal": { 1543 | "version": "2.0.3", 1544 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1545 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1546 | "license": "MIT", 1547 | "engines": { 1548 | "node": ">=6" 1549 | } 1550 | }, 1551 | "node_modules/dotenv": { 1552 | "version": "16.4.7", 1553 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz", 1554 | "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==", 1555 | "license": "BSD-2-Clause", 1556 | "engines": { 1557 | "node": ">=12" 1558 | }, 1559 | "funding": { 1560 | "url": "https://dotenvx.com" 1561 | } 1562 | }, 1563 | "node_modules/dunder-proto": { 1564 | "version": "1.0.1", 1565 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 1566 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 1567 | "license": "MIT", 1568 | "dependencies": { 1569 | "call-bind-apply-helpers": "^1.0.1", 1570 | "es-errors": "^1.3.0", 1571 | "gopd": "^1.2.0" 1572 | }, 1573 | "engines": { 1574 | "node": ">= 0.4" 1575 | } 1576 | }, 1577 | "node_modules/eastasianwidth": { 1578 | "version": "0.2.0", 1579 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1580 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 1581 | "dev": true, 1582 | "license": "MIT" 1583 | }, 1584 | "node_modules/emoji-regex": { 1585 | "version": "9.2.2", 1586 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1587 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1588 | "dev": true, 1589 | "license": "MIT" 1590 | }, 1591 | "node_modules/es-define-property": { 1592 | "version": "1.0.1", 1593 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 1594 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1595 | "license": "MIT", 1596 | "engines": { 1597 | "node": ">= 0.4" 1598 | } 1599 | }, 1600 | "node_modules/es-errors": { 1601 | "version": "1.3.0", 1602 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1603 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1604 | "license": "MIT", 1605 | "engines": { 1606 | "node": ">= 0.4" 1607 | } 1608 | }, 1609 | "node_modules/es-module-lexer": { 1610 | "version": "1.6.0", 1611 | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", 1612 | "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", 1613 | "dev": true, 1614 | "license": "MIT", 1615 | "peer": true 1616 | }, 1617 | "node_modules/es-object-atoms": { 1618 | "version": "1.1.1", 1619 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 1620 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 1621 | "license": "MIT", 1622 | "dependencies": { 1623 | "es-errors": "^1.3.0" 1624 | }, 1625 | "engines": { 1626 | "node": ">= 0.4" 1627 | } 1628 | }, 1629 | "node_modules/es-set-tostringtag": { 1630 | "version": "2.1.0", 1631 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", 1632 | "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", 1633 | "license": "MIT", 1634 | "dependencies": { 1635 | "es-errors": "^1.3.0", 1636 | "get-intrinsic": "^1.2.6", 1637 | "has-tostringtag": "^1.0.2", 1638 | "hasown": "^2.0.2" 1639 | }, 1640 | "engines": { 1641 | "node": ">= 0.4" 1642 | } 1643 | }, 1644 | "node_modules/esbuild": { 1645 | "version": "0.24.2", 1646 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", 1647 | "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", 1648 | "dev": true, 1649 | "hasInstallScript": true, 1650 | "license": "MIT", 1651 | "peer": true, 1652 | "bin": { 1653 | "esbuild": "bin/esbuild" 1654 | }, 1655 | "engines": { 1656 | "node": ">=18" 1657 | }, 1658 | "optionalDependencies": { 1659 | "@esbuild/aix-ppc64": "0.24.2", 1660 | "@esbuild/android-arm": "0.24.2", 1661 | "@esbuild/android-arm64": "0.24.2", 1662 | "@esbuild/android-x64": "0.24.2", 1663 | "@esbuild/darwin-arm64": "0.24.2", 1664 | "@esbuild/darwin-x64": "0.24.2", 1665 | "@esbuild/freebsd-arm64": "0.24.2", 1666 | "@esbuild/freebsd-x64": "0.24.2", 1667 | "@esbuild/linux-arm": "0.24.2", 1668 | "@esbuild/linux-arm64": "0.24.2", 1669 | "@esbuild/linux-ia32": "0.24.2", 1670 | "@esbuild/linux-loong64": "0.24.2", 1671 | "@esbuild/linux-mips64el": "0.24.2", 1672 | "@esbuild/linux-ppc64": "0.24.2", 1673 | "@esbuild/linux-riscv64": "0.24.2", 1674 | "@esbuild/linux-s390x": "0.24.2", 1675 | "@esbuild/linux-x64": "0.24.2", 1676 | "@esbuild/netbsd-arm64": "0.24.2", 1677 | "@esbuild/netbsd-x64": "0.24.2", 1678 | "@esbuild/openbsd-arm64": "0.24.2", 1679 | "@esbuild/openbsd-x64": "0.24.2", 1680 | "@esbuild/sunos-x64": "0.24.2", 1681 | "@esbuild/win32-arm64": "0.24.2", 1682 | "@esbuild/win32-ia32": "0.24.2", 1683 | "@esbuild/win32-x64": "0.24.2" 1684 | } 1685 | }, 1686 | "node_modules/estree-walker": { 1687 | "version": "3.0.3", 1688 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 1689 | "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 1690 | "dev": true, 1691 | "license": "MIT", 1692 | "peer": true, 1693 | "dependencies": { 1694 | "@types/estree": "^1.0.0" 1695 | } 1696 | }, 1697 | "node_modules/expect-type": { 1698 | "version": "1.1.0", 1699 | "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", 1700 | "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", 1701 | "dev": true, 1702 | "license": "Apache-2.0", 1703 | "peer": true, 1704 | "engines": { 1705 | "node": ">=12.0.0" 1706 | } 1707 | }, 1708 | "node_modules/fast-decode-uri-component": { 1709 | "version": "1.0.1", 1710 | "resolved": "https://registry.npmjs.org/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz", 1711 | "integrity": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==", 1712 | "license": "MIT" 1713 | }, 1714 | "node_modules/fast-deep-equal": { 1715 | "version": "3.1.3", 1716 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1717 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1718 | "license": "MIT" 1719 | }, 1720 | "node_modules/fast-json-stringify": { 1721 | "version": "6.0.1", 1722 | "resolved": "https://registry.npmjs.org/fast-json-stringify/-/fast-json-stringify-6.0.1.tgz", 1723 | "integrity": "sha512-s7SJE83QKBZwg54dIbD5rCtzOBVD43V1ReWXXYqBgwCwHLYAAT0RQc/FmrQglXqWPpz6omtryJQOau5jI4Nrvg==", 1724 | "funding": [ 1725 | { 1726 | "type": "github", 1727 | "url": "https://github.com/sponsors/fastify" 1728 | }, 1729 | { 1730 | "type": "opencollective", 1731 | "url": "https://opencollective.com/fastify" 1732 | } 1733 | ], 1734 | "license": "MIT", 1735 | "dependencies": { 1736 | "@fastify/merge-json-schemas": "^0.2.0", 1737 | "ajv": "^8.12.0", 1738 | "ajv-formats": "^3.0.1", 1739 | "fast-uri": "^3.0.0", 1740 | "json-schema-ref-resolver": "^2.0.0", 1741 | "rfdc": "^1.2.0" 1742 | } 1743 | }, 1744 | "node_modules/fast-querystring": { 1745 | "version": "1.1.2", 1746 | "resolved": "https://registry.npmjs.org/fast-querystring/-/fast-querystring-1.1.2.tgz", 1747 | "integrity": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==", 1748 | "license": "MIT", 1749 | "dependencies": { 1750 | "fast-decode-uri-component": "^1.0.1" 1751 | } 1752 | }, 1753 | "node_modules/fast-redact": { 1754 | "version": "3.5.0", 1755 | "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz", 1756 | "integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==", 1757 | "license": "MIT", 1758 | "engines": { 1759 | "node": ">=6" 1760 | } 1761 | }, 1762 | "node_modules/fast-uri": { 1763 | "version": "3.0.6", 1764 | "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", 1765 | "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", 1766 | "funding": [ 1767 | { 1768 | "type": "github", 1769 | "url": "https://github.com/sponsors/fastify" 1770 | }, 1771 | { 1772 | "type": "opencollective", 1773 | "url": "https://opencollective.com/fastify" 1774 | } 1775 | ], 1776 | "license": "BSD-3-Clause" 1777 | }, 1778 | "node_modules/fastify": { 1779 | "version": "5.2.1", 1780 | "resolved": "https://registry.npmjs.org/fastify/-/fastify-5.2.1.tgz", 1781 | "integrity": "sha512-rslrNBF67eg8/Gyn7P2URV8/6pz8kSAscFL4EThZJ8JBMaXacVdVE4hmUcnPNKERl5o/xTiBSLfdowBRhVF1WA==", 1782 | "funding": [ 1783 | { 1784 | "type": "github", 1785 | "url": "https://github.com/sponsors/fastify" 1786 | }, 1787 | { 1788 | "type": "opencollective", 1789 | "url": "https://opencollective.com/fastify" 1790 | } 1791 | ], 1792 | "license": "MIT", 1793 | "dependencies": { 1794 | "@fastify/ajv-compiler": "^4.0.0", 1795 | "@fastify/error": "^4.0.0", 1796 | "@fastify/fast-json-stringify-compiler": "^5.0.0", 1797 | "@fastify/proxy-addr": "^5.0.0", 1798 | "abstract-logging": "^2.0.1", 1799 | "avvio": "^9.0.0", 1800 | "fast-json-stringify": "^6.0.0", 1801 | "find-my-way": "^9.0.0", 1802 | "light-my-request": "^6.0.0", 1803 | "pino": "^9.0.0", 1804 | "process-warning": "^4.0.0", 1805 | "rfdc": "^1.3.1", 1806 | "secure-json-parse": "^3.0.1", 1807 | "semver": "^7.6.0", 1808 | "toad-cache": "^3.7.0" 1809 | } 1810 | }, 1811 | "node_modules/fastq": { 1812 | "version": "1.19.0", 1813 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz", 1814 | "integrity": "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==", 1815 | "license": "ISC", 1816 | "dependencies": { 1817 | "reusify": "^1.0.4" 1818 | } 1819 | }, 1820 | "node_modules/fflate": { 1821 | "version": "0.8.2", 1822 | "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz", 1823 | "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==", 1824 | "dev": true, 1825 | "license": "MIT" 1826 | }, 1827 | "node_modules/fill-range": { 1828 | "version": "7.1.1", 1829 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1830 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1831 | "dev": true, 1832 | "license": "MIT", 1833 | "dependencies": { 1834 | "to-regex-range": "^5.0.1" 1835 | }, 1836 | "engines": { 1837 | "node": ">=8" 1838 | } 1839 | }, 1840 | "node_modules/find-my-way": { 1841 | "version": "9.2.0", 1842 | "resolved": "https://registry.npmjs.org/find-my-way/-/find-my-way-9.2.0.tgz", 1843 | "integrity": "sha512-d3uCir8Hmg7W1Ywp8nKf2lJJYU9Nwinvo+1D39Dn09nz65UKXIxUh7j7K8zeWhxqe1WrkS7FJyON/Q/3lPoc6w==", 1844 | "license": "MIT", 1845 | "dependencies": { 1846 | "fast-deep-equal": "^3.1.3", 1847 | "fast-querystring": "^1.0.0", 1848 | "safe-regex2": "^4.0.0" 1849 | }, 1850 | "engines": { 1851 | "node": ">=14" 1852 | } 1853 | }, 1854 | "node_modules/flatted": { 1855 | "version": "3.3.3", 1856 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 1857 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 1858 | "dev": true, 1859 | "license": "ISC" 1860 | }, 1861 | "node_modules/follow-redirects": { 1862 | "version": "1.15.9", 1863 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", 1864 | "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", 1865 | "funding": [ 1866 | { 1867 | "type": "individual", 1868 | "url": "https://github.com/sponsors/RubenVerborgh" 1869 | } 1870 | ], 1871 | "license": "MIT", 1872 | "engines": { 1873 | "node": ">=4.0" 1874 | }, 1875 | "peerDependenciesMeta": { 1876 | "debug": { 1877 | "optional": true 1878 | } 1879 | } 1880 | }, 1881 | "node_modules/foreground-child": { 1882 | "version": "3.3.0", 1883 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", 1884 | "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", 1885 | "dev": true, 1886 | "license": "ISC", 1887 | "dependencies": { 1888 | "cross-spawn": "^7.0.0", 1889 | "signal-exit": "^4.0.1" 1890 | }, 1891 | "engines": { 1892 | "node": ">=14" 1893 | }, 1894 | "funding": { 1895 | "url": "https://github.com/sponsors/isaacs" 1896 | } 1897 | }, 1898 | "node_modules/form-data": { 1899 | "version": "4.0.2", 1900 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", 1901 | "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", 1902 | "license": "MIT", 1903 | "dependencies": { 1904 | "asynckit": "^0.4.0", 1905 | "combined-stream": "^1.0.8", 1906 | "es-set-tostringtag": "^2.1.0", 1907 | "mime-types": "^2.1.12" 1908 | }, 1909 | "engines": { 1910 | "node": ">= 6" 1911 | } 1912 | }, 1913 | "node_modules/fsevents": { 1914 | "version": "2.3.3", 1915 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1916 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1917 | "dev": true, 1918 | "hasInstallScript": true, 1919 | "license": "MIT", 1920 | "optional": true, 1921 | "os": [ 1922 | "darwin" 1923 | ], 1924 | "engines": { 1925 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1926 | } 1927 | }, 1928 | "node_modules/function-bind": { 1929 | "version": "1.1.2", 1930 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1931 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1932 | "license": "MIT", 1933 | "funding": { 1934 | "url": "https://github.com/sponsors/ljharb" 1935 | } 1936 | }, 1937 | "node_modules/get-intrinsic": { 1938 | "version": "1.2.7", 1939 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz", 1940 | "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", 1941 | "license": "MIT", 1942 | "dependencies": { 1943 | "call-bind-apply-helpers": "^1.0.1", 1944 | "es-define-property": "^1.0.1", 1945 | "es-errors": "^1.3.0", 1946 | "es-object-atoms": "^1.0.0", 1947 | "function-bind": "^1.1.2", 1948 | "get-proto": "^1.0.0", 1949 | "gopd": "^1.2.0", 1950 | "has-symbols": "^1.1.0", 1951 | "hasown": "^2.0.2", 1952 | "math-intrinsics": "^1.1.0" 1953 | }, 1954 | "engines": { 1955 | "node": ">= 0.4" 1956 | }, 1957 | "funding": { 1958 | "url": "https://github.com/sponsors/ljharb" 1959 | } 1960 | }, 1961 | "node_modules/get-proto": { 1962 | "version": "1.0.1", 1963 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 1964 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 1965 | "license": "MIT", 1966 | "dependencies": { 1967 | "dunder-proto": "^1.0.1", 1968 | "es-object-atoms": "^1.0.0" 1969 | }, 1970 | "engines": { 1971 | "node": ">= 0.4" 1972 | } 1973 | }, 1974 | "node_modules/glob": { 1975 | "version": "10.4.5", 1976 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", 1977 | "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", 1978 | "dev": true, 1979 | "license": "ISC", 1980 | "dependencies": { 1981 | "foreground-child": "^3.1.0", 1982 | "jackspeak": "^3.1.2", 1983 | "minimatch": "^9.0.4", 1984 | "minipass": "^7.1.2", 1985 | "package-json-from-dist": "^1.0.0", 1986 | "path-scurry": "^1.11.1" 1987 | }, 1988 | "bin": { 1989 | "glob": "dist/esm/bin.mjs" 1990 | }, 1991 | "funding": { 1992 | "url": "https://github.com/sponsors/isaacs" 1993 | } 1994 | }, 1995 | "node_modules/glob-parent": { 1996 | "version": "5.1.2", 1997 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1998 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1999 | "dev": true, 2000 | "license": "ISC", 2001 | "dependencies": { 2002 | "is-glob": "^4.0.1" 2003 | }, 2004 | "engines": { 2005 | "node": ">= 6" 2006 | } 2007 | }, 2008 | "node_modules/glob/node_modules/brace-expansion": { 2009 | "version": "2.0.1", 2010 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 2011 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 2012 | "dev": true, 2013 | "license": "MIT", 2014 | "dependencies": { 2015 | "balanced-match": "^1.0.0" 2016 | } 2017 | }, 2018 | "node_modules/glob/node_modules/minimatch": { 2019 | "version": "9.0.5", 2020 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2021 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2022 | "dev": true, 2023 | "license": "ISC", 2024 | "dependencies": { 2025 | "brace-expansion": "^2.0.1" 2026 | }, 2027 | "engines": { 2028 | "node": ">=16 || 14 >=14.17" 2029 | }, 2030 | "funding": { 2031 | "url": "https://github.com/sponsors/isaacs" 2032 | } 2033 | }, 2034 | "node_modules/gopd": { 2035 | "version": "1.2.0", 2036 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 2037 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 2038 | "license": "MIT", 2039 | "engines": { 2040 | "node": ">= 0.4" 2041 | }, 2042 | "funding": { 2043 | "url": "https://github.com/sponsors/ljharb" 2044 | } 2045 | }, 2046 | "node_modules/has-flag": { 2047 | "version": "4.0.0", 2048 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2049 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2050 | "dev": true, 2051 | "license": "MIT", 2052 | "engines": { 2053 | "node": ">=8" 2054 | } 2055 | }, 2056 | "node_modules/has-symbols": { 2057 | "version": "1.1.0", 2058 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 2059 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 2060 | "license": "MIT", 2061 | "engines": { 2062 | "node": ">= 0.4" 2063 | }, 2064 | "funding": { 2065 | "url": "https://github.com/sponsors/ljharb" 2066 | } 2067 | }, 2068 | "node_modules/has-tostringtag": { 2069 | "version": "1.0.2", 2070 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 2071 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 2072 | "license": "MIT", 2073 | "dependencies": { 2074 | "has-symbols": "^1.0.3" 2075 | }, 2076 | "engines": { 2077 | "node": ">= 0.4" 2078 | }, 2079 | "funding": { 2080 | "url": "https://github.com/sponsors/ljharb" 2081 | } 2082 | }, 2083 | "node_modules/hasown": { 2084 | "version": "2.0.2", 2085 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2086 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2087 | "license": "MIT", 2088 | "dependencies": { 2089 | "function-bind": "^1.1.2" 2090 | }, 2091 | "engines": { 2092 | "node": ">= 0.4" 2093 | } 2094 | }, 2095 | "node_modules/html-escaper": { 2096 | "version": "2.0.2", 2097 | "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", 2098 | "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", 2099 | "dev": true, 2100 | "license": "MIT" 2101 | }, 2102 | "node_modules/ignore-by-default": { 2103 | "version": "1.0.1", 2104 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 2105 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", 2106 | "dev": true, 2107 | "license": "ISC" 2108 | }, 2109 | "node_modules/ipaddr.js": { 2110 | "version": "2.2.0", 2111 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", 2112 | "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", 2113 | "license": "MIT", 2114 | "engines": { 2115 | "node": ">= 10" 2116 | } 2117 | }, 2118 | "node_modules/is-binary-path": { 2119 | "version": "2.1.0", 2120 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2121 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2122 | "dev": true, 2123 | "license": "MIT", 2124 | "dependencies": { 2125 | "binary-extensions": "^2.0.0" 2126 | }, 2127 | "engines": { 2128 | "node": ">=8" 2129 | } 2130 | }, 2131 | "node_modules/is-extglob": { 2132 | "version": "2.1.1", 2133 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2134 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2135 | "dev": true, 2136 | "license": "MIT", 2137 | "engines": { 2138 | "node": ">=0.10.0" 2139 | } 2140 | }, 2141 | "node_modules/is-fullwidth-code-point": { 2142 | "version": "3.0.0", 2143 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2144 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2145 | "dev": true, 2146 | "license": "MIT", 2147 | "engines": { 2148 | "node": ">=8" 2149 | } 2150 | }, 2151 | "node_modules/is-glob": { 2152 | "version": "4.0.3", 2153 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2154 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2155 | "dev": true, 2156 | "license": "MIT", 2157 | "dependencies": { 2158 | "is-extglob": "^2.1.1" 2159 | }, 2160 | "engines": { 2161 | "node": ">=0.10.0" 2162 | } 2163 | }, 2164 | "node_modules/is-number": { 2165 | "version": "7.0.0", 2166 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2167 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2168 | "dev": true, 2169 | "license": "MIT", 2170 | "engines": { 2171 | "node": ">=0.12.0" 2172 | } 2173 | }, 2174 | "node_modules/isexe": { 2175 | "version": "2.0.0", 2176 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2177 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2178 | "dev": true, 2179 | "license": "ISC" 2180 | }, 2181 | "node_modules/istanbul-lib-coverage": { 2182 | "version": "3.2.2", 2183 | "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", 2184 | "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", 2185 | "dev": true, 2186 | "license": "BSD-3-Clause", 2187 | "engines": { 2188 | "node": ">=8" 2189 | } 2190 | }, 2191 | "node_modules/istanbul-lib-report": { 2192 | "version": "3.0.1", 2193 | "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", 2194 | "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", 2195 | "dev": true, 2196 | "license": "BSD-3-Clause", 2197 | "dependencies": { 2198 | "istanbul-lib-coverage": "^3.0.0", 2199 | "make-dir": "^4.0.0", 2200 | "supports-color": "^7.1.0" 2201 | }, 2202 | "engines": { 2203 | "node": ">=10" 2204 | } 2205 | }, 2206 | "node_modules/istanbul-lib-source-maps": { 2207 | "version": "5.0.6", 2208 | "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", 2209 | "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", 2210 | "dev": true, 2211 | "license": "BSD-3-Clause", 2212 | "dependencies": { 2213 | "@jridgewell/trace-mapping": "^0.3.23", 2214 | "debug": "^4.1.1", 2215 | "istanbul-lib-coverage": "^3.0.0" 2216 | }, 2217 | "engines": { 2218 | "node": ">=10" 2219 | } 2220 | }, 2221 | "node_modules/istanbul-reports": { 2222 | "version": "3.1.7", 2223 | "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", 2224 | "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", 2225 | "dev": true, 2226 | "license": "BSD-3-Clause", 2227 | "dependencies": { 2228 | "html-escaper": "^2.0.0", 2229 | "istanbul-lib-report": "^3.0.0" 2230 | }, 2231 | "engines": { 2232 | "node": ">=8" 2233 | } 2234 | }, 2235 | "node_modules/jackspeak": { 2236 | "version": "3.4.3", 2237 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", 2238 | "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", 2239 | "dev": true, 2240 | "license": "BlueOak-1.0.0", 2241 | "dependencies": { 2242 | "@isaacs/cliui": "^8.0.2" 2243 | }, 2244 | "funding": { 2245 | "url": "https://github.com/sponsors/isaacs" 2246 | }, 2247 | "optionalDependencies": { 2248 | "@pkgjs/parseargs": "^0.11.0" 2249 | } 2250 | }, 2251 | "node_modules/json-schema-ref-resolver": { 2252 | "version": "2.0.1", 2253 | "resolved": "https://registry.npmjs.org/json-schema-ref-resolver/-/json-schema-ref-resolver-2.0.1.tgz", 2254 | "integrity": "sha512-HG0SIB9X4J8bwbxCbnd5FfPEbcXAJYTi1pBJeP/QPON+w8ovSME8iRG+ElHNxZNX2Qh6eYn1GdzJFS4cDFfx0Q==", 2255 | "funding": [ 2256 | { 2257 | "type": "github", 2258 | "url": "https://github.com/sponsors/fastify" 2259 | }, 2260 | { 2261 | "type": "opencollective", 2262 | "url": "https://opencollective.com/fastify" 2263 | } 2264 | ], 2265 | "license": "MIT", 2266 | "dependencies": { 2267 | "dequal": "^2.0.3" 2268 | } 2269 | }, 2270 | "node_modules/json-schema-traverse": { 2271 | "version": "1.0.0", 2272 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", 2273 | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", 2274 | "license": "MIT" 2275 | }, 2276 | "node_modules/light-my-request": { 2277 | "version": "6.6.0", 2278 | "resolved": "https://registry.npmjs.org/light-my-request/-/light-my-request-6.6.0.tgz", 2279 | "integrity": "sha512-CHYbu8RtboSIoVsHZ6Ye4cj4Aw/yg2oAFimlF7mNvfDV192LR7nDiKtSIfCuLT7KokPSTn/9kfVLm5OGN0A28A==", 2280 | "funding": [ 2281 | { 2282 | "type": "github", 2283 | "url": "https://github.com/sponsors/fastify" 2284 | }, 2285 | { 2286 | "type": "opencollective", 2287 | "url": "https://opencollective.com/fastify" 2288 | } 2289 | ], 2290 | "license": "BSD-3-Clause", 2291 | "dependencies": { 2292 | "cookie": "^1.0.1", 2293 | "process-warning": "^4.0.0", 2294 | "set-cookie-parser": "^2.6.0" 2295 | } 2296 | }, 2297 | "node_modules/loupe": { 2298 | "version": "3.1.3", 2299 | "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.3.tgz", 2300 | "integrity": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==", 2301 | "dev": true, 2302 | "license": "MIT" 2303 | }, 2304 | "node_modules/lru-cache": { 2305 | "version": "10.4.3", 2306 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", 2307 | "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", 2308 | "dev": true, 2309 | "license": "ISC" 2310 | }, 2311 | "node_modules/magic-string": { 2312 | "version": "0.30.17", 2313 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", 2314 | "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", 2315 | "dev": true, 2316 | "license": "MIT", 2317 | "dependencies": { 2318 | "@jridgewell/sourcemap-codec": "^1.5.0" 2319 | } 2320 | }, 2321 | "node_modules/magicast": { 2322 | "version": "0.3.5", 2323 | "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz", 2324 | "integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==", 2325 | "dev": true, 2326 | "license": "MIT", 2327 | "dependencies": { 2328 | "@babel/parser": "^7.25.4", 2329 | "@babel/types": "^7.25.4", 2330 | "source-map-js": "^1.2.0" 2331 | } 2332 | }, 2333 | "node_modules/make-dir": { 2334 | "version": "4.0.0", 2335 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", 2336 | "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", 2337 | "dev": true, 2338 | "license": "MIT", 2339 | "dependencies": { 2340 | "semver": "^7.5.3" 2341 | }, 2342 | "engines": { 2343 | "node": ">=10" 2344 | }, 2345 | "funding": { 2346 | "url": "https://github.com/sponsors/sindresorhus" 2347 | } 2348 | }, 2349 | "node_modules/math-intrinsics": { 2350 | "version": "1.1.0", 2351 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 2352 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 2353 | "license": "MIT", 2354 | "engines": { 2355 | "node": ">= 0.4" 2356 | } 2357 | }, 2358 | "node_modules/mime-db": { 2359 | "version": "1.52.0", 2360 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2361 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2362 | "license": "MIT", 2363 | "engines": { 2364 | "node": ">= 0.6" 2365 | } 2366 | }, 2367 | "node_modules/mime-types": { 2368 | "version": "2.1.35", 2369 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2370 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2371 | "license": "MIT", 2372 | "dependencies": { 2373 | "mime-db": "1.52.0" 2374 | }, 2375 | "engines": { 2376 | "node": ">= 0.6" 2377 | } 2378 | }, 2379 | "node_modules/minimatch": { 2380 | "version": "3.1.2", 2381 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2382 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2383 | "dev": true, 2384 | "license": "ISC", 2385 | "dependencies": { 2386 | "brace-expansion": "^1.1.7" 2387 | }, 2388 | "engines": { 2389 | "node": "*" 2390 | } 2391 | }, 2392 | "node_modules/minipass": { 2393 | "version": "7.1.2", 2394 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", 2395 | "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", 2396 | "dev": true, 2397 | "license": "ISC", 2398 | "engines": { 2399 | "node": ">=16 || 14 >=14.17" 2400 | } 2401 | }, 2402 | "node_modules/mrmime": { 2403 | "version": "2.0.1", 2404 | "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 2405 | "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 2406 | "dev": true, 2407 | "license": "MIT", 2408 | "engines": { 2409 | "node": ">=10" 2410 | } 2411 | }, 2412 | "node_modules/ms": { 2413 | "version": "2.1.3", 2414 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2415 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2416 | "dev": true, 2417 | "license": "MIT" 2418 | }, 2419 | "node_modules/nanoid": { 2420 | "version": "3.3.8", 2421 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 2422 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 2423 | "dev": true, 2424 | "funding": [ 2425 | { 2426 | "type": "github", 2427 | "url": "https://github.com/sponsors/ai" 2428 | } 2429 | ], 2430 | "license": "MIT", 2431 | "peer": true, 2432 | "bin": { 2433 | "nanoid": "bin/nanoid.cjs" 2434 | }, 2435 | "engines": { 2436 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2437 | } 2438 | }, 2439 | "node_modules/nodemon": { 2440 | "version": "3.1.9", 2441 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.9.tgz", 2442 | "integrity": "sha512-hdr1oIb2p6ZSxu3PB2JWWYS7ZQ0qvaZsc3hK8DR8f02kRzc8rjYmxAIvdz+aYC+8F2IjNaB7HMcSDg8nQpJxyg==", 2443 | "dev": true, 2444 | "license": "MIT", 2445 | "dependencies": { 2446 | "chokidar": "^3.5.2", 2447 | "debug": "^4", 2448 | "ignore-by-default": "^1.0.1", 2449 | "minimatch": "^3.1.2", 2450 | "pstree.remy": "^1.1.8", 2451 | "semver": "^7.5.3", 2452 | "simple-update-notifier": "^2.0.0", 2453 | "supports-color": "^5.5.0", 2454 | "touch": "^3.1.0", 2455 | "undefsafe": "^2.0.5" 2456 | }, 2457 | "bin": { 2458 | "nodemon": "bin/nodemon.js" 2459 | }, 2460 | "engines": { 2461 | "node": ">=10" 2462 | }, 2463 | "funding": { 2464 | "type": "opencollective", 2465 | "url": "https://opencollective.com/nodemon" 2466 | } 2467 | }, 2468 | "node_modules/nodemon/node_modules/has-flag": { 2469 | "version": "3.0.0", 2470 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 2471 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 2472 | "dev": true, 2473 | "license": "MIT", 2474 | "engines": { 2475 | "node": ">=4" 2476 | } 2477 | }, 2478 | "node_modules/nodemon/node_modules/supports-color": { 2479 | "version": "5.5.0", 2480 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2481 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2482 | "dev": true, 2483 | "license": "MIT", 2484 | "dependencies": { 2485 | "has-flag": "^3.0.0" 2486 | }, 2487 | "engines": { 2488 | "node": ">=4" 2489 | } 2490 | }, 2491 | "node_modules/normalize-path": { 2492 | "version": "3.0.0", 2493 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2494 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2495 | "dev": true, 2496 | "license": "MIT", 2497 | "engines": { 2498 | "node": ">=0.10.0" 2499 | } 2500 | }, 2501 | "node_modules/on-exit-leak-free": { 2502 | "version": "2.1.2", 2503 | "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz", 2504 | "integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==", 2505 | "license": "MIT", 2506 | "engines": { 2507 | "node": ">=14.0.0" 2508 | } 2509 | }, 2510 | "node_modules/package-json-from-dist": { 2511 | "version": "1.0.1", 2512 | "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", 2513 | "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", 2514 | "dev": true, 2515 | "license": "BlueOak-1.0.0" 2516 | }, 2517 | "node_modules/path-key": { 2518 | "version": "3.1.1", 2519 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2520 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2521 | "dev": true, 2522 | "license": "MIT", 2523 | "engines": { 2524 | "node": ">=8" 2525 | } 2526 | }, 2527 | "node_modules/path-scurry": { 2528 | "version": "1.11.1", 2529 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", 2530 | "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", 2531 | "dev": true, 2532 | "license": "BlueOak-1.0.0", 2533 | "dependencies": { 2534 | "lru-cache": "^10.2.0", 2535 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 2536 | }, 2537 | "engines": { 2538 | "node": ">=16 || 14 >=14.18" 2539 | }, 2540 | "funding": { 2541 | "url": "https://github.com/sponsors/isaacs" 2542 | } 2543 | }, 2544 | "node_modules/pathe": { 2545 | "version": "2.0.3", 2546 | "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", 2547 | "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", 2548 | "dev": true, 2549 | "license": "MIT" 2550 | }, 2551 | "node_modules/pathval": { 2552 | "version": "2.0.0", 2553 | "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", 2554 | "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", 2555 | "dev": true, 2556 | "license": "MIT", 2557 | "peer": true, 2558 | "engines": { 2559 | "node": ">= 14.16" 2560 | } 2561 | }, 2562 | "node_modules/picocolors": { 2563 | "version": "1.1.1", 2564 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2565 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2566 | "dev": true, 2567 | "license": "ISC", 2568 | "peer": true 2569 | }, 2570 | "node_modules/picomatch": { 2571 | "version": "2.3.1", 2572 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2573 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2574 | "dev": true, 2575 | "license": "MIT", 2576 | "engines": { 2577 | "node": ">=8.6" 2578 | }, 2579 | "funding": { 2580 | "url": "https://github.com/sponsors/jonschlinkert" 2581 | } 2582 | }, 2583 | "node_modules/pino": { 2584 | "version": "9.6.0", 2585 | "resolved": "https://registry.npmjs.org/pino/-/pino-9.6.0.tgz", 2586 | "integrity": "sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==", 2587 | "license": "MIT", 2588 | "dependencies": { 2589 | "atomic-sleep": "^1.0.0", 2590 | "fast-redact": "^3.1.1", 2591 | "on-exit-leak-free": "^2.1.0", 2592 | "pino-abstract-transport": "^2.0.0", 2593 | "pino-std-serializers": "^7.0.0", 2594 | "process-warning": "^4.0.0", 2595 | "quick-format-unescaped": "^4.0.3", 2596 | "real-require": "^0.2.0", 2597 | "safe-stable-stringify": "^2.3.1", 2598 | "sonic-boom": "^4.0.1", 2599 | "thread-stream": "^3.0.0" 2600 | }, 2601 | "bin": { 2602 | "pino": "bin.js" 2603 | } 2604 | }, 2605 | "node_modules/pino-abstract-transport": { 2606 | "version": "2.0.0", 2607 | "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz", 2608 | "integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==", 2609 | "license": "MIT", 2610 | "dependencies": { 2611 | "split2": "^4.0.0" 2612 | } 2613 | }, 2614 | "node_modules/pino-std-serializers": { 2615 | "version": "7.0.0", 2616 | "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz", 2617 | "integrity": "sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==", 2618 | "license": "MIT" 2619 | }, 2620 | "node_modules/postcss": { 2621 | "version": "8.5.3", 2622 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 2623 | "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 2624 | "dev": true, 2625 | "funding": [ 2626 | { 2627 | "type": "opencollective", 2628 | "url": "https://opencollective.com/postcss/" 2629 | }, 2630 | { 2631 | "type": "tidelift", 2632 | "url": "https://tidelift.com/funding/github/npm/postcss" 2633 | }, 2634 | { 2635 | "type": "github", 2636 | "url": "https://github.com/sponsors/ai" 2637 | } 2638 | ], 2639 | "license": "MIT", 2640 | "peer": true, 2641 | "dependencies": { 2642 | "nanoid": "^3.3.8", 2643 | "picocolors": "^1.1.1", 2644 | "source-map-js": "^1.2.1" 2645 | }, 2646 | "engines": { 2647 | "node": "^10 || ^12 || >=14" 2648 | } 2649 | }, 2650 | "node_modules/process-warning": { 2651 | "version": "4.0.1", 2652 | "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-4.0.1.tgz", 2653 | "integrity": "sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==", 2654 | "funding": [ 2655 | { 2656 | "type": "github", 2657 | "url": "https://github.com/sponsors/fastify" 2658 | }, 2659 | { 2660 | "type": "opencollective", 2661 | "url": "https://opencollective.com/fastify" 2662 | } 2663 | ], 2664 | "license": "MIT" 2665 | }, 2666 | "node_modules/proxy-from-env": { 2667 | "version": "1.1.0", 2668 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 2669 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 2670 | "license": "MIT" 2671 | }, 2672 | "node_modules/pstree.remy": { 2673 | "version": "1.1.8", 2674 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 2675 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", 2676 | "dev": true, 2677 | "license": "MIT" 2678 | }, 2679 | "node_modules/quick-format-unescaped": { 2680 | "version": "4.0.4", 2681 | "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", 2682 | "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", 2683 | "license": "MIT" 2684 | }, 2685 | "node_modules/readdirp": { 2686 | "version": "3.6.0", 2687 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2688 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2689 | "dev": true, 2690 | "license": "MIT", 2691 | "dependencies": { 2692 | "picomatch": "^2.2.1" 2693 | }, 2694 | "engines": { 2695 | "node": ">=8.10.0" 2696 | } 2697 | }, 2698 | "node_modules/real-require": { 2699 | "version": "0.2.0", 2700 | "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz", 2701 | "integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==", 2702 | "license": "MIT", 2703 | "engines": { 2704 | "node": ">= 12.13.0" 2705 | } 2706 | }, 2707 | "node_modules/require-from-string": { 2708 | "version": "2.0.2", 2709 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", 2710 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", 2711 | "license": "MIT", 2712 | "engines": { 2713 | "node": ">=0.10.0" 2714 | } 2715 | }, 2716 | "node_modules/ret": { 2717 | "version": "0.5.0", 2718 | "resolved": "https://registry.npmjs.org/ret/-/ret-0.5.0.tgz", 2719 | "integrity": "sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==", 2720 | "license": "MIT", 2721 | "engines": { 2722 | "node": ">=10" 2723 | } 2724 | }, 2725 | "node_modules/reusify": { 2726 | "version": "1.0.4", 2727 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2728 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2729 | "license": "MIT", 2730 | "engines": { 2731 | "iojs": ">=1.0.0", 2732 | "node": ">=0.10.0" 2733 | } 2734 | }, 2735 | "node_modules/rfdc": { 2736 | "version": "1.4.1", 2737 | "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", 2738 | "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", 2739 | "license": "MIT" 2740 | }, 2741 | "node_modules/rollup": { 2742 | "version": "4.34.8", 2743 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz", 2744 | "integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==", 2745 | "dev": true, 2746 | "license": "MIT", 2747 | "peer": true, 2748 | "dependencies": { 2749 | "@types/estree": "1.0.6" 2750 | }, 2751 | "bin": { 2752 | "rollup": "dist/bin/rollup" 2753 | }, 2754 | "engines": { 2755 | "node": ">=18.0.0", 2756 | "npm": ">=8.0.0" 2757 | }, 2758 | "optionalDependencies": { 2759 | "@rollup/rollup-android-arm-eabi": "4.34.8", 2760 | "@rollup/rollup-android-arm64": "4.34.8", 2761 | "@rollup/rollup-darwin-arm64": "4.34.8", 2762 | "@rollup/rollup-darwin-x64": "4.34.8", 2763 | "@rollup/rollup-freebsd-arm64": "4.34.8", 2764 | "@rollup/rollup-freebsd-x64": "4.34.8", 2765 | "@rollup/rollup-linux-arm-gnueabihf": "4.34.8", 2766 | "@rollup/rollup-linux-arm-musleabihf": "4.34.8", 2767 | "@rollup/rollup-linux-arm64-gnu": "4.34.8", 2768 | "@rollup/rollup-linux-arm64-musl": "4.34.8", 2769 | "@rollup/rollup-linux-loongarch64-gnu": "4.34.8", 2770 | "@rollup/rollup-linux-powerpc64le-gnu": "4.34.8", 2771 | "@rollup/rollup-linux-riscv64-gnu": "4.34.8", 2772 | "@rollup/rollup-linux-s390x-gnu": "4.34.8", 2773 | "@rollup/rollup-linux-x64-gnu": "4.34.8", 2774 | "@rollup/rollup-linux-x64-musl": "4.34.8", 2775 | "@rollup/rollup-win32-arm64-msvc": "4.34.8", 2776 | "@rollup/rollup-win32-ia32-msvc": "4.34.8", 2777 | "@rollup/rollup-win32-x64-msvc": "4.34.8", 2778 | "fsevents": "~2.3.2" 2779 | } 2780 | }, 2781 | "node_modules/safe-regex2": { 2782 | "version": "4.0.1", 2783 | "resolved": "https://registry.npmjs.org/safe-regex2/-/safe-regex2-4.0.1.tgz", 2784 | "integrity": "sha512-goqsB+bSlOmVX+CiFX2PFc1OV88j5jvBqIM+DgqrucHnUguAUNtiNOs+aTadq2NqsLQ+TQ3UEVG3gtSFcdlkCg==", 2785 | "funding": [ 2786 | { 2787 | "type": "github", 2788 | "url": "https://github.com/sponsors/fastify" 2789 | }, 2790 | { 2791 | "type": "opencollective", 2792 | "url": "https://opencollective.com/fastify" 2793 | } 2794 | ], 2795 | "license": "MIT", 2796 | "dependencies": { 2797 | "ret": "~0.5.0" 2798 | } 2799 | }, 2800 | "node_modules/safe-stable-stringify": { 2801 | "version": "2.5.0", 2802 | "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz", 2803 | "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==", 2804 | "license": "MIT", 2805 | "engines": { 2806 | "node": ">=10" 2807 | } 2808 | }, 2809 | "node_modules/secure-json-parse": { 2810 | "version": "3.0.2", 2811 | "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-3.0.2.tgz", 2812 | "integrity": "sha512-H6nS2o8bWfpFEV6U38sOSjS7bTbdgbCGU9wEM6W14P5H0QOsz94KCusifV44GpHDTu2nqZbuDNhTzu+mjDSw1w==", 2813 | "funding": [ 2814 | { 2815 | "type": "github", 2816 | "url": "https://github.com/sponsors/fastify" 2817 | }, 2818 | { 2819 | "type": "opencollective", 2820 | "url": "https://opencollective.com/fastify" 2821 | } 2822 | ], 2823 | "license": "BSD-3-Clause" 2824 | }, 2825 | "node_modules/semver": { 2826 | "version": "7.7.1", 2827 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 2828 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 2829 | "license": "ISC", 2830 | "bin": { 2831 | "semver": "bin/semver.js" 2832 | }, 2833 | "engines": { 2834 | "node": ">=10" 2835 | } 2836 | }, 2837 | "node_modules/set-cookie-parser": { 2838 | "version": "2.7.1", 2839 | "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", 2840 | "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", 2841 | "license": "MIT" 2842 | }, 2843 | "node_modules/shebang-command": { 2844 | "version": "2.0.0", 2845 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2846 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2847 | "dev": true, 2848 | "license": "MIT", 2849 | "dependencies": { 2850 | "shebang-regex": "^3.0.0" 2851 | }, 2852 | "engines": { 2853 | "node": ">=8" 2854 | } 2855 | }, 2856 | "node_modules/shebang-regex": { 2857 | "version": "3.0.0", 2858 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2859 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2860 | "dev": true, 2861 | "license": "MIT", 2862 | "engines": { 2863 | "node": ">=8" 2864 | } 2865 | }, 2866 | "node_modules/siginfo": { 2867 | "version": "2.0.0", 2868 | "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", 2869 | "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", 2870 | "dev": true, 2871 | "license": "ISC", 2872 | "peer": true 2873 | }, 2874 | "node_modules/signal-exit": { 2875 | "version": "4.1.0", 2876 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2877 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2878 | "dev": true, 2879 | "license": "ISC", 2880 | "engines": { 2881 | "node": ">=14" 2882 | }, 2883 | "funding": { 2884 | "url": "https://github.com/sponsors/isaacs" 2885 | } 2886 | }, 2887 | "node_modules/simple-update-notifier": { 2888 | "version": "2.0.0", 2889 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 2890 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 2891 | "dev": true, 2892 | "license": "MIT", 2893 | "dependencies": { 2894 | "semver": "^7.5.3" 2895 | }, 2896 | "engines": { 2897 | "node": ">=10" 2898 | } 2899 | }, 2900 | "node_modules/sirv": { 2901 | "version": "3.0.1", 2902 | "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.1.tgz", 2903 | "integrity": "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==", 2904 | "dev": true, 2905 | "license": "MIT", 2906 | "dependencies": { 2907 | "@polka/url": "^1.0.0-next.24", 2908 | "mrmime": "^2.0.0", 2909 | "totalist": "^3.0.0" 2910 | }, 2911 | "engines": { 2912 | "node": ">=18" 2913 | } 2914 | }, 2915 | "node_modules/sonic-boom": { 2916 | "version": "4.2.0", 2917 | "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.2.0.tgz", 2918 | "integrity": "sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==", 2919 | "license": "MIT", 2920 | "dependencies": { 2921 | "atomic-sleep": "^1.0.0" 2922 | } 2923 | }, 2924 | "node_modules/source-map-js": { 2925 | "version": "1.2.1", 2926 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2927 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2928 | "dev": true, 2929 | "license": "BSD-3-Clause", 2930 | "engines": { 2931 | "node": ">=0.10.0" 2932 | } 2933 | }, 2934 | "node_modules/split2": { 2935 | "version": "4.2.0", 2936 | "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", 2937 | "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", 2938 | "license": "ISC", 2939 | "engines": { 2940 | "node": ">= 10.x" 2941 | } 2942 | }, 2943 | "node_modules/sprintf-js": { 2944 | "version": "1.1.3", 2945 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", 2946 | "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", 2947 | "license": "BSD-3-Clause" 2948 | }, 2949 | "node_modules/stackback": { 2950 | "version": "0.0.2", 2951 | "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", 2952 | "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", 2953 | "dev": true, 2954 | "license": "MIT", 2955 | "peer": true 2956 | }, 2957 | "node_modules/std-env": { 2958 | "version": "3.8.0", 2959 | "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", 2960 | "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", 2961 | "dev": true, 2962 | "license": "MIT" 2963 | }, 2964 | "node_modules/string-width": { 2965 | "version": "5.1.2", 2966 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 2967 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 2968 | "dev": true, 2969 | "license": "MIT", 2970 | "dependencies": { 2971 | "eastasianwidth": "^0.2.0", 2972 | "emoji-regex": "^9.2.2", 2973 | "strip-ansi": "^7.0.1" 2974 | }, 2975 | "engines": { 2976 | "node": ">=12" 2977 | }, 2978 | "funding": { 2979 | "url": "https://github.com/sponsors/sindresorhus" 2980 | } 2981 | }, 2982 | "node_modules/string-width-cjs": { 2983 | "name": "string-width", 2984 | "version": "4.2.3", 2985 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2986 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2987 | "dev": true, 2988 | "license": "MIT", 2989 | "dependencies": { 2990 | "emoji-regex": "^8.0.0", 2991 | "is-fullwidth-code-point": "^3.0.0", 2992 | "strip-ansi": "^6.0.1" 2993 | }, 2994 | "engines": { 2995 | "node": ">=8" 2996 | } 2997 | }, 2998 | "node_modules/string-width-cjs/node_modules/ansi-regex": { 2999 | "version": "5.0.1", 3000 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3001 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3002 | "dev": true, 3003 | "license": "MIT", 3004 | "engines": { 3005 | "node": ">=8" 3006 | } 3007 | }, 3008 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 3009 | "version": "8.0.0", 3010 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3011 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3012 | "dev": true, 3013 | "license": "MIT" 3014 | }, 3015 | "node_modules/string-width-cjs/node_modules/strip-ansi": { 3016 | "version": "6.0.1", 3017 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3018 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3019 | "dev": true, 3020 | "license": "MIT", 3021 | "dependencies": { 3022 | "ansi-regex": "^5.0.1" 3023 | }, 3024 | "engines": { 3025 | "node": ">=8" 3026 | } 3027 | }, 3028 | "node_modules/strip-ansi": { 3029 | "version": "7.1.0", 3030 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 3031 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3032 | "dev": true, 3033 | "license": "MIT", 3034 | "dependencies": { 3035 | "ansi-regex": "^6.0.1" 3036 | }, 3037 | "engines": { 3038 | "node": ">=12" 3039 | }, 3040 | "funding": { 3041 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 3042 | } 3043 | }, 3044 | "node_modules/strip-ansi-cjs": { 3045 | "name": "strip-ansi", 3046 | "version": "6.0.1", 3047 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3048 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3049 | "dev": true, 3050 | "license": "MIT", 3051 | "dependencies": { 3052 | "ansi-regex": "^5.0.1" 3053 | }, 3054 | "engines": { 3055 | "node": ">=8" 3056 | } 3057 | }, 3058 | "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { 3059 | "version": "5.0.1", 3060 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3061 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3062 | "dev": true, 3063 | "license": "MIT", 3064 | "engines": { 3065 | "node": ">=8" 3066 | } 3067 | }, 3068 | "node_modules/supports-color": { 3069 | "version": "7.2.0", 3070 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3071 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3072 | "dev": true, 3073 | "license": "MIT", 3074 | "dependencies": { 3075 | "has-flag": "^4.0.0" 3076 | }, 3077 | "engines": { 3078 | "node": ">=8" 3079 | } 3080 | }, 3081 | "node_modules/test-exclude": { 3082 | "version": "7.0.1", 3083 | "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-7.0.1.tgz", 3084 | "integrity": "sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==", 3085 | "dev": true, 3086 | "license": "ISC", 3087 | "dependencies": { 3088 | "@istanbuljs/schema": "^0.1.2", 3089 | "glob": "^10.4.1", 3090 | "minimatch": "^9.0.4" 3091 | }, 3092 | "engines": { 3093 | "node": ">=18" 3094 | } 3095 | }, 3096 | "node_modules/test-exclude/node_modules/brace-expansion": { 3097 | "version": "2.0.1", 3098 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 3099 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 3100 | "dev": true, 3101 | "license": "MIT", 3102 | "dependencies": { 3103 | "balanced-match": "^1.0.0" 3104 | } 3105 | }, 3106 | "node_modules/test-exclude/node_modules/minimatch": { 3107 | "version": "9.0.5", 3108 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 3109 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 3110 | "dev": true, 3111 | "license": "ISC", 3112 | "dependencies": { 3113 | "brace-expansion": "^2.0.1" 3114 | }, 3115 | "engines": { 3116 | "node": ">=16 || 14 >=14.17" 3117 | }, 3118 | "funding": { 3119 | "url": "https://github.com/sponsors/isaacs" 3120 | } 3121 | }, 3122 | "node_modules/thread-stream": { 3123 | "version": "3.1.0", 3124 | "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz", 3125 | "integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==", 3126 | "license": "MIT", 3127 | "dependencies": { 3128 | "real-require": "^0.2.0" 3129 | } 3130 | }, 3131 | "node_modules/tinybench": { 3132 | "version": "2.9.0", 3133 | "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", 3134 | "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", 3135 | "dev": true, 3136 | "license": "MIT", 3137 | "peer": true 3138 | }, 3139 | "node_modules/tinyexec": { 3140 | "version": "0.3.2", 3141 | "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", 3142 | "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", 3143 | "dev": true, 3144 | "license": "MIT", 3145 | "peer": true 3146 | }, 3147 | "node_modules/tinyglobby": { 3148 | "version": "0.2.11", 3149 | "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.11.tgz", 3150 | "integrity": "sha512-32TmKeeKUahv0Go8WmQgiEp9Y21NuxjwjqiRC1nrUB51YacfSwuB44xgXD+HdIppmMRgjQNPdrHyA6vIybYZ+g==", 3151 | "dev": true, 3152 | "license": "MIT", 3153 | "dependencies": { 3154 | "fdir": "^6.4.3", 3155 | "picomatch": "^4.0.2" 3156 | }, 3157 | "engines": { 3158 | "node": ">=12.0.0" 3159 | }, 3160 | "funding": { 3161 | "url": "https://github.com/sponsors/SuperchupuDev" 3162 | } 3163 | }, 3164 | "node_modules/tinyglobby/node_modules/fdir": { 3165 | "version": "6.4.3", 3166 | "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz", 3167 | "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==", 3168 | "dev": true, 3169 | "license": "MIT", 3170 | "peerDependencies": { 3171 | "picomatch": "^3 || ^4" 3172 | }, 3173 | "peerDependenciesMeta": { 3174 | "picomatch": { 3175 | "optional": true 3176 | } 3177 | } 3178 | }, 3179 | "node_modules/tinyglobby/node_modules/picomatch": { 3180 | "version": "4.0.2", 3181 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 3182 | "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 3183 | "dev": true, 3184 | "license": "MIT", 3185 | "engines": { 3186 | "node": ">=12" 3187 | }, 3188 | "funding": { 3189 | "url": "https://github.com/sponsors/jonschlinkert" 3190 | } 3191 | }, 3192 | "node_modules/tinypool": { 3193 | "version": "1.0.2", 3194 | "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz", 3195 | "integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==", 3196 | "dev": true, 3197 | "license": "MIT", 3198 | "peer": true, 3199 | "engines": { 3200 | "node": "^18.0.0 || >=20.0.0" 3201 | } 3202 | }, 3203 | "node_modules/tinyrainbow": { 3204 | "version": "2.0.0", 3205 | "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz", 3206 | "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", 3207 | "dev": true, 3208 | "license": "MIT", 3209 | "engines": { 3210 | "node": ">=14.0.0" 3211 | } 3212 | }, 3213 | "node_modules/tinyspy": { 3214 | "version": "3.0.2", 3215 | "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", 3216 | "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", 3217 | "dev": true, 3218 | "license": "MIT", 3219 | "peer": true, 3220 | "engines": { 3221 | "node": ">=14.0.0" 3222 | } 3223 | }, 3224 | "node_modules/to-regex-range": { 3225 | "version": "5.0.1", 3226 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3227 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3228 | "dev": true, 3229 | "license": "MIT", 3230 | "dependencies": { 3231 | "is-number": "^7.0.0" 3232 | }, 3233 | "engines": { 3234 | "node": ">=8.0" 3235 | } 3236 | }, 3237 | "node_modules/toad-cache": { 3238 | "version": "3.7.0", 3239 | "resolved": "https://registry.npmjs.org/toad-cache/-/toad-cache-3.7.0.tgz", 3240 | "integrity": "sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==", 3241 | "license": "MIT", 3242 | "engines": { 3243 | "node": ">=12" 3244 | } 3245 | }, 3246 | "node_modules/totalist": { 3247 | "version": "3.0.1", 3248 | "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 3249 | "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 3250 | "dev": true, 3251 | "license": "MIT", 3252 | "engines": { 3253 | "node": ">=6" 3254 | } 3255 | }, 3256 | "node_modules/touch": { 3257 | "version": "3.1.1", 3258 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", 3259 | "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", 3260 | "dev": true, 3261 | "license": "ISC", 3262 | "bin": { 3263 | "nodetouch": "bin/nodetouch.js" 3264 | } 3265 | }, 3266 | "node_modules/undefsafe": { 3267 | "version": "2.0.5", 3268 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 3269 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", 3270 | "dev": true, 3271 | "license": "MIT" 3272 | }, 3273 | "node_modules/vite": { 3274 | "version": "6.1.1", 3275 | "resolved": "https://registry.npmjs.org/vite/-/vite-6.1.1.tgz", 3276 | "integrity": "sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==", 3277 | "dev": true, 3278 | "license": "MIT", 3279 | "peer": true, 3280 | "dependencies": { 3281 | "esbuild": "^0.24.2", 3282 | "postcss": "^8.5.2", 3283 | "rollup": "^4.30.1" 3284 | }, 3285 | "bin": { 3286 | "vite": "bin/vite.js" 3287 | }, 3288 | "engines": { 3289 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 3290 | }, 3291 | "funding": { 3292 | "url": "https://github.com/vitejs/vite?sponsor=1" 3293 | }, 3294 | "optionalDependencies": { 3295 | "fsevents": "~2.3.3" 3296 | }, 3297 | "peerDependencies": { 3298 | "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", 3299 | "jiti": ">=1.21.0", 3300 | "less": "*", 3301 | "lightningcss": "^1.21.0", 3302 | "sass": "*", 3303 | "sass-embedded": "*", 3304 | "stylus": "*", 3305 | "sugarss": "*", 3306 | "terser": "^5.16.0", 3307 | "tsx": "^4.8.1", 3308 | "yaml": "^2.4.2" 3309 | }, 3310 | "peerDependenciesMeta": { 3311 | "@types/node": { 3312 | "optional": true 3313 | }, 3314 | "jiti": { 3315 | "optional": true 3316 | }, 3317 | "less": { 3318 | "optional": true 3319 | }, 3320 | "lightningcss": { 3321 | "optional": true 3322 | }, 3323 | "sass": { 3324 | "optional": true 3325 | }, 3326 | "sass-embedded": { 3327 | "optional": true 3328 | }, 3329 | "stylus": { 3330 | "optional": true 3331 | }, 3332 | "sugarss": { 3333 | "optional": true 3334 | }, 3335 | "terser": { 3336 | "optional": true 3337 | }, 3338 | "tsx": { 3339 | "optional": true 3340 | }, 3341 | "yaml": { 3342 | "optional": true 3343 | } 3344 | } 3345 | }, 3346 | "node_modules/vite-node": { 3347 | "version": "3.0.6", 3348 | "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.0.6.tgz", 3349 | "integrity": "sha512-s51RzrTkXKJrhNbUzQRsarjmAae7VmMPAsRT7lppVpIg6mK3zGthP9Hgz0YQQKuNcF+Ii7DfYk3Fxz40jRmePw==", 3350 | "dev": true, 3351 | "license": "MIT", 3352 | "peer": true, 3353 | "dependencies": { 3354 | "cac": "^6.7.14", 3355 | "debug": "^4.4.0", 3356 | "es-module-lexer": "^1.6.0", 3357 | "pathe": "^2.0.3", 3358 | "vite": "^5.0.0 || ^6.0.0" 3359 | }, 3360 | "bin": { 3361 | "vite-node": "vite-node.mjs" 3362 | }, 3363 | "engines": { 3364 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 3365 | }, 3366 | "funding": { 3367 | "url": "https://opencollective.com/vitest" 3368 | } 3369 | }, 3370 | "node_modules/vitest": { 3371 | "version": "3.0.6", 3372 | "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.0.6.tgz", 3373 | "integrity": "sha512-/iL1Sc5VeDZKPDe58oGK4HUFLhw6b5XdY1MYawjuSaDA4sEfYlY9HnS6aCEG26fX+MgUi7MwlduTBHHAI/OvMA==", 3374 | "dev": true, 3375 | "license": "MIT", 3376 | "peer": true, 3377 | "dependencies": { 3378 | "@vitest/expect": "3.0.6", 3379 | "@vitest/mocker": "3.0.6", 3380 | "@vitest/pretty-format": "^3.0.6", 3381 | "@vitest/runner": "3.0.6", 3382 | "@vitest/snapshot": "3.0.6", 3383 | "@vitest/spy": "3.0.6", 3384 | "@vitest/utils": "3.0.6", 3385 | "chai": "^5.2.0", 3386 | "debug": "^4.4.0", 3387 | "expect-type": "^1.1.0", 3388 | "magic-string": "^0.30.17", 3389 | "pathe": "^2.0.3", 3390 | "std-env": "^3.8.0", 3391 | "tinybench": "^2.9.0", 3392 | "tinyexec": "^0.3.2", 3393 | "tinypool": "^1.0.2", 3394 | "tinyrainbow": "^2.0.0", 3395 | "vite": "^5.0.0 || ^6.0.0", 3396 | "vite-node": "3.0.6", 3397 | "why-is-node-running": "^2.3.0" 3398 | }, 3399 | "bin": { 3400 | "vitest": "vitest.mjs" 3401 | }, 3402 | "engines": { 3403 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 3404 | }, 3405 | "funding": { 3406 | "url": "https://opencollective.com/vitest" 3407 | }, 3408 | "peerDependencies": { 3409 | "@edge-runtime/vm": "*", 3410 | "@types/debug": "^4.1.12", 3411 | "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", 3412 | "@vitest/browser": "3.0.6", 3413 | "@vitest/ui": "3.0.6", 3414 | "happy-dom": "*", 3415 | "jsdom": "*" 3416 | }, 3417 | "peerDependenciesMeta": { 3418 | "@edge-runtime/vm": { 3419 | "optional": true 3420 | }, 3421 | "@types/debug": { 3422 | "optional": true 3423 | }, 3424 | "@types/node": { 3425 | "optional": true 3426 | }, 3427 | "@vitest/browser": { 3428 | "optional": true 3429 | }, 3430 | "@vitest/ui": { 3431 | "optional": true 3432 | }, 3433 | "happy-dom": { 3434 | "optional": true 3435 | }, 3436 | "jsdom": { 3437 | "optional": true 3438 | } 3439 | } 3440 | }, 3441 | "node_modules/which": { 3442 | "version": "2.0.2", 3443 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3444 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3445 | "dev": true, 3446 | "license": "ISC", 3447 | "dependencies": { 3448 | "isexe": "^2.0.0" 3449 | }, 3450 | "bin": { 3451 | "node-which": "bin/node-which" 3452 | }, 3453 | "engines": { 3454 | "node": ">= 8" 3455 | } 3456 | }, 3457 | "node_modules/why-is-node-running": { 3458 | "version": "2.3.0", 3459 | "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", 3460 | "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", 3461 | "dev": true, 3462 | "license": "MIT", 3463 | "peer": true, 3464 | "dependencies": { 3465 | "siginfo": "^2.0.0", 3466 | "stackback": "0.0.2" 3467 | }, 3468 | "bin": { 3469 | "why-is-node-running": "cli.js" 3470 | }, 3471 | "engines": { 3472 | "node": ">=8" 3473 | } 3474 | }, 3475 | "node_modules/wrap-ansi": { 3476 | "version": "8.1.0", 3477 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 3478 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 3479 | "dev": true, 3480 | "license": "MIT", 3481 | "dependencies": { 3482 | "ansi-styles": "^6.1.0", 3483 | "string-width": "^5.0.1", 3484 | "strip-ansi": "^7.0.1" 3485 | }, 3486 | "engines": { 3487 | "node": ">=12" 3488 | }, 3489 | "funding": { 3490 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3491 | } 3492 | }, 3493 | "node_modules/wrap-ansi-cjs": { 3494 | "name": "wrap-ansi", 3495 | "version": "7.0.0", 3496 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3497 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3498 | "dev": true, 3499 | "license": "MIT", 3500 | "dependencies": { 3501 | "ansi-styles": "^4.0.0", 3502 | "string-width": "^4.1.0", 3503 | "strip-ansi": "^6.0.0" 3504 | }, 3505 | "engines": { 3506 | "node": ">=10" 3507 | }, 3508 | "funding": { 3509 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3510 | } 3511 | }, 3512 | "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { 3513 | "version": "5.0.1", 3514 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 3515 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 3516 | "dev": true, 3517 | "license": "MIT", 3518 | "engines": { 3519 | "node": ">=8" 3520 | } 3521 | }, 3522 | "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 3523 | "version": "4.3.0", 3524 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3525 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3526 | "dev": true, 3527 | "license": "MIT", 3528 | "dependencies": { 3529 | "color-convert": "^2.0.1" 3530 | }, 3531 | "engines": { 3532 | "node": ">=8" 3533 | }, 3534 | "funding": { 3535 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3536 | } 3537 | }, 3538 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 3539 | "version": "8.0.0", 3540 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3541 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3542 | "dev": true, 3543 | "license": "MIT" 3544 | }, 3545 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 3546 | "version": "4.2.3", 3547 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3548 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3549 | "dev": true, 3550 | "license": "MIT", 3551 | "dependencies": { 3552 | "emoji-regex": "^8.0.0", 3553 | "is-fullwidth-code-point": "^3.0.0", 3554 | "strip-ansi": "^6.0.1" 3555 | }, 3556 | "engines": { 3557 | "node": ">=8" 3558 | } 3559 | }, 3560 | "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { 3561 | "version": "6.0.1", 3562 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3563 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3564 | "dev": true, 3565 | "license": "MIT", 3566 | "dependencies": { 3567 | "ansi-regex": "^5.0.1" 3568 | }, 3569 | "engines": { 3570 | "node": ">=8" 3571 | } 3572 | } 3573 | } 3574 | } 3575 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lidarr-list", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "src/server.js", 6 | "type": "module", 7 | "scripts": { 8 | "start": "node src/server.js", 9 | "dev": "nodemon src/server.js", 10 | "test": "vitest run --coverage" 11 | }, 12 | "keywords": [], 13 | "author": "", 14 | "license": "ISC", 15 | "dependencies": { 16 | "axios": "^1.7.9", 17 | "dotenv": "^16.4.7", 18 | "fastify": "^5.2.1", 19 | "sprintf-js": "^1.1.3" 20 | }, 21 | "devDependencies": { 22 | "@vitest/coverage-v8": "^3.0.6", 23 | "@vitest/ui": "^3.0.6", 24 | "nodemon": "^3.1.9" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/config/config.js: -------------------------------------------------------------------------------- 1 | import dotenv from 'dotenv'; 2 | dotenv.config(); 3 | 4 | let USERS = []; 5 | let LISTS = []; 6 | 7 | export function validateEnv() { 8 | if (!process.env.USERS || !process.env.LISTS) { 9 | throw new Error('Environment variables USERS and LISTS must be defined'); 10 | } 11 | else { 12 | // Environment Variables 13 | USERS = process.env.USERS.split(','); 14 | LISTS = process.env.LISTS.split(','); 15 | } 16 | } 17 | 18 | // Environment Variables 19 | export { USERS, LISTS }; 20 | 21 | // API Endpoints 22 | export const API_PLAYLISTS = "https://api.listenbrainz.org/1/user/%s/playlists/createdfor"; 23 | export const API_PLAYLIST = "https://api.listenbrainz.org/1/playlist/%s"; 24 | 25 | // External helpers 26 | export const EXT_PLAYLIST = "https://musicbrainz.org/doc/jspf#playlist"; 27 | export const EXT_TRACK = "https://musicbrainz.org/doc/jspf#track"; 28 | 29 | // Template 30 | export const TMPL_PLAYLIST= "https://listenbrainz.org/playlist/%s"; -------------------------------------------------------------------------------- /src/controllers/artistController.js: -------------------------------------------------------------------------------- 1 | import fetchArtistMusicBrainzID from "../services/fetchArtistMusicBrainzID.js"; 2 | 3 | export async function getArtistMusicBrainzId(request, reply) { 4 | try { 5 | const ArtistMusicBrainzIDs = await fetchArtistMusicBrainzID(); 6 | reply.send(ArtistMusicBrainzIDs); 7 | } catch (error) { 8 | reply.status(500).send({ error: error.message }); 9 | } 10 | } -------------------------------------------------------------------------------- /src/routes/artistRoutes.js: -------------------------------------------------------------------------------- 1 | import {getArtistMusicBrainzId} from "../controllers/artistController.js"; 2 | 3 | /** 4 | * Encapsulates the routes 5 | * @param {FastifyInstance} fastify Encapsulated Fastify Instance 6 | * @param {Object} options plugin options, refer to https://fastify.dev/docs/latest/Reference/Plugins/#plugin-options 7 | */ 8 | 9 | async function artistRoutes(fastify, options) { 10 | fastify.get('/', getArtistMusicBrainzId); 11 | } 12 | 13 | export default artistRoutes; -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- 1 | import Fastify from 'fastify' 2 | import artistRoutes from './routes/artistRoutes.js' 3 | /** 4 | * @type {import('fastify').FastifyInstance} Instance of Fastify 5 | */ 6 | const fastify = Fastify({ 7 | logger: true 8 | }) 9 | 10 | fastify.register(artistRoutes) 11 | 12 | const start = async () => { 13 | try { 14 | await fastify.listen({ port: 4500, host: '0.0.0.0' }) 15 | } catch (err) { 16 | fastify.log.error(err) 17 | process.exit(1) 18 | } 19 | } 20 | 21 | start(); -------------------------------------------------------------------------------- /src/services/fetchArtistMusicBrainzID.js: -------------------------------------------------------------------------------- 1 | import {sprintf} from "sprintf-js"; 2 | import {API_PLAYLIST, API_PLAYLISTS, EXT_PLAYLIST, EXT_TRACK, LISTS, USERS, validateEnv} from "../config/config.js"; 3 | import fetchData from "./fetchData.js"; 4 | 5 | export default async function fetchArtistMusicBrainzID() { 6 | validateEnv(); 7 | try { 8 | const ids = {}; 9 | 10 | for (const user of USERS) { 11 | const listsResponse = await fetchData(sprintf(API_PLAYLISTS, user)); 12 | const lists = listsResponse.playlists || []; 13 | 14 | for (const list of lists) { 15 | const meta = list.playlist.extension[EXT_PLAYLIST]; 16 | const type = meta.additional_metadata.algorithm_metadata.source_patch; 17 | 18 | if (!LISTS.includes(type)) continue; 19 | 20 | const mbid = list.playlist.identifier.split('/').pop(); //Extract mbid 21 | const songsResponse = await fetchData(sprintf(API_PLAYLIST, mbid)); 22 | const songs = songsResponse.playlist.track; 23 | 24 | for (const song of songs) { 25 | const meta = song.extension[EXT_TRACK]; 26 | 27 | for (const artist of meta.additional_metadata.artists) { 28 | ids[artist.artist_mbid] = true; 29 | } 30 | } 31 | } 32 | } 33 | return Object.keys(ids).map(id => ({MusicBrainzID: id})) 34 | } catch (error) {{ 35 | throw new Error(`Error fetching MusicBrainzID: ${error.message}`); 36 | }} 37 | } -------------------------------------------------------------------------------- /src/services/fetchData.js: -------------------------------------------------------------------------------- 1 | import axios from "axios"; 2 | 3 | // Grab 4 | export default async function fetchData(url) { 5 | const resp = await axios.get(url); 6 | return resp.data; 7 | } -------------------------------------------------------------------------------- /test/unit/envCheck.test.js: -------------------------------------------------------------------------------- 1 | import { describe, it, expect, beforeEach, afterEach} from "vitest"; 2 | import { validateEnv } from "@src/config/config.js"; 3 | 4 | let envMock; 5 | 6 | beforeEach(() => { 7 | envMock = vi.spyOn(process, "env", "get").mockReturnValue({}); 8 | }); 9 | 10 | afterEach(() => { 11 | envMock.mockRestore(); 12 | }); 13 | 14 | describe("Environment variables Check", () => { 15 | it("should throw an error if USERS or LISTS is missing", () => { 16 | envMock.mockReturnValue({}); 17 | expect(() => validateEnv(envMock)).toThrowError( 18 | "Environment variables USERS and LISTS must be defined" 19 | ); 20 | }) 21 | 22 | it("should NOT throw an error if USERS or LISTS are defined", () => { 23 | envMock.mockReturnValue({ USERS: "test_user", LISTS: "test_lists" }); 24 | expect(() => validateEnv()).not.toThrowError(); 25 | }); 26 | }); -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vitest/config'; 2 | 3 | export default defineConfig({ 4 | test: { 5 | globals: true, 6 | }, 7 | resolve: { 8 | alias: { 9 | '@src': '/src', 10 | }, 11 | }, 12 | }); 13 | --------------------------------------------------------------------------------