mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
ci: Consistent NPM versions via Corepack (#20400)
* core: add .npmrc baseline to block dependency lifecycle scripts Set ignore-scripts=true at the repo root, plus engine-strict, save-exact, audit, and prefer-offline. This neutralizes the dominant npm supply-chain attack vector — postinstall scripts in transitive dependencies — at the cost of requiring an explicit rebuild for the handful of packages that legitimately need install scripts (esbuild, chromedriver, tree-sitter, tree-sitter-json). The next commit wires that rebuild into the Makefile. Co-Authored-By: Playpen Agent <279763771+playpen-agent@users.noreply.github.com> * core: route node installs through make to retire website preinstall hook Make docs-install depend on a new root-node-install so the root deps are guaranteed before the website install runs, removing the need for the website/preinstall lifecycle script. Rebuild the small audited list of trusted packages (esbuild, chromedriver, tree-sitter, tree-sitter-json) after the web install so ignore-scripts=true remains the only path that needs maintenance. web/README documents the new workflow. Co-Authored-By: Playpen Agent <279763771+playpen-agent@users.noreply.github.com> * Clean up install scripts. * Track .npmrc in CODEOWNERS * Fix formatter config. Reformat. * Fix mounted references. * Flesh out node scripts. * Bump engines. * Prep containers. * Update makefile. * Flesh out github actions. * Clean up docs container. * lint. Bump. Lint. Bump NPM version. * Add limits. * collapse the composite's three setup-node calls to one cache restore * Add SHA. * Bump NPM range. * Run formatter. * Bump NPM. * Remove extra install. * Fix website deps. * Use local prettier. Fix drift in CI. * ci: build frontend in CI with node_env production Signed-off-by: Jens Langhammer <jens@goauthentik.io> * Install docusaurus config. * Fix linter warning, order. * Add linter commands. * Add timeout. * Remove pre install check. --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: Playpen Agent <279763771+playpen-agent@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
@@ -0,0 +1,77 @@
|
|||||||
|
name: "Setup Node.js and NPM"
|
||||||
|
description: "Sets up Node.js with a specific NPM version via Corepack"
|
||||||
|
inputs:
|
||||||
|
working-directory:
|
||||||
|
description: "Path to the working directory containing the package.json file"
|
||||||
|
required: false
|
||||||
|
default: "."
|
||||||
|
dependencies:
|
||||||
|
required: false
|
||||||
|
description: "List of dependencies to setup"
|
||||||
|
default: "monorepo,working-directory"
|
||||||
|
node-version-file:
|
||||||
|
description: "Path to file containing the Node.js version"
|
||||||
|
required: false
|
||||||
|
default: "package.json"
|
||||||
|
cache-dependency-path:
|
||||||
|
description: "Path to dependency lock file for caching"
|
||||||
|
required: false
|
||||||
|
default: "package-lock.json"
|
||||||
|
cache:
|
||||||
|
description: "Package manager to cache"
|
||||||
|
default: "npm"
|
||||||
|
registry-url:
|
||||||
|
description: "npm registry URL"
|
||||||
|
default: "https://registry.npmjs.org"
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: "composite"
|
||||||
|
steps:
|
||||||
|
- name: Setup Node.js (Corepack bootstrap)
|
||||||
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4
|
||||||
|
with:
|
||||||
|
node-version-file: ${{ inputs.node-version-file }}
|
||||||
|
registry-url: ${{ inputs.registry-url }}
|
||||||
|
cache: ${{ inputs.cache }}
|
||||||
|
cache-dependency-path: |
|
||||||
|
${{ inputs.cache-dependency-path }}
|
||||||
|
${{ inputs.working-directory }}/${{ inputs.cache-dependency-path }}
|
||||||
|
|
||||||
|
- name: Install Corepack
|
||||||
|
working-directory: ${{ github.workspace}}
|
||||||
|
shell: bash
|
||||||
|
run: | #shell
|
||||||
|
node ./scripts/node/setup-corepack.mjs --force
|
||||||
|
corepack enable
|
||||||
|
- name: Lint Node.js and NPM versions
|
||||||
|
shell: bash
|
||||||
|
run: node ./scripts/node/lint-runtime.mjs
|
||||||
|
- name: Setup Node.js (Monorepo Root)
|
||||||
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4
|
||||||
|
with:
|
||||||
|
node-version-file: ${{ inputs.node-version-file }}
|
||||||
|
registry-url: ${{ inputs.registry-url }}
|
||||||
|
- name: Install monorepo dependencies
|
||||||
|
if: ${{ contains(inputs.dependencies, 'monorepo') }}
|
||||||
|
shell: bash
|
||||||
|
run: | #shell
|
||||||
|
node ./scripts/node/lint-lockfile.mjs
|
||||||
|
corepack npm ci
|
||||||
|
- name: Setup Node.js (Working Directory)
|
||||||
|
if: ${{ contains(inputs.dependencies, 'working-directory') }}
|
||||||
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4
|
||||||
|
with:
|
||||||
|
node-version-file: ${{ inputs.working-directory }}/${{ inputs.node-version-file }}
|
||||||
|
registry-url: ${{ inputs.registry-url }}
|
||||||
|
|
||||||
|
- name: Install working directory dependencies
|
||||||
|
if: ${{ contains(inputs.dependencies, 'working-directory') }}
|
||||||
|
shell: bash
|
||||||
|
run: | # shell
|
||||||
|
corepack install
|
||||||
|
|
||||||
|
echo "node version: $(node --version)"
|
||||||
|
echo "npm version: $(corepack npm --version)"
|
||||||
|
|
||||||
|
node ./scripts/node/lint-lockfile.mjs ${{ inputs.working-directory }}
|
||||||
|
corepack npm ci --prefix ${{ inputs.working-directory }}
|
||||||
@@ -67,27 +67,11 @@ runs:
|
|||||||
uses: taiki-e/install-action@ec28e287910af896fd98e04056d31fa68607e7ad # v2
|
uses: taiki-e/install-action@ec28e287910af896fd98e04056d31fa68607e7ad # v2
|
||||||
with:
|
with:
|
||||||
tool: cargo-deny cargo-machete cargo-llvm-cov nextest
|
tool: cargo-deny cargo-machete cargo-llvm-cov nextest
|
||||||
- name: Setup node (web)
|
- name: Setup node (root, web)
|
||||||
if: ${{ contains(inputs.dependencies, 'node') }}
|
if: ${{ contains(inputs.dependencies, 'node') }}
|
||||||
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4
|
uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: "${{ inputs.working-directory }}web/package.json"
|
working-directory: web
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: "${{ inputs.working-directory }}web/package-lock.json"
|
|
||||||
registry-url: "https://registry.npmjs.org"
|
|
||||||
- name: Setup node (root)
|
|
||||||
if: ${{ contains(inputs.dependencies, 'node') }}
|
|
||||||
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4
|
|
||||||
with:
|
|
||||||
node-version-file: "${{ inputs.working-directory }}package.json"
|
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: "${{ inputs.working-directory }}package-lock.json"
|
|
||||||
registry-url: "https://registry.npmjs.org"
|
|
||||||
- name: Install Node deps
|
|
||||||
if: ${{ contains(inputs.dependencies, 'node') }}
|
|
||||||
shell: bash
|
|
||||||
working-directory: ${{ inputs.working-directory }}
|
|
||||||
run: npm ci
|
|
||||||
- name: Setup go
|
- name: Setup go
|
||||||
if: ${{ contains(inputs.dependencies, 'go') }}
|
if: ${{ contains(inputs.dependencies, 'go') }}
|
||||||
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v5
|
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v5
|
||||||
@@ -105,7 +89,7 @@ runs:
|
|||||||
run: |
|
run: |
|
||||||
export PSQL_TAG=${{ inputs.postgresql_version }}
|
export PSQL_TAG=${{ inputs.postgresql_version }}
|
||||||
docker compose -f .github/actions/setup/compose.yml up -d --wait
|
docker compose -f .github/actions/setup/compose.yml up -d --wait
|
||||||
cd web && npm ci
|
corepack npm ci --prefix web
|
||||||
- name: Generate config
|
- name: Generate config
|
||||||
if: ${{ contains(inputs.dependencies, 'python') }}
|
if: ${{ contains(inputs.dependencies, 'python') }}
|
||||||
shell: uv run python {0}
|
shell: uv run python {0}
|
||||||
|
|||||||
@@ -67,6 +67,16 @@ jobs:
|
|||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- uses: ./.github/actions/setup-node
|
||||||
|
with:
|
||||||
|
working-directory: web
|
||||||
|
dependencies: "monorepo"
|
||||||
|
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
|
||||||
|
with:
|
||||||
|
go-version-file: "go.mod"
|
||||||
|
- name: Generate API Clients
|
||||||
|
run: |
|
||||||
|
make gen-client-ts
|
||||||
- name: Build Docker Image
|
- name: Build Docker Image
|
||||||
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
|
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
|
||||||
id: push
|
id: push
|
||||||
|
|||||||
@@ -22,25 +22,19 @@ jobs:
|
|||||||
- prettier-check
|
- prettier-check
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- name: Install Dependencies
|
- uses: ./.github/actions/setup-node
|
||||||
working-directory: website/
|
with:
|
||||||
run: npm ci
|
working-directory: website
|
||||||
- name: Lint
|
- name: Lint
|
||||||
working-directory: website/
|
run: corepack npm run ${{ matrix.command }} --prefix website
|
||||||
run: npm run ${{ matrix.command }}
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: website/package.json
|
working-directory: website
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: website/package-lock.json
|
|
||||||
- working-directory: website/
|
|
||||||
name: Install Dependencies
|
|
||||||
run: npm ci
|
|
||||||
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4
|
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
@@ -54,7 +48,7 @@ jobs:
|
|||||||
working-directory: website
|
working-directory: website
|
||||||
env:
|
env:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
run: npm run build -w api
|
run: corepack npm run build -w api
|
||||||
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
|
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
|
||||||
with:
|
with:
|
||||||
name: api-docs
|
name: api-docs
|
||||||
@@ -71,11 +65,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: api-docs
|
name: api-docs
|
||||||
path: website/api/build
|
path: website/api/build
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: website/package.json
|
working-directory: website
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: website/package-lock.json
|
|
||||||
- name: Deploy Netlify (Production)
|
- name: Deploy Netlify (Production)
|
||||||
working-directory: website/api
|
working-directory: website/api
|
||||||
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
||||||
|
|||||||
@@ -24,14 +24,9 @@ jobs:
|
|||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- name: Setup authentik env
|
- name: Setup authentik env
|
||||||
uses: ./.github/actions/setup
|
uses: ./.github/actions/setup
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: lifecycle/aws/package.json
|
working-directory: lifecycle/aws
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: lifecycle/aws/package-lock.json
|
|
||||||
- working-directory: lifecycle/aws/
|
|
||||||
run: |
|
|
||||||
npm ci
|
|
||||||
- name: Check changes have been applied
|
- name: Check changes have been applied
|
||||||
run: |
|
run: |
|
||||||
uv run make aws-cfn
|
uv run make aws-cfn
|
||||||
|
|||||||
@@ -24,46 +24,34 @@ jobs:
|
|||||||
- prettier-check
|
- prettier-check
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- name: Install dependencies
|
- uses: ./.github/actions/setup-node
|
||||||
working-directory: website/
|
with:
|
||||||
run: npm ci
|
working-directory: website
|
||||||
- name: Lint
|
- name: Lint
|
||||||
working-directory: website/
|
run: corepack npm run ${{ matrix.command }} --prefix website
|
||||||
run: npm run ${{ matrix.command }}
|
|
||||||
build-docs:
|
build-docs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
|
name: Setup Node.js
|
||||||
with:
|
with:
|
||||||
node-version-file: website/package.json
|
working-directory: website
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: website/package-lock.json
|
|
||||||
- working-directory: website/
|
|
||||||
name: Install Dependencies
|
|
||||||
run: npm ci
|
|
||||||
- name: Build Documentation via Docusaurus
|
- name: Build Documentation via Docusaurus
|
||||||
working-directory: website/
|
run: corepack npm run build --prefix website
|
||||||
run: npm run build
|
|
||||||
build-integrations:
|
build-integrations:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: website/package.json
|
working-directory: website
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: website/package-lock.json
|
|
||||||
- working-directory: website/
|
|
||||||
name: Install Dependencies
|
|
||||||
run: npm ci
|
|
||||||
- name: Build Integrations via Docusaurus
|
- name: Build Integrations via Docusaurus
|
||||||
working-directory: website/
|
run: corepack npm run build -w integrations --prefix website
|
||||||
run: npm run build -w integrations
|
|
||||||
build-container:
|
build-container:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
|
|||||||
@@ -109,8 +109,13 @@ jobs:
|
|||||||
- name: checkout stable
|
- name: checkout stable
|
||||||
run: |
|
run: |
|
||||||
set -e -o pipefail
|
set -e -o pipefail
|
||||||
|
|
||||||
cp -R .github ..
|
cp -R .github ..
|
||||||
cp -R scripts ..
|
cp -R scripts ..
|
||||||
|
|
||||||
|
mkdir -p ../packages
|
||||||
|
cp -R packages/logger-js ../packages/logger-js
|
||||||
|
|
||||||
# Previous stable tag
|
# Previous stable tag
|
||||||
prev_stable=$(git tag --sort=version:refname | grep '^version/' | grep -vE -- '-rc[0-9]+$' | tail -n1)
|
prev_stable=$(git tag --sort=version:refname | grep '^version/' | grep -vE -- '-rc[0-9]+$' | tail -n1)
|
||||||
# Current version family based on
|
# Current version family based on
|
||||||
@@ -118,10 +123,13 @@ jobs:
|
|||||||
if [[ -n $current_version_family ]]; then
|
if [[ -n $current_version_family ]]; then
|
||||||
prev_stable="version/${current_version_family}"
|
prev_stable="version/${current_version_family}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "::notice::Checking out ${prev_stable} as stable version..."
|
echo "::notice::Checking out ${prev_stable} as stable version..."
|
||||||
git checkout ${prev_stable}
|
git checkout ${prev_stable}
|
||||||
rm -rf .github/ scripts/
|
|
||||||
|
rm -rf .github/ scripts/ packages/logger-js/
|
||||||
mv ../.github ../scripts .
|
mv ../.github ../scripts .
|
||||||
|
mv ../packages/logger-js ./packages/
|
||||||
- name: Setup authentik env (stable)
|
- name: Setup authentik env (stable)
|
||||||
uses: ./.github/actions/setup
|
uses: ./.github/actions/setup
|
||||||
with:
|
with:
|
||||||
@@ -252,6 +260,7 @@ jobs:
|
|||||||
COMPOSE_PROFILES: ${{ matrix.job.profiles }}
|
COMPOSE_PROFILES: ${{ matrix.job.profiles }}
|
||||||
run: |
|
run: |
|
||||||
docker compose -f tests/e2e/compose.yml up -d --quiet-pull
|
docker compose -f tests/e2e/compose.yml up -d --quiet-pull
|
||||||
|
- uses: ./.github/actions/setup-node
|
||||||
- id: cache-web
|
- id: cache-web
|
||||||
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4
|
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4
|
||||||
if: contains(matrix.job.profiles, 'selenium')
|
if: contains(matrix.job.profiles, 'selenium')
|
||||||
@@ -261,10 +270,12 @@ jobs:
|
|||||||
- name: prepare web ui
|
- name: prepare web ui
|
||||||
if: steps.cache-web.outputs.cache-hit != 'true' && contains(matrix.job.profiles, 'selenium')
|
if: steps.cache-web.outputs.cache-hit != 'true' && contains(matrix.job.profiles, 'selenium')
|
||||||
working-directory: web
|
working-directory: web
|
||||||
|
env:
|
||||||
|
NODE_ENV: "production"
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
corepack npm ci
|
||||||
npm run build
|
corepack npm run build
|
||||||
npm run build:sfe
|
corepack npm run build:sfe
|
||||||
- name: run e2e
|
- name: run e2e
|
||||||
run: |
|
run: |
|
||||||
uv run coverage run manage.py test ${{ matrix.job.glob }}
|
uv run coverage run manage.py test ${{ matrix.job.glob }}
|
||||||
@@ -313,11 +324,12 @@ jobs:
|
|||||||
key: ${{ runner.os }}-web-${{ hashFiles('web/package-lock.json', 'web/src/**', 'web/packages/sfe/src/**') }}-b
|
key: ${{ runner.os }}-web-${{ hashFiles('web/package-lock.json', 'web/src/**', 'web/packages/sfe/src/**') }}-b
|
||||||
- name: prepare web ui
|
- name: prepare web ui
|
||||||
if: steps.cache-web.outputs.cache-hit != 'true'
|
if: steps.cache-web.outputs.cache-hit != 'true'
|
||||||
working-directory: web
|
env:
|
||||||
|
NODE_ENV: "production"
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
corepack npm ci --prefix web
|
||||||
npm run build
|
corepack npm run build --prefix web
|
||||||
npm run build:sfe
|
corepack npm run build:sfe --prefix web
|
||||||
- name: run conformance
|
- name: run conformance
|
||||||
run: |
|
run: |
|
||||||
uv run coverage run manage.py test ${{ matrix.job.glob }}
|
uv run coverage run manage.py test ${{ matrix.job.glob }}
|
||||||
|
|||||||
@@ -145,16 +145,11 @@ jobs:
|
|||||||
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
|
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
|
||||||
with:
|
with:
|
||||||
go-version-file: "go.mod"
|
go-version-file: "go.mod"
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: web/package.json
|
working-directory: web
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: web/package-lock.json
|
|
||||||
- name: Build web
|
- name: Build web
|
||||||
working-directory: web/
|
run: corepack npm run build-proxy --prefix web
|
||||||
run: |
|
|
||||||
npm ci
|
|
||||||
npm run build-proxy
|
|
||||||
- name: Build outpost
|
- name: Build outpost
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
|
|||||||
@@ -15,48 +15,34 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
timeout-minutes: 15
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
command:
|
|
||||||
- lint
|
|
||||||
- lint:lockfile
|
|
||||||
- tsc
|
|
||||||
- prettier-check
|
|
||||||
project:
|
|
||||||
- web
|
|
||||||
include:
|
|
||||||
- command: tsc
|
|
||||||
project: web
|
|
||||||
- command: lit-analyse
|
|
||||||
project: web
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: ${{ matrix.project }}/package.json
|
working-directory: web
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: ${{ matrix.project }}/package-lock.json
|
|
||||||
- working-directory: ${{ matrix.project }}/
|
|
||||||
run: |
|
|
||||||
npm ci
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
working-directory: ${{ matrix.project }}/
|
run: corepack npm run lint-check --prefix web
|
||||||
run: npm run ${{ matrix.command }}
|
- name: Check types
|
||||||
|
run: corepack npm run tsc --prefix web
|
||||||
|
- name: Check formatting
|
||||||
|
run: corepack npm run prettier-check --prefix web
|
||||||
|
- name: Lit analyse
|
||||||
|
run: corepack npm run lit-analyse --prefix web
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: web/package.json
|
working-directory: web
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: web/package-lock.json
|
|
||||||
- working-directory: web/
|
|
||||||
run: npm ci
|
|
||||||
- name: build
|
- name: build
|
||||||
|
env:
|
||||||
|
NODE_ENV: "production"
|
||||||
working-directory: web/
|
working-directory: web/
|
||||||
run: npm run build
|
run: corepack npm run build
|
||||||
ci-web-mark:
|
ci-web-mark:
|
||||||
if: always()
|
if: always()
|
||||||
needs:
|
needs:
|
||||||
@@ -71,15 +57,12 @@ jobs:
|
|||||||
needs:
|
needs:
|
||||||
- ci-web-mark
|
- ci-web-mark
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: web/package.json
|
working-directory: web
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: web/package-lock.json
|
|
||||||
- working-directory: web/
|
|
||||||
run: npm ci
|
|
||||||
- name: test
|
- name: test
|
||||||
working-directory: web/
|
working-directory: web/
|
||||||
run: npm run test || exit 0
|
run: corepack npm run test || exit 0
|
||||||
|
|||||||
@@ -35,22 +35,19 @@ jobs:
|
|||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
|
||||||
with:
|
with:
|
||||||
fetch-depth: 2
|
fetch-depth: 2
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: ${{ matrix.package }}/package.json
|
working-directory: ${{ matrix.package }}
|
||||||
registry-url: "https://registry.npmjs.org"
|
|
||||||
- name: Get changed files
|
- name: Get changed files
|
||||||
id: changed-files
|
id: changed-files
|
||||||
uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96 # 24d32ffd492484c1d75e0c0b894501ddb9d30d62
|
uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96 # 24d32ffd492484c1d75e0c0b894501ddb9d30d62
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
${{ matrix.package }}/package.json
|
${{ matrix.package }}/package.json
|
||||||
- name: Install Dependencies
|
|
||||||
run: npm ci
|
|
||||||
- name: Publish package
|
- name: Publish package
|
||||||
if: steps.changed-files.outputs.any_changed == 'true'
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
working-directory: ${{ matrix.package }}
|
working-directory: ${{ matrix.package }}
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
corepack npm ci
|
||||||
npm run build
|
corepack npm run build
|
||||||
npm publish
|
corepack npm publish
|
||||||
|
|||||||
@@ -87,11 +87,9 @@ jobs:
|
|||||||
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
|
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
|
||||||
with:
|
with:
|
||||||
go-version-file: "go.mod"
|
go-version-file: "go.mod"
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: web/package.json
|
working-directory: web
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: web/package-lock.json
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
|
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
@@ -151,15 +149,9 @@ jobs:
|
|||||||
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
|
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
|
||||||
with:
|
with:
|
||||||
go-version-file: "go.mod"
|
go-version-file: "go.mod"
|
||||||
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v5
|
- uses: ./.github/actions/setup-node
|
||||||
with:
|
with:
|
||||||
node-version-file: web/package.json
|
working-directory: web
|
||||||
cache: "npm"
|
|
||||||
cache-dependency-path: web/package-lock.json
|
|
||||||
- name: Install web dependencies
|
|
||||||
working-directory: web/
|
|
||||||
run: |
|
|
||||||
npm ci
|
|
||||||
- name: Build web
|
- name: Build web
|
||||||
working-directory: web/
|
working-directory: web/
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -27,8 +27,6 @@ jobs:
|
|||||||
exempt-issue-labels: pinned,security,pr_wanted,enhancement,bug/confirmed,enhancement/confirmed,question,status/reviewing
|
exempt-issue-labels: pinned,security,pr_wanted,enhancement,bug/confirmed,enhancement/confirmed,question,status/reviewing
|
||||||
stale-issue-label: status/stale
|
stale-issue-label: status/stale
|
||||||
stale-issue-message: >
|
stale-issue-message: >
|
||||||
This issue has been automatically marked as stale because it has not had
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
|
||||||
recent activity. It will be closed if no further activity occurs. Thank you
|
|
||||||
for your contributions.
|
|
||||||
# Don't stale PRs, so only apply to PRs with a non-existent label
|
# Don't stale PRs, so only apply to PRs with a non-existent label
|
||||||
only-pr-labels: foo
|
only-pr-labels: foo
|
||||||
|
|||||||
@@ -14,6 +14,8 @@ media
|
|||||||
# Node
|
# Node
|
||||||
|
|
||||||
node_modules
|
node_modules
|
||||||
|
corepack.tgz
|
||||||
|
.corepack
|
||||||
|
|
||||||
.cspellcache
|
.cspellcache
|
||||||
cspell-report.*
|
cspell-report.*
|
||||||
|
|||||||
Vendored
+3
@@ -20,6 +20,9 @@
|
|||||||
},
|
},
|
||||||
"todo-tree.tree.showCountsInTree": true,
|
"todo-tree.tree.showCountsInTree": true,
|
||||||
"todo-tree.tree.showBadges": true,
|
"todo-tree.tree.showBadges": true,
|
||||||
|
"yaml.format.printWidth": 200,
|
||||||
|
"yaml.format.singleQuote": true,
|
||||||
|
"yaml.format.bracketSpacing": false,
|
||||||
"yaml.customTags": [
|
"yaml.customTags": [
|
||||||
"!Condition sequence",
|
"!Condition sequence",
|
||||||
"!Context scalar",
|
"!Context scalar",
|
||||||
|
|||||||
@@ -106,8 +106,9 @@ migrate: ## Run the Authentik Django server's migrations
|
|||||||
|
|
||||||
i18n-extract: core-i18n-extract web-i18n-extract ## Extract strings that require translation into files to send to a translation service
|
i18n-extract: core-i18n-extract web-i18n-extract ## Extract strings that require translation into files to send to a translation service
|
||||||
|
|
||||||
aws-cfn:
|
aws-cfn: node-install
|
||||||
cd lifecycle/aws && npm i && $(UV) run npm run aws-cfn
|
corepack npm install --prefix lifecycle/aws
|
||||||
|
$(UV) run corepack npm run aws-cfn --prefix lifecycle/aws
|
||||||
|
|
||||||
run: ## Run the main authentik server and worker processes
|
run: ## Run the main authentik server and worker processes
|
||||||
$(UV) run ak allinone
|
$(UV) run ak allinone
|
||||||
@@ -235,44 +236,48 @@ gen-dev-config: ## Generate a local development config file
|
|||||||
# additions: each entry runs arbitrary code at install time.
|
# additions: each entry runs arbitrary code at install time.
|
||||||
TRUSTED_INSTALL_SCRIPTS := esbuild chromedriver tree-sitter tree-sitter-json
|
TRUSTED_INSTALL_SCRIPTS := esbuild chromedriver tree-sitter tree-sitter-json
|
||||||
|
|
||||||
node-install: ## Install the necessary libraries to build Node.js packages
|
node-preinstall: ## Install corepack and lint the runtime to ensure the correct Node.js version is being used before installing dependencies.
|
||||||
npm ci
|
node ./scripts/node/setup-corepack.mjs
|
||||||
|
node ./scripts/node/lint-runtime.mjs
|
||||||
|
|
||||||
|
node-install: node-preinstall ## Install the necessary libraries to build Node.js packages
|
||||||
|
corepack npm ci
|
||||||
|
|
||||||
#########################
|
#########################
|
||||||
## Web
|
## Web
|
||||||
#########################
|
#########################
|
||||||
|
|
||||||
web-install: ## Install the necessary libraries to build the Authentik UI
|
web-install: ## Install the necessary libraries to build the Authentik UI
|
||||||
npm ci --prefix web
|
corepack npm ci --prefix web
|
||||||
|
|
||||||
web-postinstall: ## Trigger postinstall scripts for packages with native bindings or binary downloads, which are blocked by default for security reasons.
|
web-postinstall: ## Trigger postinstall scripts for packages with native bindings or binary downloads, which are blocked by default for security reasons.
|
||||||
npm rebuild --prefix web --ignore-scripts=false --foreground-scripts $(TRUSTED_INSTALL_SCRIPTS)
|
corepack npm rebuild --prefix web --ignore-scripts=false --foreground-scripts $(TRUSTED_INSTALL_SCRIPTS)
|
||||||
|
|
||||||
web-build: node-install ## Build the Authentik UI
|
web-build: node-install ## Build the Authentik UI
|
||||||
npm run --prefix web build
|
corepack npm run --prefix web build
|
||||||
|
|
||||||
web: web-lint-fix web-lint web-check-compile ## Automatically fix formatting issues in the Authentik UI source code, lint the code, and compile it
|
web: web-lint-fix web-lint web-check-compile ## Automatically fix formatting issues in the Authentik UI source code, lint the code, and compile it
|
||||||
|
|
||||||
web-test: ## Run tests for the Authentik UI
|
web-test: ## Run tests for the Authentik UI
|
||||||
npm run --prefix web test
|
corepack npm run --prefix web test
|
||||||
|
|
||||||
web-watch: ## Build and watch the Authentik UI for changes, updating automatically
|
web-watch: ## Build and watch the Authentik UI for changes, updating automatically
|
||||||
npm run --prefix web watch
|
corepack npm run --prefix web watch
|
||||||
web-storybook-watch: ## Build and run the storybook documentation server
|
web-storybook-watch: ## Build and run the storybook documentation server
|
||||||
npm run --prefix web storybook
|
corepack npm run --prefix web storybook
|
||||||
|
|
||||||
web-lint-fix:
|
web-lint-fix:
|
||||||
npm run --prefix web prettier
|
corepack npm run --prefix web prettier
|
||||||
|
|
||||||
web-lint:
|
web-lint:
|
||||||
npm run --prefix web lint
|
corepack npm run --prefix web lint
|
||||||
npm run --prefix web lit-analyse
|
corepack npm run --prefix web lit-analyse
|
||||||
|
|
||||||
web-check-compile:
|
web-check-compile:
|
||||||
npm run --prefix web tsc
|
corepack npm run --prefix web tsc
|
||||||
|
|
||||||
web-i18n-extract:
|
web-i18n-extract:
|
||||||
npm run --prefix web extract-locales
|
corepack npm run --prefix web extract-locales
|
||||||
|
|
||||||
#########################
|
#########################
|
||||||
## Docs
|
## Docs
|
||||||
@@ -280,35 +285,36 @@ web-i18n-extract:
|
|||||||
|
|
||||||
docs: docs-lint-fix docs-build ## Automatically fix formatting issues in the Authentik docs source code, lint the code, and compile it
|
docs: docs-lint-fix docs-build ## Automatically fix formatting issues in the Authentik docs source code, lint the code, and compile it
|
||||||
|
|
||||||
docs-install: node-install
|
docs-install: node-install ## Install the necessary libraries to build the Authentik documentation
|
||||||
npm ci --prefix website
|
corepack npm ci --prefix website
|
||||||
|
|
||||||
docs-lint-fix: lint-spellcheck
|
docs-lint-fix: lint-spellcheck
|
||||||
npm run --prefix website prettier
|
corepack npm run --prefix website prettier
|
||||||
|
|
||||||
docs-build:
|
docs-build:
|
||||||
npm run --prefix website build
|
node ./scripts/node/lint-runtime.mjs website
|
||||||
|
corepack npm run --prefix website build
|
||||||
|
|
||||||
docs-watch: ## Build and watch the topics documentation
|
docs-watch: ## Build and watch the topics documentation
|
||||||
npm run --prefix website start
|
corepack npm run --prefix website start
|
||||||
|
|
||||||
integrations: docs-lint-fix integrations-build ## Fix formatting issues in the integrations source code, lint the code, and compile it
|
integrations: docs-lint-fix integrations-build ## Fix formatting issues in the integrations source code, lint the code, and compile it
|
||||||
|
|
||||||
integrations-build:
|
integrations-build:
|
||||||
npm run --prefix website -w integrations build
|
corepack npm run --prefix website -w integrations build
|
||||||
|
|
||||||
integrations-watch: ## Build and watch the Integrations documentation
|
integrations-watch: ## Build and watch the Integrations documentation
|
||||||
npm run --prefix website -w integrations start
|
corepack npm run --prefix website -w integrations start
|
||||||
|
|
||||||
docs-api-build:
|
docs-api-build:
|
||||||
npm run --prefix website -w api build
|
corepack npm run --prefix website -w api build
|
||||||
|
|
||||||
docs-api-watch: ## Build and watch the API documentation
|
docs-api-watch: ## Build and watch the API documentation
|
||||||
npm run --prefix website -w api generate
|
corepack npm run --prefix website -w api generate
|
||||||
npm run --prefix website -w api start
|
corepack npm run --prefix website -w api start
|
||||||
|
|
||||||
docs-api-clean: ## Clean generated API documentation
|
docs-api-clean: ## Clean generated API documentation
|
||||||
npm run --prefix website -w api build:api:clean
|
corepack npm run --prefix website -w api build:api:clean
|
||||||
|
|
||||||
#########################
|
#########################
|
||||||
## Docker
|
## Docker
|
||||||
|
|||||||
Generated
+2
-2
@@ -13,8 +13,8 @@
|
|||||||
"cross-env": "^10.1.0"
|
"cross-env": "^10.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20",
|
"node": ">=24",
|
||||||
"npm": ">=11.6.2"
|
"npm": ">=11.10.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@epic-web/invariant": {
|
"node_modules/@epic-web/invariant": {
|
||||||
|
|||||||
@@ -11,7 +11,20 @@
|
|||||||
"cross-env": "^10.1.0"
|
"cross-env": "^10.1.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20",
|
"node": ">=24",
|
||||||
"npm": ">=11.6.2"
|
"npm": ">=11.14.1"
|
||||||
}
|
},
|
||||||
|
"devEngines": {
|
||||||
|
"runtime": {
|
||||||
|
"name": "node",
|
||||||
|
"onFail": "warn",
|
||||||
|
"version": ">=24"
|
||||||
|
},
|
||||||
|
"packageManager": {
|
||||||
|
"name": "npm",
|
||||||
|
"version": ">=11.14.1",
|
||||||
|
"onFail": "warn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"packageManager": "npm@11.14.1+sha512.6a8a4d67478497a2dbc6815cad72e64c43f33413717e242756047d466241ab39bee61e691683a64658e94496ec5f1a1c05e4a5ec62dcc773280dfd949443a367"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,17 @@ ARG GIT_BUILD_HASH
|
|||||||
ENV GIT_BUILD_HASH=$GIT_BUILD_HASH
|
ENV GIT_BUILD_HASH=$GIT_BUILD_HASH
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
|
WORKDIR /work
|
||||||
|
|
||||||
|
RUN --mount=type=bind,target=/work/package.json,src=./package.json \
|
||||||
|
--mount=type=bind,target=/work/package-lock.json,src=./package-lock.json \
|
||||||
|
--mount=type=bind,target=/work/web/package.json,src=./web/package.json \
|
||||||
|
--mount=type=bind,target=/work/web/package-lock.json,src=./web/package-lock.json \
|
||||||
|
--mount=type=bind,target=/work/scripts/node/,src=./scripts/node/ \
|
||||||
|
--mount=type=bind,target=/work/packages/logger-js/,src=./packages/logger-js/ \
|
||||||
|
node ./scripts/node/setup-corepack.mjs --force && \
|
||||||
|
node ./scripts/node/lint-runtime.mjs ./web
|
||||||
|
|
||||||
WORKDIR /work/web
|
WORKDIR /work/web
|
||||||
|
|
||||||
# These files need to be copied and cannot be mounted as `npm ci` will build the client's typescript
|
# These files need to be copied and cannot be mounted as `npm ci` will build the client's typescript
|
||||||
@@ -18,7 +29,7 @@ RUN --mount=type=bind,target=/work/web/package.json,src=./web/package.json \
|
|||||||
--mount=type=bind,target=/work/web/packages/sfe/package.json,src=./web/packages/sfe/package.json \
|
--mount=type=bind,target=/work/web/packages/sfe/package.json,src=./web/packages/sfe/package.json \
|
||||||
--mount=type=bind,target=/work/web/scripts,src=./web/scripts \
|
--mount=type=bind,target=/work/web/scripts,src=./web/scripts \
|
||||||
--mount=type=cache,id=npm-ak,sharing=shared,target=/root/.npm \
|
--mount=type=cache,id=npm-ak,sharing=shared,target=/root/.npm \
|
||||||
npm ci
|
corepack npm ci
|
||||||
|
|
||||||
COPY ./package.json /work
|
COPY ./package.json /work
|
||||||
COPY ./web /work/web/
|
COPY ./web /work/web/
|
||||||
|
|||||||
@@ -10,12 +10,22 @@ WORKDIR /static
|
|||||||
COPY ./packages /packages
|
COPY ./packages /packages
|
||||||
COPY ./web/packages /static/packages
|
COPY ./web/packages /static/packages
|
||||||
|
|
||||||
|
RUN --mount=type=bind,target=/static/package.json,src=./package.json \
|
||||||
|
--mount=type=bind,target=/static/package-lock.json,src=./package-lock.json \
|
||||||
|
--mount=type=bind,target=/static/web/package.json,src=./web/package.json \
|
||||||
|
--mount=type=bind,target=/static/web/package-lock.json,src=./web/package-lock.json \
|
||||||
|
--mount=type=bind,target=/static/scripts/node/,src=./scripts/node/ \
|
||||||
|
--mount=type=bind,target=/static/packages/logger-js/,src=./packages/logger-js/ \
|
||||||
|
node ./scripts/node/setup-corepack.mjs --force && \
|
||||||
|
node ./scripts/node/lint-runtime.mjs ./web
|
||||||
|
|
||||||
COPY package.json /
|
COPY package.json /
|
||||||
|
|
||||||
RUN --mount=type=bind,target=/static/package.json,src=./web/package.json \
|
RUN --mount=type=bind,target=/static/package.json,src=./web/package.json \
|
||||||
--mount=type=bind,target=/static/package-lock.json,src=./web/package-lock.json \
|
--mount=type=bind,target=/static/package-lock.json,src=./web/package-lock.json \
|
||||||
--mount=type=bind,target=/static/scripts,src=./web/scripts \
|
--mount=type=bind,target=/static/scripts,src=./web/scripts \
|
||||||
--mount=type=cache,target=/root/.npm \
|
--mount=type=cache,target=/root/.npm \
|
||||||
npm ci
|
corepack npm ci
|
||||||
|
|
||||||
COPY web .
|
COPY web .
|
||||||
RUN npm run build-proxy
|
RUN npm run build-proxy
|
||||||
|
|||||||
Generated
+17619
-160
File diff suppressed because it is too large
Load Diff
+10
-9
@@ -3,9 +3,9 @@
|
|||||||
"version": "2026.8.0-rc1",
|
"version": "2026.8.0-rc1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "run-s lint:spellcheck lint:lockfile",
|
"lint": "run-s lint:runtime lint:spellcheck lint:lockfile",
|
||||||
"lint:lockfile": "echo 'Skipping lockfile linting'",
|
"lint:lockfile": "node ./scripts/node/lint-lockfile.mjs",
|
||||||
"lint:node": "echo 'Skipping node linting'",
|
"lint:runtime": "node ./scripts/node/lint-runtime.mjs",
|
||||||
"lint:spellcheck": "cspell . --config cspell.config.jsonc"
|
"lint:spellcheck": "cspell . --config cspell.config.jsonc"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
|
"@goauthentik/docusaurus-config": "./packages/docusaurus-config",
|
||||||
"@goauthentik/eslint-config": "./packages/eslint-config",
|
"@goauthentik/eslint-config": "./packages/eslint-config",
|
||||||
"@goauthentik/logger-js": "./packages/logger-js",
|
"@goauthentik/logger-js": "./packages/logger-js",
|
||||||
"@goauthentik/prettier-config": "./packages/prettier-config",
|
"@goauthentik/prettier-config": "./packages/prettier-config",
|
||||||
@@ -23,15 +24,15 @@
|
|||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
"pino-pretty": "^13.1.2",
|
"pino-pretty": "^13.1.2",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.0",
|
"prettier-plugin-packagejson": "^3.0.0",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"workspaces": [],
|
"workspaces": [],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -41,11 +42,11 @@
|
|||||||
},
|
},
|
||||||
"packageManager": {
|
"packageManager": {
|
||||||
"name": "npm",
|
"name": "npm",
|
||||||
"version": ">=11.10.1",
|
"version": ">=11.14.1",
|
||||||
"onFail": "warn"
|
"onFail": "warn"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"packageManager": "npm@11.11.0+sha512.f36811c4aae1fde639527368ae44c571d050006a608d67a191f195a801a52637a312d259186254aa3a3799b05335b7390539cf28656d18f0591a1125ba35f973",
|
"packageManager": "npm@11.14.1+sha512.6a8a4d67478497a2dbc6815cad72e64c43f33413717e242756047d466241ab39bee61e691683a64658e94496ec5f1a1c05e4a5ec62dcc773280dfd949443a367",
|
||||||
"prettier": "@goauthentik/prettier-config",
|
"prettier": "@goauthentik/prettier-config",
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"@typescript-eslint/eslint-plugin": {
|
"@typescript-eslint/eslint-plugin": {
|
||||||
|
|||||||
+783
-788
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/docusaurus-config",
|
"name": "@goauthentik/docusaurus-config",
|
||||||
"version": "2.7.0",
|
"version": "3.0.0",
|
||||||
"description": "authentik's Docusaurus config",
|
"description": "authentik's Docusaurus config",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -30,33 +30,33 @@
|
|||||||
"prism-react-renderer": "^2.4.1"
|
"prism-react-renderer": "^2.4.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@docusaurus/theme-common": "3.10.0",
|
"@docusaurus/theme-common": "^3.10.0",
|
||||||
"@docusaurus/theme-search-algolia": "^3.10.0",
|
"@docusaurus/theme-search-algolia": "^3.10.0",
|
||||||
"@docusaurus/types": "^3.10.0",
|
"@docusaurus/types": "^3.10.0",
|
||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/eslint-config": "../eslint-config",
|
"@goauthentik/eslint-config": "../eslint-config",
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.7.0",
|
||||||
"@types/react": "^19.2.14",
|
"@types/react": "^19.2.14",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@docusaurus/theme-common": "^3.9.2",
|
"@docusaurus/theme-common": "^3.10.1",
|
||||||
"@docusaurus/theme-search-algolia": "^3.9.2",
|
"@docusaurus/theme-search-algolia": "^3.10.1",
|
||||||
"@docusaurus/types": "^3.9.2",
|
"@docusaurus/types": "^3.10.1",
|
||||||
"react": ">=18",
|
"react": ">=19",
|
||||||
"react-dom": ">=18"
|
"react-dom": ">=19"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"react": ">=18",
|
"react": ">=19",
|
||||||
"react-dom": ">=18"
|
"react-dom": ">=19"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"./index.js",
|
"./index.js",
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
},
|
},
|
||||||
"packageManager": {
|
"packageManager": {
|
||||||
"name": "npm",
|
"name": "npm",
|
||||||
"version": ">=11.10.1",
|
"version": ">=11.14.1",
|
||||||
"onFail": "warn"
|
"onFail": "warn"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
+120
-120
@@ -17,20 +17,20 @@
|
|||||||
"@goauthentik/logger-js": "../logger-js",
|
"@goauthentik/logger-js": "../logger-js",
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.3.0",
|
"@types/node": "^25.7.0",
|
||||||
"esbuild": "^0.27.4",
|
"esbuild": "^0.27.4",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typedoc": "^0.28.18",
|
"typedoc": "^0.28.18",
|
||||||
"typedoc-plugin-markdown": "^4.11.0",
|
"typedoc-plugin-markdown": "^4.11.0",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@goauthentik/logger-js": "^1.0.1",
|
"@goauthentik/logger-js": "^1.0.1",
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
},
|
},
|
||||||
"../eslint-config": {
|
"../eslint-config": {
|
||||||
"name": "@goauthentik/eslint-config",
|
"name": "@goauthentik/eslint-config",
|
||||||
"version": "1.3.0",
|
"version": "2.0.0",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -52,26 +52,26 @@
|
|||||||
"eslint-plugin-import": "^2.32.0",
|
"eslint-plugin-import": "^2.32.0",
|
||||||
"eslint-plugin-lit": "^2.2.1",
|
"eslint-plugin-lit": "^2.2.1",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-hooks": "^7.0.1",
|
"eslint-plugin-react-hooks": "^7.1.1",
|
||||||
"eslint-plugin-wc": "^3.1.0"
|
"eslint-plugin-wc": "^3.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/eslint": "^9.6.1",
|
"@types/eslint": "^9.6.1",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.7.0",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": "^18.0.0 || ^19.0.0",
|
"react": "^18.0.0 || ^19.0.0",
|
||||||
"react-dom": "^18.0.0 || ^19.0.0",
|
"react-dom": "^18.0.0 || ^19.0.0",
|
||||||
"typescript": "^5.9.3 || ^6.0.2",
|
"typescript": "^6.0.3 || ^7.0.0",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
"react": {
|
"react": {
|
||||||
@@ -84,25 +84,25 @@
|
|||||||
},
|
},
|
||||||
"../logger-js": {
|
"../logger-js": {
|
||||||
"name": "@goauthentik/logger-js",
|
"name": "@goauthentik/logger-js",
|
||||||
"version": "1.1.1",
|
"version": "2.0.0",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.7.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
"pino-pretty": "^13.1.2",
|
"pino-pretty": "^13.1.2",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
},
|
},
|
||||||
"../prettier-config": {
|
"../prettier-config": {
|
||||||
"name": "@goauthentik/prettier-config",
|
"name": "@goauthentik/prettier-config",
|
||||||
"version": "3.5.0",
|
"version": "4.0.0",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -129,30 +129,30 @@
|
|||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/eslint-config": "../eslint-config",
|
"@goauthentik/eslint-config": "../eslint-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.0.0",
|
"@types/node": "^25.7.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2"
|
"prettier-plugin-packagejson": "^3.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"../tsconfig": {
|
"../tsconfig": {
|
||||||
"name": "@goauthentik/tsconfig",
|
"name": "@goauthentik/tsconfig",
|
||||||
"version": "1.0.8",
|
"version": "1.0.9",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@esbuild/aix-ppc64": {
|
"node_modules/@esbuild/aix-ppc64": {
|
||||||
@@ -904,13 +904,13 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "25.5.0",
|
"version": "25.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.7.0.tgz",
|
||||||
"integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==",
|
"integrity": "sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~7.18.0"
|
"undici-types": "~7.21.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/unist": {
|
"node_modules/@types/unist": {
|
||||||
@@ -921,20 +921,20 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.3.tgz",
|
||||||
"integrity": "sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w==",
|
"integrity": "sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/regexpp": "^4.12.2",
|
"@eslint-community/regexpp": "^4.12.2",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/type-utils": "8.57.2",
|
"@typescript-eslint/type-utils": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"ignore": "^7.0.5",
|
"ignore": "^7.0.5",
|
||||||
"natural-compare": "^1.4.0",
|
"natural-compare": "^1.4.0",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -944,9 +944,9 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@typescript-eslint/parser": "^8.57.2",
|
"@typescript-eslint/parser": "^8.59.3",
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
||||||
@@ -960,16 +960,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/parser": {
|
"node_modules/@typescript-eslint/parser": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.3.tgz",
|
||||||
"integrity": "sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA==",
|
"integrity": "sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -981,18 +981,18 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/project-service": {
|
"node_modules/@typescript-eslint/project-service": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.3.tgz",
|
||||||
"integrity": "sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==",
|
"integrity": "sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/tsconfig-utils": "^8.57.2",
|
"@typescript-eslint/tsconfig-utils": "^8.59.3",
|
||||||
"@typescript-eslint/types": "^8.57.2",
|
"@typescript-eslint/types": "^8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1003,18 +1003,18 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/scope-manager": {
|
"node_modules/@typescript-eslint/scope-manager": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.3.tgz",
|
||||||
"integrity": "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==",
|
"integrity": "sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2"
|
"@typescript-eslint/visitor-keys": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -1025,9 +1025,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/tsconfig-utils": {
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==",
|
"integrity": "sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1038,21 +1038,21 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/type-utils": {
|
"node_modules/@typescript-eslint/type-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg==",
|
"integrity": "sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -1063,13 +1063,13 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/types": {
|
"node_modules/@typescript-eslint/types": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.3.tgz",
|
||||||
"integrity": "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==",
|
"integrity": "sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1081,21 +1081,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree": {
|
"node_modules/@typescript-eslint/typescript-estree": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.3.tgz",
|
||||||
"integrity": "sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==",
|
"integrity": "sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/project-service": "8.57.2",
|
"@typescript-eslint/project-service": "8.59.3",
|
||||||
"@typescript-eslint/tsconfig-utils": "8.57.2",
|
"@typescript-eslint/tsconfig-utils": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"minimatch": "^10.2.2",
|
"minimatch": "^10.2.2",
|
||||||
"semver": "^7.7.3",
|
"semver": "^7.7.3",
|
||||||
"tinyglobby": "^0.2.15",
|
"tinyglobby": "^0.2.15",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -1105,7 +1105,7 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
||||||
@@ -1119,9 +1119,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
||||||
"version": "5.0.5",
|
"version": "5.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
||||||
"integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
|
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -1132,13 +1132,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
||||||
"version": "10.2.4",
|
"version": "10.2.5",
|
||||||
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
||||||
"integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
|
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "BlueOak-1.0.0",
|
"license": "BlueOak-1.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"brace-expansion": "^5.0.2"
|
"brace-expansion": "^5.0.5"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "18 || 20 || >=22"
|
"node": "18 || 20 || >=22"
|
||||||
@@ -1148,16 +1148,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/utils": {
|
"node_modules/@typescript-eslint/utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==",
|
"integrity": "sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/eslint-utils": "^4.9.1",
|
"@eslint-community/eslint-utils": "^4.9.1",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2"
|
"@typescript-eslint/typescript-estree": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -1168,17 +1168,17 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/visitor-keys": {
|
"node_modules/@typescript-eslint/visitor-keys": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.3.tgz",
|
||||||
"integrity": "sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==",
|
"integrity": "sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"eslint-visitor-keys": "^5.0.0"
|
"eslint-visitor-keys": "^5.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -2164,9 +2164,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/prettier": {
|
"node_modules/prettier": {
|
||||||
"version": "3.8.1",
|
"version": "3.8.3",
|
||||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.3.tgz",
|
||||||
"integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==",
|
"integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -2515,9 +2515,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript": {
|
"node_modules/typescript": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
|
||||||
"integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
|
"integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -2529,16 +2529,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript-eslint": {
|
"node_modules/typescript-eslint": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.3.tgz",
|
||||||
"integrity": "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A==",
|
"integrity": "sha512-KgusgyDgG4LI8Ih/sWaCtZ06tckLAS5CvT5A4D1Q7bYVoAAyzwiZvE4BmwDHkhRVkvhRBepKeASoFzQetha7Fg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "8.57.2",
|
"@typescript-eslint/eslint-plugin": "8.59.3",
|
||||||
"@typescript-eslint/parser": "8.57.2",
|
"@typescript-eslint/parser": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2"
|
"@typescript-eslint/utils": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -2549,7 +2549,7 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/uc.micro": {
|
"node_modules/uc.micro": {
|
||||||
@@ -2560,9 +2560,9 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/undici-types": {
|
"node_modules/undici-types": {
|
||||||
"version": "7.18.2",
|
"version": "7.21.0",
|
||||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.21.0.tgz",
|
||||||
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
|
"integrity": "sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -49,16 +49,16 @@
|
|||||||
"@goauthentik/logger-js": "../logger-js",
|
"@goauthentik/logger-js": "../logger-js",
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.3.0",
|
"@types/node": "^25.7.0",
|
||||||
"esbuild": "^0.27.4",
|
"esbuild": "^0.27.4",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typedoc": "^0.28.18",
|
"typedoc": "^0.28.18",
|
||||||
"typedoc-plugin-markdown": "^4.11.0",
|
"typedoc-plugin-markdown": "^4.11.0",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@goauthentik/logger-js": "^1.0.1",
|
"@goauthentik/logger-js": "^1.0.1",
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
},
|
},
|
||||||
"packageManager": {
|
"packageManager": {
|
||||||
"name": "npm",
|
"name": "npm",
|
||||||
"version": ">=11.10.1",
|
"version": ">=11.14.1",
|
||||||
"onFail": "warn"
|
"onFail": "warn"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Generated
+187
-134
@@ -1,38 +1,38 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/eslint-config",
|
"name": "@goauthentik/eslint-config",
|
||||||
"version": "1.3.0",
|
"version": "2.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@goauthentik/eslint-config",
|
"name": "@goauthentik/eslint-config",
|
||||||
"version": "1.3.0",
|
"version": "2.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"eslint-plugin-import": "^2.32.0",
|
"eslint-plugin-import": "^2.32.0",
|
||||||
"eslint-plugin-lit": "^2.2.1",
|
"eslint-plugin-lit": "^2.3.1",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-hooks": "^7.0.1",
|
"eslint-plugin-react-hooks": "^7.1.1",
|
||||||
"eslint-plugin-wc": "^3.1.0"
|
"eslint-plugin-wc": "^3.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/eslint": "^9.6.1",
|
"@types/eslint": "^9.6.1",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.7.0",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": "^18.0.0 || ^19.0.0",
|
"react": "^18.0.0 || ^19.0.0",
|
||||||
"react-dom": "^18.0.0 || ^19.0.0",
|
"react-dom": "^18.0.0 || ^19.0.0",
|
||||||
"typescript": "^5.9.3 || ^6.0.2",
|
"typescript": "^6.0.3 || ^7.0.0",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
"react": {
|
"react": {
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
},
|
},
|
||||||
"../prettier-config": {
|
"../prettier-config": {
|
||||||
"name": "@goauthentik/prettier-config",
|
"name": "@goauthentik/prettier-config",
|
||||||
"version": "3.5.0",
|
"version": "4.0.0",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -55,30 +55,30 @@
|
|||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/eslint-config": "../eslint-config",
|
"@goauthentik/eslint-config": "../eslint-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.0.0",
|
"@types/node": "^25.7.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2"
|
"prettier-plugin-packagejson": "^3.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"../tsconfig": {
|
"../tsconfig": {
|
||||||
"name": "@goauthentik/tsconfig",
|
"name": "@goauthentik/tsconfig",
|
||||||
"version": "1.0.8",
|
"version": "2.0.0",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@babel/code-frame": {
|
"node_modules/@babel/code-frame": {
|
||||||
@@ -576,30 +576,30 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "25.5.0",
|
"version": "25.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.7.0.tgz",
|
||||||
"integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==",
|
"integrity": "sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~7.18.0"
|
"undici-types": "~7.21.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.3.tgz",
|
||||||
"integrity": "sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w==",
|
"integrity": "sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/regexpp": "^4.12.2",
|
"@eslint-community/regexpp": "^4.12.2",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/type-utils": "8.57.2",
|
"@typescript-eslint/type-utils": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"ignore": "^7.0.5",
|
"ignore": "^7.0.5",
|
||||||
"natural-compare": "^1.4.0",
|
"natural-compare": "^1.4.0",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -609,9 +609,9 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@typescript-eslint/parser": "^8.57.2",
|
"@typescript-eslint/parser": "^8.59.3",
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
||||||
@@ -625,16 +625,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/parser": {
|
"node_modules/@typescript-eslint/parser": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.3.tgz",
|
||||||
"integrity": "sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA==",
|
"integrity": "sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -646,18 +646,18 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/project-service": {
|
"node_modules/@typescript-eslint/project-service": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.3.tgz",
|
||||||
"integrity": "sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==",
|
"integrity": "sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/tsconfig-utils": "^8.57.2",
|
"@typescript-eslint/tsconfig-utils": "^8.59.3",
|
||||||
"@typescript-eslint/types": "^8.57.2",
|
"@typescript-eslint/types": "^8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -668,18 +668,18 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/scope-manager": {
|
"node_modules/@typescript-eslint/scope-manager": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.3.tgz",
|
||||||
"integrity": "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==",
|
"integrity": "sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2"
|
"@typescript-eslint/visitor-keys": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -690,9 +690,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/tsconfig-utils": {
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==",
|
"integrity": "sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -703,21 +703,21 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/type-utils": {
|
"node_modules/@typescript-eslint/type-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg==",
|
"integrity": "sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -728,13 +728,13 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/types": {
|
"node_modules/@typescript-eslint/types": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.3.tgz",
|
||||||
"integrity": "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==",
|
"integrity": "sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -746,21 +746,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree": {
|
"node_modules/@typescript-eslint/typescript-estree": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.3.tgz",
|
||||||
"integrity": "sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==",
|
"integrity": "sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/project-service": "8.57.2",
|
"@typescript-eslint/project-service": "8.59.3",
|
||||||
"@typescript-eslint/tsconfig-utils": "8.57.2",
|
"@typescript-eslint/tsconfig-utils": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"minimatch": "^10.2.2",
|
"minimatch": "^10.2.2",
|
||||||
"semver": "^7.7.3",
|
"semver": "^7.7.3",
|
||||||
"tinyglobby": "^0.2.15",
|
"tinyglobby": "^0.2.15",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -770,7 +770,7 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
||||||
@@ -784,9 +784,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
||||||
"version": "5.0.5",
|
"version": "5.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
||||||
"integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
|
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -797,13 +797,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
||||||
"version": "10.2.4",
|
"version": "10.2.5",
|
||||||
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
||||||
"integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
|
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "BlueOak-1.0.0",
|
"license": "BlueOak-1.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"brace-expansion": "^5.0.2"
|
"brace-expansion": "^5.0.5"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "18 || 20 || >=22"
|
"node": "18 || 20 || >=22"
|
||||||
@@ -813,9 +813,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
||||||
"version": "7.7.4",
|
"version": "7.8.0",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz",
|
||||||
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
"integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -826,16 +826,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/utils": {
|
"node_modules/@typescript-eslint/utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==",
|
"integrity": "sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/eslint-utils": "^4.9.1",
|
"@eslint-community/eslint-utils": "^4.9.1",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2"
|
"@typescript-eslint/typescript-estree": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -846,17 +846,17 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/visitor-keys": {
|
"node_modules/@typescript-eslint/visitor-keys": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.3.tgz",
|
||||||
"integrity": "sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==",
|
"integrity": "sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"eslint-visitor-keys": "^5.0.0"
|
"eslint-visitor-keys": "^5.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1431,6 +1431,37 @@
|
|||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/domelementtype": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-umCQid3jKbDmVjx8jGaW7uUykm4DEUeyV21hPxNMo2nV955DhUThwqyOIDtreepP31hl84X7G5U9ZfsWvIB3Pg==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/fb55"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/domhandler": {
|
||||||
|
"version": "6.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-6.0.1.tgz",
|
||||||
|
"integrity": "sha512-gYzvtM72ZtxQO0T048kd6HWSbbGCNOUwcnfQ01cqIJ4X2IYKFFHZ5mKvrQETcFXxsRObZulDaKmy//R7TPtsBg==",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"dependencies": {
|
||||||
|
"domelementtype": "^3.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/fb55/domhandler?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/dunder-proto": {
|
"node_modules/dunder-proto": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
||||||
@@ -1451,6 +1482,18 @@
|
|||||||
"integrity": "sha512-PwfIw7WQSt3xX7yOf5OE/unLzsK9CaN2f/FvV3WjPR1Knoc1T9vePRVV4W1EM301JzzysK51K7FNKcusCr0zYA==",
|
"integrity": "sha512-PwfIw7WQSt3xX7yOf5OE/unLzsK9CaN2f/FvV3WjPR1Knoc1T9vePRVV4W1EM301JzzysK51K7FNKcusCr0zYA==",
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
|
"node_modules/entities": {
|
||||||
|
"version": "8.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz",
|
||||||
|
"integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/fb55/entities?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/es-abstract": {
|
"node_modules/es-abstract": {
|
||||||
"version": "1.24.1",
|
"version": "1.24.1",
|
||||||
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz",
|
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz",
|
||||||
@@ -1790,13 +1833,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint-plugin-lit": {
|
"node_modules/eslint-plugin-lit": {
|
||||||
"version": "2.2.1",
|
"version": "2.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-lit/-/eslint-plugin-lit-2.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-lit/-/eslint-plugin-lit-2.3.1.tgz",
|
||||||
"integrity": "sha512-mnqqwpWF4PBF/YjlGt9mbHwrWCGMtaqdpnqISv3nGcTl8iStaAt9UGieMY3i8vwKfSSWtkEfBZUcRKFGys6yiw==",
|
"integrity": "sha512-wAqDOOWQzUoY5uK124ZR+h7Snx0+KdZd3Knv6133gRHEcu03jbqnouK4GBwVl6PkGOkNy40zSchOp9VbBh4yHg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"parse5": "^6.0.1",
|
"parse5": "^8.0.1",
|
||||||
"parse5-htmlparser2-tree-adapter": "^6.0.1"
|
"parse5-htmlparser2-tree-adapter": "^8.0.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 18"
|
"node": ">= 18"
|
||||||
@@ -1838,9 +1881,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint-plugin-react-hooks": {
|
"node_modules/eslint-plugin-react-hooks": {
|
||||||
"version": "7.0.1",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz",
|
||||||
"integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==",
|
"integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/core": "^7.24.4",
|
"@babel/core": "^7.24.4",
|
||||||
@@ -1853,7 +1896,7 @@
|
|||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
|
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint-plugin-react/node_modules/resolve": {
|
"node_modules/eslint-plugin-react/node_modules/resolve": {
|
||||||
@@ -3194,18 +3237,28 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/parse5": {
|
"node_modules/parse5": {
|
||||||
"version": "6.0.1",
|
"version": "8.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz",
|
||||||
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
|
"integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==",
|
||||||
"license": "MIT"
|
|
||||||
},
|
|
||||||
"node_modules/parse5-htmlparser2-tree-adapter": {
|
|
||||||
"version": "6.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz",
|
|
||||||
"integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"parse5": "^6.0.1"
|
"entities": "^8.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/parse5-htmlparser2-tree-adapter": {
|
||||||
|
"version": "8.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-8.0.1.tgz",
|
||||||
|
"integrity": "sha512-aqkH+xQxX+QGZtP5GIMmqqp16Y0v9muEf2VVeypv35kFsD5bqP1UeBanSshdfjMY+RTh2vN4mmK6nEOVRMEvHg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"domhandler": "^6.0.1",
|
||||||
|
"parse5": "^8.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/path-exists": {
|
"node_modules/path-exists": {
|
||||||
@@ -3718,14 +3771,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/tinyglobby": {
|
"node_modules/tinyglobby": {
|
||||||
"version": "0.2.15",
|
"version": "0.2.16",
|
||||||
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
|
||||||
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
"integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"fdir": "^6.5.0",
|
"fdir": "^6.5.0",
|
||||||
"picomatch": "^4.0.3"
|
"picomatch": "^4.0.4"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12.0.0"
|
"node": ">=12.0.0"
|
||||||
@@ -3858,9 +3911,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript": {
|
"node_modules/typescript": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
|
||||||
"integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
|
"integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -3872,16 +3925,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript-eslint": {
|
"node_modules/typescript-eslint": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.3.tgz",
|
||||||
"integrity": "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A==",
|
"integrity": "sha512-KgusgyDgG4LI8Ih/sWaCtZ06tckLAS5CvT5A4D1Q7bYVoAAyzwiZvE4BmwDHkhRVkvhRBepKeASoFzQetha7Fg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "8.57.2",
|
"@typescript-eslint/eslint-plugin": "8.59.3",
|
||||||
"@typescript-eslint/parser": "8.57.2",
|
"@typescript-eslint/parser": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2"
|
"@typescript-eslint/utils": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -3892,7 +3945,7 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/unbox-primitive": {
|
"node_modules/unbox-primitive": {
|
||||||
@@ -3914,9 +3967,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/undici-types": {
|
"node_modules/undici-types": {
|
||||||
"version": "7.18.2",
|
"version": "7.21.0",
|
||||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.21.0.tgz",
|
||||||
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
|
"integrity": "sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/eslint-config",
|
"name": "@goauthentik/eslint-config",
|
||||||
"version": "1.3.0",
|
"version": "2.0.0",
|
||||||
"description": "authentik's ESLint config",
|
"description": "authentik's ESLint config",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -39,24 +39,24 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"eslint-plugin-import": "^2.32.0",
|
"eslint-plugin-import": "^2.32.0",
|
||||||
"eslint-plugin-lit": "^2.2.1",
|
"eslint-plugin-lit": "^2.3.1",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-hooks": "^7.0.1",
|
"eslint-plugin-react-hooks": "^7.1.1",
|
||||||
"eslint-plugin-wc": "^3.1.0"
|
"eslint-plugin-wc": "^3.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/eslint": "^9.6.1",
|
"@types/eslint": "^9.6.1",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.7.0",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": "^18.0.0 || ^19.0.0",
|
"react": "^18.0.0 || ^19.0.0",
|
||||||
"react-dom": "^18.0.0 || ^19.0.0",
|
"react-dom": "^18.0.0 || ^19.0.0",
|
||||||
"typescript": "^5.9.3 || ^6.0.2",
|
"typescript": "^6.0.3 || ^7.0.0",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"./index.js",
|
"./index.js",
|
||||||
@@ -65,7 +65,7 @@
|
|||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
},
|
},
|
||||||
"packageManager": {
|
"packageManager": {
|
||||||
"name": "npm",
|
"name": "npm",
|
||||||
"version": ">=11.10.1",
|
"version": ">=11.14.1",
|
||||||
"onFail": "warn"
|
"onFail": "warn"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Generated
+108
-108
@@ -1,29 +1,29 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/logger-js",
|
"name": "@goauthentik/logger-js",
|
||||||
"version": "1.1.2",
|
"version": "2.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@goauthentik/logger-js",
|
"name": "@goauthentik/logger-js",
|
||||||
"version": "1.1.2",
|
"version": "2.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.7.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
"pino-pretty": "^13.1.2",
|
"pino-pretty": "^13.1.2",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
},
|
},
|
||||||
"../prettier-config": {
|
"../prettier-config": {
|
||||||
"name": "@goauthentik/prettier-config",
|
"name": "@goauthentik/prettier-config",
|
||||||
"version": "3.5.0",
|
"version": "4.0.0",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -50,30 +50,30 @@
|
|||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/eslint-config": "../eslint-config",
|
"@goauthentik/eslint-config": "../eslint-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.0.0",
|
"@types/node": "^25.7.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2"
|
"prettier-plugin-packagejson": "^3.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"../tsconfig": {
|
"../tsconfig": {
|
||||||
"name": "@goauthentik/tsconfig",
|
"name": "@goauthentik/tsconfig",
|
||||||
"version": "1.0.9",
|
"version": "2.0.0",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@eslint-community/eslint-utils": {
|
"node_modules/@eslint-community/eslint-utils": {
|
||||||
@@ -361,30 +361,30 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "25.5.0",
|
"version": "25.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.7.0.tgz",
|
||||||
"integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==",
|
"integrity": "sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~7.18.0"
|
"undici-types": "~7.21.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.3.tgz",
|
||||||
"integrity": "sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w==",
|
"integrity": "sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/regexpp": "^4.12.2",
|
"@eslint-community/regexpp": "^4.12.2",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/type-utils": "8.57.2",
|
"@typescript-eslint/type-utils": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"ignore": "^7.0.5",
|
"ignore": "^7.0.5",
|
||||||
"natural-compare": "^1.4.0",
|
"natural-compare": "^1.4.0",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -394,22 +394,22 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@typescript-eslint/parser": "^8.57.2",
|
"@typescript-eslint/parser": "^8.59.3",
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/parser": {
|
"node_modules/@typescript-eslint/parser": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.3.tgz",
|
||||||
"integrity": "sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA==",
|
"integrity": "sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -421,18 +421,18 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/project-service": {
|
"node_modules/@typescript-eslint/project-service": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.3.tgz",
|
||||||
"integrity": "sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==",
|
"integrity": "sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/tsconfig-utils": "^8.57.2",
|
"@typescript-eslint/tsconfig-utils": "^8.59.3",
|
||||||
"@typescript-eslint/types": "^8.57.2",
|
"@typescript-eslint/types": "^8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -443,18 +443,18 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/scope-manager": {
|
"node_modules/@typescript-eslint/scope-manager": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.3.tgz",
|
||||||
"integrity": "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==",
|
"integrity": "sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2"
|
"@typescript-eslint/visitor-keys": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -465,9 +465,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/tsconfig-utils": {
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==",
|
"integrity": "sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -478,21 +478,21 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/type-utils": {
|
"node_modules/@typescript-eslint/type-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg==",
|
"integrity": "sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -503,13 +503,13 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/types": {
|
"node_modules/@typescript-eslint/types": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.3.tgz",
|
||||||
"integrity": "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==",
|
"integrity": "sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -521,21 +521,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree": {
|
"node_modules/@typescript-eslint/typescript-estree": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.3.tgz",
|
||||||
"integrity": "sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==",
|
"integrity": "sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/project-service": "8.57.2",
|
"@typescript-eslint/project-service": "8.59.3",
|
||||||
"@typescript-eslint/tsconfig-utils": "8.57.2",
|
"@typescript-eslint/tsconfig-utils": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"minimatch": "^10.2.2",
|
"minimatch": "^10.2.2",
|
||||||
"semver": "^7.7.3",
|
"semver": "^7.7.3",
|
||||||
"tinyglobby": "^0.2.15",
|
"tinyglobby": "^0.2.15",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -545,20 +545,20 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/utils": {
|
"node_modules/@typescript-eslint/utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==",
|
"integrity": "sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/eslint-utils": "^4.9.1",
|
"@eslint-community/eslint-utils": "^4.9.1",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2"
|
"@typescript-eslint/typescript-estree": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -569,17 +569,17 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/visitor-keys": {
|
"node_modules/@typescript-eslint/visitor-keys": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.3.tgz",
|
||||||
"integrity": "sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==",
|
"integrity": "sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"eslint-visitor-keys": "^5.0.0"
|
"eslint-visitor-keys": "^5.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -687,9 +687,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/brace-expansion": {
|
"node_modules/brace-expansion": {
|
||||||
"version": "5.0.5",
|
"version": "5.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
||||||
"integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
|
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -1409,13 +1409,13 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/minimatch": {
|
"node_modules/minimatch": {
|
||||||
"version": "10.2.4",
|
"version": "10.2.5",
|
||||||
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
||||||
"integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
|
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "BlueOak-1.0.0",
|
"license": "BlueOak-1.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"brace-expansion": "^5.0.2"
|
"brace-expansion": "^5.0.5"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "18 || 20 || >=22"
|
"node": "18 || 20 || >=22"
|
||||||
@@ -1653,9 +1653,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/prettier": {
|
"node_modules/prettier": {
|
||||||
"version": "3.8.1",
|
"version": "3.8.3",
|
||||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.3.tgz",
|
||||||
"integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==",
|
"integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -1946,9 +1946,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript": {
|
"node_modules/typescript": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
|
||||||
"integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
|
"integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -1960,16 +1960,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript-eslint": {
|
"node_modules/typescript-eslint": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.3.tgz",
|
||||||
"integrity": "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A==",
|
"integrity": "sha512-KgusgyDgG4LI8Ih/sWaCtZ06tckLAS5CvT5A4D1Q7bYVoAAyzwiZvE4BmwDHkhRVkvhRBepKeASoFzQetha7Fg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "8.57.2",
|
"@typescript-eslint/eslint-plugin": "8.59.3",
|
||||||
"@typescript-eslint/parser": "8.57.2",
|
"@typescript-eslint/parser": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2"
|
"@typescript-eslint/utils": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -1980,13 +1980,13 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/undici-types": {
|
"node_modules/undici-types": {
|
||||||
"version": "7.18.2",
|
"version": "7.21.0",
|
||||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.21.0.tgz",
|
||||||
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
|
"integrity": "sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/logger-js",
|
"name": "@goauthentik/logger-js",
|
||||||
"version": "1.1.2",
|
"version": "2.0.0",
|
||||||
"description": "Pino-based logger for authentik",
|
"description": "Pino-based logger for authentik",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -31,14 +31,14 @@
|
|||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.7.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
"pino-pretty": "^13.1.2",
|
"pino-pretty": "^13.1.2",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"pino": "^10.3.1",
|
"pino": "^10.3.1",
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
},
|
},
|
||||||
"packageManager": {
|
"packageManager": {
|
||||||
"name": "npm",
|
"name": "npm",
|
||||||
"version": ">=11.10.1",
|
"version": ">=11.14.1",
|
||||||
"onFail": "ignore"
|
"onFail": "ignore"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
+110
-110
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/prettier-config",
|
"name": "@goauthentik/prettier-config",
|
||||||
"version": "3.5.0",
|
"version": "4.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@goauthentik/prettier-config",
|
"name": "@goauthentik/prettier-config",
|
||||||
"version": "3.5.0",
|
"version": "4.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"format-imports": "^4.0.8"
|
"format-imports": "^4.0.8"
|
||||||
@@ -15,25 +15,25 @@
|
|||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/eslint-config": "../eslint-config",
|
"@goauthentik/eslint-config": "../eslint-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.0.0",
|
"@types/node": "^25.7.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2"
|
"prettier-plugin-packagejson": "^3.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"../eslint-config": {
|
"../eslint-config": {
|
||||||
"name": "@goauthentik/eslint-config",
|
"name": "@goauthentik/eslint-config",
|
||||||
"version": "1.3.0",
|
"version": "2.0.0",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -41,26 +41,26 @@
|
|||||||
"eslint-plugin-import": "^2.32.0",
|
"eslint-plugin-import": "^2.32.0",
|
||||||
"eslint-plugin-lit": "^2.2.1",
|
"eslint-plugin-lit": "^2.2.1",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-hooks": "^7.0.1",
|
"eslint-plugin-react-hooks": "^7.1.1",
|
||||||
"eslint-plugin-wc": "^3.1.0"
|
"eslint-plugin-wc": "^3.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@goauthentik/prettier-config": "../prettier-config",
|
"@goauthentik/prettier-config": "../prettier-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/eslint": "^9.6.1",
|
"@types/eslint": "^9.6.1",
|
||||||
"@types/node": "^25.3.0",
|
"@types/node": "^25.7.0",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": "^18.0.0 || ^19.0.0",
|
"react": "^18.0.0 || ^19.0.0",
|
||||||
"react-dom": "^18.0.0 || ^19.0.0",
|
"react-dom": "^18.0.0 || ^19.0.0",
|
||||||
"typescript": "^5.9.3 || ^6.0.2",
|
"typescript": "^6.0.3 || ^7.0.0",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
"react": {
|
"react": {
|
||||||
@@ -73,12 +73,12 @@
|
|||||||
},
|
},
|
||||||
"../tsconfig": {
|
"../tsconfig": {
|
||||||
"name": "@goauthentik/tsconfig",
|
"name": "@goauthentik/tsconfig",
|
||||||
"version": "1.0.8",
|
"version": "1.0.9",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@babel/helper-string-parser": {
|
"node_modules/@babel/helper-string-parser": {
|
||||||
@@ -382,30 +382,30 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "25.5.0",
|
"version": "25.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.7.0.tgz",
|
||||||
"integrity": "sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==",
|
"integrity": "sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~7.18.0"
|
"undici-types": "~7.21.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.3.tgz",
|
||||||
"integrity": "sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w==",
|
"integrity": "sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/regexpp": "^4.12.2",
|
"@eslint-community/regexpp": "^4.12.2",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/type-utils": "8.57.2",
|
"@typescript-eslint/type-utils": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"ignore": "^7.0.5",
|
"ignore": "^7.0.5",
|
||||||
"natural-compare": "^1.4.0",
|
"natural-compare": "^1.4.0",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -415,9 +415,9 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@typescript-eslint/parser": "^8.57.2",
|
"@typescript-eslint/parser": "^8.59.3",
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
||||||
@@ -431,16 +431,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/parser": {
|
"node_modules/@typescript-eslint/parser": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.3.tgz",
|
||||||
"integrity": "sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA==",
|
"integrity": "sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -452,18 +452,18 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/project-service": {
|
"node_modules/@typescript-eslint/project-service": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.3.tgz",
|
||||||
"integrity": "sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==",
|
"integrity": "sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/tsconfig-utils": "^8.57.2",
|
"@typescript-eslint/tsconfig-utils": "^8.59.3",
|
||||||
"@typescript-eslint/types": "^8.57.2",
|
"@typescript-eslint/types": "^8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -474,18 +474,18 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/scope-manager": {
|
"node_modules/@typescript-eslint/scope-manager": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.3.tgz",
|
||||||
"integrity": "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==",
|
"integrity": "sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2"
|
"@typescript-eslint/visitor-keys": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -496,9 +496,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/tsconfig-utils": {
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==",
|
"integrity": "sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -509,21 +509,21 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/type-utils": {
|
"node_modules/@typescript-eslint/type-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg==",
|
"integrity": "sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -534,13 +534,13 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/types": {
|
"node_modules/@typescript-eslint/types": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.3.tgz",
|
||||||
"integrity": "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==",
|
"integrity": "sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -552,21 +552,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree": {
|
"node_modules/@typescript-eslint/typescript-estree": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.3.tgz",
|
||||||
"integrity": "sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==",
|
"integrity": "sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/project-service": "8.57.2",
|
"@typescript-eslint/project-service": "8.59.3",
|
||||||
"@typescript-eslint/tsconfig-utils": "8.57.2",
|
"@typescript-eslint/tsconfig-utils": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"minimatch": "^10.2.2",
|
"minimatch": "^10.2.2",
|
||||||
"semver": "^7.7.3",
|
"semver": "^7.7.3",
|
||||||
"tinyglobby": "^0.2.15",
|
"tinyglobby": "^0.2.15",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -576,7 +576,7 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
||||||
@@ -590,9 +590,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
||||||
"version": "5.0.5",
|
"version": "5.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
||||||
"integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
|
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -603,13 +603,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
||||||
"version": "10.2.4",
|
"version": "10.2.5",
|
||||||
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
||||||
"integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
|
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "BlueOak-1.0.0",
|
"license": "BlueOak-1.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"brace-expansion": "^5.0.2"
|
"brace-expansion": "^5.0.5"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "18 || 20 || >=22"
|
"node": "18 || 20 || >=22"
|
||||||
@@ -619,16 +619,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/utils": {
|
"node_modules/@typescript-eslint/utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==",
|
"integrity": "sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/eslint-utils": "^4.9.1",
|
"@eslint-community/eslint-utils": "^4.9.1",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2"
|
"@typescript-eslint/typescript-estree": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -639,17 +639,17 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/visitor-keys": {
|
"node_modules/@typescript-eslint/visitor-keys": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.3.tgz",
|
||||||
"integrity": "sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==",
|
"integrity": "sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"eslint-visitor-keys": "^5.0.0"
|
"eslint-visitor-keys": "^5.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1745,9 +1745,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/prettier": {
|
"node_modules/prettier": {
|
||||||
"version": "3.8.1",
|
"version": "3.8.3",
|
||||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.3.tgz",
|
||||||
"integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==",
|
"integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bin": {
|
"bin": {
|
||||||
"prettier": "bin/prettier.cjs"
|
"prettier": "bin/prettier.cjs"
|
||||||
@@ -2001,9 +2001,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript": {
|
"node_modules/typescript": {
|
||||||
"version": "6.0.2",
|
"version": "6.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
|
||||||
"integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
|
"integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -2015,16 +2015,16 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript-eslint": {
|
"node_modules/typescript-eslint": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.3.tgz",
|
||||||
"integrity": "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A==",
|
"integrity": "sha512-KgusgyDgG4LI8Ih/sWaCtZ06tckLAS5CvT5A4D1Q7bYVoAAyzwiZvE4BmwDHkhRVkvhRBepKeASoFzQetha7Fg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "8.57.2",
|
"@typescript-eslint/eslint-plugin": "8.59.3",
|
||||||
"@typescript-eslint/parser": "8.57.2",
|
"@typescript-eslint/parser": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2"
|
"@typescript-eslint/utils": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -2035,13 +2035,13 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/undici-types": {
|
"node_modules/undici-types": {
|
||||||
"version": "7.18.2",
|
"version": "7.21.0",
|
||||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.21.0.tgz",
|
||||||
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
|
"integrity": "sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/prettier-config",
|
"name": "@goauthentik/prettier-config",
|
||||||
"version": "3.5.0",
|
"version": "4.0.0",
|
||||||
"description": "authentik's Prettier config",
|
"description": "authentik's Prettier config",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -39,15 +39,15 @@
|
|||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
"@goauthentik/eslint-config": "../eslint-config",
|
"@goauthentik/eslint-config": "../eslint-config",
|
||||||
"@goauthentik/tsconfig": "../tsconfig",
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
"@types/node": "^25.0.0",
|
"@types/node": "^25.7.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2"
|
"prettier-plugin-packagejson": "^3.0.2"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
},
|
},
|
||||||
"packageManager": {
|
"packageManager": {
|
||||||
"name": "npm",
|
"name": "npm",
|
||||||
"version": ">=11.10.1",
|
"version": ">=11.14.1",
|
||||||
"onFail": "warn"
|
"onFail": "warn"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Generated
+3
-3
@@ -1,16 +1,16 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/tsconfig",
|
"name": "@goauthentik/tsconfig",
|
||||||
"version": "1.0.9",
|
"version": "2.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@goauthentik/tsconfig",
|
"name": "@goauthentik/tsconfig",
|
||||||
"version": "1.0.9",
|
"version": "2.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@goauthentik/tsconfig",
|
"name": "@goauthentik/tsconfig",
|
||||||
"version": "1.0.9",
|
"version": "2.0.0",
|
||||||
"description": "authentik's base TypeScript configuration.",
|
"description": "authentik's base TypeScript configuration.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
},
|
},
|
||||||
"packageManager": {
|
"packageManager": {
|
||||||
"name": "npm",
|
"name": "npm",
|
||||||
"version": ">=11.10.1",
|
"version": ">=11.14.1",
|
||||||
"onFail": "warn"
|
"onFail": "warn"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/tsconfig",
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"ignoreDeprecations": "6.0",
|
|
||||||
"alwaysStrict": true,
|
"alwaysStrict": true,
|
||||||
"composite": true,
|
"composite": true,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
|||||||
Executable
+278
@@ -0,0 +1,278 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
/**
|
||||||
|
* @file Lints the package-lock.json file to ensure it is in sync with package.json.
|
||||||
|
*
|
||||||
|
* Usage:
|
||||||
|
* lint-lockfile [options] [directory]
|
||||||
|
*
|
||||||
|
* Options:
|
||||||
|
* --warn Report issues as warnings instead of failing. The lockfile is
|
||||||
|
* still regenerated on disk, but the process exits 0.
|
||||||
|
*
|
||||||
|
* Exit codes:
|
||||||
|
* 0 Lockfile is in sync (or --warn was passed)
|
||||||
|
* 1 Unexpected error
|
||||||
|
* 2 Lockfile drift detected
|
||||||
|
*/
|
||||||
|
|
||||||
|
/// <reference lib="esnext" />
|
||||||
|
|
||||||
|
import * as assert from "node:assert/strict";
|
||||||
|
import { findPackageJSON } from "node:module";
|
||||||
|
import { dirname } from "node:path";
|
||||||
|
import { isDeepStrictEqual, parseArgs } from "node:util";
|
||||||
|
|
||||||
|
import { ConsoleLogger } from "../../packages/logger-js/lib/node.js";
|
||||||
|
import { parseCWD, reportAndExit } from "./utils/commands.mjs";
|
||||||
|
import { corepack } from "./utils/corepack.mjs";
|
||||||
|
import { gitStatus } from "./utils/git.mjs";
|
||||||
|
import { findNPMPackage, loadJSON, npm, pluckDependencyFields } from "./utils/node.mjs";
|
||||||
|
|
||||||
|
//#region Constants
|
||||||
|
|
||||||
|
const logger = ConsoleLogger.prefix("lint:lockfile");
|
||||||
|
|
||||||
|
const { values: options, positionals } = parseArgs({
|
||||||
|
options: {
|
||||||
|
"warn": {
|
||||||
|
type: "boolean",
|
||||||
|
default: false,
|
||||||
|
description: "Report issues as warnings instead of failing",
|
||||||
|
},
|
||||||
|
"skip-git": {
|
||||||
|
type: "boolean",
|
||||||
|
default: !!process.env.CI,
|
||||||
|
description:
|
||||||
|
"Skip checking for uncommitted changes (use with --warn to ignore drift without reporting)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
allowPositionals: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const cwd = parseCWD(positionals);
|
||||||
|
|
||||||
|
const ignoredProperties = new Set([
|
||||||
|
// ---
|
||||||
|
"peer",
|
||||||
|
"engines",
|
||||||
|
"optional",
|
||||||
|
]);
|
||||||
|
|
||||||
|
//#region Utilities
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {Record<string, unknown>} actual
|
||||||
|
* @param {Record<string, unknown>} expected
|
||||||
|
* @param {string[]} [prefix]
|
||||||
|
* @returns {Set<string>[]}
|
||||||
|
*/
|
||||||
|
function extractDiffedProperties(actual, expected, prefix = []) {
|
||||||
|
const a = actual ?? {};
|
||||||
|
const b = expected ?? {};
|
||||||
|
const keys = new Set([...Object.keys(a), ...Object.keys(b)]);
|
||||||
|
/** @type {Set<string>[]} */
|
||||||
|
const diffs = [];
|
||||||
|
|
||||||
|
for (const key of keys) {
|
||||||
|
const path = [...prefix, key];
|
||||||
|
const valA = a[key];
|
||||||
|
const valB = b[key];
|
||||||
|
|
||||||
|
if (
|
||||||
|
valA !== null &&
|
||||||
|
valB !== null &&
|
||||||
|
typeof valA === "object" &&
|
||||||
|
typeof valB === "object" &&
|
||||||
|
!Array.isArray(valA) &&
|
||||||
|
!Array.isArray(valB)
|
||||||
|
) {
|
||||||
|
// @ts-ignore
|
||||||
|
diffs.push(...extractDiffedProperties(valA, valB, path));
|
||||||
|
} else if (!isDeepStrictEqual(valA, valB)) {
|
||||||
|
diffs.push(new Set(path));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return diffs;
|
||||||
|
}
|
||||||
|
|
||||||
|
//#endregion
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exit code when lockfile drift is detected (distinct from general errors)
|
||||||
|
*/
|
||||||
|
const EXIT_DRIFT = 2;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns {Promise<string[]>} The list of issues detected.
|
||||||
|
*/
|
||||||
|
async function run() {
|
||||||
|
/** @type {string[]} */
|
||||||
|
const issues = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Records an issue. In strict mode, throws immediately.
|
||||||
|
* In warn mode, collects the message for later reporting.
|
||||||
|
*
|
||||||
|
* @param {boolean} ok
|
||||||
|
* @param {string} message
|
||||||
|
*/
|
||||||
|
const check = (ok, message) => {
|
||||||
|
if (ok) return;
|
||||||
|
|
||||||
|
if (options.warn) {
|
||||||
|
issues.push(message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.fail(message);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks deep equality of two values. In strict mode, throws if they are not equal.
|
||||||
|
* In warn mode, records an issue instead.
|
||||||
|
*
|
||||||
|
* @param {unknown} actual
|
||||||
|
* @param {unknown} expected
|
||||||
|
* @param {string} message
|
||||||
|
*/
|
||||||
|
const checkDeep = (actual, expected, message) => {
|
||||||
|
if (options.warn) {
|
||||||
|
if (!isDeepStrictEqual(actual, expected)) {
|
||||||
|
issues.push(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.deepStrictEqual(actual, expected, message);
|
||||||
|
};
|
||||||
|
|
||||||
|
logger.info(`Linting lockfile integrity in: ${cwd}`);
|
||||||
|
|
||||||
|
// MARK: Locate files
|
||||||
|
|
||||||
|
const resolvedPath = import.meta.resolve(cwd);
|
||||||
|
const packageJSONPath = findPackageJSON(resolvedPath);
|
||||||
|
|
||||||
|
assert.ok(
|
||||||
|
packageJSONPath,
|
||||||
|
"Could not find package.json in the current directory or any parent directories",
|
||||||
|
);
|
||||||
|
|
||||||
|
const packageDir = dirname(packageJSONPath);
|
||||||
|
const { packageLockPath } = await findNPMPackage(packageDir);
|
||||||
|
const lockfileDir = dirname(packageLockPath);
|
||||||
|
const isWorkspace = lockfileDir !== packageDir;
|
||||||
|
|
||||||
|
const corepackVersion = await corepack`--version`().catch(() => null);
|
||||||
|
const useCorepack = !!corepackVersion;
|
||||||
|
logger.info(`corepack: ${corepackVersion || "disabled"}`);
|
||||||
|
|
||||||
|
const expected = {
|
||||||
|
lockfile: await loadJSON(packageLockPath),
|
||||||
|
package: await loadJSON(packageJSONPath).then(pluckDependencyFields),
|
||||||
|
};
|
||||||
|
|
||||||
|
logger.info(`package.json: ${packageJSONPath} (${expected.package.name})`);
|
||||||
|
logger.info(`package-lock.json: ${packageLockPath}${isWorkspace ? " (workspace root)" : ""}`);
|
||||||
|
|
||||||
|
// MARK: Uncommitted changes
|
||||||
|
|
||||||
|
if (options["skip-git"]) {
|
||||||
|
logger.warn("Skipping git status check");
|
||||||
|
} else {
|
||||||
|
const packageStatus = await gitStatus(packageJSONPath);
|
||||||
|
const lockfileStatus = await gitStatus(packageLockPath);
|
||||||
|
|
||||||
|
if (!packageStatus.available || !lockfileStatus.available) {
|
||||||
|
logger.warn("Git is not available; skipping uncommitted change detection.");
|
||||||
|
} else {
|
||||||
|
check(packageStatus.clean, `package.json has uncommitted changes: ${packageJSONPath}`);
|
||||||
|
|
||||||
|
check(
|
||||||
|
lockfileStatus.clean,
|
||||||
|
`package-lock.json has uncommitted changes: ${packageLockPath}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// MARK: Regenerate
|
||||||
|
|
||||||
|
const npmVersion = await npm`--version`({ useCorepack });
|
||||||
|
|
||||||
|
logger.info(`Detected npm version: ${npmVersion}`);
|
||||||
|
|
||||||
|
await npm`install --package-lock-only`({
|
||||||
|
cwd: lockfileDir,
|
||||||
|
useCorepack,
|
||||||
|
});
|
||||||
|
|
||||||
|
logger.info("npm install complete.");
|
||||||
|
|
||||||
|
const actual = {
|
||||||
|
lockfile: await loadJSON(packageLockPath),
|
||||||
|
package: await loadJSON(packageJSONPath).then(pluckDependencyFields),
|
||||||
|
};
|
||||||
|
|
||||||
|
// MARK: Compare
|
||||||
|
|
||||||
|
assert.deepStrictEqual(
|
||||||
|
actual.package,
|
||||||
|
expected.package,
|
||||||
|
`package.json was unexpectedly modified during lockfile check: ${packageJSONPath}`,
|
||||||
|
);
|
||||||
|
|
||||||
|
try {
|
||||||
|
checkDeep(
|
||||||
|
actual.lockfile,
|
||||||
|
expected.lockfile,
|
||||||
|
`package-lock.json is out of sync with package.json`,
|
||||||
|
);
|
||||||
|
} catch (error) {
|
||||||
|
if (!(error instanceof assert.AssertionError)) {
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
|
||||||
|
// NPM versions <=11.10 has issues with deterministic lockfile generation,
|
||||||
|
// especially around optional peer dependencies.
|
||||||
|
const diffedProperties = extractDiffedProperties(actual.lockfile, expected.lockfile).filter(
|
||||||
|
(segments) => segments.isDisjointFrom(ignoredProperties),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (diffedProperties.length) {
|
||||||
|
const formatted = diffedProperties
|
||||||
|
.map((segments) => Array.from(segments).join("."))
|
||||||
|
.join("\n");
|
||||||
|
|
||||||
|
throw new Error(`Lockfile drift detected:\n${formatted}`, { cause: error });
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.warn(
|
||||||
|
"Permissible dependency differences detected. Run `npm install` to update the lockfile.",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return issues;
|
||||||
|
}
|
||||||
|
|
||||||
|
run()
|
||||||
|
.then((issues) => {
|
||||||
|
if (issues.length) {
|
||||||
|
logger.warn(`⚠️ ${issues.length} issue(s) detected:`);
|
||||||
|
|
||||||
|
for (const issue of issues) {
|
||||||
|
logger.warn(` - ${issue}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.warn) {
|
||||||
|
logger.warn(
|
||||||
|
"The lockfile on disk has been regenerated. Review and commit the changes.",
|
||||||
|
);
|
||||||
|
process.exit(EXIT_DRIFT);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logger.info("✅ Lockfile is in sync.");
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch((error) => reportAndExit(error, logger));
|
||||||
Executable
+114
@@ -0,0 +1,114 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
/**
|
||||||
|
* @file Lints the installed Node.js and npm versions against the requirements specified in package.json.
|
||||||
|
*
|
||||||
|
* Usage:
|
||||||
|
* lint-node [options] [directory]
|
||||||
|
*
|
||||||
|
* Exit codes:
|
||||||
|
* 0 Versions are in sync
|
||||||
|
* 1 Version mismatch detected
|
||||||
|
*/
|
||||||
|
|
||||||
|
import * as assert from "node:assert/strict";
|
||||||
|
import { parseArgs } from "node:util";
|
||||||
|
|
||||||
|
import { ConsoleLogger } from "../../packages/logger-js/lib/node.js";
|
||||||
|
import { CommandError, parseCWD, reportAndExit } from "./utils/commands.mjs";
|
||||||
|
import { corepack } from "./utils/corepack.mjs";
|
||||||
|
import { resolveRepoRoot } from "./utils/git.mjs";
|
||||||
|
import { compareVersions, findNPMPackage, loadJSON, node, npm, parseRange } from "./utils/node.mjs";
|
||||||
|
|
||||||
|
const logger = ConsoleLogger.prefix("lint-runtime");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} start
|
||||||
|
*/
|
||||||
|
async function readRequirements(start) {
|
||||||
|
const { packageJSONPath } = await findNPMPackage(start);
|
||||||
|
|
||||||
|
logger.info(`Checking versions in ${packageJSONPath}`);
|
||||||
|
|
||||||
|
const packageJSONData = await loadJSON(packageJSONPath);
|
||||||
|
|
||||||
|
const nodeVersion = await node`--version`().then((output) => output.replace(/^v/, ""));
|
||||||
|
|
||||||
|
const requiredNpmVersion = packageJSONData.engines?.npm;
|
||||||
|
const requiredNodeVersion = packageJSONData.engines?.node;
|
||||||
|
|
||||||
|
return { nodeVersion, requiredNpmVersion, requiredNodeVersion };
|
||||||
|
}
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
const parsedArgs = parseArgs({
|
||||||
|
allowPositionals: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const cwd = parseCWD(parsedArgs.positionals);
|
||||||
|
const repoRoot = await resolveRepoRoot(cwd).catch(() => null);
|
||||||
|
|
||||||
|
logger.info(`cwd ${cwd}`);
|
||||||
|
logger.info(`repository ${repoRoot || "not found"}`);
|
||||||
|
|
||||||
|
const corepackVersion = await corepack`--version`().catch(() => null);
|
||||||
|
const useCorepack = !!corepackVersion;
|
||||||
|
logger.info(`corepack ${corepackVersion || "disabled"}`);
|
||||||
|
|
||||||
|
const npmVersion = await npm`--version`({ cwd, useCorepack })
|
||||||
|
.then((version) => {
|
||||||
|
logger.info(`npm${corepackVersion ? " (via Corepack)" : ""} ${version}`);
|
||||||
|
|
||||||
|
return version;
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
if (error instanceof CommandError && corepackVersion) {
|
||||||
|
logger.warn(`Failed to read npm version via Corepack ${error.message}`);
|
||||||
|
|
||||||
|
logger.info(`Attempting to read npm version directly without Corepack...`);
|
||||||
|
// Corepack might be misconfigured or outdated.
|
||||||
|
// Attempting a second read without Corepack can help us distinguish
|
||||||
|
// between a general npm issue and a Corepack-specific one.
|
||||||
|
return npm`--version`({ cwd }).then((version) => {
|
||||||
|
logger.info(`npm (direct) ${version}`);
|
||||||
|
|
||||||
|
return version;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
throw error;
|
||||||
|
});
|
||||||
|
|
||||||
|
const { nodeVersion, requiredNpmVersion, requiredNodeVersion } = await readRequirements(cwd);
|
||||||
|
|
||||||
|
logger.info(`node ${nodeVersion}`);
|
||||||
|
|
||||||
|
if (requiredNpmVersion) {
|
||||||
|
logger.info(`package.json npm ${requiredNpmVersion}`);
|
||||||
|
|
||||||
|
const { operator, version: required } = parseRange(requiredNpmVersion);
|
||||||
|
const result = compareVersions(npmVersion, required);
|
||||||
|
|
||||||
|
assert.ok(
|
||||||
|
operator === ">=" ? result >= 0 : result === 0,
|
||||||
|
`npm version ${npmVersion} does not satisfy required version ${requiredNpmVersion}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (requiredNodeVersion) {
|
||||||
|
logger.info(`package.json node ${requiredNodeVersion}`);
|
||||||
|
|
||||||
|
const { operator, version: required } = parseRange(requiredNodeVersion);
|
||||||
|
const result = compareVersions(nodeVersion, required);
|
||||||
|
|
||||||
|
assert.ok(
|
||||||
|
operator === ">=" ? result >= 0 : result === 0,
|
||||||
|
`Node.js version ${nodeVersion} does not satisfy required version ${requiredNodeVersion}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
main()
|
||||||
|
.then(() => {
|
||||||
|
logger.info("✅ Node.js and npm versions are in sync.");
|
||||||
|
})
|
||||||
|
.catch((error) => reportAndExit(error, logger));
|
||||||
Executable
+110
@@ -0,0 +1,110 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file Downloads the latest corepack tarball from the npm registry.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import * as fs from "node:fs/promises";
|
||||||
|
import { parseArgs } from "node:util";
|
||||||
|
|
||||||
|
import { ConsoleLogger } from "../../packages/logger-js/lib/node.js";
|
||||||
|
import { $, parseCWD, reportAndExit } from "./utils/commands.mjs";
|
||||||
|
import { corepack, pullLatestCorepack, verifyPackageManagerIntegrity } from "./utils/corepack.mjs";
|
||||||
|
import { resolveRepoRoot } from "./utils/git.mjs";
|
||||||
|
import { findNPMPackage, loadJSON, npm } from "./utils/node.mjs";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Remove after Corepack is merged into the monorepo and we can rely on the version specified in package.json.
|
||||||
|
*/
|
||||||
|
const FALLBACK_PACKAGE_MANAGER =
|
||||||
|
"npm@11.14.1+sha512.6a8a4d67478497a2dbc6815cad72e64c43f33413717e242756047d466241ab39bee61e691683a64658e94496ec5f1a1c05e4a5ec62dcc773280dfd949443a367";
|
||||||
|
const logger = ConsoleLogger.prefix("setup-corepack");
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
const parsedArgs = parseArgs({
|
||||||
|
options: {
|
||||||
|
force: {
|
||||||
|
type: "boolean",
|
||||||
|
default: false,
|
||||||
|
description: "Force re-download of corepack even if a version is already installed",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
allowPositionals: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const cwdArg = parseCWD(parsedArgs.positionals);
|
||||||
|
|
||||||
|
const repoRoot = await resolveRepoRoot(cwdArg).catch(() => null);
|
||||||
|
const cwd = repoRoot || cwdArg;
|
||||||
|
|
||||||
|
const npmVersion = await npm`--version`({ cwd });
|
||||||
|
|
||||||
|
logger.info(`npm ${npmVersion}`);
|
||||||
|
|
||||||
|
const corepackVersion = await corepack`--version`({ cwd }).catch(() => null);
|
||||||
|
|
||||||
|
logger.info(`corepack ${corepackVersion || "not found"}`);
|
||||||
|
|
||||||
|
if (corepackVersion && !parsedArgs.values.force) {
|
||||||
|
logger.info("Corepack is already installed, skipping download (use --force to override)");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await pullLatestCorepack(cwd);
|
||||||
|
|
||||||
|
await npm`install --force -g corepack@latest`({ cwd });
|
||||||
|
logger.info("Corepack installed successfully");
|
||||||
|
|
||||||
|
const { packageJSONPath } = await findNPMPackage(cwd);
|
||||||
|
|
||||||
|
logger.info(`Checking versions in ${packageJSONPath}`);
|
||||||
|
|
||||||
|
const packageJSONData = await loadJSON(packageJSONPath);
|
||||||
|
|
||||||
|
const packageManagerSpec = packageJSONData.packageManager || FALLBACK_PACKAGE_MANAGER;
|
||||||
|
const plusIndex = packageManagerSpec.indexOf("+");
|
||||||
|
const packageManager =
|
||||||
|
plusIndex === -1 ? packageManagerSpec : packageManagerSpec.slice(0, plusIndex);
|
||||||
|
const checksum = plusIndex === -1 ? "" : packageManagerSpec.slice(plusIndex + 1);
|
||||||
|
|
||||||
|
if (!checksum) {
|
||||||
|
throw new Error(
|
||||||
|
`Invalid packageManager field in package.json. Expected format "name@version+checksum". Got "${packageJSONData.packageManager}".`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
await verifyPackageManagerIntegrity(packageManager, checksum);
|
||||||
|
|
||||||
|
await $`corepack install -g ${packageManager}`({ cwd });
|
||||||
|
|
||||||
|
logger.info(`Setting up Corepack to use ${packageManager}...`);
|
||||||
|
|
||||||
|
const writablePackageJSON = await fs.access(packageJSONPath, fs.constants.W_OK).then(
|
||||||
|
() => true,
|
||||||
|
() => false,
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
|
let subcommand;
|
||||||
|
|
||||||
|
if (!writablePackageJSON) {
|
||||||
|
if (!packageJSONData.packageManager) {
|
||||||
|
throw new Error(
|
||||||
|
`package.json is not writable and does not specify a packageManager field. Was the package.json file mounted via Docker?`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
subcommand = "install -g";
|
||||||
|
} else {
|
||||||
|
logger.info("package.json is writable");
|
||||||
|
subcommand = "use";
|
||||||
|
}
|
||||||
|
|
||||||
|
await $`corepack ${subcommand} ${packageManager}`({ cwd });
|
||||||
|
|
||||||
|
logger.info("Corepack installed npm successfully");
|
||||||
|
}
|
||||||
|
|
||||||
|
main().catch((error) => reportAndExit(error, logger));
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
/**
|
||||||
|
* Utility functions for running shell commands and handling their results.
|
||||||
|
*
|
||||||
|
* @import { ExecOptions } from "node:child_process"
|
||||||
|
* @import { IConsoleLogger } from "../../../packages/logger-js/lib/shared.js"
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { exec } from "node:child_process";
|
||||||
|
import { resolve, sep } from "node:path";
|
||||||
|
import { promisify } from "node:util";
|
||||||
|
|
||||||
|
import { ConsoleLogger } from "../../../packages/logger-js/lib/node.js";
|
||||||
|
|
||||||
|
const logger = ConsoleLogger.prefix("commands");
|
||||||
|
|
||||||
|
export class CommandError extends Error {
|
||||||
|
name = "CommandError";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} command
|
||||||
|
* @param {ErrorOptions & ExecOptions} options
|
||||||
|
*/
|
||||||
|
constructor(command, { cause, cwd, shell } = {}) {
|
||||||
|
const cwdInfo = cwd ? ` in directory ${cwd}` : "";
|
||||||
|
const shellInfo = shell ? ` using shell ${shell}` : "";
|
||||||
|
|
||||||
|
super(`Command failed: ${command}${cwdInfo}${shellInfo}`, { cause });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string[]} positionals
|
||||||
|
* @returns {string} The resolved current working directory for the script
|
||||||
|
*/
|
||||||
|
export function parseCWD(positionals) {
|
||||||
|
// `INIT_CWD` is present only if the script is run via npm.
|
||||||
|
const initCWD = process.env.INIT_CWD || process.cwd();
|
||||||
|
|
||||||
|
const cwd = (positionals.length ? resolve(initCWD, positionals[0]) : initCWD) + sep;
|
||||||
|
|
||||||
|
return cwd;
|
||||||
|
}
|
||||||
|
|
||||||
|
const execAsync = promisify(exec);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A timeout value to prevent hanging indefinitely when running shell commands,
|
||||||
|
* such as if CI is experiencing issues with provisioning or network connectivity.
|
||||||
|
*/
|
||||||
|
const DEFAULT_TIMEOUT_MS = 5 * 60 * 1000;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {Awaited<ReturnType<typeof execAsync>>} result
|
||||||
|
*/
|
||||||
|
export const trimResult = (result) => String(result.stdout).trim();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {(strings: TemplateStringsArray, ...expressions: unknown[]) =>
|
||||||
|
* (options?: ExecOptions) => Promise<string>
|
||||||
|
* } CommandTag
|
||||||
|
*/
|
||||||
|
|
||||||
|
function createTag(prefix = "") {
|
||||||
|
/** @type {CommandTag} */
|
||||||
|
return (strings, ...expressions) => {
|
||||||
|
const command = (prefix ? prefix + " " : "") + String.raw(strings, ...expressions);
|
||||||
|
|
||||||
|
logger.debug(command);
|
||||||
|
|
||||||
|
return (options) =>
|
||||||
|
execAsync(command, { timeout: DEFAULT_TIMEOUT_MS, ...options })
|
||||||
|
.then(trimResult)
|
||||||
|
.catch((cause) => {
|
||||||
|
throw new CommandError(command, { ...options, cause });
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A tagged template function for running shell commands.
|
||||||
|
* @type {CommandTag & { bind(prefix: string): CommandTag }}
|
||||||
|
*/
|
||||||
|
export const $ = createTag();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} prefix
|
||||||
|
* @returns {CommandTag}
|
||||||
|
*/
|
||||||
|
$.bind = (prefix) => createTag(prefix);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Promisified version of {@linkcode exec} for easier async/await usage.
|
||||||
|
*
|
||||||
|
* @param {string} command The command to run, with space-separated arguments.
|
||||||
|
* @param {ExecOptions} [options] Optional execution options.
|
||||||
|
* @throws {CommandError} If the command fails to execute.
|
||||||
|
*/
|
||||||
|
export function $2(command, options) {
|
||||||
|
return execAsync(command, { timeout: DEFAULT_TIMEOUT_MS, ...options })
|
||||||
|
.then(trimResult)
|
||||||
|
.catch((cause) => {
|
||||||
|
throw new CommandError(command, { ...options, cause });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs the given error and its cause (if any) and exits the process with a failure code.
|
||||||
|
* @param {unknown} error
|
||||||
|
* @param {IConsoleLogger} logger
|
||||||
|
* @returns {never}
|
||||||
|
*/
|
||||||
|
export function reportAndExit(error, logger = ConsoleLogger) {
|
||||||
|
const message = error instanceof Error ? error.message : String(error);
|
||||||
|
const cause = error instanceof Error && error.cause instanceof Error ? error.cause : null;
|
||||||
|
|
||||||
|
logger.error(`❌ ${message}`);
|
||||||
|
|
||||||
|
if (cause) {
|
||||||
|
logger.error(`Caused by: ${cause.message}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
import * as crypto from "node:crypto";
|
||||||
|
import * as fs from "node:fs/promises";
|
||||||
|
import { join, relative } from "node:path";
|
||||||
|
|
||||||
|
import { ConsoleLogger } from "../../../packages/logger-js/lib/node.js";
|
||||||
|
import { $ } from "./commands.mjs";
|
||||||
|
|
||||||
|
const REGISTRY_BASE_URL = "https://registry.npmjs.org";
|
||||||
|
const REGISTRY_URL = `${REGISTRY_BASE_URL}/corepack`;
|
||||||
|
const OUTPUT_DIR = join(".corepack", "releases");
|
||||||
|
const OUTPUT_FILENAME = "latest.tgz";
|
||||||
|
|
||||||
|
export const corepack = $.bind("corepack");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reads the installed Corepack version.
|
||||||
|
*
|
||||||
|
* @param {string} [cwd] The directory to run the command in.
|
||||||
|
* @returns {Promise<string | null>} The installed Corepack version
|
||||||
|
*/
|
||||||
|
export function readCorepackVersion(cwd = process.cwd()) {
|
||||||
|
return $`corepack --version`({ cwd });
|
||||||
|
}
|
||||||
|
|
||||||
|
const logger = ConsoleLogger.prefix("setup-corepack");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} baseDirectory
|
||||||
|
*/
|
||||||
|
export async function pullLatestCorepack(baseDirectory = process.cwd()) {
|
||||||
|
logger.info("Fetching corepack metadata from registry...");
|
||||||
|
|
||||||
|
const outputDir = join(baseDirectory, OUTPUT_DIR);
|
||||||
|
const outputPath = join(outputDir, OUTPUT_FILENAME);
|
||||||
|
|
||||||
|
const res = await fetch(REGISTRY_URL, { signal: AbortSignal.timeout(1000 * 60) });
|
||||||
|
|
||||||
|
if (!res.ok) {
|
||||||
|
throw new Error(`Failed to fetch registry metadata: ${res.status} ${res.statusText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const metadata = await res.json();
|
||||||
|
|
||||||
|
const latestVersion = metadata["dist-tags"].latest;
|
||||||
|
const versionData = metadata.versions[latestVersion];
|
||||||
|
const tarballUrl = versionData.dist.tarball;
|
||||||
|
const expectedIntegrity = versionData.dist.integrity;
|
||||||
|
|
||||||
|
logger.info(`Latest corepack version: ${latestVersion}`);
|
||||||
|
logger.info(`Tarball URL: ${tarballUrl}`);
|
||||||
|
logger.info(`Expected integrity: ${expectedIntegrity}`);
|
||||||
|
|
||||||
|
logger.info({ url: tarballUrl }, "Downloading tarball...");
|
||||||
|
|
||||||
|
const tarballRes = await fetch(tarballUrl, {
|
||||||
|
signal: AbortSignal.timeout(1000 * 60),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!tarballRes.ok) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to download tarball: ${tarballRes.status} ${tarballRes.statusText}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const tarballBuffer = Buffer.from(await tarballRes.arrayBuffer());
|
||||||
|
|
||||||
|
logger.info("Verifying integrity...");
|
||||||
|
|
||||||
|
const [algorithm, expectedHash] = expectedIntegrity.split("-");
|
||||||
|
const actualHash = crypto.createHash(algorithm).update(tarballBuffer).digest("base64");
|
||||||
|
|
||||||
|
if (actualHash !== expectedHash) {
|
||||||
|
throw new Error(
|
||||||
|
`Integrity mismatch!\n Expected: ${expectedHash}\n Actual: ${actualHash}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info("Integrity verified.");
|
||||||
|
|
||||||
|
await fs.mkdir(outputDir, { recursive: true });
|
||||||
|
await fs.writeFile(outputPath, tarballBuffer);
|
||||||
|
|
||||||
|
logger.info(`Saved to ${relative(baseDirectory, outputPath)}`);
|
||||||
|
logger.info(`corepack@${latestVersion} (${expectedIntegrity})`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Downloads the tarball for a package manager spec from the npm registry and
|
||||||
|
* verifies it matches the expected Corepack-style checksum (`<algorithm>.<hex>`).
|
||||||
|
*
|
||||||
|
* Corepack's CLI does not enforce the `+integrity` suffix on the `packageManager`
|
||||||
|
* field when invoked via `corepack install -g`, so we verify the bytes ourselves
|
||||||
|
* before handing control back to Corepack.
|
||||||
|
*
|
||||||
|
* @param {string} packageManager E.g. `npm@11.14.1`.
|
||||||
|
* @param {string} expectedChecksum E.g. `sha512.6a8a4d67...`.
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
*/
|
||||||
|
export async function verifyPackageManagerIntegrity(packageManager, expectedChecksum) {
|
||||||
|
const atIndex = packageManager.lastIndexOf("@");
|
||||||
|
|
||||||
|
if (atIndex <= 0) {
|
||||||
|
throw new Error(
|
||||||
|
`Invalid packageManager spec "${packageManager}". Expected "name@version".`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const name = packageManager.slice(0, atIndex);
|
||||||
|
const version = packageManager.slice(atIndex + 1);
|
||||||
|
|
||||||
|
const separatorIndex = expectedChecksum.indexOf(".");
|
||||||
|
|
||||||
|
if (separatorIndex <= 0) {
|
||||||
|
throw new Error(
|
||||||
|
`Invalid checksum format "${expectedChecksum}". Expected "<algorithm>.<hex>".`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const algorithm = expectedChecksum.slice(0, separatorIndex);
|
||||||
|
const expectedHex = expectedChecksum.slice(separatorIndex + 1).toLowerCase();
|
||||||
|
|
||||||
|
logger.info(`Verifying ${name}@${version} against ${algorithm} checksum...`);
|
||||||
|
|
||||||
|
const metadataUrl = `${REGISTRY_BASE_URL}/${encodeURIComponent(name)}/${encodeURIComponent(version)}`;
|
||||||
|
|
||||||
|
const metadataRes = await fetch(metadataUrl, {
|
||||||
|
signal: AbortSignal.timeout(1000 * 60),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!metadataRes.ok) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to fetch registry metadata for ${name}@${version}: ${metadataRes.status} ${metadataRes.statusText}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const versionData = await metadataRes.json();
|
||||||
|
const tarballUrl = versionData?.dist?.tarball;
|
||||||
|
|
||||||
|
if (!tarballUrl) {
|
||||||
|
throw new Error(`Registry response missing dist.tarball for ${name}@${version}.`);
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info({ url: tarballUrl }, "Downloading tarball...");
|
||||||
|
|
||||||
|
const tarballRes = await fetch(tarballUrl, {
|
||||||
|
signal: AbortSignal.timeout(1000 * 60),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!tarballRes.ok) {
|
||||||
|
throw new Error(
|
||||||
|
`Failed to download tarball: ${tarballRes.status} ${tarballRes.statusText}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const tarballBuffer = Buffer.from(await tarballRes.arrayBuffer());
|
||||||
|
const actualHex = crypto.createHash(algorithm).update(tarballBuffer).digest("hex");
|
||||||
|
|
||||||
|
if (actualHex !== expectedHex) {
|
||||||
|
throw new Error(
|
||||||
|
`Integrity mismatch for ${name}@${version}!\n Expected: ${algorithm}.${expectedHex}\n Actual: ${algorithm}.${actualHex}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info(`Integrity verified for ${name}@${version}.`);
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
import { $ } from "./commands.mjs";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks whether the given file has uncommitted changes in git.
|
||||||
|
*
|
||||||
|
* @param {string} filePath
|
||||||
|
* @param {string} [cwd]
|
||||||
|
* @returns {Promise<{ clean: boolean, available: boolean }>}
|
||||||
|
*/
|
||||||
|
export async function gitStatus(filePath, cwd = process.cwd()) {
|
||||||
|
return $`git status --porcelain ${filePath}`({ cwd })
|
||||||
|
.then((output) => ({ clean: !output, available: true }))
|
||||||
|
.catch(() => ({ clean: false, available: false }));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds the root directory of the git repository containing the given directory.
|
||||||
|
*
|
||||||
|
* @param {string} cwd
|
||||||
|
* @returns {Promise<string>} The path to the git repository root.
|
||||||
|
* @throws {Error} If the command fails (e.g., not a git repository).
|
||||||
|
*/
|
||||||
|
export function resolveRepoRoot(cwd = process.cwd()) {
|
||||||
|
return $`git rev-parse --show-toplevel`({ cwd });
|
||||||
|
}
|
||||||
@@ -0,0 +1,175 @@
|
|||||||
|
/**
|
||||||
|
* Utility functions for working with npm packages and versions.
|
||||||
|
*
|
||||||
|
* @import { ExecOptions } from "node:child_process"
|
||||||
|
*/
|
||||||
|
|
||||||
|
import * as fs from "node:fs/promises";
|
||||||
|
import { dirname, join } from "node:path";
|
||||||
|
|
||||||
|
import { $ } from "./commands.mjs";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find the nearest directory containing both package.json and package-lock.json,
|
||||||
|
* starting from the given directory and walking upward.
|
||||||
|
*
|
||||||
|
* @param {string} start The directory to start searching from.
|
||||||
|
* @returns {Promise<{ packageJSONPath: string, packageLockPath: string }>}
|
||||||
|
* @throws {Error} If no co-located package.json and package-lock.json are found.
|
||||||
|
*/
|
||||||
|
export async function findNPMPackage(start) {
|
||||||
|
let currentDir = start;
|
||||||
|
|
||||||
|
while (currentDir !== dirname(currentDir)) {
|
||||||
|
const packageJSONPath = join(currentDir, "package.json");
|
||||||
|
const packageLockPath = join(currentDir, "package-lock.json");
|
||||||
|
|
||||||
|
try {
|
||||||
|
await Promise.all([fs.access(packageJSONPath), fs.access(packageLockPath)]);
|
||||||
|
return {
|
||||||
|
packageJSONPath,
|
||||||
|
packageLockPath,
|
||||||
|
};
|
||||||
|
} catch {
|
||||||
|
// Continue searching up the directory tree
|
||||||
|
}
|
||||||
|
|
||||||
|
currentDir = dirname(currentDir);
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Error(`No co-located package.json and package-lock.json found above ${start}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} PackageJSON
|
||||||
|
* @property {string} name
|
||||||
|
* @property {string} version
|
||||||
|
* @property {Record<string, string>} [dependencies]
|
||||||
|
* @property {Record<string, string>} [devDependencies]
|
||||||
|
* @property {Record<string, string>} [peerDependencies]
|
||||||
|
* @property {Record<string, string>} [optionalDependencies]
|
||||||
|
* @property {Record<string, string>} [peerDependenciesMeta]
|
||||||
|
* @property {Record<string, string>} [engines]
|
||||||
|
* @property {Record<string, string>} [devEngines]
|
||||||
|
* @property {string} [packageManager]
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} jsonPath
|
||||||
|
* @returns {Promise<PackageJSON>}
|
||||||
|
*/
|
||||||
|
export function loadJSON(jsonPath) {
|
||||||
|
return fs
|
||||||
|
.readFile(jsonPath, "utf-8")
|
||||||
|
.then(JSON.parse)
|
||||||
|
.catch((cause) => {
|
||||||
|
throw new Error(`Failed to load JSON file at ${jsonPath}`, { cause });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const PackageJSONComparisionFields = /** @type {const} */ ([
|
||||||
|
"name",
|
||||||
|
"dependencies",
|
||||||
|
"devDependencies",
|
||||||
|
"optionalDependencies",
|
||||||
|
"peerDependencies",
|
||||||
|
"peerDependenciesMeta",
|
||||||
|
]);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {typeof PackageJSONComparisionFields[number]} PackageJSONComparisionField
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extracts only the dependency fields from a package.json object for comparison purposes.
|
||||||
|
*
|
||||||
|
* @param {PackageJSON} data
|
||||||
|
* @returns {Pick<PackageJSON, PackageJSONComparisionField>}
|
||||||
|
*/
|
||||||
|
export function pluckDependencyFields(data) {
|
||||||
|
/**
|
||||||
|
* @type {Record<string, unknown>}
|
||||||
|
*/
|
||||||
|
const result = {};
|
||||||
|
|
||||||
|
for (const field of PackageJSONComparisionFields) {
|
||||||
|
if (data[field]) {
|
||||||
|
result[field] = data[field];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return /** @type {Pick<PackageJSON, PackageJSONComparisionField>} */ (result);
|
||||||
|
}
|
||||||
|
|
||||||
|
//#region Versioning
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compares two semantic version strings (e.g., "14.17.0").
|
||||||
|
*
|
||||||
|
* @param {string} a The first version string.
|
||||||
|
* @param {string} b The second version string.
|
||||||
|
* @returns {number}
|
||||||
|
*/
|
||||||
|
export function compareVersions(a, b) {
|
||||||
|
const pa = a.split(".").map(Number);
|
||||||
|
const pb = b.split(".").map(Number);
|
||||||
|
for (let i = 0; i < 3; i++) {
|
||||||
|
if (pa[i] > pb[i]) return 1;
|
||||||
|
if (pa[i] < pb[i]) return -1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs a Node.js command and returns its stdout output as a string.
|
||||||
|
*
|
||||||
|
* @param {TemplateStringsArray} strings
|
||||||
|
* @param {...unknown} expressions
|
||||||
|
* @returns {(options?: ExecOptions) => Promise<string>}
|
||||||
|
*/
|
||||||
|
export const node = $.bind("node");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {object} NPMCommandOptions
|
||||||
|
* @property {boolean} [useCorepack] Whether to prefix the command with "corepack " to use Corepack's shims.
|
||||||
|
* @returns {Promise<string>}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs an npm command and returns its stdout output as a string.
|
||||||
|
*
|
||||||
|
* @param {TemplateStringsArray} strings
|
||||||
|
* @param {...unknown} expressions
|
||||||
|
* @returns {(options?: ExecOptions & NPMCommandOptions) => Promise<string>}
|
||||||
|
*/
|
||||||
|
export function npm(strings, ...expressions) {
|
||||||
|
const subcommand = String.raw(strings, ...expressions);
|
||||||
|
|
||||||
|
return ({ useCorepack, ...options } = {}) => {
|
||||||
|
const command = [useCorepack ? "corepack" : "", "npm", subcommand]
|
||||||
|
.filter(Boolean)
|
||||||
|
.join(" ");
|
||||||
|
|
||||||
|
return $`${command}`(options);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parses a version range string, stripping any leading >= and normalizing to three parts.
|
||||||
|
* @param {string} range
|
||||||
|
* @returns {{ operator: ">=" | "=", version: string }}
|
||||||
|
*/
|
||||||
|
export function parseRange(range) {
|
||||||
|
const hasGte = range.startsWith(">=");
|
||||||
|
const raw = hasGte ? range.slice(2) : range;
|
||||||
|
const parts = raw.split(".").map(Number);
|
||||||
|
|
||||||
|
while (parts.length < 3) parts.push(0);
|
||||||
|
|
||||||
|
return {
|
||||||
|
operator: hasGte ? ">=" : "=",
|
||||||
|
version: parts.join("."),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
//#endregion
|
||||||
Generated
+216
-112
@@ -51,7 +51,7 @@
|
|||||||
"@types/codemirror": "^5.60.17",
|
"@types/codemirror": "^5.60.17",
|
||||||
"@types/grecaptcha": "^3.0.9",
|
"@types/grecaptcha": "^3.0.9",
|
||||||
"@types/guacamole-common-js": "^1.5.5",
|
"@types/guacamole-common-js": "^1.5.5",
|
||||||
"@types/node": "^25.6.2",
|
"@types/node": "^25.7.0",
|
||||||
"@types/react": "^19.2.14",
|
"@types/react": "^19.2.14",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
"dompurify": "^3.4.2",
|
"dompurify": "^3.4.2",
|
||||||
"esbuild": "^0.28.0",
|
"esbuild": "^0.28.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"eslint-plugin-lit": "^2.2.1",
|
"eslint-plugin-lit": "^2.3.1",
|
||||||
"eslint-plugin-wc": "^3.1.0",
|
"eslint-plugin-wc": "^3.1.0",
|
||||||
"fuse.js": "^7.3.0",
|
"fuse.js": "^7.3.0",
|
||||||
"globals": "^17.6.0",
|
"globals": "^17.6.0",
|
||||||
@@ -114,7 +114,7 @@
|
|||||||
"turnstile-types": "^1.2.3",
|
"turnstile-types": "^1.2.3",
|
||||||
"type-fest": "^5.6.0",
|
"type-fest": "^5.6.0",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2",
|
"typescript-eslint": "^8.59.3",
|
||||||
"unist-util-visit": "^5.1.0",
|
"unist-util-visit": "^5.1.0",
|
||||||
"vite": "^8.0.12",
|
"vite": "^8.0.12",
|
||||||
"vitest": "^4.1.6",
|
"vitest": "^4.1.6",
|
||||||
@@ -124,17 +124,46 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.6.2"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@esbuild/darwin-arm64": "^0.28.0",
|
"@esbuild/darwin-arm64": "^0.28.0",
|
||||||
"@esbuild/linux-arm64": "^0.28.0",
|
"@esbuild/linux-arm64": "^0.28.0",
|
||||||
"@esbuild/linux-x64": "^0.28.0",
|
"@esbuild/linux-x64": "^0.28.0",
|
||||||
|
"@goauthentik/prettier-config-dev": "../packages/prettier-config",
|
||||||
"@rollup/rollup-darwin-arm64": "^4.57.1",
|
"@rollup/rollup-darwin-arm64": "^4.57.1",
|
||||||
"@rollup/rollup-linux-arm64-gnu": "^4.57.1",
|
"@rollup/rollup-linux-arm64-gnu": "^4.57.1",
|
||||||
"@rollup/rollup-linux-x64-gnu": "^4.57.1"
|
"@rollup/rollup-linux-x64-gnu": "^4.57.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"../packages/prettier-config": {
|
||||||
|
"name": "@goauthentik/prettier-config",
|
||||||
|
"version": "4.0.0",
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"format-imports": "^4.0.8"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@eslint/js": "^9.39.3",
|
||||||
|
"@goauthentik/eslint-config": "../eslint-config",
|
||||||
|
"@goauthentik/tsconfig": "../tsconfig",
|
||||||
|
"@types/node": "^25.7.0",
|
||||||
|
"eslint": "^9.39.3",
|
||||||
|
"prettier": "^3.8.3",
|
||||||
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
|
"typescript": "^6.0.3",
|
||||||
|
"typescript-eslint": "^8.59.3"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=24",
|
||||||
|
"npm": ">=11.14.1"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"prettier": "^3.8.3",
|
||||||
|
"prettier-plugin-packagejson": "^3.0.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@adobe/css-tools": {
|
"node_modules/@adobe/css-tools": {
|
||||||
"version": "4.4.4",
|
"version": "4.4.4",
|
||||||
"resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.4.tgz",
|
"resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.4.tgz",
|
||||||
@@ -1597,6 +1626,10 @@
|
|||||||
"prettier-plugin-packagejson": "^3.0.2"
|
"prettier-plugin-packagejson": "^3.0.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@goauthentik/prettier-config-dev": {
|
||||||
|
"resolved": "../packages/prettier-config",
|
||||||
|
"link": true
|
||||||
|
},
|
||||||
"node_modules/@goauthentik/tsconfig": {
|
"node_modules/@goauthentik/tsconfig": {
|
||||||
"version": "1.0.9",
|
"version": "1.0.9",
|
||||||
"resolved": "https://registry.npmjs.org/@goauthentik/tsconfig/-/tsconfig-1.0.9.tgz",
|
"resolved": "https://registry.npmjs.org/@goauthentik/tsconfig/-/tsconfig-1.0.9.tgz",
|
||||||
@@ -5480,12 +5513,12 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "25.6.2",
|
"version": "25.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.6.2.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.7.0.tgz",
|
||||||
"integrity": "sha512-sokuT28dxf9JT5Kady1fsXOvI4HVpjZa95NKT5y9PNTIrs2AsobR4GFAA90ZG8M+nxVRLysCXsVj6eGC7Vbrlw==",
|
"integrity": "sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~7.19.0"
|
"undici-types": "~7.21.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/ramda": {
|
"node_modules/@types/ramda": {
|
||||||
@@ -5549,19 +5582,19 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.3.tgz",
|
||||||
"integrity": "sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w==",
|
"integrity": "sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/regexpp": "^4.12.2",
|
"@eslint-community/regexpp": "^4.12.2",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/type-utils": "8.57.2",
|
"@typescript-eslint/type-utils": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"ignore": "^7.0.5",
|
"ignore": "^7.0.5",
|
||||||
"natural-compare": "^1.4.0",
|
"natural-compare": "^1.4.0",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -5571,9 +5604,9 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@typescript-eslint/parser": "^8.57.2",
|
"@typescript-eslint/parser": "^8.59.3",
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
||||||
@@ -5586,15 +5619,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/parser": {
|
"node_modules/@typescript-eslint/parser": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.3.tgz",
|
||||||
"integrity": "sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA==",
|
"integrity": "sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -5606,17 +5639,17 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/project-service": {
|
"node_modules/@typescript-eslint/project-service": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.3.tgz",
|
||||||
"integrity": "sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==",
|
"integrity": "sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/tsconfig-utils": "^8.57.2",
|
"@typescript-eslint/tsconfig-utils": "^8.59.3",
|
||||||
"@typescript-eslint/types": "^8.57.2",
|
"@typescript-eslint/types": "^8.59.3",
|
||||||
"debug": "^4.4.3"
|
"debug": "^4.4.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -5627,17 +5660,17 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/scope-manager": {
|
"node_modules/@typescript-eslint/scope-manager": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.3.tgz",
|
||||||
"integrity": "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==",
|
"integrity": "sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2"
|
"@typescript-eslint/visitor-keys": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -5648,9 +5681,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/tsconfig-utils": {
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==",
|
"integrity": "sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -5660,20 +5693,20 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/type-utils": {
|
"node_modules/@typescript-eslint/type-utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg==",
|
"integrity": "sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2",
|
"@typescript-eslint/utils": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -5684,13 +5717,13 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/types": {
|
"node_modules/@typescript-eslint/types": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.3.tgz",
|
||||||
"integrity": "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==",
|
"integrity": "sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -5701,20 +5734,20 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree": {
|
"node_modules/@typescript-eslint/typescript-estree": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.3.tgz",
|
||||||
"integrity": "sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==",
|
"integrity": "sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/project-service": "8.57.2",
|
"@typescript-eslint/project-service": "8.59.3",
|
||||||
"@typescript-eslint/tsconfig-utils": "8.57.2",
|
"@typescript-eslint/tsconfig-utils": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/visitor-keys": "8.57.2",
|
"@typescript-eslint/visitor-keys": "8.59.3",
|
||||||
"debug": "^4.4.3",
|
"debug": "^4.4.3",
|
||||||
"minimatch": "^10.2.2",
|
"minimatch": "^10.2.2",
|
||||||
"semver": "^7.7.3",
|
"semver": "^7.7.3",
|
||||||
"tinyglobby": "^0.2.15",
|
"tinyglobby": "^0.2.15",
|
||||||
"ts-api-utils": "^2.4.0"
|
"ts-api-utils": "^2.5.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -5724,7 +5757,7 @@
|
|||||||
"url": "https://opencollective.com/typescript-eslint"
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
||||||
@@ -5737,9 +5770,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
||||||
"version": "5.0.5",
|
"version": "5.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
||||||
"integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
|
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"balanced-match": "^4.0.2"
|
"balanced-match": "^4.0.2"
|
||||||
@@ -5749,12 +5782,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
||||||
"version": "10.2.4",
|
"version": "10.2.5",
|
||||||
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
||||||
"integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
|
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
||||||
"license": "BlueOak-1.0.0",
|
"license": "BlueOak-1.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"brace-expansion": "^5.0.2"
|
"brace-expansion": "^5.0.5"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "18 || 20 || >=22"
|
"node": "18 || 20 || >=22"
|
||||||
@@ -5764,9 +5797,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
||||||
"version": "7.7.4",
|
"version": "7.8.0",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz",
|
||||||
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
"integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"bin": {
|
"bin": {
|
||||||
"semver": "bin/semver.js"
|
"semver": "bin/semver.js"
|
||||||
@@ -5776,15 +5809,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/utils": {
|
"node_modules/@typescript-eslint/utils": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.3.tgz",
|
||||||
"integrity": "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==",
|
"integrity": "sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint-community/eslint-utils": "^4.9.1",
|
"@eslint-community/eslint-utils": "^4.9.1",
|
||||||
"@typescript-eslint/scope-manager": "8.57.2",
|
"@typescript-eslint/scope-manager": "8.59.3",
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2"
|
"@typescript-eslint/typescript-estree": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -5795,16 +5828,16 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/visitor-keys": {
|
"node_modules/@typescript-eslint/visitor-keys": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.3.tgz",
|
||||||
"integrity": "sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==",
|
"integrity": "sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "8.57.2",
|
"@typescript-eslint/types": "8.59.3",
|
||||||
"eslint-visitor-keys": "^5.0.0"
|
"eslint-visitor-keys": "^5.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -8678,6 +8711,37 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"peer": true
|
"peer": true
|
||||||
},
|
},
|
||||||
|
"node_modules/domelementtype": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-umCQid3jKbDmVjx8jGaW7uUykm4DEUeyV21hPxNMo2nV955DhUThwqyOIDtreepP31hl84X7G5U9ZfsWvIB3Pg==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/fb55"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/domhandler": {
|
||||||
|
"version": "6.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-6.0.1.tgz",
|
||||||
|
"integrity": "sha512-gYzvtM72ZtxQO0T048kd6HWSbbGCNOUwcnfQ01cqIJ4X2IYKFFHZ5mKvrQETcFXxsRObZulDaKmy//R7TPtsBg==",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"dependencies": {
|
||||||
|
"domelementtype": "^3.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/fb55/domhandler?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/dompurify": {
|
"node_modules/dompurify": {
|
||||||
"version": "3.4.2",
|
"version": "3.4.2",
|
||||||
"resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.2.tgz",
|
"resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.2.tgz",
|
||||||
@@ -9195,13 +9259,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint-plugin-lit": {
|
"node_modules/eslint-plugin-lit": {
|
||||||
"version": "2.2.1",
|
"version": "2.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-lit/-/eslint-plugin-lit-2.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-lit/-/eslint-plugin-lit-2.3.1.tgz",
|
||||||
"integrity": "sha512-mnqqwpWF4PBF/YjlGt9mbHwrWCGMtaqdpnqISv3nGcTl8iStaAt9UGieMY3i8vwKfSSWtkEfBZUcRKFGys6yiw==",
|
"integrity": "sha512-wAqDOOWQzUoY5uK124ZR+h7Snx0+KdZd3Knv6133gRHEcu03jbqnouK4GBwVl6PkGOkNy40zSchOp9VbBh4yHg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"parse5": "^6.0.1",
|
"parse5": "^8.0.1",
|
||||||
"parse5-htmlparser2-tree-adapter": "^6.0.1"
|
"parse5-htmlparser2-tree-adapter": "^8.0.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 18"
|
"node": ">= 18"
|
||||||
@@ -9210,11 +9274,29 @@
|
|||||||
"eslint": ">= 8"
|
"eslint": ">= 8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/eslint-plugin-lit/node_modules/entities": {
|
||||||
|
"version": "8.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz",
|
||||||
|
"integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/fb55/entities?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/eslint-plugin-lit/node_modules/parse5": {
|
"node_modules/eslint-plugin-lit/node_modules/parse5": {
|
||||||
"version": "6.0.1",
|
"version": "8.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz",
|
||||||
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
|
"integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"entities": "^8.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint-plugin-react": {
|
"node_modules/eslint-plugin-react": {
|
||||||
"version": "7.37.5",
|
"version": "7.37.5",
|
||||||
@@ -14817,19 +14899,41 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/parse5-htmlparser2-tree-adapter": {
|
"node_modules/parse5-htmlparser2-tree-adapter": {
|
||||||
"version": "6.0.1",
|
"version": "8.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-8.0.1.tgz",
|
||||||
"integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==",
|
"integrity": "sha512-aqkH+xQxX+QGZtP5GIMmqqp16Y0v9muEf2VVeypv35kFsD5bqP1UeBanSshdfjMY+RTh2vN4mmK6nEOVRMEvHg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"parse5": "^6.0.1"
|
"domhandler": "^6.0.1",
|
||||||
|
"parse5": "^8.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/parse5-htmlparser2-tree-adapter/node_modules/entities": {
|
||||||
|
"version": "8.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz",
|
||||||
|
"integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/fb55/entities?sponsor=1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": {
|
"node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": {
|
||||||
"version": "6.0.1",
|
"version": "8.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz",
|
||||||
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
|
"integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==",
|
||||||
"license": "MIT"
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"entities": "^8.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"node_modules/path-data-parser": {
|
"node_modules/path-data-parser": {
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
@@ -18466,15 +18570,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript-eslint": {
|
"node_modules/typescript-eslint": {
|
||||||
"version": "8.57.2",
|
"version": "8.59.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.3.tgz",
|
||||||
"integrity": "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A==",
|
"integrity": "sha512-KgusgyDgG4LI8Ih/sWaCtZ06tckLAS5CvT5A4D1Q7bYVoAAyzwiZvE4BmwDHkhRVkvhRBepKeASoFzQetha7Fg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "8.57.2",
|
"@typescript-eslint/eslint-plugin": "8.59.3",
|
||||||
"@typescript-eslint/parser": "8.57.2",
|
"@typescript-eslint/parser": "8.59.3",
|
||||||
"@typescript-eslint/typescript-estree": "8.57.2",
|
"@typescript-eslint/typescript-estree": "8.59.3",
|
||||||
"@typescript-eslint/utils": "8.57.2"
|
"@typescript-eslint/utils": "8.59.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
@@ -18485,7 +18589,7 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
"typescript": ">=4.8.4 <6.0.0"
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/ufo": {
|
"node_modules/ufo": {
|
||||||
@@ -18568,9 +18672,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/undici-types": {
|
"node_modules/undici-types": {
|
||||||
"version": "7.19.2",
|
"version": "7.21.0",
|
||||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.19.2.tgz",
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.21.0.tgz",
|
||||||
"integrity": "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==",
|
"integrity": "sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/unicorn-magic": {
|
"node_modules/unicorn-magic": {
|
||||||
@@ -19695,14 +19799,14 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@goauthentik/tsconfig": "^1.0.9",
|
"@goauthentik/tsconfig": "^1.0.9",
|
||||||
"@types/node": "^25.6.2",
|
"@types/node": "^25.7.0",
|
||||||
"@types/semver": "^7.7.1",
|
"@types/semver": "^7.7.1",
|
||||||
"semver": "^7.7.4",
|
"semver": "^7.7.4",
|
||||||
"typescript": "^6.0.3"
|
"typescript": "^6.0.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.6.2"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"packages/core/node_modules/semver": {
|
"packages/core/node_modules/semver": {
|
||||||
|
|||||||
+10
-14
@@ -13,7 +13,6 @@
|
|||||||
"format": "wireit",
|
"format": "wireit",
|
||||||
"lint": "eslint --fix .",
|
"lint": "eslint --fix .",
|
||||||
"lint:imports": "knip --config scripts/knip.config.ts",
|
"lint:imports": "knip --config scripts/knip.config.ts",
|
||||||
"lint:lockfile": "wireit",
|
|
||||||
"lint:types": "wireit",
|
"lint:types": "wireit",
|
||||||
"lint-check": "eslint --max-warnings 0 .",
|
"lint-check": "eslint --max-warnings 0 .",
|
||||||
"lit-analyse": "wireit",
|
"lit-analyse": "wireit",
|
||||||
@@ -127,7 +126,7 @@
|
|||||||
"@types/codemirror": "^5.60.17",
|
"@types/codemirror": "^5.60.17",
|
||||||
"@types/grecaptcha": "^3.0.9",
|
"@types/grecaptcha": "^3.0.9",
|
||||||
"@types/guacamole-common-js": "^1.5.5",
|
"@types/guacamole-common-js": "^1.5.5",
|
||||||
"@types/node": "^25.6.2",
|
"@types/node": "^25.7.0",
|
||||||
"@types/react": "^19.2.14",
|
"@types/react": "^19.2.14",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
||||||
@@ -149,7 +148,7 @@
|
|||||||
"dompurify": "^3.4.2",
|
"dompurify": "^3.4.2",
|
||||||
"esbuild": "^0.28.0",
|
"esbuild": "^0.28.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"eslint-plugin-lit": "^2.2.1",
|
"eslint-plugin-lit": "^2.3.1",
|
||||||
"eslint-plugin-wc": "^3.1.0",
|
"eslint-plugin-wc": "^3.1.0",
|
||||||
"fuse.js": "^7.3.0",
|
"fuse.js": "^7.3.0",
|
||||||
"globals": "^17.6.0",
|
"globals": "^17.6.0",
|
||||||
@@ -190,7 +189,7 @@
|
|||||||
"turnstile-types": "^1.2.3",
|
"turnstile-types": "^1.2.3",
|
||||||
"type-fest": "^5.6.0",
|
"type-fest": "^5.6.0",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2",
|
"typescript-eslint": "^8.59.3",
|
||||||
"unist-util-visit": "^5.1.0",
|
"unist-util-visit": "^5.1.0",
|
||||||
"vite": "^8.0.12",
|
"vite": "^8.0.12",
|
||||||
"vitest": "^4.1.6",
|
"vitest": "^4.1.6",
|
||||||
@@ -202,6 +201,7 @@
|
|||||||
"@esbuild/darwin-arm64": "^0.28.0",
|
"@esbuild/darwin-arm64": "^0.28.0",
|
||||||
"@esbuild/linux-arm64": "^0.28.0",
|
"@esbuild/linux-arm64": "^0.28.0",
|
||||||
"@esbuild/linux-x64": "^0.28.0",
|
"@esbuild/linux-x64": "^0.28.0",
|
||||||
|
"@goauthentik/prettier-config-dev": "../packages/prettier-config",
|
||||||
"@rollup/rollup-darwin-arm64": "^4.57.1",
|
"@rollup/rollup-darwin-arm64": "^4.57.1",
|
||||||
"@rollup/rollup-linux-arm64-gnu": "^4.57.1",
|
"@rollup/rollup-linux-arm64-gnu": "^4.57.1",
|
||||||
"@rollup/rollup-linux-x64-gnu": "^4.57.1"
|
"@rollup/rollup-linux-x64-gnu": "^4.57.1"
|
||||||
@@ -266,11 +266,6 @@
|
|||||||
"build-locales"
|
"build-locales"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"lint:lockfile": {
|
|
||||||
"__comment": "The lockfile-lint package does not have an option to ensure resolved hashes are set everywhere",
|
|
||||||
"shell": true,
|
|
||||||
"command": "sh ./scripts/lint-lockfile.sh package-lock.json"
|
|
||||||
},
|
|
||||||
"lit-analyse": {
|
"lit-analyse": {
|
||||||
"command": "lit-analyzer src"
|
"command": "lit-analyzer src"
|
||||||
},
|
},
|
||||||
@@ -279,8 +274,7 @@
|
|||||||
"dependencies": [
|
"dependencies": [
|
||||||
"lint",
|
"lint",
|
||||||
"lint:types",
|
"lint:types",
|
||||||
"lint:components",
|
"lint:components"
|
||||||
"lint:lockfile"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"storybook:build": {
|
"storybook:build": {
|
||||||
@@ -298,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.6.2"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -308,11 +302,12 @@
|
|||||||
},
|
},
|
||||||
"packageManager": {
|
"packageManager": {
|
||||||
"name": "npm",
|
"name": "npm",
|
||||||
"version": "11.10.1",
|
"version": ">=11.14.1",
|
||||||
"onFail": "warn"
|
"onFail": "warn"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"prettier": "@goauthentik/prettier-config",
|
"packageManager": "npm@11.14.1+sha512.6a8a4d67478497a2dbc6815cad72e64c43f33413717e242756047d466241ab39bee61e691683a64658e94496ec5f1a1c05e4a5ec62dcc773280dfd949443a367",
|
||||||
|
"prettier": "./prettier.config.mjs",
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"@goauthentik/esbuild-plugin-live-reload": {
|
"@goauthentik/esbuild-plugin-live-reload": {
|
||||||
"esbuild": "$esbuild",
|
"esbuild": "$esbuild",
|
||||||
@@ -351,6 +346,7 @@
|
|||||||
"rapidoc": {
|
"rapidoc": {
|
||||||
"@apitools/openapi-parser": "0.0.37"
|
"@apitools/openapi-parser": "0.0.37"
|
||||||
},
|
},
|
||||||
|
"tree-sitter": false,
|
||||||
"typescript-eslint": {
|
"typescript-eslint": {
|
||||||
"typescript": "$typescript"
|
"typescript": "$typescript"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -45,13 +45,13 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@goauthentik/tsconfig": "^1.0.9",
|
"@goauthentik/tsconfig": "^1.0.9",
|
||||||
"@types/node": "^25.6.2",
|
"@types/node": "^25.7.0",
|
||||||
"@types/semver": "^7.7.1",
|
"@types/semver": "^7.7.1",
|
||||||
"semver": "^7.7.4",
|
"semver": "^7.7.4",
|
||||||
"typescript": "^6.0.3"
|
"typescript": "^6.0.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.6.2"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* @file Prettier config resolver.
|
||||||
|
*
|
||||||
|
* This file attempts to import the monorepo's local Prettier config package,
|
||||||
|
* falling back to the published version if the local one cannot be found.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const config = await import("@goauthentik/prettier-config-dev")
|
||||||
|
.catch(() => {
|
||||||
|
console.debug("Fallback to published @goauthentik/prettier-config");
|
||||||
|
return import("@goauthentik/prettier-config");
|
||||||
|
})
|
||||||
|
.then((module) => module.default);
|
||||||
|
|
||||||
|
export default config;
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
if ! command -v jq >/dev/null 2>&1 ; then
|
|
||||||
echo "This check requires the jq program be installed."
|
|
||||||
echo "To install jq, visit"
|
|
||||||
echo " https://jqlang.github.io/jq/"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
CMD=$(jq -r '.packages | to_entries[] | select((.key | contains("node_modules")) and (.value | has("resolved") | not)) | .key' < "$1")
|
|
||||||
|
|
||||||
if [ -n "$CMD" ]; then
|
|
||||||
echo "ERROR package-lock.json entries missing 'resolved' field:"
|
|
||||||
echo ""
|
|
||||||
# Shellcheck erroneously believes that shell string substitution can be used here, but that
|
|
||||||
# feature lacks a "start of line" discriminator.
|
|
||||||
# shellcheck disable=SC2001
|
|
||||||
echo "$CMD" | sed 's/^/ /g'
|
|
||||||
echo ""
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
@@ -15,9 +15,6 @@ import { msg } from "@lit/localize";
|
|||||||
import { html } from "lit";
|
import { html } from "lit";
|
||||||
import { guard } from "lit/directives/guard.js";
|
import { guard } from "lit/directives/guard.js";
|
||||||
|
|
||||||
// Fixes horizontal rule <hr> warning in select dropdowns.
|
|
||||||
/* eslint-disable lit/no-invalid-html */
|
|
||||||
|
|
||||||
export interface LocalePromptProps {
|
export interface LocalePromptProps {
|
||||||
activeLanguageTag: TargetLanguageTag;
|
activeLanguageTag: TargetLanguageTag;
|
||||||
prompt: StagePrompt;
|
prompt: StagePrompt;
|
||||||
|
|||||||
+22
-11
@@ -4,20 +4,27 @@ ENV NODE_ENV=production
|
|||||||
|
|
||||||
WORKDIR /work
|
WORKDIR /work
|
||||||
|
|
||||||
# TODO: Use setup-corepack.mjs
|
|
||||||
RUN --mount=type=bind,target=/work/package.json,src=./package.json \
|
|
||||||
--mount=type=bind,target=/work/package-lock.json,src=./package-lock.json \
|
|
||||||
npm install --force -g corepack@latest && \
|
|
||||||
corepack install -g npm@11.11.0+sha512.f36811c4aae1fde639527368ae44c571d050006a608d67a191f195a801a52637a312d259186254aa3a3799b05335b7390539cf28656d18f0591a1125ba35f973 && \
|
|
||||||
corepack enable
|
|
||||||
|
|
||||||
WORKDIR /work/website
|
|
||||||
|
|
||||||
RUN --mount=type=bind,target=/work/package.json,src=./package.json \
|
RUN --mount=type=bind,target=/work/package.json,src=./package.json \
|
||||||
--mount=type=bind,target=/work/package-lock.json,src=./package-lock.json \
|
--mount=type=bind,target=/work/package-lock.json,src=./package-lock.json \
|
||||||
|
--mount=type=bind,target=/work/scripts/node/,src=./scripts/node/ \
|
||||||
|
--mount=type=bind,target=/work/packages/logger-js/,src=./packages/logger-js/ \
|
||||||
--mount=type=bind,target=/work/packages/tsconfig/,src=./packages/tsconfig/ \
|
--mount=type=bind,target=/work/packages/tsconfig/,src=./packages/tsconfig/ \
|
||||||
--mount=type=bind,target=/work/packages/eslint-config/,src=./packages/eslint-config/ \
|
--mount=type=bind,target=/work/packages/eslint-config/,src=./packages/eslint-config/ \
|
||||||
--mount=type=bind,target=/work/packages/prettier-config/,src=./packages/prettier-config/ \
|
--mount=type=bind,target=/work/packages/prettier-config/,src=./packages/prettier-config/ \
|
||||||
|
--mount=type=bind,target=/work/packages/docusaurus-config/,src=./packages/docusaurus-config/ \
|
||||||
|
--mount=type=bind,target=/work/website/package.json,src=./website/package.json \
|
||||||
|
--mount=type=bind,target=/work/website/package-lock.json,src=./website/package-lock.json \
|
||||||
|
node ./scripts/node/setup-corepack.mjs --force && \
|
||||||
|
node ./scripts/node/lint-runtime.mjs ./website
|
||||||
|
|
||||||
|
RUN --mount=type=bind,target=/work/package.json,src=./package.json \
|
||||||
|
--mount=type=bind,target=/work/package-lock.json,src=./package-lock.json \
|
||||||
|
--mount=type=bind,target=/work/scripts/node/,src=./scripts/node/ \
|
||||||
|
--mount=type=bind,target=/work/packages/logger-js/,src=./packages/logger-js/ \
|
||||||
|
--mount=type=bind,target=/work/packages/tsconfig/,src=./packages/tsconfig/ \
|
||||||
|
--mount=type=bind,target=/work/packages/eslint-config/,src=./packages/eslint-config/ \
|
||||||
|
--mount=type=bind,target=/work/packages/prettier-config/,src=./packages/prettier-config/ \
|
||||||
|
--mount=type=bind,target=/work/packages/docusaurus-config/,src=./packages/docusaurus-config/ \
|
||||||
--mount=type=bind,target=/work/website/package.json,src=./website/package.json \
|
--mount=type=bind,target=/work/website/package.json,src=./website/package.json \
|
||||||
--mount=type=bind,target=/work/website/package-lock.json,src=./website/package-lock.json \
|
--mount=type=bind,target=/work/website/package-lock.json,src=./website/package-lock.json \
|
||||||
--mount=type=bind,target=/work/website/vendored/detect-package-manager,src=./website/vendored/detect-package-manager \
|
--mount=type=bind,target=/work/website/vendored/detect-package-manager,src=./website/vendored/detect-package-manager \
|
||||||
@@ -26,7 +33,10 @@ RUN --mount=type=bind,target=/work/package.json,src=./package.json \
|
|||||||
--mount=type=bind,target=/work/website/integrations/package.json,src=./website/integrations/package.json \
|
--mount=type=bind,target=/work/website/integrations/package.json,src=./website/integrations/package.json \
|
||||||
--mount=type=bind,target=/work/website/docs/package.json,src=./website/docs/package.json \
|
--mount=type=bind,target=/work/website/docs/package.json,src=./website/docs/package.json \
|
||||||
--mount=type=cache,id=npm-website,sharing=shared,target=/root/.npm \
|
--mount=type=cache,id=npm-website,sharing=shared,target=/root/.npm \
|
||||||
corepack npm ci --workspaces --include-workspace-root
|
corepack npm ci && \
|
||||||
|
corepack npm ci --workspaces --include-workspace-root --prefix ./website
|
||||||
|
|
||||||
|
WORKDIR /work/website
|
||||||
|
|
||||||
COPY ./website /work/website/
|
COPY ./website /work/website/
|
||||||
COPY ./blueprints /work/blueprints/
|
COPY ./blueprints /work/blueprints/
|
||||||
@@ -34,7 +44,8 @@ COPY ./schema.yml /work/
|
|||||||
COPY ./lifecycle/container/compose.yml /work/lifecycle/container/
|
COPY ./lifecycle/container/compose.yml /work/lifecycle/container/
|
||||||
COPY ./SECURITY.md /work/
|
COPY ./SECURITY.md /work/
|
||||||
|
|
||||||
RUN corepack npm run build
|
RUN --mount=type=bind,target=/work/packages/docusaurus-config/,src=./packages/docusaurus-config/ \
|
||||||
|
corepack npm run build -w docs
|
||||||
|
|
||||||
FROM docker.io/library/nginx:1.29-trixie@sha256:1881968aff6f7cdcc4b888c00a11f4ce241ad7ec957e0cb4a9e19e93a3ff87ea
|
FROM docker.io/library/nginx:1.29-trixie@sha256:1881968aff6f7cdcc4b888c00a11f4ce241ad7ec957e0cb4a9e19e93a3ff87ea
|
||||||
LABEL org.opencontainers.image.authors="Authentik Security Inc." \
|
LABEL org.opencontainers.image.authors="Authentik Security Inc." \
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
[build]
|
[build]
|
||||||
base = "website"
|
base = "website"
|
||||||
package = "api"
|
package = "api"
|
||||||
command = "npm run build -w api"
|
command = "npm ci --prefix ../packages/docusaurus-config && npm run build -w api"
|
||||||
publish = "website/api/build"
|
publish = "website/api/build"
|
||||||
|
|
||||||
[dev]
|
[dev]
|
||||||
|
|||||||
@@ -24,12 +24,12 @@
|
|||||||
"@docusaurus/faster": "^3.10.1",
|
"@docusaurus/faster": "^3.10.1",
|
||||||
"@docusaurus/module-type-aliases": "^3.10.1",
|
"@docusaurus/module-type-aliases": "^3.10.1",
|
||||||
"@docusaurus/plugin-client-redirects": "^3.10.1",
|
"@docusaurus/plugin-client-redirects": "^3.10.1",
|
||||||
"@docusaurus/plugin-content-docs": "^3.9.2",
|
"@docusaurus/plugin-content-docs": "^3.10.1",
|
||||||
"@docusaurus/preset-classic": "^3.10.1",
|
"@docusaurus/preset-classic": "^3.10.1",
|
||||||
"@docusaurus/theme-common": "^3.10.1",
|
"@docusaurus/theme-common": "^3.10.1",
|
||||||
"@docusaurus/tsconfig": "^3.10.1",
|
"@docusaurus/tsconfig": "^3.10.1",
|
||||||
"@docusaurus/types": "^3.9.2",
|
"@docusaurus/types": "^3.10.1",
|
||||||
"@goauthentik/docusaurus-config": "^2.7.0",
|
"@goauthentik/docusaurus-config": "../../packages/docusaurus-config",
|
||||||
"@goauthentik/docusaurus-theme": "*",
|
"@goauthentik/docusaurus-theme": "*",
|
||||||
"@goauthentik/tsconfig": "^1.0.7",
|
"@goauthentik/tsconfig": "^1.0.7",
|
||||||
"@mdx-js/react": "^3.1.1",
|
"@mdx-js/react": "^3.1.1",
|
||||||
@@ -40,12 +40,12 @@
|
|||||||
"docusaurus-theme-openapi-docs": "^5.0.2",
|
"docusaurus-theme-openapi-docs": "^5.0.2",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
"openapi-to-postmanv2": "^6.0.1",
|
"openapi-to-postmanv2": "^6.0.1",
|
||||||
"postman-code-generators": "^2.1.0",
|
"postman-code-generators": "^2.1.1",
|
||||||
"postman-collection": "^5.0.2",
|
"postman-collection": "^5.3.0",
|
||||||
"prism-react-renderer": "^2.4.1",
|
"prism-react-renderer": "^2.4.1",
|
||||||
"react": "^19.2.6",
|
"react": "^19.2.6",
|
||||||
"react-dom": "^19.2.6",
|
"react-dom": "^19.2.6",
|
||||||
"typescript": "^6.0.2"
|
"typescript": "^6.0.3"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@rspack/binding-darwin-arm64": "2.0.0",
|
"@rspack/binding-darwin-arm64": "2.0.0",
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
[build]
|
[build]
|
||||||
base = "website"
|
base = "website"
|
||||||
package = "docs"
|
package = "docs"
|
||||||
command = "npm run build -w docs"
|
command = "npm ci --prefix ../packages/docusaurus-config && npm run build -w docs"
|
||||||
publish = "docs/build"
|
publish = "docs/build"
|
||||||
|
|
||||||
[dev]
|
[dev]
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
"@docusaurus/preset-classic": "^3.10.1",
|
"@docusaurus/preset-classic": "^3.10.1",
|
||||||
"@docusaurus/theme-mermaid": "^3.10.1",
|
"@docusaurus/theme-mermaid": "^3.10.1",
|
||||||
"@docusaurus/tsconfig": "^3.10.1",
|
"@docusaurus/tsconfig": "^3.10.1",
|
||||||
"@docusaurus/types": "^3.9.2",
|
"@docusaurus/types": "^3.10.1",
|
||||||
"@goauthentik/docusaurus-config": "^2.7.0",
|
"@goauthentik/docusaurus-config": "../../packages/docusaurus-config",
|
||||||
"@goauthentik/docusaurus-theme": "*",
|
"@goauthentik/docusaurus-theme": "*",
|
||||||
"@iconify-json/fa7-regular": "^1.2.2",
|
"@iconify-json/fa7-regular": "^1.2.2",
|
||||||
"@iconify-json/fa7-solid": "^1.2.3",
|
"@iconify-json/fa7-solid": "^1.2.3",
|
||||||
@@ -33,11 +33,11 @@
|
|||||||
"react": "^19.2.6",
|
"react": "^19.2.6",
|
||||||
"react-before-after-slider-component": "^1.1.8",
|
"react-before-after-slider-component": "^1.1.8",
|
||||||
"react-dom": "^19.2.6",
|
"react-dom": "^19.2.6",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"unist-util-visit": "^5.0.0"
|
"unist-util-visit": "^5.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.6.2"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,14 +28,14 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@docusaurus/preset-classic": "^3.10.1",
|
"@docusaurus/preset-classic": "^3.10.1",
|
||||||
"@goauthentik/docusaurus-config": "^2.7.0",
|
"@goauthentik/docusaurus-config": "../../packages/docusaurus-config",
|
||||||
"@types/semver": "^7.7.1",
|
"@types/semver": "^7.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"fast-glob": "^3.3.3",
|
"fast-glob": "^3.3.3",
|
||||||
"remark-directive": "^4.0.0",
|
"remark-directive": "^4.0.0",
|
||||||
"remark-github": "^12.0.0",
|
"remark-github": "^12.0.0",
|
||||||
"semver": "^7.7.3",
|
"semver": "^7.7.3",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"unist-util-visit": "^5.0.0"
|
"unist-util-visit": "^5.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
[build]
|
[build]
|
||||||
base = "website"
|
base = "website"
|
||||||
package = "integrations"
|
package = "integrations"
|
||||||
command = "npm run build -w integrations"
|
command = "npm ci --prefix ../packages/docusaurus-config && npm run build -w integrations"
|
||||||
publish = "integrations/build"
|
publish = "integrations/build"
|
||||||
|
|
||||||
[dev]
|
[dev]
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"@docusaurus/preset-classic": "^3.10.1",
|
"@docusaurus/preset-classic": "^3.10.1",
|
||||||
"@docusaurus/theme-mermaid": "^3.10.1",
|
"@docusaurus/theme-mermaid": "^3.10.1",
|
||||||
"@docusaurus/tsconfig": "^3.10.1",
|
"@docusaurus/tsconfig": "^3.10.1",
|
||||||
"@docusaurus/types": "^3.9.2",
|
"@docusaurus/types": "^3.10.1",
|
||||||
"@goauthentik/docusaurus-config": "^2.6.0",
|
"@goauthentik/docusaurus-config": "../../packages/docusaurus-config",
|
||||||
"@goauthentik/docusaurus-theme": "*",
|
"@goauthentik/docusaurus-theme": "*",
|
||||||
"@mdx-js/react": "^3.1.1",
|
"@mdx-js/react": "^3.1.1",
|
||||||
"@types/react": "^19.2.14",
|
"@types/react": "^19.2.14",
|
||||||
@@ -27,10 +27,10 @@
|
|||||||
"prism-react-renderer": "^2.4.1",
|
"prism-react-renderer": "^2.4.1",
|
||||||
"react": "^19.2.6",
|
"react": "^19.2.6",
|
||||||
"react-dom": "^19.2.6",
|
"react-dom": "^19.2.6",
|
||||||
"typescript": "^6.0.2"
|
"typescript": "^6.0.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.6.2"
|
"npm": ">=11.14.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+1337
-1385
File diff suppressed because it is too large
Load Diff
+25
-28
@@ -10,7 +10,6 @@
|
|||||||
"check-types": "tsc -b",
|
"check-types": "tsc -b",
|
||||||
"docusaurus": "docusaurus",
|
"docusaurus": "docusaurus",
|
||||||
"lint": "eslint --fix .",
|
"lint": "eslint --fix .",
|
||||||
"lint:lockfile": "echo 'Skipping lockfile linting'",
|
|
||||||
"lint-check": "eslint --max-warnings 0 .",
|
"lint-check": "eslint --max-warnings 0 .",
|
||||||
"prettier": "prettier --write .",
|
"prettier": "prettier --write .",
|
||||||
"prettier-check": "npm run prettier-prepare && prettier --check .",
|
"prettier-check": "npm run prettier-prepare && prettier --check .",
|
||||||
@@ -23,22 +22,23 @@
|
|||||||
"@goauthentik/eslint-config": "../packages/eslint-config",
|
"@goauthentik/eslint-config": "../packages/eslint-config",
|
||||||
"@goauthentik/prettier-config": "../packages/prettier-config",
|
"@goauthentik/prettier-config": "../packages/prettier-config",
|
||||||
"@goauthentik/tsconfig": "../packages/tsconfig",
|
"@goauthentik/tsconfig": "../packages/tsconfig",
|
||||||
"@types/node": "^25.5.0",
|
"@types/node": "^25.7.0",
|
||||||
|
"deepmerge-ts": "^7.1.5",
|
||||||
"escape-string-regexp": "^5.0.0",
|
"escape-string-regexp": "^5.0.0",
|
||||||
"eslint": "^9.39.3",
|
"eslint": "^9.39.3",
|
||||||
"netlify-plugin-cache": "^1.0.3",
|
"netlify-plugin-cache": "^1.0.3",
|
||||||
"netlify-redirect-parser": "^14.4.0",
|
"netlify-redirect-parser": "^14.4.0",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
"postman-code-generators": "2.1.0",
|
"postman-code-generators": "2.1.1",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.3",
|
||||||
"prettier-plugin-packagejson": "^3.0.2",
|
"prettier-plugin-packagejson": "^3.0.2",
|
||||||
"typescript": "^6.0.2",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.57.2"
|
"typescript-eslint": "^8.59.3"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@rspack/binding-darwin-arm64": "2.0.0",
|
"@rspack/binding-darwin-arm64": "2.0.3",
|
||||||
"@rspack/binding-linux-arm64-gnu": "2.0.0",
|
"@rspack/binding-linux-arm64-gnu": "2.0.3",
|
||||||
"@rspack/binding-linux-x64-gnu": "2.0.0",
|
"@rspack/binding-linux-x64-gnu": "2.0.3",
|
||||||
"@swc/core-darwin-arm64": "1.15.33",
|
"@swc/core-darwin-arm64": "1.15.33",
|
||||||
"@swc/core-linux-arm64-gnu": "1.15.33",
|
"@swc/core-linux-arm64-gnu": "1.15.33",
|
||||||
"@swc/core-linux-x64-gnu": "1.15.33",
|
"@swc/core-linux-x64-gnu": "1.15.33",
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=24",
|
"node": ">=24",
|
||||||
"npm": ">=11.10.1"
|
"npm": ">=11.14.1"
|
||||||
},
|
},
|
||||||
"devEngines": {
|
"devEngines": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -72,36 +72,30 @@
|
|||||||
"onFail": "warn"
|
"onFail": "warn"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"packageManager": "npm@11.11.0+sha512.f36811c4aae1fde639527368ae44c571d050006a608d67a191f195a801a52637a312d259186254aa3a3799b05335b7390539cf28656d18f0591a1125ba35f973",
|
"packageManager": "npm@11.14.1+sha512.6a8a4d67478497a2dbc6815cad72e64c43f33413717e242756047d466241ab39bee61e691683a64658e94496ec5f1a1c05e4a5ec62dcc773280dfd949443a367",
|
||||||
"prettier": "@goauthentik/prettier-config",
|
"prettier": "@goauthentik/prettier-config",
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"@goauthentik/api-docs": {
|
"@goauthentik/docusaurus-config": {
|
||||||
"openapi-to-postmanv2": "^5.0.0",
|
"react": "$react",
|
||||||
"postman-collection": "^5.0.2",
|
"react-dom": "$react-dom",
|
||||||
"postman-code-generators": {
|
"@docusaurus/theme-common": "$@docusaurus/theme-common"
|
||||||
"detect-package-manager": "file:./vendored/detect-package-manager",
|
},
|
||||||
"shelljs": "0.10.0"
|
"@goauthentik/eslint-config": {
|
||||||
},
|
"typescript": "$typescript"
|
||||||
"docusaurus-theme-openapi-docs": {
|
|
||||||
"postman-code-generators": {
|
|
||||||
".": "^2.1.0",
|
|
||||||
"detect-package-manager": "file:./vendored/detect-package-manager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"@goauthentik/prettier-config": {
|
"@goauthentik/prettier-config": {
|
||||||
"prettier": "$prettier",
|
"prettier": "$prettier",
|
||||||
"prettier-plugin-packagejson": "$prettier-plugin-packagejson"
|
"prettier-plugin-packagejson": "$prettier-plugin-packagejson"
|
||||||
},
|
},
|
||||||
"@typescript-eslint/eslint-plugin": {
|
"@typescript-eslint/parser": {
|
||||||
"typescript": "$typescript"
|
"typescript": "$typescript"
|
||||||
},
|
},
|
||||||
"@typescript-eslint/parser": {
|
"@typescript-eslint/utils": {
|
||||||
"typescript": "$typescript"
|
"typescript": "$typescript"
|
||||||
},
|
},
|
||||||
"docusaurus-theme-openapi-docs": {
|
"docusaurus-theme-openapi-docs": {
|
||||||
"postman-code-generators": {
|
"postman-code-generators": {
|
||||||
".": "^1.10.1",
|
".": "^2.1.1",
|
||||||
"detect-package-manager": "file:./vendored/detect-package-manager",
|
"detect-package-manager": "file:./vendored/detect-package-manager",
|
||||||
"shelljs": "0.10.0"
|
"shelljs": "0.10.0"
|
||||||
}
|
}
|
||||||
@@ -109,12 +103,15 @@
|
|||||||
"format-imports": {
|
"format-imports": {
|
||||||
"eslint": "$eslint"
|
"eslint": "$eslint"
|
||||||
},
|
},
|
||||||
|
"lodash": "^4.18.1",
|
||||||
"postman-code-generators": {
|
"postman-code-generators": {
|
||||||
"detect-package-manager": "file:./vendored/detect-package-manager",
|
"detect-package-manager": "file:./vendored/detect-package-manager",
|
||||||
"shelljs": "0.10.0"
|
"shelljs": "0.10.0"
|
||||||
},
|
},
|
||||||
|
"postman-collection": "^5.3.0",
|
||||||
"typescript-eslint": {
|
"typescript-eslint": {
|
||||||
"typescript": "$typescript"
|
"typescript": "$typescript"
|
||||||
}
|
},
|
||||||
|
"uuid": "^14.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user