From 9c628946839fe407b94c776e14c2bbe96f3b155a Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 15:31:21 +0200 Subject: [PATCH 01/69] ci(release-please): add configuration --- .github/workflows/release-please.yaml | 18 ++++++ .release-please-manifest.json | 9 +++ package-lock.json | 13 ++++ package.json | 12 ++++ release-please-config.json | 89 +++++++++++++++++++++++++++ 5 files changed, 141 insertions(+) create mode 100644 .github/workflows/release-please.yaml create mode 100644 .release-please-manifest.json create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 release-please-config.json diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml new file mode 100644 index 00000000..72eb7724 --- /dev/null +++ b/.github/workflows/release-please.yaml @@ -0,0 +1,18 @@ +on: + push: + branches: + - master + +permissions: + contents: write + pull-requests: write + +name: release-please + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: googleapis/release-please-action@v4 + with: + token: ${{ secrets.GH_PAT }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 00000000..564c3721 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,9 @@ +{ + "actions/artifactory-login": "1.0.0", + "actions/build-and-push-docker": "1.0.0", + "actions/build-and-push-helm": "1.0.0", + "actions/helm-lint": "1.0.0", + "actions/npm-publish": "1.0.0", + "actions/update-artifacts-file": "1.0.0", + ".": "1.0.0" +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..b6c1c91c --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "publish-npm-package-action", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "publish-npm-package-action", + "version": "1.0.0", + "license": "MIT" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 00000000..20c863c5 --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "publish-npm-package-action", + "version": "1.0.0", + "description": "A GitHub Action to publish npm packages.", + "main": "index.js", + "scripts": { + "prepack": "echo \"Running prepack script...\"" + }, + "author": "Your Name", + "license": "MIT" + } + \ No newline at end of file diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 00000000..e3dc1473 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,89 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "changelog-sections": [ + { + "section": "πŸŽ‰ Features", + "type": "feat" + }, + { + "section": "πŸ› Bug Fixes", + "type": "fix" + }, + { + "section": "⚑ Performance Improvements", + "type": "perf" + }, + { + "section": "πŸ”— Dependencies", + "type": "deps" + }, + { + "section": "πŸ“ Documentation", + "type": "docs" + }, + { + "section": "πŸ—οΈ Build System", + "type": "build" + }, + { + "section": "πŸ€– Continuous Integration", + "type": "ci" + }, + { + "section": "πŸ”§ Miscellaneous Chores", + "type": "chore" + }, + { + "section": "βͺ Reverts", + "type": "revert" + }, + { + "section": "βœ… Tests", + "type": "test" + }, + { + "section": "πŸ’„ Style", + "type": "style" + }, + { + "section": "♻️ Code Refactoring", + "type": "refactor" + } + ], + "draft-pull-request": false, + "include-v-in-tag": true, + "separate-pull-requests": false, + "packages": { + "actions/artifactory-login": { + "release-type": "simple", + "package-name": "artifactory-login", + "extra-files": ["README.md"] + }, + "actions/build-and-push-docker": { + "release-type": "simple", + "package-name": "build-and-push-docker", + "extra-files": ["README.md"] + }, + "actions/build-and-push-helm": { + "release-type": "simple", + "package-name": "build-and-push-helm", + "extra-files": ["README.md"] + }, + "actions/helm-lint": { + "release-type": "simple", + "package-name": "helm-lint", + "extra-files": ["README.md"] + }, + "actions/npm-publish": { + "release-type": "simple", + "package-name": "npm-publish", + "extra-files": ["README.md"] + }, + "actions/update-artifacts-file": { + "release-type": "simple", + "package-name": "update-artifacts-file", + "extra-files": ["README.md"] + } + } +} + \ No newline at end of file From 8fedb63b3285f3ab3257f20efb0d645547f9f54b Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 15:32:55 +0200 Subject: [PATCH 02/69] feat(artifactory-login): add artifactory-login action --- .github/workflows/test-artifactory-login.yaml | 24 +++++++++++++ actions/artifactory-login/README.md | 23 ++++++++++++ actions/artifactory-login/action.yaml | 35 +++++++++++++++++++ 3 files changed, 82 insertions(+) create mode 100644 .github/workflows/test-artifactory-login.yaml create mode 100644 actions/artifactory-login/README.md create mode 100644 actions/artifactory-login/action.yaml diff --git a/.github/workflows/test-artifactory-login.yaml b/.github/workflows/test-artifactory-login.yaml new file mode 100644 index 00000000..9637f9d8 --- /dev/null +++ b/.github/workflows/test-artifactory-login.yaml @@ -0,0 +1,24 @@ +name: Test artifactory-login action + +on: + workflow_dispatch: + workflow_call: + +permissions: + contents: read + id-token: write + +jobs: + test-artifactory-login: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Test Login to Artifactory Action + id: test-artifactory-login + uses: ./actions/artifactory-login + with: + registry: ${{ secrets.ACR_URL }} + username: ${{ secrets.ACR_PUSH_USER }} + password: ${{ secrets.ACR_PUSH_TOKEN }} diff --git a/actions/artifactory-login/README.md b/actions/artifactory-login/README.md new file mode 100644 index 00000000..ebacdfad --- /dev/null +++ b/actions/artifactory-login/README.md @@ -0,0 +1,23 @@ +# Artifactory Login Action + +This GitHub Action logs into MapColonies Artifactory (Azure Container Registry) to enable +authenticated operations like pulling or pushing images. + +## πŸ›  Inputs + +| Name | Description | Required | +|-----------|------------------------------------------|----------| +| `registry` | The Artifactory registry URL | βœ… Yes | +| `username` | Username for the registry | βœ… Yes | +| `password` | Password or token for the registry | βœ… Yes | + +## πŸš€ Usage + +```yaml +- name: Artifactory Login + uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 + with: + registry: ${{ secrets.ACR_URL }} + username: ${{ secrets.ACR_PUSH_USER }} + password: ${{ secrets.ACR_PUSH_TOKEN }} +``` diff --git a/actions/artifactory-login/action.yaml b/actions/artifactory-login/action.yaml new file mode 100644 index 00000000..14e9d1f6 --- /dev/null +++ b/actions/artifactory-login/action.yaml @@ -0,0 +1,35 @@ +name: "Artifactory Login" +description: "Logs into the Artifactory registry." +inputs: + registry: + description: | + Azure Registry to authenticate against. + required: true + username: + description: | + Azure Registry username. + required: true + password: + description: | + Azure Registry password. + required: true + +runs: + using: composite + steps: + - name: Checkout shared workflows + env: + action_repo: ${{ github.action_repository }} + action_ref: ${{ github.action_ref }} + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: ${{ env.action_repo }} + ref: ${{ env.action_ref }} + path: _shared-workflows-artifactory-login + + - name: Login to registry + uses: azure/docker-login@83efeb77770c98b620c73055fbb59b2847e17dc0 # v1 + with: + login-server: ${{ inputs.registry }} + username: ${{ inputs.username }} + password: ${{ inputs.password }} From faf84445e486a32c229247862264a8de25335fa9 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 15:33:40 +0200 Subject: [PATCH 03/69] feat(build-and-push-docker): add build-and-push-docker action --- .../workflows/test-build-and-push-docker.yaml | 28 +++++++++++ actions/build-and-push-docker/README.md | 32 +++++++++++++ actions/build-and-push-docker/VERSION | 1 + actions/build-and-push-docker/action.yaml | 47 +++++++++++++++++++ 4 files changed, 108 insertions(+) create mode 100644 .github/workflows/test-build-and-push-docker.yaml create mode 100644 actions/build-and-push-docker/README.md create mode 100644 actions/build-and-push-docker/VERSION create mode 100644 actions/build-and-push-docker/action.yaml diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml new file mode 100644 index 00000000..df095cb1 --- /dev/null +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -0,0 +1,28 @@ +name: Test Build and Push Docker Image + +on: + workflow_dispatch: + workflow_call: + +jobs: + test-build-and-push: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Test Login to Artifactory Action + id: test-artifactory-login + uses: ./actions/artifactory-login + with: + registry: ${{ secrets.ACR_URL }} + username: ${{ secrets.ACR_PUSH_USER }} + password: ${{ secrets.ACR_PUSH_TOKEN }} + + - name: Test Build Docker Image + uses: ./actions/build-and-push-docker + with: + context: . + scope: infra + repository: MapColonies/actions + registry: ${{ secrets.ACR_URL }} diff --git a/actions/build-and-push-docker/README.md b/actions/build-and-push-docker/README.md new file mode 100644 index 00000000..28f44ebe --- /dev/null +++ b/actions/build-and-push-docker/README.md @@ -0,0 +1,32 @@ +# Build and Push Docker Image Action + +This GitHub Action builds a Docker image from a specified context and pushes it to a given container registry. + +## πŸ›  Inputs + +| Name | Description | Required | +|--------------|-------------------------------------------------------------|----------| +| `context` | Path to the Docker build context (e.g. `.` or `./app`). | βœ… Yes | +| `repository` | Full repository path for the Docker image. | βœ… Yes | +| `scope` | Scope or namespace for the image (e.g. team/project name). | βœ… Yes | +| `registry` | Container registry URL (e.g. ACR address, etc.). | βœ… Yes | + + +## πŸš€ Usage + +```yaml +- name: Artifactory Login + uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 + with: + registry: ${{ secrets.ACR_URL }} + username: ${{ secrets.ACR_PUSH_USER }} + password: ${{ secrets.ACR_PUSH_TOKEN }} + +- name: Build and Push Docker Image + uses: MapColonies/shared-workflows/actions/build-and-push-docker@build-and-push-docker-v1 + with: + context: . + scope: infra + registry: ${{ secrets.ACR_URL }} + repository: MapColonies/infra-apps +``` diff --git a/actions/build-and-push-docker/VERSION b/actions/build-and-push-docker/VERSION new file mode 100644 index 00000000..3eefcb9d --- /dev/null +++ b/actions/build-and-push-docker/VERSION @@ -0,0 +1 @@ +1.0.0 diff --git a/actions/build-and-push-docker/action.yaml b/actions/build-and-push-docker/action.yaml new file mode 100644 index 00000000..44c3ffdc --- /dev/null +++ b/actions/build-and-push-docker/action.yaml @@ -0,0 +1,47 @@ +name: "Build and Push Docker Image" +description: "Builds a Docker image" +inputs: + context: + description: "Path to the Docker build context." + required: true + repository: + description: "Repository for the Docker image." + required: true + scope: + description: "Scope or namespace for the Docker image." + required: true + registry: + description: | + Azure Registry to authenticate against. + required: true +runs: + using: "composite" + steps: + - name: Checkout shared workflows + env: + action_repo: ${{ github.action_repository }} + action_ref: ${{ github.action_ref }} + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: ${{ env.action_repo }} + ref: ${{ env.action_ref }} + path: _shared-workflows-build-and-push-docker + + - name: Setup docker image name and downcase it + id: setup_image_name + run: | + if [[ -z "${{ inputs.repository }}" ]]; then + DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.scope }}/${{ github.event.repository.name }}:${{ github.ref_name }}" + else + DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.repository }}:${{ github.ref_name }}" + fi + echo "DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME,,}" >> $GITHUB_ENV + shell: bash + + - name: Build the docker image + run: docker build ${{ inputs.context }} -t ${{ env.DOCKER_IMAGE_NAME }} + shell: bash + + - name: Push docker image + run: docker push ${{ env.DOCKER_IMAGE_NAME }} + shell: bash From a27abb1c4d3ec755bf57ec16c6cd3b3593f838c1 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 15:34:33 +0200 Subject: [PATCH 04/69] feat(build-and-push-helm): add build-and-push-helm action --- .../workflows/test-build-and-push-helm.yaml | 28 +++++++++ actions/build-and-push-docker/VERSION | 1 - actions/build-and-push-helm/README.md | 38 +++++++++++ actions/build-and-push-helm/action.yaml | 63 +++++++++++++++++++ 4 files changed, 129 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/test-build-and-push-helm.yaml delete mode 100644 actions/build-and-push-docker/VERSION create mode 100644 actions/build-and-push-helm/README.md create mode 100644 actions/build-and-push-helm/action.yaml diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml new file mode 100644 index 00000000..3321157a --- /dev/null +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -0,0 +1,28 @@ +name: Test Build and Push Helm Chart + +on: + workflow_dispatch: + workflow_call: + +jobs: + test-build-and-push: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Test Login to Artifactory Action + id: test-artifactory-login + uses: ./actions/artifactory-login + with: + registry: ${{ secrets.ACR_URL }} + username: ${{ secrets.ACR_PUSH_USER }} + password: ${{ secrets.ACR_PUSH_TOKEN }} + + - name: Test Build Helm Chart + uses: ./actions/build-and-push-helm + with: + context: ./infra/test-helm + scope: infra + repository: MapColonies/actions + registry: ${{ secrets.ACR_URL }} diff --git a/actions/build-and-push-docker/VERSION b/actions/build-and-push-docker/VERSION deleted file mode 100644 index 3eefcb9d..00000000 --- a/actions/build-and-push-docker/VERSION +++ /dev/null @@ -1 +0,0 @@ -1.0.0 diff --git a/actions/build-and-push-helm/README.md b/actions/build-and-push-helm/README.md new file mode 100644 index 00000000..d0aef54d --- /dev/null +++ b/actions/build-and-push-helm/README.md @@ -0,0 +1,38 @@ +# Build and Push Helm Chart Action + +This GitHub Action packages a Helm chart and pushes it to a Azure Container Registry. + +## πŸ›  Inputs + +| Name | Description | Required | Default | +|--------------|------------------------------------------------------------------|----------|-------------| +| `scope` | Scope or namespace within the registry (e.g. `team` or `project`) | βœ… Yes | `""` | +| `repository` | The full GitHub repository (e.g. `MapColonies/helm-charts`) containing the Helm chart | βœ… Yes | | +| `context` | Relative path to the Helm chart directory | βœ… Yes | `./helm` | +| `registry` | OCI registry URL to push the chart to | βœ… Yes | | + +## πŸ“€ Outputs + +| Name | Description | +|---------|----------------------------------| +| `chart` | Name of the Helm chart | +| `ver` | Version of the Helm chart | + +## πŸš€ Usage + +```yaml +- name: Artifactory Login + uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 + with: + registry: ${{ secrets.ACR_URL }} + username: ${{ secrets.ACR_PUSH_USER }} + password: ${{ secrets.ACR_PUSH_TOKEN }} + +- name: Build and Push Helm Chart + uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v1 + with: + context: ./infra/monitoring + scope: infra + registry: ${{ secrets.ACR_URL }} + repository: MapColonies/helm-charts +``` diff --git a/actions/build-and-push-helm/action.yaml b/actions/build-and-push-helm/action.yaml new file mode 100644 index 00000000..4a92e2a8 --- /dev/null +++ b/actions/build-and-push-helm/action.yaml @@ -0,0 +1,63 @@ +name: "Build and Push Helm Chart" +description: "Builds and publishes a Helm chart to the specified registry." +inputs: + scope: + description: "Scope or namespace for the Helm chart." + required: true + default: "" + repository: + description: "Repository for the Helm Chart." + required: true + context: + description: "Path to the helm directory." + required: true + default: "./helm" +outputs: + chart: + description: "Name of the Helm chart." + ver: + description: "Version of the Helm chart." +runs: + using: "composite" + steps: + - name: Checkout helm chart repository + env: + action_repo: ${{ github.action_repository }} + action_ref: ${{ github.action_ref }} + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: ${{ inputs.repository }} + + - name: Setup Helm + uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5 + with: + version: "v3.12.0" + + - name: Get chart's name + id: set-chart-name + run: | + CHART=$(grep '^name:' Chart.yaml | awk '{print $2}') + echo "chart=$CHART" >> $GITHUB_OUTPUT + working-directory: ${{ inputs.context }} + shell: bash + + - name: Get the chart's version + id: set-chart-version + run: | + VER=$(grep '^version:' Chart.yaml | awk '{print $2}') + echo "ver=$VER" >> $GITHUB_OUTPUT + working-directory: ${{ inputs.context }} + shell: bash + + - name: Package chart into tgz file + run: | + helm package . --dependency-update + working-directory: ${{ inputs.context }} + shell: bash + + - name: Publish chart to ACR + run: | + helm push ${{ steps.set-chart-name.outputs.chart }}-${{ steps.set-chart-version.outputs.ver }}.tgz \ + oci://${{ inputs.registry }}/helm/${{ inputs.scope }} + working-directory: ${{ inputs.context }} + shell: bash From 11e3504fda53f64f823d8d11ca4f591e340f1d70 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 15:35:13 +0200 Subject: [PATCH 05/69] feat(helm-lint): add helm-lint action --- .github/workflows/test-helm-lint.yml | 22 +++++++++++ actions/helm-lint/README.md | 27 +++++++++++++ actions/helm-lint/action.yaml | 58 ++++++++++++++++++++++++++++ 3 files changed, 107 insertions(+) create mode 100644 .github/workflows/test-helm-lint.yml create mode 100644 actions/helm-lint/README.md create mode 100644 actions/helm-lint/action.yaml diff --git a/.github/workflows/test-helm-lint.yml b/.github/workflows/test-helm-lint.yml new file mode 100644 index 00000000..57700096 --- /dev/null +++ b/.github/workflows/test-helm-lint.yml @@ -0,0 +1,22 @@ +name: Helm Lint repository + +on: + workflow_dispatch: + workflow_call: + +permissions: + contents: write + id-token: write + +jobs: + test-helm-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: helm lint + uses: ./actions/helm-lint + with: + repository: ${{ github.repository }} + chartDirs: "./infra/test-helm" diff --git a/actions/helm-lint/README.md b/actions/helm-lint/README.md new file mode 100644 index 00000000..12b7504a --- /dev/null +++ b/actions/helm-lint/README.md @@ -0,0 +1,27 @@ +# Lint and Test Helm Charts Action + +This GitHub Action uses [chart-testing (ct)](https://github.com/helm/chart-testing) and [kind](https://kind.sigs.k8s.io/) +to lint and install Helm charts in a Kubernetes-in-Docker cluster. + +It detects which charts have changed and only tests those. + +## πŸ›  Inputs + +| Name | Description | Required | Default | +|--------------|--------------------------------------------------------------|----------|---------| +| `chartDirs` | Comma-separated list of root directories with Helm charts. | βœ… Yes | `.` | + +## πŸ“€ Outputs + +| Name | Description | +|----------|--------------------------------------| +| `changed`| Whether any charts were changed. | + +## πŸš€ Usage + +```yaml +- name: Lint and Test Charts + uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v1 + with: + chartDirs: infra/monitoring,infra/sftpgo +``` diff --git a/actions/helm-lint/action.yaml b/actions/helm-lint/action.yaml new file mode 100644 index 00000000..93fbdcd7 --- /dev/null +++ b/actions/helm-lint/action.yaml @@ -0,0 +1,58 @@ +name: "Lint and Test Helm Charts" +description: "An action to lint and test Helm charts using chart-testing and kind." +inputs: + chartDirs: + description: "Comma-separated list of root directories containing Helm charts." + required: true + default: "." +outputs: + changed: + description: "Indicates if there are changed charts." + value: ${{ steps.list-changed.outputs.changed }} +runs: + using: "composite" + steps: + - name: Checkout helm chart repository + env: + action_repo: ${{ github.action_repository }} + action_ref: ${{ github.action_ref }} + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: ${{ inputs.repository }} + + - name: Set up Helm + uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0 + with: + version: v3.16.3 + + - name: Set up Python + uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5 + with: + python-version: '3.x' + check-latest: true + + - name: Set up chart-testing + uses: helm/chart-testing-action@e6669bcd63d7cb57cb4380c33043eebe5d111992 # v2.6.1 + + - name: Run chart-testing (list-changed) + id: list-changed + run: | + changed=$(ct list-changed --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.event.repository.default_branch }}") + if [[ -n "$changed" ]]; then + echo "changed=true" >> "$GITHUB_OUTPUT" + fi + shell: bash + + - name: Run chart-testing (lint) + if: steps.list-changed.outputs.changed == 'true' + run: ct lint --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.event.repository.default_branch }}" + shell: bash + + - name: Create kind cluster + if: steps.list-changed.outputs.changed == 'true' + uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0 + + - name: Run chart-testing (install) + if: steps.list-changed.outputs.changed == 'true' + run: ct install --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.event.repository.default_branch }}" + shell: bash From 7bf843b0592598ca8a5f9a4bbc892790d972a5cb Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 15:35:48 +0200 Subject: [PATCH 06/69] feat(npm-publish): add npm-publish action --- .github/workflows/test-npm-publish.yaml | 21 +++++++++++++ actions/npm-publish/README.md | 27 ++++++++++++++++ actions/npm-publish/action.yaml | 42 +++++++++++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 .github/workflows/test-npm-publish.yaml create mode 100644 actions/npm-publish/README.md create mode 100644 actions/npm-publish/action.yaml diff --git a/.github/workflows/test-npm-publish.yaml b/.github/workflows/test-npm-publish.yaml new file mode 100644 index 00000000..12a16c29 --- /dev/null +++ b/.github/workflows/test-npm-publish.yaml @@ -0,0 +1,21 @@ +name: Publish npm Package + +on: + workflow_dispatch: + workflow_call: + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Checkout code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Test Publish Package + uses: ./actions/npm-publish + with: + node-version: ${{ inputs.node-version }} + npm-token: ${{ secrets.NPM_TOKEN }} diff --git a/actions/npm-publish/README.md b/actions/npm-publish/README.md new file mode 100644 index 00000000..410f7067 --- /dev/null +++ b/actions/npm-publish/README.md @@ -0,0 +1,27 @@ +# πŸ“¦ Publish npm Package Action + +This GitHub Action installs dependencies, runs a `prepack` script, and publishes a package to the npm registry using +[`npm-publish`](https://github.com/JS-DevTools/npm-publish). + +--- + +## πŸ›  Inputs + +| Name | Description | Required | Default | +|----------------|------------------------------------------|----------|-----------------------------------| +| `node-version` | The version of Node.js to use | βœ… Yes | `20` | +| `npm-token` | npm authentication token (`NODE_AUTH_TOKEN`) | βœ… Yes | β€” | +| `repository` | GitHub repository to checkout | βœ… Yes | `${{ github.action_repository }}` | + +--- + +## πŸš€ Usage + +```yaml +- name: Publish npm Package + uses: MapColonies/shared-workflows/actions/publish-npm@v1 + with: + node-version: '20' + npm-token: ${{ secrets.NPM_TOKEN }} + repository: MapColonies/infra-portal +``` diff --git a/actions/npm-publish/action.yaml b/actions/npm-publish/action.yaml new file mode 100644 index 00000000..9ec300f1 --- /dev/null +++ b/actions/npm-publish/action.yaml @@ -0,0 +1,42 @@ +name: 'Publish npm Package' +description: 'Installs dependencies, runs prepack, and publishes the package to npm' +inputs: + node-version: + description: 'Node.js version to use' + required: true + default: '20' + npm-token: + description: 'NPM authentication token' + required: true + repository: + description: 'Repository to checkout' + required: true + default: ${{ github.action_repository }} +runs: + using: 'composite' + steps: + - name: Checkout helm chart repository + env: + action_repo: ${{ github.action_repository }} + action_ref: ${{ github.action_ref }} + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: ${{ inputs.repository }} + + - name: Set up Node.js + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 + with: + node-version: ${{ inputs['node-version'] }} + + - name: Install dependencies + run: npm ci + shell: bash + + - name: Run prepack script + run: npm run prepack + shell: bash + + - name: Publish package to npm + uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 #v3 + with: + token: ${{ inputs['npm-token'] }} From e32a3ab6f39b5176243478c5d8d8d497b0c7b590 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 15:53:07 +0200 Subject: [PATCH 07/69] feat(update-artifacts-file): add update-artifacts-file action --- .../workflows/test-update-artifacts-file.yml | 28 ++++++++ actions/update-artifacts-file/README.md | 43 ++++++++++++ actions/update-artifacts-file/action.yaml | 68 +++++++++++++++++++ .../update-artifacts-file/commit-changes.sh | 26 +++++++ .../update-artifacts-file/modify_artifacts.sh | 29 ++++++++ 5 files changed, 194 insertions(+) create mode 100644 .github/workflows/test-update-artifacts-file.yml create mode 100644 actions/update-artifacts-file/README.md create mode 100644 actions/update-artifacts-file/action.yaml create mode 100644 actions/update-artifacts-file/commit-changes.sh create mode 100644 actions/update-artifacts-file/modify_artifacts.sh diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml new file mode 100644 index 00000000..b405e642 --- /dev/null +++ b/.github/workflows/test-update-artifacts-file.yml @@ -0,0 +1,28 @@ +name: Update artifacts.json + +on: + workflow_dispatch: + workflow_call: + +permissions: + contents: write + id-token: write + actions: write + +jobs: + update-artifacts-json: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Update artifacts.json + uses: ./actions/update-artifacts-file + with: + context: actions/update-artifacts-file + scope: infra + repository: ${{ env.action_repo }} + artifact-name: "sftpgo" + artifact-tag: "v2.0.2" + registry: ${{ secrets.ACR_URL }} + github_token: ${{ secrets.GH_PAT }} diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md new file mode 100644 index 00000000..5c305432 --- /dev/null +++ b/actions/update-artifacts-file/README.md @@ -0,0 +1,43 @@ +# πŸ“¦ Build and Push Helm Chart Action + +This GitHub Action builds and publishes a Helm chart to a specified registry and updates an `artifacts.json` metadata file using custom shell scripts. + +--- + +## πŸš€ What It Does + +- Checks out the Helm chart repository +- Runs a script to update `artifacts.json` with the chart version and metadata +- Commits and pushes the updated metadata file to the repository + +--- + +## πŸ”§ Inputs + +| Name | Description | Required | Default | +|-----------------|----------------------------------------------------------------|----------|-------------| +| `scope` | Logical scope or namespace used to group charts (comma-separated) | βœ… Yes | `""` | +| `repository` | GitHub repository containing the Helm chart | βœ… Yes | Current repo | +| `context` | Path to the directory containing the Helm chart and scripts | βœ… Yes | `./helm` | +| `type` | Artifact type (`helm`, `docker`, etc.) | βœ… Yes | `docker` | +| `artifact-name` | The name of the chart to record in `artifacts.json` | βœ… Yes | β€” | +| `artifact-tag` | The chart version or tag | βœ… Yes | β€” | +| `github_token` | GitHub token used to commit and push changes | βœ… Yes | β€” | + + +--- + +## ✨ Usage + +```yaml +- name: Update artifacts.json +uses: ./actions/update-artifacts-file +with: + context: actions/update-artifacts-file + scope: infra + repository: ${{ env.action_repo }} + artifact-name: "sftpgo" + artifact-tag: "v2.0.2" + registry: ${{ secrets.ACR_URL }} + github_token: ${{ secrets.GH_PAT }} +``` diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml new file mode 100644 index 00000000..dedd2473 --- /dev/null +++ b/actions/update-artifacts-file/action.yaml @@ -0,0 +1,68 @@ +name: "Build and Push Helm Chart" +description: "Builds and publishes a Helm chart to the specified registry." +inputs: + scope: + description: "Scope or namespace for the Helm chart." + required: true + default: "" + repository: + description: "Repository for the Helm Chart." + required: true + context: + description: "Path to the helm directory." + required: true + default: "./helm" + type: + description: "Artifact`s type" + type: string + required: true + default: "docker" + artifact-name: + description: "Artifact`s name" + type: string + required: true + artifact-tag: + description: "Artifact`s tag" + type: string + required: true +runs: + using: "composite" + steps: + - name: Checkout helm chart repository + env: + action_repo: ${{ github.action_repository }} + action_ref: ${{ github.action_ref }} + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: + repository: ${{ inputs.repository }} + + - name: Set Execute Permission + run: chmod +x ./modify_artifacts.sh + shell: bash + working-directory: ${{ inputs.context }} + + - name: Run modify artifacts Script + run: ${{ inputs.context }}/modify_artifacts.sh + shell: bash + env: + SCOPE: ${{ inputs.scope }} + ARTIFACT_NAME: ${{ inputs.artifact-name }} + ARTIFACT_TAG: ${{ inputs.artifact-tag }} + TYPE: ${{ inputs.type }} + REGISTRY: "acrarolibotnonprod.azurecr.io" + + - name: Set commit Permission + run: chmod +x ./commit-changes.sh + shell: bash + working-directory: ${{ inputs.context }} + + - name: Run commit changes script + run: ${{ inputs.context }}/commit-changes.sh + shell: bash + env: + SCOPE: ${{ inputs.scope }} + ARTIFACT_NAME: ${{ inputs.artifact-name }} + ARTIFACT_TAG: ${{ inputs.artifact-tag }} + TYPE: ${{ inputs.type }} + GITHUB_TOKEN: ${{ inputs.github_token }} + REPOSITORY: ${{ inputs.repository }} diff --git a/actions/update-artifacts-file/commit-changes.sh b/actions/update-artifacts-file/commit-changes.sh new file mode 100644 index 00000000..c56c00eb --- /dev/null +++ b/actions/update-artifacts-file/commit-changes.sh @@ -0,0 +1,26 @@ +#!/bin/bash +cd $SCOPE +git config --global user.name "mapcolonies[bot]" +git config --global user.email "devops[bot]@mapcolonies.com" + +git add . +# Add "|| true" for not failing on this line 1 +git commit -m "chore: update artifacts.json for $SCOPE" -m "with $TYPE artifact: $ARTIFACT_NAME:$ARTIFACT_TAG" || true + +success=false +for ((i=1; i<=5; i++)); do + echo "Attempt number $i" + if GIT_ASKPASS=echo git push https://x-access-token:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git; then + success=true + break + else + sleep 5 + # --ff for fast-forward + git pull origin master --ff + fi +done + +if [ "$success" = false ]; then + echo "Failed to push changes." + exit 1 +fi diff --git a/actions/update-artifacts-file/modify_artifacts.sh b/actions/update-artifacts-file/modify_artifacts.sh new file mode 100644 index 00000000..e721c375 --- /dev/null +++ b/actions/update-artifacts-file/modify_artifacts.sh @@ -0,0 +1,29 @@ +#!/bin/bash +# Split string by comma +echo "$SCOPE" | tr ',' '\n' | while read -r element; do + # Check if the directory exists + if [ -d "$element" ]; then + echo "Changing directory to $REPOSITORY/$element" + pushd "$element" + node -e " + const fs = require('fs'); + const path = './artifacts.json'; + let data = {}; + // Check if 'artifacts.json' file already exists + if (fs.existsSync(path)) { + data = JSON.parse(fs.readFileSync(path, 'utf8')); + } + // Ensure nested structure: docker -> registry -> scope -> artifact:tag + if (!data['$TYPE']['$REGISTRY']) data['$TYPE']['$REGISTRY'] = {}; + const compositeKey = '${element}/$ARTIFACT_NAME'; + // Assign the artifact tag to the composite key + data['$TYPE']['$REGISTRY'][compositeKey] = '$ARTIFACT_TAG'; + // Writing new file contents + fs.writeFileSync(path, JSON.stringify(data, null, 2)); + " + # go back to before pushd + popd + else + echo "Directory $REPOSITORY/$element does not exist" + fi +done From 6e34f0b03330eb540c078094fbb819f87bd4017c Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 15:56:53 +0200 Subject: [PATCH 08/69] ci(release-please): add emptylines in end of file --- package.json | 1 - release-please-config.json | 1 - 2 files changed, 2 deletions(-) diff --git a/package.json b/package.json index 20c863c5..aeccd4be 100644 --- a/package.json +++ b/package.json @@ -9,4 +9,3 @@ "author": "Your Name", "license": "MIT" } - \ No newline at end of file diff --git a/release-please-config.json b/release-please-config.json index e3dc1473..c1d55927 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -86,4 +86,3 @@ } } } - \ No newline at end of file From 18b422d2105ca1f06546df9e70cf76e66277f5fa Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 24 Mar 2025 16:10:26 +0200 Subject: [PATCH 09/69] docs(build-and-push): change readme --- .github/workflows/test-build-and-push-docker.yaml | 2 +- .github/workflows/test-build-and-push-helm.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index df095cb1..26e0919a 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -24,5 +24,5 @@ jobs: with: context: . scope: infra - repository: MapColonies/actions + repository: MapColonies/shared-workflows registry: ${{ secrets.ACR_URL }} diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index 3321157a..f4db1932 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -24,5 +24,5 @@ jobs: with: context: ./infra/test-helm scope: infra - repository: MapColonies/actions + repository: MapColonies/shared-workflows registry: ${{ secrets.ACR_URL }} From 79ccb665ae1f353a91568666addb41c267f324fd Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 11:36:42 +0200 Subject: [PATCH 10/69] ci(artifactory-login): change permissions --- .github/workflows/test-artifactory-login.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-artifactory-login.yaml b/.github/workflows/test-artifactory-login.yaml index 9637f9d8..0c09eb4a 100644 --- a/.github/workflows/test-artifactory-login.yaml +++ b/.github/workflows/test-artifactory-login.yaml @@ -3,10 +3,14 @@ name: Test artifactory-login action on: workflow_dispatch: workflow_call: - -permissions: - contents: read - id-token: write + push: + branches: + - master + paths: + - "actions/artifactory-login/**" + pull_request: + paths: + - "actions/artifactory-login/**" jobs: test-artifactory-login: From 9bbbe369768b357cb61fa7dfd69774a466eba389 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 11:37:44 +0200 Subject: [PATCH 11/69] ci(build-and-push-docker): change permissions --- .github/workflows/test-build-and-push-docker.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index 26e0919a..4153d5e0 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -3,7 +3,15 @@ name: Test Build and Push Docker Image on: workflow_dispatch: workflow_call: - + push: + branches: + - master + paths: + - "actions/build-and-push-docker/**" + pull_request: + paths: + - "actions/build-and-push-docker/**" + jobs: test-build-and-push: runs-on: ubuntu-latest From 1d69cedbfa70533383bae088981343db97c9d8b0 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 11:38:39 +0200 Subject: [PATCH 12/69] ci(build-and-push-helm): change permissions --- .github/workflows/test-build-and-push-helm.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index f4db1932..6903fef0 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -3,7 +3,15 @@ name: Test Build and Push Helm Chart on: workflow_dispatch: workflow_call: - + push: + branches: + - master + paths: + - "actions/build-and-push-helm/**" + pull_request: + paths: + - "actions/build-and-push-helm/**" + jobs: test-build-and-push: runs-on: ubuntu-latest From 20067a76cbb4f0798abee9e976cbb154c0e1b155 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 11:40:15 +0200 Subject: [PATCH 13/69] ci(helm-lint): change permissions and add missing parameter --- .github/workflows/test-helm-lint.yml | 10 +++++++++- actions/helm-lint/README.md | 2 ++ actions/helm-lint/action.yaml | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-helm-lint.yml b/.github/workflows/test-helm-lint.yml index 57700096..3829879a 100644 --- a/.github/workflows/test-helm-lint.yml +++ b/.github/workflows/test-helm-lint.yml @@ -3,7 +3,15 @@ name: Helm Lint repository on: workflow_dispatch: workflow_call: - + push: + branches: + - master + paths: + - "actions/helm-lint/**" + pull_request: + paths: + - "actions/helm-lint/**" + permissions: contents: write id-token: write diff --git a/actions/helm-lint/README.md b/actions/helm-lint/README.md index 12b7504a..b23c64e5 100644 --- a/actions/helm-lint/README.md +++ b/actions/helm-lint/README.md @@ -10,6 +10,7 @@ It detects which charts have changed and only tests those. | Name | Description | Required | Default | |--------------|--------------------------------------------------------------|----------|---------| | `chartDirs` | Comma-separated list of root directories with Helm charts. | βœ… Yes | `.` | +| `repository` | The full GitHub repository (e.g. `MapColonies/helm-charts`) containing the Helm chart | βœ… Yes | | ## πŸ“€ Outputs @@ -24,4 +25,5 @@ It detects which charts have changed and only tests those. uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v1 with: chartDirs: infra/monitoring,infra/sftpgo + repository: ${{ github.repository }} ``` diff --git a/actions/helm-lint/action.yaml b/actions/helm-lint/action.yaml index 93fbdcd7..82bda183 100644 --- a/actions/helm-lint/action.yaml +++ b/actions/helm-lint/action.yaml @@ -5,6 +5,9 @@ inputs: description: "Comma-separated list of root directories containing Helm charts." required: true default: "." + repository: + description: "Repository for the Helm Chart." + required: true outputs: changed: description: "Indicates if there are changed charts." From 07170d4595d1317e3b4a16b3fe6ae80438144f66 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 11:48:44 +0200 Subject: [PATCH 14/69] ci(npm-publish): change permissions and add missing parameter --- .github/workflows/test-npm-publish.yaml | 10 +++++++++- actions/npm-publish/action.yaml | 1 - 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-npm-publish.yaml b/.github/workflows/test-npm-publish.yaml index 12a16c29..17dffba3 100644 --- a/.github/workflows/test-npm-publish.yaml +++ b/.github/workflows/test-npm-publish.yaml @@ -3,7 +3,15 @@ name: Publish npm Package on: workflow_dispatch: workflow_call: - + push: + branches: + - master + paths: + - "actions/npm-publish/**" + pull_request: + paths: + - "actions/npm-publish/**" + jobs: publish: runs-on: ubuntu-latest diff --git a/actions/npm-publish/action.yaml b/actions/npm-publish/action.yaml index 9ec300f1..53f5e0a4 100644 --- a/actions/npm-publish/action.yaml +++ b/actions/npm-publish/action.yaml @@ -11,7 +11,6 @@ inputs: repository: description: 'Repository to checkout' required: true - default: ${{ github.action_repository }} runs: using: 'composite' steps: From 870bfa72318c146dcc0d44d3bc0550abcc0b8a01 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 12:43:32 +0200 Subject: [PATCH 15/69] ci(update-artifacts-file): change permissions and add missing parameter --- .github/workflows/test-update-artifacts-file.yml | 14 +++++++++----- actions/update-artifacts-file/action.yaml | 5 ++++- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml index b405e642..7fe44c79 100644 --- a/.github/workflows/test-update-artifacts-file.yml +++ b/.github/workflows/test-update-artifacts-file.yml @@ -3,11 +3,14 @@ name: Update artifacts.json on: workflow_dispatch: workflow_call: - -permissions: - contents: write - id-token: write - actions: write + push: + branches: + - master + paths: + - "actions/update-artifacts-file/**" + pull_request: + paths: + - "actions/update-artifacts-file/**" jobs: update-artifacts-json: @@ -19,6 +22,7 @@ jobs: - name: Update artifacts.json uses: ./actions/update-artifacts-file with: + type: "docker" context: actions/update-artifacts-file scope: infra repository: ${{ env.action_repo }} diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml index dedd2473..af2b6bcc 100644 --- a/actions/update-artifacts-file/action.yaml +++ b/actions/update-artifacts-file/action.yaml @@ -8,6 +8,9 @@ inputs: repository: description: "Repository for the Helm Chart." required: true + registry: + description: "Registry to push the artifact to." + required: true context: description: "Path to the helm directory." required: true @@ -49,7 +52,7 @@ runs: ARTIFACT_NAME: ${{ inputs.artifact-name }} ARTIFACT_TAG: ${{ inputs.artifact-tag }} TYPE: ${{ inputs.type }} - REGISTRY: "acrarolibotnonprod.azurecr.io" + REGISTRY: ${{ inputs.registry }} - name: Set commit Permission run: chmod +x ./commit-changes.sh From 9201dd6cd086143e4639e268fa0aa79b3add6142 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 12:45:19 +0200 Subject: [PATCH 16/69] ci(helm-lint): add missing files --- infra/artifacts.json | 48 ++++++++++++++++++ infra/test-helm/Chart.yaml | 6 +++ infra/test-helm/templates/_helpers.tpl | 62 +++++++++++++++++++++++ infra/test-helm/templates/deployment.yaml | 29 +++++++++++ infra/test-helm/templates/secret.yaml | 8 +++ infra/test-helm/values.yaml | 28 ++++++++++ 6 files changed, 181 insertions(+) create mode 100644 infra/artifacts.json create mode 100644 infra/test-helm/Chart.yaml create mode 100644 infra/test-helm/templates/_helpers.tpl create mode 100644 infra/test-helm/templates/deployment.yaml create mode 100644 infra/test-helm/templates/secret.yaml create mode 100644 infra/test-helm/values.yaml diff --git a/infra/artifacts.json b/infra/artifacts.json new file mode 100644 index 00000000..087b8d6a --- /dev/null +++ b/infra/artifacts.json @@ -0,0 +1,48 @@ +{ + "docker": { + "acrarolibotnonprod.azurecr.io": { + "infra/blackbox-exporter": "v0.24.0", + "infra/alertmanager": "v0.25.0", + "infra/jimmidyson/configmap-reload": "v0.8.0", + "infra/prometheus-config-reloader": "v0.67.0", + "infra/prometheus": "v2.46.0", + "infra/grafana/grafana": "9.4.7", + "infra/opentelemetry-collector-contrib": "0.77.0", + "infra/memcached": "1.5.17-alpine", + "infra/grafana/tempo": "2.3.0", + "infra/nginxinc/nginx-unprivileged": "1.19-alpine", + "infra/jenkins/jenkins": "2.440.1-jdk17", + "infra/kiwigrid/k8s-sidecar": "1.25.4", + "infra/jenkins/inbound-agent": "3206.vb_15dcf73f6a_9-3", + "infra/prometheus/node-exporter": "v1.7.0", + "sftpgo": "v2.5-openshift", + "infra/auth-manager": "v1.2.0", + "infra/auth-cron": "v1.2.0", + "infra/skopeo-with-tools/stable": "v1.15.0", + "openpolicyagent/opa": "0.53.0-envoy-3", + "elastic-alertmanager-connector": "v1.0.0", + "infra/sftpgo": "v2.0.2" + }, + "docker.io": { + "bitnami/postgresql": "17.0.0-debian-12-r1", + "bitnami/minio": "2024.8.3-debian-12-r1", + "bitnami/redis": "7.2.3" + } + }, + "helm": { + "acrarolibotnonprod.azurecr.io": { + "prometheus-blackbox-exporter": "8.2.0", + "alertmanager": "0.33.1", + "prometheus": "23.3.0", + "grafana": "6.52.8", + "opentelemetry-collector": "0.57.2", + "tempo-distributed": "1.7.3", + "jenkins": "5.0.16", + "opa-la": "1.2.0", + "elasticsearch-alertmanager-connector": "1.0.0" + } + }, + "git": [ + "MapColonies/helm-charts" + ] +} \ No newline at end of file diff --git a/infra/test-helm/Chart.yaml b/infra/test-helm/Chart.yaml new file mode 100644 index 00000000..93afb8dd --- /dev/null +++ b/infra/test-helm/Chart.yaml @@ -0,0 +1,6 @@ +apiVersion: v2 +name: hello-world-chart +description: A Helm chart for Kubernetes +type: application +version: 6.0.0 +appVersion: 1.16.0 diff --git a/infra/test-helm/templates/_helpers.tpl b/infra/test-helm/templates/_helpers.tpl new file mode 100644 index 00000000..5759827d --- /dev/null +++ b/infra/test-helm/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "hello-world-chart.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "hello-world-chart.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "hello-world-chart.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "hello-world-chart.labels" -}} +helm.sh/chart: {{ include "hello-world-chart.chart" . }} +{{ include "hello-world-chart.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "hello-world-chart.selectorLabels" -}} +app.kubernetes.io/name: {{ include "hello-world-chart.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "hello-world-chart.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "hello-world-chart.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/infra/test-helm/templates/deployment.yaml b/infra/test-helm/templates/deployment.yaml new file mode 100644 index 00000000..1f79f1f5 --- /dev/null +++ b/infra/test-helm/templates/deployment.yaml @@ -0,0 +1,29 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "hello-world-chart.fullname" . }} + labels: + {{- include "hello-world-chart.labels" . | nindent 4 }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app: {{ include "hello-world-chart.name" . }} + release: {{ .Release.Name }} + template: + metadata: + labels: + app: {{ include "hello-world-chart.name" . }} + release: {{ .Release.Name }} + spec: + containers: + - name: {{ .Chart.Name }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + command: ["echo"] + args: ["hello world"] + ports: + - containerPort: 80 + name: http + invalidField: true + restartPolicy: Never diff --git a/infra/test-helm/templates/secret.yaml b/infra/test-helm/templates/secret.yaml new file mode 100644 index 00000000..85348b21 --- /dev/null +++ b/infra/test-helm/templates/secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: sftpgo-admin-creds +type: Opaque +data: + username: {{ .Values.secret.username | b64enc }} + password: {{ .Values.secret.password | b64enc }} diff --git a/infra/test-helm/values.yaml b/infra/test-helm/values.yaml new file mode 100644 index 00000000..8fab8768 --- /dev/null +++ b/infra/test-helm/values.yaml @@ -0,0 +1,28 @@ +replicaCount: 1 + +image: + repository: hello-world-image + pullPolicy: IfNotPresent + +nameOverride: "" +fullnameOverride: "" + +service: + type: ClusterIP + port: 80 + +ingress: + enabled: false + annotations: {} + hosts: + - host: chart-example.local + paths: [] + tls: [] + +resources: {} + +nodeSelector: {} + +tolerations: [] + +affinity: {} From 8a181c3cb82ed38a59314228b7273f7dca15451d Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 12:48:19 +0200 Subject: [PATCH 17/69] ci(build-and-push-docker): add missing files --- dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 dockerfile diff --git a/dockerfile b/dockerfile new file mode 100644 index 00000000..cb7cb373 --- /dev/null +++ b/dockerfile @@ -0,0 +1,6 @@ +# Use the official Alpine Linux image as the base image +FROM alpine:latest + +WORKDIR /app + +RUN echo "echo 'Hello, world!'" > hello.sh From 8b964f27640faf42640d98f3f0aa95dff92d2350 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 14:38:30 +0200 Subject: [PATCH 18/69] ci(actions): delete unneccesary workflow calls --- .github/workflows/test-artifactory-login.yaml | 3 --- .github/workflows/test-build-and-push-docker.yaml | 3 --- .github/workflows/test-build-and-push-helm.yaml | 3 --- .github/workflows/test-helm-lint.yml | 3 --- .github/workflows/test-npm-publish.yaml | 5 +---- .github/workflows/test-update-artifacts-file.yml | 3 --- 6 files changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/test-artifactory-login.yaml b/.github/workflows/test-artifactory-login.yaml index 0c09eb4a..9b1e5ed4 100644 --- a/.github/workflows/test-artifactory-login.yaml +++ b/.github/workflows/test-artifactory-login.yaml @@ -8,9 +8,6 @@ on: - master paths: - "actions/artifactory-login/**" - pull_request: - paths: - - "actions/artifactory-login/**" jobs: test-artifactory-login: diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index 4153d5e0..0908124f 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -8,9 +8,6 @@ on: - master paths: - "actions/build-and-push-docker/**" - pull_request: - paths: - - "actions/build-and-push-docker/**" jobs: test-build-and-push: diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index 6903fef0..65b034c1 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -8,9 +8,6 @@ on: - master paths: - "actions/build-and-push-helm/**" - pull_request: - paths: - - "actions/build-and-push-helm/**" jobs: test-build-and-push: diff --git a/.github/workflows/test-helm-lint.yml b/.github/workflows/test-helm-lint.yml index 3829879a..92828c85 100644 --- a/.github/workflows/test-helm-lint.yml +++ b/.github/workflows/test-helm-lint.yml @@ -8,9 +8,6 @@ on: - master paths: - "actions/helm-lint/**" - pull_request: - paths: - - "actions/helm-lint/**" permissions: contents: write diff --git a/.github/workflows/test-npm-publish.yaml b/.github/workflows/test-npm-publish.yaml index 17dffba3..914a473d 100644 --- a/.github/workflows/test-npm-publish.yaml +++ b/.github/workflows/test-npm-publish.yaml @@ -8,10 +8,7 @@ on: - master paths: - "actions/npm-publish/**" - pull_request: - paths: - - "actions/npm-publish/**" - + jobs: publish: runs-on: ubuntu-latest diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml index 7fe44c79..bb4e30d1 100644 --- a/.github/workflows/test-update-artifacts-file.yml +++ b/.github/workflows/test-update-artifacts-file.yml @@ -8,9 +8,6 @@ on: - master paths: - "actions/update-artifacts-file/**" - pull_request: - paths: - - "actions/update-artifacts-file/**" jobs: update-artifacts-json: From 75941970e4f8da4dc26671906ba12a5ee37b6cc3 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 25 Mar 2025 17:48:19 +0200 Subject: [PATCH 19/69] test(update-artifacts-file): test other logic --- .../update-artifacts-file/modify_artifacts.sh | 29 ++++++------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/actions/update-artifacts-file/modify_artifacts.sh b/actions/update-artifacts-file/modify_artifacts.sh index e721c375..1d79ae10 100644 --- a/actions/update-artifacts-file/modify_artifacts.sh +++ b/actions/update-artifacts-file/modify_artifacts.sh @@ -3,26 +3,15 @@ echo "$SCOPE" | tr ',' '\n' | while read -r element; do # Check if the directory exists if [ -d "$element" ]; then - echo "Changing directory to $REPOSITORY/$element" - pushd "$element" - node -e " - const fs = require('fs'); - const path = './artifacts.json'; - let data = {}; - // Check if 'artifacts.json' file already exists - if (fs.existsSync(path)) { - data = JSON.parse(fs.readFileSync(path, 'utf8')); - } - // Ensure nested structure: docker -> registry -> scope -> artifact:tag - if (!data['$TYPE']['$REGISTRY']) data['$TYPE']['$REGISTRY'] = {}; - const compositeKey = '${element}/$ARTIFACT_NAME'; - // Assign the artifact tag to the composite key - data['$TYPE']['$REGISTRY'][compositeKey] = '$ARTIFACT_TAG'; - // Writing new file contents - fs.writeFileSync(path, JSON.stringify(data, null, 2)); - " - # go back to before pushd - popd + path="$element/artifacts.json" + # Create a default empty JSON if the file doesn't exist + [[ -f "$path" ]] || echo '{}' > "$path" + # Ensure nested structure and assign artifact tag + jq --arg type "$TYPE" \ + --arg registry "$REGISTRY" \ + --arg key "${element}/$ARTIFACT_NAME" \ + --arg tag "$ARTIFACT_TAG" \ + '.[$type][$registry][$key] = $tag' "$path" > tmp.json && mv tmp.json "$path" else echo "Directory $REPOSITORY/$element does not exist" fi From 795635c9d4c7b4f157dda90fc38d734315c75f81 Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Thu, 27 Mar 2025 10:15:26 +0200 Subject: [PATCH 20/69] chore(test-build-and-push-docker): Update workflow name Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- .github/workflows/test-build-and-push-docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index 0908124f..216bbd85 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -24,7 +24,7 @@ jobs: username: ${{ secrets.ACR_PUSH_USER }} password: ${{ secrets.ACR_PUSH_TOKEN }} - - name: Test Build Docker Image + - name: Test Build and push Docker Image uses: ./actions/build-and-push-docker with: context: . From 760f32b34661954d8eafec66a6bbcc9e1eb318c3 Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Thu, 27 Mar 2025 10:25:40 +0200 Subject: [PATCH 21/69] chore(test-build-and-push-helm): change workflow name Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- .github/workflows/test-build-and-push-helm.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index 65b034c1..fb9e3611 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -24,7 +24,7 @@ jobs: username: ${{ secrets.ACR_PUSH_USER }} password: ${{ secrets.ACR_PUSH_TOKEN }} - - name: Test Build Helm Chart + - name: Test Build and push Helm Chart uses: ./actions/build-and-push-helm with: context: ./infra/test-helm From ee30dc77bec7979462225adfaab31feb29e487f3 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Sun, 30 Mar 2025 17:03:57 +0300 Subject: [PATCH 22/69] refactor(actions): PR changes --- .../workflows/test-build-and-push-docker.yaml | 2 -- .../workflows/test-build-and-push-helm.yaml | 1 - .github/workflows/test-npm-publish.yaml | 1 + .../workflows/test-update-artifacts-file.yml | 2 +- actions/artifactory-login/action.yaml | 16 +++------- actions/build-and-push-docker/README.md | 13 ++++---- actions/build-and-push-docker/action.yaml | 28 ++++++----------- actions/build-and-push-helm/README.md | 14 ++++----- actions/build-and-push-helm/action.yaml | 13 ++++---- actions/helm-lint/README.md | 2 -- actions/helm-lint/action.yaml | 14 +++------ actions/npm-publish/README.md | 2 -- actions/npm-publish/action.yaml | 9 +----- actions/update-artifacts-file/README.md | 28 ++++++++--------- actions/update-artifacts-file/action.yaml | 23 ++++++-------- .../update-artifacts-file/modify_artifacts.sh | 31 +++++++++---------- 16 files changed, 76 insertions(+), 123 deletions(-) diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index 0908124f..279928e4 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -17,7 +17,6 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Test Login to Artifactory Action - id: test-artifactory-login uses: ./actions/artifactory-login with: registry: ${{ secrets.ACR_URL }} @@ -29,5 +28,4 @@ jobs: with: context: . scope: infra - repository: MapColonies/shared-workflows registry: ${{ secrets.ACR_URL }} diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index 65b034c1..33bcd017 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -29,5 +29,4 @@ jobs: with: context: ./infra/test-helm scope: infra - repository: MapColonies/shared-workflows registry: ${{ secrets.ACR_URL }} diff --git a/.github/workflows/test-npm-publish.yaml b/.github/workflows/test-npm-publish.yaml index 914a473d..05f0c37d 100644 --- a/.github/workflows/test-npm-publish.yaml +++ b/.github/workflows/test-npm-publish.yaml @@ -24,3 +24,4 @@ jobs: with: node-version: ${{ inputs.node-version }} npm-token: ${{ secrets.NPM_TOKEN }} + repository: ${{ github.repository }} diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml index bb4e30d1..fe452e74 100644 --- a/.github/workflows/test-update-artifacts-file.yml +++ b/.github/workflows/test-update-artifacts-file.yml @@ -22,7 +22,7 @@ jobs: type: "docker" context: actions/update-artifacts-file scope: infra - repository: ${{ env.action_repo }} + repository: ${{ github.repository }} artifact-name: "sftpgo" artifact-tag: "v2.0.2" registry: ${{ secrets.ACR_URL }} diff --git a/actions/artifactory-login/action.yaml b/actions/artifactory-login/action.yaml index 14e9d1f6..eaa31da6 100644 --- a/actions/artifactory-login/action.yaml +++ b/actions/artifactory-login/action.yaml @@ -2,30 +2,22 @@ name: "Artifactory Login" description: "Logs into the Artifactory registry." inputs: registry: - description: | - Azure Registry to authenticate against. + description: Azure Registry to authenticate against. required: true username: - description: | - Azure Registry username. + description: Azure Registry username. required: true password: - description: | - Azure Registry password. + description: Azure Registry password. required: true runs: using: composite steps: - name: Checkout shared workflows - env: - action_repo: ${{ github.action_repository }} - action_ref: ${{ github.action_ref }} uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: - repository: ${{ env.action_repo }} - ref: ${{ env.action_ref }} - path: _shared-workflows-artifactory-login + path: shared-workflows-artifactory-login - name: Login to registry uses: azure/docker-login@83efeb77770c98b620c73055fbb59b2847e17dc0 # v1 diff --git a/actions/build-and-push-docker/README.md b/actions/build-and-push-docker/README.md index 28f44ebe..c45d446c 100644 --- a/actions/build-and-push-docker/README.md +++ b/actions/build-and-push-docker/README.md @@ -4,12 +4,12 @@ This GitHub Action builds a Docker image from a specified context and pushes it ## πŸ›  Inputs -| Name | Description | Required | -|--------------|-------------------------------------------------------------|----------| -| `context` | Path to the Docker build context (e.g. `.` or `./app`). | βœ… Yes | -| `repository` | Full repository path for the Docker image. | βœ… Yes | -| `scope` | Scope or namespace for the image (e.g. team/project name). | βœ… Yes | -| `registry` | Container registry URL (e.g. ACR address, etc.). | βœ… Yes | +| Name | Description | Required | Default | +|--------------|-----------------------------------------------------------------------------|----------|--------------------------------| +| `context` | Path to the Docker build context (e.g. `.` or `./app`). | βœ… Yes | β€” | +| `repository` | Full GitHub repository name. Used for image name. | ❌ No | `${{ github.repository }}` | +| `scope` | Scope or namespace for the image (e.g. `team`, `infra`, `project`). | βœ… Yes | β€” | +| `registry` | Registry URL (e.g. ACR address). | βœ… Yes | β€” | ## πŸš€ Usage @@ -28,5 +28,4 @@ This GitHub Action builds a Docker image from a specified context and pushes it context: . scope: infra registry: ${{ secrets.ACR_URL }} - repository: MapColonies/infra-apps ``` diff --git a/actions/build-and-push-docker/action.yaml b/actions/build-and-push-docker/action.yaml index 44c3ffdc..fb0f5424 100644 --- a/actions/build-and-push-docker/action.yaml +++ b/actions/build-and-push-docker/action.yaml @@ -5,36 +5,26 @@ inputs: description: "Path to the Docker build context." required: true repository: - description: "Repository for the Docker image." - required: true + description: "Repository name for the Docker image (defaults to current GitHub repository)." + required: false + default: ${{ github.repository }} scope: description: "Scope or namespace for the Docker image." required: true registry: - description: | - Azure Registry to authenticate against. + description: Azure Registry to authenticate against. required: true runs: using: "composite" steps: - - name: Checkout shared workflows - env: - action_repo: ${{ github.action_repository }} - action_ref: ${{ github.action_ref }} + - name: Checkout code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: - repository: ${{ env.action_repo }} - ref: ${{ env.action_ref }} - path: _shared-workflows-build-and-push-docker - - name: Setup docker image name and downcase it - id: setup_image_name + - name: Setup docker image name run: | - if [[ -z "${{ inputs.repository }}" ]]; then - DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.scope }}/${{ github.event.repository.name }}:${{ github.ref_name }}" - else - DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.repository }}:${{ github.ref_name }}" - fi + IMAGE_TAG="${{ github.ref_name }}" + REPO_NAME=$(basename "${{ inputs.repository }}") + DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.scope }}/${REPO_NAME}:${IMAGE_TAG}" echo "DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME,,}" >> $GITHUB_ENV shell: bash diff --git a/actions/build-and-push-helm/README.md b/actions/build-and-push-helm/README.md index d0aef54d..16feb6ab 100644 --- a/actions/build-and-push-helm/README.md +++ b/actions/build-and-push-helm/README.md @@ -4,12 +4,13 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi ## πŸ›  Inputs -| Name | Description | Required | Default | -|--------------|------------------------------------------------------------------|----------|-------------| -| `scope` | Scope or namespace within the registry (e.g. `team` or `project`) | βœ… Yes | `""` | -| `repository` | The full GitHub repository (e.g. `MapColonies/helm-charts`) containing the Helm chart | βœ… Yes | | -| `context` | Relative path to the Helm chart directory | βœ… Yes | `./helm` | -| `registry` | OCI registry URL to push the chart to | βœ… Yes | | +| Name | Description | Required | Default | +|--------------|-----------------------------------------------------------------------------------------------|----------|------------------------| +| `scope` | Scope or namespace within the registry (e.g. `team`, `project`, `infra`) | βœ… Yes | `""` | +| `repository` | Full GitHub repository name (e.g. `MapColonies/helm-charts`) for use in metadata | ❌ No | `${{ github.repository }}` | +| `context` | Relative path to the Helm chart directory | βœ… Yes | `./helm` | +| `registry` | OCI registry URL where the chart will be pushed (e.g. ACR address) | βœ… Yes | | + ## πŸ“€ Outputs @@ -34,5 +35,4 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi context: ./infra/monitoring scope: infra registry: ${{ secrets.ACR_URL }} - repository: MapColonies/helm-charts ``` diff --git a/actions/build-and-push-helm/action.yaml b/actions/build-and-push-helm/action.yaml index 4a92e2a8..8c8543d0 100644 --- a/actions/build-and-push-helm/action.yaml +++ b/actions/build-and-push-helm/action.yaml @@ -6,12 +6,16 @@ inputs: required: true default: "" repository: - description: "Repository for the Helm Chart." - required: true + description: "Repository name for the Docker image (defaults to current GitHub repository)." + required: false + default: ${{ github.repository }} context: description: "Path to the helm directory." required: true default: "./helm" + registry: + description: "Azure Registry to authenticate against." + required: true outputs: chart: description: "Name of the Helm chart." @@ -21,12 +25,7 @@ runs: using: "composite" steps: - name: Checkout helm chart repository - env: - action_repo: ${{ github.action_repository }} - action_ref: ${{ github.action_ref }} uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: - repository: ${{ inputs.repository }} - name: Setup Helm uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5 diff --git a/actions/helm-lint/README.md b/actions/helm-lint/README.md index b23c64e5..12b7504a 100644 --- a/actions/helm-lint/README.md +++ b/actions/helm-lint/README.md @@ -10,7 +10,6 @@ It detects which charts have changed and only tests those. | Name | Description | Required | Default | |--------------|--------------------------------------------------------------|----------|---------| | `chartDirs` | Comma-separated list of root directories with Helm charts. | βœ… Yes | `.` | -| `repository` | The full GitHub repository (e.g. `MapColonies/helm-charts`) containing the Helm chart | βœ… Yes | | ## πŸ“€ Outputs @@ -25,5 +24,4 @@ It detects which charts have changed and only tests those. uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v1 with: chartDirs: infra/monitoring,infra/sftpgo - repository: ${{ github.repository }} ``` diff --git a/actions/helm-lint/action.yaml b/actions/helm-lint/action.yaml index 82bda183..0a7560a0 100644 --- a/actions/helm-lint/action.yaml +++ b/actions/helm-lint/action.yaml @@ -5,9 +5,6 @@ inputs: description: "Comma-separated list of root directories containing Helm charts." required: true default: "." - repository: - description: "Repository for the Helm Chart." - required: true outputs: changed: description: "Indicates if there are changed charts." @@ -16,12 +13,9 @@ runs: using: "composite" steps: - name: Checkout helm chart repository - env: - action_repo: ${{ github.action_repository }} - action_ref: ${{ github.action_ref }} uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: - repository: ${{ inputs.repository }} + fetch-depth: 0 - name: Set up Helm uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0 @@ -40,7 +34,7 @@ runs: - name: Run chart-testing (list-changed) id: list-changed run: | - changed=$(ct list-changed --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.event.repository.default_branch }}") + changed=$(ct list-changed --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.base_ref || github.event.repository.default_branch }}") if [[ -n "$changed" ]]; then echo "changed=true" >> "$GITHUB_OUTPUT" fi @@ -48,7 +42,7 @@ runs: - name: Run chart-testing (lint) if: steps.list-changed.outputs.changed == 'true' - run: ct lint --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.event.repository.default_branch }}" + run: ct lint --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.base_ref || github.event.repository.default_branch }}" shell: bash - name: Create kind cluster @@ -57,5 +51,5 @@ runs: - name: Run chart-testing (install) if: steps.list-changed.outputs.changed == 'true' - run: ct install --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.event.repository.default_branch }}" + run: ct install --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.base_ref || github.event.repository.default_branch }}" shell: bash diff --git a/actions/npm-publish/README.md b/actions/npm-publish/README.md index 410f7067..c92d46f4 100644 --- a/actions/npm-publish/README.md +++ b/actions/npm-publish/README.md @@ -11,7 +11,6 @@ This GitHub Action installs dependencies, runs a `prepack` script, and publishes |----------------|------------------------------------------|----------|-----------------------------------| | `node-version` | The version of Node.js to use | βœ… Yes | `20` | | `npm-token` | npm authentication token (`NODE_AUTH_TOKEN`) | βœ… Yes | β€” | -| `repository` | GitHub repository to checkout | βœ… Yes | `${{ github.action_repository }}` | --- @@ -23,5 +22,4 @@ This GitHub Action installs dependencies, runs a `prepack` script, and publishes with: node-version: '20' npm-token: ${{ secrets.NPM_TOKEN }} - repository: MapColonies/infra-portal ``` diff --git a/actions/npm-publish/action.yaml b/actions/npm-publish/action.yaml index 53f5e0a4..ccf666d7 100644 --- a/actions/npm-publish/action.yaml +++ b/actions/npm-publish/action.yaml @@ -8,19 +8,12 @@ inputs: npm-token: description: 'NPM authentication token' required: true - repository: - description: 'Repository to checkout' - required: true + runs: using: 'composite' steps: - name: Checkout helm chart repository - env: - action_repo: ${{ github.action_repository }} - action_ref: ${{ github.action_ref }} uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: - repository: ${{ inputs.repository }} - name: Set up Node.js uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index 5c305432..b59f448a 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -14,16 +14,16 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and ## πŸ”§ Inputs -| Name | Description | Required | Default | -|-----------------|----------------------------------------------------------------|----------|-------------| -| `scope` | Logical scope or namespace used to group charts (comma-separated) | βœ… Yes | `""` | -| `repository` | GitHub repository containing the Helm chart | βœ… Yes | Current repo | -| `context` | Path to the directory containing the Helm chart and scripts | βœ… Yes | `./helm` | -| `type` | Artifact type (`helm`, `docker`, etc.) | βœ… Yes | `docker` | -| `artifact-name` | The name of the chart to record in `artifacts.json` | βœ… Yes | β€” | -| `artifact-tag` | The chart version or tag | βœ… Yes | β€” | -| `github_token` | GitHub token used to commit and push changes | βœ… Yes | β€” | - +| Name | Description | Required | Default | +|------------------|-----------------------------------------------------------------------------|----------|-----------------| +| `scope` | The directory name used as a logical scope for the artifact | βœ… Yes | `""` | +| `repository` | GitHub repository that contains the `artifacts.json` file | ❌ No | Current repo | +| `context` | Path to the directory containing the Helm chart and helper scripts | βœ… Yes | `./helm` | +| `registry` | Registry URL the artifact is pushed to (e.g., ACR address) | βœ… Yes | β€” | +| `type` | Type of artifact (`helm`, `docker`, etc.) | βœ… Yes | `docker` | +| `artifact_name` | Name of the artifact (e.g. `sftpgo`, `minio`) | βœ… Yes | β€” | +| `artifact_tag` | Tag or version of the artifact (e.g. `v1.2.3`, `latest`) | βœ… Yes | β€” | +| `github_token` | GitHub token with permission to commit & push changes | βœ… Yes | β€” | --- @@ -31,13 +31,13 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and ```yaml - name: Update artifacts.json -uses: ./actions/update-artifacts-file -with: + uses: ./actions/update-artifacts-file + with: context: actions/update-artifacts-file scope: infra repository: ${{ env.action_repo }} - artifact-name: "sftpgo" - artifact-tag: "v2.0.2" + artifact_name: "sftpgo" + artifact_tag: "v2.0.2" registry: ${{ secrets.ACR_URL }} github_token: ${{ secrets.GH_PAT }} ``` diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml index af2b6bcc..7d89ff91 100644 --- a/actions/update-artifacts-file/action.yaml +++ b/actions/update-artifacts-file/action.yaml @@ -1,5 +1,5 @@ -name: "Build and Push Helm Chart" -description: "Builds and publishes a Helm chart to the specified registry." +name: "Update Artifacts File" +description: "An action to update the artifacts file" inputs: scope: description: "Scope or namespace for the Helm chart." @@ -7,7 +7,7 @@ inputs: default: "" repository: description: "Repository for the Helm Chart." - required: true + required: false registry: description: "Registry to push the artifact to." required: true @@ -20,11 +20,11 @@ inputs: type: string required: true default: "docker" - artifact-name: + artifact_name: description: "Artifact`s name" type: string required: true - artifact-tag: + artifact_tag: description: "Artifact`s tag" type: string required: true @@ -32,12 +32,7 @@ runs: using: "composite" steps: - name: Checkout helm chart repository - env: - action_repo: ${{ github.action_repository }} - action_ref: ${{ github.action_ref }} uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: - repository: ${{ inputs.repository }} - name: Set Execute Permission run: chmod +x ./modify_artifacts.sh @@ -49,8 +44,8 @@ runs: shell: bash env: SCOPE: ${{ inputs.scope }} - ARTIFACT_NAME: ${{ inputs.artifact-name }} - ARTIFACT_TAG: ${{ inputs.artifact-tag }} + ARTIFACT_NAME: ${{ inputs.artifact_name }} + ARTIFACT_TAG: ${{ inputs.artifact_tag }} TYPE: ${{ inputs.type }} REGISTRY: ${{ inputs.registry }} @@ -64,8 +59,8 @@ runs: shell: bash env: SCOPE: ${{ inputs.scope }} - ARTIFACT_NAME: ${{ inputs.artifact-name }} - ARTIFACT_TAG: ${{ inputs.artifact-tag }} + ARTIFACT_NAME: ${{ inputs.artifact_name }} + ARTIFACT_TAG: ${{ inputs.artifact_tag }} TYPE: ${{ inputs.type }} GITHUB_TOKEN: ${{ inputs.github_token }} REPOSITORY: ${{ inputs.repository }} diff --git a/actions/update-artifacts-file/modify_artifacts.sh b/actions/update-artifacts-file/modify_artifacts.sh index 1d79ae10..48f4abcf 100644 --- a/actions/update-artifacts-file/modify_artifacts.sh +++ b/actions/update-artifacts-file/modify_artifacts.sh @@ -1,18 +1,15 @@ #!/bin/bash -# Split string by comma -echo "$SCOPE" | tr ',' '\n' | while read -r element; do - # Check if the directory exists - if [ -d "$element" ]; then - path="$element/artifacts.json" - # Create a default empty JSON if the file doesn't exist - [[ -f "$path" ]] || echo '{}' > "$path" - # Ensure nested structure and assign artifact tag - jq --arg type "$TYPE" \ - --arg registry "$REGISTRY" \ - --arg key "${element}/$ARTIFACT_NAME" \ - --arg tag "$ARTIFACT_TAG" \ - '.[$type][$registry][$key] = $tag' "$path" > tmp.json && mv tmp.json "$path" - else - echo "Directory $REPOSITORY/$element does not exist" - fi -done +# Check if the directory exists +if [ -d "$SCOPE" ]; then + path="$SCOPE/artifacts.json" + # Create a default empty JSON if the file doesn't exist + [[ -f "$path" ]] || echo '{}' > "$path" + # Ensure nested structure and assign artifact tag + jq --arg type "$TYPE" \ + --arg registry "$REGISTRY" \ + --arg key "${element}/$ARTIFACT_NAME" \ + --arg tag "$ARTIFACT_TAG" \ + '.[$type][$registry][$key] = $tag' "$path" > tmp.json && mv tmp.json "$path" +else + echo "Directory $REPOSITORY/$SCOPE does not exist" +fi From 9b72064015584a7fbfd4cbb7f10c574c42a63003 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Sun, 30 Mar 2025 17:10:28 +0300 Subject: [PATCH 23/69] refactor(actions): PR changes --- .github/workflows/test-npm-publish.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test-npm-publish.yaml b/.github/workflows/test-npm-publish.yaml index 05f0c37d..914a473d 100644 --- a/.github/workflows/test-npm-publish.yaml +++ b/.github/workflows/test-npm-publish.yaml @@ -24,4 +24,3 @@ jobs: with: node-version: ${{ inputs.node-version }} npm-token: ${{ secrets.NPM_TOKEN }} - repository: ${{ github.repository }} From 11df4b18b42c9c378bd942ae4533b74249c31320 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Sun, 30 Mar 2025 17:21:07 +0300 Subject: [PATCH 24/69] style(update-artifacts-file): change file name --- actions/update-artifacts-file/action.yaml | 4 ++-- .../{commit-changes.sh => commit_changes.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename actions/update-artifacts-file/{commit-changes.sh => commit_changes.sh} (100%) diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml index 7d89ff91..f4a2d53b 100644 --- a/actions/update-artifacts-file/action.yaml +++ b/actions/update-artifacts-file/action.yaml @@ -50,12 +50,12 @@ runs: REGISTRY: ${{ inputs.registry }} - name: Set commit Permission - run: chmod +x ./commit-changes.sh + run: chmod +x ./commit_changes.sh shell: bash working-directory: ${{ inputs.context }} - name: Run commit changes script - run: ${{ inputs.context }}/commit-changes.sh + run: ${{ inputs.context }}/commit_changes.sh shell: bash env: SCOPE: ${{ inputs.scope }} diff --git a/actions/update-artifacts-file/commit-changes.sh b/actions/update-artifacts-file/commit_changes.sh similarity index 100% rename from actions/update-artifacts-file/commit-changes.sh rename to actions/update-artifacts-file/commit_changes.sh From 0870ab3221bd3b88de92e8562ea479ef4bfa8e2d Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 31 Mar 2025 16:54:23 +0300 Subject: [PATCH 25/69] refactor(actions): PR changes --- .github/workflows/test-artifactory-login.yaml | 2 +- .github/workflows/test-build-and-push-helm.yaml | 2 +- actions/build-and-push-helm/README.md | 1 - actions/build-and-push-helm/action.yaml | 8 ++------ actions/helm-lint/action.yaml | 2 +- 5 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-artifactory-login.yaml b/.github/workflows/test-artifactory-login.yaml index 9b1e5ed4..b53f04d9 100644 --- a/.github/workflows/test-artifactory-login.yaml +++ b/.github/workflows/test-artifactory-login.yaml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Test Login to Artifactory Action - id: test-artifactory-login + id: test_artifactory_login uses: ./actions/artifactory-login with: registry: ${{ secrets.ACR_URL }} diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index a4c10163..9662b6ee 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Test Login to Artifactory Action - id: test-artifactory-login + id: test_artifactory_login uses: ./actions/artifactory-login with: registry: ${{ secrets.ACR_URL }} diff --git a/actions/build-and-push-helm/README.md b/actions/build-and-push-helm/README.md index 16feb6ab..23480567 100644 --- a/actions/build-and-push-helm/README.md +++ b/actions/build-and-push-helm/README.md @@ -7,7 +7,6 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi | Name | Description | Required | Default | |--------------|-----------------------------------------------------------------------------------------------|----------|------------------------| | `scope` | Scope or namespace within the registry (e.g. `team`, `project`, `infra`) | βœ… Yes | `""` | -| `repository` | Full GitHub repository name (e.g. `MapColonies/helm-charts`) for use in metadata | ❌ No | `${{ github.repository }}` | | `context` | Relative path to the Helm chart directory | βœ… Yes | `./helm` | | `registry` | OCI registry URL where the chart will be pushed (e.g. ACR address) | βœ… Yes | | diff --git a/actions/build-and-push-helm/action.yaml b/actions/build-and-push-helm/action.yaml index 8c8543d0..9190b236 100644 --- a/actions/build-and-push-helm/action.yaml +++ b/actions/build-and-push-helm/action.yaml @@ -5,10 +5,6 @@ inputs: description: "Scope or namespace for the Helm chart." required: true default: "" - repository: - description: "Repository name for the Docker image (defaults to current GitHub repository)." - required: false - default: ${{ github.repository }} context: description: "Path to the helm directory." required: true @@ -33,7 +29,7 @@ runs: version: "v3.12.0" - name: Get chart's name - id: set-chart-name + id: set_chart_name run: | CHART=$(grep '^name:' Chart.yaml | awk '{print $2}') echo "chart=$CHART" >> $GITHUB_OUTPUT @@ -41,7 +37,7 @@ runs: shell: bash - name: Get the chart's version - id: set-chart-version + id: set_chart_version run: | VER=$(grep '^version:' Chart.yaml | awk '{print $2}') echo "ver=$VER" >> $GITHUB_OUTPUT diff --git a/actions/helm-lint/action.yaml b/actions/helm-lint/action.yaml index 0a7560a0..22dd493e 100644 --- a/actions/helm-lint/action.yaml +++ b/actions/helm-lint/action.yaml @@ -32,7 +32,7 @@ runs: uses: helm/chart-testing-action@e6669bcd63d7cb57cb4380c33043eebe5d111992 # v2.6.1 - name: Run chart-testing (list-changed) - id: list-changed + id: list_changed run: | changed=$(ct list-changed --chart-dirs "${{ inputs.chartDirs }}" --target-branch "${{ github.base_ref || github.event.repository.default_branch }}") if [[ -n "$changed" ]]; then From 1f917df4849a555d59ef28e53b02078104e5d492 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 1 Apr 2025 11:02:40 +0300 Subject: [PATCH 26/69] refactor(actions): PR changes --- .github/workflows/test-build-and-push-docker.yaml | 2 +- .github/workflows/test-npm-publish.yaml | 1 + actions/npm-publish/action.yaml | 14 ++++++++++++-- .../.release-please-manifest.json | 0 dockerfile => test/dockerfile | 0 package-lock.json => test/package-lock.json | 0 package.json => test/package.json | 0 .../release-please-config.json | 0 8 files changed, 14 insertions(+), 3 deletions(-) rename .release-please-manifest.json => test/.release-please-manifest.json (100%) rename dockerfile => test/dockerfile (100%) rename package-lock.json => test/package-lock.json (100%) rename package.json => test/package.json (100%) rename release-please-config.json => test/release-please-config.json (100%) diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index 7b34431b..b45a79e8 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -26,6 +26,6 @@ jobs: - name: Test Build and push Docker Image uses: ./actions/build-and-push-docker with: - context: . + context: ./test scope: infra registry: ${{ secrets.ACR_URL }} diff --git a/.github/workflows/test-npm-publish.yaml b/.github/workflows/test-npm-publish.yaml index 914a473d..118ae465 100644 --- a/.github/workflows/test-npm-publish.yaml +++ b/.github/workflows/test-npm-publish.yaml @@ -24,3 +24,4 @@ jobs: with: node-version: ${{ inputs.node-version }} npm-token: ${{ secrets.NPM_TOKEN }} + path: ./test diff --git a/actions/npm-publish/action.yaml b/actions/npm-publish/action.yaml index ccf666d7..55376a70 100644 --- a/actions/npm-publish/action.yaml +++ b/actions/npm-publish/action.yaml @@ -8,7 +8,14 @@ inputs: npm-token: description: 'NPM authentication token' required: true - + repository: + description: 'Repository to checkout' + required: true + default: ${{ github.repository }} + path: + description: 'Path to the package to publish' + required: false + default: '.' runs: using: 'composite' steps: @@ -21,14 +28,17 @@ runs: node-version: ${{ inputs['node-version'] }} - name: Install dependencies - run: npm ci + run: npm install shell: bash + working-directory: ${{ inputs.path }} - name: Run prepack script run: npm run prepack shell: bash + working-directory: ${{ inputs.path }} - name: Publish package to npm uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 #v3 with: token: ${{ inputs['npm-token'] }} + package: ${{ inputs.path }}/package.json diff --git a/.release-please-manifest.json b/test/.release-please-manifest.json similarity index 100% rename from .release-please-manifest.json rename to test/.release-please-manifest.json diff --git a/dockerfile b/test/dockerfile similarity index 100% rename from dockerfile rename to test/dockerfile diff --git a/package-lock.json b/test/package-lock.json similarity index 100% rename from package-lock.json rename to test/package-lock.json diff --git a/package.json b/test/package.json similarity index 100% rename from package.json rename to test/package.json diff --git a/release-please-config.json b/test/release-please-config.json similarity index 100% rename from release-please-config.json rename to test/release-please-config.json From d9b47a7d192fa32dd96a049046e903783eaa70eb Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 1 Apr 2025 11:12:33 +0300 Subject: [PATCH 27/69] refactor(actions): PR changes --- infra/artifacts.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/artifacts.json b/infra/artifacts.json index 087b8d6a..0094c97d 100644 --- a/infra/artifacts.json +++ b/infra/artifacts.json @@ -45,4 +45,4 @@ "git": [ "MapColonies/helm-charts" ] -} \ No newline at end of file +} From 73dbbbfe9c9bc7a0bf69c94230ebbaaf86600adc Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 1 Apr 2025 12:17:06 +0300 Subject: [PATCH 28/69] refactor(actions): PR changes --- .github/workflows/build-and-push-docker.yaml | 61 ------------- .github/workflows/build-and-push-helm.yaml | 69 -------------- .github/workflows/helm-lint.yaml | 52 ----------- .github/workflows/npm-publish.yaml | 21 ----- .github/workflows/test-helm-lint.yml | 4 + .github/workflows/update-artifacts-file.yaml | 95 -------------------- 6 files changed, 4 insertions(+), 298 deletions(-) delete mode 100644 .github/workflows/build-and-push-docker.yaml delete mode 100644 .github/workflows/build-and-push-helm.yaml delete mode 100644 .github/workflows/helm-lint.yaml delete mode 100644 .github/workflows/npm-publish.yaml delete mode 100644 .github/workflows/update-artifacts-file.yaml diff --git a/.github/workflows/build-and-push-docker.yaml b/.github/workflows/build-and-push-docker.yaml deleted file mode 100644 index ad63fabe..00000000 --- a/.github/workflows/build-and-push-docker.yaml +++ /dev/null @@ -1,61 +0,0 @@ -name: Build docker image and push it to registry - -on: - workflow_call: - inputs: - scope: - required: true - type: string - default: "" - repository: - required: false - type: string - context: - required: false - default: "." - type: string - -permissions: - contents: write - pull-requests: write - -jobs: - build-and-push-docker: - name: Build and publish docker image to registry - runs-on: ubuntu-latest - steps: - - name: Checkout repository from latest commit - uses: actions/checkout@v4 - - - name: Login to registry - uses: azure/docker-login@v1 - with: - login-server: ${{ secrets.ACR_URL }} - username: ${{ secrets.ACR_PUSH_USER }} - password: ${{ secrets.ACR_PUSH_TOKEN }} - - - name: Setup docker image name and downcase it - run: | - if [[ -z "${{ inputs.repository }}" ]]; then - export DOCKER_IMAGE_NAME="${{ secrets.ACR_URL }}/${{ inputs.scope }}/${{ github.event.repository.name }}:${{ github.ref_name }}" - else - export DOCKER_IMAGE_NAME="${{ secrets.ACR_URL }}/${{ inputs.repository }}:${{ github.ref_name }}" - fi - echo "DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME,,}" >>${GITHUB_ENV} - shell: bash - - - name: Build docker image - run: docker build ${{ inputs.context }} -t ${{ env.DOCKER_IMAGE_NAME }} - - - name: Push docker image - run: docker push ${{ env.DOCKER_IMAGE_NAME }} - - update-docker-artifact-yaml: - uses: MapColonies/shared-workflows/.github/workflows/update-artifacts-file.yaml@master - secrets: inherit - needs: build-and-push-docker - if: "${{ inputs.scope != '' }}" - with: - scope: ${{ inputs.scope }} - artifact-name: ${{ inputs.repository || github.event.repository.name }} - artifact-tag: ${{ github.ref_name }} diff --git a/.github/workflows/build-and-push-helm.yaml b/.github/workflows/build-and-push-helm.yaml deleted file mode 100644 index 29712647..00000000 --- a/.github/workflows/build-and-push-helm.yaml +++ /dev/null @@ -1,69 +0,0 @@ -name: Match chart version and push to registry - -on: - workflow_call: - inputs: - scope: - required: true - type: string - default: "" - -env: - HELM_EXPERIMENTAL_OCI: 1 - -jobs: - build-and-push-helm: - name: Build and publish helm package to registry - runs-on: ubuntu-latest - - outputs: - chart: ${{ steps.set-chart-name.outputs.chart }} - ver: ${{ steps.set-chart-version.outputs.ver }} - - steps: - - name: Checkout repository from latest commit - uses: actions/checkout@v4 - - - name: Setup helm - uses: azure/setup-helm@v3.5 - with: - version: "v3.12.0" - - - name: Login to registry - run: | - helm registry login ${{ secrets.ACR_URL }} --username ${{ secrets.ACR_PUSH_USER }} --password ${{ secrets.ACR_PUSH_TOKEN }} - - - name: Get chart's name - id: set-chart-name - run: | - export "CHART=$(cat Chart.yaml | grep name | awk '{print $2; exit}')" - echo "chart=$CHART" >> $GITHUB_OUTPUT - working-directory: ./helm - - - name: Get chart's version - id: set-chart-version - run: | - export "VER=$(cat Chart.yaml | grep version | awk '{print $2; exit}')" - echo "ver=$VER" >> $GITHUB_OUTPUT - working-directory: ./helm - - - name: Package chart into tgz file - run: | - helm package . --dependency-update - working-directory: ./helm - - - name: Publish chart to ACR - run: | - helm push ${{ steps.set-chart-name.outputs.chart }}-${{ steps.set-chart-version.outputs.ver }}.tgz oci://${{ secrets.ACR_URL }}/helm/${{ inputs.scope }} - working-directory: ./helm - - update-helm-artifact-yaml: - uses: MapColonies/shared-workflows/.github/workflows/update-artifacts-file.yaml@master - needs: build-and-push-helm - secrets: inherit - if: "${{ inputs.scope != '' }}" - with: - scope: ${{ inputs.scope }} - type: helm - artifact-name: ${{ needs.build-and-push-helm.outputs.chart }} - artifact-tag: ${{ needs.build-and-push-helm.outputs.ver }} diff --git a/.github/workflows/helm-lint.yaml b/.github/workflows/helm-lint.yaml deleted file mode 100644 index b71fd026..00000000 --- a/.github/workflows/helm-lint.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: Lint and Test Charts - -on: - workflow_call: - inputs: - chartDirs: - description: "The root dir or dirs (separated with commas)" - type: string - required: false - default: "." - -jobs: - lint-test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Checkout Shared Workflows repository - uses: actions/checkout@v4 - with: - repository: MapColonies/shared-workflows - path: shared-workflows - token: ${{ secrets.GH_PAT }} - - - name: Set up Helm - uses: azure/setup-helm@v4.2.0 - with: - version: v3.16.3 - - - uses: actions/setup-python@v5 - with: - python-version: '3.x' - check-latest: true - - - name: Set up chart-testing - uses: helm/chart-testing-action@v2.6.1 - - - name: Run chart-testing (list-changed) - id: list-changed - run: | - changed=$(ct list-changed --chart-dirs ${{ inputs.chartDirs }} --target-branch ${{ github.event.repository.default_branch }} --config shared-workflows/.github/configs/ct.yaml) - echo "changed=$changed" - if [[ -n "$changed" ]]; then - echo "changed=true" >> "$GITHUB_OUTPUT" - fi - - - name: Run chart-testing (lint) - if: steps.list-changed.outputs.changed == 'true' - run: ct lint --chart-dirs ${{ inputs.chartDirs }} --target-branch ${{ github.event.repository.default_branch }} --config shared-workflows/.github/configs/ct.yaml --lint-conf shared-workflows/.github/configs/lintconf.yaml diff --git a/.github/workflows/npm-publish.yaml b/.github/workflows/npm-publish.yaml deleted file mode 100644 index 4aa45b1b..00000000 --- a/.github/workflows/npm-publish.yaml +++ /dev/null @@ -1,21 +0,0 @@ -name: Publish npm packages - -on: - workflow_call: - -jobs: - publish: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write # allow GITHUB_TOKEN to publish packages - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: "20" - - run: npm ci - - run: npm run prepack - - uses: JS-DevTools/npm-publish@v3 - with: - token: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/test-helm-lint.yml b/.github/workflows/test-helm-lint.yml index 92828c85..186c2063 100644 --- a/.github/workflows/test-helm-lint.yml +++ b/.github/workflows/test-helm-lint.yml @@ -25,3 +25,7 @@ jobs: with: repository: ${{ github.repository }} chartDirs: "./infra/test-helm" + + - name: Print changed charts + if: steps.helm-lint.outputs.changed == 'true' + run: echo "Charts were changed and linted." diff --git a/.github/workflows/update-artifacts-file.yaml b/.github/workflows/update-artifacts-file.yaml deleted file mode 100644 index ceed6115..00000000 --- a/.github/workflows/update-artifacts-file.yaml +++ /dev/null @@ -1,95 +0,0 @@ -name: Edit artifacts.json in helm-charts - -on: - workflow_call: - inputs: - scope: - description: "Scope of artifacts.json file to update" - type: string - required: true - type: - description: "Artifact`s type" - type: string - required: false - default: "docker" - artifact-name: - description: "Artifact`s name" - type: string - required: true - artifact-tag: - description: "Artifact`s tag" - type: string - required: true - -jobs: - update-artifacts-json: - runs-on: ubuntu-latest - - steps: - - name: Checkout helm-charts repository - uses: actions/checkout@v4 - with: - repository: MapColonies/helm-charts - path: helm-charts - token: ${{ secrets.GH_PAT }} - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: "20" - - - name: Modify artifacts.json - run: | - # Split string by comma - echo "${{ inputs.scope }}" | tr ',' '\n' | while read -r element; do - # cd to directory - pushd helm-charts/$element - node -e " - const fs = require('fs'); - const path = './artifacts.json'; - let data = {}; - // Check if 'artifacts.json' file already exists - if (fs.existsSync(path)) { - data = JSON.parse(fs.readFileSync(path, 'utf8')); - } - // Ensure nested structure: docker -> registry -> scope -> artifact:tag - if (!data['${{ inputs.type }}']['${{ secrets.ACR_URL }}']) data['${{ inputs.type }}']['${{ secrets.ACR_URL }}'] = {}; - const compositeKey = '${element}/${{ inputs.artifact-name }}'; - // Assign the artifact tag to the composite key - data['${{ inputs.type }}']['${{ secrets.ACR_URL }}'][compositeKey] = '${{ inputs.artifact-tag }}'; - // Writing new file contents - fs.writeFileSync(path, JSON.stringify(data, null, 2)); - " - # go back to before pushd - popd - done - - - name: Commit changes - run: | - cd helm-charts - git config --global user.name "mapcolonies[bot]" - git config --global user.email "devops[bot]@mapcolonies.com" - - git add . - # Add "|| true" for not failing on this line - git commit -m "chore: update artifacts.json for ${{ inputs.scope }}" -m "with ${{ inputs.type }} artifact: ${{ inputs.artifact-name }}:${{ inputs.artifact-tag }}" || true - - success=false - for ((i=1; i<=5; i++)); do - echo "Attempt number $i" - if git push; then - success=true - break - else - sleep 5 - # --ff for fast-forward - git pull origin master --ff - fi - done - - if [ "$success" = false ]; then - echo "Failed to push changes." - exit 1 - fi - env: - GITHUB_TOKEN: ${{ secrets.GH_PAT }} From 915ab4fe8d52689dda7e4a933586d59e7c893a28 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 1 Apr 2025 13:56:19 +0300 Subject: [PATCH 29/69] refactor(actions): PR changes --- ....release-please-manifest.json => .release-please-manifest.json | 0 test/release-please-config.json => release-please-config.json | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename test/.release-please-manifest.json => .release-please-manifest.json (100%) rename test/release-please-config.json => release-please-config.json (100%) diff --git a/test/.release-please-manifest.json b/.release-please-manifest.json similarity index 100% rename from test/.release-please-manifest.json rename to .release-please-manifest.json diff --git a/test/release-please-config.json b/release-please-config.json similarity index 100% rename from test/release-please-config.json rename to release-please-config.json From 4a5f9fae0b146fc1a78d917812a0290796913055 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 1 Apr 2025 14:00:04 +0300 Subject: [PATCH 30/69] refactor(actions): change files hirarcy --- .github/workflows/test-build-and-push-helm.yaml | 4 ++-- {infra => test/chart}/artifacts.json | 0 {infra => test/chart}/test-helm/Chart.yaml | 0 {infra => test/chart}/test-helm/templates/_helpers.tpl | 0 {infra => test/chart}/test-helm/templates/deployment.yaml | 0 {infra => test/chart}/test-helm/templates/secret.yaml | 0 {infra => test/chart}/test-helm/values.yaml | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename {infra => test/chart}/artifacts.json (100%) rename {infra => test/chart}/test-helm/Chart.yaml (100%) rename {infra => test/chart}/test-helm/templates/_helpers.tpl (100%) rename {infra => test/chart}/test-helm/templates/deployment.yaml (100%) rename {infra => test/chart}/test-helm/templates/secret.yaml (100%) rename {infra => test/chart}/test-helm/values.yaml (100%) diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index 9662b6ee..d1995f70 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -27,6 +27,6 @@ jobs: - name: Test Build and push Helm Chart uses: ./actions/build-and-push-helm with: - context: ./infra/test-helm - scope: infra + context: .test/chart/test-helm + scope: chart registry: ${{ secrets.ACR_URL }} diff --git a/infra/artifacts.json b/test/chart/artifacts.json similarity index 100% rename from infra/artifacts.json rename to test/chart/artifacts.json diff --git a/infra/test-helm/Chart.yaml b/test/chart/test-helm/Chart.yaml similarity index 100% rename from infra/test-helm/Chart.yaml rename to test/chart/test-helm/Chart.yaml diff --git a/infra/test-helm/templates/_helpers.tpl b/test/chart/test-helm/templates/_helpers.tpl similarity index 100% rename from infra/test-helm/templates/_helpers.tpl rename to test/chart/test-helm/templates/_helpers.tpl diff --git a/infra/test-helm/templates/deployment.yaml b/test/chart/test-helm/templates/deployment.yaml similarity index 100% rename from infra/test-helm/templates/deployment.yaml rename to test/chart/test-helm/templates/deployment.yaml diff --git a/infra/test-helm/templates/secret.yaml b/test/chart/test-helm/templates/secret.yaml similarity index 100% rename from infra/test-helm/templates/secret.yaml rename to test/chart/test-helm/templates/secret.yaml diff --git a/infra/test-helm/values.yaml b/test/chart/test-helm/values.yaml similarity index 100% rename from infra/test-helm/values.yaml rename to test/chart/test-helm/values.yaml From c49d08912287d3599012ded5d08db6a0edba3a25 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 1 Apr 2025 14:19:43 +0300 Subject: [PATCH 31/69] refactor(actions): change paths --- .github/workflows/test-helm-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-helm-lint.yml b/.github/workflows/test-helm-lint.yml index 186c2063..73a7b33a 100644 --- a/.github/workflows/test-helm-lint.yml +++ b/.github/workflows/test-helm-lint.yml @@ -24,7 +24,7 @@ jobs: uses: ./actions/helm-lint with: repository: ${{ github.repository }} - chartDirs: "./infra/test-helm" + chartDirs: "./test/chart/test-helm" - name: Print changed charts if: steps.helm-lint.outputs.changed == 'true' From 0c5a01c6005558ce8e26cae5cd0e15151b4e3a86 Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Wed, 2 Apr 2025 14:58:19 +0300 Subject: [PATCH 32/69] Update .github/workflows/test-helm-lint.yml Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- .github/workflows/test-helm-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-helm-lint.yml b/.github/workflows/test-helm-lint.yml index 73a7b33a..90af249d 100644 --- a/.github/workflows/test-helm-lint.yml +++ b/.github/workflows/test-helm-lint.yml @@ -26,6 +26,6 @@ jobs: repository: ${{ github.repository }} chartDirs: "./test/chart/test-helm" - - name: Print changed charts + - name: Print on chart change if: steps.helm-lint.outputs.changed == 'true' run: echo "Charts were changed and linted." From ff839641c1787f04eb64c719760048a18d124ab5 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Thu, 3 Apr 2025 10:48:56 +0300 Subject: [PATCH 33/69] refactor(artifactory-login): update actions --- actions/artifactory-login/action.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/actions/artifactory-login/action.yaml b/actions/artifactory-login/action.yaml index eaa31da6..c6a15b6a 100644 --- a/actions/artifactory-login/action.yaml +++ b/actions/artifactory-login/action.yaml @@ -14,13 +14,8 @@ inputs: runs: using: composite steps: - - name: Checkout shared workflows - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: - path: shared-workflows-artifactory-login - - name: Login to registry - uses: azure/docker-login@83efeb77770c98b620c73055fbb59b2847e17dc0 # v1 + uses: azure/docker-login@15c4aadf093404726ab2ff205b2cdd33fa6d054c # v2 with: login-server: ${{ inputs.registry }} username: ${{ inputs.username }} From 587cbc863fe1f96ca3d8581c875aa17faee56dd6 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Thu, 3 Apr 2025 19:14:59 +0300 Subject: [PATCH 34/69] refactor(actions): allign input requirements --- .github/workflows/test-artifactory-login.yaml | 2 - .../workflows/test-build-and-push-docker.yaml | 4 +- .../workflows/test-build-and-push-helm.yaml | 6 +-- actions/build-and-push-docker/README.md | 2 +- actions/build-and-push-docker/action.yaml | 6 +-- actions/build-and-push-helm/README.md | 4 +- actions/build-and-push-helm/action.yaml | 7 ++- actions/npm-publish/README.md | 10 ++-- actions/npm-publish/action.yaml | 4 +- actions/update-artifacts-file/README.md | 6 +-- actions/update-artifacts-file/action.yaml | 6 +-- test/artifacts.json | 15 ++++++ test/chart/artifacts.json | 48 ------------------- test/{chart/test-helm => helm}/Chart.yaml | 0 .../test-helm => helm}/templates/_helpers.tpl | 0 .../templates/deployment.yaml | 0 .../test-helm => helm}/templates/secret.yaml | 0 test/{chart/test-helm => helm}/values.yaml | 0 18 files changed, 41 insertions(+), 79 deletions(-) create mode 100644 test/artifacts.json delete mode 100644 test/chart/artifacts.json rename test/{chart/test-helm => helm}/Chart.yaml (100%) rename test/{chart/test-helm => helm}/templates/_helpers.tpl (100%) rename test/{chart/test-helm => helm}/templates/deployment.yaml (100%) rename test/{chart/test-helm => helm}/templates/secret.yaml (100%) rename test/{chart/test-helm => helm}/values.yaml (100%) diff --git a/.github/workflows/test-artifactory-login.yaml b/.github/workflows/test-artifactory-login.yaml index b53f04d9..dc955944 100644 --- a/.github/workflows/test-artifactory-login.yaml +++ b/.github/workflows/test-artifactory-login.yaml @@ -1,8 +1,6 @@ name: Test artifactory-login action on: - workflow_dispatch: - workflow_call: push: branches: - master diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index b45a79e8..3ce79112 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -1,8 +1,6 @@ name: Test Build and Push Docker Image on: - workflow_dispatch: - workflow_call: push: branches: - master @@ -27,5 +25,5 @@ jobs: uses: ./actions/build-and-push-docker with: context: ./test - scope: infra + team: infra registry: ${{ secrets.ACR_URL }} diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index d1995f70..69aa7580 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -1,8 +1,6 @@ name: Test Build and Push Helm Chart on: - workflow_dispatch: - workflow_call: push: branches: - master @@ -27,6 +25,6 @@ jobs: - name: Test Build and push Helm Chart uses: ./actions/build-and-push-helm with: - context: .test/chart/test-helm - scope: chart + context: .test/helm + team: infra registry: ${{ secrets.ACR_URL }} diff --git a/actions/build-and-push-docker/README.md b/actions/build-and-push-docker/README.md index c45d446c..5c7affa0 100644 --- a/actions/build-and-push-docker/README.md +++ b/actions/build-and-push-docker/README.md @@ -8,7 +8,7 @@ This GitHub Action builds a Docker image from a specified context and pushes it |--------------|-----------------------------------------------------------------------------|----------|--------------------------------| | `context` | Path to the Docker build context (e.g. `.` or `./app`). | βœ… Yes | β€” | | `repository` | Full GitHub repository name. Used for image name. | ❌ No | `${{ github.repository }}` | -| `scope` | Scope or namespace for the image (e.g. `team`, `infra`, `project`). | βœ… Yes | β€” | +| `team` | The image's team owner (e.g. `3d`, `infra`). | βœ… Yes | β€” | | `registry` | Registry URL (e.g. ACR address). | βœ… Yes | β€” | diff --git a/actions/build-and-push-docker/action.yaml b/actions/build-and-push-docker/action.yaml index fb0f5424..1baa8823 100644 --- a/actions/build-and-push-docker/action.yaml +++ b/actions/build-and-push-docker/action.yaml @@ -8,8 +8,8 @@ inputs: description: "Repository name for the Docker image (defaults to current GitHub repository)." required: false default: ${{ github.repository }} - scope: - description: "Scope or namespace for the Docker image." + team: + description: "The image's team owner." required: true registry: description: Azure Registry to authenticate against. @@ -24,7 +24,7 @@ runs: run: | IMAGE_TAG="${{ github.ref_name }}" REPO_NAME=$(basename "${{ inputs.repository }}") - DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.scope }}/${REPO_NAME}:${IMAGE_TAG}" + DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.team }}/${REPO_NAME}:${IMAGE_TAG}" echo "DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME,,}" >> $GITHUB_ENV shell: bash diff --git a/actions/build-and-push-helm/README.md b/actions/build-and-push-helm/README.md index 23480567..eea63e25 100644 --- a/actions/build-and-push-helm/README.md +++ b/actions/build-and-push-helm/README.md @@ -6,8 +6,8 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi | Name | Description | Required | Default | |--------------|-----------------------------------------------------------------------------------------------|----------|------------------------| -| `scope` | Scope or namespace within the registry (e.g. `team`, `project`, `infra`) | βœ… Yes | `""` | -| `context` | Relative path to the Helm chart directory | βœ… Yes | `./helm` | +| `team` | The image's team owner (e.g. `3d`, `infra`). | βœ… Yes | | +| `context` | Relative path to the Helm chart directory | ❌ No | `./helm` | | `registry` | OCI registry URL where the chart will be pushed (e.g. ACR address) | βœ… Yes | | diff --git a/actions/build-and-push-helm/action.yaml b/actions/build-and-push-helm/action.yaml index 9190b236..54468cb0 100644 --- a/actions/build-and-push-helm/action.yaml +++ b/actions/build-and-push-helm/action.yaml @@ -1,13 +1,12 @@ name: "Build and Push Helm Chart" description: "Builds and publishes a Helm chart to the specified registry." inputs: - scope: - description: "Scope or namespace for the Helm chart." + team: + description: "The image's team owner." required: true - default: "" context: description: "Path to the helm directory." - required: true + required: false default: "./helm" registry: description: "Azure Registry to authenticate against." diff --git a/actions/npm-publish/README.md b/actions/npm-publish/README.md index c92d46f4..a2e017aa 100644 --- a/actions/npm-publish/README.md +++ b/actions/npm-publish/README.md @@ -7,10 +7,12 @@ This GitHub Action installs dependencies, runs a `prepack` script, and publishes ## πŸ›  Inputs -| Name | Description | Required | Default | -|----------------|------------------------------------------|----------|-----------------------------------| -| `node-version` | The version of Node.js to use | βœ… Yes | `20` | -| `npm-token` | npm authentication token (`NODE_AUTH_TOKEN`) | βœ… Yes | β€” | +| Name | Description | Required | Default | +|----------------|--------------------------------------------------------------------|----------|------------------------------| +| `node-version` | The version of Node.js to use | ❌ No | `20` | +| `npm-token` | npm authentication token (`NODE_AUTH_TOKEN`) | βœ… Yes | β€” | +| `repository` | GitHub repository to checkout (useful in reusable workflows) | ❌ No | `${{ github.repository }}` | +| `path` | Path to the directory containing the `package.json` to publish | ❌ No | `.` | --- diff --git a/actions/npm-publish/action.yaml b/actions/npm-publish/action.yaml index 55376a70..1e442792 100644 --- a/actions/npm-publish/action.yaml +++ b/actions/npm-publish/action.yaml @@ -3,14 +3,14 @@ description: 'Installs dependencies, runs prepack, and publishes the package to inputs: node-version: description: 'Node.js version to use' - required: true + required: false default: '20' npm-token: description: 'NPM authentication token' required: true repository: description: 'Repository to checkout' - required: true + required: false default: ${{ github.repository }} path: description: 'Path to the package to publish' diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index b59f448a..7b21098a 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -16,11 +16,11 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and | Name | Description | Required | Default | |------------------|-----------------------------------------------------------------------------|----------|-----------------| -| `scope` | The directory name used as a logical scope for the artifact | βœ… Yes | `""` | +| `scope` | The directory name used as a logical scope for the artifact | βœ… Yes | | | `repository` | GitHub repository that contains the `artifacts.json` file | ❌ No | Current repo | -| `context` | Path to the directory containing the Helm chart and helper scripts | βœ… Yes | `./helm` | +| `context` | Path to the directory containing the Helm chart and helper scripts | ❌ No | `./helm` | | `registry` | Registry URL the artifact is pushed to (e.g., ACR address) | βœ… Yes | β€” | -| `type` | Type of artifact (`helm`, `docker`, etc.) | βœ… Yes | `docker` | +| `type` | Type of artifact (`helm`, `docker`, etc.) | ❌ No | | | `artifact_name` | Name of the artifact (e.g. `sftpgo`, `minio`) | βœ… Yes | β€” | | `artifact_tag` | Tag or version of the artifact (e.g. `v1.2.3`, `latest`) | βœ… Yes | β€” | | `github_token` | GitHub token with permission to commit & push changes | βœ… Yes | β€” | diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml index f4a2d53b..eca5818c 100644 --- a/actions/update-artifacts-file/action.yaml +++ b/actions/update-artifacts-file/action.yaml @@ -4,21 +4,21 @@ inputs: scope: description: "Scope or namespace for the Helm chart." required: true - default: "" repository: description: "Repository for the Helm Chart." required: false + default: ${{ github.repository }} registry: description: "Registry to push the artifact to." required: true context: description: "Path to the helm directory." - required: true + required: false default: "./helm" type: description: "Artifact`s type" type: string - required: true + required: false default: "docker" artifact_name: description: "Artifact`s name" diff --git a/test/artifacts.json b/test/artifacts.json new file mode 100644 index 00000000..97f7974a --- /dev/null +++ b/test/artifacts.json @@ -0,0 +1,15 @@ +{ + "docker": { + "acrarolibotnonprod.azurecr.io": { + "infra/sftpgo": "v2.0.2" + } + }, + "helm": { + "acrarolibotnonprod.azurecr.io": { + "jenkins": "5.0.16" + } + }, + "git": [ + "MapColonies/helm-charts" + ] +} diff --git a/test/chart/artifacts.json b/test/chart/artifacts.json deleted file mode 100644 index 0094c97d..00000000 --- a/test/chart/artifacts.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "docker": { - "acrarolibotnonprod.azurecr.io": { - "infra/blackbox-exporter": "v0.24.0", - "infra/alertmanager": "v0.25.0", - "infra/jimmidyson/configmap-reload": "v0.8.0", - "infra/prometheus-config-reloader": "v0.67.0", - "infra/prometheus": "v2.46.0", - "infra/grafana/grafana": "9.4.7", - "infra/opentelemetry-collector-contrib": "0.77.0", - "infra/memcached": "1.5.17-alpine", - "infra/grafana/tempo": "2.3.0", - "infra/nginxinc/nginx-unprivileged": "1.19-alpine", - "infra/jenkins/jenkins": "2.440.1-jdk17", - "infra/kiwigrid/k8s-sidecar": "1.25.4", - "infra/jenkins/inbound-agent": "3206.vb_15dcf73f6a_9-3", - "infra/prometheus/node-exporter": "v1.7.0", - "sftpgo": "v2.5-openshift", - "infra/auth-manager": "v1.2.0", - "infra/auth-cron": "v1.2.0", - "infra/skopeo-with-tools/stable": "v1.15.0", - "openpolicyagent/opa": "0.53.0-envoy-3", - "elastic-alertmanager-connector": "v1.0.0", - "infra/sftpgo": "v2.0.2" - }, - "docker.io": { - "bitnami/postgresql": "17.0.0-debian-12-r1", - "bitnami/minio": "2024.8.3-debian-12-r1", - "bitnami/redis": "7.2.3" - } - }, - "helm": { - "acrarolibotnonprod.azurecr.io": { - "prometheus-blackbox-exporter": "8.2.0", - "alertmanager": "0.33.1", - "prometheus": "23.3.0", - "grafana": "6.52.8", - "opentelemetry-collector": "0.57.2", - "tempo-distributed": "1.7.3", - "jenkins": "5.0.16", - "opa-la": "1.2.0", - "elasticsearch-alertmanager-connector": "1.0.0" - } - }, - "git": [ - "MapColonies/helm-charts" - ] -} diff --git a/test/chart/test-helm/Chart.yaml b/test/helm/Chart.yaml similarity index 100% rename from test/chart/test-helm/Chart.yaml rename to test/helm/Chart.yaml diff --git a/test/chart/test-helm/templates/_helpers.tpl b/test/helm/templates/_helpers.tpl similarity index 100% rename from test/chart/test-helm/templates/_helpers.tpl rename to test/helm/templates/_helpers.tpl diff --git a/test/chart/test-helm/templates/deployment.yaml b/test/helm/templates/deployment.yaml similarity index 100% rename from test/chart/test-helm/templates/deployment.yaml rename to test/helm/templates/deployment.yaml diff --git a/test/chart/test-helm/templates/secret.yaml b/test/helm/templates/secret.yaml similarity index 100% rename from test/chart/test-helm/templates/secret.yaml rename to test/helm/templates/secret.yaml diff --git a/test/chart/test-helm/values.yaml b/test/helm/values.yaml similarity index 100% rename from test/chart/test-helm/values.yaml rename to test/helm/values.yaml From 3fdf94bb7679dfc390e3c94d82dce2c12a248b3a Mon Sep 17 00:00:00 2001 From: michalby24 Date: Thu, 3 Apr 2025 19:20:34 +0300 Subject: [PATCH 35/69] docs(update-artifacts-file): update readme --- actions/update-artifacts-file/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index 7b21098a..8f3db1ee 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -1,4 +1,4 @@ -# πŸ“¦ Build and Push Helm Chart Action +# πŸ“¦ Update Artifacts File Action This GitHub Action builds and publishes a Helm chart to a specified registry and updates an `artifacts.json` metadata file using custom shell scripts. @@ -33,9 +33,7 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and - name: Update artifacts.json uses: ./actions/update-artifacts-file with: - context: actions/update-artifacts-file scope: infra - repository: ${{ env.action_repo }} artifact_name: "sftpgo" artifact_tag: "v2.0.2" registry: ${{ secrets.ACR_URL }} From 5f733375a8ea06d5f962c4c85d6c87e55a608f8e Mon Sep 17 00:00:00 2001 From: michalby24 Date: Thu, 3 Apr 2025 19:23:44 +0300 Subject: [PATCH 36/69] ci(actions): changed pr configuration --- release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index c1d55927..41fb1e8c 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -52,7 +52,7 @@ ], "draft-pull-request": false, "include-v-in-tag": true, - "separate-pull-requests": false, + "separate-pull-requests": true, "packages": { "actions/artifactory-login": { "release-type": "simple", From 3a747dad6d2c55ea87f33efa6db39ed7470cb5ff Mon Sep 17 00:00:00 2001 From: michalby24 Date: Thu, 3 Apr 2025 19:28:56 +0300 Subject: [PATCH 37/69] ci(actions): remove workflow triggers --- .github/workflows/test-helm-lint.yml | 2 -- .github/workflows/test-npm-publish.yaml | 2 -- .github/workflows/test-update-artifacts-file.yml | 2 -- 3 files changed, 6 deletions(-) diff --git a/.github/workflows/test-helm-lint.yml b/.github/workflows/test-helm-lint.yml index 90af249d..b9e2776d 100644 --- a/.github/workflows/test-helm-lint.yml +++ b/.github/workflows/test-helm-lint.yml @@ -1,8 +1,6 @@ name: Helm Lint repository on: - workflow_dispatch: - workflow_call: push: branches: - master diff --git a/.github/workflows/test-npm-publish.yaml b/.github/workflows/test-npm-publish.yaml index 118ae465..284029f9 100644 --- a/.github/workflows/test-npm-publish.yaml +++ b/.github/workflows/test-npm-publish.yaml @@ -1,8 +1,6 @@ name: Publish npm Package on: - workflow_dispatch: - workflow_call: push: branches: - master diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml index fe452e74..a0dd5ece 100644 --- a/.github/workflows/test-update-artifacts-file.yml +++ b/.github/workflows/test-update-artifacts-file.yml @@ -1,8 +1,6 @@ name: Update artifacts.json on: - workflow_dispatch: - workflow_call: push: branches: - master From 42cc5f05f4f7e76c5d512f646babcf74d51af740 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Thu, 3 Apr 2025 19:31:33 +0300 Subject: [PATCH 38/69] refactor(actions): change paths --- .github/workflows/test-helm-lint.yml | 2 +- .github/workflows/test-update-artifacts-file.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-helm-lint.yml b/.github/workflows/test-helm-lint.yml index b9e2776d..bc8531e1 100644 --- a/.github/workflows/test-helm-lint.yml +++ b/.github/workflows/test-helm-lint.yml @@ -22,7 +22,7 @@ jobs: uses: ./actions/helm-lint with: repository: ${{ github.repository }} - chartDirs: "./test/chart/test-helm" + chartDirs: "./test/helm" - name: Print on chart change if: steps.helm-lint.outputs.changed == 'true' diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml index a0dd5ece..8c1af8af 100644 --- a/.github/workflows/test-update-artifacts-file.yml +++ b/.github/workflows/test-update-artifacts-file.yml @@ -19,7 +19,7 @@ jobs: with: type: "docker" context: actions/update-artifacts-file - scope: infra + scope: test repository: ${{ github.repository }} artifact-name: "sftpgo" artifact-tag: "v2.0.2" From d0d6745ef2a9eb1bdf22657aa1c27e18ce2bbe89 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Sun, 6 Apr 2025 15:16:55 +0300 Subject: [PATCH 39/69] ci(release-please): add guidlines --- actions/artifactory-login/README.md | 2 ++ actions/build-and-push-docker/README.md | 3 +++ actions/build-and-push-helm/README.md | 3 +++ actions/helm-lint/README.md | 3 +++ actions/npm-publish/README.md | 3 +++ actions/update-artifacts-file/README.md | 3 +++ 6 files changed, 17 insertions(+) diff --git a/actions/artifactory-login/README.md b/actions/artifactory-login/README.md index ebacdfad..b29b0d48 100644 --- a/actions/artifactory-login/README.md +++ b/actions/artifactory-login/README.md @@ -13,6 +13,7 @@ authenticated operations like pulling or pushing images. ## πŸš€ Usage + ```yaml - name: Artifactory Login uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 @@ -21,3 +22,4 @@ authenticated operations like pulling or pushing images. username: ${{ secrets.ACR_PUSH_USER }} password: ${{ secrets.ACR_PUSH_TOKEN }} ``` + diff --git a/actions/build-and-push-docker/README.md b/actions/build-and-push-docker/README.md index 5c7affa0..5eb45a18 100644 --- a/actions/build-and-push-docker/README.md +++ b/actions/build-and-push-docker/README.md @@ -14,6 +14,8 @@ This GitHub Action builds a Docker image from a specified context and pushes it ## πŸš€ Usage + + ```yaml - name: Artifactory Login uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 @@ -29,3 +31,4 @@ This GitHub Action builds a Docker image from a specified context and pushes it scope: infra registry: ${{ secrets.ACR_URL }} ``` + diff --git a/actions/build-and-push-helm/README.md b/actions/build-and-push-helm/README.md index eea63e25..559ed83f 100644 --- a/actions/build-and-push-helm/README.md +++ b/actions/build-and-push-helm/README.md @@ -20,6 +20,8 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi ## πŸš€ Usage + + ```yaml - name: Artifactory Login uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 @@ -35,3 +37,4 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi scope: infra registry: ${{ secrets.ACR_URL }} ``` + diff --git a/actions/helm-lint/README.md b/actions/helm-lint/README.md index 12b7504a..9ab1a146 100644 --- a/actions/helm-lint/README.md +++ b/actions/helm-lint/README.md @@ -19,9 +19,12 @@ It detects which charts have changed and only tests those. ## πŸš€ Usage + + ```yaml - name: Lint and Test Charts uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v1 with: chartDirs: infra/monitoring,infra/sftpgo ``` + diff --git a/actions/npm-publish/README.md b/actions/npm-publish/README.md index a2e017aa..4d5b4500 100644 --- a/actions/npm-publish/README.md +++ b/actions/npm-publish/README.md @@ -18,6 +18,8 @@ This GitHub Action installs dependencies, runs a `prepack` script, and publishes ## πŸš€ Usage + + ```yaml - name: Publish npm Package uses: MapColonies/shared-workflows/actions/publish-npm@v1 @@ -25,3 +27,4 @@ This GitHub Action installs dependencies, runs a `prepack` script, and publishes node-version: '20' npm-token: ${{ secrets.NPM_TOKEN }} ``` + diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index 8f3db1ee..12a2fc95 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -29,6 +29,8 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and ## ✨ Usage + + ```yaml - name: Update artifacts.json uses: ./actions/update-artifacts-file @@ -39,3 +41,4 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and registry: ${{ secrets.ACR_URL }} github_token: ${{ secrets.GH_PAT }} ``` +|INPUTS: \n scope \n repository \n context| B[Checkout latest commit] - B --> C(Login to Remote Registry) - C --> D("Generate Docker Image Name \n (using repository and context)") - D --> E( Build Image) - E --> F[Push Image] - F -->|scope != #quot;#quot;| G[Trigger update-artifacts-file workflow]:::workflow -``` - -## 2. build-and-push-helm -This workflow package a helm chart and and pushes it to the registry. -This workflow also utilizes `update-artifact-file` workflow, to edit the `artifacts.yaml` file in the [common helm charts](https://github.com/mapcolonies/helm-charts/) repository. +## πŸ“‚ Structure -Helm chart's name and version are inferred automatically from the `Chart.yaml` file. -### Workflow parameters: -| Name | Description | Type | Required? | Default Value | -|------------|---------------------------------------------------------------------------|--------|-----------|---------------| -| scope | This is the subdirectory in the helm-charts repository: `helm-charts/` | string | no | '' - -```mermaid -%%{ - init: { - 'theme': 'forest', - 'themeVariables': { - 'lineColor': '#F8B229' - } - } -}%% -flowchart TD - classDef head fill:#5882FA - classDef workflow fill:#8258FA - A[Build And Push Helm]:::head -->|INPUTS: \n scope| B[Checkout latest commit] - B --> C[Setup Helm] - C --> D[Login to Remote Registry] - D --> E(Retrieve Chart Name) - E --> F[Retrieve Chart Version] - F --> G[Package Chart into TGZ] - G --> H[Publish Chart to ACR] - H -->|scope != #quot;#quot;| I[Trigger update-artifacts-file workflow]:::workflow +``` +. +β”œβ”€β”€ actions/ # Reusable composite actions +β”‚ β”œβ”€β”€ artifactory-login/ +β”‚ β”œβ”€β”€ build-and-push-docker/ +β”‚ β”œβ”€β”€ build-and-push-helm/ +β”‚ β”œβ”€β”€ helm-lint/ +β”‚ β”œβ”€β”€ npm-publish/ +β”‚ └── update-artifacts-file/ +β”œβ”€β”€ test/ # Assets for testing the actions +β”œβ”€β”€ .github/workflows/ # Test workflows for each action +β”œβ”€β”€ release-please-config.json +└── README.md ``` -## 3. pull_request -This workflow should be used in your pull requests; here linters run, Snyk checks for vulnerabilities, tests of the service, and a dummy docker build to check that docker image can be still built and hasn't broken. +Each action has a dedicated folder with: +- `action.yaml` – definition of the action +- `README.md` – usage and inputs specific to the action -### Workflow parameters: -| Name | Description | Type | Required? | Default Value | -|--------------------|----------------------------------------------------------|---------|-----------|-----------------| -| enableOpenApiCheck | Flag to enable OpenAPI lint checks | boolean | no | true | -| openApiFilePath | Path to the OpenAPI file (if enableOpenApiCheck is true) | string | no | ./openapi3.yaml | -| usePostgres | Flag whether to initiate postgres service or not | boolean | no | false | +--- -```mermaid -%%{ - init: { - 'theme': 'forest', - 'themeVariables': { - 'lineColor': '#F8B229' - } - } -}%% -flowchart TD - classDef parent fill:#f946 - classDef head fill:#5882FA - A[Pull Request]:::head -->|INPUTS: \n enableOpenApiCheck \n openApiFilePath \n usePostgres| B[Jobs] - B --> C[ESLint Job]:::parent - C --> D[Checkout Git repository] - D --> E[Set up Node.js] - E --> F[Install dependencies] - F --> G[Run linters] - G -->|enableOpenApiCheck==true| H[Lint Checks on OpenAPI File] - B --> I[Security Job]:::parent - I --> J[Checkout Git repository] - J --> K[Run Snyk to check for vulnerabilities] - B --> L[Tests Job]:::parent - L -->|usePostgres==true| N[Start Postgres] - L -->|usePostgres==false| O[Checkout Git repository] - N --> O - O --> P[Set up Node.js] - P --> Q[Install Node.js dependencies] - Q --> R[Run tests] - R --> S[Upload Test Reporters] - B --> T[Build Image Job]:::parent - T --> U[Checkout Git repository] - U --> V[Build Docker image] -``` +## πŸ§ͺ Purpose of This Repo -## 4. release-on-tag-push -This workflow creates a release. Its trigger event should be when a new tag is craeted in the repository. This workflow generates postman collection for the service, and modifies the `CHANGELOG.md` file respectively. +- Maintain reusable actions for use in other repositories +- Create test workflows to verify action behavior before tagging +- Manage action versioning and changelogs via `release-please` -### Workflow parameters: -| Name | Description | Type | Required? | Default Value | -|--------------------|----------------------------------------------------------|---------|-----------|-----------------| -| enableOpenApiToPostman | Flag to enable OpenAPI to Postman collection conversion | boolean | no | true | +--- -```mermaid -%%{ - init: { - 'theme': 'forest', - 'themeVariables': { - 'lineColor': '#F8B229' - } - } -}%% -flowchart TD - classDef head fill:#5882FA - A[Release On Tag Push]:::head -->|INPUTS: \n enableOpenApiToPostman| C["Checkout Git repository for CHANGELOG.md \n (for release notes)"] - C --> D[Get package info] - D --> E["Setup Node.js \n (for postman collection)"] - E --> F[Set Collection File Name Env] - F -->|enableOpenApiToPostman==true| G[Add openapi to Postman Collection] - G --> H[Publish Release to GitHub] - F --> |else| H -``` +## πŸ“¦ Actions Included -## 5. update-artifacts-file -This workflow edits the `artifacts.json` according to the input. +| Action | Description | +|--------|-------------| +| `artifactory-login` | Logs in to Azure Container Registry | +| `build-and-push-docker` | Builds and pushes Docker images | +| `build-and-push-helm` | Packages and publishes Helm charts | +| `helm-lint` | Lints and tests Helm charts | +| `npm-publish` | Publishes npm packages | +| `update-artifacts-file` | Updates `artifacts.json` metadata | -### Workflow parameters: -| Name | Description | Type | Required? | Default Value | -|---------------|----------------------------------------|---------------------------------------|-----------|---------------| -| scope | This is the subdirectory in the helm-charts repository: `helm-charts/` | string | yes | | -| type | Artifact`s type | string | no | docker | -| artifact-name | Artifact`s name | string | yes | | -| artifact-tag | Aritfact`s tag | string | yes | | +--- -```mermaid -%%{ - init: { - 'theme': 'forest', - 'themeVariables': { - 'lineColor': '#F8B229' - } - } -}%% -flowchart TD - classDef head fill:#5882FA - A[Edit artifacts.json in helm-charts]:::head -->|INPUTS: \n artifact-name \n artifact-tag| D["Checkout helm-charts Repository \n (access the helm-charts repository for modification)"] - D --> E[Set up Node.js] - E -->|using the inputs| F["Modify artifacts.json \n (update artifacts.json with new artifact data)"] - F --> G["Commit Changes \n (commit and push the updated artifacts.json back to the repository)"] +## πŸ“ Notes -``` +- Each action has its own `README.md` for documentation. +- Versioning and changelog management are handled by `release-please`. +- Tags follow semver (`v1.1.0`, `v1.1`, `v1`). From f15951156e81289ae54d710e050df0d5bee2990c Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 7 Apr 2025 12:15:16 +0300 Subject: [PATCH 43/69] feat(push-docker): seperate build-and-push --- .../workflows/test-build-and-push-docker.yaml | 12 +++-- .release-please-manifest.json | 3 +- .../README.md | 12 +++-- .../action.yaml | 7 +-- actions/npm-publish/README.md | 2 +- actions/push-docker/README.md | 50 +++++++++++++++++++ actions/push-docker/action.yaml | 12 +++++ actions/update-artifacts-file/README.md | 8 +-- release-please-config.json | 9 +++- 9 files changed, 95 insertions(+), 20 deletions(-) rename actions/{build-and-push-docker => build-docker}/README.md (80%) rename actions/{build-and-push-docker => build-docker}/action.yaml (88%) create mode 100644 actions/push-docker/README.md create mode 100644 actions/push-docker/action.yaml diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index 3ce79112..b1cbbc59 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -5,7 +5,8 @@ on: branches: - master paths: - - "actions/build-and-push-docker/**" + - "actions/build-docker/**" + - "actions/push-docker/**" jobs: test-build-and-push: @@ -21,9 +22,14 @@ jobs: username: ${{ secrets.ACR_PUSH_USER }} password: ${{ secrets.ACR_PUSH_TOKEN }} - - name: Test Build and push Docker Image - uses: ./actions/build-and-push-docker + - name: Test Build Docker Image + uses: ./actions/build-docker with: context: ./test team: infra registry: ${{ secrets.ACR_URL }} + + - name: Test Push Docker Image + uses: ./actions/push-docker + with: + image-name: $DOCKER_IMAGE_NAME diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 564c3721..5827ae8f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,7 @@ { "actions/artifactory-login": "1.0.0", - "actions/build-and-push-docker": "1.0.0", + "actions/build-docker": "1.0.0", + "actions/push-docker": "1.0.0", "actions/build-and-push-helm": "1.0.0", "actions/helm-lint": "1.0.0", "actions/npm-publish": "1.0.0", diff --git a/actions/build-and-push-docker/README.md b/actions/build-docker/README.md similarity index 80% rename from actions/build-and-push-docker/README.md rename to actions/build-docker/README.md index 5eb45a18..159d39eb 100644 --- a/actions/build-and-push-docker/README.md +++ b/actions/build-docker/README.md @@ -1,6 +1,6 @@ -# Build and Push Docker Image Action +# Build Docker Image Action -This GitHub Action builds a Docker image from a specified context and pushes it to a given container registry. +This GitHub Action builds a Docker image from a specified context ## πŸ›  Inputs @@ -8,9 +8,13 @@ This GitHub Action builds a Docker image from a specified context and pushes it |--------------|-----------------------------------------------------------------------------|----------|--------------------------------| | `context` | Path to the Docker build context (e.g. `.` or `./app`). | βœ… Yes | β€” | | `repository` | Full GitHub repository name. Used for image name. | ❌ No | `${{ github.repository }}` | -| `team` | The image's team owner (e.g. `3d`, `infra`). | βœ… Yes | β€” | +| `team` | The image's team owner (e.g. `3d`, `infra`). | βœ… Yes | β€” | | `registry` | Registry URL (e.g. ACR address). | βœ… Yes | β€” | +## πŸ“€ Outputs +| Name | Description | +|---------|----------------------------------| +| `DOCKER_IMAGE_NAME` | Fully qualified Docker image name to push (github output)| ## πŸš€ Usage @@ -24,7 +28,7 @@ This GitHub Action builds a Docker image from a specified context and pushes it username: ${{ secrets.ACR_PUSH_USER }} password: ${{ secrets.ACR_PUSH_TOKEN }} -- name: Build and Push Docker Image +- name: Build Docker Image uses: MapColonies/shared-workflows/actions/build-and-push-docker@build-and-push-docker-v1 with: context: . diff --git a/actions/build-and-push-docker/action.yaml b/actions/build-docker/action.yaml similarity index 88% rename from actions/build-and-push-docker/action.yaml rename to actions/build-docker/action.yaml index 1baa8823..3ce53110 100644 --- a/actions/build-and-push-docker/action.yaml +++ b/actions/build-docker/action.yaml @@ -1,4 +1,4 @@ -name: "Build and Push Docker Image" +name: "Build Docker Image" description: "Builds a Docker image" inputs: context: @@ -26,12 +26,9 @@ runs: REPO_NAME=$(basename "${{ inputs.repository }}") DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.team }}/${REPO_NAME}:${IMAGE_TAG}" echo "DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME,,}" >> $GITHUB_ENV + echo "docker_image_name=$DOCKER_IMAGE_NAME" >> $GITHUB_OUTPUT shell: bash - name: Build the docker image run: docker build ${{ inputs.context }} -t ${{ env.DOCKER_IMAGE_NAME }} shell: bash - - - name: Push docker image - run: docker push ${{ env.DOCKER_IMAGE_NAME }} - shell: bash diff --git a/actions/npm-publish/README.md b/actions/npm-publish/README.md index 4d5b4500..e1c0a830 100644 --- a/actions/npm-publish/README.md +++ b/actions/npm-publish/README.md @@ -1,4 +1,4 @@ -# πŸ“¦ Publish npm Package Action +# Publish npm Package Action This GitHub Action installs dependencies, runs a `prepack` script, and publishes a package to the npm registry using [`npm-publish`](https://github.com/JS-DevTools/npm-publish). diff --git a/actions/push-docker/README.md b/actions/push-docker/README.md new file mode 100644 index 00000000..b8d32783 --- /dev/null +++ b/actions/push-docker/README.md @@ -0,0 +1,50 @@ +# Push Docker Image Action + +This GitHub Action pushes a pre-built Docker image to a container registry. + +It is intended to be used **after building an image** using another action like [`build-docker`](../build-docker/). +This action assumes the image is already tagged and available in the local Docker cache. + +--- + +## πŸ›  Inputs + +| Name | Description | Required | +|--------------|----------------------------------------------------|----------| +| `image-name` | The fully qualified name of the Docker image (including tag) to push, e.g. `my-registry.com/my-scope/my-image:tag` | βœ… Yes | + +--- + +## πŸš€ Usage Example + + + +```yaml +jobs: + build-and-push: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Login to Registry + uses: ./actions/artifactory-login + with: + registry: ${{ secrets.ACR_URL }} + username: ${{ secrets.ACR_PUSH_USER }} + password: ${{ secrets.ACR_PUSH_TOKEN }} + + - name: Build Docker Image + id: build + uses: ./actions/build-docker + with: + context: ./test + scope: infra + registry: ${{ secrets.ACR_URL }} + + - name: Push Docker Image + uses: ./actions/push-docker + with: + image-name: $DOCKER_IMAGE_NAME +``` + diff --git a/actions/push-docker/action.yaml b/actions/push-docker/action.yaml new file mode 100644 index 00000000..05a2f5a6 --- /dev/null +++ b/actions/push-docker/action.yaml @@ -0,0 +1,12 @@ +name: "Push Docker Image" +description: "Pushes a previously built Docker image." +inputs: + image-name: + description: "Fully qualified Docker image name to push." + required: true +runs: + using: "composite" + steps: + - name: Push docker image + run: docker push ${{ inputs.image-name }} + shell: bash diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index 12a2fc95..a7950e94 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -1,10 +1,10 @@ -# πŸ“¦ Update Artifacts File Action +# Update Artifacts File Action This GitHub Action builds and publishes a Helm chart to a specified registry and updates an `artifacts.json` metadata file using custom shell scripts. --- -## πŸš€ What It Does +## ✨ What It Does - Checks out the Helm chart repository - Runs a script to update `artifacts.json` with the chart version and metadata @@ -12,7 +12,7 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and --- -## πŸ”§ Inputs +## πŸ›  Inputs | Name | Description | Required | Default | |------------------|-----------------------------------------------------------------------------|----------|-----------------| @@ -27,7 +27,7 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and --- -## ✨ Usage +## πŸš€ Usage diff --git a/release-please-config.json b/release-please-config.json index 41fb1e8c..123e2f24 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -59,9 +59,14 @@ "package-name": "artifactory-login", "extra-files": ["README.md"] }, - "actions/build-and-push-docker": { + "actions/build-docker": { "release-type": "simple", - "package-name": "build-and-push-docker", + "package-name": "build-docker", + "extra-files": ["README.md"] + }, + "actions/push-docker": { + "release-type": "simple", + "package-name": "push-docker", "extra-files": ["README.md"] }, "actions/build-and-push-helm": { From bcf3a9a59f138f6f8a4e3b03c7f30aa6c164056b Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 8 Apr 2025 10:34:22 +0300 Subject: [PATCH 44/69] docs(action): update readme --- README.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a1896587..735a19d8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This repository contains GitHub Actions used across the MapColonies organization, developed and maintained by the **DevOps team**. -> πŸ§ͺ The workflows in this repo are for testing and validating the functionality of the actions β€” **not for general use** in other projects. +> πŸ§ͺ The workflows in this repo are primarily for testing and validating the functionality of these actions β€” **not for general use** in other projects, unless stated otherwise. --- @@ -12,13 +12,14 @@ This repository contains GitHub Actions used across the MapColonies organization . β”œβ”€β”€ actions/ # Reusable composite actions β”‚ β”œβ”€β”€ artifactory-login/ -β”‚ β”œβ”€β”€ build-and-push-docker/ +β”‚ β”œβ”€β”€ build-docker/ β”‚ β”œβ”€β”€ build-and-push-helm/ β”‚ β”œβ”€β”€ helm-lint/ β”‚ β”œβ”€β”€ npm-publish/ +β”‚ β”œβ”€β”€ push-docker/ β”‚ └── update-artifacts-file/ β”œβ”€β”€ test/ # Assets for testing the actions -β”œβ”€β”€ .github/workflows/ # Test workflows for each action +β”œβ”€β”€ .github/workflows/ # Utility and Test workflows for each action β”œβ”€β”€ release-please-config.json └── README.md ``` @@ -34,6 +35,7 @@ Each action has a dedicated folder with: - Maintain reusable actions for use in other repositories - Create test workflows to verify action behavior before tagging - Manage action versioning and changelogs via `release-please` +- Provide general-use workflows like slash-command triggers --- @@ -42,7 +44,8 @@ Each action has a dedicated folder with: | Action | Description | |--------|-------------| | `artifactory-login` | Logs in to Azure Container Registry | -| `build-and-push-docker` | Builds and pushes Docker images | +| `build-docker` | Builds Docker images | +| `push-docker` | Pushes Docker images | | `build-and-push-helm` | Packages and publishes Helm charts | | `helm-lint` | Lints and tests Helm charts | | `npm-publish` | Publishes npm packages | @@ -50,8 +53,18 @@ Each action has a dedicated folder with: --- +## 🧰 Public Workflows + +| Workflow | Purpose | +|----------------|------------------------------------------------| +| `slash-command`| Dispatch slash-command triggered workflows | +| `postgis-check`| Test DB migrations and compatibility via PR comments | + +--- + ## πŸ“ Notes - Each action has its own `README.md` for documentation. - Versioning and changelog management are handled by `release-please`. - Tags follow semver (`v1.1.0`, `v1.1`, `v1`). +- Only `slash-command` and `postgis-check` workflows are intended for **external usage**. From 3854a3611ad1c3b07bfce767203f165158a5c377 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 8 Apr 2025 13:13:49 +0300 Subject: [PATCH 45/69] feat(actions): add eslint and openapi-lint --- .github/workflows/pull_request.yaml | 145 -- .github/workflows/test-eslint.yml | 22 + .github/workflows/test-npm-publish.yaml | 25 - .github/workflows/test-openapi-lint.yaml | 22 + .release-please-manifest.json | 3 +- README.md | 6 +- actions/eslint/README.md | 22 + actions/eslint/action.yaml | 34 + actions/openapi-lint/README.md | 27 + actions/openapi-lint/action.yaml | 40 + release-please-config.json | 9 +- test/.redocly.yaml | 36 + test/eslint.config.mjs | 5 + test/example.ts | 9 + test/openapi3.yaml | 106 + test/package-lock.json | 2314 +++++++++++++++++++++- test/package.json | 33 +- test/tsconfig.json | 7 + 18 files changed, 2672 insertions(+), 193 deletions(-) delete mode 100644 .github/workflows/pull_request.yaml create mode 100644 .github/workflows/test-eslint.yml delete mode 100644 .github/workflows/test-npm-publish.yaml create mode 100644 .github/workflows/test-openapi-lint.yaml create mode 100644 actions/eslint/README.md create mode 100644 actions/eslint/action.yaml create mode 100644 actions/openapi-lint/README.md create mode 100644 actions/openapi-lint/action.yaml create mode 100644 test/.redocly.yaml create mode 100644 test/eslint.config.mjs create mode 100644 test/example.ts create mode 100644 test/openapi3.yaml create mode 100644 test/tsconfig.json diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml deleted file mode 100644 index 44ec28fa..00000000 --- a/.github/workflows/pull_request.yaml +++ /dev/null @@ -1,145 +0,0 @@ -name: pull_request - -on: - workflow_call: - inputs: - enableOpenApiCheck: - description: "Flag to enable OpenAPI lint checks" - type: boolean - required: false - default: true - openApiFilePath: - description: "Path to the OpenAPI file (if enableOpenApiCheck is true)" - type: string - required: false - default: "./openapi3.yaml" - usePostgres: - description: "Flag to set up postgres database for tests" - type: boolean - required: false - default: false - enableHelmLint: - description: "Flag to enable helm lint" - type: boolean - required: false - default: true - chartDirs: - description: "The root dir or dirs (separated with commas)" - type: string - required: false - default: "." - -jobs: - helm-lint: - if: ${{ inputs.enableHelmLint == true }} - uses: MapColonies/shared-workflows/.github/workflows/helm-lint.yaml@master - secrets: inherit - with: - chartDirs: ${{ inputs.chartDirs }} - - eslint: - name: Run eslint - runs-on: ubuntu-latest - - steps: - - name: Check out Git repository - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v1 - with: - node-version: 20 - - - name: Install dependencies - run: npm ci - - - name: Run linters - run: npm run lint - - openapi-lint: - name: Run openapi-lint - runs-on: ubuntu-latest - if: ${{ inputs.enableOpenApiCheck == true }} - - steps: - - name: Check out Git repository - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v1 - with: - node-version: 20 - - - name: Install dependencies - run: npm ci - - - name: Run linters - run: npm run lint - - - name: OpenAPI Lint Checks - run: npx @redocly/cli lint --format=github-actions ${{ inputs.openApiFilePath }} - - security: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/node@master - continue-on-error: true - env: - SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} - - tests: - name: Run Tests - runs-on: ubuntu-latest - strategy: - matrix: - node: [20.x, 22.x] - services: - # Label used to access the service container - postgres: - # Docker Hub image - image: ${{ (inputs.usePostgres == true) && 'postgis/postgis:13-3.4' || ''}} - # Provide the password for postgres - env: - POSTGRES_PASSWORD: 1234 - POSTGRES_USER: postgres - POSTGRES_DB: postgres - ports: - - 5432:5432 - # Set health checks to wait until postgres has started - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 - steps: - - name: Check out Git repository - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node }} - - - name: Install Node.js dependencies - run: npm ci - - - name: Run tests - run: npm run test - - - uses: actions/upload-artifact@v4 - with: - name: Test Reporters Node-${{ matrix.node }} - path: reports/** - - build_image: - name: Build Image - runs-on: ubuntu-latest - - steps: - - name: Check out Git repository - uses: actions/checkout@v4 - - - name: build Docker image - run: docker build -t test-build:latest . diff --git a/.github/workflows/test-eslint.yml b/.github/workflows/test-eslint.yml new file mode 100644 index 00000000..e95b1b07 --- /dev/null +++ b/.github/workflows/test-eslint.yml @@ -0,0 +1,22 @@ +name: esint repository + +on: + workflow_dispatch: + workflow_call: + push: + branches: + - master + paths: + - "actions/eslint/**" + +jobs: + test-eslint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: eslint + uses: ./actions/eslint + with: + path: ./test diff --git a/.github/workflows/test-npm-publish.yaml b/.github/workflows/test-npm-publish.yaml deleted file mode 100644 index 284029f9..00000000 --- a/.github/workflows/test-npm-publish.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Publish npm Package - -on: - push: - branches: - - master - paths: - - "actions/npm-publish/**" - -jobs: - publish: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout code - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - - name: Test Publish Package - uses: ./actions/npm-publish - with: - node-version: ${{ inputs.node-version }} - npm-token: ${{ secrets.NPM_TOKEN }} - path: ./test diff --git a/.github/workflows/test-openapi-lint.yaml b/.github/workflows/test-openapi-lint.yaml new file mode 100644 index 00000000..937beff2 --- /dev/null +++ b/.github/workflows/test-openapi-lint.yaml @@ -0,0 +1,22 @@ +name: Test OpenApi-lint + +on: + workflow_dispatch: + workflow_call: + push: + branches: + - master + paths: + - "actions/opanapi-lint/**" + +jobs: + test-openapi-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: openapi-lint + uses: ./actions/openapi-lint + with: + path: ./test diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5827ae8f..f5c3aabb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -3,8 +3,9 @@ "actions/build-docker": "1.0.0", "actions/push-docker": "1.0.0", "actions/build-and-push-helm": "1.0.0", + "actions/eslint": "1.0.0", "actions/helm-lint": "1.0.0", - "actions/npm-publish": "1.0.0", + "actions/openapi-lint": "1.0.0", "actions/update-artifacts-file": "1.0.0", ".": "1.0.0" } diff --git a/README.md b/README.md index 735a19d8..3dccf161 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ This repository contains GitHub Actions used across the MapColonies organization β”‚ β”œβ”€β”€ build-docker/ β”‚ β”œβ”€β”€ build-and-push-helm/ β”‚ β”œβ”€β”€ helm-lint/ -β”‚ β”œβ”€β”€ npm-publish/ +β”‚ β”œβ”€β”€ eslint/ +β”‚ β”œβ”€β”€ openapi-lint/ β”‚ β”œβ”€β”€ push-docker/ β”‚ └── update-artifacts-file/ β”œβ”€β”€ test/ # Assets for testing the actions @@ -48,7 +49,8 @@ Each action has a dedicated folder with: | `push-docker` | Pushes Docker images | | `build-and-push-helm` | Packages and publishes Helm charts | | `helm-lint` | Lints and tests Helm charts | -| `npm-publish` | Publishes npm packages | +| `eslint` | Runs ESLint to check JavaScript/TypeScript code | +| `openapi-lint` | Validates OpenAPI specs using Redocly CLI | | `update-artifacts-file` | Updates `artifacts.json` metadata | --- diff --git a/actions/eslint/README.md b/actions/eslint/README.md new file mode 100644 index 00000000..581f68c0 --- /dev/null +++ b/actions/eslint/README.md @@ -0,0 +1,22 @@ +# Run ESLint Action + +This GitHub Action installs dependencies and runs ESLint to lint your project codebase. + +## πŸ›  Inputs + +| Name | Description | Default | Required | +|----------------|---------------------------------------|---------|----------| +| `node-version` | Node.js version to set up | `20` | false | +| `path` | Path to the directory containing your Node.js project| `.` | false | + +## πŸš€ Usage + + + +```yaml +- name: Run ESLint + uses: MapColonies/shared-workflows/actions/eslint@eslint-v1 + with: + path: ./test +``` + diff --git a/actions/eslint/action.yaml b/actions/eslint/action.yaml new file mode 100644 index 00000000..718342e4 --- /dev/null +++ b/actions/eslint/action.yaml @@ -0,0 +1,34 @@ +name: "Run ESLint" +description: "Installs dependencies and runs ESLint" +inputs: + node-version: + description: "Node.js version" + default: "20" + required: false + path: + description: "Path to the Node.js dir " + default: "." + required: false + +runs: + using: "composite" + steps: + - name: Checkout helm chart repository + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Set up Node.js + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 + with: + node-version: ${{ inputs['node-version'] }} + + - run: npm install + shell: bash + working-directory: ${{ inputs.path }} + + - run: npm ci + shell: bash + working-directory: ${{ inputs.path }} + + - run: npm run lint + shell: bash + working-directory: ${{ inputs.path }} diff --git a/actions/openapi-lint/README.md b/actions/openapi-lint/README.md new file mode 100644 index 00000000..3e94de32 --- /dev/null +++ b/actions/openapi-lint/README.md @@ -0,0 +1,27 @@ +# OpenAPI Lint Action + +This GitHub Action installs Node.js dependencies, runs code linting, and validates an OpenAPI specification using Redocly CLI. + + +## πŸ›  Inputs + +| Name | Description | Default | Required | +|----------------|---------------------------------------|---------|----------| +| `node-version` | Node.js version to set up | `20` | ❌ No | +| `path` | Path to the directory containing your Node.js project| `.` | ❌ No | +| `openapi-file` | Path to the OpenAPI file (e.g. ./openapi3.yaml) | `.` | ❌ No | + +## πŸš€ Usage + + + +```yaml +- name: Run OpenAPI Lint + uses: MapColonies/shared-workflows/actions/openapi-lint@openapi-lint-v1 + with: + node-version: "20" + openapi-file: "./openapi3.yaml" + path: "." + +``` + diff --git a/actions/openapi-lint/action.yaml b/actions/openapi-lint/action.yaml new file mode 100644 index 00000000..8e81e93d --- /dev/null +++ b/actions/openapi-lint/action.yaml @@ -0,0 +1,40 @@ +name: "OpenAPI Lint" +description: "Installs dependencies, runs code linting, and validates OpenAPI spec using Redocly CLI" + +inputs: + node-version: + description: "Node.js version to use" + required: false + default: "20" + openapi-file: + description: "Path to the OpenAPI file (e.g. ./openapi.yaml)" + required: false + default: "./openapi3.yaml" + path: + description: "Path to the Node.js directory" + required: false + default: "." + +runs: + using: "composite" + steps: + - name: Checkout helm chart repository + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Set up Node.js + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 + with: + node-version: ${{ inputs['node-version'] }} + + - run: npm install + shell: bash + working-directory: ${{ inputs.path }} + + - run: npm ci + shell: bash + working-directory: ${{ inputs.path }} + + - name: OpenAPI Lint + run: npx @redocly/cli lint --format=github-actions ${{ inputs.openapi-file }} + shell: bash + working-directory: ${{ inputs.path }} diff --git a/release-please-config.json b/release-please-config.json index 123e2f24..53333f1e 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -74,14 +74,19 @@ "package-name": "build-and-push-helm", "extra-files": ["README.md"] }, + "actions/eslint": { + "release-type": "simple", + "package-name": "eslint", + "extra-files": ["README.md"] + }, "actions/helm-lint": { "release-type": "simple", "package-name": "helm-lint", "extra-files": ["README.md"] }, - "actions/npm-publish": { + "actions/openapi-lint": { "release-type": "simple", - "package-name": "npm-publish", + "package-name": "openapi-lint", "extra-files": ["README.md"] }, "actions/update-artifacts-file": { diff --git a/test/.redocly.yaml b/test/.redocly.yaml new file mode 100644 index 00000000..b9927fe8 --- /dev/null +++ b/test/.redocly.yaml @@ -0,0 +1,36 @@ +plugins: + [] + # This section is where you can import local plugins. + # We don't support community plugins. + # You don't need to import our built-in plugins and rules. + # Omit this section if you don't have custom plugins. + # - './local-plugin.js' + +extends: + # This section is where you choose the base configurations. + # You may override specific settings in the subsequent sections. + - recommended # This is the default (and built in) configuration. If it is too strict, try `minimal`. + +resolve: + {} + # Use this when you have external links in your definition that are not publicly accessible. + # Not required for Redocly API registry links. + # We recommend using environment variables for when possible. + +preprocessors: + {} + # Preprocessors are rarely indicated -- avoid if possible. + # This section can be omitted. + +rules: + boolean-parameter-prefixes: + severity: error + prefixes: ['should', 'is', 'has'] + no-unused-components: + severity: error + no-empty-servers: off + +decorators: + {} + # Decorators modify the the definition after validation is complete, only in the bundling process. + # This section can be omitted if you don't use decorators. diff --git a/test/eslint.config.mjs b/test/eslint.config.mjs new file mode 100644 index 00000000..f1cdbe23 --- /dev/null +++ b/test/eslint.config.mjs @@ -0,0 +1,5 @@ +import tsBaseConfig from "@map-colonies/eslint-config/ts-base"; +// import jestConfig from "@map-colonies/eslint-config/jest"; +import { config } from "@map-colonies/eslint-config/helpers"; + +export default config({}, tsBaseConfig); diff --git a/test/example.ts b/test/example.ts new file mode 100644 index 00000000..15756e50 --- /dev/null +++ b/test/example.ts @@ -0,0 +1,9 @@ +// example.ts + +// A simple function to greet a person +function greet(name: string): string { + return `Hello, ${name}!`; +} + +// Calling the greet function +console.log(greet("World")); diff --git a/test/openapi3.yaml b/test/openapi3.yaml new file mode 100644 index 00000000..55ee8eed --- /dev/null +++ b/test/openapi3.yaml @@ -0,0 +1,106 @@ +openapi: 3.0.1 +info: + title: service-name + description: basic template for map colonies service + version: 1.0.0 + license: + name: MIT + url: https://opensource.org/licenses/MIT +paths: + /anotherResource: + get: + operationId: getAnotherResource + tags: + - anotherResource + summary: gets the resource + responses: + 200: + description: OK + content: + application/json: + schema: + $ref: '#/components/schemas/anotherResource' + 400: + description: Bad Request + content: + application/json: + schema: + $ref: '#/components/schemas/error' + /resourceName: + get: + operationId: getResourceName + tags: + - resourceName + summary: gets the resource + responses: + 200: + description: OK + content: + application/json: + schema: + $ref: '#/components/schemas/resource' + 400: + description: Bad Request + content: + application/json: + schema: + $ref: '#/components/schemas/error' + post: + operationId: createResource + tags: + - resourceName + summary: creates a new record of type resource + requestBody: + required: true + content: + application/json: + schema: + $ref: '#/components/schemas/resource' + responses: + 201: + description: created + content: + application/json: + schema: + $ref: '#/components/schemas/resource' + 400: + description: Bad Request + content: + application/json: + schema: + $ref: '#/components/schemas/error' +security: + - {} +components: + schemas: + error: + type: object + required: + - message + properties: + message: + type: string + resource: + type: object + required: + - id + - name + - description + properties: + id: + type: number + format: int64 + name: + type: string + description: + type: string + anotherResource: + type: object + required: + - kind + - isAlive + properties: + kind: + type: string + isAlive: + type: boolean diff --git a/test/package-lock.json b/test/package-lock.json index b6c1c91c..b71001e1 100644 --- a/test/package-lock.json +++ b/test/package-lock.json @@ -1,13 +1,2309 @@ { - "name": "publish-npm-package-action", - "version": "1.0.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "publish-npm-package-action", - "version": "1.0.0", - "license": "MIT" + "name": "service-name", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "service-name", + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "@map-colonies/eslint-config": "^6.0.0", + "@map-colonies/prettier-config": "0.0.1", + "@map-colonies/tsconfig": "^1.0.1", + "eslint": "^9.23.0", + "prettier": "^3.5.3", + "typescript": "^5.8.2" + } + }, + "node_modules/@emnapi/core": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.4.0.tgz", + "integrity": "sha512-H+N/FqT07NmLmt6OFFtDfwe8PNygprzBikrEMyQfgqSmT0vzE515Pz7R8izwB9q/zsH/MA64AKoul3sA6/CzVg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.0.1", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.0.tgz", + "integrity": "sha512-64WYIf4UYcdLnbKn/umDlNjQDSS8AgZrI/R9+x5ilkUVFxXcA1Ebl+gQLc/6mERA4407Xof0R7wEyEuj091CVw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.1.tgz", + "integrity": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz", + "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.20.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz", + "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz", + "integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", + "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.24.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.24.0.tgz", + "integrity": "sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz", + "integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.13.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit/node_modules/@eslint/core": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz", + "integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", + "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@map-colonies/eslint-config": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@map-colonies/eslint-config/-/eslint-config-6.0.0.tgz", + "integrity": "sha512-yXh/bMsDnDa1pbMBpBqIe+iySAygiXdSgFMvCDZwr/+y7JUgODikDCMD2LfdP7n+2DDNTNmCc+qu70361wVzfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint/js": "^9.19.0", + "eslint-config-prettier": "^10.0.1", + "eslint-import-resolver-typescript": "^3.7.0", + "eslint-plugin-import-x": "^4.6.1", + "typescript-eslint": "^8.23.0" + }, + "engines": { + "node": ">=20" + }, + "peerDependencies": { + "eslint": "^9.19.0", + "eslint-plugin-jest": "^28.11.0", + "eslint-plugin-react": "^7.37.4", + "eslint-plugin-react-hooks": "^5.1.0", + "globals": "^15.14.0" + }, + "peerDependenciesMeta": { + "eslint-plugin-jest": { + "optional": true + }, + "eslint-plugin-react": { + "optional": true + }, + "eslint-plugin-react-hooks": { + "optional": true + }, + "globals": { + "optional": true } + } + }, + "node_modules/@map-colonies/prettier-config": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@map-colonies/prettier-config/-/prettier-config-0.0.1.tgz", + "integrity": "sha512-7LqtlfqkqHMeowhed4TcM4LLk5JipdBILxtmhRg6t96Tsoh8QOw3FTgroGb81XvZHfkvQlYetxGno2Eiu2o1RA==", + "dev": true, + "license": "ISC" + }, + "node_modules/@map-colonies/tsconfig": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@map-colonies/tsconfig/-/tsconfig-1.0.1.tgz", + "integrity": "sha512-IEWIV0bx3XG07aVmNrSn5gr/39T37dImLTFsUtxeslU5o2S4cgvCMdl/0K2moMJh6Cfr8uRiX6UTop4jLVE8eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "typescript": ">= 5.5.2" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.8.tgz", + "integrity": "sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.0", + "@emnapi/runtime": "^1.4.0", + "@tybys/wasm-util": "^0.9.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@pkgr/core": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.1.tgz", + "integrity": "sha512-VzgHzGblFmUeBmmrk55zPyrQIArQN4vujc9shWytaPdB3P7qhi0cpaiKIr7tlCmFv2lYUwnLospIqjL9ZSAhhg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz", + "integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/doctrine": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.29.1.tgz", + "integrity": "sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.29.1", + "@typescript-eslint/type-utils": "8.29.1", + "@typescript-eslint/utils": "8.29.1", + "@typescript-eslint/visitor-keys": "8.29.1", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.29.1.tgz", + "integrity": "sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.29.1", + "@typescript-eslint/types": "8.29.1", + "@typescript-eslint/typescript-estree": "8.29.1", + "@typescript-eslint/visitor-keys": "8.29.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.29.1.tgz", + "integrity": "sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.29.1", + "@typescript-eslint/visitor-keys": "8.29.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.29.1.tgz", + "integrity": "sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.29.1", + "@typescript-eslint/utils": "8.29.1", + "debug": "^4.3.4", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.29.1.tgz", + "integrity": "sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.29.1.tgz", + "integrity": "sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.29.1", + "@typescript-eslint/visitor-keys": "8.29.1", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.29.1.tgz", + "integrity": "sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.29.1", + "@typescript-eslint/types": "8.29.1", + "@typescript-eslint/typescript-estree": "8.29.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.29.1.tgz", + "integrity": "sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.29.1", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.4.1.tgz", + "integrity": "sha512-8Tv+Bsd0BjGwfEedIyor4inw8atppRxM5BdUnIt+3mAm/QXUm7Dw74CHnXpfZKXkp07EXJGiA8hStqCINAWhdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.4.1.tgz", + "integrity": "sha512-X8c3PhWziEMKAzZz+YAYWfwawi5AEgzy/hmfizAB4C70gMHLKmInJcp1270yYAOs7z07YVFI220pp50z24Jk3A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.4.1.tgz", + "integrity": "sha512-UUr/nREy1UdtxXQnmLaaTXFGOcGxPwNIzeJdb3KXai3TKtC1UgNOB9s8KOA4TaxOUBR/qVgL5BvBwmUjD5yuVA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.4.1.tgz", + "integrity": "sha512-e3pII53dEeS8inkX6A1ad2UXE0nuoWCqik4kOxaDnls0uJUq0ntdj5d9IYd+bv5TDwf9DSge/xPOvCmRYH+Tsw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.4.1.tgz", + "integrity": "sha512-e/AKKd9gR+HNmVyDEPI/PIz2t0DrA3cyonHNhHVjrkxe8pMCiYiqhtn1+h+yIpHUtUlM6Y1FNIdivFa+r7wrEQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.4.1.tgz", + "integrity": "sha512-vtIu34luF1jRktlHtiwm2mjuE8oJCsFiFr8hT5+tFQdqFKjPhbJXn83LswKsOhy0GxAEevpXDI4xxEwkjuXIPA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.4.1.tgz", + "integrity": "sha512-H3PaOuGyhFXiyJd+09uPhGl4gocmhyi1BRzvsP8Lv5AQO3p3/ZY7WjV4t2NkBksm9tMjf3YbOVHyPWi2eWsNYw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.4.1.tgz", + "integrity": "sha512-4+GmJcaaFntCi1S01YByqp8wLMjV/FyQyHVGm0vedIhL1Vfx7uHkz/sZmKsidRwokBGuxi92GFmSzqT2O8KcNA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.4.1.tgz", + "integrity": "sha512-6RDQVCmtFYTlhy89D5ixTqo9bTQqFhvNN0Ey1wJs5r+01Dq15gPHRXv2jF2bQATtMrOfYwv+R2ZR9ew1N1N3YQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.4.1.tgz", + "integrity": "sha512-XpU9uzIkD86+19NjCXxlVPISMUrVXsXo5htxtuG+uJ59p5JauSRZsIxQxzzfKzkxEjdvANPM/lS1HFoX6A6QeA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.4.1.tgz", + "integrity": "sha512-3CDjG/spbTKCSHl66QP2ekHSD+H34i7utuDIM5gzoNBcZ1gTO0Op09Wx5cikXnhORRf9+HyDWzm37vU1PLSM1A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.4.1.tgz", + "integrity": "sha512-50tYhvbCTnuzMn7vmP8IV2UKF7ITo1oihygEYq9wW2DUb/Y+QMqBHJUSCABRngATjZ4shOK6f2+s0gQX6ElENQ==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.8" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.4.1.tgz", + "integrity": "sha512-KyJiIne/AqV4IW0wyQO34wSMuJwy3VxVQOfIXIPyQ/Up6y/zi2P/WwXb78gHsLiGRUqCA9LOoCX+6dQZde0g1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.4.1.tgz", + "integrity": "sha512-y2NUD7pygrBolN2NoXUrwVqBpKPhF8DiSNE5oB5/iFO49r2DpoYqdj5HPb3F42fPBH5qNqj6Zg63+xCEzAD2hw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.4.1.tgz", + "integrity": "sha512-hVXaObGI2lGFmrtT77KSbPQ3I+zk9IU500wobjk0+oX59vg/0VqAzABNtt3YSQYgXTC2a/LYxekLfND/wlt0yQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.24.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.24.0.tgz", + "integrity": "sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.20.0", + "@eslint/config-helpers": "^0.2.0", + "@eslint/core": "^0.12.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.24.0", + "@eslint/plugin-kit": "^0.2.7", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.3.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.1.tgz", + "integrity": "sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.0.tgz", + "integrity": "sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.12", + "unrs-resolver": "^1.3.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-import-x": { + "version": "4.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-import-x/-/eslint-plugin-import-x-4.10.2.tgz", + "integrity": "sha512-jO3Y6+zBUyTX5MVbbLSzoz6fe65t+WEBaXStRLM4EBhZWbuSwAH3cLwARtM0Yp4zRtZGp9sL2zzK7G9JkHR8LA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@pkgr/core": "^0.2.1", + "@types/doctrine": "^0.0.9", + "@typescript-eslint/utils": "^8.29.0", + "debug": "^4.4.0", + "doctrine": "^3.0.0", + "eslint-import-resolver-node": "^0.3.9", + "get-tsconfig": "^4.10.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.3 || ^10.0.1", + "semver": "^7.7.1", + "stable-hash": "^0.0.5", + "tslib": "^2.8.1", + "unrs-resolver": "^1.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-import-x/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/eslint-plugin-import-x/node_modules/minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/eslint-scope": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", + "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz", + "integrity": "sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", + "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz", + "integrity": "sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.4.3", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.4.3", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz", + "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.29.1.tgz", + "integrity": "sha512-f8cDkvndhbQMPcysk6CUSGBWV+g1utqdn71P5YKwMumVMOG/5k7cHq0KyG4O52nB0oKS4aN2Tp5+wB4APJGC+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.29.1", + "@typescript-eslint/parser": "8.29.1", + "@typescript-eslint/utils": "8.29.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/unrs-resolver": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.4.1.tgz", + "integrity": "sha512-MhPB3wBI5BR8TGieTb08XuYlE8oFVEXdSAgat3psdlRyejl8ojQ8iqPcjh094qCZ1r+TnkxzP6BeCd/umfHckQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/JounQin" + }, + "optionalDependencies": { + "@unrs/resolver-binding-darwin-arm64": "1.4.1", + "@unrs/resolver-binding-darwin-x64": "1.4.1", + "@unrs/resolver-binding-freebsd-x64": "1.4.1", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.4.1", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.4.1", + "@unrs/resolver-binding-linux-arm64-gnu": "1.4.1", + "@unrs/resolver-binding-linux-arm64-musl": "1.4.1", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.4.1", + "@unrs/resolver-binding-linux-s390x-gnu": "1.4.1", + "@unrs/resolver-binding-linux-x64-gnu": "1.4.1", + "@unrs/resolver-binding-linux-x64-musl": "1.4.1", + "@unrs/resolver-binding-wasm32-wasi": "1.4.1", + "@unrs/resolver-binding-win32-arm64-msvc": "1.4.1", + "@unrs/resolver-binding-win32-ia32-msvc": "1.4.1", + "@unrs/resolver-binding-win32-x64-msvc": "1.4.1" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } + } } diff --git a/test/package.json b/test/package.json index aeccd4be..d2ed27e2 100644 --- a/test/package.json +++ b/test/package.json @@ -1,11 +1,26 @@ { - "name": "publish-npm-package-action", - "version": "1.0.0", - "description": "A GitHub Action to publish npm packages.", - "main": "index.js", - "scripts": { - "prepack": "echo \"Running prepack script...\"" - }, - "author": "Your Name", - "license": "MIT" + "name": "service-name", + "version": "1.0.0", + "description": "This is template for map colonies typescript service", + "main": "./example.ts", + "scripts": { + "format": "prettier --check .", + "format:fix": "prettier --write .", + "prelint:fix": "npm run format:fix", + "prelint": "npm run format", + "lint:openapi": "redocly lint openapi3.yaml", + "lint": "eslint .", + "lint:fix": "eslint --fix ." + }, + "author": "MapColonies", + "license": "ISC", + "devDependencies": { + "@map-colonies/eslint-config": "^6.0.0", + "@map-colonies/prettier-config": "0.0.1", + "@map-colonies/tsconfig": "^1.0.1", + "@redocly/cli": "^1.34.0", + "eslint": "^9.23.0", + "prettier": "^3.5.3", + "typescript": "^5.8.2" } +} diff --git a/test/tsconfig.json b/test/tsconfig.json new file mode 100644 index 00000000..263c9096 --- /dev/null +++ b/test/tsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "strictNullChecks": true + }, + "exclude": ["node_modules"] +} From b32cff79770be00d73263a4b79e4f82ba55a36e7 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 8 Apr 2025 13:14:46 +0300 Subject: [PATCH 46/69] refactor(npm-publish): remove action --- actions/npm-publish/README.md | 30 ---------------------- actions/npm-publish/action.yaml | 44 --------------------------------- 2 files changed, 74 deletions(-) delete mode 100644 actions/npm-publish/README.md delete mode 100644 actions/npm-publish/action.yaml diff --git a/actions/npm-publish/README.md b/actions/npm-publish/README.md deleted file mode 100644 index e1c0a830..00000000 --- a/actions/npm-publish/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# Publish npm Package Action - -This GitHub Action installs dependencies, runs a `prepack` script, and publishes a package to the npm registry using -[`npm-publish`](https://github.com/JS-DevTools/npm-publish). - ---- - -## πŸ›  Inputs - -| Name | Description | Required | Default | -|----------------|--------------------------------------------------------------------|----------|------------------------------| -| `node-version` | The version of Node.js to use | ❌ No | `20` | -| `npm-token` | npm authentication token (`NODE_AUTH_TOKEN`) | βœ… Yes | β€” | -| `repository` | GitHub repository to checkout (useful in reusable workflows) | ❌ No | `${{ github.repository }}` | -| `path` | Path to the directory containing the `package.json` to publish | ❌ No | `.` | - ---- - -## πŸš€ Usage - - - -```yaml -- name: Publish npm Package - uses: MapColonies/shared-workflows/actions/publish-npm@v1 - with: - node-version: '20' - npm-token: ${{ secrets.NPM_TOKEN }} -``` - diff --git a/actions/npm-publish/action.yaml b/actions/npm-publish/action.yaml deleted file mode 100644 index 1e442792..00000000 --- a/actions/npm-publish/action.yaml +++ /dev/null @@ -1,44 +0,0 @@ -name: 'Publish npm Package' -description: 'Installs dependencies, runs prepack, and publishes the package to npm' -inputs: - node-version: - description: 'Node.js version to use' - required: false - default: '20' - npm-token: - description: 'NPM authentication token' - required: true - repository: - description: 'Repository to checkout' - required: false - default: ${{ github.repository }} - path: - description: 'Path to the package to publish' - required: false - default: '.' -runs: - using: 'composite' - steps: - - name: Checkout helm chart repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - - name: Set up Node.js - uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 - with: - node-version: ${{ inputs['node-version'] }} - - - name: Install dependencies - run: npm install - shell: bash - working-directory: ${{ inputs.path }} - - - name: Run prepack script - run: npm run prepack - shell: bash - working-directory: ${{ inputs.path }} - - - name: Publish package to npm - uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 #v3 - with: - token: ${{ inputs['npm-token'] }} - package: ${{ inputs.path }}/package.json From 6be51fb1921aaccb3b091c39a6186d7824b87f3c Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 10:52:34 +0300 Subject: [PATCH 47/69] refactor(actions): prettier changes --- test/.redocly.yaml | 2 +- test/artifacts.json | 4 +- test/helm/templates/deployment.yaml | 19 +- test/helm/templates/secret.yaml | 4 +- test/openapi3.yaml | 14 +- test/package-lock.json | 4553 +++++++++++++++++++++------ 6 files changed, 3587 insertions(+), 1009 deletions(-) diff --git a/test/.redocly.yaml b/test/.redocly.yaml index b9927fe8..dd8cac61 100644 --- a/test/.redocly.yaml +++ b/test/.redocly.yaml @@ -25,7 +25,7 @@ preprocessors: rules: boolean-parameter-prefixes: severity: error - prefixes: ['should', 'is', 'has'] + prefixes: ["should", "is", "has"] no-unused-components: severity: error no-empty-servers: off diff --git a/test/artifacts.json b/test/artifacts.json index 97f7974a..fc4fe52e 100644 --- a/test/artifacts.json +++ b/test/artifacts.json @@ -9,7 +9,5 @@ "jenkins": "5.0.16" } }, - "git": [ - "MapColonies/helm-charts" - ] + "git": ["MapColonies/helm-charts"] } diff --git a/test/helm/templates/deployment.yaml b/test/helm/templates/deployment.yaml index 1f79f1f5..313ad712 100644 --- a/test/helm/templates/deployment.yaml +++ b/test/helm/templates/deployment.yaml @@ -1,25 +1,24 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: {{ include "hello-world-chart.fullname" . }} - labels: - {{- include "hello-world-chart.labels" . | nindent 4 }} + name: { { include "hello-world-chart.fullname" . } } + labels: { { - include "hello-world-chart.labels" . | nindent 4 } } spec: - replicas: {{ .Values.replicaCount }} + replicas: { { .Values.replicaCount } } selector: matchLabels: - app: {{ include "hello-world-chart.name" . }} - release: {{ .Release.Name }} + app: { { include "hello-world-chart.name" . } } + release: { { .Release.Name } } template: metadata: labels: - app: {{ include "hello-world-chart.name" . }} - release: {{ .Release.Name }} + app: { { include "hello-world-chart.name" . } } + release: { { .Release.Name } } spec: containers: - - name: {{ .Chart.Name }} + - name: { { .Chart.Name } } image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} + imagePullPolicy: { { .Values.image.pullPolicy } } command: ["echo"] args: ["hello world"] ports: diff --git a/test/helm/templates/secret.yaml b/test/helm/templates/secret.yaml index 85348b21..f2c230cd 100644 --- a/test/helm/templates/secret.yaml +++ b/test/helm/templates/secret.yaml @@ -4,5 +4,5 @@ metadata: name: sftpgo-admin-creds type: Opaque data: - username: {{ .Values.secret.username | b64enc }} - password: {{ .Values.secret.password | b64enc }} + username: { { .Values.secret.username | b64enc } } + password: { { .Values.secret.password | b64enc } } diff --git a/test/openapi3.yaml b/test/openapi3.yaml index 55ee8eed..6194ceb2 100644 --- a/test/openapi3.yaml +++ b/test/openapi3.yaml @@ -19,13 +19,13 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/anotherResource' + $ref: "#/components/schemas/anotherResource" 400: description: Bad Request content: application/json: schema: - $ref: '#/components/schemas/error' + $ref: "#/components/schemas/error" /resourceName: get: operationId: getResourceName @@ -38,13 +38,13 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/resource' + $ref: "#/components/schemas/resource" 400: description: Bad Request content: application/json: schema: - $ref: '#/components/schemas/error' + $ref: "#/components/schemas/error" post: operationId: createResource tags: @@ -55,20 +55,20 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/resource' + $ref: "#/components/schemas/resource" responses: 201: description: created content: application/json: schema: - $ref: '#/components/schemas/resource' + $ref: "#/components/schemas/resource" 400: description: Bad Request content: application/json: schema: - $ref: '#/components/schemas/error' + $ref: "#/components/schemas/error" security: - {} components: diff --git a/test/package-lock.json b/test/package-lock.json index b71001e1..01efb6b8 100644 --- a/test/package-lock.json +++ b/test/package-lock.json @@ -12,11 +12,47 @@ "@map-colonies/eslint-config": "^6.0.0", "@map-colonies/prettier-config": "0.0.1", "@map-colonies/tsconfig": "^1.0.1", + "@redocly/cli": "^1.34.0", "eslint": "^9.23.0", "prettier": "^3.5.3", "typescript": "^5.8.2" } }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.0.tgz", + "integrity": "sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@emnapi/core": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.4.0.tgz", @@ -51,6 +87,27 @@ "tslib": "^2.4.0" } }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz", + "integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==", + "dev": true, + "dependencies": { + "@emotion/memoize": "^0.8.1" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==", + "dev": true + }, + "node_modules/@emotion/unitless": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==", + "dev": true + }, "node_modules/@eslint-community/eslint-utils": { "version": "4.5.1", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz", @@ -202,6 +259,22 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, + "node_modules/@exodus/schemasafe": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", + "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==", + "dev": true + }, + "node_modules/@faker-js/faker": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-7.6.0.tgz", + "integrity": "sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==", + "dev": true, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.0.0" + } + }, "node_modules/@humanfs/core": { "version": "0.19.1", "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", @@ -254,6 +327,15 @@ "url": "https://github.com/sponsors/nzakas" } }, + "node_modules/@humanwhocodes/momoa": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@humanwhocodes/momoa/-/momoa-2.0.4.tgz", + "integrity": "sha512-RE815I4arJFtt+FVeU1Tgp9/Xvecacji8w/V6XtXsWWH/wz/eNkNbhb+ny/+PlVZjV0rxQpRSQKNKE3lcktHEA==", + "dev": true, + "engines": { + "node": ">=10.10.0" + } + }, "node_modules/@humanwhocodes/retry": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", @@ -268,6 +350,42 @@ "url": "https://github.com/sponsors/nzakas" } }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jsep-plugin/assignment": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@jsep-plugin/assignment/-/assignment-1.3.0.tgz", + "integrity": "sha512-VVgV+CXrhbMI3aSusQyclHkenWSAm95WaiKrMxRFam3JSUiIaQjoMIw2sEs/OX4XifnqeQUN4DYbJjlA8EfktQ==", + "dev": true, + "engines": { + "node": ">= 10.16.0" + }, + "peerDependencies": { + "jsep": "^0.4.0||^1.0.0" + } + }, + "node_modules/@jsep-plugin/regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@jsep-plugin/regex/-/regex-1.0.4.tgz", + "integrity": "sha512-q7qL4Mgjs1vByCaTnDFcBnV9HS7GVPJX5vyVoCgZHNSC9rjwIlmbXG5sUuorR5ndfHAIlJ8pVStxvjXHbNvtUg==", + "dev": true, + "engines": { + "node": ">= 10.16.0" + }, + "peerDependencies": { + "jsep": "^0.4.0||^1.0.0" + } + }, "node_modules/@map-colonies/eslint-config": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/@map-colonies/eslint-config/-/eslint-config-6.0.0.tgz", @@ -387,1059 +505,2693 @@ "node": ">=12.4.0" } }, - "node_modules/@pkgr/core": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.1.tgz", - "integrity": "sha512-VzgHzGblFmUeBmmrk55zPyrQIArQN4vujc9shWytaPdB3P7qhi0cpaiKIr7tlCmFv2lYUwnLospIqjL9ZSAhhg==", + "node_modules/@opentelemetry/api": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", + "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", "dev": true, - "license": "MIT", "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" + "node": ">=8.0.0" } }, - "node_modules/@tybys/wasm-util": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz", - "integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==", + "node_modules/@opentelemetry/api-logs": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", + "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", "dev": true, - "license": "MIT", - "optional": true, "dependencies": { - "tslib": "^2.4.0" + "@opentelemetry/api": "^1.0.0" + }, + "engines": { + "node": ">=14" } }, - "node_modules/@types/doctrine": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", - "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/estree": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", - "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "node_modules/@opentelemetry/context-async-hooks": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-1.26.0.tgz", + "integrity": "sha512-HedpXXYzzbaoutw6DFLWLDket2FwLkLpil4hGCZ1xYEIMTcivdfwEOISgdbLEWyG3HW52gTq2V9mOVJrONgiwg==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "node_modules/@opentelemetry/core": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.26.0.tgz", + "integrity": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==", "dev": true, - "license": "MIT" + "dependencies": { + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.29.1.tgz", - "integrity": "sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg==", + "node_modules/@opentelemetry/exporter-trace-otlp-http": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/exporter-trace-otlp-http/-/exporter-trace-otlp-http-0.53.0.tgz", + "integrity": "sha512-m7F5ZTq+V9mKGWYpX8EnZ7NjoqAU7VemQ1E2HAG+W/u0wpY1x0OmbxAXfGKFHCspdJk8UKlwPGrpcB8nay3P8A==", "dev": true, - "license": "MIT", "dependencies": { - "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.29.1", - "@typescript-eslint/type-utils": "8.29.1", - "@typescript-eslint/utils": "8.29.1", - "@typescript-eslint/visitor-keys": "8.29.1", - "graphemer": "^1.4.0", - "ignore": "^5.3.1", - "natural-compare": "^1.4.0", - "ts-api-utils": "^2.0.1" + "@opentelemetry/core": "1.26.0", + "@opentelemetry/otlp-exporter-base": "0.53.0", + "@opentelemetry/otlp-transformer": "0.53.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/sdk-trace-base": "1.26.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=14" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" + "@opentelemetry/api": "^1.0.0" } }, - "node_modules/@typescript-eslint/parser": { - "version": "8.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.29.1.tgz", - "integrity": "sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg==", + "node_modules/@opentelemetry/otlp-exporter-base": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.53.0.tgz", + "integrity": "sha512-UCWPreGQEhD6FjBaeDuXhiMf6kkBODF0ZQzrk/tuQcaVDJ+dDQ/xhJp192H9yWnKxVpEjFrSSLnpqmX4VwX+eA==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "8.29.1", - "@typescript-eslint/types": "8.29.1", - "@typescript-eslint/typescript-estree": "8.29.1", - "@typescript-eslint/visitor-keys": "8.29.1", - "debug": "^4.3.4" + "@opentelemetry/core": "1.26.0", + "@opentelemetry/otlp-transformer": "0.53.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=14" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" + "@opentelemetry/api": "^1.0.0" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "8.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.29.1.tgz", - "integrity": "sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA==", + "node_modules/@opentelemetry/otlp-transformer": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-transformer/-/otlp-transformer-0.53.0.tgz", + "integrity": "sha512-rM0sDA9HD8dluwuBxLetUmoqGJKSAbWenwD65KY9iZhUxdBHRLrIdrABfNDP7aiTjcgK8XFyTn5fhDz7N+W6DA==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.29.1", - "@typescript-eslint/visitor-keys": "8.29.1" + "@opentelemetry/api-logs": "0.53.0", + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/sdk-logs": "0.53.0", + "@opentelemetry/sdk-metrics": "1.26.0", + "@opentelemetry/sdk-trace-base": "1.26.0", + "protobufjs": "^7.3.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=14" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "8.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.29.1.tgz", - "integrity": "sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw==", + "node_modules/@opentelemetry/propagator-b3": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/propagator-b3/-/propagator-b3-1.26.0.tgz", + "integrity": "sha512-vvVkQLQ/lGGyEy9GT8uFnI047pajSOVnZI2poJqVGD3nJ+B9sFGdlHNnQKophE3lHfnIH0pw2ubrCTjZCgIj+Q==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "8.29.1", - "@typescript-eslint/utils": "8.29.1", - "debug": "^4.3.4", - "ts-api-utils": "^2.0.1" + "@opentelemetry/core": "1.26.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=14" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" + "@opentelemetry/api": ">=1.0.0 <1.10.0" } }, - "node_modules/@typescript-eslint/types": { - "version": "8.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.29.1.tgz", - "integrity": "sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ==", + "node_modules/@opentelemetry/propagator-jaeger": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/propagator-jaeger/-/propagator-jaeger-1.26.0.tgz", + "integrity": "sha512-DelFGkCdaxA1C/QA0Xilszfr0t4YbGd3DjxiCDPh34lfnFr+VkkrjV9S8ZTJvAzfdKERXhfOxIKBoGPJwoSz7Q==", "dev": true, - "license": "MIT", + "dependencies": { + "@opentelemetry/core": "1.26.0" + }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=14" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.29.1.tgz", - "integrity": "sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g==", + "node_modules/@opentelemetry/resources": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz", + "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.29.1", - "@typescript-eslint/visitor-keys": "8.29.1", - "debug": "^4.3.4", - "fast-glob": "^3.3.2", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^2.0.1" + "@opentelemetry/core": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=14" }, "peerDependencies": { - "typescript": ">=4.8.4 <5.9.0" + "@opentelemetry/api": ">=1.0.0 <1.10.0" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@opentelemetry/sdk-logs": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.53.0.tgz", + "integrity": "sha512-dhSisnEgIj/vJZXZV6f6KcTnyLDx/VuQ6l3ejuZpMpPlh9S1qMHiZU9NMmOkVkwwHkMy3G6mEBwdP23vUZVr4g==", "dev": true, - "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "@opentelemetry/api-logs": "0.53.0", + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.4.0 <1.10.0" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "node_modules/@opentelemetry/sdk-metrics": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.26.0.tgz", + "integrity": "sha512-0SvDXmou/JjzSDOjUmetAAvcKQW6ZrvosU0rkbDGpXvvZN+pQF6JbK/Kd4hNdK4q/22yeruqvukXEJyySTzyTQ==", "dev": true, - "license": "ISC", "dependencies": { - "brace-expansion": "^2.0.1" + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=14" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.10.0" } }, - "node_modules/@typescript-eslint/utils": { - "version": "8.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.29.1.tgz", - "integrity": "sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA==", + "node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.26.0.tgz", + "integrity": "sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==", "dev": true, - "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.29.1", - "@typescript-eslint/types": "8.29.1", - "@typescript-eslint/typescript-estree": "8.29.1" + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=14" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" + "@opentelemetry/api": ">=1.0.0 <1.10.0" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.29.1.tgz", - "integrity": "sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg==", + "node_modules/@opentelemetry/sdk-trace-node": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-node/-/sdk-trace-node-1.26.0.tgz", + "integrity": "sha512-Fj5IVKrj0yeUwlewCRwzOVcr5avTuNnMHWf7GPc1t6WaT78J6CJyF3saZ/0RkZfdeNO8IcBl/bNcWMVZBMRW8Q==", "dev": true, - "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.29.1", - "eslint-visitor-keys": "^4.2.0" + "@opentelemetry/context-async-hooks": "1.26.0", + "@opentelemetry/core": "1.26.0", + "@opentelemetry/propagator-b3": "1.26.0", + "@opentelemetry/propagator-jaeger": "1.26.0", + "@opentelemetry/sdk-trace-base": "1.26.0", + "semver": "^7.5.2" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=14" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" } }, - "node_modules/@unrs/resolver-binding-darwin-arm64": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.4.1.tgz", - "integrity": "sha512-8Tv+Bsd0BjGwfEedIyor4inw8atppRxM5BdUnIt+3mAm/QXUm7Dw74CHnXpfZKXkp07EXJGiA8hStqCINAWhdw==", - "cpu": [ - "arm64" - ], + "node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] + "engines": { + "node": ">=14" + } }, - "node_modules/@unrs/resolver-binding-darwin-x64": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.4.1.tgz", - "integrity": "sha512-X8c3PhWziEMKAzZz+YAYWfwawi5AEgzy/hmfizAB4C70gMHLKmInJcp1270yYAOs7z07YVFI220pp50z24Jk3A==", - "cpu": [ - "x64" - ], + "node_modules/@pkgr/core": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.1.tgz", + "integrity": "sha512-VzgHzGblFmUeBmmrk55zPyrQIArQN4vujc9shWytaPdB3P7qhi0cpaiKIr7tlCmFv2lYUwnLospIqjL9ZSAhhg==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } }, - "node_modules/@unrs/resolver-binding-freebsd-x64": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.4.1.tgz", - "integrity": "sha512-UUr/nREy1UdtxXQnmLaaTXFGOcGxPwNIzeJdb3KXai3TKtC1UgNOB9s8KOA4TaxOUBR/qVgL5BvBwmUjD5yuVA==", - "cpu": [ - "x64" - ], + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "dev": true + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "dev": true + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "dev": true + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "dev": true + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } }, - "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.4.1.tgz", - "integrity": "sha512-e3pII53dEeS8inkX6A1ad2UXE0nuoWCqik4kOxaDnls0uJUq0ntdj5d9IYd+bv5TDwf9DSge/xPOvCmRYH+Tsw==", - "cpu": [ - "arm" - ], + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "dev": true + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "dev": true + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "dev": true + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "dev": true + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "dev": true + }, + "node_modules/@redocly/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js-replace": "^1.0.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } }, - "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.4.1.tgz", - "integrity": "sha512-e/AKKd9gR+HNmVyDEPI/PIz2t0DrA3cyonHNhHVjrkxe8pMCiYiqhtn1+h+yIpHUtUlM6Y1FNIdivFa+r7wrEQ==", - "cpu": [ - "arm" - ], + "node_modules/@redocly/ajv/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/@redocly/cli": { + "version": "1.34.1", + "resolved": "https://registry.npmjs.org/@redocly/cli/-/cli-1.34.1.tgz", + "integrity": "sha512-12aTw7A/0n+8T7yKM1E8qlFRFPZnm2i1me0sZ1WOAiGT4I2j4iUcCp+93B0nrjIs1ZdNmrT0TTrMYLhsMJYjaQ==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "@opentelemetry/api": "1.9.0", + "@opentelemetry/exporter-trace-otlp-http": "0.53.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/sdk-trace-node": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0", + "@redocly/config": "^0.22.0", + "@redocly/openapi-core": "1.34.1", + "@redocly/respect-core": "1.34.1", + "abort-controller": "^3.0.0", + "chokidar": "^3.5.1", + "colorette": "^1.2.0", + "core-js": "^3.32.1", + "dotenv": "^16.4.7", + "form-data": "^4.0.0", + "get-port-please": "^3.0.1", + "glob": "^7.1.6", + "handlebars": "^4.7.6", + "mobx": "^6.0.4", + "pluralize": "^8.0.0", + "react": "^17.0.0 || ^18.2.0 || ^19.0.0", + "react-dom": "^17.0.0 || ^18.2.0 || ^19.0.0", + "redoc": "2.4.0", + "semver": "^7.5.2", + "simple-websocket": "^9.0.0", + "styled-components": "^6.0.7", + "yargs": "17.0.1" + }, + "bin": { + "openapi": "bin/cli.js", + "redocly": "bin/cli.js" + }, + "engines": { + "node": ">=18.17.0", + "npm": ">=9.5.0" + } }, - "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.4.1.tgz", - "integrity": "sha512-vtIu34luF1jRktlHtiwm2mjuE8oJCsFiFr8hT5+tFQdqFKjPhbJXn83LswKsOhy0GxAEevpXDI4xxEwkjuXIPA==", - "cpu": [ - "arm64" - ], + "node_modules/@redocly/config": { + "version": "0.22.2", + "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.22.2.tgz", + "integrity": "sha512-roRDai8/zr2S9YfmzUfNhKjOF0NdcOIqF7bhf4MVC5UxpjIysDjyudvlAiVbpPHp3eDRWbdzUgtkK1a7YiDNyQ==", + "dev": true + }, + "node_modules/@redocly/openapi-core": { + "version": "1.34.1", + "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.34.1.tgz", + "integrity": "sha512-KI1QOGvDk6oREbTu0JORxZX1NBxraXUbXczv0LYDs9EPp06coq874hQORqSHGEUV/DX2A6gjv4Ax33g/LFJBww==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "@redocly/ajv": "^8.11.2", + "@redocly/config": "^0.22.0", + "colorette": "^1.2.0", + "https-proxy-agent": "^7.0.5", + "js-levenshtein": "^1.1.6", + "js-yaml": "^4.1.0", + "minimatch": "^5.0.1", + "pluralize": "^8.0.0", + "yaml-ast-parser": "0.0.43" + }, + "engines": { + "node": ">=18.17.0", + "npm": ">=9.5.0" + } }, - "node_modules/@unrs/resolver-binding-linux-arm64-musl": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.4.1.tgz", - "integrity": "sha512-H3PaOuGyhFXiyJd+09uPhGl4gocmhyi1BRzvsP8Lv5AQO3p3/ZY7WjV4t2NkBksm9tMjf3YbOVHyPWi2eWsNYw==", - "cpu": [ - "arm64" - ], + "node_modules/@redocly/openapi-core/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@redocly/openapi-core/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@redocly/respect-core": { + "version": "1.34.1", + "resolved": "https://registry.npmjs.org/@redocly/respect-core/-/respect-core-1.34.1.tgz", + "integrity": "sha512-Lzea25WqwxVK5+aCiq/pr7lUFdsZPYSqNzl05Z4jEtuP1DEIxJNG31ID75dZt30pPtyxjaa/dBuccruYlYflzw==", + "dev": true, + "dependencies": { + "@faker-js/faker": "^7.6.0", + "@redocly/ajv": "8.11.2", + "@redocly/openapi-core": "1.34.1", + "better-ajv-errors": "^1.2.0", + "colorette": "^2.0.20", + "concat-stream": "^2.0.0", + "cookie": "^0.7.2", + "dotenv": "16.4.5", + "form-data": "4.0.0", + "jest-diff": "^29.3.1", + "jest-matcher-utils": "^29.3.1", + "js-yaml": "4.1.0", + "json-pointer": "^0.6.2", + "jsonpath-plus": "^10.0.6", + "open": "^10.1.0", + "openapi-sampler": "^1.6.1", + "outdent": "^0.8.0", + "set-cookie-parser": "^2.3.5", + "undici": "^6.21.1" + }, + "engines": { + "node": ">=18.17.0", + "npm": ">=9.5.0" + } + }, + "node_modules/@redocly/respect-core/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/@redocly/respect-core/node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/@redocly/respect-core/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@tybys/wasm-util": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz", + "integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==", "dev": true, "license": "MIT", "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "tslib": "^2.4.0" + } }, - "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.4.1.tgz", - "integrity": "sha512-4+GmJcaaFntCi1S01YByqp8wLMjV/FyQyHVGm0vedIhL1Vfx7uHkz/sZmKsidRwokBGuxi92GFmSzqT2O8KcNA==", - "cpu": [ - "ppc64" - ], + "node_modules/@types/doctrine": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.14.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.0.tgz", + "integrity": "sha512-Kmpl+z84ILoG+3T/zQFyAJsU6EPTmOCj8/2+83fSN6djd6I4o7uOuGIH6vq3PrjY5BGitSbFuMN18j3iknubbA==", + "dev": true, + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/stylis": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.5.tgz", + "integrity": "sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==", + "dev": true + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "dev": true, + "optional": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.29.1.tgz", + "integrity": "sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.29.1", + "@typescript-eslint/type-utils": "8.29.1", + "@typescript-eslint/utils": "8.29.1", + "@typescript-eslint/visitor-keys": "8.29.1", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } }, - "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.4.1.tgz", - "integrity": "sha512-6RDQVCmtFYTlhy89D5ixTqo9bTQqFhvNN0Ey1wJs5r+01Dq15gPHRXv2jF2bQATtMrOfYwv+R2ZR9ew1N1N3YQ==", - "cpu": [ - "s390x" - ], + "node_modules/@typescript-eslint/parser": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.29.1.tgz", + "integrity": "sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.29.1", + "@typescript-eslint/types": "8.29.1", + "@typescript-eslint/typescript-estree": "8.29.1", + "@typescript-eslint/visitor-keys": "8.29.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.29.1.tgz", + "integrity": "sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.29.1", + "@typescript-eslint/visitor-keys": "8.29.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.29.1.tgz", + "integrity": "sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.29.1", + "@typescript-eslint/utils": "8.29.1", + "debug": "^4.3.4", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.29.1.tgz", + "integrity": "sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.29.1.tgz", + "integrity": "sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.29.1", + "@typescript-eslint/visitor-keys": "8.29.1", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.29.1.tgz", + "integrity": "sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.29.1", + "@typescript-eslint/types": "8.29.1", + "@typescript-eslint/typescript-estree": "8.29.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.29.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.29.1.tgz", + "integrity": "sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.29.1", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.4.1.tgz", + "integrity": "sha512-8Tv+Bsd0BjGwfEedIyor4inw8atppRxM5BdUnIt+3mAm/QXUm7Dw74CHnXpfZKXkp07EXJGiA8hStqCINAWhdw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.4.1.tgz", + "integrity": "sha512-X8c3PhWziEMKAzZz+YAYWfwawi5AEgzy/hmfizAB4C70gMHLKmInJcp1270yYAOs7z07YVFI220pp50z24Jk3A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.4.1.tgz", + "integrity": "sha512-UUr/nREy1UdtxXQnmLaaTXFGOcGxPwNIzeJdb3KXai3TKtC1UgNOB9s8KOA4TaxOUBR/qVgL5BvBwmUjD5yuVA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.4.1.tgz", + "integrity": "sha512-e3pII53dEeS8inkX6A1ad2UXE0nuoWCqik4kOxaDnls0uJUq0ntdj5d9IYd+bv5TDwf9DSge/xPOvCmRYH+Tsw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.4.1.tgz", + "integrity": "sha512-e/AKKd9gR+HNmVyDEPI/PIz2t0DrA3cyonHNhHVjrkxe8pMCiYiqhtn1+h+yIpHUtUlM6Y1FNIdivFa+r7wrEQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.4.1.tgz", + "integrity": "sha512-vtIu34luF1jRktlHtiwm2mjuE8oJCsFiFr8hT5+tFQdqFKjPhbJXn83LswKsOhy0GxAEevpXDI4xxEwkjuXIPA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.4.1.tgz", + "integrity": "sha512-H3PaOuGyhFXiyJd+09uPhGl4gocmhyi1BRzvsP8Lv5AQO3p3/ZY7WjV4t2NkBksm9tMjf3YbOVHyPWi2eWsNYw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.4.1.tgz", + "integrity": "sha512-4+GmJcaaFntCi1S01YByqp8wLMjV/FyQyHVGm0vedIhL1Vfx7uHkz/sZmKsidRwokBGuxi92GFmSzqT2O8KcNA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.4.1.tgz", + "integrity": "sha512-6RDQVCmtFYTlhy89D5ixTqo9bTQqFhvNN0Ey1wJs5r+01Dq15gPHRXv2jF2bQATtMrOfYwv+R2ZR9ew1N1N3YQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.4.1.tgz", + "integrity": "sha512-XpU9uzIkD86+19NjCXxlVPISMUrVXsXo5htxtuG+uJ59p5JauSRZsIxQxzzfKzkxEjdvANPM/lS1HFoX6A6QeA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.4.1.tgz", + "integrity": "sha512-3CDjG/spbTKCSHl66QP2ekHSD+H34i7utuDIM5gzoNBcZ1gTO0Op09Wx5cikXnhORRf9+HyDWzm37vU1PLSM1A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.4.1.tgz", + "integrity": "sha512-50tYhvbCTnuzMn7vmP8IV2UKF7ITo1oihygEYq9wW2DUb/Y+QMqBHJUSCABRngATjZ4shOK6f2+s0gQX6ElENQ==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.8" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.4.1.tgz", + "integrity": "sha512-KyJiIne/AqV4IW0wyQO34wSMuJwy3VxVQOfIXIPyQ/Up6y/zi2P/WwXb78gHsLiGRUqCA9LOoCX+6dQZde0g1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.4.1.tgz", + "integrity": "sha512-y2NUD7pygrBolN2NoXUrwVqBpKPhF8DiSNE5oB5/iFO49r2DpoYqdj5HPb3F42fPBH5qNqj6Zg63+xCEzAD2hw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.4.1.tgz", + "integrity": "sha512-hVXaObGI2lGFmrtT77KSbPQ3I+zk9IU500wobjk0+oX59vg/0VqAzABNtt3YSQYgXTC2a/LYxekLfND/wlt0yQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dev": true, + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/better-ajv-errors": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/better-ajv-errors/-/better-ajv-errors-1.2.0.tgz", + "integrity": "sha512-UW+IsFycygIo7bclP9h5ugkNH8EjCSgqyFB/yQ4Hqqa1OEYDtb0uFIkYE0b6+CjkgJYVM5UKI/pJPxjYe9EZlA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "@humanwhocodes/momoa": "^2.0.2", + "chalk": "^4.1.2", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0 < 4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "peerDependencies": { + "ajv": "4.11.8 - 8" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "dev": true, + "dependencies": { + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-me-maybe": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelize": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", + "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "dev": true + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "dev": true, + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/core-js": { + "version": "3.41.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.41.0.tgz", + "integrity": "sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-color-keywords": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-to-react-native": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", + "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", + "dev": true, + "dependencies": { + "camelize": "^1.0.0", + "css-color-keywords": "^1.0.0", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decko": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decko/-/decko-1.2.0.tgz", + "integrity": "sha512-m8FnyHXV1QX+S1cl+KPFDIl6NMkxtKsy6+U/aYyjrOqWMuwAwYWu7ePqrsUHtDR5Y8Yk2pi/KIDSgF+vT4cPOQ==", + "dev": true + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "dev": true, + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dompurify": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.5.tgz", + "integrity": "sha512-mLPd29uoRe9HpvwP2TxClGQBzGXeEC/we/q+bFlmPPmj2p2Ugl3r6ATu/UU1v77DXNcehiBg9zsr1dREyA/dJQ==", + "dev": true, + "optionalDependencies": { + "@types/trusted-types": "^2.0.7" + } + }, + "node_modules/dotenv": { + "version": "16.4.7", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz", + "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es6-promise": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", + "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", + "dev": true + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.24.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.24.0.tgz", + "integrity": "sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.20.0", + "@eslint/config-helpers": "^0.2.0", + "@eslint/core": "^0.12.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.24.0", + "@eslint/plugin-kit": "^0.2.7", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.3.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.1.tgz", + "integrity": "sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.0.tgz", + "integrity": "sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.12", + "unrs-resolver": "^1.3.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-import-x": { + "version": "4.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-import-x/-/eslint-plugin-import-x-4.10.2.tgz", + "integrity": "sha512-jO3Y6+zBUyTX5MVbbLSzoz6fe65t+WEBaXStRLM4EBhZWbuSwAH3cLwARtM0Yp4zRtZGp9sL2zzK7G9JkHR8LA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@pkgr/core": "^0.2.1", + "@types/doctrine": "^0.0.9", + "@typescript-eslint/utils": "^8.29.0", + "debug": "^4.4.0", + "doctrine": "^3.0.0", + "eslint-import-resolver-node": "^0.3.9", + "get-tsconfig": "^4.10.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.3 || ^10.0.1", + "semver": "^7.7.1", + "stable-hash": "^0.0.5", + "tslib": "^2.8.1", + "unrs-resolver": "^1.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-import-x/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/eslint-plugin-import-x/node_modules/minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/eslint-scope": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", + "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "license": "MIT" }, - "node_modules/@unrs/resolver-binding-linux-x64-gnu": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.4.1.tgz", - "integrity": "sha512-XpU9uzIkD86+19NjCXxlVPISMUrVXsXo5htxtuG+uJ59p5JauSRZsIxQxzzfKzkxEjdvANPM/lS1HFoX6A6QeA==", - "cpu": [ - "x64" + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "dev": true + }, + "node_modules/fast-xml-parser": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz", + "integrity": "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } ], + "dependencies": { + "strnum": "^1.1.1" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } }, - "node_modules/@unrs/resolver-binding-linux-x64-musl": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.4.1.tgz", - "integrity": "sha512-3CDjG/spbTKCSHl66QP2ekHSD+H34i7utuDIM5gzoNBcZ1gTO0Op09Wx5cikXnhORRf9+HyDWzm37vU1PLSM1A==", - "cpu": [ - "x64" - ], + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } }, - "node_modules/@unrs/resolver-binding-wasm32-wasi": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.4.1.tgz", - "integrity": "sha512-50tYhvbCTnuzMn7vmP8IV2UKF7ITo1oihygEYq9wW2DUb/Y+QMqBHJUSCABRngATjZ4shOK6f2+s0gQX6ElENQ==", - "cpu": [ - "wasm32" - ], + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "@napi-rs/wasm-runtime": "^0.2.8" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">=14.0.0" + "node": ">=8" } }, - "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.4.1.tgz", - "integrity": "sha512-KyJiIne/AqV4IW0wyQO34wSMuJwy3VxVQOfIXIPyQ/Up6y/zi2P/WwXb78gHsLiGRUqCA9LOoCX+6dQZde0g1g==", - "cpu": [ - "arm64" - ], + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.4.1.tgz", - "integrity": "sha512-y2NUD7pygrBolN2NoXUrwVqBpKPhF8DiSNE5oB5/iFO49r2DpoYqdj5HPb3F42fPBH5qNqj6Zg63+xCEzAD2hw==", - "cpu": [ - "ia32" - ], + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } }, - "node_modules/@unrs/resolver-binding-win32-x64-msvc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.4.1.tgz", - "integrity": "sha512-hVXaObGI2lGFmrtT77KSbPQ3I+zk9IU500wobjk0+oX59vg/0VqAzABNtt3YSQYgXTC2a/LYxekLfND/wlt0yQ==", - "cpu": [ - "x64" - ], + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "license": "ISC" }, - "node_modules/acorn": { - "version": "8.14.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", - "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "node_modules/foreach": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", + "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==", + "dev": true + }, + "node_modules/form-data": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", + "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.12" }, "engines": { - "node": ">=0.4.0" + "node": ">= 6" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, - "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "license": "Python-2.0" + "node_modules/get-port-please": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz", + "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==", + "dev": true }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "dev": true, - "license": "MIT" + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/get-tsconfig": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz", + "integrity": "sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, - "license": "MIT", "dependencies": { - "fill-range": "^7.1.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=8" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, - "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, - "license": "MIT" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, - "license": "MIT", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "has-symbols": "^1.0.3" }, "engines": { - "node": ">= 8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "license": "MIT", "dependencies": { - "ms": "^2.1.3" + "function-bind": "^1.1.2" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">= 0.4" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true, - "license": "MIT" + "node_modules/http2-client": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/http2-client/-/http2-client-1.3.5.tgz", + "integrity": "sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==", + "dev": true }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "esutils": "^2.0.2" + "agent-base": "^7.1.2", + "debug": "4" }, "engines": { - "node": ">=6.0.0" + "node": ">= 14" } }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 4" } }, - "node_modules/eslint": { - "version": "9.24.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.24.0.tgz", - "integrity": "sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==", + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.20.0", - "@eslint/config-helpers": "^0.2.0", - "@eslint/core": "^0.12.0", - "@eslint/eslintrc": "^3.3.1", - "@eslint/js": "9.24.0", - "@eslint/plugin-kit": "^0.2.7", - "@humanfs/node": "^0.16.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.2", - "@types/estree": "^1.0.6", - "@types/json-schema": "^7.0.15", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.6", - "debug": "^4.3.2", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.3.0", - "eslint-visitor-keys": "^4.2.0", - "espree": "^10.3.0", - "esquery": "^1.5.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^8.0.0", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3" - }, - "bin": { - "eslint": "bin/eslint.js" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6" }, "funding": { - "url": "https://eslint.org/donate" - }, - "peerDependencies": { - "jiti": "*" - }, - "peerDependenciesMeta": { - "jiti": { - "optional": true - } + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-config-prettier": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.1.tgz", - "integrity": "sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "license": "MIT", - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" + "engines": { + "node": ">=0.8.19" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, - "license": "MIT", "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.0.tgz", - "integrity": "sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "license": "ISC", "dependencies": { - "@nolyfill/is-core-module": "1.0.39", - "debug": "^4.4.0", - "get-tsconfig": "^4.10.0", - "is-bun-module": "^2.0.0", - "stable-hash": "^0.0.5", - "tinyglobby": "^0.2.12", - "unrs-resolver": "^1.3.2" + "binary-extensions": "^2.0.0" }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint-import-resolver-typescript" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*", - "eslint-plugin-import-x": "*" - }, - "peerDependenciesMeta": { - "eslint-plugin-import": { - "optional": true - }, - "eslint-plugin-import-x": { - "optional": true - } + "node": ">=8" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" } }, - "node_modules/eslint-plugin-import-x": { - "version": "4.10.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-import-x/-/eslint-plugin-import-x-4.10.2.tgz", - "integrity": "sha512-jO3Y6+zBUyTX5MVbbLSzoz6fe65t+WEBaXStRLM4EBhZWbuSwAH3cLwARtM0Yp4zRtZGp9sL2zzK7G9JkHR8LA==", + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "license": "MIT", "dependencies": { - "@pkgr/core": "^0.2.1", - "@types/doctrine": "^0.0.9", - "@typescript-eslint/utils": "^8.29.0", - "debug": "^4.4.0", - "doctrine": "^3.0.0", - "eslint-import-resolver-node": "^0.3.9", - "get-tsconfig": "^4.10.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.3 || ^10.0.1", - "semver": "^7.7.1", - "stable-hash": "^0.0.5", - "tslib": "^2.8.1", - "unrs-resolver": "^1.4.1" + "hasown": "^2.0.2" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-import-x/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-import-x/node_modules/minimatch": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", - "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, - "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "is-extglob": "^2.1.1" }, "engines": { - "node": "20 || >=22" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=0.10.0" } }, - "node_modules/eslint-scope": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", - "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=14.16" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=0.12.0" } }, - "node_modules/espree": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", - "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { - "acorn": "^8.14.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.2.0" + "is-inside-container": "^1.0.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=16" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esquery": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { - "estraverse": "^5.1.0" + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=0.10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, "engines": { - "node": ">=4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, - "license": "BSD-2-Clause", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, "engines": { - "node": ">=4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/js-levenshtein": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true, - "license": "MIT" + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.8" + "argparse": "^2.0.1" }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsep": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jsep/-/jsep-1.4.0.tgz", + "integrity": "sha512-B7qPcEVE3NVkmSJbaYxvv4cHkVW7DQsZz13pUMrfS8z8Q/BuShN+gcTXrUlPiGqM2/t/EEaI030bpxMqY8gMlw==", + "dev": true, "engines": { - "node": ">=8.6.0" + "node": ">= 10.16.0" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-pointer": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/json-pointer/-/json-pointer-0.6.2.tgz", + "integrity": "sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==", "dev": true, - "license": "ISC", "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" + "foreach": "^2.0.4" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, "license": "MIT" }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true, "license": "MIT" }, - "node_modules/fastq": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", - "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "node_modules/jsonpath-plus": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/jsonpath-plus/-/jsonpath-plus-10.3.0.tgz", + "integrity": "sha512-8TNmfeTCk2Le33A3vRRwtuworG/L5RrgMvdjhKZxvyShO+mBu2fP50OWUjRLNtvw344DdDarFh9buFAZs5ujeA==", "dev": true, - "license": "ISC", "dependencies": { - "reusify": "^1.0.4" + "@jsep-plugin/assignment": "^1.3.0", + "@jsep-plugin/regex": "^1.0.4", + "jsep": "^1.4.0" + }, + "bin": { + "jsonpath": "bin/jsonpath-cli.js", + "jsonpath-plus": "bin/jsonpath-cli.js" + }, + "engines": { + "node": ">=18.0.0" } }, - "node_modules/file-entry-cache": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "license": "MIT", "dependencies": { - "flat-cache": "^4.0.0" - }, + "json-buffer": "3.0.1" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, "engines": { - "node": ">=16.0.0" + "node": ">=6" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "license": "MIT", "dependencies": { - "to-regex-range": "^5.0.1" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "license": "MIT", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "p-locate": "^5.0.0" }, "engines": { "node": ">=10" @@ -1448,340 +3200,395 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/flat-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.4" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/flatted": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", - "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true, - "license": "ISC" + "license": "MIT" }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/long": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/long/-/long-5.3.1.tgz", + "integrity": "sha512-ka87Jz3gcx/I7Hal94xaN2tZEOPoUOEVftkQqZx2EeQRN7LGdfLlI3FvZ+7WDplm+vK2Urx9ULrvSowtdCieng==", + "dev": true }, - "node_modules/get-tsconfig": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz", - "integrity": "sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==", + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, - "license": "MIT", "dependencies": { - "resolve-pkg-maps": "^1.0.0" + "js-tokens": "^3.0.0 || ^4.0.0" }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/lunr": { + "version": "2.3.9", + "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", + "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", + "dev": true + }, + "node_modules/mark.js": { + "version": "8.11.1", + "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", + "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", + "dev": true + }, + "node_modules/marked": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", + "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" + "bin": { + "marked": "bin/marked.js" }, "engines": { - "node": ">=10.13.0" + "node": ">= 12" } }, - "node_modules/globals": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", "dev": true, - "license": "MIT", "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.4" } }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true, - "license": "MIT" - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "license": "MIT", "dependencies": { - "function-bind": "^1.1.2" + "braces": "^3.0.3", + "picomatch": "^2.3.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8.6" } }, - "node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, - "license": "MIT", "engines": { - "node": ">= 4" + "node": ">= 0.6" } }, - "node_modules/import-fresh": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", - "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, - "license": "MIT", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "mime-db": "1.52.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=0.8.19" + "node": "*" } }, - "node_modules/is-bun-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", - "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "license": "MIT", - "dependencies": { - "semver": "^7.7.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-core-module": { - "version": "2.16.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", - "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "node_modules/mobx": { + "version": "6.13.7", + "resolved": "https://registry.npmjs.org/mobx/-/mobx-6.13.7.tgz", + "integrity": "sha512-aChaVU/DO5aRPmk1GX8L+whocagUUpBQqoPtJk+cm7UOXUk87J4PeWCh6nNmTTIfEhiR9DI/+FnA8dln/hTK7g==", "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/mobx" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/mobx-react": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/mobx-react/-/mobx-react-9.2.0.tgz", + "integrity": "sha512-dkGWCx+S0/1mfiuFfHRH8D9cplmwhxOV5CkXMp38u6rQGG2Pv3FWYztS0M7ncR6TyPRQKaTG/pnitInoYE9Vrw==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "mobx-react-lite": "^4.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mobx" + }, + "peerDependencies": { + "mobx": "^6.9.0", + "react": "^16.8.0 || ^17 || ^18 || ^19" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/mobx-react-lite": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-4.1.0.tgz", + "integrity": "sha512-QEP10dpHHBeQNv1pks3WnHRCem2Zp636lq54M2nKO2Sarr13pL4u6diQXf65yzXUn0mkk18SyIDCm9UOJYTi1w==", "dev": true, - "license": "MIT", "dependencies": { - "is-extglob": "^2.1.1" + "use-sync-external-store": "^1.4.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mobx" + }, + "peerDependencies": { + "mobx": "^6.9.0", + "react": "^16.8.0 || ^17 || ^18 || ^19" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, - "license": "MIT", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, "engines": { - "node": ">=0.12.0" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, - "license": "ISC" + "license": "MIT" }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, - "license": "MIT", "dependencies": { - "argparse": "^2.0.1" + "whatwg-url": "^5.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch-h2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/node-fetch-h2/-/node-fetch-h2-2.3.0.tgz", + "integrity": "sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==", "dev": true, - "license": "MIT" + "dependencies": { + "http2-client": "^1.2.5" + }, + "engines": { + "node": "4.x || >=6.0.0" + } }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/node-readfiles": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/node-readfiles/-/node-readfiles-0.2.0.tgz", + "integrity": "sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==", "dev": true, - "license": "MIT" + "dependencies": { + "es6-promise": "^3.2.1" + } }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "license": "MIT" + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "node_modules/oas-kit-common": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/oas-kit-common/-/oas-kit-common-1.0.8.tgz", + "integrity": "sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==", "dev": true, - "license": "MIT", "dependencies": { - "json-buffer": "3.0.1" + "fast-safe-stringify": "^2.0.7" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/oas-linter": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/oas-linter/-/oas-linter-3.2.2.tgz", + "integrity": "sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==", "dev": true, - "license": "MIT", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "@exodus/schemasafe": "^1.0.0-rc.2", + "should": "^13.2.1", + "yaml": "^1.10.0" }, - "engines": { - "node": ">= 0.8.0" + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/oas-resolver": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/oas-resolver/-/oas-resolver-2.5.6.tgz", + "integrity": "sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==", "dev": true, - "license": "MIT", "dependencies": { - "p-locate": "^5.0.0" + "node-fetch-h2": "^2.3.0", + "oas-kit-common": "^1.0.8", + "reftools": "^1.1.9", + "yaml": "^1.10.0", + "yargs": "^17.0.1" }, - "engines": { - "node": ">=10" + "bin": { + "resolve": "resolve.js" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "node_modules/oas-schema-walker": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/oas-schema-walker/-/oas-schema-walker-1.1.5.tgz", + "integrity": "sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==", "dev": true, - "license": "MIT" + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" + } }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/oas-validator": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/oas-validator/-/oas-validator-5.0.8.tgz", + "integrity": "sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==", + "dev": true, + "dependencies": { + "call-me-maybe": "^1.0.1", + "oas-kit-common": "^1.0.8", + "oas-linter": "^3.2.2", + "oas-resolver": "^2.5.6", + "oas-schema-walker": "^1.1.5", + "reftools": "^1.1.9", + "should": "^13.2.1", + "yaml": "^1.10.0" + }, + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, - "license": "MIT", "engines": { - "node": ">= 8" + "node": ">=0.10.0" } }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "license": "MIT", "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" + "wrappy": "1" } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/open": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", "dev": true, - "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" }, "engines": { - "node": "*" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "node_modules/openapi-sampler": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.6.1.tgz", + "integrity": "sha512-s1cIatOqrrhSj2tmJ4abFYZQK6l5v+V4toO5q1Pa0DyN8mtyqy2I+Qrj5W9vOELEtybIMQs/TBZGVO/DtTFK8w==", "dev": true, - "license": "MIT" + "dependencies": { + "@types/json-schema": "^7.0.7", + "fast-xml-parser": "^4.5.0", + "json-pointer": "0.6.2" + } }, "node_modules/optionator": { "version": "0.9.4", @@ -1801,6 +3608,12 @@ "node": ">= 0.8.0" } }, + "node_modules/outdent": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.8.0.tgz", + "integrity": "sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==", + "dev": true + }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -1846,6 +3659,12 @@ "node": ">=6" } }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -1856,6 +3675,15 @@ "node": ">=8" } }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -1873,6 +3701,18 @@ "dev": true, "license": "MIT" }, + "node_modules/perfect-scrollbar": { + "version": "1.5.6", + "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.6.tgz", + "integrity": "sha512-rixgxw3SxyJbCaSpo1n35A/fwI1r2rdwMKOTCg/AcG+xOEyZcE8UHVjpZMFCVImzsFoCZeJTT+M/rdEIQYO2nw==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true + }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", @@ -1886,6 +3726,61 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/polished": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.3.1.tgz", + "integrity": "sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.17.8" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -1901,47 +3796,271 @@ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin/prettier.cjs" + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prismjs": { + "version": "1.30.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz", + "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, + "node_modules/protobufjs": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz", + "integrity": "sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/react": { + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz", + "integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.0.tgz", + "integrity": "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==", + "dev": true, + "dependencies": { + "scheduler": "^0.26.0" + }, + "peerDependencies": { + "react": "^19.1.0" + } + }, + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/react-tabs": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/react-tabs/-/react-tabs-6.1.0.tgz", + "integrity": "sha512-6QtbTRDKM+jA/MZTTefvigNxo0zz+gnBTVFw2CFVvq+f2BuH0nF0vDLNClL045nuTAdOoK/IL1vTP0ZLX0DAyQ==", + "dev": true, + "dependencies": { + "clsx": "^2.0.0", + "prop-types": "^15.5.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/redoc": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/redoc/-/redoc-2.4.0.tgz", + "integrity": "sha512-rFlfzFVWS9XJ6aYAs/bHnLhHP5FQEhwAHDBVgwb9L2FqDQ8Hu8rQ1G84iwaWXxZfPP9UWn7JdWkxI6MXr2ZDjw==", + "dev": true, + "dependencies": { + "@redocly/openapi-core": "^1.4.0", + "classnames": "^2.3.2", + "decko": "^1.2.0", + "dompurify": "^3.0.6", + "eventemitter3": "^5.0.1", + "json-pointer": "^0.6.2", + "lunr": "^2.3.9", + "mark.js": "^8.11.1", + "marked": "^4.3.0", + "mobx-react": "^9.1.1", + "openapi-sampler": "^1.5.0", + "path-browserify": "^1.0.1", + "perfect-scrollbar": "^1.5.5", + "polished": "^4.2.2", + "prismjs": "^1.29.0", + "prop-types": "^15.8.1", + "react-tabs": "^6.0.2", + "slugify": "~1.4.7", + "stickyfill": "^1.1.1", + "swagger2openapi": "^7.0.8", + "url-template": "^2.0.8" }, "engines": { - "node": ">=14" + "node": ">=6.9", + "npm": ">=3.0.0" }, + "peerDependencies": { + "core-js": "^3.1.4", + "mobx": "^6.0.4", + "react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "styled-components": "^4.1.1 || ^5.1.1 || ^6.0.5" + } + }, + "node_modules/reftools": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/reftools/-/reftools-1.1.9.tgz", + "integrity": "sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==", + "dev": true, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, - "license": "MIT", "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" + "engines": { + "node": ">=0.10.0" + } }, "node_modules/resolve": { "version": "1.22.10", @@ -1995,6 +4114,18 @@ "node": ">=0.10.0" } }, + "node_modules/run-applescript": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -2019,6 +4150,32 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/scheduler": { + "version": "0.26.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz", + "integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==", + "dev": true + }, "node_modules/semver": { "version": "7.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", @@ -2032,6 +4189,18 @@ "node": ">=10" } }, + "node_modules/set-cookie-parser": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", + "dev": true + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", + "dev": true + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -2055,6 +4224,114 @@ "node": ">=8" } }, + "node_modules/should": { + "version": "13.2.3", + "resolved": "https://registry.npmjs.org/should/-/should-13.2.3.tgz", + "integrity": "sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==", + "dev": true, + "dependencies": { + "should-equal": "^2.0.0", + "should-format": "^3.0.3", + "should-type": "^1.4.0", + "should-type-adaptors": "^1.0.1", + "should-util": "^1.0.0" + } + }, + "node_modules/should-equal": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/should-equal/-/should-equal-2.0.0.tgz", + "integrity": "sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==", + "dev": true, + "dependencies": { + "should-type": "^1.4.0" + } + }, + "node_modules/should-format": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/should-format/-/should-format-3.0.3.tgz", + "integrity": "sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==", + "dev": true, + "dependencies": { + "should-type": "^1.3.0", + "should-type-adaptors": "^1.0.1" + } + }, + "node_modules/should-type": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/should-type/-/should-type-1.4.0.tgz", + "integrity": "sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==", + "dev": true + }, + "node_modules/should-type-adaptors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz", + "integrity": "sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==", + "dev": true, + "dependencies": { + "should-type": "^1.3.0", + "should-util": "^1.0.0" + } + }, + "node_modules/should-util": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz", + "integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==", + "dev": true + }, + "node_modules/simple-websocket": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/simple-websocket/-/simple-websocket-9.1.0.tgz", + "integrity": "sha512-8MJPnjRN6A8UCp1I+H/dSFyjwJhp6wta4hsVRhjf8w9qBHRzxYt14RaOcjvQnhD1N4yKOddEjflwMnQM4VtXjQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "debug": "^4.3.1", + "queue-microtask": "^1.2.2", + "randombytes": "^2.1.0", + "readable-stream": "^3.6.0", + "ws": "^7.4.2" + } + }, + "node_modules/slugify": { + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.4.7.tgz", + "integrity": "sha512-tf+h5W1IrjNm/9rKKj0JU2MDMruiopx0jjVA5zCdBtcGjfp0+c5rHw/zADLC3IeKlGHtVbHtpfzvYA0OYT+HKg==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/stable-hash": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", @@ -2062,6 +4339,47 @@ "dev": true, "license": "MIT" }, + "node_modules/stickyfill": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stickyfill/-/stickyfill-1.1.1.tgz", + "integrity": "sha512-GCp7vHAfpao+Qh/3Flh9DXEJ/qSi0KJwJw6zYlZOtRYXWUIpMM6mC2rIep/dK8RQqwW0KxGJIllmjPIBOGN8AA==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -2075,6 +4393,58 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/strnum": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz", + "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ] + }, + "node_modules/styled-components": { + "version": "6.1.17", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-6.1.17.tgz", + "integrity": "sha512-97D7DwWanI7nN24v0D4SvbfjLE9656umNSJZkBkDIWL37aZqG/wRQ+Y9pWtXyBIM/NSfcBzHLErEsqHmJNSVUg==", + "dev": true, + "dependencies": { + "@emotion/is-prop-valid": "1.2.2", + "@emotion/unitless": "0.8.1", + "@types/stylis": "4.2.5", + "css-to-react-native": "3.2.0", + "csstype": "3.1.3", + "postcss": "8.4.49", + "shallowequal": "1.1.0", + "stylis": "4.3.2", + "tslib": "2.6.2" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/styled-components" + }, + "peerDependencies": { + "react": ">= 16.8.0", + "react-dom": ">= 16.8.0" + } + }, + "node_modules/styled-components/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/stylis": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.2.tgz", + "integrity": "sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==", + "dev": true + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -2101,6 +4471,33 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/swagger2openapi": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/swagger2openapi/-/swagger2openapi-7.0.8.tgz", + "integrity": "sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==", + "dev": true, + "dependencies": { + "call-me-maybe": "^1.0.1", + "node-fetch": "^2.6.1", + "node-fetch-h2": "^2.3.0", + "node-readfiles": "^0.2.0", + "oas-kit-common": "^1.0.8", + "oas-resolver": "^2.5.6", + "oas-schema-walker": "^1.1.5", + "oas-validator": "^5.0.8", + "reftools": "^1.1.9", + "yaml": "^1.10.0", + "yargs": "^17.0.1" + }, + "bin": { + "boast": "boast.js", + "oas-validate": "oas-validate.js", + "swagger2openapi": "swagger2openapi.js" + }, + "funding": { + "url": "https://github.com/Mermade/oas-kit?sponsor=1" + } + }, "node_modules/tinyglobby": { "version": "0.2.12", "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz", @@ -2159,6 +4556,12 @@ "node": ">=8.0" } }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, "node_modules/ts-api-utils": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", @@ -2192,6 +4595,12 @@ "node": ">= 0.8.0" } }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, "node_modules/typescript": { "version": "5.8.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", @@ -2229,6 +4638,34 @@ "typescript": ">=4.8.4 <5.9.0" } }, + "node_modules/uglify-js": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/undici": { + "version": "6.21.2", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.2.tgz", + "integrity": "sha512-uROZWze0R0itiAKVPsYhFov9LxrPMHLMEQFszeI2gCN6bnIIZ8twzBCJcN2LJrBBLfrP0t1FW0g+JmKVl8Vk1g==", + "dev": true, + "engines": { + "node": ">=18.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true + }, "node_modules/unrs-resolver": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.4.1.tgz", @@ -2266,6 +4703,49 @@ "punycode": "^2.1.0" } }, + "node_modules/uri-js-replace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uri-js-replace/-/uri-js-replace-1.0.1.tgz", + "integrity": "sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==", + "dev": true + }, + "node_modules/url-template": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", + "integrity": "sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==", + "dev": true + }, + "node_modules/use-sync-external-store": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz", + "integrity": "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==", + "dev": true, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -2292,6 +4772,107 @@ "node": ">=0.10.0" } }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yaml-ast-parser": { + "version": "0.0.43", + "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", + "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.0.1.tgz", + "integrity": "sha512-xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", From f94f488f650f1e3ff756c2aa9b220e910ad147ec Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 10:57:45 +0300 Subject: [PATCH 48/69] refactor(actions): change relative paths --- .github/workflows/release-on-tag-push.yaml | 44 ---------------------- .gitignore | 1 + .prettierignore | 5 --- actions/artifactory-login/README.md | 2 +- actions/build-and-push-helm/README.md | 4 +- actions/build-docker/README.md | 4 +- actions/eslint/README.md | 2 +- actions/helm-lint/README.md | 2 +- actions/openapi-lint/README.md | 2 +- actions/push-docker/README.md | 6 +-- actions/update-artifacts-file/README.md | 2 +- 11 files changed, 13 insertions(+), 61 deletions(-) delete mode 100644 .github/workflows/release-on-tag-push.yaml create mode 100644 .gitignore diff --git a/.github/workflows/release-on-tag-push.yaml b/.github/workflows/release-on-tag-push.yaml deleted file mode 100644 index b9fe32b5..00000000 --- a/.github/workflows/release-on-tag-push.yaml +++ /dev/null @@ -1,44 +0,0 @@ -name: "Publish release on tag push" - -on: - workflow_call: - inputs: - enableOpenApiToPostman: - description: "Flag to enable OpenAPI to Postman collection conversion" - type: boolean - required: false - default: true - -jobs: - publish_release: - runs-on: ubuntu-latest - steps: - - name: Checkout code for CHANGELOG.md - uses: actions/checkout@v4 - - - name: Get package info - id: package - uses: codex-team/action-nodejs-package-info@v1 - - - name: Generate postman collection for service - uses: actions/setup-node@v2 - with: - node-version: "20" - - - name: Set File name - uses: myci-actions/export-env-var@1 - with: - name: P_COLLECTION_FILE_NAME - value: ${{ steps.package.outputs.name }}-v${{ steps.package.outputs.version }}-postman-collection.json - - - name: Generate Postman Collection - if: ${{ inputs.enableOpenApiToPostman == true }} - run: "npx openapi-to-postmanv2 -s openapi3.yaml -o ${{ env.P_COLLECTION_FILE_NAME }}" - - - name: Publish Release to Github - uses: softprops/action-gh-release@v1 - with: - body_path: CHANGELOG.md - files: ${{ env.P_COLLECTION_FILE_NAME }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..c2658d7d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/.prettierignore b/.prettierignore index 9ae8282b..9df6be19 100644 --- a/.prettierignore +++ b/.prettierignore @@ -5,8 +5,3 @@ # Changelogs that are generated by release-please **/CHANGELOG.md -.release-please-manifest.json -release-please-config.json - -# Ignore package lock file -test/package-lock.json diff --git a/actions/artifactory-login/README.md b/actions/artifactory-login/README.md index b29b0d48..eea379e3 100644 --- a/actions/artifactory-login/README.md +++ b/actions/artifactory-login/README.md @@ -16,7 +16,7 @@ authenticated operations like pulling or pushing images. ```yaml - name: Artifactory Login - uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 + uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0 with: registry: ${{ secrets.ACR_URL }} username: ${{ secrets.ACR_PUSH_USER }} diff --git a/actions/build-and-push-helm/README.md b/actions/build-and-push-helm/README.md index 559ed83f..1dc32519 100644 --- a/actions/build-and-push-helm/README.md +++ b/actions/build-and-push-helm/README.md @@ -24,14 +24,14 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi ```yaml - name: Artifactory Login - uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 + uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0 with: registry: ${{ secrets.ACR_URL }} username: ${{ secrets.ACR_PUSH_USER }} password: ${{ secrets.ACR_PUSH_TOKEN }} - name: Build and Push Helm Chart - uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v1 + uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v1.0.0 with: context: ./infra/monitoring scope: infra diff --git a/actions/build-docker/README.md b/actions/build-docker/README.md index 159d39eb..5a23e5a1 100644 --- a/actions/build-docker/README.md +++ b/actions/build-docker/README.md @@ -22,14 +22,14 @@ This GitHub Action builds a Docker image from a specified context ```yaml - name: Artifactory Login - uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1 + uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0 with: registry: ${{ secrets.ACR_URL }} username: ${{ secrets.ACR_PUSH_USER }} password: ${{ secrets.ACR_PUSH_TOKEN }} - name: Build Docker Image - uses: MapColonies/shared-workflows/actions/build-and-push-docker@build-and-push-docker-v1 + uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v1.0.0 with: context: . scope: infra diff --git a/actions/eslint/README.md b/actions/eslint/README.md index 581f68c0..f194a262 100644 --- a/actions/eslint/README.md +++ b/actions/eslint/README.md @@ -15,7 +15,7 @@ This GitHub Action installs dependencies and runs ESLint to lint your project co ```yaml - name: Run ESLint - uses: MapColonies/shared-workflows/actions/eslint@eslint-v1 + uses: MapColonies/shared-workflows/actions/eslint@eslint-v1.0.0 with: path: ./test ``` diff --git a/actions/helm-lint/README.md b/actions/helm-lint/README.md index 9ab1a146..b31dfb7d 100644 --- a/actions/helm-lint/README.md +++ b/actions/helm-lint/README.md @@ -23,7 +23,7 @@ It detects which charts have changed and only tests those. ```yaml - name: Lint and Test Charts - uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v1 + uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v1.0.0 with: chartDirs: infra/monitoring,infra/sftpgo ``` diff --git a/actions/openapi-lint/README.md b/actions/openapi-lint/README.md index 3e94de32..2f8c10f4 100644 --- a/actions/openapi-lint/README.md +++ b/actions/openapi-lint/README.md @@ -17,7 +17,7 @@ This GitHub Action installs Node.js dependencies, runs code linting, and validat ```yaml - name: Run OpenAPI Lint - uses: MapColonies/shared-workflows/actions/openapi-lint@openapi-lint-v1 + uses: MapColonies/shared-workflows/actions/openapi-lint@openapi-lint-v1.0.0 with: node-version: "20" openapi-file: "./openapi3.yaml" diff --git a/actions/push-docker/README.md b/actions/push-docker/README.md index b8d32783..a0f67d77 100644 --- a/actions/push-docker/README.md +++ b/actions/push-docker/README.md @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v4 - name: Login to Registry - uses: ./actions/artifactory-login + uses: MapColonies/shared-workflows/actions/artifactory-login@artifactory-login-v1.0.0 with: registry: ${{ secrets.ACR_URL }} username: ${{ secrets.ACR_PUSH_USER }} @@ -36,14 +36,14 @@ jobs: - name: Build Docker Image id: build - uses: ./actions/build-docker + uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v1.0.0 with: context: ./test scope: infra registry: ${{ secrets.ACR_URL }} - name: Push Docker Image - uses: ./actions/push-docker + uses: MapColonies/shared-workflows/actions/push-docker@push-docker-v1.0.0 with: image-name: $DOCKER_IMAGE_NAME ``` diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index a7950e94..f28791dc 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -33,7 +33,7 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and ```yaml - name: Update artifacts.json - uses: ./actions/update-artifacts-file + uses: MapColonies/shared-workflows/actions/update-artifacts-file@update-artifacts-file-v1.0.0 with: scope: infra artifact_name: "sftpgo" From ccf360e4e68851073efaf27439ec85d42010f2af Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 11:00:04 +0300 Subject: [PATCH 49/69] docs(actions): update readme --- actions/update-artifacts-file/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index f28791dc..59f16c23 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -20,7 +20,7 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and | `repository` | GitHub repository that contains the `artifacts.json` file | ❌ No | Current repo | | `context` | Path to the directory containing the Helm chart and helper scripts | ❌ No | `./helm` | | `registry` | Registry URL the artifact is pushed to (e.g., ACR address) | βœ… Yes | β€” | -| `type` | Type of artifact (`helm`, `docker`, etc.) | ❌ No | | +| `type` | Type of artifact (`helm`, `docker`, etc.) | ❌ No | `docker` | | `artifact_name` | Name of the artifact (e.g. `sftpgo`, `minio`) | βœ… Yes | β€” | | `artifact_tag` | Tag or version of the artifact (e.g. `v1.2.3`, `latest`) | βœ… Yes | β€” | | `github_token` | GitHub token with permission to commit & push changes | βœ… Yes | β€” | From 7e3f0e8fd42feb7232f7e0689298866111d59385 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 11:04:10 +0300 Subject: [PATCH 50/69] docs(actions): update readme --- README.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/README.md b/README.md index 3dccf161..096e28ba 100644 --- a/README.md +++ b/README.md @@ -61,12 +61,3 @@ Each action has a dedicated folder with: |----------------|------------------------------------------------| | `slash-command`| Dispatch slash-command triggered workflows | | `postgis-check`| Test DB migrations and compatibility via PR comments | - ---- - -## πŸ“ Notes - -- Each action has its own `README.md` for documentation. -- Versioning and changelog management are handled by `release-please`. -- Tags follow semver (`v1.1.0`, `v1.1`, `v1`). -- Only `slash-command` and `postgis-check` workflows are intended for **external usage**. From 975974b4a32e6de4c70df0b18771c355485b3f8b Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 11:07:43 +0300 Subject: [PATCH 51/69] docs(actions): update readme --- actions/helm-lint/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/actions/helm-lint/README.md b/actions/helm-lint/README.md index b31dfb7d..cd2f19be 100644 --- a/actions/helm-lint/README.md +++ b/actions/helm-lint/README.md @@ -7,9 +7,9 @@ It detects which charts have changed and only tests those. ## πŸ›  Inputs -| Name | Description | Required | Default | -|--------------|--------------------------------------------------------------|----------|---------| -| `chartDirs` | Comma-separated list of root directories with Helm charts. | βœ… Yes | `.` | +| Name | Description | Required | +|--------------|--------------------------------------------------------------|----------| +| `chartDirs` | Comma-separated list of root directories with Helm charts. | βœ… Yes | ## πŸ“€ Outputs From 491e1dfc451c2a74aec672a4859ef790b8887008 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 11:20:01 +0300 Subject: [PATCH 52/69] docs(actions): update .prettierignore --- .prettierignore | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.prettierignore b/.prettierignore index 9df6be19..240b5c48 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,7 +1,3 @@ -# Prettier’s own config files -.prettierignore -.prettierrc -.prettierrc.js - # Changelogs that are generated by release-please **/CHANGELOG.md +.release-please-manifest.json From 0b2d3dc5e50bd415e63807240666f45e8d1d7b62 Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Wed, 9 Apr 2025 14:24:02 +0300 Subject: [PATCH 53/69] Update actions/update-artifacts-file/README.md Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- actions/update-artifacts-file/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index 59f16c23..f2be398e 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -41,4 +41,4 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and registry: ${{ secrets.ACR_URL }} github_token: ${{ secrets.GH_PAT }} ``` - From 252c045dfe5dbfdf5a67e821e38eb138ccccdd42 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 14:26:03 +0300 Subject: [PATCH 54/69] refactor(push-docker): image_mame --- .github/workflows/test-build-and-push-docker.yaml | 2 +- actions/push-docker/README.md | 4 ++-- actions/push-docker/action.yaml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index b1cbbc59..52cb7017 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -32,4 +32,4 @@ jobs: - name: Test Push Docker Image uses: ./actions/push-docker with: - image-name: $DOCKER_IMAGE_NAME + image_name: $DOCKER_IMAGE_NAME diff --git a/actions/push-docker/README.md b/actions/push-docker/README.md index a0f67d77..b4c3a9e8 100644 --- a/actions/push-docker/README.md +++ b/actions/push-docker/README.md @@ -11,7 +11,7 @@ This action assumes the image is already tagged and available in the local Docke | Name | Description | Required | |--------------|----------------------------------------------------|----------| -| `image-name` | The fully qualified name of the Docker image (including tag) to push, e.g. `my-registry.com/my-scope/my-image:tag` | βœ… Yes | +| `image_name` | The fully qualified name of the Docker image (including tag) to push, e.g. `my-registry.com/my-scope/my-image:tag` | βœ… Yes | --- @@ -45,6 +45,6 @@ jobs: - name: Push Docker Image uses: MapColonies/shared-workflows/actions/push-docker@push-docker-v1.0.0 with: - image-name: $DOCKER_IMAGE_NAME + image_name: $DOCKER_IMAGE_NAME ``` diff --git a/actions/push-docker/action.yaml b/actions/push-docker/action.yaml index 05a2f5a6..e74ff942 100644 --- a/actions/push-docker/action.yaml +++ b/actions/push-docker/action.yaml @@ -1,12 +1,12 @@ name: "Push Docker Image" description: "Pushes a previously built Docker image." inputs: - image-name: + image_name: description: "Fully qualified Docker image name to push." required: true runs: using: "composite" steps: - name: Push docker image - run: docker push ${{ inputs.image-name }} + run: docker push ${{ inputs.image_name }} shell: bash From 31f1e418dc9d1a2d551383a7e83b401bb983fc0b Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 14:28:07 +0300 Subject: [PATCH 55/69] refactor(update-artifacts-file): type is now required --- actions/update-artifacts-file/README.md | 10 +++++----- actions/update-artifacts-file/action.yaml | 3 +-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index f2be398e..fb8b34f2 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -19,11 +19,11 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and | `scope` | The directory name used as a logical scope for the artifact | βœ… Yes | | | `repository` | GitHub repository that contains the `artifacts.json` file | ❌ No | Current repo | | `context` | Path to the directory containing the Helm chart and helper scripts | ❌ No | `./helm` | -| `registry` | Registry URL the artifact is pushed to (e.g., ACR address) | βœ… Yes | β€” | -| `type` | Type of artifact (`helm`, `docker`, etc.) | ❌ No | `docker` | -| `artifact_name` | Name of the artifact (e.g. `sftpgo`, `minio`) | βœ… Yes | β€” | -| `artifact_tag` | Tag or version of the artifact (e.g. `v1.2.3`, `latest`) | βœ… Yes | β€” | -| `github_token` | GitHub token with permission to commit & push changes | βœ… Yes | β€” | +| `registry` | Registry URL the artifact is pushed to (e.g., ACR address) | βœ… Yes | | +| `type` | Type of artifact (`helm`, `docker`, etc.) | βœ… Yes | | +| `artifact_name` | Name of the artifact (e.g. `sftpgo`, `minio`) | βœ… Yes | | +| `artifact_tag` | Tag or version of the artifact (e.g. `v1.2.3`, `latest`) | βœ… Yes | | +| `github_token` | GitHub token with permission to commit & push changes | βœ… Yes | | --- diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml index eca5818c..3ee3d8bf 100644 --- a/actions/update-artifacts-file/action.yaml +++ b/actions/update-artifacts-file/action.yaml @@ -18,8 +18,7 @@ inputs: type: description: "Artifact`s type" type: string - required: false - default: "docker" + required: true artifact_name: description: "Artifact`s name" type: string From 37fb36c842a93dba1c659ff7e7b702a82d9f74d5 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 14:47:11 +0300 Subject: [PATCH 56/69] refactor(eslint): node_version --- actions/eslint/README.md | 2 +- actions/eslint/action.yaml | 4 ++-- actions/openapi-lint/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/actions/eslint/README.md b/actions/eslint/README.md index f194a262..2c990bb7 100644 --- a/actions/eslint/README.md +++ b/actions/eslint/README.md @@ -6,7 +6,7 @@ This GitHub Action installs dependencies and runs ESLint to lint your project co | Name | Description | Default | Required | |----------------|---------------------------------------|---------|----------| -| `node-version` | Node.js version to set up | `20` | false | +| `node_version` | Node.js version to set up | `20` | false | | `path` | Path to the directory containing your Node.js project| `.` | false | ## πŸš€ Usage diff --git a/actions/eslint/action.yaml b/actions/eslint/action.yaml index 718342e4..bfa29ad8 100644 --- a/actions/eslint/action.yaml +++ b/actions/eslint/action.yaml @@ -1,7 +1,7 @@ name: "Run ESLint" description: "Installs dependencies and runs ESLint" inputs: - node-version: + node_version: description: "Node.js version" default: "20" required: false @@ -19,7 +19,7 @@ runs: - name: Set up Node.js uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 with: - node-version: ${{ inputs['node-version'] }} + node-version: ${{ inputs['node_version'] }} - run: npm install shell: bash diff --git a/actions/openapi-lint/README.md b/actions/openapi-lint/README.md index 2f8c10f4..a8d2e23c 100644 --- a/actions/openapi-lint/README.md +++ b/actions/openapi-lint/README.md @@ -7,7 +7,7 @@ This GitHub Action installs Node.js dependencies, runs code linting, and validat | Name | Description | Default | Required | |----------------|---------------------------------------|---------|----------| -| `node-version` | Node.js version to set up | `20` | ❌ No | +| `node_version` | Node.js version to set up | `20` | ❌ No | | `path` | Path to the directory containing your Node.js project| `.` | ❌ No | | `openapi-file` | Path to the OpenAPI file (e.g. ./openapi3.yaml) | `.` | ❌ No | @@ -19,7 +19,7 @@ This GitHub Action installs Node.js dependencies, runs code linting, and validat - name: Run OpenAPI Lint uses: MapColonies/shared-workflows/actions/openapi-lint@openapi-lint-v1.0.0 with: - node-version: "20" + node_version: "20" openapi-file: "./openapi3.yaml" path: "." From 228b21a5ce1026cff070ffeac92249f276a2556e Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Wed, 9 Apr 2025 14:48:40 +0300 Subject: [PATCH 57/69] Update actions/eslint/action.yaml Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- actions/eslint/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/eslint/action.yaml b/actions/eslint/action.yaml index bfa29ad8..2fb86dd4 100644 --- a/actions/eslint/action.yaml +++ b/actions/eslint/action.yaml @@ -13,7 +13,7 @@ inputs: runs: using: "composite" steps: - - name: Checkout helm chart repository + - name: Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Set up Node.js From 3ed4990fd6c172e9ad502895e0cfbac1bd9f2f27 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 14:50:28 +0300 Subject: [PATCH 58/69] refactor(openapi-lint): node_version --- actions/openapi-lint/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/openapi-lint/action.yaml b/actions/openapi-lint/action.yaml index 8e81e93d..78067b85 100644 --- a/actions/openapi-lint/action.yaml +++ b/actions/openapi-lint/action.yaml @@ -2,7 +2,7 @@ name: "OpenAPI Lint" description: "Installs dependencies, runs code linting, and validates OpenAPI spec using Redocly CLI" inputs: - node-version: + node_version: description: "Node.js version to use" required: false default: "20" @@ -24,7 +24,7 @@ runs: - name: Set up Node.js uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 with: - node-version: ${{ inputs['node-version'] }} + node-version: ${{ inputs['node_version'] }} - run: npm install shell: bash From 54234b0fdba15b9824cfe1465771c33234238d67 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 14:51:31 +0300 Subject: [PATCH 59/69] refactor(openapi-lint): openapi_file --- actions/openapi-lint/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/openapi-lint/action.yaml b/actions/openapi-lint/action.yaml index 78067b85..db517efc 100644 --- a/actions/openapi-lint/action.yaml +++ b/actions/openapi-lint/action.yaml @@ -6,7 +6,7 @@ inputs: description: "Node.js version to use" required: false default: "20" - openapi-file: + openapi_file: description: "Path to the OpenAPI file (e.g. ./openapi.yaml)" required: false default: "./openapi3.yaml" @@ -35,6 +35,6 @@ runs: working-directory: ${{ inputs.path }} - name: OpenAPI Lint - run: npx @redocly/cli lint --format=github-actions ${{ inputs.openapi-file }} + run: npx @redocly/cli lint --format=github-actions ${{ inputs.openapi_file }} shell: bash working-directory: ${{ inputs.path }} From 38b7b11de9a62892c7a76d672c3deb180f0ce18f Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 15:03:21 +0300 Subject: [PATCH 60/69] refactor(actions): change scope and team to domain --- .github/workflows/test-build-and-push-docker.yaml | 2 +- .github/workflows/test-build-and-push-helm.yaml | 2 +- .github/workflows/test-update-artifacts-file.yml | 2 +- actions/build-and-push-helm/README.md | 4 ++-- actions/build-and-push-helm/action.yaml | 6 +++--- actions/build-docker/README.md | 4 ++-- actions/build-docker/action.yaml | 6 +++--- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test-build-and-push-docker.yaml b/.github/workflows/test-build-and-push-docker.yaml index 52cb7017..3dd3f62e 100644 --- a/.github/workflows/test-build-and-push-docker.yaml +++ b/.github/workflows/test-build-and-push-docker.yaml @@ -26,7 +26,7 @@ jobs: uses: ./actions/build-docker with: context: ./test - team: infra + domain: infra registry: ${{ secrets.ACR_URL }} - name: Test Push Docker Image diff --git a/.github/workflows/test-build-and-push-helm.yaml b/.github/workflows/test-build-and-push-helm.yaml index 69aa7580..b3d3c2c0 100644 --- a/.github/workflows/test-build-and-push-helm.yaml +++ b/.github/workflows/test-build-and-push-helm.yaml @@ -26,5 +26,5 @@ jobs: uses: ./actions/build-and-push-helm with: context: .test/helm - team: infra + domain: infra registry: ${{ secrets.ACR_URL }} diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml index 8c1af8af..4ce53819 100644 --- a/.github/workflows/test-update-artifacts-file.yml +++ b/.github/workflows/test-update-artifacts-file.yml @@ -19,7 +19,7 @@ jobs: with: type: "docker" context: actions/update-artifacts-file - scope: test + domain: test repository: ${{ github.repository }} artifact-name: "sftpgo" artifact-tag: "v2.0.2" diff --git a/actions/build-and-push-helm/README.md b/actions/build-and-push-helm/README.md index 1dc32519..d94da122 100644 --- a/actions/build-and-push-helm/README.md +++ b/actions/build-and-push-helm/README.md @@ -6,7 +6,7 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi | Name | Description | Required | Default | |--------------|-----------------------------------------------------------------------------------------------|----------|------------------------| -| `team` | The image's team owner (e.g. `3d`, `infra`). | βœ… Yes | | +| `domain` | The chart's domain (e.g. `3d`, `infra`). | βœ… Yes | | | `context` | Relative path to the Helm chart directory | ❌ No | `./helm` | | `registry` | OCI registry URL where the chart will be pushed (e.g. ACR address) | βœ… Yes | | @@ -34,7 +34,7 @@ This GitHub Action packages a Helm chart and pushes it to a Azure Container Regi uses: MapColonies/shared-workflows/actions/build-and-push-helm@build-and-push-helm-v1.0.0 with: context: ./infra/monitoring - scope: infra + domain: infra registry: ${{ secrets.ACR_URL }} ``` diff --git a/actions/build-and-push-helm/action.yaml b/actions/build-and-push-helm/action.yaml index 54468cb0..6fb9a214 100644 --- a/actions/build-and-push-helm/action.yaml +++ b/actions/build-and-push-helm/action.yaml @@ -1,8 +1,8 @@ name: "Build and Push Helm Chart" description: "Builds and publishes a Helm chart to the specified registry." inputs: - team: - description: "The image's team owner." + domain: + description: "The chart's domain." required: true context: description: "Path to the helm directory." @@ -52,6 +52,6 @@ runs: - name: Publish chart to ACR run: | helm push ${{ steps.set-chart-name.outputs.chart }}-${{ steps.set-chart-version.outputs.ver }}.tgz \ - oci://${{ inputs.registry }}/helm/${{ inputs.scope }} + oci://${{ inputs.registry }}/helm/${{ inputs.domain }} working-directory: ${{ inputs.context }} shell: bash diff --git a/actions/build-docker/README.md b/actions/build-docker/README.md index 5a23e5a1..5256ca6c 100644 --- a/actions/build-docker/README.md +++ b/actions/build-docker/README.md @@ -8,7 +8,7 @@ This GitHub Action builds a Docker image from a specified context |--------------|-----------------------------------------------------------------------------|----------|--------------------------------| | `context` | Path to the Docker build context (e.g. `.` or `./app`). | βœ… Yes | β€” | | `repository` | Full GitHub repository name. Used for image name. | ❌ No | `${{ github.repository }}` | -| `team` | The image's team owner (e.g. `3d`, `infra`). | βœ… Yes | β€” | +| `domain` | The image's domain (e.g. `3d`, `infra`). | βœ… Yes | β€” | | `registry` | Registry URL (e.g. ACR address). | βœ… Yes | β€” | ## πŸ“€ Outputs @@ -32,7 +32,7 @@ This GitHub Action builds a Docker image from a specified context uses: MapColonies/shared-workflows/actions/build-docker@build-docker-v1.0.0 with: context: . - scope: infra + domain: infra registry: ${{ secrets.ACR_URL }} ``` diff --git a/actions/build-docker/action.yaml b/actions/build-docker/action.yaml index 3ce53110..8b027609 100644 --- a/actions/build-docker/action.yaml +++ b/actions/build-docker/action.yaml @@ -8,8 +8,8 @@ inputs: description: "Repository name for the Docker image (defaults to current GitHub repository)." required: false default: ${{ github.repository }} - team: - description: "The image's team owner." + domain: + description: "The image's domain." required: true registry: description: Azure Registry to authenticate against. @@ -24,7 +24,7 @@ runs: run: | IMAGE_TAG="${{ github.ref_name }}" REPO_NAME=$(basename "${{ inputs.repository }}") - DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.team }}/${REPO_NAME}:${IMAGE_TAG}" + DOCKER_IMAGE_NAME="${{ inputs.registry }}/${{ inputs.domain }}/${REPO_NAME}:${IMAGE_TAG}" echo "DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME,,}" >> $GITHUB_ENV echo "docker_image_name=$DOCKER_IMAGE_NAME" >> $GITHUB_OUTPUT shell: bash From ec0c9bc25eb2def4e6e19cc60d47e900f2e78c39 Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Wed, 9 Apr 2025 16:24:00 +0300 Subject: [PATCH 61/69] Update .github/workflows/test-eslint.yml Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- .github/workflows/test-eslint.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test-eslint.yml b/.github/workflows/test-eslint.yml index e95b1b07..f5939a0b 100644 --- a/.github/workflows/test-eslint.yml +++ b/.github/workflows/test-eslint.yml @@ -1,8 +1,7 @@ name: esint repository on: - workflow_dispatch: - workflow_call: + pull_request: push: branches: - master From bcb9894a7a3d6975c0a4ee6662beaa54b7c747c4 Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Wed, 9 Apr 2025 16:24:26 +0300 Subject: [PATCH 62/69] Update .github/workflows/test-openapi-lint.yaml Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- .github/workflows/test-openapi-lint.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test-openapi-lint.yaml b/.github/workflows/test-openapi-lint.yaml index 937beff2..bc6873b6 100644 --- a/.github/workflows/test-openapi-lint.yaml +++ b/.github/workflows/test-openapi-lint.yaml @@ -1,8 +1,7 @@ name: Test OpenApi-lint on: - workflow_dispatch: - workflow_call: + pull_request: push: branches: - master From 916838497b057514978cb4242c46ae9c382a50ce Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Wed, 9 Apr 2025 18:18:28 +0300 Subject: [PATCH 63/69] Update actions/update-artifacts-file/action.yaml Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- actions/update-artifacts-file/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml index 3ee3d8bf..1f3f783d 100644 --- a/actions/update-artifacts-file/action.yaml +++ b/actions/update-artifacts-file/action.yaml @@ -2,7 +2,7 @@ name: "Update Artifacts File" description: "An action to update the artifacts file" inputs: scope: - description: "Scope or namespace for the Helm chart." + description: "Scope or namespace for the artifact." required: true repository: description: "Repository for the Helm Chart." From ebb5a1b3040b2b3139a97784dc99cfe937b32eef Mon Sep 17 00:00:00 2001 From: michalby24 Date: Wed, 9 Apr 2025 18:26:16 +0300 Subject: [PATCH 64/69] refactor(update-aartifacts-file): remove repository input --- .github/workflows/test-update-artifacts-file.yml | 1 - actions/update-artifacts-file/README.md | 1 - actions/update-artifacts-file/action.yaml | 5 ----- 3 files changed, 7 deletions(-) diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml index 4ce53819..23eca247 100644 --- a/.github/workflows/test-update-artifacts-file.yml +++ b/.github/workflows/test-update-artifacts-file.yml @@ -20,7 +20,6 @@ jobs: type: "docker" context: actions/update-artifacts-file domain: test - repository: ${{ github.repository }} artifact-name: "sftpgo" artifact-tag: "v2.0.2" registry: ${{ secrets.ACR_URL }} diff --git a/actions/update-artifacts-file/README.md b/actions/update-artifacts-file/README.md index fb8b34f2..69b02cab 100644 --- a/actions/update-artifacts-file/README.md +++ b/actions/update-artifacts-file/README.md @@ -17,7 +17,6 @@ This GitHub Action builds and publishes a Helm chart to a specified registry and | Name | Description | Required | Default | |------------------|-----------------------------------------------------------------------------|----------|-----------------| | `scope` | The directory name used as a logical scope for the artifact | βœ… Yes | | -| `repository` | GitHub repository that contains the `artifacts.json` file | ❌ No | Current repo | | `context` | Path to the directory containing the Helm chart and helper scripts | ❌ No | `./helm` | | `registry` | Registry URL the artifact is pushed to (e.g., ACR address) | βœ… Yes | | | `type` | Type of artifact (`helm`, `docker`, etc.) | βœ… Yes | | diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml index 3ee3d8bf..a49a39a9 100644 --- a/actions/update-artifacts-file/action.yaml +++ b/actions/update-artifacts-file/action.yaml @@ -4,10 +4,6 @@ inputs: scope: description: "Scope or namespace for the Helm chart." required: true - repository: - description: "Repository for the Helm Chart." - required: false - default: ${{ github.repository }} registry: description: "Registry to push the artifact to." required: true @@ -62,4 +58,3 @@ runs: ARTIFACT_TAG: ${{ inputs.artifact_tag }} TYPE: ${{ inputs.type }} GITHUB_TOKEN: ${{ inputs.github_token }} - REPOSITORY: ${{ inputs.repository }} From c0d589aced107e00caebde16a2692d97087a948d Mon Sep 17 00:00:00 2001 From: michalby24 Date: Sun, 20 Apr 2025 14:00:06 +0300 Subject: [PATCH 65/69] docs(actions): add workflows section --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index 096e28ba..1ff6a221 100644 --- a/README.md +++ b/README.md @@ -61,3 +61,36 @@ Each action has a dedicated folder with: |----------------|------------------------------------------------| | `slash-command`| Dispatch slash-command triggered workflows | | `postgis-check`| Test DB migrations and compatibility via PR comments | + +### slash-command + +The slash-command workflow enables users to trigger workflows by commenting commands such as /postgis-check on pull requests or issues. +It listens for new comments, detects if a command matches a preconfigured list, and dispatches the corresponding workflow using GitHub’s workflow_call event. +It passes essential metadata β€” like the pull request’s latest commit SHA, the comment timestamp, and the issue number β€” to the triggered workflow. + +If the command is invalid or dispatching fails, the workflow uses the peter-evans/create-or-update-comment +action to post a detailed error comment back to the thread. This provides contributors and maintainers an easy +way to trigger validation workflows on demand without pushing new code or rerunning entire CI pipelines. + +| Input | Description | +|----------------|------------------------------------------------| +| `head-sha`| The SHA of the commit to run the triggered workflow against (usually from the PR head) | + +### postgis-check +The postgis-check workflow is designed to verify database migrations and application compatibility across a matrix of PostgreSQL + PostGIS and Node.js versions. It's particularly useful for repositories with spatial data handling and migration scripts. + +When triggered (often via a slash command), the workflow first checks for supplied inputs like PostGIS versions and Node.js versions. +It then generates a matrix of all combinations to test. For each combination, it sets up a Docker container running the specified PostGIS version, +installs Node.js, installs dependencies, creates the target schema in the database, runs migration scripts, and executes integration tests. + +After the tests run, the workflow finds the original slash command comment in the PR thread and posts an update using the appropriate βœ… or ❌ emoji +to indicate success or failure. + +| Input | Description | +|----------------|------------------------------------------------| +| `head-sha` | The SHA to checkout and test | +| `issue-number` | The GitHub issue or PR number (used for commenting test results) | +| `comment-creation-date` | The timestamp of the original slash command comment | +| `versions` | (Optional) Comma-separated list of PostGIS versions to test (e.g., 14-3.3,15-3.5) | +| `node-versions` | (Optional) Comma-separated list of Node.js versions to test (default: 20.x) | +| `db-schema` | Schema name to create and apply migrations into | From ea3ce7aec8932421867e8d19a0819fab71c2399a Mon Sep 17 00:00:00 2001 From: michalby24 Date: Mon, 21 Apr 2025 11:28:24 +0300 Subject: [PATCH 66/69] style(update-artifacts-file): change scope to domain --- .github/workflows/test-update-artifacts-file.yml | 4 ++-- actions/update-artifacts-file/action.yaml | 8 ++++---- actions/update-artifacts-file/commit_changes.sh | 4 ++-- actions/update-artifacts-file/modify_artifacts.sh | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test-update-artifacts-file.yml b/.github/workflows/test-update-artifacts-file.yml index 23eca247..ce02b72c 100644 --- a/.github/workflows/test-update-artifacts-file.yml +++ b/.github/workflows/test-update-artifacts-file.yml @@ -20,7 +20,7 @@ jobs: type: "docker" context: actions/update-artifacts-file domain: test - artifact-name: "sftpgo" - artifact-tag: "v2.0.2" + artifact_name: "sftpgo" + artifact_tag: "v2.0.4" registry: ${{ secrets.ACR_URL }} github_token: ${{ secrets.GH_PAT }} diff --git a/actions/update-artifacts-file/action.yaml b/actions/update-artifacts-file/action.yaml index f0268c19..fee43aa3 100644 --- a/actions/update-artifacts-file/action.yaml +++ b/actions/update-artifacts-file/action.yaml @@ -1,8 +1,8 @@ name: "Update Artifacts File" description: "An action to update the artifacts file" inputs: - scope: - description: "Scope or namespace for the artifact." + domain: + description: "domain or namespace for the artifact." required: true registry: description: "Registry to push the artifact to." @@ -38,7 +38,7 @@ runs: run: ${{ inputs.context }}/modify_artifacts.sh shell: bash env: - SCOPE: ${{ inputs.scope }} + DOMAIN: ${{ inputs.domain }} ARTIFACT_NAME: ${{ inputs.artifact_name }} ARTIFACT_TAG: ${{ inputs.artifact_tag }} TYPE: ${{ inputs.type }} @@ -53,7 +53,7 @@ runs: run: ${{ inputs.context }}/commit_changes.sh shell: bash env: - SCOPE: ${{ inputs.scope }} + DOMAIN: ${{ inputs.domain }} ARTIFACT_NAME: ${{ inputs.artifact_name }} ARTIFACT_TAG: ${{ inputs.artifact_tag }} TYPE: ${{ inputs.type }} diff --git a/actions/update-artifacts-file/commit_changes.sh b/actions/update-artifacts-file/commit_changes.sh index c56c00eb..50a4ca72 100644 --- a/actions/update-artifacts-file/commit_changes.sh +++ b/actions/update-artifacts-file/commit_changes.sh @@ -1,11 +1,11 @@ #!/bin/bash -cd $SCOPE +cd $DOMAIN git config --global user.name "mapcolonies[bot]" git config --global user.email "devops[bot]@mapcolonies.com" git add . # Add "|| true" for not failing on this line 1 -git commit -m "chore: update artifacts.json for $SCOPE" -m "with $TYPE artifact: $ARTIFACT_NAME:$ARTIFACT_TAG" || true +git commit -m "chore: update artifacts.json for $DOMAIN" -m "with $TYPE artifact: $ARTIFACT_NAME:$ARTIFACT_TAG" || true success=false for ((i=1; i<=5; i++)); do diff --git a/actions/update-artifacts-file/modify_artifacts.sh b/actions/update-artifacts-file/modify_artifacts.sh index 48f4abcf..05c84892 100644 --- a/actions/update-artifacts-file/modify_artifacts.sh +++ b/actions/update-artifacts-file/modify_artifacts.sh @@ -1,15 +1,15 @@ #!/bin/bash # Check if the directory exists -if [ -d "$SCOPE" ]; then - path="$SCOPE/artifacts.json" +if [ -d "$DOMAIN" ]; then + path="$DOMAIN/artifacts.json" # Create a default empty JSON if the file doesn't exist [[ -f "$path" ]] || echo '{}' > "$path" # Ensure nested structure and assign artifact tag jq --arg type "$TYPE" \ --arg registry "$REGISTRY" \ - --arg key "${element}/$ARTIFACT_NAME" \ + --arg key "${DOMAIN}/$ARTIFACT_NAME" \ --arg tag "$ARTIFACT_TAG" \ '.[$type][$registry][$key] = $tag' "$path" > tmp.json && mv tmp.json "$path" else - echo "Directory $REPOSITORY/$SCOPE does not exist" + echo "Directory $REPOSITORY/$DOMAIN does not exist" fi From 7004bf183852478fc0f541988547a67f8ba6fd22 Mon Sep 17 00:00:00 2001 From: michalby24 <55047068+michalby24@users.noreply.github.com> Date: Tue, 22 Apr 2025 09:48:29 +0300 Subject: [PATCH 67/69] Update actions/update-artifacts-file/modify_artifacts.sh Co-authored-by: Shimon Cohen <33935191+shimoncohen@users.noreply.github.com> --- actions/update-artifacts-file/modify_artifacts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/update-artifacts-file/modify_artifacts.sh b/actions/update-artifacts-file/modify_artifacts.sh index 05c84892..645ad90a 100644 --- a/actions/update-artifacts-file/modify_artifacts.sh +++ b/actions/update-artifacts-file/modify_artifacts.sh @@ -11,5 +11,5 @@ if [ -d "$DOMAIN" ]; then --arg tag "$ARTIFACT_TAG" \ '.[$type][$registry][$key] = $tag' "$path" > tmp.json && mv tmp.json "$path" else - echo "Directory $REPOSITORY/$DOMAIN does not exist" + echo "Directory $REGISTRY/$DOMAIN does not exist" fi From 03669453a37937fca42f4f492a6d018205de33a5 Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 22 Apr 2025 11:22:24 +0300 Subject: [PATCH 68/69] ci(dependabot): add dependabot --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..2c2490ec --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 + +permissions: + contents: write + +updates: + - package-ecosystem: "github-actions" + directory: "/actions" + schedule: + interval: "weekly" + groups: + actions: + applies-to: "version-updates" + patterns: + - "*" From 9d4fb3dc43c0ee70be70aa91e2ca73157f0844ac Mon Sep 17 00:00:00 2001 From: michalby24 Date: Tue, 22 Apr 2025 15:48:19 +0300 Subject: [PATCH 69/69] ci(actions): adjust actions release version --- .release-please-manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f5c3aabb..15185e0d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -7,5 +7,5 @@ "actions/helm-lint": "1.0.0", "actions/openapi-lint": "1.0.0", "actions/update-artifacts-file": "1.0.0", - ".": "1.0.0" + ".": "6.0.0" }