From c50c1e0a4033b805b4cdada25d25c6f7251809ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Muller?= Date: Tue, 20 Feb 2024 16:25:19 +0100 Subject: [PATCH] Create Tech Radar --- .github/workflows/tech_radar.yml | 134 + public/_sidebar.md | 5 + public/techRadar/used_dependencies.md | 4793 +++++++++++++++++++++++++ public/techRadar/used_languages.md | 88 + techRadar/used_languages.tmpl | 13 + 5 files changed, 5033 insertions(+) create mode 100644 .github/workflows/tech_radar.yml create mode 100644 public/techRadar/used_dependencies.md create mode 100644 public/techRadar/used_languages.md create mode 100644 techRadar/used_languages.tmpl diff --git a/.github/workflows/tech_radar.yml b/.github/workflows/tech_radar.yml new file mode 100644 index 0000000..64cbb69 --- /dev/null +++ b/.github/workflows/tech_radar.yml @@ -0,0 +1,134 @@ +name: Update Tech Radar + +on: + push: + schedule: + - cron: '0 0 * * *' + +jobs: + update_tech_radar: + runs-on: ubuntu-latest + name: Update Tech Radar + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install gomplate + run: npm install -g gomplate + + - name: Get the list of repositories + id: repository_list + env: + GH_TOKEN: ${{ github.token }} + run: > + echo repository_list_json=$( + gh repo list ${{ github.repository_owner }} + --limit 1000 + --source + --no-archived + --visibility public + --json name,nameWithOwner,primaryLanguage,url + --jq '. | tostring' + ) >> $GITHUB_OUTPUT + + - name: Update the list of used languages + run: > + echo ${{ toJSON(steps.repository_list.outputs.repository_list_json) }} + | jq '. | reduce .[] as { $name, $primaryLanguage, $url } ( {}; .[ $primaryLanguage.name | tostring ][$name] = $url )' + | gomplate -d repositories=stdin:///in.json -f techRadar/used_languages.tmpl -o public/techRadar/used_languages.md + + - name: Update the list of used dependencies + env: + GH_TOKEN: ${{ github.token }} + run: | + repository_names=$( + echo ${{ toJSON(steps.repository_list.outputs.repository_list_json) }} \ + | jq -r '.[] | .nameWithOwner' + ) + + # Folder where temporary data will be stored + mkdir -p .packageManagers + + # Load all the dependencies data + for name in $repository_names; do + # Get the list of dependencies by package manager + echo -e "→ Extracting the dependencies of $name." + + dependencies=$( + gh api \ + -H 'Accept: application/vnd.github+json' \ + -H 'X-GitHub-Api-Version: 2022-11-28' \ + /repos/$name/dependency-graph/sbom \ + --jq '[ .sbom.packages.[] | { name: .name | sub("[a-zA-Z.]+[:/](?.*)"; "\(.package)"), packageManager: .name | capture("(?[a-zA-Z.]+)[:/]").packageManager, version: .versionInfo } ] | reduce .[] as { $name, $packageManager, $version } ( {}; .[ $packageManager ] += [ $name + " v" + $version ] )' \ + 2>/dev/null + ) + + if [ $? -ne 0 ]; then + echo -e "← $name doesn't have Dependency Graph enabled." + echo $name >> .packageManagers/unknown + continue + fi + + # Extract the list of package managers + packageManagers=$( + echo $dependencies \ + | jq -r '. | keys[]' + ) + + # Store the dependencies by package manager in specific files + packageManagersCount=$(echo $dependencies | jq '. | keys | length') + dependenciesCount=$(echo $dependencies | jq '. | reduce .[] as $item (0; . + ($item | length))') + for packageManager in $packageManagers; do + if [[ $packageManager != "com.github.SRGSSR" ]]; then + echo $dependencies | jq -r ".$packageManager[]" >> .packageManagers/$packageManager + fi + done + + echo -e "← Extracted $dependenciesCount dependencies from $packageManagersCount package managers for $name." + done + + # Filter the resulting dependencies + for file in $(ls .packageManagers); do + if [[ -s .packageManagers/$file ]]; then + cat .packageManagers/$file | sort | uniq > .packageManagers/${file}_sorted + mv .packageManagers/${file}_sorted .packageManagers/$file + else + rm .packageManagers/$file + fi + done + + # Update the Markdown file with the extracted data + markdown_file="public/techRadar/used_dependencies.md" + + echo -e "# Used dependencies\n" > $markdown_file + + for file in $(ls .packageManagers); do + echo -e "## $file\n" >> $markdown_file + + if [[ $file == "unknown" ]]; then + echo -e "> [!WARNING]" >> $markdown_file + echo -e "> The following repositories didn't enable Dependency Graph." >> $markdown_file + echo -e "> It can be enabled by clicking on the corresponding link below.\n" >> $markdown_file + fi + + while read -r line; do + if [[ $file == "unknown" ]]; then + echo -e "- [$line](https://github.com/$line) ([enable Dependency Graph](https://github.com/$line/network/dependencies))" >> $markdown_file + else + echo -e "- `$line`" >> $markdown_file + fi + done < .packageManagers/$file + + echo -e "" >> $markdown_file + done + + - name: Commit the list of changes + run: | + if [ `git ls-files -m | wc -l` -gt 0 ]; then + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add public/techRadar/used_languages.md + git add public/techRadar/used_dependencies.md + git commit -m "Update Tech Radar" + git push + fi diff --git a/public/_sidebar.md b/public/_sidebar.md index ebb0d25..8306ad5 100644 --- a/public/_sidebar.md +++ b/public/_sidebar.md @@ -8,3 +8,8 @@ * [Understanding Licenses](/guides/LICENSE_GUIDE.md) * [Contributor's Handbook](/guides/CONTRIBUTING_GUIDE.md) * [Code of Conduct Guidelines](/guides/CODE_OF_CONDUCT_GUIDE.md) + +**Tech Radar** + +* [Used languages](/techRadar/used_languages.md) +* [Used dependencies](/techRadar/used_dependencies.md) diff --git a/public/techRadar/used_dependencies.md b/public/techRadar/used_dependencies.md new file mode 100644 index 0000000..fee487a --- /dev/null +++ b/public/techRadar/used_dependencies.md @@ -0,0 +1,4793 @@ +# Used dependencies + +## actions + +- ArtiomTr/jest-coverage-report-action v2 +- JamesIves/github-pages-deploy-action vreleases/v4 +- WyriHaximus/github-action-get-previous-tag v1 +- actions/cache v3 +- actions/checkout v3 +- actions/checkout v3.*.* +- actions/checkout v4 +- actions/checkout v4.*.* +- actions/download-artifact v3 +- actions/setup-java v3 +- actions/setup-java v4 +- actions/setup-node v3 +- actions/setup-node v3.*.* +- actions/stale v8 +- actions/upload-artifact v3 +- actions/upload-artifact v4 +- alaegin/Detekt-Action v1.22.0 +- crowdin/github-action v1 +- dvdandroid/action-android-lint vmaster +- everlytic/branch-merge v1.1.2 +- github/codeql-action/upload-sarif v3 +- gradle/actions/dependency-submission v3 +- gradle/actions/setup-gradle v3 +- gradle/gradle-build-action v2 +- gradle/gradle-build-action v2.3.3 +- gradle/gradle-build-action v2.8.0 +- gradle/wrapper-validation-action v1 +- gradle/wrapper-validation-action v2.*.* +- madrapps/jacoco-report v1.6.1 +- ncipollo/release-action v1 +- phips28/gh-action-bump-version vmaster +- reactivecircus/android-emulator-runner v2 +- reviewdog/action-setup v1 +- rossjrw/pr-preview-action v1.*.* +- softprops/action-gh-release v1 +- thollander/actions-comment-pull-request v1 +- wzieba/Firebase-Distribution-Github-Action v1 + +## maven + +- androidx.activity:activity v1.2.4 +- androidx.activity:activity v1.7.0 +- androidx.activity:activity v1.7.1 +- androidx.activity:activity v1.8.2 +- androidx.activity:activity-compose v1.7.0 +- androidx.activity:activity-compose v1.8.2 +- androidx.activity:activity-ktx v1.7.0 +- androidx.activity:activity-ktx v1.7.1 +- androidx.activity:activity-ktx v1.8.2 +- androidx.ads:ads-identifier v1.0.0-alpha01 +- androidx.ads:ads-identifier-common v1.0.0-alpha01 +- androidx.annotation:annotation v1.2.0 +- androidx.annotation:annotation v1.3.0 +- androidx.annotation:annotation v1.7.0 +- androidx.annotation:annotation v1.7.1 +- androidx.annotation:annotation-experimental v1.1.0 +- androidx.annotation:annotation-experimental v1.3.1 +- androidx.annotation:annotation-experimental v1.4.0 +- androidx.annotation:annotation-jvm v1.7.0 +- androidx.annotation:annotation-jvm v1.7.1 +- androidx.appcompat:appcompat v1.4.1 +- androidx.appcompat:appcompat v1.6.1 +- androidx.appcompat:appcompat-resources v1.4.1 +- androidx.appcompat:appcompat-resources v1.6.1 +- androidx.arch.core:core-common v2.1.0 +- androidx.arch.core:core-common v2.2.0 +- androidx.arch.core:core-runtime v2.0.0 +- androidx.arch.core:core-runtime v2.1.0 +- androidx.arch.core:core-runtime v2.2.0 +- androidx.asynclayoutinflater:asynclayoutinflater v1.0.0 +- androidx.autofill:autofill v1.0.0 +- androidx.collection:collection v1.0.0 +- androidx.collection:collection v1.1.0 +- androidx.collection:collection v1.2.0 +- androidx.collection:collection v1.4.0 +- androidx.collection:collection-jvm v1.4.0 +- androidx.collection:collection-ktx v1.4.0 +- androidx.compose.animation:animation v1.6.1 +- androidx.compose.animation:animation-android v1.6.1 +- androidx.compose.animation:animation-core v1.6.1 +- androidx.compose.animation:animation-core-android v1.6.1 +- androidx.compose.compiler:compiler v1.5.9 +- androidx.compose.foundation:foundation v1.6.1 +- androidx.compose.foundation:foundation-android v1.6.1 +- androidx.compose.foundation:foundation-layout v1.6.1 +- androidx.compose.foundation:foundation-layout-android v1.6.1 +- androidx.compose.material3:material3 v1.2.0 +- androidx.compose.material3:material3-android v1.2.0 +- androidx.compose.material:material v1.6.1 +- androidx.compose.material:material-android v1.6.1 +- androidx.compose.material:material-icons-core v1.6.1 +- androidx.compose.material:material-icons-core-android v1.6.1 +- androidx.compose.material:material-icons-extended v1.6.1 +- androidx.compose.material:material-icons-extended-android v1.6.1 +- androidx.compose.material:material-ripple v1.6.1 +- androidx.compose.material:material-ripple-android v1.6.1 +- androidx.compose.runtime:runtime v1.6.1 +- androidx.compose.runtime:runtime-android v1.6.1 +- androidx.compose.runtime:runtime-saveable v1.6.1 +- androidx.compose.runtime:runtime-saveable-android v1.6.1 +- androidx.compose.ui:ui v1.6.1 +- androidx.compose.ui:ui-android v1.6.1 +- androidx.compose.ui:ui-geometry v1.6.1 +- androidx.compose.ui:ui-geometry-android v1.6.1 +- androidx.compose.ui:ui-graphics v1.6.1 +- androidx.compose.ui:ui-graphics-android v1.6.1 +- androidx.compose.ui:ui-text v1.6.1 +- androidx.compose.ui:ui-text-android v1.6.1 +- androidx.compose.ui:ui-tooling v1.6.1 +- androidx.compose.ui:ui-tooling-android v1.6.1 +- androidx.compose.ui:ui-tooling-data v1.6.1 +- androidx.compose.ui:ui-tooling-data-android v1.6.1 +- androidx.compose.ui:ui-tooling-preview v1.6.1 +- androidx.compose.ui:ui-tooling-preview-android v1.6.1 +- androidx.compose.ui:ui-unit v1.6.1 +- androidx.compose.ui:ui-unit-android v1.6.1 +- androidx.compose.ui:ui-util v1.6.1 +- androidx.compose.ui:ui-util-android v1.6.1 +- androidx.compose:compose-bom v2024.02.00 +- androidx.concurrent:concurrent-futures v1.0.0 +- androidx.concurrent:concurrent-futures v1.0.0-beta01 +- androidx.concurrent:concurrent-futures v1.1.0 +- androidx.coordinatorlayout:coordinatorlayout v1.0.0 +- androidx.core:core v1.12.0 +- androidx.core:core v1.7.0 +- androidx.core:core v1.8.0 +- androidx.core:core v1.9.0 +- androidx.core:core-ktx v1.12.0 +- androidx.core:core-ktx v1.2.0 +- androidx.core:core-ktx v1.9.0 +- androidx.cursoradapter:cursoradapter v1.0.0 +- androidx.customview:customview v1.0.0 +- androidx.customview:customview-poolingcontainer v1.0.0 +- androidx.databinding:databinding-common v8.2.2 +- androidx.databinding:databinding-compiler-common v8.2.2 +- androidx.documentfile:documentfile v1.0.0 +- androidx.drawerlayout:drawerlayout v1.0.0 +- androidx.emoji2:emoji2 v1.0.0 +- androidx.emoji2:emoji2 v1.2.0 +- androidx.emoji2:emoji2 v1.3.0 +- androidx.emoji2:emoji2-views-helper v1.0.0 +- androidx.emoji2:emoji2-views-helper v1.3.0 +- androidx.exifinterface:exifinterface v1.3.6 +- androidx.fragment:fragment v1.3.6 +- androidx.fragment:fragment v1.6.2 +- androidx.interpolator:interpolator v1.0.0 +- androidx.leanback:leanback v1.0.0 +- androidx.legacy:legacy-support-core-ui v1.0.0 +- androidx.legacy:legacy-support-core-utils v1.0.0 +- androidx.lifecycle:lifecycle-common v2.3.1 +- androidx.lifecycle:lifecycle-common v2.4.0 +- androidx.lifecycle:lifecycle-common v2.7.0 +- androidx.lifecycle:lifecycle-common-java8 v2.7.0 +- androidx.lifecycle:lifecycle-extensions v2.2.0 +- androidx.lifecycle:lifecycle-livedata v2.0.0 +- androidx.lifecycle:lifecycle-livedata v2.2.0 +- androidx.lifecycle:lifecycle-livedata v2.7.0 +- androidx.lifecycle:lifecycle-livedata-core v2.3.1 +- androidx.lifecycle:lifecycle-livedata-core v2.7.0 +- androidx.lifecycle:lifecycle-livedata-core-ktx v2.7.0 +- androidx.lifecycle:lifecycle-livedata-ktx v2.7.0 +- androidx.lifecycle:lifecycle-process v2.4.0 +- androidx.lifecycle:lifecycle-process v2.7.0 +- androidx.lifecycle:lifecycle-runtime v2.3.1 +- androidx.lifecycle:lifecycle-runtime v2.4.0 +- androidx.lifecycle:lifecycle-runtime v2.7.0 +- androidx.lifecycle:lifecycle-runtime-compose v2.7.0 +- androidx.lifecycle:lifecycle-runtime-ktx v2.7.0 +- androidx.lifecycle:lifecycle-service v2.2.0 +- androidx.lifecycle:lifecycle-service v2.7.0 +- androidx.lifecycle:lifecycle-viewmodel v2.3.1 +- androidx.lifecycle:lifecycle-viewmodel v2.7.0 +- androidx.lifecycle:lifecycle-viewmodel-compose v2.7.0 +- androidx.lifecycle:lifecycle-viewmodel-ktx v2.7.0 +- androidx.lifecycle:lifecycle-viewmodel-savedstate v2.3.1 +- androidx.lifecycle:lifecycle-viewmodel-savedstate v2.7.0 +- androidx.loader:loader v1.0.0 +- androidx.localbroadcastmanager:localbroadcastmanager v1.0.0 +- androidx.media3:media3-common v1.2.1 +- androidx.media3:media3-container v1.2.1 +- androidx.media3:media3-database v1.2.1 +- androidx.media3:media3-datasource v1.2.1 +- androidx.media3:media3-decoder v1.2.1 +- androidx.media3:media3-exoplayer v1.2.1 +- androidx.media3:media3-exoplayer-dash v1.2.1 +- androidx.media3:media3-exoplayer-hls v1.2.1 +- androidx.media3:media3-extractor v1.2.1 +- androidx.media3:media3-session v1.2.1 +- androidx.media3:media3-test-utils v1.2.1 +- androidx.media3:media3-test-utils-robolectric v1.2.1 +- androidx.media3:media3-ui v1.2.1 +- androidx.media3:media3-ui-leanback v1.2.1 +- androidx.media:media v1.0.0 +- androidx.media:media v1.7.0 +- androidx.navigation:navigation-common v2.7.7 +- androidx.navigation:navigation-common-ktx v2.7.7 +- androidx.navigation:navigation-compose v2.7.7 +- androidx.navigation:navigation-runtime v2.7.7 +- androidx.navigation:navigation-runtime-ktx v2.7.7 +- androidx.paging:paging-common v3.2.0 +- androidx.paging:paging-common v3.2.1 +- androidx.paging:paging-common-ktx v3.2.0 +- androidx.paging:paging-common-ktx v3.2.1 +- androidx.paging:paging-compose v3.2.1 +- androidx.paging:paging-runtime v3.2.0 +- androidx.paging:paging-runtime v3.2.1 +- androidx.paging:paging-runtime-ktx v3.2.0 +- androidx.paging:paging-runtime-ktx v3.2.1 +- androidx.print:print v1.0.0 +- androidx.profileinstaller:profileinstaller v1.3.0 +- androidx.profileinstaller:profileinstaller v1.3.1 +- androidx.recyclerview:recyclerview v1.0.0 +- androidx.recyclerview:recyclerview v1.2.1 +- androidx.recyclerview:recyclerview v1.3.0 +- androidx.resourceinspection:resourceinspection-annotation v1.0.0 +- androidx.resourceinspection:resourceinspection-annotation v1.0.1 +- androidx.savedstate:savedstate v1.1.0 +- androidx.savedstate:savedstate v1.2.1 +- androidx.savedstate:savedstate-ktx v1.2.1 +- androidx.slidingpanelayout:slidingpanelayout v1.0.0 +- androidx.startup:startup-runtime v1.0.0 +- androidx.startup:startup-runtime v1.1.1 +- androidx.swiperefreshlayout:swiperefreshlayout v1.0.0 +- androidx.test.espresso:espresso-idling-resource v3.5.1 +- androidx.test.ext:junit v1.1.5 +- androidx.test.ext:truth v1.5.0 +- androidx.test.services:storage v1.4.2 +- androidx.test:annotation v1.0.1 +- androidx.test:core v1.5.0 +- androidx.test:monitor v1.6.1 +- androidx.test:runner v1.5.2 +- androidx.tracing:tracing v1.0.0 +- androidx.tv:tv-foundation v1.0.0-alpha10 +- androidx.tv:tv-material v1.0.0-alpha10 +- androidx.vectordrawable:vectordrawable v1.1.0 +- androidx.vectordrawable:vectordrawable-animated v1.1.0 +- androidx.versionedparcelable:versionedparcelable v1.1.1 +- androidx.viewpager:viewpager v1.0.0 +- app.cash.turbine:turbine v1.0.0 +- app.cash.turbine:turbine-jvm v1.0.0 +- ch.srf.integrationlayer:integrationlayer-domain-objects v1.20.272 +- ch.srg.data.provider:data v0.8.0 +- ch.srg.data.provider:dataprovider-paging v0.8.0 +- ch.srg.data.provider:dataprovider-retrofit v0.8.0 +- com.almworks.sqlite4java:sqlite4java v1.0.392 +- com.android.databinding:baselibrary v8.2.2 +- com.android.tools.analytics-library:crash v31.2.2 +- com.android.tools.analytics-library:protos v31.2.2 +- com.android.tools.analytics-library:shared v31.2.2 +- com.android.tools.analytics-library:tracker v31.2.2 +- com.android.tools.build.jetifier:jetifier-core v1.0.0-beta10 +- com.android.tools.build.jetifier:jetifier-processor v1.0.0-beta10 +- com.android.tools.build:aapt2-proto v8.2.2-10154469 +- com.android.tools.build:aaptcompiler v8.2.2 +- com.android.tools.build:apksig v8.2.2 +- com.android.tools.build:apkzlib v8.2.2 +- com.android.tools.build:builder v8.2.2 +- com.android.tools.build:builder-model v8.2.2 +- com.android.tools.build:builder-test-api v8.2.2 +- com.android.tools.build:bundletool v1.15.2 +- com.android.tools.build:gradle v8.2.2 +- com.android.tools.build:gradle-api v8.2.2 +- com.android.tools.build:gradle-settings-api v8.2.2 +- com.android.tools.build:manifest-merger v31.2.2 +- com.android.tools.build:transform-api v2.0.0-deprecated-use-gradle-api +- com.android.tools.ddms:ddmlib v31.2.2 +- com.android.tools.emulator:proto v31.2.2 +- com.android.tools.layoutlib:layoutlib-api v31.2.2 +- com.android.tools.lint:lint-model v31.2.2 +- com.android.tools.lint:lint-typedef-remover v31.2.2 +- com.android.tools.utp:android-device-provider-ddmlib v31.2.2 +- com.android.tools.utp:android-device-provider-ddmlib-proto v31.2.2 +- com.android.tools.utp:android-device-provider-gradle v31.2.2 +- com.android.tools.utp:android-device-provider-gradle-proto v31.2.2 +- com.android.tools.utp:android-test-plugin-host-additional-test-output v31.2.2 +- com.android.tools.utp:android-test-plugin-host-additional-test-output-proto v31.2.2 +- com.android.tools.utp:android-test-plugin-host-apk-installer v31.2.2 +- com.android.tools.utp:android-test-plugin-host-apk-installer-proto v31.2.2 +- com.android.tools.utp:android-test-plugin-host-coverage v31.2.2 +- com.android.tools.utp:android-test-plugin-host-coverage-proto v31.2.2 +- com.android.tools.utp:android-test-plugin-host-device-info v31.2.2 +- com.android.tools.utp:android-test-plugin-host-device-info-proto v31.2.2 +- com.android.tools.utp:android-test-plugin-host-emulator-control v31.2.2 +- com.android.tools.utp:android-test-plugin-host-emulator-control-proto v31.2.2 +- com.android.tools.utp:android-test-plugin-host-logcat v31.2.2 +- com.android.tools.utp:android-test-plugin-host-logcat-proto v31.2.2 +- com.android.tools.utp:android-test-plugin-host-retention v31.2.2 +- com.android.tools.utp:android-test-plugin-host-retention-proto v31.2.2 +- com.android.tools.utp:android-test-plugin-result-listener-gradle v31.2.2 +- com.android.tools.utp:android-test-plugin-result-listener-gradle-proto v31.2.2 +- com.android.tools:annotations v31.2.2 +- com.android.tools:common v31.2.2 +- com.android.tools:dvlib v31.2.2 +- com.android.tools:repository v31.2.2 +- com.android.tools:sdk-common v31.2.2 +- com.android.tools:sdklib v31.2.2 +- com.android:signflinger v8.2.2 +- com.android:zipflinger v8.2.2 +- com.autonomousapps:antlr v4.10.1.6 +- com.autonomousapps:asm-relocated v9.6.0.1 +- com.autonomousapps:dependency-analysis-gradle-plugin v1.29.0 +- com.autonomousapps:graph-support v0.2 +- com.beust:jcommander v1.82 +- com.comscore:android-analytics v6.10.0 +- com.github.ben-manes.caffeine:caffeine v3.1.0 +- com.github.eirslett:frontend-maven-plugin v1.6 +- com.google.accompanist:accompanist-drawablepainter v0.32.0 +- com.google.accompanist:accompanist-navigation-material v0.34.0 +- com.google.android:annotations v4.1.1.4 +- com.google.api.grpc:proto-google-common-protos v2.0.1 +- com.google.auto.value:auto-value-annotations v1.10.1 +- com.google.auto.value:auto-value-annotations v1.10.4 +- com.google.auto.value:auto-value-annotations v1.6.2 +- com.google.auto.value:auto-value-annotations v1.6.3 +- com.google.auto.value:auto-value-annotations v1.8.1 +- com.google.code.findbugs:jsr305 v2.0.2 +- com.google.code.findbugs:jsr305 v3.0.2 +- com.google.code.gson:gson v2.10 +- com.google.crypto.tink:tink v1.7.0 +- com.google.dagger:dagger v2.28.3 +- com.google.errorprone:error_prone_annotation v2.19.1 +- com.google.errorprone:error_prone_annotations v2.11.0 +- com.google.errorprone:error_prone_annotations v2.13.1 +- com.google.errorprone:error_prone_annotations v2.18.0 +- com.google.errorprone:error_prone_annotations v2.3.2 +- com.google.errorprone:error_prone_annotations v2.7.1 +- com.google.flatbuffers:flatbuffers-java v1.12.0 +- com.google.guava:failureaccess v1.0.1 +- com.google.guava:guava v28.0-android +- com.google.guava:guava v30.1.1-android +- com.google.guava:guava v31.1-android +- com.google.guava:guava v31.1-jre +- com.google.guava:listenablefuture v1.0 +- com.google.guava:listenablefuture v9999.0-empty-to-avoid-conflict-with-guava +- com.google.j2objc:j2objc-annotations v1.3 +- com.google.jimfs:jimfs v1.1 +- com.google.protobuf:protobuf-java v3.19.3 +- com.google.protobuf:protobuf-java-util v3.19.3 +- com.google.testing.platform:android-device-provider-local v0.0.8-alpha08 +- com.google.testing.platform:android-driver-instrumentation v0.0.8-alpha08 +- com.google.testing.platform:android-test-plugin v0.0.8-alpha08 +- com.google.testing.platform:core v0.0.8-alpha08 +- com.google.testing.platform:core-proto v0.0.8-alpha08 +- com.google.testing.platform:launcher v0.0.8-alpha08 +- com.google.truth.extensions:truth-java8-extension v1.1.3 +- com.google.truth:truth v1.1.3 +- com.googlecode.juniversalchardet:juniversalchardet v1.0.3 +- com.h2database:h2 v +- com.ibm.icu:icu4j v72.1 +- com.ibm.icu:icu4j v73.2 +- com.jakewharton.android.repackaged:dalvik-dx v9.0.0_r3 +- com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter v1.0.0 +- com.linkedin.dexmaker:dexmaker v2.28.3 +- com.pinterest.ktlint:ktlint-cli-ruleset-core v0.50.0 +- com.pinterest.ktlint:ktlint-logger v0.50.0 +- com.pinterest.ktlint:ktlint-rule-engine-core v0.50.0 +- com.pinterest.ktlint:ktlint-ruleset-standard v0.50.0 +- com.squareup.moshi:moshi v1.14.0 +- com.squareup.moshi:moshi-adapters v1.14.0 +- com.squareup.moshi:moshi-kotlin v1.14.0 +- com.squareup.okhttp3:logging-interceptor v4.12.0 +- com.squareup.okhttp3:logging-interceptor v4.9.1 +- com.squareup.okhttp3:mockwebserver v4.12.0 +- com.squareup.okhttp3:okhttp v3.14.9 +- com.squareup.okhttp3:okhttp v4.12.0 +- com.squareup.okio:okio v1.17.2 +- com.squareup.okio:okio v2.10.0 +- com.squareup.okio:okio v3.6.0 +- com.squareup.okio:okio v3.7.0 +- com.squareup.okio:okio-jvm v3.6.0 +- com.squareup.okio:okio-jvm v3.7.0 +- com.squareup.retrofit2:retrofit v2.9.0 +- com.squareup:javapoet v1.10.0 +- com.squareup:javawriter v2.5.0 +- com.squareup:kotlinpoet v1.12.0 +- com.sun.activation:javax.activation v1.2.0 +- com.sun.istack:istack-commons-runtime v3.0.8 +- com.sun.xml.fastinfoset:fastinfoset v1.2.16 +- com.tagcommander.lib:core v5.4.3 +- com.tagcommander.lib:serverside v5.5.2 +- commons-codec:commons-codec v1.11 +- commons-io:commons-io v2.4 +- commons-logging:commons-logging v1.2 +- dev.zacsweers.moshix:moshi-sealed-reflect v0.19.0 +- dev.zacsweers.moshix:moshi-sealed-runtime v0.19.0 +- io.coil-kt:coil v2.5.0 +- io.coil-kt:coil-base v2.5.0 +- io.coil-kt:coil-compose v2.5.0 +- io.coil-kt:coil-compose-base v2.5.0 +- io.github.davidburstrom.contester:contester-breakpoint v0.2.0 +- io.github.detekt.sarif4k:sarif4k v0.4.0 +- io.github.detekt.sarif4k:sarif4k-jvm v0.4.0 +- io.github.microutils:kotlin-logging-jvm v3.0.5 +- io.gitlab.arturbosch.detekt:detekt-api v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-cli v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-core v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-formatting v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-gradle-plugin v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-metrics v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-parser v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-psi-utils v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-report-html v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-report-md v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-report-sarif v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-report-txt v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-report-xml v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-complexity v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-coroutines v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-documentation v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-empty v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-errorprone v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-exceptions v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-naming v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-performance v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-rules-style v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-tooling v1.23.5 +- io.gitlab.arturbosch.detekt:detekt-utils v1.23.5 +- io.grpc:grpc-api v1.45.1 +- io.grpc:grpc-context v1.45.1 +- io.grpc:grpc-core v1.45.1 +- io.grpc:grpc-netty v1.45.1 +- io.grpc:grpc-protobuf v1.45.1 +- io.grpc:grpc-protobuf-lite v1.45.1 +- io.grpc:grpc-stub v1.45.1 +- io.ktor:ktor-client-content-negotiation v2.3.8 +- io.ktor:ktor-client-content-negotiation-jvm v2.3.8 +- io.ktor:ktor-client-core v2.3.8 +- io.ktor:ktor-client-core-jvm v2.3.8 +- io.ktor:ktor-client-mock v2.3.8 +- io.ktor:ktor-client-mock-jvm v2.3.8 +- io.ktor:ktor-client-okhttp v2.3.8 +- io.ktor:ktor-client-okhttp-jvm v2.3.8 +- io.ktor:ktor-events v2.3.8 +- io.ktor:ktor-events-jvm v2.3.8 +- io.ktor:ktor-http v2.3.8 +- io.ktor:ktor-http-jvm v2.3.8 +- io.ktor:ktor-io v2.3.8 +- io.ktor:ktor-io-jvm v2.3.8 +- io.ktor:ktor-serialization v2.3.8 +- io.ktor:ktor-serialization-jvm v2.3.8 +- io.ktor:ktor-serialization-kotlinx v2.3.8 +- io.ktor:ktor-serialization-kotlinx-json v2.3.8 +- io.ktor:ktor-serialization-kotlinx-json-jvm v2.3.8 +- io.ktor:ktor-serialization-kotlinx-jvm v2.3.8 +- io.ktor:ktor-utils v2.3.8 +- io.ktor:ktor-utils-jvm v2.3.8 +- io.ktor:ktor-websocket-serialization v2.3.8 +- io.ktor:ktor-websocket-serialization-jvm v2.3.8 +- io.ktor:ktor-websockets v2.3.8 +- io.ktor:ktor-websockets-jvm v2.3.8 +- io.mockk:mockk v1.13.9 +- io.mockk:mockk-agent v1.13.9 +- io.mockk:mockk-agent-android v1.13.9 +- io.mockk:mockk-agent-api v1.13.9 +- io.mockk:mockk-agent-api-jvm v1.13.9 +- io.mockk:mockk-agent-jvm v1.13.9 +- io.mockk:mockk-android v1.13.9 +- io.mockk:mockk-core v1.13.9 +- io.mockk:mockk-core-jvm v1.13.9 +- io.mockk:mockk-dsl v1.13.9 +- io.mockk:mockk-dsl-jvm v1.13.9 +- io.mockk:mockk-jvm v1.13.9 +- io.netty:netty-buffer v4.1.72.Final +- io.netty:netty-codec v4.1.72.Final +- io.netty:netty-codec-http v4.1.72.Final +- io.netty:netty-codec-http2 v4.1.72.Final +- io.netty:netty-codec-socks v4.1.72.Final +- io.netty:netty-common v4.1.72.Final +- io.netty:netty-handler v4.1.72.Final +- io.netty:netty-handler-proxy v4.1.72.Final +- io.netty:netty-resolver v4.1.72.Final +- io.netty:netty-tcnative-classes v2.0.46.Final +- io.netty:netty-transport v4.1.72.Final +- io.perfmark:perfmark-api v0.23.0 +- jakarta.activation:jakarta.activation-api v1.2.1 +- jakarta.xml.bind:jakarta.xml.bind-api v2.3.2 +- javax.annotation:javax.annotation-api v1.3.2 +- javax.inject:javax.inject v1 +- junit:junit v +- junit:junit v4.13.2 +- net.bytebuddy:byte-buddy v1.11.13 +- net.bytebuddy:byte-buddy v1.14.6 +- net.bytebuddy:byte-buddy-agent v1.11.13 +- net.bytebuddy:byte-buddy-agent v1.14.6 +- net.java.dev.jna:jna v5.6.0 +- net.java.dev.jna:jna-platform v5.6.0 +- net.sf.jopt-simple:jopt-simple v4.9 +- net.sf.kxml:kxml2 v2.3.0 +- org.apache.commons:commons-compress v1.21 +- org.apache.httpcomponents:httpclient v4.5.14 +- org.apache.httpcomponents:httpcore v4.4.16 +- org.apache.httpcomponents:httpmime v4.5.6 +- org.apache.maven.plugins:maven-surefire-plugin v3.0.0-M3 +- org.apache.maven.surefire:surefire-junit47 v3.0.0-M3 +- org.assertj:assertj-core v +- org.bitbucket.b_c:jose4j v0.7.0 +- org.bouncycastle:bcpkix-jdk15on v1.67 +- org.bouncycastle:bcprov-jdk15on v1.67 +- org.bouncycastle:bcprov-jdk18on v1.72 +- org.bouncycastle:bcprov-jdk18on v1.76 +- org.checkerframework:checker-compat-qual v2.5.5 +- org.checkerframework:checker-qual v3.12.0 +- org.checkerframework:checker-qual v3.13.0 +- org.checkerframework:checker-qual v3.21.4 +- org.codehaus.mojo:animal-sniffer-annotations v1.17 +- org.codehaus.mojo:animal-sniffer-annotations v1.19 +- org.conscrypt:conscrypt-openjdk-uber v2.5.2 +- org.ec4j.core:ec4j-core v0.3.0 +- org.ehcache:ehcache v +- org.freemarker:freemarker v2.3.32 +- org.glassfish.jaxb:jaxb-runtime v2.3.2 +- org.glassfish.jaxb:txw2 v2.3.2 +- org.gradle.kotlin:gradle-kotlin-dsl-plugins v4.2.1 +- org.gradle:github-dependency-graph-gradle-plugin v1.2.2 +- org.hamcrest:hamcrest-core v1.3 +- org.hamcrest:hamcrest-library v +- org.jdom:jdom2 v2.0.6 +- org.jetbrains.intellij.deps:coverage-report v1.0.23 +- org.jetbrains.intellij.deps:intellij-coverage-agent v1.0.748 +- org.jetbrains.intellij.deps:intellij-coverage-reporter v1.0.748 +- org.jetbrains.intellij.deps:trove4j v1.0.20200330 +- org.jetbrains.kotlin:kotlin-android-extensions v1.9.20 +- org.jetbrains.kotlin:kotlin-android-extensions v1.9.22 +- org.jetbrains.kotlin:kotlin-assignment v1.9.20 +- org.jetbrains.kotlin:kotlin-assignment-compiler-plugin-embeddable v1.9.20 +- org.jetbrains.kotlin:kotlin-bom v1.9.10 +- org.jetbrains.kotlin:kotlin-build-common v1.9.22 +- org.jetbrains.kotlin:kotlin-build-tools-api v1.9.20 +- org.jetbrains.kotlin:kotlin-build-tools-api v1.9.22 +- org.jetbrains.kotlin:kotlin-build-tools-impl v1.9.22 +- org.jetbrains.kotlin:kotlin-compiler-embeddable v1.9.20 +- org.jetbrains.kotlin:kotlin-compiler-embeddable v1.9.22 +- org.jetbrains.kotlin:kotlin-compiler-runner v1.9.20 +- org.jetbrains.kotlin:kotlin-compiler-runner v1.9.22 +- org.jetbrains.kotlin:kotlin-daemon-client v1.9.20 +- org.jetbrains.kotlin:kotlin-daemon-client v1.9.22 +- org.jetbrains.kotlin:kotlin-daemon-embeddable v1.9.20 +- org.jetbrains.kotlin:kotlin-daemon-embeddable v1.9.22 +- org.jetbrains.kotlin:kotlin-gradle-plugin v1.9.20 +- org.jetbrains.kotlin:kotlin-gradle-plugin v1.9.22 +- org.jetbrains.kotlin:kotlin-gradle-plugin-annotations v1.9.20 +- org.jetbrains.kotlin:kotlin-gradle-plugin-annotations v1.9.22 +- org.jetbrains.kotlin:kotlin-gradle-plugin-api v1.9.20 +- org.jetbrains.kotlin:kotlin-gradle-plugin-api v1.9.22 +- org.jetbrains.kotlin:kotlin-gradle-plugin-idea v1.9.20 +- org.jetbrains.kotlin:kotlin-gradle-plugin-idea v1.9.22 +- org.jetbrains.kotlin:kotlin-gradle-plugin-idea-proto v1.9.20 +- org.jetbrains.kotlin:kotlin-gradle-plugin-idea-proto v1.9.22 +- org.jetbrains.kotlin:kotlin-gradle-plugin-model v1.9.20 +- org.jetbrains.kotlin:kotlin-gradle-plugin-model v1.9.22 +- org.jetbrains.kotlin:kotlin-gradle-plugins-bom v1.9.20 +- org.jetbrains.kotlin:kotlin-gradle-plugins-bom v1.9.22 +- org.jetbrains.kotlin:kotlin-klib-commonizer-api v1.9.20 +- org.jetbrains.kotlin:kotlin-klib-commonizer-api v1.9.22 +- org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable v1.9.22 +- org.jetbrains.kotlin:kotlin-native-utils v1.9.20 +- org.jetbrains.kotlin:kotlin-native-utils v1.9.22 +- org.jetbrains.kotlin:kotlin-project-model v1.9.20 +- org.jetbrains.kotlin:kotlin-project-model v1.9.22 +- org.jetbrains.kotlin:kotlin-reflect v1.6.10 +- org.jetbrains.kotlin:kotlin-reflect v1.9.10 +- org.jetbrains.kotlin:kotlin-reflect v1.9.20 +- org.jetbrains.kotlin:kotlin-reflect v1.9.22 +- org.jetbrains.kotlin:kotlin-sam-with-receiver v1.9.20 +- org.jetbrains.kotlin:kotlin-sam-with-receiver-compiler-plugin-embeddable v1.9.20 +- org.jetbrains.kotlin:kotlin-script-runtime v1.9.20 +- org.jetbrains.kotlin:kotlin-script-runtime v1.9.22 +- org.jetbrains.kotlin:kotlin-scripting-common v1.9.20 +- org.jetbrains.kotlin:kotlin-scripting-common v1.9.22 +- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable v1.9.20 +- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable v1.9.22 +- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable v1.9.20 +- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable v1.9.22 +- org.jetbrains.kotlin:kotlin-scripting-jvm v1.9.20 +- org.jetbrains.kotlin:kotlin-scripting-jvm v1.9.22 +- org.jetbrains.kotlin:kotlin-serialization v1.9.22 +- org.jetbrains.kotlin:kotlin-serialization-compiler-plugin-embeddable v1.9.22 +- org.jetbrains.kotlin:kotlin-stdlib v1.9.0 +- org.jetbrains.kotlin:kotlin-stdlib v1.9.10 +- org.jetbrains.kotlin:kotlin-stdlib v1.9.20 +- org.jetbrains.kotlin:kotlin-stdlib v1.9.21 +- org.jetbrains.kotlin:kotlin-stdlib v1.9.22 +- org.jetbrains.kotlin:kotlin-stdlib-common v1.9.0 +- org.jetbrains.kotlin:kotlin-stdlib-common v1.9.10 +- org.jetbrains.kotlin:kotlin-stdlib-common v1.9.20 +- org.jetbrains.kotlin:kotlin-stdlib-common v1.9.21 +- org.jetbrains.kotlin:kotlin-stdlib-common v1.9.22 +- org.jetbrains.kotlin:kotlin-stdlib-jdk7 v1.8.20 +- org.jetbrains.kotlin:kotlin-stdlib-jdk7 v1.8.21 +- org.jetbrains.kotlin:kotlin-stdlib-jdk7 v1.8.22 +- org.jetbrains.kotlin:kotlin-stdlib-jdk7 v1.9.0 +- org.jetbrains.kotlin:kotlin-stdlib-jdk7 v1.9.10 +- org.jetbrains.kotlin:kotlin-stdlib-jdk8 v1.8.20 +- org.jetbrains.kotlin:kotlin-stdlib-jdk8 v1.8.21 +- org.jetbrains.kotlin:kotlin-stdlib-jdk8 v1.8.22 +- org.jetbrains.kotlin:kotlin-stdlib-jdk8 v1.9.0 +- org.jetbrains.kotlin:kotlin-stdlib-jdk8 v1.9.10 +- org.jetbrains.kotlin:kotlin-test v1.9.22 +- org.jetbrains.kotlin:kotlin-test-annotations-common v1.9.22 +- org.jetbrains.kotlin:kotlin-test-common v1.9.22 +- org.jetbrains.kotlin:kotlin-test-junit v1.9.22 +- org.jetbrains.kotlin:kotlin-tooling-core v1.9.20 +- org.jetbrains.kotlin:kotlin-tooling-core v1.9.22 +- org.jetbrains.kotlin:kotlin-util-io v1.9.20 +- org.jetbrains.kotlin:kotlin-util-io v1.9.22 +- org.jetbrains.kotlin:kotlin-util-klib v1.9.20 +- org.jetbrains.kotlin:kotlin-util-klib v1.9.22 +- org.jetbrains.kotlinx:atomicfu v0.20.2 +- org.jetbrains.kotlinx:atomicfu v0.23.1 +- org.jetbrains.kotlinx:kotlinx-coroutines-android v1.7.1 +- org.jetbrains.kotlinx:kotlinx-coroutines-android v1.7.3 +- org.jetbrains.kotlinx:kotlinx-coroutines-android v1.8.0 +- org.jetbrains.kotlinx:kotlinx-coroutines-bom v1.6.3 +- org.jetbrains.kotlinx:kotlinx-coroutines-bom v1.6.4 +- org.jetbrains.kotlinx:kotlinx-coroutines-bom v1.7.1 +- org.jetbrains.kotlinx:kotlinx-coroutines-bom v1.7.3 +- org.jetbrains.kotlinx:kotlinx-coroutines-bom v1.8.0 +- org.jetbrains.kotlinx:kotlinx-coroutines-core v1.6.3 +- org.jetbrains.kotlinx:kotlinx-coroutines-core v1.6.4 +- org.jetbrains.kotlinx:kotlinx-coroutines-core v1.7.1 +- org.jetbrains.kotlinx:kotlinx-coroutines-core v1.8.0 +- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm v1.5.0 +- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm v1.6.3 +- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm v1.6.4 +- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm v1.8.0 +- org.jetbrains.kotlinx:kotlinx-coroutines-jdk8 v1.8.0 +- org.jetbrains.kotlinx:kotlinx-coroutines-slf4j v1.8.0 +- org.jetbrains.kotlinx:kotlinx-coroutines-test v1.8.0 +- org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm v1.8.0 +- org.jetbrains.kotlinx:kotlinx-html-jvm v0.8.1 +- org.jetbrains.kotlinx:kotlinx-metadata-jvm v0.8.0 +- org.jetbrains.kotlinx:kotlinx-serialization-bom v1.6.0 +- org.jetbrains.kotlinx:kotlinx-serialization-bom v1.6.2 +- org.jetbrains.kotlinx:kotlinx-serialization-core v1.4.1 +- org.jetbrains.kotlinx:kotlinx-serialization-core v1.6.0 +- org.jetbrains.kotlinx:kotlinx-serialization-core v1.6.2 +- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm v1.4.1 +- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm v1.6.0 +- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm v1.6.2 +- org.jetbrains.kotlinx:kotlinx-serialization-json v1.4.1 +- org.jetbrains.kotlinx:kotlinx-serialization-json v1.6.0 +- org.jetbrains.kotlinx:kotlinx-serialization-json v1.6.2 +- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm v1.4.1 +- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm v1.6.0 +- org.jetbrains.kotlinx:kotlinx-serialization-json-jvm v1.6.2 +- org.jetbrains.kotlinx:kover-gradle-plugin v0.7.6 +- org.jetbrains:annotations v13.0 +- org.jetbrains:annotations v16.0.2 +- org.jetbrains:annotations v23.0.0 +- org.json:json v20231013 +- org.junit.jupiter:junit-jupiter v5.8.2 +- org.junit.jupiter:junit-jupiter-api v5.8.2 +- org.junit.jupiter:junit-jupiter-engine v5.8.2 +- org.junit.jupiter:junit-jupiter-params v5.8.2 +- org.junit.platform:junit-platform-commons v1.8.2 +- org.junit.platform:junit-platform-engine v1.8.2 +- org.junit:junit-bom v5.8.2 +- org.jvnet.staxex:stax-ex v1.8.1 +- org.mockito:mockito-core v3.12.4 +- org.objenesis:objenesis v3.2 +- org.objenesis:objenesis v3.3 +- org.opentest4j:opentest4j v1.2.0 +- org.ow2.asm:asm v9.1 +- org.ow2.asm:asm v9.2 +- org.ow2.asm:asm v9.5 +- org.ow2.asm:asm v9.6 +- org.ow2.asm:asm-analysis v9.2 +- org.ow2.asm:asm-analysis v9.5 +- org.ow2.asm:asm-analysis v9.6 +- org.ow2.asm:asm-commons v9.2 +- org.ow2.asm:asm-commons v9.5 +- org.ow2.asm:asm-commons v9.6 +- org.ow2.asm:asm-tree v9.2 +- org.ow2.asm:asm-tree v9.5 +- org.ow2.asm:asm-tree v9.6 +- org.ow2.asm:asm-util v9.2 +- org.ow2.asm:asm-util v9.5 +- org.ow2.asm:asm-util v9.6 +- org.postgresql:postgresql v +- org.robolectric:annotations v4.10.3 +- org.robolectric:annotations v4.11.1 +- org.robolectric:junit v4.10.3 +- org.robolectric:junit v4.11.1 +- org.robolectric:nativeruntime v4.10.3 +- org.robolectric:nativeruntime v4.11.1 +- org.robolectric:nativeruntime-dist-compat v1.0.1 +- org.robolectric:nativeruntime-dist-compat v1.0.2 +- org.robolectric:pluginapi v4.10.3 +- org.robolectric:pluginapi v4.11.1 +- org.robolectric:plugins-maven-dependency-resolver v4.10.3 +- org.robolectric:plugins-maven-dependency-resolver v4.11.1 +- org.robolectric:resources v4.10.3 +- org.robolectric:resources v4.11.1 +- org.robolectric:robolectric v4.10.3 +- org.robolectric:robolectric v4.11.1 +- org.robolectric:sandbox v4.10.3 +- org.robolectric:sandbox v4.11.1 +- org.robolectric:shadowapi v4.10.3 +- org.robolectric:shadowapi v4.11.1 +- org.robolectric:shadows-framework v4.10.3 +- org.robolectric:shadows-framework v4.11.1 +- org.robolectric:shadows-versioning v4.11.1 +- org.robolectric:utils v4.10.3 +- org.robolectric:utils v4.11.1 +- org.robolectric:utils-reflector v4.10.3 +- org.robolectric:utils-reflector v4.11.1 +- org.slf4j:slf4j-api v1.7.30 +- org.slf4j:slf4j-api v1.7.36 +- org.slf4j:slf4j-api v2.0.3 +- org.snakeyaml:snakeyaml-engine v2.6 +- org.springframework.boot:spring-boot-maven-plugin v +- org.springframework.boot:spring-boot-starter-data-jpa v +- org.springframework.boot:spring-boot-starter-security v +- org.springframework.boot:spring-boot-starter-test v +- org.springframework.boot:spring-boot-starter-thymeleaf v +- org.springframework.boot:spring-boot-starter-web v +- org.springframework.security:spring-security-test v +- org.springframework:spring-context-support v +- org.tensorflow:tensorflow-lite-metadata v0.1.0-rc2 +- xerces:xercesimpl v2.12.0 +- xml-apis:xml-apis v1.4.01 + +## npm + +- @aashutoshrathi/word-wrap v1.2.6 +- @actions/core v1.10.0 +- @actions/github v5.1.1 +- @actions/http-client v2.0.1 +- @ampproject/remapping v2.2.1 +- @angular-devkit/architect v0.1602.8 +- @angular-devkit/build-angular v16.2.8 +- @angular-devkit/build-webpack v0.1602.8 +- @angular-devkit/core v16.2.8 +- @angular-devkit/schematics v16.2.8 +- @angular/animations v16.2.11 +- @angular/cli v16.2.8 +- @angular/common v16.2.11 +- @angular/compiler v16.2.11 +- @angular/compiler-cli v16.2.11 +- @angular/core v16.2.11 +- @angular/forms v16.2.11 +- @angular/localize v16.2.11 +- @angular/platform-browser v16.2.11 +- @angular/platform-browser-dynamic v16.2.11 +- @angular/router v16.2.11 +- @assemblyscript/loader v0.10.1 +- @babel/code-frame v7.12.11 +- @babel/code-frame v7.16.7 +- @babel/code-frame v7.22.13 +- @babel/code-frame v7.23.5 +- @babel/compat-data v7.16.8 +- @babel/compat-data v7.22.20 +- @babel/compat-data v7.22.9 +- @babel/compat-data v7.23.2 +- @babel/compat-data v7.23.5 +- @babel/core v7.16.12 +- @babel/core v7.22.15 +- @babel/core v7.22.9 +- @babel/core v7.23.0 +- @babel/core v7.23.2 +- @babel/core v7.23.9 +- @babel/core v^ 7.20.0 +- @babel/eslint-parser v7.22.15 +- @babel/generator v7.16.8 +- @babel/generator v7.22.15 +- @babel/generator v7.22.9 +- @babel/generator v7.23.0 +- @babel/generator v7.23.6 +- @babel/helper-annotate-as-pure v7.16.7 +- @babel/helper-annotate-as-pure v7.22.5 +- @babel/helper-builder-binary-assignment-operator-visitor v7.16.7 +- @babel/helper-builder-binary-assignment-operator-visitor v7.22.15 +- @babel/helper-compilation-targets v7.16.7 +- @babel/helper-compilation-targets v7.22.15 +- @babel/helper-compilation-targets v7.23.6 +- @babel/helper-create-class-features-plugin v7.16.10 +- @babel/helper-create-class-features-plugin v7.22.15 +- @babel/helper-create-class-features-plugin v7.23.9 +- @babel/helper-create-regexp-features-plugin v7.16.7 +- @babel/helper-create-regexp-features-plugin v7.22.15 +- @babel/helper-define-polyfill-provider v0.3.1 +- @babel/helper-define-polyfill-provider v0.4.2 +- @babel/helper-define-polyfill-provider v0.4.3 +- @babel/helper-define-polyfill-provider v0.5.0 +- @babel/helper-environment-visitor v7.16.7 +- @babel/helper-environment-visitor v7.22.20 +- @babel/helper-environment-visitor v7.22.5 +- @babel/helper-explode-assignable-expression v7.16.7 +- @babel/helper-function-name v7.16.7 +- @babel/helper-function-name v7.22.5 +- @babel/helper-function-name v7.23.0 +- @babel/helper-get-function-arity v7.16.7 +- @babel/helper-hoist-variables v7.16.7 +- @babel/helper-hoist-variables v7.22.5 +- @babel/helper-member-expression-to-functions v7.16.7 +- @babel/helper-member-expression-to-functions v7.23.0 +- @babel/helper-module-imports v7.16.7 +- @babel/helper-module-imports v7.22.15 +- @babel/helper-module-transforms v7.16.7 +- @babel/helper-module-transforms v7.22.15 +- @babel/helper-module-transforms v7.23.0 +- @babel/helper-module-transforms v7.23.3 +- @babel/helper-optimise-call-expression v7.16.7 +- @babel/helper-optimise-call-expression v7.22.5 +- @babel/helper-plugin-utils v7.16.7 +- @babel/helper-plugin-utils v7.22.5 +- @babel/helper-remap-async-to-generator v7.16.8 +- @babel/helper-remap-async-to-generator v7.22.20 +- @babel/helper-replace-supers v7.16.7 +- @babel/helper-replace-supers v7.22.20 +- @babel/helper-simple-access v7.16.7 +- @babel/helper-simple-access v7.22.5 +- @babel/helper-skip-transparent-expression-wrappers v7.16.0 +- @babel/helper-skip-transparent-expression-wrappers v7.22.5 +- @babel/helper-split-export-declaration v7.16.7 +- @babel/helper-split-export-declaration v7.22.6 +- @babel/helper-string-parser v7.22.5 +- @babel/helper-string-parser v7.23.4 +- @babel/helper-validator-identifier v7.16.7 +- @babel/helper-validator-identifier v7.22.15 +- @babel/helper-validator-identifier v7.22.20 +- @babel/helper-validator-option v7.16.7 +- @babel/helper-validator-option v7.22.15 +- @babel/helper-validator-option v7.23.5 +- @babel/helper-wrap-function v7.16.8 +- @babel/helper-wrap-function v7.22.20 +- @babel/helpers v7.16.7 +- @babel/helpers v7.22.15 +- @babel/helpers v7.23.1 +- @babel/helpers v7.23.2 +- @babel/helpers v7.23.9 +- @babel/highlight v7.16.10 +- @babel/highlight v7.22.13 +- @babel/highlight v7.22.20 +- @babel/highlight v7.23.4 +- @babel/parser v7.16.12 +- @babel/parser v7.22.15 +- @babel/parser v7.23.0 +- @babel/parser v7.23.9 +- @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression v7.16.7 +- @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression v7.22.15 +- @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression v7.23.3 +- @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining v7.16.7 +- @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining v7.22.15 +- @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining v7.23.3 +- @babel/plugin-bugfix-v8-static-class-fields-redefine-readonly v7.23.7 +- @babel/plugin-external-helpers v7.16.7 +- @babel/plugin-proposal-async-generator-functions v7.16.8 +- @babel/plugin-proposal-async-generator-functions v7.20.7 +- @babel/plugin-proposal-class-properties v7.16.7 +- @babel/plugin-proposal-class-properties v7.18.6 +- @babel/plugin-proposal-class-static-block v7.16.7 +- @babel/plugin-proposal-dynamic-import v7.16.7 +- @babel/plugin-proposal-export-default-from v7.16.7 +- @babel/plugin-proposal-export-default-from v7.22.17 +- @babel/plugin-proposal-export-namespace-from v7.16.7 +- @babel/plugin-proposal-json-strings v7.16.7 +- @babel/plugin-proposal-logical-assignment-operators v7.16.7 +- @babel/plugin-proposal-nullish-coalescing-operator v7.16.7 +- @babel/plugin-proposal-nullish-coalescing-operator v7.18.6 +- @babel/plugin-proposal-numeric-separator v7.16.7 +- @babel/plugin-proposal-numeric-separator v7.18.6 +- @babel/plugin-proposal-object-rest-spread v7.16.7 +- @babel/plugin-proposal-object-rest-spread v7.20.7 +- @babel/plugin-proposal-optional-catch-binding v7.16.7 +- @babel/plugin-proposal-optional-catch-binding v7.18.6 +- @babel/plugin-proposal-optional-chaining v7.16.7 +- @babel/plugin-proposal-optional-chaining v7.21.0 +- @babel/plugin-proposal-private-methods v7.16.11 +- @babel/plugin-proposal-private-property-in-object v7.16.7 +- @babel/plugin-proposal-private-property-in-object v7.21.0-placeholder-for-preset-env.2 +- @babel/plugin-proposal-unicode-property-regex v7.16.7 +- @babel/plugin-proposal-unicode-property-regex v7.18.6 +- @babel/plugin-syntax-async-generators v7.8.4 +- @babel/plugin-syntax-bigint v7.8.3 +- @babel/plugin-syntax-class-properties v7.12.13 +- @babel/plugin-syntax-class-static-block v7.14.5 +- @babel/plugin-syntax-dynamic-import v7.8.3 +- @babel/plugin-syntax-export-default-from v7.16.7 +- @babel/plugin-syntax-export-default-from v7.22.5 +- @babel/plugin-syntax-export-namespace-from v7.8.3 +- @babel/plugin-syntax-flow v7.16.7 +- @babel/plugin-syntax-flow v7.22.5 +- @babel/plugin-syntax-import-assertions v7.22.5 +- @babel/plugin-syntax-import-assertions v7.23.3 +- @babel/plugin-syntax-import-attributes v7.22.5 +- @babel/plugin-syntax-import-attributes v7.23.3 +- @babel/plugin-syntax-import-meta v7.10.4 +- @babel/plugin-syntax-json-strings v7.8.3 +- @babel/plugin-syntax-jsx v7.16.7 +- @babel/plugin-syntax-jsx v7.22.5 +- @babel/plugin-syntax-jsx v7.23.3 +- @babel/plugin-syntax-logical-assignment-operators v7.10.4 +- @babel/plugin-syntax-nullish-coalescing-operator v7.8.3 +- @babel/plugin-syntax-numeric-separator v7.10.4 +- @babel/plugin-syntax-object-rest-spread v7.8.3 +- @babel/plugin-syntax-optional-catch-binding v7.8.3 +- @babel/plugin-syntax-optional-chaining v7.8.3 +- @babel/plugin-syntax-private-property-in-object v7.14.5 +- @babel/plugin-syntax-top-level-await v7.14.5 +- @babel/plugin-syntax-typescript v7.16.7 +- @babel/plugin-syntax-typescript v7.22.5 +- @babel/plugin-syntax-typescript v7.23.3 +- @babel/plugin-syntax-unicode-sets-regex v7.18.6 +- @babel/plugin-transform-arrow-functions v7.16.7 +- @babel/plugin-transform-arrow-functions v7.22.5 +- @babel/plugin-transform-arrow-functions v7.23.3 +- @babel/plugin-transform-async-generator-functions v7.22.15 +- @babel/plugin-transform-async-generator-functions v7.23.2 +- @babel/plugin-transform-async-generator-functions v7.23.9 +- @babel/plugin-transform-async-to-generator v7.16.8 +- @babel/plugin-transform-async-to-generator v7.22.5 +- @babel/plugin-transform-async-to-generator v7.23.3 +- @babel/plugin-transform-block-scoped-functions v7.16.7 +- @babel/plugin-transform-block-scoped-functions v7.22.5 +- @babel/plugin-transform-block-scoped-functions v7.23.3 +- @babel/plugin-transform-block-scoping v7.16.7 +- @babel/plugin-transform-block-scoping v7.23.0 +- @babel/plugin-transform-block-scoping v7.23.4 +- @babel/plugin-transform-class-properties v7.22.5 +- @babel/plugin-transform-class-properties v7.23.3 +- @babel/plugin-transform-class-static-block v7.22.11 +- @babel/plugin-transform-class-static-block v7.23.4 +- @babel/plugin-transform-classes v7.16.7 +- @babel/plugin-transform-classes v7.22.15 +- @babel/plugin-transform-classes v7.23.8 +- @babel/plugin-transform-computed-properties v7.16.7 +- @babel/plugin-transform-computed-properties v7.22.5 +- @babel/plugin-transform-computed-properties v7.23.3 +- @babel/plugin-transform-destructuring v7.16.7 +- @babel/plugin-transform-destructuring v7.23.0 +- @babel/plugin-transform-destructuring v7.23.3 +- @babel/plugin-transform-dotall-regex v7.16.7 +- @babel/plugin-transform-dotall-regex v7.22.5 +- @babel/plugin-transform-dotall-regex v7.23.3 +- @babel/plugin-transform-duplicate-keys v7.16.7 +- @babel/plugin-transform-duplicate-keys v7.22.5 +- @babel/plugin-transform-duplicate-keys v7.23.3 +- @babel/plugin-transform-dynamic-import v7.22.11 +- @babel/plugin-transform-dynamic-import v7.23.4 +- @babel/plugin-transform-exponentiation-operator v7.16.7 +- @babel/plugin-transform-exponentiation-operator v7.22.5 +- @babel/plugin-transform-exponentiation-operator v7.23.3 +- @babel/plugin-transform-export-namespace-from v7.22.11 +- @babel/plugin-transform-export-namespace-from v7.23.4 +- @babel/plugin-transform-flow-strip-types v7.16.7 +- @babel/plugin-transform-flow-strip-types v7.22.5 +- @babel/plugin-transform-for-of v7.16.7 +- @babel/plugin-transform-for-of v7.22.15 +- @babel/plugin-transform-for-of v7.23.6 +- @babel/plugin-transform-function-name v7.16.7 +- @babel/plugin-transform-function-name v7.22.5 +- @babel/plugin-transform-function-name v7.23.3 +- @babel/plugin-transform-json-strings v7.22.11 +- @babel/plugin-transform-json-strings v7.23.4 +- @babel/plugin-transform-literals v7.16.7 +- @babel/plugin-transform-literals v7.22.5 +- @babel/plugin-transform-literals v7.23.3 +- @babel/plugin-transform-logical-assignment-operators v7.22.11 +- @babel/plugin-transform-logical-assignment-operators v7.23.4 +- @babel/plugin-transform-member-expression-literals v7.16.7 +- @babel/plugin-transform-member-expression-literals v7.22.5 +- @babel/plugin-transform-member-expression-literals v7.23.3 +- @babel/plugin-transform-modules-amd v7.16.7 +- @babel/plugin-transform-modules-amd v7.23.0 +- @babel/plugin-transform-modules-amd v7.23.3 +- @babel/plugin-transform-modules-commonjs v7.16.8 +- @babel/plugin-transform-modules-commonjs v7.23.0 +- @babel/plugin-transform-modules-commonjs v7.23.3 +- @babel/plugin-transform-modules-systemjs v7.16.7 +- @babel/plugin-transform-modules-systemjs v7.23.0 +- @babel/plugin-transform-modules-systemjs v7.23.9 +- @babel/plugin-transform-modules-umd v7.16.7 +- @babel/plugin-transform-modules-umd v7.22.5 +- @babel/plugin-transform-modules-umd v7.23.3 +- @babel/plugin-transform-named-capturing-groups-regex v7.16.8 +- @babel/plugin-transform-named-capturing-groups-regex v7.22.5 +- @babel/plugin-transform-new-target v7.16.7 +- @babel/plugin-transform-new-target v7.22.5 +- @babel/plugin-transform-new-target v7.23.3 +- @babel/plugin-transform-nullish-coalescing-operator v7.22.11 +- @babel/plugin-transform-nullish-coalescing-operator v7.23.4 +- @babel/plugin-transform-numeric-separator v7.22.11 +- @babel/plugin-transform-numeric-separator v7.23.4 +- @babel/plugin-transform-object-assign v7.16.7 +- @babel/plugin-transform-object-rest-spread v7.22.15 +- @babel/plugin-transform-object-rest-spread v7.23.4 +- @babel/plugin-transform-object-super v7.16.7 +- @babel/plugin-transform-object-super v7.22.5 +- @babel/plugin-transform-object-super v7.23.3 +- @babel/plugin-transform-optional-catch-binding v7.22.11 +- @babel/plugin-transform-optional-catch-binding v7.23.4 +- @babel/plugin-transform-optional-chaining v7.23.0 +- @babel/plugin-transform-optional-chaining v7.23.4 +- @babel/plugin-transform-parameters v7.16.7 +- @babel/plugin-transform-parameters v7.22.15 +- @babel/plugin-transform-parameters v7.23.3 +- @babel/plugin-transform-private-methods v7.22.5 +- @babel/plugin-transform-private-methods v7.23.3 +- @babel/plugin-transform-private-property-in-object v7.22.11 +- @babel/plugin-transform-private-property-in-object v7.23.4 +- @babel/plugin-transform-property-literals v7.16.7 +- @babel/plugin-transform-property-literals v7.22.5 +- @babel/plugin-transform-property-literals v7.23.3 +- @babel/plugin-transform-react-display-name v7.16.7 +- @babel/plugin-transform-react-display-name v7.22.5 +- @babel/plugin-transform-react-jsx v7.16.7 +- @babel/plugin-transform-react-jsx v7.22.15 +- @babel/plugin-transform-react-jsx-development v7.16.7 +- @babel/plugin-transform-react-jsx-development v7.22.5 +- @babel/plugin-transform-react-jsx-self v7.16.7 +- @babel/plugin-transform-react-jsx-self v7.22.5 +- @babel/plugin-transform-react-jsx-source v7.16.7 +- @babel/plugin-transform-react-jsx-source v7.22.5 +- @babel/plugin-transform-react-pure-annotations v7.16.7 +- @babel/plugin-transform-react-pure-annotations v7.22.5 +- @babel/plugin-transform-regenerator v7.16.7 +- @babel/plugin-transform-regenerator v7.22.10 +- @babel/plugin-transform-regenerator v7.23.3 +- @babel/plugin-transform-reserved-words v7.16.7 +- @babel/plugin-transform-reserved-words v7.22.5 +- @babel/plugin-transform-reserved-words v7.23.3 +- @babel/plugin-transform-runtime v7.16.10 +- @babel/plugin-transform-runtime v7.22.15 +- @babel/plugin-transform-runtime v7.22.9 +- @babel/plugin-transform-shorthand-properties v7.16.7 +- @babel/plugin-transform-shorthand-properties v7.22.5 +- @babel/plugin-transform-shorthand-properties v7.23.3 +- @babel/plugin-transform-spread v7.16.7 +- @babel/plugin-transform-spread v7.22.5 +- @babel/plugin-transform-spread v7.23.3 +- @babel/plugin-transform-sticky-regex v7.16.7 +- @babel/plugin-transform-sticky-regex v7.22.5 +- @babel/plugin-transform-sticky-regex v7.23.3 +- @babel/plugin-transform-template-literals v7.16.7 +- @babel/plugin-transform-template-literals v7.22.5 +- @babel/plugin-transform-template-literals v7.23.3 +- @babel/plugin-transform-typeof-symbol v7.16.7 +- @babel/plugin-transform-typeof-symbol v7.22.5 +- @babel/plugin-transform-typeof-symbol v7.23.3 +- @babel/plugin-transform-typescript v7.16.8 +- @babel/plugin-transform-typescript v7.22.15 +- @babel/plugin-transform-unicode-escapes v7.16.7 +- @babel/plugin-transform-unicode-escapes v7.22.10 +- @babel/plugin-transform-unicode-escapes v7.23.3 +- @babel/plugin-transform-unicode-property-regex v7.22.5 +- @babel/plugin-transform-unicode-property-regex v7.23.3 +- @babel/plugin-transform-unicode-regex v7.16.7 +- @babel/plugin-transform-unicode-regex v7.22.5 +- @babel/plugin-transform-unicode-regex v7.23.3 +- @babel/plugin-transform-unicode-sets-regex v7.22.5 +- @babel/plugin-transform-unicode-sets-regex v7.23.3 +- @babel/preset-env v7.16.11 +- @babel/preset-env v7.22.20 +- @babel/preset-env v7.22.9 +- @babel/preset-env v7.23.9 +- @babel/preset-env v^ 7.20.0 +- @babel/preset-flow v7.16.7 +- @babel/preset-flow v7.22.15 +- @babel/preset-modules v0.1.5 +- @babel/preset-modules v0.1.6 +- @babel/preset-modules v0.1.6-no-external-plugins +- @babel/preset-react v7.16.7 +- @babel/preset-react v7.22.15 +- @babel/preset-typescript v7.16.7 +- @babel/preset-typescript v7.23.0 +- @babel/register v7.16.9 +- @babel/register v7.22.15 +- @babel/regjsgen v0.8.0 +- @babel/runtime v7.16.7 +- @babel/runtime v7.20.7 +- @babel/runtime v7.22.15 +- @babel/runtime v7.22.6 +- @babel/runtime v7.23.1 +- @babel/runtime v7.23.9 +- @babel/runtime v^ 7.20.0 +- @babel/runtime-corejs3 v7.20.7 +- @babel/template v7.16.7 +- @babel/template v7.22.15 +- @babel/template v7.22.5 +- @babel/template v7.23.9 +- @babel/traverse v7.16.10 +- @babel/traverse v7.22.15 +- @babel/traverse v7.23.0 +- @babel/traverse v7.23.2 +- @babel/traverse v7.23.9 +- @babel/types v7.16.8 +- @babel/types v7.22.15 +- @babel/types v7.23.0 +- @babel/types v7.23.9 +- @bcoe/v8-coverage v0.2.3 +- @cnakazawa/watch v1.0.4 +- @colors/colors v1.5.0 +- @commitlint/cli v11.0.0 +- @commitlint/cli v17.7.2 +- @commitlint/cli v18.6.0 +- @commitlint/cli v18.6.1 +- @commitlint/config-conventional v11.0.0 +- @commitlint/config-conventional v17.7.0 +- @commitlint/config-conventional v18.6.0 +- @commitlint/config-conventional v18.6.2 +- @commitlint/config-validator v17.6.7 +- @commitlint/config-validator v18.6.0 +- @commitlint/config-validator v18.6.1 +- @commitlint/ensure v11.0.0 +- @commitlint/ensure v17.6.7 +- @commitlint/ensure v18.6.0 +- @commitlint/ensure v18.6.1 +- @commitlint/execute-rule v11.0.0 +- @commitlint/execute-rule v17.4.0 +- @commitlint/execute-rule v18.4.4 +- @commitlint/execute-rule v18.6.1 +- @commitlint/format v11.0.0 +- @commitlint/format v17.4.4 +- @commitlint/format v18.6.0 +- @commitlint/format v18.6.1 +- @commitlint/is-ignored v11.0.0 +- @commitlint/is-ignored v17.7.0 +- @commitlint/is-ignored v18.6.0 +- @commitlint/is-ignored v18.6.1 +- @commitlint/lint v11.0.0 +- @commitlint/lint v17.7.0 +- @commitlint/lint v18.6.0 +- @commitlint/lint v18.6.1 +- @commitlint/load v11.0.0 +- @commitlint/load v17.7.2 +- @commitlint/load v18.6.0 +- @commitlint/load v18.6.1 +- @commitlint/message v11.0.0 +- @commitlint/message v17.4.2 +- @commitlint/message v18.4.4 +- @commitlint/message v18.6.1 +- @commitlint/parse v11.0.0 +- @commitlint/parse v17.7.0 +- @commitlint/parse v18.6.0 +- @commitlint/parse v18.6.1 +- @commitlint/read v11.0.0 +- @commitlint/read v17.5.1 +- @commitlint/read v18.6.0 +- @commitlint/read v18.6.1 +- @commitlint/resolve-extends v11.0.0 +- @commitlint/resolve-extends v17.6.7 +- @commitlint/resolve-extends v18.6.0 +- @commitlint/resolve-extends v18.6.1 +- @commitlint/rules v11.0.0 +- @commitlint/rules v17.7.0 +- @commitlint/rules v18.6.0 +- @commitlint/rules v18.6.1 +- @commitlint/to-lines v11.0.0 +- @commitlint/to-lines v17.4.0 +- @commitlint/to-lines v18.4.4 +- @commitlint/to-lines v18.6.1 +- @commitlint/top-level v11.0.0 +- @commitlint/top-level v17.4.0 +- @commitlint/top-level v18.4.4 +- @commitlint/top-level v18.6.1 +- @commitlint/types v11.0.0 +- @commitlint/types v17.4.4 +- @commitlint/types v18.6.0 +- @commitlint/types v18.6.1 +- @cspotcode/source-map-support v0.8.1 +- @csstools/css-parser-algorithms v2.5.0 +- @csstools/css-tokenizer v2.2.3 +- @csstools/media-query-list-parser v2.1.7 +- @csstools/selector-specificity v3.0.1 +- @discoveryjs/json-ext v0.5.7 +- @esbuild/aix-ppc64 v0.19.12 +- @esbuild/android-arm v0.18.17 +- @esbuild/android-arm v0.18.20 +- @esbuild/android-arm v0.19.12 +- @esbuild/android-arm64 v0.18.17 +- @esbuild/android-arm64 v0.18.20 +- @esbuild/android-arm64 v0.19.12 +- @esbuild/android-x64 v0.18.17 +- @esbuild/android-x64 v0.18.20 +- @esbuild/android-x64 v0.19.12 +- @esbuild/darwin-arm64 v0.18.17 +- @esbuild/darwin-arm64 v0.18.20 +- @esbuild/darwin-arm64 v0.19.12 +- @esbuild/darwin-x64 v0.18.17 +- @esbuild/darwin-x64 v0.18.20 +- @esbuild/darwin-x64 v0.19.12 +- @esbuild/freebsd-arm64 v0.18.17 +- @esbuild/freebsd-arm64 v0.18.20 +- @esbuild/freebsd-arm64 v0.19.12 +- @esbuild/freebsd-x64 v0.18.17 +- @esbuild/freebsd-x64 v0.18.20 +- @esbuild/freebsd-x64 v0.19.12 +- @esbuild/linux-arm v0.18.17 +- @esbuild/linux-arm v0.18.20 +- @esbuild/linux-arm v0.19.12 +- @esbuild/linux-arm64 v0.18.17 +- @esbuild/linux-arm64 v0.18.20 +- @esbuild/linux-arm64 v0.19.12 +- @esbuild/linux-ia32 v0.18.17 +- @esbuild/linux-ia32 v0.18.20 +- @esbuild/linux-ia32 v0.19.12 +- @esbuild/linux-loong64 v0.18.17 +- @esbuild/linux-loong64 v0.18.20 +- @esbuild/linux-loong64 v0.19.12 +- @esbuild/linux-mips64el v0.18.17 +- @esbuild/linux-mips64el v0.18.20 +- @esbuild/linux-mips64el v0.19.12 +- @esbuild/linux-ppc64 v0.18.17 +- @esbuild/linux-ppc64 v0.18.20 +- @esbuild/linux-ppc64 v0.19.12 +- @esbuild/linux-riscv64 v0.18.17 +- @esbuild/linux-riscv64 v0.18.20 +- @esbuild/linux-riscv64 v0.19.12 +- @esbuild/linux-s390x v0.18.17 +- @esbuild/linux-s390x v0.18.20 +- @esbuild/linux-s390x v0.19.12 +- @esbuild/linux-x64 v0.18.17 +- @esbuild/linux-x64 v0.18.20 +- @esbuild/linux-x64 v0.19.12 +- @esbuild/netbsd-x64 v0.18.17 +- @esbuild/netbsd-x64 v0.18.20 +- @esbuild/netbsd-x64 v0.19.12 +- @esbuild/openbsd-x64 v0.18.17 +- @esbuild/openbsd-x64 v0.18.20 +- @esbuild/openbsd-x64 v0.19.12 +- @esbuild/sunos-x64 v0.18.17 +- @esbuild/sunos-x64 v0.18.20 +- @esbuild/sunos-x64 v0.19.12 +- @esbuild/win32-arm64 v0.18.17 +- @esbuild/win32-arm64 v0.18.20 +- @esbuild/win32-arm64 v0.19.12 +- @esbuild/win32-ia32 v0.18.17 +- @esbuild/win32-ia32 v0.18.20 +- @esbuild/win32-ia32 v0.19.12 +- @esbuild/win32-x64 v0.18.17 +- @esbuild/win32-x64 v0.18.20 +- @esbuild/win32-x64 v0.19.12 +- @eslint-community/eslint-utils v4.4.0 +- @eslint-community/regexpp v4.10.0 +- @eslint-community/regexpp v4.8.0 +- @eslint-community/regexpp v4.9.1 +- @eslint/eslintrc v0.4.3 +- @eslint/eslintrc v1.4.0 +- @eslint/eslintrc v2.1.2 +- @eslint/eslintrc v2.1.4 +- @eslint/js v8.48.0 +- @eslint/js v8.51.0 +- @eslint/js v8.56.0 +- @evilmartians/lefthook v1.5.2 +- @gar/promisify v1.1.3 +- @hapi/address v2.1.4 +- @hapi/bourne v1.3.2 +- @hapi/hoek v8.5.1 +- @hapi/hoek v9.3.0 +- @hapi/joi v15.1.1 +- @hapi/topo v3.1.6 +- @hapi/topo v5.1.0 +- @humanwhocodes/config-array v0.11.11 +- @humanwhocodes/config-array v0.11.14 +- @humanwhocodes/config-array v0.11.8 +- @humanwhocodes/config-array v0.5.0 +- @humanwhocodes/module-importer v1.0.1 +- @humanwhocodes/object-schema v1.2.1 +- @humanwhocodes/object-schema v2.0.2 +- @hutson/parse-repository-url v3.0.2 +- @iarna/toml v2.2.5 +- @isaacs/cliui v8.0.2 +- @isaacs/string-locale-compare v1.1.0 +- @istanbuljs/load-nyc-config v1.1.0 +- @istanbuljs/schema v0.1.3 +- @jest/console v24.9.0 +- @jest/console v26.6.2 +- @jest/console v28.1.3 +- @jest/console v29.7.0 +- @jest/core v26.6.3 +- @jest/core v28.1.3 +- @jest/core v29.7.0 +- @jest/create-cache-key-function v29.7.0 +- @jest/environment v26.6.2 +- @jest/environment v28.1.3 +- @jest/environment v29.7.0 +- @jest/expect v28.1.3 +- @jest/expect v29.7.0 +- @jest/expect-utils v28.1.3 +- @jest/expect-utils v29.7.0 +- @jest/fake-timers v24.9.0 +- @jest/fake-timers v26.6.2 +- @jest/fake-timers v28.1.3 +- @jest/fake-timers v29.7.0 +- @jest/globals v26.6.2 +- @jest/globals v28.1.3 +- @jest/globals v29.7.0 +- @jest/reporters v26.6.2 +- @jest/reporters v28.1.3 +- @jest/reporters v29.7.0 +- @jest/schemas v28.1.3 +- @jest/schemas v29.6.3 +- @jest/source-map v24.9.0 +- @jest/source-map v26.6.2 +- @jest/source-map v28.1.2 +- @jest/source-map v29.6.3 +- @jest/test-result v24.9.0 +- @jest/test-result v26.6.2 +- @jest/test-result v28.1.3 +- @jest/test-result v29.7.0 +- @jest/test-sequencer v26.6.3 +- @jest/test-sequencer v28.1.3 +- @jest/test-sequencer v29.7.0 +- @jest/transform v26.6.2 +- @jest/transform v28.1.3 +- @jest/transform v29.7.0 +- @jest/types v24.9.0 +- @jest/types v25.5.0 +- @jest/types v26.6.2 +- @jest/types v27.5.1 +- @jest/types v28.1.3 +- @jest/types v29.6.3 +- @jridgewell/gen-mapping v0.3.3 +- @jridgewell/resolve-uri v3.1.1 +- @jridgewell/resolve-uri v3.1.2 +- @jridgewell/set-array v1.1.2 +- @jridgewell/source-map v0.3.5 +- @jridgewell/sourcemap-codec v1.4.15 +- @jridgewell/trace-mapping v0.3.19 +- @jridgewell/trace-mapping v0.3.20 +- @jridgewell/trace-mapping v0.3.22 +- @jridgewell/trace-mapping v0.3.9 +- @jsdoc/salty v0.2.7 +- @leichtgewicht/ip-codec v2.0.4 +- @lerna/add v4.0.0 +- @lerna/bootstrap v4.0.0 +- @lerna/changed v4.0.0 +- @lerna/check-working-tree v4.0.0 +- @lerna/child-process v4.0.0 +- @lerna/clean v4.0.0 +- @lerna/cli v4.0.0 +- @lerna/collect-uncommitted v4.0.0 +- @lerna/collect-updates v4.0.0 +- @lerna/command v4.0.0 +- @lerna/conventional-commits v4.0.0 +- @lerna/create v4.0.0 +- @lerna/create-symlink v4.0.0 +- @lerna/describe-ref v4.0.0 +- @lerna/diff v4.0.0 +- @lerna/exec v4.0.0 +- @lerna/filter-options v4.0.0 +- @lerna/filter-packages v4.0.0 +- @lerna/get-npm-exec-opts v4.0.0 +- @lerna/get-packed v4.0.0 +- @lerna/github-client v4.0.0 +- @lerna/gitlab-client v4.0.0 +- @lerna/global-options v4.0.0 +- @lerna/has-npm-version v4.0.0 +- @lerna/import v4.0.0 +- @lerna/info v4.0.0 +- @lerna/init v4.0.0 +- @lerna/link v4.0.0 +- @lerna/list v4.0.0 +- @lerna/listable v4.0.0 +- @lerna/log-packed v4.0.0 +- @lerna/npm-conf v4.0.0 +- @lerna/npm-dist-tag v4.0.0 +- @lerna/npm-install v4.0.0 +- @lerna/npm-publish v4.0.0 +- @lerna/npm-run-script v4.0.0 +- @lerna/otplease v4.0.0 +- @lerna/output v4.0.0 +- @lerna/pack-directory v4.0.0 +- @lerna/package v4.0.0 +- @lerna/package-graph v4.0.0 +- @lerna/prerelease-id-from-version v4.0.0 +- @lerna/profiler v4.0.0 +- @lerna/project v4.0.0 +- @lerna/prompt v4.0.0 +- @lerna/publish v4.0.0 +- @lerna/pulse-till-done v4.0.0 +- @lerna/query-graph v4.0.0 +- @lerna/resolve-symlink v4.0.0 +- @lerna/rimraf-dir v4.0.0 +- @lerna/run v4.0.0 +- @lerna/run-lifecycle v4.0.0 +- @lerna/run-topologically v4.0.0 +- @lerna/symlink-binary v4.0.0 +- @lerna/symlink-dependencies v4.0.0 +- @lerna/timer v4.0.0 +- @lerna/validation-error v4.0.0 +- @lerna/version v4.0.0 +- @lerna/write-log-file v4.0.0 +- @lezer/common v1.2.1 +- @lezer/lr v1.4.0 +- @lit-labs/ssr-dom-shim v1.2.0 +- @lit/reactive-element v2.0.4 +- @lmdb/lmdb-darwin-arm64 v2.8.5 +- @lmdb/lmdb-darwin-x64 v2.8.5 +- @lmdb/lmdb-linux-arm v2.8.5 +- @lmdb/lmdb-linux-arm64 v2.8.5 +- @lmdb/lmdb-linux-x64 v2.8.5 +- @lmdb/lmdb-win32-x64 v2.8.5 +- @mischnic/json-sourcemap v0.1.1 +- @mrmlnc/readdir-enhanced v2.2.1 +- @msgpackr-extract/msgpackr-extract-darwin-arm64 v3.0.2 +- @msgpackr-extract/msgpackr-extract-darwin-x64 v3.0.2 +- @msgpackr-extract/msgpackr-extract-linux-arm v3.0.2 +- @msgpackr-extract/msgpackr-extract-linux-arm64 v3.0.2 +- @msgpackr-extract/msgpackr-extract-linux-x64 v3.0.2 +- @msgpackr-extract/msgpackr-extract-win32-x64 v3.0.2 +- @ng-bootstrap/ng-bootstrap v15.1.2 +- @ngtools/webpack v16.2.8 +- @nicolo-ribaudo/eslint-scope-5-internals v5.1.1-1 +- @nodelib/fs.scandir v2.1.5 +- @nodelib/fs.stat v1.1.3 +- @nodelib/fs.stat v2.0.5 +- @nodelib/fs.walk v1.2.8 +- @npmcli/agent v2.2.0 +- @npmcli/arborist v7.3.1 +- @npmcli/ci-detect v1.4.0 +- @npmcli/config v8.1.0 +- @npmcli/disparity-colors v3.0.0 +- @npmcli/fs v1.1.1 +- @npmcli/fs v2.1.2 +- @npmcli/fs v3.1.0 +- @npmcli/git v2.1.0 +- @npmcli/git v4.1.0 +- @npmcli/git v5.0.4 +- @npmcli/installed-package-contents v1.0.7 +- @npmcli/installed-package-contents v2.0.2 +- @npmcli/map-workspaces v3.0.4 +- @npmcli/metavuln-calculator v7.0.0 +- @npmcli/move-file v1.1.2 +- @npmcli/move-file v2.0.1 +- @npmcli/name-from-folder v2.0.0 +- @npmcli/node-gyp v1.0.3 +- @npmcli/node-gyp v3.0.0 +- @npmcli/package-json v5.0.0 +- @npmcli/promise-spawn v1.3.2 +- @npmcli/promise-spawn v6.0.2 +- @npmcli/promise-spawn v7.0.1 +- @npmcli/query v3.0.1 +- @npmcli/run-script v1.8.6 +- @npmcli/run-script v6.0.2 +- @npmcli/run-script v7.0.4 +- @octokit/auth-token v2.5.0 +- @octokit/auth-token v3.0.4 +- @octokit/auth-token v4.0.0 +- @octokit/core v3.5.1 +- @octokit/core v3.6.0 +- @octokit/core v4.2.4 +- @octokit/core v5.1.0 +- @octokit/endpoint v6.0.12 +- @octokit/endpoint v7.0.6 +- @octokit/endpoint v9.0.4 +- @octokit/graphql v4.8.0 +- @octokit/graphql v5.0.6 +- @octokit/graphql v7.0.2 +- @octokit/openapi-types v11.2.0 +- @octokit/openapi-types v12.11.0 +- @octokit/openapi-types v18.1.1 +- @octokit/openapi-types v19.1.0 +- @octokit/plugin-enterprise-rest v6.0.1 +- @octokit/plugin-paginate-rest v2.17.0 +- @octokit/plugin-paginate-rest v2.21.3 +- @octokit/plugin-paginate-rest v6.1.2 +- @octokit/plugin-paginate-rest v9.1.5 +- @octokit/plugin-request-log v1.0.4 +- @octokit/plugin-rest-endpoint-methods v5.13.0 +- @octokit/plugin-rest-endpoint-methods v5.16.2 +- @octokit/plugin-rest-endpoint-methods v7.2.3 +- @octokit/plugin-retry v6.0.1 +- @octokit/plugin-throttling v8.1.3 +- @octokit/request v5.6.3 +- @octokit/request v6.2.8 +- @octokit/request v8.1.6 +- @octokit/request-error v2.1.0 +- @octokit/request-error v3.0.3 +- @octokit/request-error v5.0.1 +- @octokit/rest v18.12.0 +- @octokit/rest v19.0.11 +- @octokit/tsconfig v1.0.2 +- @octokit/types v10.0.0 +- @octokit/types v12.4.0 +- @octokit/types v6.34.0 +- @octokit/types v6.41.0 +- @octokit/types v9.3.2 +- @parcel/bundler-default v2.11.0 +- @parcel/cache v2.11.0 +- @parcel/codeframe v2.11.0 +- @parcel/compressor-raw v2.11.0 +- @parcel/config-default v2.11.0 +- @parcel/core v2.11.0 +- @parcel/diagnostic v2.11.0 +- @parcel/events v2.11.0 +- @parcel/fs v2.11.0 +- @parcel/graph v3.1.0 +- @parcel/logger v2.11.0 +- @parcel/markdown-ansi v2.11.0 +- @parcel/namer-default v2.11.0 +- @parcel/node-resolver-core v3.2.0 +- @parcel/optimizer-css v2.11.0 +- @parcel/optimizer-htmlnano v2.11.0 +- @parcel/optimizer-image v2.11.0 +- @parcel/optimizer-svgo v2.11.0 +- @parcel/optimizer-swc v2.11.0 +- @parcel/package-manager v2.11.0 +- @parcel/packager-css v2.11.0 +- @parcel/packager-html v2.11.0 +- @parcel/packager-js v2.11.0 +- @parcel/packager-raw v2.11.0 +- @parcel/packager-svg v2.11.0 +- @parcel/packager-wasm v2.11.0 +- @parcel/plugin v2.11.0 +- @parcel/profiler v2.11.0 +- @parcel/reporter-cli v2.11.0 +- @parcel/reporter-dev-server v2.11.0 +- @parcel/reporter-tracer v2.11.0 +- @parcel/resolver-default v2.11.0 +- @parcel/runtime-browser-hmr v2.11.0 +- @parcel/runtime-js v2.11.0 +- @parcel/runtime-react-refresh v2.11.0 +- @parcel/runtime-service-worker v2.11.0 +- @parcel/rust v2.11.0 +- @parcel/source-map v2.1.1 +- @parcel/transformer-babel v2.11.0 +- @parcel/transformer-css v2.11.0 +- @parcel/transformer-html v2.11.0 +- @parcel/transformer-image v2.11.0 +- @parcel/transformer-js v2.11.0 +- @parcel/transformer-json v2.11.0 +- @parcel/transformer-postcss v2.11.0 +- @parcel/transformer-posthtml v2.11.0 +- @parcel/transformer-raw v2.11.0 +- @parcel/transformer-react-refresh-wrap v2.11.0 +- @parcel/transformer-sass v2.11.0 +- @parcel/transformer-svg v2.11.0 +- @parcel/types v2.11.0 +- @parcel/utils v2.11.0 +- @parcel/watcher v2.4.0 +- @parcel/watcher-android-arm64 v2.4.0 +- @parcel/watcher-darwin-arm64 v2.4.0 +- @parcel/watcher-darwin-x64 v2.4.0 +- @parcel/watcher-freebsd-x64 v2.4.0 +- @parcel/watcher-linux-arm-glibc v2.4.0 +- @parcel/watcher-linux-arm64-glibc v2.4.0 +- @parcel/watcher-linux-arm64-musl v2.4.0 +- @parcel/watcher-linux-x64-glibc v2.4.0 +- @parcel/watcher-linux-x64-musl v2.4.0 +- @parcel/watcher-win32-arm64 v2.4.0 +- @parcel/watcher-win32-ia32 v2.4.0 +- @parcel/watcher-win32-x64 v2.4.0 +- @parcel/workers v2.11.0 +- @pkgjs/parseargs v0.11.0 +- @pnpm/config.env-replace v1.1.0 +- @pnpm/network.ca-file v1.0.2 +- @pnpm/npm-conf v2.2.2 +- @popperjs/core v2.11.8 +- @react-native-community/cli v11.3.7 +- @react-native-community/cli v4.14.0 +- @react-native-community/cli-clean v11.3.7 +- @react-native-community/cli-config v11.3.7 +- @react-native-community/cli-debugger-ui v11.3.7 +- @react-native-community/cli-debugger-ui v4.13.1 +- @react-native-community/cli-doctor v11.3.7 +- @react-native-community/cli-hermes v11.3.7 +- @react-native-community/cli-hermes v4.13.0 +- @react-native-community/cli-platform-android v11.3.7 +- @react-native-community/cli-platform-android v4.13.0 +- @react-native-community/cli-platform-ios v11.3.7 +- @react-native-community/cli-platform-ios v4.13.0 +- @react-native-community/cli-plugin-metro v11.3.7 +- @react-native-community/cli-server-api v11.3.7 +- @react-native-community/cli-server-api v4.13.1 +- @react-native-community/cli-tools v11.3.7 +- @react-native-community/cli-tools v4.13.0 +- @react-native-community/cli-types v11.3.7 +- @react-native-community/cli-types v4.10.1 +- @react-native-community/eslint-config v2.0.0 +- @react-native-community/eslint-plugin v1.1.0 +- @react-native/assets-registry v0.72.0 +- @react-native/codegen v0.72.7 +- @react-native/eslint-config v0.72.2 +- @react-native/eslint-plugin v0.72.0 +- @react-native/gradle-plugin v0.72.11 +- @react-native/js-polyfills v0.72.1 +- @react-native/metro-config v0.72.11 +- @react-native/metro-config v^ 0.72.11 +- @react-native/normalize-colors v0.72.0 +- @react-native/normalize-colors v0.73.2 +- @react-native/virtualized-lists v0.72.8 +- @release-it/conventional-changelog v2.0.1 +- @release-it/conventional-changelog v5.1.1 +- @rollup/plugin-commonjs v25.0.7 +- @rollup/plugin-json v6.1.0 +- @rollup/plugin-node-resolve v15.2.3 +- @rollup/plugin-terser v0.4.4 +- @rollup/pluginutils v5.1.0 +- @rollup/rollup-android-arm-eabi v4.11.0 +- @rollup/rollup-android-arm-eabi v4.9.6 +- @rollup/rollup-android-arm64 v4.11.0 +- @rollup/rollup-android-arm64 v4.9.6 +- @rollup/rollup-darwin-arm64 v4.11.0 +- @rollup/rollup-darwin-arm64 v4.9.6 +- @rollup/rollup-darwin-x64 v4.11.0 +- @rollup/rollup-darwin-x64 v4.9.6 +- @rollup/rollup-linux-arm-gnueabihf v4.11.0 +- @rollup/rollup-linux-arm-gnueabihf v4.9.6 +- @rollup/rollup-linux-arm64-gnu v4.11.0 +- @rollup/rollup-linux-arm64-gnu v4.9.6 +- @rollup/rollup-linux-arm64-musl v4.11.0 +- @rollup/rollup-linux-arm64-musl v4.9.6 +- @rollup/rollup-linux-riscv64-gnu v4.11.0 +- @rollup/rollup-linux-riscv64-gnu v4.9.6 +- @rollup/rollup-linux-x64-gnu v4.11.0 +- @rollup/rollup-linux-x64-gnu v4.9.6 +- @rollup/rollup-linux-x64-musl v4.11.0 +- @rollup/rollup-linux-x64-musl v4.9.6 +- @rollup/rollup-win32-arm64-msvc v4.11.0 +- @rollup/rollup-win32-arm64-msvc v4.9.6 +- @rollup/rollup-win32-ia32-msvc v4.11.0 +- @rollup/rollup-win32-ia32-msvc v4.9.6 +- @rollup/rollup-win32-x64-msvc v4.11.0 +- @rollup/rollup-win32-x64-msvc v4.9.6 +- @schematics/angular v16.2.8 +- @semantic-release/changelog v6.0.3 +- @semantic-release/commit-analyzer v11.1.0 +- @semantic-release/error v3.0.0 +- @semantic-release/error v4.0.0 +- @semantic-release/git v10.0.1 +- @semantic-release/github v9.2.6 +- @semantic-release/npm v11.0.2 +- @semantic-release/release-notes-generator v12.1.0 +- @sideway/address v4.1.4 +- @sideway/formula v3.0.1 +- @sideway/pinpoint v2.0.0 +- @sigstore/bundle v1.1.0 +- @sigstore/bundle v2.1.1 +- @sigstore/core v0.2.0 +- @sigstore/protobuf-specs v0.2.1 +- @sigstore/sign v1.0.0 +- @sigstore/sign v2.2.1 +- @sigstore/tuf v1.0.3 +- @sigstore/tuf v2.3.0 +- @sigstore/verify v0.1.0 +- @sinclair/typebox v0.24.51 +- @sinclair/typebox v0.27.8 +- @sindresorhus/is v0.14.0 +- @sindresorhus/is v4.4.0 +- @sindresorhus/is v4.6.0 +- @sindresorhus/is v5.6.0 +- @sindresorhus/merge-streams v1.0.0 +- @sinonjs/commons v1.8.3 +- @sinonjs/commons v1.8.6 +- @sinonjs/commons v3.0.0 +- @sinonjs/commons v3.0.1 +- @sinonjs/fake-timers v10.3.0 +- @sinonjs/fake-timers v6.0.1 +- @sinonjs/fake-timers v9.1.2 +- @socket.io/component-emitter v3.1.0 +- @srgssr/eslint-config-rio v1.5.0 +- @srgssr/pillarbox-web v1.1.0 +- @srgssr/prettier-config-rio v1.2.0 +- @swc/core v1.3.107 +- @swc/core-darwin-arm64 v1.3.107 +- @swc/core-darwin-x64 v1.3.107 +- @swc/core-linux-arm-gnueabihf v1.3.107 +- @swc/core-linux-arm64-gnu v1.3.107 +- @swc/core-linux-arm64-musl v1.3.107 +- @swc/core-linux-x64-gnu v1.3.107 +- @swc/core-linux-x64-musl v1.3.107 +- @swc/core-win32-arm64-msvc v1.3.107 +- @swc/core-win32-ia32-msvc v1.3.107 +- @swc/core-win32-x64-msvc v1.3.107 +- @swc/counter v0.1.2 +- @swc/helpers v0.5.3 +- @swc/types v0.1.5 +- @szmarczak/http-timer v1.1.2 +- @szmarczak/http-timer v4.0.6 +- @szmarczak/http-timer v5.0.1 +- @tootallnate/once v1.1.2 +- @tootallnate/once v2.0.0 +- @trysound/sax v0.2.0 +- @tsconfig/node10 v1.0.9 +- @tsconfig/node12 v1.0.11 +- @tsconfig/node14 v1.0.3 +- @tsconfig/node16 v1.0.4 +- @tufjs/canonical-json v1.0.0 +- @tufjs/canonical-json v2.0.0 +- @tufjs/models v1.0.4 +- @tufjs/models v2.0.0 +- @types/babel__core v7.1.18 +- @types/babel__core v7.20.2 +- @types/babel__core v7.20.5 +- @types/babel__generator v7.6.4 +- @types/babel__generator v7.6.5 +- @types/babel__generator v7.6.8 +- @types/babel__template v7.4.1 +- @types/babel__template v7.4.2 +- @types/babel__template v7.4.4 +- @types/babel__traverse v7.14.2 +- @types/babel__traverse v7.20.2 +- @types/babel__traverse v7.20.5 +- @types/body-parser v1.19.4 +- @types/bonjour v3.5.12 +- @types/cacheable-request v6.0.2 +- @types/connect v3.4.37 +- @types/connect-history-api-fallback v1.5.2 +- @types/cookie v0.4.1 +- @types/cors v2.8.15 +- @types/eslint v8.44.6 +- @types/eslint-scope v3.7.6 +- @types/eslint-visitor-keys v1.0.0 +- @types/estree v1.0.3 +- @types/estree v1.0.5 +- @types/express v4.17.20 +- @types/express-serve-static-core v4.17.39 +- @types/glob v7.2.0 +- @types/graceful-fs v4.1.5 +- @types/graceful-fs v4.1.7 +- @types/graceful-fs v4.1.9 +- @types/http-cache-semantics v4.0.1 +- @types/http-cache-semantics v4.0.2 +- @types/http-errors v2.0.3 +- @types/http-proxy v1.17.13 +- @types/istanbul-lib-coverage v2.0.4 +- @types/istanbul-lib-coverage v2.0.6 +- @types/istanbul-lib-report v3.0.0 +- @types/istanbul-lib-report v3.0.1 +- @types/istanbul-lib-report v3.0.3 +- @types/istanbul-reports v1.1.2 +- @types/istanbul-reports v3.0.1 +- @types/istanbul-reports v3.0.2 +- @types/istanbul-reports v3.0.4 +- @types/jasmine v4.3.6 +- @types/jest v26.0.24 +- @types/jest v28.1.8 +- @types/jest v29.5.12 +- @types/jsdom v20.0.1 +- @types/json-schema v7.0.11 +- @types/json-schema v7.0.13 +- @types/json-schema v7.0.14 +- @types/json-schema v7.0.15 +- @types/json-schema v7.0.9 +- @types/json5 v0.0.29 +- @types/keyv v3.1.3 +- @types/linkify-it v3.0.5 +- @types/markdown-it v12.2.3 +- @types/mdurl v1.0.5 +- @types/mime v1.3.4 +- @types/minimatch v3.0.5 +- @types/minimatch v5.1.2 +- @types/minimist v1.2.2 +- @types/minimist v1.2.3 +- @types/minimist v1.2.5 +- @types/node v17.0.12 +- @types/node v17.0.45 +- @types/node v20.11.10 +- @types/node v20.11.17 +- @types/node v20.5.1 +- @types/node v20.8.4 +- @types/node v20.8.9 +- @types/node-forge v1.3.8 +- @types/normalize-package-data v2.4.1 +- @types/normalize-package-data v2.4.2 +- @types/normalize-package-data v2.4.4 +- @types/parse-json v4.0.0 +- @types/prettier v2.4.3 +- @types/prettier v2.7.3 +- @types/prop-types v15.7.4 +- @types/prop-types v15.7.5 +- @types/prop-types v15.7.8 +- @types/qs v6.9.9 +- @types/range-parser v1.2.6 +- @types/react v16.14.21 +- @types/react v17.0.21 +- @types/react v17.0.38 +- @types/react v18.2.21 +- @types/react-dom v18.2.7 +- @types/react-native v0.62.13 +- @types/react-native v0.70.0 +- @types/resolve v1.20.2 +- @types/responselike v1.0.0 +- @types/retry v0.12.0 +- @types/scheduler v0.16.2 +- @types/scheduler v0.16.3 +- @types/scheduler v0.16.4 +- @types/semver v7.3.13 +- @types/semver v7.5.3 +- @types/semver v7.5.6 +- @types/send v0.17.3 +- @types/serve-index v1.9.3 +- @types/serve-static v1.15.4 +- @types/sockjs v0.3.35 +- @types/stack-utils v1.0.1 +- @types/stack-utils v2.0.1 +- @types/stack-utils v2.0.3 +- @types/tough-cookie v4.0.5 +- @types/trusted-types v2.0.7 +- @types/unist v2.0.10 +- @types/unist v3.0.2 +- @types/vfile v3.0.2 +- @types/vfile-message v2.0.0 +- @types/ws v8.5.8 +- @types/yargs v13.0.12 +- @types/yargs v15.0.14 +- @types/yargs v15.0.16 +- @types/yargs v16.0.6 +- @types/yargs v17.0.28 +- @types/yargs v17.0.32 +- @types/yargs-parser v20.2.1 +- @types/yargs-parser v21.0.1 +- @types/yargs-parser v21.0.3 +- @typescript-eslint/eslint-plugin v3.10.1 +- @typescript-eslint/eslint-plugin v5.47.0 +- @typescript-eslint/eslint-plugin v5.62.0 +- @typescript-eslint/experimental-utils v3.10.1 +- @typescript-eslint/parser v3.10.1 +- @typescript-eslint/parser v5.47.0 +- @typescript-eslint/parser v5.62.0 +- @typescript-eslint/scope-manager v5.47.0 +- @typescript-eslint/scope-manager v5.62.0 +- @typescript-eslint/type-utils v5.47.0 +- @typescript-eslint/type-utils v5.62.0 +- @typescript-eslint/types v3.10.1 +- @typescript-eslint/types v5.47.0 +- @typescript-eslint/types v5.62.0 +- @typescript-eslint/typescript-estree v3.10.1 +- @typescript-eslint/typescript-estree v5.47.0 +- @typescript-eslint/typescript-estree v5.62.0 +- @typescript-eslint/utils v5.47.0 +- @typescript-eslint/utils v5.62.0 +- @typescript-eslint/visitor-keys v3.10.1 +- @typescript-eslint/visitor-keys v5.47.0 +- @typescript-eslint/visitor-keys v5.62.0 +- @ungap/structured-clone v1.2.0 +- @videojs/http-streaming v3.10.0 +- @videojs/http-streaming v3.11.1 +- @videojs/vhs-utils v3.0.5 +- @videojs/vhs-utils v4.0.0 +- @videojs/xhr v2.6.0 +- @vitejs/plugin-basic-ssl v1.0.1 +- @vitejs/plugin-react v4.0.4 +- @webassemblyjs/ast v1.11.6 +- @webassemblyjs/floating-point-hex-parser v1.11.6 +- @webassemblyjs/helper-api-error v1.11.6 +- @webassemblyjs/helper-buffer v1.11.6 +- @webassemblyjs/helper-numbers v1.11.6 +- @webassemblyjs/helper-wasm-bytecode v1.11.6 +- @webassemblyjs/helper-wasm-section v1.11.6 +- @webassemblyjs/ieee754 v1.11.6 +- @webassemblyjs/leb128 v1.11.6 +- @webassemblyjs/utf8 v1.11.6 +- @webassemblyjs/wasm-edit v1.11.6 +- @webassemblyjs/wasm-gen v1.11.6 +- @webassemblyjs/wasm-opt v1.11.6 +- @webassemblyjs/wasm-parser v1.11.6 +- @webassemblyjs/wast-printer v1.11.6 +- @wessberg/ts-evaluator v0.0.27 +- @xmldom/xmldom v0.8.10 +- @xtuc/ieee754 v1.2.0 +- @xtuc/long v4.2.2 +- @yarnpkg/lockfile v1.1.0 +- JSONStream v1.3.5 +- abab v2.0.5 +- abab v2.0.6 +- abbrev v1.1.1 +- abbrev v2.0.0 +- abort-controller v3.0.0 +- abortcontroller-polyfill v1.7.5 +- absolute-path v0.0.0 +- accepts v1.3.7 +- accepts v1.3.8 +- acorn v7.4.1 +- acorn v8.10.0 +- acorn v8.11.2 +- acorn v8.11.3 +- acorn v8.7.0 +- acorn v8.8.1 +- acorn-globals v6.0.0 +- acorn-globals v7.0.1 +- acorn-import-assertions v1.9.0 +- acorn-jsx v5.3.2 +- acorn-walk v7.2.0 +- acorn-walk v8.2.0 +- acorn-walk v8.3.2 +- add-stream v1.0.0 +- adjust-sourcemap-loader v4.0.0 +- aes-decrypter v4.0.1 +- agent-base v6.0.2 +- agent-base v7.1.0 +- agentkeepalive v4.2.1 +- agentkeepalive v4.5.0 +- aggregate-error v3.1.0 +- aggregate-error v4.0.1 +- aggregate-error v5.0.0 +- ajv v6.12.6 +- ajv v8.12.0 +- ajv v8.9.0 +- ajv-formats v2.1.1 +- ajv-keywords v3.5.2 +- ajv-keywords v5.1.0 +- anser v1.4.10 +- ansi-align v3.0.1 +- ansi-colors v1.1.0 +- ansi-colors v4.1.1 +- ansi-colors v4.1.3 +- ansi-cyan v0.1.1 +- ansi-escapes v3.2.0 +- ansi-escapes v4.3.2 +- ansi-escapes v6.2.0 +- ansi-fragments v0.2.1 +- ansi-gray v0.1.1 +- ansi-html-community v0.0.8 +- ansi-red v0.1.1 +- ansi-regex v2.1.1 +- ansi-regex v3.0.0 +- ansi-regex v4.1.0 +- ansi-regex v4.1.1 +- ansi-regex v5.0.1 +- ansi-regex v6.0.1 +- ansi-styles v3.2.1 +- ansi-styles v4.3.0 +- ansi-styles v5.2.0 +- ansi-styles v6.2.1 +- ansi-wrap v0.1.0 +- ansicolors v0.3.2 +- anymatch v2.0.0 +- anymatch v3.1.2 +- anymatch v3.1.3 +- appdirsjs v1.2.7 +- aproba v1.2.0 +- aproba v2.0.0 +- archy v1.0.0 +- are-we-there-yet v1.1.7 +- are-we-there-yet v3.0.1 +- are-we-there-yet v4.0.2 +- arg v4.1.3 +- argparse v1.0.10 +- argparse v2.0.1 +- argv-formatter v1.0.0 +- aria-query v4.2.2 +- arr-diff v1.1.0 +- arr-diff v4.0.0 +- arr-flatten v1.1.0 +- arr-union v2.1.0 +- arr-union v3.1.0 +- array-buffer-byte-length v1.0.0 +- array-buffer-byte-length v1.0.1 +- array-differ v3.0.0 +- array-filter v0.0.1 +- array-find-index v1.0.2 +- array-flatten v1.1.1 +- array-flatten v2.1.2 +- array-ify v1.0.0 +- array-includes v3.1.4 +- array-includes v3.1.6 +- array-includes v3.1.7 +- array-map v0.0.0 +- array-reduce v0.0.0 +- array-slice v0.2.3 +- array-union v1.0.2 +- array-union v2.1.0 +- array-uniq v1.0.3 +- array-unique v0.3.2 +- array.prototype.filter v1.0.3 +- array.prototype.findlastindex v1.2.4 +- array.prototype.flat v1.3.1 +- array.prototype.flat v1.3.2 +- array.prototype.flatmap v1.2.5 +- array.prototype.flatmap v1.3.1 +- array.prototype.flatmap v1.3.2 +- array.prototype.map v1.0.6 +- array.prototype.tosorted v1.1.1 +- array.prototype.tosorted v1.1.2 +- arraybuffer.prototype.slice v1.0.1 +- arraybuffer.prototype.slice v1.0.2 +- arraybuffer.prototype.slice v1.0.3 +- arrify v1.0.1 +- arrify v2.0.1 +- asap v2.0.6 +- asn1 v0.2.6 +- assert-plus v1.0.0 +- assign-symbols v1.0.0 +- ast-types v0.13.4 +- ast-types v0.15.2 +- ast-types-flow v0.0.7 +- astral-regex v1.0.0 +- astral-regex v2.0.0 +- async v2.6.3 +- async v3.2.4 +- async-limiter v1.0.1 +- async-retry v1.3.3 +- asynciterator.prototype v1.0.0 +- asynckit v0.4.0 +- at-least-node v1.0.0 +- atob v2.1.2 +- autoprefixer v10.4.14 +- autoprefixer v9.8.8 +- available-typed-arrays v1.0.5 +- available-typed-arrays v1.0.6 +- aws-sign2 v0.7.0 +- aws4 v1.11.0 +- axe-core v4.6.1 +- axobject-query v2.2.0 +- babel-core v7.0.0-bridge.0 +- babel-eslint v10.1.0 +- babel-jest v26.6.3 +- babel-jest v28.1.3 +- babel-jest v29.7.0 +- babel-loader v9.1.3 +- babel-plugin-dynamic-import-node v2.3.3 +- babel-plugin-istanbul v6.1.1 +- babel-plugin-jest-hoist v26.6.2 +- babel-plugin-jest-hoist v28.1.3 +- babel-plugin-jest-hoist v29.6.3 +- babel-plugin-module-resolver v5.0.0 +- babel-plugin-module-resolver v^ 5.0.0 +- babel-plugin-polyfill-corejs2 v0.3.1 +- babel-plugin-polyfill-corejs2 v0.4.5 +- babel-plugin-polyfill-corejs2 v0.4.6 +- babel-plugin-polyfill-corejs2 v0.4.8 +- babel-plugin-polyfill-corejs3 v0.5.1 +- babel-plugin-polyfill-corejs3 v0.8.4 +- babel-plugin-polyfill-corejs3 v0.8.6 +- babel-plugin-polyfill-corejs3 v0.9.0 +- babel-plugin-polyfill-regenerator v0.3.1 +- babel-plugin-polyfill-regenerator v0.5.2 +- babel-plugin-polyfill-regenerator v0.5.3 +- babel-plugin-polyfill-regenerator v0.5.5 +- babel-plugin-syntax-trailing-function-commas v +- babel-plugin-syntax-trailing-function-commas v7.0.0-beta.0 +- babel-plugin-transform-flow-enums v0.0.2 +- babel-preset-current-node-syntax v1.0.1 +- babel-preset-fbjs v3.4.0 +- babel-preset-jest v26.6.2 +- babel-preset-jest v28.1.3 +- babel-preset-jest v29.6.3 +- bail v1.0.5 +- balanced-match v1.0.2 +- balanced-match v2.0.0 +- base v0.11.2 +- base-x v3.0.9 +- base64-js v1.5.1 +- base64id v2.0.0 +- basic-ftp v5.0.3 +- batch v0.6.1 +- bcrypt-pbkdf v1.0.2 +- before-after-hook v2.2.2 +- before-after-hook v2.2.3 +- big-integer v1.6.51 +- big.js v5.2.2 +- bin-links v4.0.3 +- binary-extensions v2.2.0 +- bindings v1.5.0 +- bl v4.1.0 +- bl v5.1.0 +- bluebird v3.7.2 +- body-parser v1.20.1 +- body-parser v1.20.2 +- bonjour-service v1.1.1 +- boolbase v1.0.0 +- bootstrap v5.3.2 +- bottleneck v2.19.5 +- boxen v5.1.2 +- boxen v7.1.1 +- bplist-creator v0.1.0 +- bplist-parser v0.2.0 +- bplist-parser v0.3.0 +- brace-expansion v1.1.11 +- brace-expansion v2.0.1 +- braces v2.3.2 +- braces v3.0.2 +- brotli-size v4.0.0 +- browser-process-hrtime v1.0.0 +- browserslist v4.19.1 +- browserslist v4.21.10 +- browserslist v4.22.1 +- browserslist v4.22.3 +- browserslist v4.23.0 +- browserstack-local v^ 1.2.0 +- bser v2.1.1 +- buffer v5.7.1 +- buffer v6.0.3 +- buffer-crc32 v0.2.13 +- buffer-from v1.1.2 +- builtin-modules v3.3.0 +- builtins v1.0.3 +- builtins v5.0.1 +- bundle-name v3.0.0 +- byline v5.0.0 +- byte-size v7.0.1 +- bytes v3.0.0 +- bytes v3.1.2 +- cacache v15.3.0 +- cacache v16.1.3 +- cacache v17.1.4 +- cacache v18.0.2 +- cache-base v1.0.1 +- cacheable-lookup v5.0.4 +- cacheable-lookup v7.0.0 +- cacheable-request v10.2.14 +- cacheable-request v6.1.0 +- cacheable-request v7.0.2 +- call-bind v1.0.2 +- call-bind v1.0.5 +- call-bind v1.0.7 +- call-me-maybe v1.0.2 +- caller-callsite v2.0.0 +- caller-path v2.0.0 +- callsites v2.0.0 +- callsites v3.1.0 +- camel-case v4.1.2 +- camelcase v4.1.0 +- camelcase v5.3.1 +- camelcase v6.3.0 +- camelcase v7.0.1 +- camelcase-keys v4.2.0 +- camelcase-keys v6.2.2 +- camelcase-keys v7.0.2 +- caniuse-api v3.0.0 +- caniuse-lite v1.0.30001303 +- caniuse-lite v1.0.30001527 +- caniuse-lite v1.0.30001547 +- caniuse-lite v1.0.30001555 +- caniuse-lite v1.0.30001581 +- caniuse-lite v1.0.30001587 +- capture-exit v2.0.0 +- cardinal v2.1.1 +- caseless v0.12.0 +- catharsis v0.9.0 +- ccount v1.1.0 +- chalk v2.4.2 +- chalk v3.0.0 +- chalk v4.1.0 +- chalk v4.1.2 +- chalk v5.2.0 +- chalk v5.3.0 +- char-regex v1.0.2 +- character-entities v1.2.4 +- character-entities-html4 v1.1.4 +- character-entities-legacy v1.1.4 +- character-reference-invalid v1.1.4 +- chardet v0.4.2 +- chardet v0.7.0 +- chokidar v3.5.3 +- chokidar v3.6.0 +- chownr v1.1.4 +- chownr v2.0.0 +- chrome-trace-event v1.0.3 +- ci-info v2.0.0 +- ci-info v3.3.0 +- ci-info v3.9.0 +- ci-info v4.0.0 +- cidr-regex v4.0.3 +- cjs-module-lexer v0.6.0 +- cjs-module-lexer v1.2.3 +- class-utils v0.3.6 +- classnames v2.3.2 +- clean-css v5.3.3 +- clean-jsdoc-theme v4.2.17 +- clean-stack v2.2.0 +- clean-stack v4.2.0 +- clean-stack v5.2.0 +- cli-boxes v2.2.1 +- cli-boxes v3.0.0 +- cli-columns v4.0.0 +- cli-cursor v2.1.0 +- cli-cursor v3.1.0 +- cli-cursor v4.0.0 +- cli-progress v3.12.0 +- cli-spinners v2.6.1 +- cli-spinners v2.9.1 +- cli-table3 v0.6.3 +- cli-width v2.2.1 +- cli-width v3.0.0 +- cli-width v4.1.0 +- cliui v5.0.0 +- cliui v6.0.0 +- cliui v7.0.4 +- cliui v8.0.1 +- clone v1.0.4 +- clone v2.1.2 +- clone-deep v4.0.1 +- clone-regexp v1.0.1 +- clone-response v1.0.2 +- cmd-shim v4.1.0 +- cmd-shim v6.0.2 +- co v4.6.0 +- code-point-at v1.1.0 +- collapse-white-space v1.0.6 +- collect-v8-coverage v1.0.1 +- collect-v8-coverage v1.0.2 +- collection-visit v1.0.0 +- color-convert v1.9.3 +- color-convert v2.0.1 +- color-name v1.1.3 +- color-name v1.1.4 +- color-support v1.1.3 +- colord v2.9.3 +- colorette v1.4.0 +- colorette v2.0.20 +- colors v0.6.2 +- colors v1.4.0 +- columnify v1.6.0 +- combined-stream v1.0.8 +- command-exists v1.2.9 +- commander v10.0.1 +- commander v2.1.0 +- commander v2.13.0 +- commander v2.14.1 +- commander v2.20.3 +- commander v2.9.0 +- commander v7.2.0 +- commander v9.5.0 +- commitlint v11.0.0 +- commitlint v17.7.2 +- common-ancestor-path v1.0.1 +- common-path-prefix v3.0.0 +- commondir v1.0.1 +- compare-func v2.0.0 +- component-emitter v1.3.0 +- component-emitter v1.3.1 +- compressible v2.0.18 +- compression v1.7.4 +- concat-map v0.0.1 +- concat-stream v1.6.2 +- concat-stream v2.0.0 +- config-chain v1.1.13 +- configstore v5.0.1 +- configstore v6.0.0 +- confusing-browser-globals v1.0.11 +- connect v3.7.0 +- connect-history-api-fallback v2.0.0 +- console-control-strings v1.1.0 +- content-disposition v0.5.4 +- content-type v1.0.5 +- conventional-changelog v3.1.25 +- conventional-changelog-angular v5.0.13 +- conventional-changelog-angular v6.0.0 +- conventional-changelog-angular v7.0.0 +- conventional-changelog-atom v2.0.8 +- conventional-changelog-codemirror v2.0.8 +- conventional-changelog-conventionalcommits v4.6.3 +- conventional-changelog-conventionalcommits v6.1.0 +- conventional-changelog-conventionalcommits v7.0.2 +- conventional-changelog-core v4.2.4 +- conventional-changelog-ember v2.0.9 +- conventional-changelog-eslint v3.0.9 +- conventional-changelog-express v2.0.6 +- conventional-changelog-jquery v3.0.11 +- conventional-changelog-jshint v2.0.9 +- conventional-changelog-preset-loader v2.3.4 +- conventional-changelog-writer v5.0.1 +- conventional-changelog-writer v7.0.1 +- conventional-commits-filter v2.0.7 +- conventional-commits-filter v4.0.0 +- conventional-commits-parser v3.2.4 +- conventional-commits-parser v4.0.0 +- conventional-commits-parser v5.0.0 +- conventional-recommended-bump v6.1.0 +- convert-source-map v1.8.0 +- convert-source-map v1.9.0 +- convert-source-map v2.0.0 +- cookie v0.4.2 +- cookie v0.5.0 +- cookie-signature v1.0.6 +- copy-anything v2.0.6 +- copy-descriptor v0.1.1 +- copy-webpack-plugin v11.0.0 +- core-js v2.6.12 +- core-js v3.20.3 +- core-js-compat v3.20.3 +- core-js-compat v3.33.0 +- core-js-compat v3.33.1 +- core-js-compat v3.35.1 +- core-js-pure v3.27.0 +- core-util-is v1.0.2 +- core-util-is v1.0.3 +- cors v2.8.5 +- cosmiconfig v5.2.1 +- cosmiconfig v7.0.1 +- cosmiconfig v7.1.0 +- cosmiconfig v8.1.3 +- cosmiconfig v8.3.6 +- cosmiconfig v9.0.0 +- cosmiconfig-typescript-loader v4.4.0 +- cosmiconfig-typescript-loader v5.0.0 +- create-jest v29.7.0 +- create-require v1.1.1 +- critters v0.0.20 +- cross-spawn v5.1.0 +- cross-spawn v6.0.5 +- cross-spawn v7.0.3 +- crypto-random-string v2.0.0 +- crypto-random-string v4.0.0 +- css-declaration-sorter v7.1.1 +- css-functions-list v3.2.1 +- css-loader v6.8.1 +- css-select v4.3.0 +- css-select v5.1.0 +- css-tree v1.1.3 +- css-tree v2.2.1 +- css-tree v2.3.1 +- css-what v6.1.0 +- cssesc v3.0.0 +- cssnano v6.0.3 +- cssnano-preset-default v6.0.3 +- cssnano-utils v4.0.1 +- csso v4.2.0 +- csso v5.0.5 +- cssom v0.3.8 +- cssom v0.4.4 +- cssom v0.5.0 +- cssstyle v2.3.0 +- csstype v3.0.10 +- csstype v3.1.2 +- currently-unhandled v0.4.1 +- custom-event v1.0.1 +- damerau-levenshtein v1.0.8 +- dargs v7.0.0 +- dashdash v1.14.1 +- data-uri-to-buffer v4.0.1 +- data-uri-to-buffer v6.0.1 +- data-urls v2.0.0 +- data-urls v3.0.2 +- date-format v4.0.14 +- dateformat v3.0.3 +- dayjs v1.10.7 +- dayjs v1.11.10 +- debug v2.6.9 +- debug v3.2.7 +- debug v4.3.3 +- debug v4.3.4 +- debuglog v1.0.1 +- decamelize v1.2.0 +- decamelize v5.0.1 +- decamelize-keys v1.1.0 +- decamelize-keys v1.1.1 +- decimal.js v10.3.1 +- decimal.js v10.4.3 +- decode-uri-component v0.2.0 +- decode-uri-component v0.2.2 +- decompress-response v3.3.0 +- decompress-response v6.0.0 +- dedent v0.7.0 +- dedent v1.5.1 +- deep-extend v0.6.0 +- deep-is v0.1.4 +- deepmerge v3.3.0 +- deepmerge v4.2.2 +- deepmerge v4.3.1 +- default-browser v4.0.0 +- default-browser-id v3.0.0 +- default-gateway v6.0.3 +- defaults v1.0.3 +- defaults v1.0.4 +- defer-to-connect v1.1.3 +- defer-to-connect v2.0.1 +- define-data-property v1.1.0 +- define-data-property v1.1.1 +- define-data-property v1.1.4 +- define-lazy-prop v2.0.0 +- define-lazy-prop v3.0.0 +- define-properties v1.1.3 +- define-properties v1.1.4 +- define-properties v1.2.0 +- define-properties v1.2.1 +- define-property v0.2.5 +- define-property v1.0.0 +- define-property v2.0.2 +- degenerator v4.0.4 +- del v6.0.0 +- del v6.1.1 +- del v7.1.0 +- del-cli v5.1.0 +- delayed-stream v1.0.0 +- delegates v1.0.0 +- denodeify v1.2.1 +- depd v1.1.2 +- depd v2.0.0 +- deprecated-react-native-prop-types v4.1.0 +- deprecation v2.3.1 +- destroy v1.0.4 +- destroy v1.2.0 +- detect-indent v5.0.0 +- detect-indent v6.1.0 +- detect-libc v1.0.3 +- detect-libc v2.0.2 +- detect-newline v3.1.0 +- detect-node v2.1.0 +- dezalgo v1.0.3 +- di v0.0.1 +- diff v4.0.2 +- diff v5.1.0 +- diff-sequences v26.6.2 +- diff-sequences v28.1.1 +- diff-sequences v29.6.3 +- dir-glob v2.2.2 +- dir-glob v3.0.1 +- dns-equal v1.0.0 +- dns-packet v5.6.1 +- doctrine v2.1.0 +- doctrine v3.0.0 +- dom-serialize v2.2.1 +- dom-serializer v0.2.2 +- dom-serializer v1.4.1 +- dom-serializer v2.0.0 +- dom-walk v0.1.2 +- domelementtype v1.3.1 +- domelementtype v2.3.0 +- domexception v2.0.1 +- domexception v4.0.0 +- domhandler v2.4.2 +- domhandler v4.3.1 +- domhandler v5.0.3 +- domutils v1.7.0 +- domutils v2.8.0 +- domutils v3.1.0 +- dot-case v3.0.4 +- dot-prop v5.3.0 +- dot-prop v6.0.1 +- dotenv v7.0.0 +- dotenv-expand v5.1.0 +- duplexer v0.1.1 +- duplexer v0.1.2 +- duplexer2 v0.1.4 +- duplexer3 v0.1.4 +- eastasianwidth v0.2.0 +- ecc-jsbn v0.1.2 +- ee-first v1.1.1 +- electron-to-chromium v1.4.508 +- electron-to-chromium v1.4.54 +- electron-to-chromium v1.4.548 +- electron-to-chromium v1.4.569 +- electron-to-chromium v1.4.648 +- electron-to-chromium v1.4.670 +- emittery v0.10.2 +- emittery v0.13.1 +- emittery v0.7.2 +- emoji-regex v7.0.3 +- emoji-regex v8.0.0 +- emoji-regex v9.2.2 +- emojilib v2.4.0 +- emojis-list v3.0.0 +- encodeurl v1.0.2 +- encoding v0.1.13 +- end-of-stream v1.4.4 +- engine.io v6.5.3 +- engine.io-parser v5.2.1 +- enhanced-resolve v5.15.0 +- enquirer v2.3.6 +- ent v2.2.0 +- entities v1.1.2 +- entities v2.1.0 +- entities v2.2.0 +- entities v3.0.1 +- entities v4.5.0 +- env-ci v11.0.0 +- env-paths v2.2.1 +- envinfo v7.10.0 +- envinfo v7.8.1 +- err-code v2.0.3 +- errno v0.1.8 +- error-ex v1.3.2 +- error-stack-parser v2.0.6 +- error-stack-parser v2.1.4 +- errorhandler v1.5.1 +- es-abstract v1.19.1 +- es-abstract v1.20.5 +- es-abstract v1.22.1 +- es-abstract v1.22.2 +- es-abstract v1.22.4 +- es-array-method-boxes-properly v1.0.0 +- es-define-property v1.0.0 +- es-errors v1.3.0 +- es-get-iterator v1.1.3 +- es-iterator-helpers v1.0.14 +- es-iterator-helpers v1.0.15 +- es-module-lexer v1.3.1 +- es-set-tostringtag v2.0.1 +- es-set-tostringtag v2.0.2 +- es-shim-unscopables v1.0.0 +- es-shim-unscopables v1.0.2 +- es-to-primitive v1.2.1 +- esbuild v0.18.17 +- esbuild v0.18.20 +- esbuild v0.19.12 +- esbuild-wasm v0.18.17 +- escalade v3.1.1 +- escalade v3.1.2 +- escape-goat v2.1.1 +- escape-goat v4.0.0 +- escape-html v1.0.3 +- escape-string-regexp v1.0.5 +- escape-string-regexp v2.0.0 +- escape-string-regexp v4.0.0 +- escape-string-regexp v5.0.0 +- escodegen v1.14.3 +- escodegen v2.0.0 +- escodegen v2.1.0 +- eslint v7.32.0 +- eslint v8.30.0 +- eslint v8.48.0 +- eslint v8.51.0 +- eslint v8.56.0 +- eslint-compat-utils v0.1.2 +- eslint-config-airbnb v19.0.4 +- eslint-config-airbnb-base v15.0.0 +- eslint-config-airbnb-typescript v16.2.0 +- eslint-config-prettier v6.15.0 +- eslint-config-prettier v7.2.0 +- eslint-config-prettier v8.10.0 +- eslint-config-prettier v8.5.0 +- eslint-config-standard v17.1.0 +- eslint-import-resolver-node v0.3.6 +- eslint-import-resolver-node v0.3.9 +- eslint-module-utils v2.7.4 +- eslint-module-utils v2.8.0 +- eslint-plugin-es-x v7.5.0 +- eslint-plugin-eslint-comments v3.2.0 +- eslint-plugin-flowtype v2.50.3 +- eslint-plugin-ft-flow v2.0.3 +- eslint-plugin-import v2.26.0 +- eslint-plugin-import v2.29.1 +- eslint-plugin-jest v22.4.1 +- eslint-plugin-jest v26.9.0 +- eslint-plugin-jest v27.6.3 +- eslint-plugin-jsx-a11y v6.6.1 +- eslint-plugin-n v16.6.2 +- eslint-plugin-prettier v3.1.2 +- eslint-plugin-prettier v3.4.1 +- eslint-plugin-prettier v4.2.1 +- eslint-plugin-promise v6.1.1 +- eslint-plugin-react v7.28.0 +- eslint-plugin-react v7.33.2 +- eslint-plugin-react-hooks v4.3.0 +- eslint-plugin-react-hooks v4.6.0 +- eslint-plugin-react-native v3.11.0 +- eslint-plugin-react-native v4.1.0 +- eslint-plugin-react-native-globals v0.1.2 +- eslint-plugin-react-refresh v0.4.3 +- eslint-scope v5.1.1 +- eslint-scope v7.1.1 +- eslint-scope v7.2.2 +- eslint-utils v2.1.0 +- eslint-utils v3.0.0 +- eslint-visitor-keys v1.3.0 +- eslint-visitor-keys v2.1.0 +- eslint-visitor-keys v3.3.0 +- eslint-visitor-keys v3.4.3 +- espree v7.3.1 +- espree v9.4.1 +- espree v9.6.1 +- esprima v4.0.1 +- esquery v1.4.0 +- esquery v1.5.0 +- esrecurse v4.3.0 +- estraverse v4.3.0 +- estraverse v5.3.0 +- estree-walker v2.0.2 +- esutils v2.0.3 +- etag v1.8.1 +- event-target-shim v5.0.1 +- eventemitter-asyncresource v1.0.0 +- eventemitter3 v3.1.2 +- eventemitter3 v4.0.7 +- events v3.3.0 +- exec-sh v0.3.6 +- execa v1.0.0 +- execa v4.1.0 +- execa v5.1.1 +- execa v7.1.1 +- execa v7.2.0 +- execa v8.0.1 +- execall v1.0.0 +- exit v0.1.2 +- expand-brackets v2.1.4 +- expect v26.6.2 +- expect v28.1.3 +- expect v29.7.0 +- exponential-backoff v3.1.1 +- express v4.18.2 +- extend v3.0.2 +- extend-shallow v1.1.4 +- extend-shallow v2.0.1 +- extend-shallow v3.0.2 +- external-editor v2.2.0 +- external-editor v3.1.0 +- extglob v2.0.4 +- extsprintf v1.3.0 +- extsprintf v1.4.1 +- fancy-log v1.3.3 +- fast-deep-equal v3.1.3 +- fast-diff v1.2.0 +- fast-diff v1.3.0 +- fast-glob v2.2.7 +- fast-glob v3.2.11 +- fast-glob v3.2.12 +- fast-glob v3.3.0 +- fast-glob v3.3.1 +- fast-glob v3.3.2 +- fast-json-stable-stringify v2.1.0 +- fast-levenshtein v2.0.6 +- fast-xml-parser v4.3.2 +- fastest-levenshtein v1.0.16 +- fastq v1.13.0 +- fastq v1.14.0 +- fastq v1.15.0 +- fastq v1.17.0 +- fastq v1.17.1 +- faye-websocket v0.11.4 +- fb-watchman v2.0.1 +- fb-watchman v2.0.2 +- fbjs v1.0.0 +- fbjs-css-vars v1.0.2 +- fbjs-scripts v1.2.0 +- fetch-blob v3.2.0 +- figures v2.0.0 +- figures v3.2.0 +- figures v5.0.0 +- figures v6.0.1 +- file-entry-cache v4.0.0 +- file-entry-cache v6.0.1 +- file-entry-cache v8.0.0 +- file-uri-to-path v1.0.0 +- filesize v6.4.0 +- fill-range v4.0.0 +- fill-range v7.0.1 +- filter-obj v1.1.0 +- finalhandler v1.1.2 +- finalhandler v1.2.0 +- find-babel-config v2.0.0 +- find-cache-dir v2.1.0 +- find-cache-dir v4.0.0 +- find-up v2.1.0 +- find-up v3.0.0 +- find-up v4.1.0 +- find-up v5.0.0 +- find-up v6.3.0 +- find-up-simple v1.0.0 +- find-versions v5.1.0 +- findup v0.1.5 +- flat-cache v2.0.1 +- flat-cache v3.0.4 +- flat-cache v3.1.0 +- flat-cache v3.1.1 +- flat-cache v3.2.0 +- flat-cache v4.0.0 +- flatted v2.0.2 +- flatted v3.2.5 +- flatted v3.2.7 +- flatted v3.2.9 +- flow-enums-runtime v0.0.5 +- flow-parser v0.206.0 +- flow-parser v0.218.0 +- follow-redirects v1.15.4 +- for-each v0.3.3 +- for-in v1.0.2 +- foreground-child v3.1.1 +- forever-agent v0.6.1 +- form-data v2.3.3 +- form-data v3.0.1 +- form-data v4.0.0 +- form-data-encoder v2.1.4 +- formdata-polyfill v4.0.10 +- forwarded v0.2.0 +- fraction.js v4.3.7 +- fragment-cache v0.2.1 +- fresh v0.5.2 +- from2 v2.3.0 +- fs-extra v1.0.0 +- fs-extra v10.1.0 +- fs-extra v11.1.1 +- fs-extra v11.2.0 +- fs-extra v8.1.0 +- fs-extra v9.1.0 +- fs-minipass v1.2.7 +- fs-minipass v2.1.0 +- fs-minipass v3.0.3 +- fs-monkey v1.0.5 +- fs.realpath v1.0.0 +- fsevents v1.2.13 +- fsevents v2.3.2 +- fsevents v2.3.3 +- function-bind v1.1.1 +- function-bind v1.1.2 +- function.prototype.name v1.1.5 +- function.prototype.name v1.1.6 +- functional-red-black-tree v1.0.1 +- functions-have-names v1.2.3 +- gauge v2.7.4 +- gauge v4.0.4 +- gauge v5.0.1 +- gensync v +- gensync v1.0.0-beta.2 +- get-caller-file v2.0.5 +- get-intrinsic v1.1.1 +- get-intrinsic v1.1.3 +- get-intrinsic v1.2.1 +- get-intrinsic v1.2.2 +- get-intrinsic v1.2.4 +- get-package-type v0.1.0 +- get-pkg-repo v4.2.1 +- get-port v4.2.0 +- get-port v5.1.1 +- get-stdin v6.0.0 +- get-stdin v8.0.0 +- get-stream v4.1.0 +- get-stream v5.2.0 +- get-stream v6.0.1 +- get-stream v7.0.1 +- get-stream v8.0.1 +- get-symbol-description v1.0.0 +- get-symbol-description v1.0.2 +- get-tsconfig v4.7.2 +- get-uri v6.0.2 +- get-value v2.0.6 +- getpass v0.1.7 +- ghooks v2.0.4 +- git-log-parser v1.2.0 +- git-raw-commits v2.0.11 +- git-remote-origin-url v2.0.0 +- git-semver-tags v4.1.1 +- git-up v4.0.5 +- git-up v7.0.0 +- git-url-parse v11.6.0 +- git-url-parse v13.1.0 +- gitconfiglocal v1.0.0 +- glob v10.3.10 +- glob v7.2.0 +- glob v7.2.3 +- glob v8.1.0 +- glob-parent v3.1.0 +- glob-parent v5.1.2 +- glob-parent v6.0.2 +- glob-to-regexp v0.3.0 +- glob-to-regexp v0.4.1 +- global v4.4.0 +- global-dirs v0.1.1 +- global-dirs v3.0.0 +- global-dirs v3.0.1 +- global-modules v2.0.0 +- global-prefix v3.0.0 +- globals v11.12.0 +- globals v13.12.0 +- globals v13.19.0 +- globals v13.21.0 +- globals v13.23.0 +- globals v13.24.0 +- globalthis v1.0.3 +- globby v11.0.4 +- globby v11.1.0 +- globby v13.1.4 +- globby v13.2.2 +- globby v14.0.0 +- globby v9.2.0 +- globjoin v0.1.4 +- gonzales-pe v4.3.0 +- gopd v1.0.1 +- got v11.8.3 +- got v12.6.1 +- got v9.6.0 +- graceful-fs v4.2.10 +- graceful-fs v4.2.11 +- graceful-fs v4.2.9 +- graceful-readlink v1.0.1 +- grapheme-splitter v1.0.4 +- graphemer v1.4.0 +- growly v1.3.0 +- grunt v^ 1.0.1 +- grunt-cli v^ 1.2.0 +- grunt-contrib-clean v^ 1.0.0 +- grunt-contrib-concat v^ 1.0.1 +- grunt-contrib-connect v^ 1.0.2 +- grunt-contrib-jshint v^ 1.1.0 +- grunt-contrib-uglify v^ 2.0.0 +- grunt-contrib-watch v^ 1.0.0 +- grunt-webdriver v^ 2.0.3 +- guess-parser v0.4.22 +- gzip-size v6.0.0 +- handle-thing v2.0.1 +- handlebars v4.7.7 +- handlebars v4.7.8 +- har-schema v2.0.0 +- har-validator v5.1.5 +- hard-rejection v2.1.0 +- has v1.0.3 +- has v1.0.4 +- has-bigints v1.0.1 +- has-bigints v1.0.2 +- has-flag v3.0.0 +- has-flag v4.0.0 +- has-property-descriptors v1.0.0 +- has-property-descriptors v1.0.1 +- has-property-descriptors v1.0.2 +- has-proto v1.0.1 +- has-symbols v1.0.2 +- has-symbols v1.0.3 +- has-tostringtag v1.0.0 +- has-tostringtag v1.0.2 +- has-unicode v2.0.1 +- has-value v0.3.1 +- has-value v1.0.0 +- has-values v0.1.4 +- has-values v1.0.0 +- has-yarn v2.1.0 +- has-yarn v3.0.0 +- hasown v2.0.0 +- hasown v2.0.1 +- hdr-histogram-js v2.0.3 +- hdr-histogram-percentiles-obj v3.0.0 +- hermes-engine v0.5.1 +- hermes-estree v0.12.0 +- hermes-parser v0.12.0 +- hermes-profile-transformer v0.0.6 +- highlight.js v11.9.0 +- hls.js v^ 0.7.0 +- hook-std v3.0.0 +- hosted-git-info v2.8.9 +- hosted-git-info v4.1.0 +- hosted-git-info v6.1.1 +- hosted-git-info v7.0.1 +- hpack.js v2.1.6 +- html-encoding-sniffer v2.0.1 +- html-encoding-sniffer v3.0.0 +- html-entities v2.4.0 +- html-escaper v2.0.2 +- html-minifier-terser v7.2.0 +- html-tags v2.0.0 +- html-tags v3.3.1 +- htmlnano v2.1.0 +- htmlparser2 v3.10.1 +- htmlparser2 v7.2.0 +- htmlparser2 v8.0.2 +- http-cache-semantics v4.1.0 +- http-cache-semantics v4.1.1 +- http-deceiver v1.2.7 +- http-errors v1.6.3 +- http-errors v1.8.1 +- http-errors v2.0.0 +- http-parser-js v0.5.8 +- http-proxy v1.18.1 +- http-proxy-agent v4.0.1 +- http-proxy-agent v5.0.0 +- http-proxy-agent v7.0.0 +- http-proxy-middleware v2.0.6 +- http-signature v1.2.0 +- http2-wrapper v1.0.3 +- http2-wrapper v2.2.0 +- https-proxy-agent v5.0.0 +- https-proxy-agent v5.0.1 +- https-proxy-agent v7.0.2 +- human-signals v1.1.1 +- human-signals v2.1.0 +- human-signals v4.3.1 +- human-signals v5.0.0 +- humanize-ms v1.2.1 +- husky v6.0.0 +- husky v8.0.3 +- husky v9.0.11 +- iconv-lite v0.4.24 +- iconv-lite v0.6.3 +- icss-utils v5.1.0 +- ieee754 v1.2.1 +- ignore v4.0.6 +- ignore v5.2.0 +- ignore v5.2.4 +- ignore v5.3.0 +- ignore v5.3.1 +- ignore-walk v3.0.4 +- ignore-walk v6.0.3 +- ignore-walk v6.0.4 +- image-size v0.5.5 +- image-size v0.6.3 +- image-size v1.0.2 +- immutable v4.3.4 +- immutable v4.3.5 +- import-cwd v3.0.0 +- import-fresh v2.0.0 +- import-fresh v3.3.0 +- import-from v3.0.0 +- import-from-esm v1.3.3 +- import-lazy v2.1.0 +- import-lazy v3.1.0 +- import-lazy v4.0.0 +- import-local v3.1.0 +- import-meta-resolve v4.0.0 +- imurmurhash v0.1.4 +- indent-string v3.2.0 +- indent-string v4.0.0 +- indent-string v5.0.0 +- index-to-position v0.1.2 +- indexes-of v1.0.1 +- individual v2.0.0 +- infer-owner v1.0.4 +- inflight v1.0.6 +- inherits v2.0.3 +- inherits v2.0.4 +- ini v1.3.8 +- ini v2.0.0 +- ini v4.1.1 +- init-package-json v2.0.5 +- init-package-json v6.0.0 +- inquirer v3.3.0 +- inquirer v7.3.3 +- inquirer v8.2.0 +- inquirer v8.2.4 +- inquirer v9.2.6 +- internal-slot v1.0.3 +- internal-slot v1.0.4 +- internal-slot v1.0.5 +- internal-slot v1.0.7 +- interpret v1.4.0 +- into-stream v7.0.0 +- invariant v2.2.4 +- ip v1.1.5 +- ip v1.1.8 +- ip v2.0.0 +- ip v2.0.1 +- ip-regex v5.0.0 +- ipaddr.js v1.9.1 +- ipaddr.js v2.1.0 +- is-absolute v1.0.0 +- is-accessor-descriptor v0.1.6 +- is-accessor-descriptor v1.0.0 +- is-accessor-descriptor v1.0.1 +- is-alphabetical v1.0.4 +- is-alphanumeric v1.0.0 +- is-alphanumerical v1.0.4 +- is-arguments v1.1.1 +- is-array-buffer v3.0.2 +- is-array-buffer v3.0.4 +- is-arrayish v0.2.1 +- is-async-function v2.0.0 +- is-bigint v1.0.4 +- is-binary-path v2.1.0 +- is-boolean-object v1.1.2 +- is-buffer v1.1.6 +- is-buffer v2.0.5 +- is-builtin-module v3.2.1 +- is-callable v1.2.4 +- is-callable v1.2.7 +- is-ci v2.0.0 +- is-ci v3.0.1 +- is-cidr v5.0.3 +- is-core-module v2.11.0 +- is-core-module v2.13.0 +- is-core-module v2.13.1 +- is-core-module v2.8.1 +- is-data-descriptor v0.1.4 +- is-data-descriptor v1.0.0 +- is-data-descriptor v1.0.1 +- is-date-object v1.0.5 +- is-decimal v1.0.4 +- is-descriptor v0.1.6 +- is-descriptor v0.1.7 +- is-descriptor v1.0.2 +- is-descriptor v1.0.3 +- is-directory v0.3.1 +- is-docker v2.2.1 +- is-docker v3.0.0 +- is-extendable v0.1.1 +- is-extendable v1.0.1 +- is-extglob v2.1.1 +- is-finalizationregistry v1.0.2 +- is-fullwidth-code-point v1.0.0 +- is-fullwidth-code-point v2.0.0 +- is-fullwidth-code-point v3.0.0 +- is-function v1.0.2 +- is-generator-fn v2.1.0 +- is-generator-function v1.0.10 +- is-git-dirty v2.0.1 +- is-git-dirty v2.0.2 +- is-git-repository v2.0.0 +- is-glob v3.1.0 +- is-glob v4.0.3 +- is-hexadecimal v1.0.4 +- is-inside-container v1.0.0 +- is-installed-globally v0.4.0 +- is-interactive v1.0.0 +- is-interactive v2.0.0 +- is-json v2.0.1 +- is-lambda v1.0.1 +- is-map v2.0.2 +- is-module v1.0.0 +- is-negative-zero v2.0.2 +- is-npm v5.0.0 +- is-npm v6.0.0 +- is-number v3.0.0 +- is-number v7.0.0 +- is-number-object v1.0.6 +- is-number-object v1.0.7 +- is-obj v2.0.0 +- is-path-cwd v2.2.0 +- is-path-cwd v3.0.0 +- is-path-inside v3.0.3 +- is-path-inside v4.0.0 +- is-plain-obj v1.1.0 +- is-plain-obj v2.1.0 +- is-plain-obj v3.0.0 +- is-plain-object v2.0.4 +- is-plain-object v5.0.0 +- is-potential-custom-element-name v1.0.1 +- is-reference v1.2.1 +- is-regex v1.1.4 +- is-regexp v1.0.0 +- is-relative v1.0.0 +- is-set v2.0.2 +- is-shared-array-buffer v1.0.1 +- is-shared-array-buffer v1.0.2 +- is-ssh v1.3.3 +- is-ssh v1.4.0 +- is-stream v1.1.0 +- is-stream v2.0.1 +- is-stream v3.0.0 +- is-string v1.0.7 +- is-supported-regexp-flag v1.0.1 +- is-symbol v1.0.4 +- is-text-path v1.0.1 +- is-text-path v2.0.0 +- is-typed-array v1.1.12 +- is-typed-array v1.1.13 +- is-typedarray v1.0.0 +- is-unc-path v1.0.0 +- is-unicode-supported v0.1.0 +- is-unicode-supported v1.3.0 +- is-unicode-supported v2.0.0 +- is-weakmap v2.0.1 +- is-weakref v1.0.2 +- is-weakset v2.0.2 +- is-what v3.14.1 +- is-whitespace-character v1.0.4 +- is-windows v1.0.2 +- is-word-character v1.0.4 +- is-wsl v1.1.0 +- is-wsl v2.2.0 +- is-yarn-global v0.3.0 +- is-yarn-global v0.4.1 +- isarray v1.0.0 +- isarray v2.0.5 +- isbinaryfile v4.0.10 +- isexe v2.0.0 +- isexe v3.1.1 +- isobject v2.1.0 +- isobject v3.0.1 +- isomorphic-fetch v2.2.1 +- isstream v0.1.2 +- issue-parser v6.0.0 +- istanbul-lib-coverage v3.2.0 +- istanbul-lib-coverage v3.2.2 +- istanbul-lib-instrument v4.0.3 +- istanbul-lib-instrument v5.1.0 +- istanbul-lib-instrument v5.2.1 +- istanbul-lib-instrument v6.0.1 +- istanbul-lib-report v3.0.0 +- istanbul-lib-report v3.0.1 +- istanbul-lib-source-maps v4.0.1 +- istanbul-reports v3.1.3 +- istanbul-reports v3.1.6 +- iterate-iterator v1.0.2 +- iterate-value v1.0.2 +- iterator.prototype v1.1.1 +- iterator.prototype v1.1.2 +- jackspeak v2.3.6 +- jasmine-core v4.6.0 +- java-properties v1.0.2 +- jest v26.6.3 +- jest v28.1.3 +- jest v29.7.0 +- jest-changed-files v26.6.2 +- jest-changed-files v28.1.3 +- jest-changed-files v29.7.0 +- jest-circus v28.1.3 +- jest-circus v29.7.0 +- jest-cli v26.6.3 +- jest-cli v28.1.3 +- jest-cli v29.7.0 +- jest-config v26.6.3 +- jest-config v28.1.3 +- jest-config v29.7.0 +- jest-diff v26.6.2 +- jest-diff v28.1.3 +- jest-diff v29.7.0 +- jest-docblock v26.0.0 +- jest-docblock v28.1.1 +- jest-docblock v29.7.0 +- jest-each v26.6.2 +- jest-each v28.1.3 +- jest-each v29.7.0 +- jest-environment-jsdom v26.6.2 +- jest-environment-jsdom v29.7.0 +- jest-environment-node v26.6.2 +- jest-environment-node v28.1.3 +- jest-environment-node v29.7.0 +- jest-get-type v24.9.0 +- jest-get-type v26.3.0 +- jest-get-type v28.0.2 +- jest-get-type v29.6.3 +- jest-haste-map v24.9.0 +- jest-haste-map v26.6.2 +- jest-haste-map v28.1.3 +- jest-haste-map v29.7.0 +- jest-jasmine2 v26.6.3 +- jest-leak-detector v26.6.2 +- jest-leak-detector v28.1.3 +- jest-leak-detector v29.7.0 +- jest-matcher-utils v26.6.2 +- jest-matcher-utils v28.1.3 +- jest-matcher-utils v29.7.0 +- jest-message-util v24.9.0 +- jest-message-util v26.6.2 +- jest-message-util v28.1.3 +- jest-message-util v29.7.0 +- jest-mock v24.9.0 +- jest-mock v26.6.2 +- jest-mock v28.1.3 +- jest-mock v29.7.0 +- jest-pnp-resolver v1.2.2 +- jest-pnp-resolver v1.2.3 +- jest-regex-util v26.0.0 +- jest-regex-util v27.5.1 +- jest-regex-util v28.0.2 +- jest-regex-util v29.6.3 +- jest-resolve v26.6.2 +- jest-resolve v28.1.3 +- jest-resolve v29.7.0 +- jest-resolve-dependencies v26.6.3 +- jest-resolve-dependencies v28.1.3 +- jest-resolve-dependencies v29.7.0 +- jest-runner v26.6.3 +- jest-runner v28.1.3 +- jest-runner v29.7.0 +- jest-runtime v26.6.3 +- jest-runtime v28.1.3 +- jest-runtime v29.7.0 +- jest-serializer v24.9.0 +- jest-serializer v26.6.2 +- jest-snapshot v26.6.2 +- jest-snapshot v28.1.3 +- jest-snapshot v29.7.0 +- jest-util v24.9.0 +- jest-util v26.6.2 +- jest-util v27.5.1 +- jest-util v28.1.3 +- jest-util v29.7.0 +- jest-validate v24.9.0 +- jest-validate v26.6.2 +- jest-validate v28.1.3 +- jest-validate v29.7.0 +- jest-watcher v26.6.2 +- jest-watcher v28.1.3 +- jest-watcher v29.7.0 +- jest-worker v24.9.0 +- jest-worker v26.6.2 +- jest-worker v27.5.1 +- jest-worker v28.1.3 +- jest-worker v29.7.0 +- jetifier v1.6.8 +- jiti v1.20.0 +- jiti v1.21.0 +- joi v17.11.0 +- js-sdsl v4.2.0 +- js-tokens v4.0.0 +- js-yaml v3.14.1 +- js-yaml v4.1.0 +- js2xmlparser v4.0.2 +- jsbn v0.1.1 +- jsc-android v245459.0.0 +- jsc-android v250231.0.0 +- jsc-safe-url v0.2.4 +- jscodeshift v0.14.0 +- jsdoc v4.0.2 +- jsdoc-tsimport-plugin v1.0.5 +- jsdom v16.7.0 +- jsdom v20.0.3 +- jsesc v0.5.0 +- jsesc v2.5.2 +- json-buffer v3.0.0 +- json-buffer v3.0.1 +- json-parse-better-errors v1.0.2 +- json-parse-even-better-errors v2.3.1 +- json-parse-even-better-errors v3.0.0 +- json-parse-even-better-errors v3.0.1 +- json-schema v0.4.0 +- json-schema-traverse v0.4.1 +- json-schema-traverse v1.0.0 +- json-stable-stringify v1.0.1 +- json-stable-stringify-without-jsonify v1.0.1 +- json-stringify-nice v1.1.4 +- json-stringify-safe v5.0.1 +- json5 v1.0.1 +- json5 v1.0.2 +- json5 v2.2.0 +- json5 v2.2.3 +- jsonc-parser v3.2.0 +- jsonfile v2.4.0 +- jsonfile v4.0.0 +- jsonfile v6.1.0 +- jsonify v0.0.0 +- jsonparse v1.3.1 +- jsprim v1.4.2 +- jsx-ast-utils v3.2.1 +- jsx-ast-utils v3.3.3 +- jsx-ast-utils v3.3.5 +- just-diff v6.0.2 +- just-diff-apply v5.5.0 +- karma v6.4.2 +- karma-chrome-launcher v3.2.0 +- karma-coverage v2.2.1 +- karma-jasmine v5.1.0 +- karma-jasmine-html-reporter v2.1.0 +- karma-source-map-support v1.4.0 +- keycode v2.2.0 +- keyv v3.1.0 +- keyv v4.0.5 +- keyv v4.5.3 +- keyv v4.5.4 +- kind-of v1.1.0 +- kind-of v3.2.2 +- kind-of v4.0.0 +- kind-of v5.1.0 +- kind-of v6.0.3 +- klaw v1.3.1 +- klaw v3.0.0 +- klaw-sync v6.0.0 +- kleur v3.0.3 +- kleur v4.1.5 +- klona v2.0.6 +- known-css-properties v0.11.0 +- known-css-properties v0.29.0 +- language-subtag-registry v0.3.22 +- language-tags v1.0.7 +- latest-version v5.1.0 +- latest-version v7.0.0 +- launch-editor v2.6.1 +- lerna v4.0.0 +- less v4.1.3 +- less-loader v11.1.0 +- leven v2.1.0 +- leven v3.1.0 +- levn v0.3.0 +- levn v0.4.1 +- libnpmaccess v4.0.3 +- libnpmaccess v8.0.2 +- libnpmdiff v6.0.6 +- libnpmexec v7.0.7 +- libnpmfund v5.0.4 +- libnpmhook v10.0.1 +- libnpmorg v6.0.2 +- libnpmpack v6.0.6 +- libnpmpublish v4.0.2 +- libnpmpublish v9.0.4 +- libnpmsearch v7.0.1 +- libnpmteam v6.0.1 +- libnpmversion v5.0.2 +- license-webpack-plugin v4.0.2 +- lightningcss v1.23.0 +- lightningcss-darwin-arm64 v1.23.0 +- lightningcss-darwin-x64 v1.23.0 +- lightningcss-freebsd-x64 v1.23.0 +- lightningcss-linux-arm-gnueabihf v1.23.0 +- lightningcss-linux-arm64-gnu v1.23.0 +- lightningcss-linux-arm64-musl v1.23.0 +- lightningcss-linux-x64-gnu v1.23.0 +- lightningcss-linux-x64-musl v1.23.0 +- lightningcss-win32-x64-msvc v1.23.0 +- lilconfig v2.1.0 +- lilconfig v3.0.0 +- lines-and-columns v1.2.4 +- linkify-it v3.0.3 +- lit v3.1.2 +- lit-element v4.0.4 +- lit-html v3.1.2 +- lmdb v2.8.5 +- load-grunt-tasks v^ 3.5.2 +- load-json-file v4.0.0 +- load-json-file v6.2.0 +- loader-runner v4.3.0 +- loader-utils v2.0.4 +- loader-utils v3.2.1 +- locate-path v2.0.0 +- locate-path v3.0.0 +- locate-path v5.0.0 +- locate-path v6.0.0 +- locate-path v7.2.0 +- lodash v4.17.21 +- lodash-es v4.17.21 +- lodash._baseclone v4.5.7 +- lodash._reinterpolate v3.0.0 +- lodash.camelcase v4.3.0 +- lodash.capitalize v4.2.1 +- lodash.clone v4.3.2 +- lodash.clone v4.5.0 +- lodash.debounce v4.0.8 +- lodash.escaperegexp v4.1.2 +- lodash.isfunction v3.0.9 +- lodash.ismatch v4.4.0 +- lodash.isplainobject v4.0.6 +- lodash.isstring v4.0.1 +- lodash.kebabcase v4.1.1 +- lodash.memoize v4.1.2 +- lodash.merge v4.6.2 +- lodash.mergewith v4.6.2 +- lodash.snakecase v4.1.1 +- lodash.startcase v4.4.0 +- lodash.template v4.5.0 +- lodash.templatesettings v4.2.0 +- lodash.throttle v4.1.1 +- lodash.truncate v4.4.2 +- lodash.uniq v4.5.0 +- lodash.uniqby v4.7.0 +- lodash.upperfirst v4.3.1 +- log-symbols v2.2.0 +- log-symbols v4.1.0 +- log-symbols v5.1.0 +- log4js v6.9.1 +- logkitty v0.7.1 +- longest-streak v2.0.4 +- loose-envify v1.4.0 +- loud-rejection v1.6.0 +- lower-case v2.0.2 +- lowercase-keys v1.0.1 +- lowercase-keys v2.0.0 +- lowercase-keys v3.0.0 +- lru-cache v10.0.1 +- lru-cache v10.1.0 +- lru-cache v10.2.0 +- lru-cache v4.1.5 +- lru-cache v5.1.1 +- lru-cache v6.0.0 +- lru-cache v7.18.3 +- m3u8-parser v6.2.0 +- m3u8-parser v7.1.0 +- macos-release v2.5.0 +- macos-release v3.2.0 +- magic-string v0.30.1 +- magic-string v0.30.5 +- make-dir v2.1.0 +- make-dir v3.1.0 +- make-dir v4.0.0 +- make-error v1.3.6 +- make-fetch-happen v10.2.1 +- make-fetch-happen v11.1.1 +- make-fetch-happen v13.0.0 +- make-fetch-happen v8.0.14 +- make-fetch-happen v9.1.0 +- makeerror v1.0.12 +- manage-path v2.0.0 +- map-cache v0.2.2 +- map-obj v1.0.1 +- map-obj v2.0.0 +- map-obj v4.3.0 +- map-visit v1.0.0 +- markdown-escapes v1.0.4 +- markdown-it v12.3.2 +- markdown-it-anchor v8.6.7 +- markdown-table v1.1.3 +- marked v11.2.0 +- marked v4.3.0 +- marked-terminal v6.2.0 +- material-icons v1.13.12 +- mathml-tag-names v2.1.3 +- mdast-util-compact v1.0.4 +- mdn-data v2.0.14 +- mdn-data v2.0.28 +- mdn-data v2.0.30 +- mdurl v1.0.1 +- media-typer v0.3.0 +- memfs v3.5.3 +- memoize-one v5.2.1 +- meow v10.1.5 +- meow v12.1.1 +- meow v13.1.0 +- meow v13.2.0 +- meow v5.0.0 +- meow v8.1.2 +- merge-descriptors v1.0.1 +- merge-stream v1.0.1 +- merge-stream v2.0.0 +- merge2 v1.4.1 +- methods v1.1.2 +- metro v0.59.0 +- metro v0.76.8 +- metro-babel-register v0.59.0 +- metro-babel-transformer v0.59.0 +- metro-babel-transformer v0.76.8 +- metro-cache v0.59.0 +- metro-cache v0.76.8 +- metro-cache-key v0.76.8 +- metro-config v0.59.0 +- metro-config v0.76.8 +- metro-core v0.59.0 +- metro-core v0.76.8 +- metro-file-map v0.76.8 +- metro-inspector-proxy v0.59.0 +- metro-inspector-proxy v0.76.8 +- metro-minify-terser v0.76.8 +- metro-minify-uglify v0.59.0 +- metro-minify-uglify v0.76.8 +- metro-react-native-babel-preset v0.59.0 +- metro-react-native-babel-preset v0.76.8 +- metro-react-native-babel-transformer v0.59.0 +- metro-react-native-babel-transformer v0.76.8 +- metro-resolver v0.59.0 +- metro-resolver v0.76.8 +- metro-runtime v0.76.8 +- metro-source-map v0.59.0 +- metro-source-map v0.76.8 +- metro-symbolicate v0.59.0 +- metro-symbolicate v0.76.8 +- metro-transform-plugins v0.76.8 +- metro-transform-worker v0.76.8 +- micromatch v3.1.10 +- micromatch v4.0.4 +- micromatch v4.0.5 +- mime v1.6.0 +- mime v2.6.0 +- mime v4.0.1 +- mime-db v1.23.0 +- mime-db v1.51.0 +- mime-db v1.52.0 +- mime-types v2.1.11 +- mime-types v2.1.34 +- mime-types v2.1.35 +- mimic-fn v1.2.0 +- mimic-fn v2.1.0 +- mimic-fn v4.0.0 +- mimic-response v1.0.1 +- mimic-response v3.1.0 +- mimic-response v4.0.0 +- min-document v2.19.0 +- min-indent v1.0.1 +- mini-css-extract-plugin v2.7.6 +- minimalistic-assert v1.0.1 +- minimatch v3.0.4 +- minimatch v3.1.2 +- minimatch v5.1.6 +- minimatch v9.0.3 +- minimist v1.2.5 +- minimist v1.2.7 +- minimist v1.2.8 +- minimist-options v3.0.2 +- minimist-options v4.1.0 +- minipass v2.9.0 +- minipass v3.1.6 +- minipass v3.3.6 +- minipass v5.0.0 +- minipass v7.0.4 +- minipass-collect v1.0.2 +- minipass-collect v2.0.1 +- minipass-fetch v1.4.1 +- minipass-fetch v2.1.2 +- minipass-fetch v3.0.4 +- minipass-flush v1.0.5 +- minipass-json-stream v1.0.1 +- minipass-pipeline v1.2.4 +- minipass-sized v1.0.3 +- minizlib v1.3.3 +- minizlib v2.1.2 +- mixin-deep v1.3.2 +- mkdirp v0.5.5 +- mkdirp v0.5.6 +- mkdirp v1.0.4 +- mkdirp-infer-owner v2.0.0 +- modify-values v1.0.1 +- moment v^ 2.17.0 +- mpd-parser v1.3.0 +- mrmime v1.0.1 +- ms v2.0.0 +- ms v2.1.2 +- ms v2.1.3 +- msgpackr v1.10.1 +- msgpackr-extract v3.0.2 +- multicast-dns v7.2.5 +- multimatch v5.0.0 +- mute-stream v0.0.7 +- mute-stream v0.0.8 +- mute-stream v1.0.0 +- mux.js v7.0.2 +- nan v2.15.0 +- nanoid v3.3.6 +- nanoid v3.3.7 +- nanomatch v1.2.13 +- natural-compare v1.4.0 +- natural-compare-lite v1.4.0 +- needle v3.2.0 +- negotiator v0.6.2 +- negotiator v0.6.3 +- neo-async v2.6.2 +- nerf-dart v1.0.0 +- netmask v2.0.2 +- new-github-release-url v1.0.0 +- new-github-release-url v2.0.0 +- nice-napi v1.0.2 +- nice-try v1.0.5 +- no-case v3.0.4 +- nocache v2.1.0 +- nocache v3.0.4 +- node-abort-controller v3.1.1 +- node-addon-api v3.2.1 +- node-addon-api v6.1.0 +- node-addon-api v7.1.0 +- node-dir v0.1.17 +- node-domexception v1.0.0 +- node-emoji v2.1.3 +- node-fetch v1.7.3 +- node-fetch v2.6.7 +- node-fetch v2.7.0 +- node-fetch v3.3.1 +- node-fetch v3.3.2 +- node-forge v1.3.1 +- node-gyp v10.0.1 +- node-gyp v5.1.1 +- node-gyp v7.1.2 +- node-gyp v9.4.0 +- node-gyp v9.4.1 +- node-gyp-build v4.6.1 +- node-gyp-build-optional-packages v5.0.7 +- node-gyp-build-optional-packages v5.1.1 +- node-int64 v0.4.0 +- node-notifier v8.0.2 +- node-releases v2.0.1 +- node-releases v2.0.13 +- node-releases v2.0.14 +- node-stream-zip v1.15.0 +- nopt v4.0.3 +- nopt v5.0.0 +- nopt v6.0.0 +- nopt v7.2.0 +- normalize-package-data v2.5.0 +- normalize-package-data v3.0.3 +- normalize-package-data v5.0.0 +- normalize-package-data v6.0.0 +- normalize-path v2.1.1 +- normalize-path v3.0.0 +- normalize-range v0.1.2 +- normalize-selector v0.2.0 +- normalize-url v4.5.1 +- normalize-url v6.1.0 +- normalize-url v8.0.0 +- npm v10.4.0 +- npm-audit-report v5.0.0 +- npm-bundled v1.1.2 +- npm-bundled v3.0.0 +- npm-install-checks v4.0.0 +- npm-install-checks v6.3.0 +- npm-lifecycle v3.1.5 +- npm-normalize-package-bin v1.0.1 +- npm-normalize-package-bin v3.0.1 +- npm-package-arg v10.1.0 +- npm-package-arg v11.0.1 +- npm-package-arg v8.1.5 +- npm-packlist v2.2.2 +- npm-packlist v7.0.4 +- npm-packlist v8.0.2 +- npm-pick-manifest v6.1.1 +- npm-pick-manifest v8.0.1 +- npm-pick-manifest v8.0.2 +- npm-pick-manifest v9.0.0 +- npm-profile v9.0.0 +- npm-registry-fetch v11.0.0 +- npm-registry-fetch v14.0.5 +- npm-registry-fetch v16.1.0 +- npm-registry-fetch v9.0.0 +- npm-run-path v2.0.2 +- npm-run-path v4.0.1 +- npm-run-path v5.1.0 +- npm-run-path v5.2.0 +- npm-user-validate v2.0.0 +- npmlog v4.1.2 +- npmlog v6.0.2 +- npmlog v7.0.1 +- nth-check v2.1.1 +- nullthrows v1.1.1 +- num2fraction v1.2.2 +- number-is-nan v1.0.1 +- nwsapi v2.2.0 +- nwsapi v2.2.7 +- oauth-sign v0.9.0 +- ob1 v0.59.0 +- ob1 v0.76.8 +- object-assign v4.1.1 +- object-copy v0.1.0 +- object-inspect v1.12.0 +- object-inspect v1.12.2 +- object-inspect v1.12.3 +- object-inspect v1.13.1 +- object-keys v1.1.1 +- object-path v0.11.8 +- object-visit v1.0.1 +- object.assign v4.1.2 +- object.assign v4.1.4 +- object.assign v4.1.5 +- object.entries v1.1.5 +- object.entries v1.1.6 +- object.entries v1.1.7 +- object.fromentries v2.0.5 +- object.fromentries v2.0.7 +- object.getownpropertydescriptors v2.1.3 +- object.groupby v1.0.2 +- object.hasown v1.1.0 +- object.hasown v1.1.3 +- object.pick v1.3.0 +- object.values v1.1.5 +- object.values v1.1.6 +- object.values v1.1.7 +- obuf v1.1.2 +- on-finished v2.3.0 +- on-finished v2.4.1 +- on-headers v1.0.2 +- once v1.4.0 +- onetime v2.0.1 +- onetime v5.1.2 +- onetime v6.0.0 +- open v6.4.0 +- open v7.4.2 +- open v8.4.2 +- open v9.1.0 +- open-props v1.6.18 +- opt-cli v1.5.1 +- optionator v0.8.3 +- optionator v0.9.1 +- optionator v0.9.3 +- options v0.0.6 +- ora v3.4.0 +- ora v5.4.1 +- ora v6.3.1 +- ordered-binary v1.5.1 +- os-homedir v1.0.2 +- os-name v4.0.1 +- os-name v5.1.0 +- os-tmpdir v1.0.2 +- osenv v0.1.5 +- p-cancelable v1.1.0 +- p-cancelable v2.1.1 +- p-cancelable v3.0.0 +- p-each-series v2.2.0 +- p-each-series v3.0.0 +- p-filter v4.1.0 +- p-finally v1.0.0 +- p-is-promise v3.0.0 +- p-limit v1.3.0 +- p-limit v2.3.0 +- p-limit v3.1.0 +- p-limit v4.0.0 +- p-locate v2.0.0 +- p-locate v3.0.0 +- p-locate v4.1.0 +- p-locate v5.0.0 +- p-locate v6.0.0 +- p-map v4.0.0 +- p-map v5.5.0 +- p-map v7.0.1 +- p-map-series v2.1.0 +- p-pipe v3.1.0 +- p-queue v6.6.2 +- p-reduce v2.1.0 +- p-reduce v3.0.0 +- p-retry v4.6.2 +- p-timeout v3.2.0 +- p-try v1.0.0 +- p-try v2.2.0 +- p-waterfall v2.1.1 +- pac-proxy-agent v6.0.4 +- pac-resolver v6.0.2 +- package-json v6.5.0 +- package-json v8.1.1 +- pacote v11.3.5 +- pacote v15.2.0 +- pacote v17.0.6 +- pako v1.0.11 +- param-case v3.0.4 +- parcel v2.11.0 +- parent-module v1.0.1 +- parse-conflict-json v3.0.1 +- parse-entities v1.2.2 +- parse-json v4.0.0 +- parse-json v5.2.0 +- parse-json v8.1.0 +- parse-node-version v1.0.1 +- parse-path v4.0.3 +- parse-path v7.0.0 +- parse-url v6.0.0 +- parse-url v8.1.0 +- parse5 v6.0.1 +- parse5 v7.1.2 +- parse5-html-rewriting-stream v7.0.0 +- parse5-sax-parser v7.0.0 +- parseurl v1.3.3 +- pascal-case v3.1.2 +- pascalcase v0.1.1 +- path-dirname v1.0.2 +- path-exists v3.0.0 +- path-exists v4.0.0 +- path-exists v5.0.0 +- path-is-absolute v1.0.1 +- path-key v2.0.1 +- path-key v3.1.1 +- path-key v4.0.0 +- path-parse v1.0.7 +- path-scurry v1.10.1 +- path-to-regexp v0.1.7 +- path-type v3.0.0 +- path-type v4.0.0 +- path-type v5.0.0 +- performance-now v2.1.0 +- picocolors v0.2.1 +- picocolors v1.0.0 +- picomatch v2.3.1 +- pify v2.3.0 +- pify v3.0.0 +- pify v4.0.1 +- pify v5.0.0 +- pirates v4.0.5 +- pirates v4.0.6 +- piscina v4.0.0 +- pkcs7 v1.0.4 +- pkg-conf v2.1.0 +- pkg-dir v3.0.0 +- pkg-dir v4.2.0 +- pkg-dir v7.0.0 +- pkg-up v3.1.0 +- plist v3.0.4 +- plugin-error v0.1.2 +- pod-install v0.1.31 +- pod-install v0.1.39 +- pod-install v^ 0.1.0 +- posix-character-classes v0.1.1 +- postcss v7.0.39 +- postcss v8.4.29 +- postcss v8.4.31 +- postcss v8.4.33 +- postcss v8.4.35 +- postcss-calc v9.0.1 +- postcss-colormin v6.0.2 +- postcss-convert-values v6.0.2 +- postcss-discard-comments v6.0.1 +- postcss-discard-duplicates v6.0.1 +- postcss-discard-empty v6.0.1 +- postcss-discard-overridden v6.0.1 +- postcss-html v0.36.0 +- postcss-jsx v0.36.4 +- postcss-less v3.1.4 +- postcss-lit v1.1.1 +- postcss-loader v7.3.3 +- postcss-markdown v0.36.0 +- postcss-media-query-parser v0.2.3 +- postcss-merge-longhand v6.0.2 +- postcss-merge-rules v6.0.3 +- postcss-minify-font-values v6.0.1 +- postcss-minify-gradients v6.0.1 +- postcss-minify-params v6.0.2 +- postcss-minify-selectors v6.0.2 +- postcss-modules-extract-imports v3.0.0 +- postcss-modules-local-by-default v4.0.3 +- postcss-modules-scope v3.0.0 +- postcss-modules-values v4.0.0 +- postcss-normalize-charset v6.0.1 +- postcss-normalize-display-values v6.0.1 +- postcss-normalize-positions v6.0.1 +- postcss-normalize-repeat-style v6.0.1 +- postcss-normalize-string v6.0.1 +- postcss-normalize-timing-functions v6.0.1 +- postcss-normalize-unicode v6.0.2 +- postcss-normalize-url v6.0.1 +- postcss-normalize-whitespace v6.0.1 +- postcss-ordered-values v6.0.1 +- postcss-reduce-initial v6.0.2 +- postcss-reduce-transforms v6.0.1 +- postcss-reporter v6.0.1 +- postcss-resolve-nested-selector v0.1.1 +- postcss-safe-parser v4.0.2 +- postcss-safe-parser v7.0.0 +- postcss-sass v0.3.5 +- postcss-scss v2.1.1 +- postcss-scss v4.0.9 +- postcss-selector-parser v3.1.2 +- postcss-selector-parser v6.0.13 +- postcss-selector-parser v6.0.15 +- postcss-sorting v4.1.0 +- postcss-sorting v8.0.2 +- postcss-svgo v6.0.2 +- postcss-syntax v0.36.2 +- postcss-unique-selectors v6.0.2 +- postcss-value-parser v3.3.1 +- postcss-value-parser v4.2.0 +- posthtml v0.16.6 +- posthtml-parser v0.10.2 +- posthtml-parser v0.11.0 +- posthtml-render v3.0.0 +- prelude-ls v1.1.2 +- prelude-ls v1.2.1 +- prepend-file v2.0.1 +- prepend-http v2.0.0 +- prettier v2.5.1 +- prettier v2.8.1 +- prettier v2.8.8 +- prettier-linter-helpers v1.0.0 +- pretty-bytes v5.6.0 +- pretty-format v24.9.0 +- pretty-format v25.5.0 +- pretty-format v26.6.2 +- pretty-format v28.1.3 +- pretty-format v29.7.0 +- proc-log v3.0.0 +- process v0.11.10 +- process-nextick-args v2.0.1 +- progress v2.0.3 +- promise v7.3.1 +- promise v8.1.0 +- promise v8.3.0 +- promise-all-reject-late v1.0.1 +- promise-call-limit v3.0.1 +- promise-inflight v1.0.1 +- promise-retry v2.0.1 +- promise.allsettled v1.0.6 +- prompts v2.4.2 +- promzard v0.3.0 +- promzard v1.0.0 +- prop-types v15.8.1 +- proto-list v1.2.4 +- protocols v1.4.8 +- protocols v2.0.1 +- proxy-addr v2.0.7 +- proxy-agent v6.2.1 +- proxy-from-env v1.1.0 +- prr v1.0.1 +- pseudomap v1.0.2 +- psl v1.8.0 +- psl v1.9.0 +- pump v3.0.0 +- punycode v2.1.1 +- punycode v2.3.0 +- punycode v2.3.1 +- pupa v2.1.1 +- pupa v3.1.0 +- pure-rand v6.0.4 +- q v1.5.1 +- qjobs v1.2.0 +- qrcode-terminal v0.12.0 +- qs v6.10.3 +- qs v6.11.0 +- qs v6.5.3 +- query-string v6.14.1 +- querystringify v2.2.0 +- queue v6.0.2 +- queue-microtask v1.2.3 +- quick-lru v1.1.0 +- quick-lru v4.0.1 +- quick-lru v5.1.1 +- randombytes v2.1.0 +- range-parser v1.2.1 +- raw-body v2.5.1 +- raw-body v2.5.2 +- rc v1.2.8 +- react v16.13.1 +- react v18.2.0 +- react-devtools-core v4.23.0 +- react-devtools-core v4.28.4 +- react-dom v18.2.0 +- react-error-overlay v6.0.9 +- react-is v16.13.1 +- react-is v17.0.2 +- react-is v18.2.0 +- react-native v0.63.4 +- react-native v0.72.5 +- react-native-builder-bob v0.18.2 +- react-native-builder-bob v0.23.1 +- react-refresh v0.14.0 +- react-refresh v0.4.3 +- react-refresh v0.9.0 +- react-shallow-renderer v16.15.0 +- read v1.0.7 +- read v2.1.0 +- read-cmd-shim v2.0.0 +- read-cmd-shim v4.0.0 +- read-package-json v2.1.2 +- read-package-json v3.0.1 +- read-package-json v4.1.2 +- read-package-json v6.0.4 +- read-package-json v7.0.0 +- read-package-json-fast v2.0.3 +- read-package-json-fast v3.0.2 +- read-package-tree v5.3.1 +- read-pkg v3.0.0 +- read-pkg v5.2.0 +- read-pkg v6.0.0 +- read-pkg v9.0.1 +- read-pkg-up v11.0.0 +- read-pkg-up v3.0.0 +- read-pkg-up v7.0.1 +- read-pkg-up v8.0.0 +- readable-stream v2.3.7 +- readable-stream v2.3.8 +- readable-stream v3.6.0 +- readable-stream v3.6.2 +- readdir-scoped-modules v1.1.0 +- readdirp v3.6.0 +- readline v1.3.0 +- recast v0.21.5 +- rechoir v0.6.2 +- redent v2.0.0 +- redent v3.0.0 +- redent v4.0.0 +- redeyed v2.1.1 +- redux v4.2.1 +- reflect-metadata v0.1.13 +- reflect.getprototypeof v1.0.4 +- regenerate v1.4.2 +- regenerate-unicode-properties v10.1.1 +- regenerate-unicode-properties v9.0.0 +- regenerator-runtime v0.13.11 +- regenerator-runtime v0.13.9 +- regenerator-runtime v0.14.0 +- regenerator-runtime v0.14.1 +- regenerator-transform v0.14.5 +- regenerator-transform v0.15.2 +- regex-not v1.0.2 +- regex-parser v2.2.11 +- regexp.prototype.flags v1.4.1 +- regexp.prototype.flags v1.4.3 +- regexp.prototype.flags v1.5.0 +- regexp.prototype.flags v1.5.1 +- regexp.prototype.flags v1.5.2 +- regexpp v3.2.0 +- regexpu-core v4.8.0 +- regexpu-core v5.3.2 +- registry-auth-token v4.2.1 +- registry-auth-token v5.0.2 +- registry-url v5.1.0 +- registry-url v6.0.1 +- regjsgen v0.5.2 +- regjsparser v0.7.0 +- regjsparser v0.9.1 +- relateurl v0.2.7 +- release-it v14.12.4 +- release-it v15.11.0 +- remark v10.0.1 +- remark-parse v6.0.3 +- remark-stringify v6.0.4 +- remove-trailing-separator v1.1.0 +- repeat-element v1.1.4 +- repeat-string v1.6.1 +- replace-ext v1.0.0 +- request v2.88.2 +- require-directory v2.1.1 +- require-from-string v2.0.2 +- require-main-filename v2.0.0 +- requires-port v1.0.0 +- requizzle v0.2.4 +- reselect v4.1.8 +- resolve v1.22.0 +- resolve v1.22.1 +- resolve v1.22.2 +- resolve v1.22.6 +- resolve v1.22.8 +- resolve v2.0.0-next.3 +- resolve v2.0.0-next.4 +- resolve-alpn v1.2.1 +- resolve-cwd v3.0.0 +- resolve-from v3.0.0 +- resolve-from v4.0.0 +- resolve-from v5.0.0 +- resolve-global v1.0.0 +- resolve-pkg-maps v1.0.0 +- resolve-url v0.2.1 +- resolve-url-loader v5.0.0 +- resolve.exports v1.1.1 +- resolve.exports v2.0.2 +- responselike v1.0.2 +- responselike v2.0.0 +- responselike v3.0.0 +- restore-cursor v2.0.0 +- restore-cursor v3.1.0 +- restore-cursor v4.0.0 +- ret v0.1.15 +- retry v0.12.0 +- retry v0.13.1 +- reusify v1.0.4 +- rfdc v1.3.0 +- rimraf v2.2.8 +- rimraf v2.6.3 +- rimraf v2.7.1 +- rimraf v3.0.2 +- rimraf v5.0.5 +- rollup v3.28.1 +- rollup v3.29.4 +- rollup v4.11.0 +- rollup v4.9.6 +- rollup-plugin-filesize v10.0.0 +- rsvp v4.8.5 +- run-applescript v5.0.0 +- run-async v2.4.1 +- run-async v3.0.0 +- run-parallel v1.2.0 +- rust-result v1.0.0 +- rx-lite v4.0.8 +- rx-lite-aggregates v4.0.8 +- rxjs v6.6.7 +- rxjs v7.5.2 +- rxjs v7.8.1 +- safe-array-concat v1.0.0 +- safe-array-concat v1.0.1 +- safe-array-concat v1.1.0 +- safe-buffer v5.1.2 +- safe-buffer v5.2.1 +- safe-json-parse v4.0.0 +- safe-regex v1.1.0 +- safe-regex-test v1.0.0 +- safe-regex-test v1.0.3 +- safer-buffer v2.1.2 +- sane v4.1.0 +- sass v1.64.1 +- sass v1.70.0 +- sass-loader v13.3.2 +- sax v1.2.4 +- sax v1.3.0 +- saxes v5.0.1 +- saxes v6.0.0 +- scheduler v0.19.1 +- scheduler v0.23.0 +- scheduler v0.24.0-canary-efb381bbf-20230505 +- schema-utils v3.3.0 +- schema-utils v4.2.0 +- select-hose v2.0.0 +- selfsigned v2.4.1 +- semantic-release v23.0.0 +- semver v5.7.1 +- semver v5.7.2 +- semver v6.3.0 +- semver v6.3.1 +- semver v7.0.0 +- semver v7.3.2 +- semver v7.3.5 +- semver v7.3.8 +- semver v7.5.1 +- semver v7.5.4 +- semver v7.6.0 +- semver-diff v3.1.1 +- semver-diff v4.0.0 +- semver-regex v4.0.5 +- send v0.17.2 +- send v0.18.0 +- serialize-error v2.1.0 +- serialize-javascript v6.0.1 +- serialize-javascript v6.0.2 +- serve-index v1.9.1 +- serve-static v1.14.2 +- serve-static v1.15.0 +- set-blocking v2.0.0 +- set-function-length v1.1.1 +- set-function-length v1.2.1 +- set-function-name v2.0.1 +- set-value v2.0.1 +- setimmediate v1.0.5 +- setprototypeof v1.1.0 +- setprototypeof v1.2.0 +- shallow-clone v3.0.1 +- shebang-command v1.2.0 +- shebang-command v2.0.0 +- shebang-regex v1.0.0 +- shebang-regex v3.0.0 +- shell-quote v1.6.1 +- shell-quote v1.7.3 +- shell-quote v1.8.1 +- shelljs v0.8.5 +- shellwords v0.1.1 +- showdown v2.1.0 +- side-channel v1.0.4 +- side-channel v1.0.5 +- signal-exit v3.0.6 +- signal-exit v3.0.7 +- signal-exit v4.1.0 +- signale v1.4.0 +- sigstore v1.9.0 +- sigstore v2.2.0 +- simple-plist v1.3.0 +- sisteransi v1.0.5 +- skin-tone v2.0.0 +- slash v2.0.0 +- slash v3.0.0 +- slash v4.0.0 +- slash v5.1.0 +- slice-ansi v2.1.0 +- slice-ansi v4.0.0 +- slide v1.1.6 +- smart-buffer v4.2.0 +- smob v1.4.1 +- snapdragon v0.8.2 +- snapdragon-node v2.1.1 +- snapdragon-util v3.0.1 +- socket.io v4.7.2 +- socket.io-adapter v2.5.2 +- socket.io-parser v4.2.4 +- sockjs v0.3.24 +- socks v2.6.2 +- socks v2.7.1 +- socks-proxy-agent v5.0.1 +- socks-proxy-agent v6.1.1 +- socks-proxy-agent v7.0.0 +- socks-proxy-agent v8.0.2 +- sort-keys v2.0.0 +- sort-keys v4.2.0 +- source-map v0.5.7 +- source-map v0.6.1 +- source-map v0.7.3 +- source-map v0.7.4 +- source-map-js v1.0.2 +- source-map-loader v4.0.1 +- source-map-resolve v0.5.3 +- source-map-support v0.5.13 +- source-map-support v0.5.21 +- source-map-url v0.4.1 +- spawn-command v0.0.2 +- spawn-command v0.0.2-1 +- spawn-error-forwarder v1.0.0 +- spdx-correct v3.1.1 +- spdx-correct v3.2.0 +- spdx-exceptions v2.3.0 +- spdx-exceptions v2.4.0 +- spdx-exceptions v2.5.0 +- spdx-expression-parse v3.0.1 +- spdx-license-ids v3.0.11 +- spdx-license-ids v3.0.16 +- spdx-license-ids v3.0.17 +- spdy v4.0.2 +- spdy-transport v3.0.0 +- specificity v0.4.1 +- split v1.0.1 +- split-on-first v1.1.0 +- split-string v3.1.0 +- split2 v1.0.0 +- split2 v3.2.2 +- split2 v4.2.0 +- sprintf-js v1.0.3 +- srcset v4.0.0 +- sshpk v1.17.0 +- ssri v10.0.5 +- ssri v8.0.1 +- ssri v9.0.1 +- stable v0.1.8 +- stack-utils v1.0.5 +- stack-utils v2.0.5 +- stack-utils v2.0.6 +- stackframe v1.2.0 +- stackframe v1.3.4 +- stacktrace-parser v0.1.10 +- state-toggle v1.0.3 +- static-extend v0.1.2 +- statuses v1.5.0 +- statuses v2.0.1 +- stdin-discarder v0.1.0 +- stop-iteration-iterator v1.0.0 +- stream-buffers v2.2.0 +- stream-combiner2 v1.1.1 +- streamroller v3.1.5 +- strict-uri-encode v2.0.0 +- string-length v4.0.2 +- string-natural-compare v3.0.1 +- string-width v1.0.2 +- string-width v2.1.1 +- string-width v3.1.0 +- string-width v4.2.3 +- string-width v5.1.2 +- string-width-cjs v4.2.3 +- string.prototype.matchall v4.0.10 +- string.prototype.matchall v4.0.6 +- string.prototype.matchall v4.0.9 +- string.prototype.trim v1.2.7 +- string.prototype.trim v1.2.8 +- string.prototype.trimend v1.0.4 +- string.prototype.trimend v1.0.6 +- string.prototype.trimend v1.0.7 +- string.prototype.trimstart v1.0.4 +- string.prototype.trimstart v1.0.6 +- string.prototype.trimstart v1.0.7 +- string_decoder v1.1.1 +- string_decoder v1.3.0 +- stringify-entities v1.3.2 +- strip-ansi v3.0.1 +- strip-ansi v4.0.0 +- strip-ansi v5.2.0 +- strip-ansi v6.0.1 +- strip-ansi v7.1.0 +- strip-ansi-cjs v6.0.1 +- strip-bom v3.0.0 +- strip-bom v4.0.0 +- strip-eof v1.0.0 +- strip-final-newline v2.0.0 +- strip-final-newline v3.0.0 +- strip-indent v2.0.0 +- strip-indent v3.0.0 +- strip-indent v4.0.0 +- strip-json-comments v2.0.1 +- strip-json-comments v3.1.1 +- strnum v1.0.5 +- strong-log-transformer v2.1.0 +- style-search v0.1.0 +- stylehacks v6.0.2 +- stylelint v16.2.1 +- stylelint v9.10.1 +- stylelint-config-rational-order v0.1.2 +- stylelint-config-recommended v14.0.0 +- stylelint-config-recommended-scss v14.0.0 +- stylelint-config-standard v36.0.0 +- stylelint-config-standard-scss v13.0.0 +- stylelint-order v2.2.1 +- stylelint-order v6.0.4 +- stylelint-scss v6.1.0 +- sudo-prompt v9.2.1 +- sugarss v2.0.0 +- supports-color v5.5.0 +- supports-color v6.1.0 +- supports-color v7.2.0 +- supports-color v8.1.1 +- supports-color v9.4.0 +- supports-hyperlinks v2.2.0 +- supports-hyperlinks v2.3.0 +- supports-hyperlinks v3.0.0 +- supports-preserve-symlinks-flag v1.0.0 +- svg-tags v1.0.0 +- svgo v2.8.0 +- svgo v3.2.0 +- symbol-observable v4.0.0 +- symbol-tree v3.2.4 +- table v5.4.6 +- table v6.8.0 +- table v6.8.1 +- tapable v2.2.1 +- tar v4.4.19 +- tar v6.1.11 +- tar v6.2.0 +- temp v0.8.3 +- temp v0.8.4 +- temp-dir v1.0.0 +- temp-dir v3.0.0 +- temp-write v4.0.0 +- tempy v3.1.0 +- term-size v2.2.1 +- terminal-link v2.1.1 +- terser v5.19.2 +- terser v5.21.0 +- terser v5.27.0 +- terser-webpack-plugin v5.3.9 +- test-exclude v6.0.0 +- text-extensions v1.9.0 +- text-extensions v2.4.0 +- text-table v0.2.0 +- throat v4.1.0 +- throat v5.0.0 +- through v2.3.8 +- through2 v2.0.5 +- through2 v4.0.2 +- thunky v1.1.0 +- time-stamp v1.1.0 +- timsort v0.3.0 +- tiny-relative-date v1.3.0 +- titleize v3.0.0 +- tmp v0.0.33 +- tmp v0.2.1 +- tmpl v1.0.5 +- to-fast-properties v2.0.0 +- to-object-path v0.3.0 +- to-readable-stream v1.0.0 +- to-regex v3.0.2 +- to-regex-range v2.1.1 +- to-regex-range v5.0.1 +- toidentifier v1.0.1 +- tough-cookie v2.5.0 +- tough-cookie v4.0.0 +- tough-cookie v4.1.3 +- tr46 v0.0.3 +- tr46 v2.1.0 +- tr46 v3.0.0 +- traverse v0.6.8 +- tree-kill v1.2.2 +- treeverse v3.0.0 +- trim v0.0.1 +- trim-newlines v2.0.0 +- trim-newlines v3.0.1 +- trim-newlines v4.1.1 +- trim-trailing-lines v1.1.4 +- trough v1.0.5 +- ts-node v10.9.1 +- tsconfig-paths v3.14.1 +- tsconfig-paths v3.15.0 +- tslib v1.14.1 +- tslib v2.3.1 +- tslib v2.6.1 +- tslib v2.6.2 +- tsutils v3.21.0 +- tuf-js v1.1.7 +- tuf-js v2.2.0 +- tunnel v0.0.6 +- tunnel-agent v0.6.0 +- turbo v1.10.15 +- turbo-darwin-64 v1.10.15 +- turbo-darwin-arm64 v1.10.15 +- turbo-linux-64 v1.10.15 +- turbo-linux-arm64 v1.10.15 +- turbo-windows-64 v1.10.15 +- turbo-windows-arm64 v1.10.15 +- tweetnacl v0.14.5 +- type-check v0.3.2 +- type-check v0.4.0 +- type-detect v4.0.8 +- type-fest v0.18.1 +- type-fest v0.20.2 +- type-fest v0.21.3 +- type-fest v0.4.1 +- type-fest v0.6.0 +- type-fest v0.7.1 +- type-fest v0.8.1 +- type-fest v1.4.0 +- type-fest v2.19.0 +- type-fest v3.13.1 +- type-fest v4.10.1 +- type-is v1.6.18 +- typed-array-buffer v1.0.0 +- typed-array-buffer v1.0.1 +- typed-array-byte-length v1.0.0 +- typed-array-byte-offset v1.0.0 +- typed-array-length v1.0.4 +- typed-assert v1.0.9 +- typedarray v0.0.6 +- typedarray-to-buffer v3.1.5 +- typescript v4.5.5 +- typescript v5.1.6 +- typescript v5.2.2 +- typescript v5.3.3 +- ua-parser-js v0.7.31 +- ua-parser-js v0.7.37 +- uc.micro v1.0.6 +- uglify-es v3.3.10 +- uglify-es v3.3.9 +- uglify-js v3.15.0 +- uglify-js v3.15.3 +- uglify-js v3.17.4 +- uid-number v0.0.6 +- ultron v1.0.2 +- umask v1.1.0 +- unbox-primitive v1.0.1 +- unbox-primitive v1.0.2 +- unc-path-regex v0.1.2 +- underscore v1.13.6 +- undici-types v5.25.3 +- undici-types v5.26.5 +- unherit v1.1.3 +- unicode-canonical-property-names-ecmascript v2.0.0 +- unicode-emoji-modifier-base v1.0.0 +- unicode-match-property-ecmascript v2.0.0 +- unicode-match-property-value-ecmascript v2.0.0 +- unicode-match-property-value-ecmascript v2.1.0 +- unicode-property-aliases-ecmascript v2.0.0 +- unicode-property-aliases-ecmascript v2.1.0 +- unicorn-magic v0.1.0 +- unified v7.1.0 +- union-value v1.0.1 +- uniq v1.0.1 +- unique-filename v1.1.1 +- unique-filename v2.0.1 +- unique-filename v3.0.0 +- unique-slug v2.0.2 +- unique-slug v3.0.0 +- unique-slug v4.0.0 +- unique-string v2.0.0 +- unique-string v3.0.0 +- unist-util-find-all-after v1.0.5 +- unist-util-is v3.0.0 +- unist-util-remove-position v1.1.4 +- unist-util-stringify-position v1.1.2 +- unist-util-stringify-position v4.0.0 +- unist-util-visit v1.4.1 +- unist-util-visit-parents v2.1.2 +- universal-user-agent v6.0.0 +- universal-user-agent v6.0.1 +- universalify v0.1.2 +- universalify v0.2.0 +- universalify v2.0.0 +- universalify v2.0.1 +- unpipe v1.0.0 +- unset-value v1.0.0 +- untildify v4.0.0 +- upath v2.0.1 +- update-browserslist-db v1.0.11 +- update-browserslist-db v1.0.13 +- update-notifier v5.1.0 +- update-notifier v6.0.2 +- uri-js v4.4.1 +- urix v0.1.0 +- url-join v4.0.1 +- url-join v5.0.0 +- url-parse v1.5.10 +- url-parse-lax v3.0.0 +- url-toolkit v2.2.5 +- use v3.1.1 +- use-subscription v1.5.1 +- use-sync-external-store v1.2.0 +- util-deprecate v1.0.2 +- util-promisify v2.1.0 +- utility-types v3.11.0 +- utils-merge v1.0.1 +- uuid v3.4.0 +- uuid v8.3.2 +- v8-compile-cache v2.3.0 +- v8-compile-cache-lib v3.0.1 +- v8-to-istanbul v7.1.2 +- v8-to-istanbul v9.1.3 +- v8-to-istanbul v9.2.0 +- validate-npm-package-license v3.0.4 +- validate-npm-package-name v3.0.0 +- validate-npm-package-name v5.0.0 +- vary v1.1.2 +- verror v1.10.0 +- vfile v3.0.1 +- vfile-location v2.0.6 +- vfile-message v1.1.1 +- vfile-message v4.0.2 +- video-react v0.16.0 +- video.js v8.11.1 +- video.js v8.11.2 +- video.js v^ 5.8.5 +- videojs-contrib-eme v3.11.2 +- videojs-contrib-quality-levels v4.0.0 +- videojs-font v4.1.0 +- videojs-vtt.js v0.15.5 +- vite v4.4.7 +- vite v4.4.9 +- vite v4.5.2 +- vite v5.1.2 +- vlq v1.0.1 +- vm2 v3.9.19 +- void-elements v2.0.1 +- w3c-hr-time v1.0.2 +- w3c-xmlserializer v2.0.0 +- w3c-xmlserializer v4.0.0 +- walk-up-path v3.0.1 +- walker v1.0.8 +- watchpack v2.4.0 +- wbuf v1.7.3 +- wcwidth v1.0.1 +- wdio-browserstack-service v^ 0.1.4 +- wdio-jasmine-framework v^ 0.2.17 +- wdio-junit-reporter v^ 0.2.0 +- wdio-selenium-standalone-service v^ 0.0.7 +- wdio-spec-reporter v^ 0.0.3 +- weak-lru-cache v1.2.2 +- web-streams-polyfill v3.2.1 +- webdriverio v^ 4.5.0 +- webidl-conversions v3.0.1 +- webidl-conversions v5.0.0 +- webidl-conversions v6.1.0 +- webidl-conversions v7.0.0 +- webpack v5.88.2 +- webpack-dev-middleware v5.3.3 +- webpack-dev-middleware v6.1.1 +- webpack-dev-server v4.15.1 +- webpack-merge v5.9.0 +- webpack-sources v3.2.3 +- webpack-subresource-integrity v5.1.0 +- websocket-driver v0.7.4 +- websocket-extensions v0.1.4 +- whatwg-encoding v1.0.5 +- whatwg-encoding v2.0.0 +- whatwg-fetch v3.6.19 +- whatwg-fetch v3.6.2 +- whatwg-mimetype v2.3.0 +- whatwg-mimetype v3.0.0 +- whatwg-url v11.0.0 +- whatwg-url v5.0.0 +- whatwg-url v8.7.0 +- which v1.3.1 +- which v2.0.2 +- which v3.0.1 +- which v4.0.0 +- which-boxed-primitive v1.0.2 +- which-builtin-type v1.1.3 +- which-collection v1.0.1 +- which-module v2.0.0 +- which-module v2.0.1 +- which-typed-array v1.1.11 +- which-typed-array v1.1.14 +- wide-align v1.1.5 +- widest-line v3.1.0 +- widest-line v4.0.1 +- wildcard v2.0.1 +- wildcard-match v5.1.2 +- windows-release v4.0.0 +- windows-release v5.1.1 +- word-wrap v1.2.3 +- word-wrap v1.2.5 +- wordwrap v1.0.0 +- wrap-ansi v5.1.0 +- wrap-ansi v6.2.0 +- wrap-ansi v7.0.0 +- wrap-ansi v8.1.0 +- wrap-ansi-cjs v7.0.0 +- wrappy v1.0.2 +- write v1.0.3 +- write-file-atomic v2.4.3 +- write-file-atomic v3.0.3 +- write-file-atomic v4.0.2 +- write-file-atomic v5.0.1 +- write-json-file v3.2.0 +- write-json-file v4.3.0 +- write-pkg v4.0.0 +- ws v1.1.5 +- ws v6.2.2 +- ws v7.5.6 +- ws v7.5.9 +- ws v8.11.0 +- ws v8.14.2 +- ws v8.16.0 +- x-is-string v0.1.0 +- xcode v2.1.0 +- xdg-basedir v4.0.0 +- xdg-basedir v5.1.0 +- xml-name-validator v3.0.0 +- xml-name-validator v4.0.0 +- xmlbuilder v9.0.7 +- xmlchars v2.2.0 +- xmlcreate v2.0.4 +- xmldoc v1.1.2 +- xpipe v1.0.5 +- xtend v4.0.2 +- y18n v4.0.3 +- y18n v5.0.8 +- yallist v2.1.2 +- yallist v3.1.1 +- yallist v4.0.0 +- yaml v1.10.2 +- yaml v2.3.2 +- yargs v14.2.3 +- yargs v15.4.1 +- yargs v16.2.0 +- yargs v17.7.2 +- yargs-parser v10.1.0 +- yargs-parser v15.0.3 +- yargs-parser v18.1.3 +- yargs-parser v20.2.4 +- yargs-parser v20.2.9 +- yargs-parser v21.1.1 +- yn v3.1.1 +- yocto-queue v0.1.0 +- yocto-queue v1.0.0 +- zone.js v0.13.3 + +## rubygems + +- CFPropertyList v3.0.6 +- CFPropertyList v3.0.7 +- addressable v2.8.1 +- addressable v2.8.6 +- artifactory v3.0.15 +- ast v2.4.2 +- atomos v0.1.3 +- aws-eventstream v1.2.0 +- aws-eventstream v1.3.0 +- aws-partitions v1.709.0 +- aws-partitions v1.877.0 +- aws-partitions v1.887.0 +- aws-partitions v1.894.0 +- aws-sdk-core v3.170.0 +- aws-sdk-core v3.190.1 +- aws-sdk-core v3.191.0 +- aws-sdk-core v3.191.3 +- aws-sdk-kms v1.62.0 +- aws-sdk-kms v1.75.0 +- aws-sdk-kms v1.77.0 +- aws-sdk-s3 v1.119.0 +- aws-sdk-s3 v1.142.0 +- aws-sdk-s3 v1.143.0 +- aws-sigv4 v1.5.2 +- aws-sigv4 v1.8.0 +- babosa v1.0.4 +- badge v0.13.0 +- base64 v0.2.0 +- claide v1.1.0 +- cocoapods v~> 1.12 +- colored v1.2 +- colored2 v3.1.2 +- commander v4.6.0 +- declarative v0.0.20 +- digest-crc v0.6.4 +- digest-crc v0.6.5 +- domain_name v0.5.20190701 +- domain_name v0.6.20231109 +- domain_name v0.6.20240107 +- dotenv v2.8.1 +- emoji_regex v3.2.3 +- excon v0.109.0 +- excon v0.99.0 +- faraday v1.10.3 +- faraday-cookie_jar v0.0.7 +- faraday-em_http v1.0.0 +- faraday-em_synchrony v1.0.0 +- faraday-excon v1.1.0 +- faraday-httpclient v1.0.1 +- faraday-multipart v1.0.4 +- faraday-net_http v1.0.1 +- faraday-net_http_persistent v1.2.0 +- faraday-patron v1.0.0 +- faraday-rack v1.0.0 +- faraday-retry v1.0.3 +- faraday_middleware v1.2.0 +- fastimage v2.2.6 +- fastimage v2.3.0 +- fastlane v2.211.0 +- fastlane v2.218.0 +- fastlane v2.219.0 +- fastlane-plugin-appcenter v2.0.0 +- fastlane-plugin-appcenter v2.1.2 +- fastlane-plugin-badge v1.5.0 +- fastlane-plugin-xcconfig v2.0.0 +- gh_inspector v1.1.3 +- google-apis-androidpublisher_v3 v0.33.0 +- google-apis-androidpublisher_v3 v0.54.0 +- google-apis-core v0.11.0 +- google-apis-core v0.11.2 +- google-apis-core v0.11.3 +- google-apis-iamcredentials_v1 v0.16.0 +- google-apis-iamcredentials_v1 v0.17.0 +- google-apis-playcustomapp_v1 v0.12.0 +- google-apis-playcustomapp_v1 v0.13.0 +- google-apis-storage_v1 v0.19.0 +- google-apis-storage_v1 v0.29.0 +- google-apis-storage_v1 v0.31.0 +- google-cloud-core v1.6.0 +- google-cloud-core v1.6.1 +- google-cloud-env v1.6.0 +- google-cloud-env v2.1.0 +- google-cloud-errors v1.3.0 +- google-cloud-errors v1.3.1 +- google-cloud-storage v1.44.0 +- google-cloud-storage v1.45.0 +- google-cloud-storage v1.47.0 +- googleauth v1.3.0 +- googleauth v1.8.1 +- googleauth v1.9.1 +- highline v2.0.3 +- http-cookie v1.0.5 +- httpclient v2.8.3 +- jmespath v1.6.2 +- json v2.6.3 +- json v2.7.1 +- jwt v2.7.0 +- jwt v2.7.1 +- jwt v2.8.0 +- language_server-protocol v3.17.0.3 +- memoist v0.16.2 +- mini_magick v4.12.0 +- mini_mime v1.1.2 +- mini_mime v1.1.5 +- multi_json v1.15.0 +- multipart-post v2.0.0 +- multipart-post v2.3.0 +- multipart-post v2.4.0 +- nanaimo v0.3.0 +- naturally v2.2.1 +- nkf v0.2.0 +- optparse v0.1.1 +- optparse v0.4.0 +- os v1.1.4 +- parallel v1.22.1 +- parallel v1.23.0 +- parser v3.2.2.0 +- parser v3.2.2.4 +- plist v3.6.0 +- plist v3.7.1 +- public_suffix v5.0.1 +- public_suffix v5.0.4 +- racc v1.7.3 +- rainbow v3.1.1 +- rake v13.0.6 +- rake v13.1.0 +- regexp_parser v2.7.0 +- regexp_parser v2.8.2 +- representable v3.2.0 +- retriable v3.1.2 +- rexml v3.2.5 +- rexml v3.2.6 +- rouge v2.0.7 +- rubocop v1.42.0 +- rubocop v1.57.2 +- rubocop-ast v1.28.0 +- rubocop-ast v1.30.0 +- ruby-progressbar v1.13.0 +- ruby2_keywords v0.0.5 +- rubyzip v2.3.2 +- security v0.1.3 +- signet v0.17.0 +- signet v0.18.0 +- signet v0.19.0 +- simctl v1.6.10 +- terminal-notifier v2.0.0 +- terminal-table v1.8.0 +- terminal-table v3.0.2 +- trailblazer-option v0.1.2 +- tty-cursor v0.7.1 +- tty-screen v0.8.1 +- tty-screen v0.8.2 +- tty-spinner v0.9.3 +- uber v0.1.0 +- unf v0.1.4 +- unf_ext v0.0.8.2 +- unicode-display_width v1.8.0 +- unicode-display_width v2.5.0 +- webrick v1.8.1 +- word_wrap v1.0.0 +- xcode-install v2.8.1 +- xcodeproj v1.22.0 +- xcodeproj v1.23.0 +- xcodeproj v1.24.0 +- xcpretty v0.3.0 +- xcpretty-travis-formatter v1.0.1 + +## swift + +- bitbucket.org/usercentricscode/usercentrics-spm-sdk v2.12.0 +- bitbucket.org/usercentricscode/usercentrics-spm-ui v2.11.1 +- github.com/alisoftware/ohhttpstubs v9.0.0 +- github.com/alisoftware/ohhttpstubs v9.1.0 +- github.com/apple/swift-collections v1.0.6 +- github.com/apple/swift-collections v1.1.0 +- github.com/apple/swift-protobuf v1.25.2 +- github.com/combinecommunity/combineext v1.8.1 +- github.com/commandersact/iosv5 v5.4.4 +- github.com/commandersact/iosv5 v5.4.5 +- github.com/comscore/comscore-swift-package-manager v6.10.0 +- github.com/comscore/comscore-swift-package-manager v6.11.0 +- github.com/comscore/comscore-swift-package-manager v6.8.1 +- github.com/dzenbot/dznemptydataset v>= 0 +- github.com/firebase/firebase-ios-sdk v10.19.1 +- github.com/firebase/leveldb v1.22.3 +- github.com/firebase/nanopb v2.30909.0 +- github.com/flextool/flex v5.22.10 +- github.com/google/abseil-cpp-binary v1.2022062300.0 +- github.com/google/app-check v10.18.0 +- github.com/google/googleappmeasurement v10.17.0 +- github.com/google/googledatatransport v9.3.0 +- github.com/google/googleutilities v7.12.1 +- github.com/google/grpc-binary v1.49.1 +- github.com/google/gtm-session-fetcher v3.2.0 +- github.com/google/interop-ios-for-google-sdks v100.0.0 +- github.com/google/promises v2.3.1 +- github.com/icanzilb/timelanecombine v2.0.0 +- github.com/icanzilb/timelanecore v2.0.2 +- github.com/ideasoncanvas/aiolos v1.9.8 +- github.com/kaishin/gifu v3.4.1 +- github.com/kanecheshire/showtime v2.5.3 +- github.com/kean/nuke v10.11.2 +- github.com/kean/nukeui v0.8.3 +- github.com/kishikawakatsumi/uickeychainstore v2.2.1 +- github.com/krzysztofzablocki/difference v1.0.1 +- github.com/mantle/mantle v2.2.0 +- github.com/mattgallagher/cwlcatchexception v2.1.2 +- github.com/mattgallagher/cwlpreconditiontesting v2.2.0 +- github.com/microsoft/appcenter-sdk-apple v5.0.3 +- github.com/microsoft/appcenter-sdk-apple v5.0.4 +- github.com/microsoft/plcrashreporter v1.11.1 +- github.com/onmyway133/deepdiff v2.3.3 +- github.com/quick/nimble v13.2.0 +- github.com/quick/nimble v13.2.1 +- github.com/ramotion/paper-onboarding v6.1.5 +- github.com/siteline/swiftui-introspect v0.12.0 +- github.com/srgssr/fxreachability v1.3.2-srg6 +- github.com/srgssr/googlecastsdk-no-bluetooth v4.8.0 +- github.com/srgssr/libextobjc v0.6.0-srg4 +- github.com/srgssr/makvonotificationcenter v1.0.0-srg6 +- github.com/srgssr/srganalytics-apple v7.10.0 +- github.com/srgssr/srganalytics-apple v9.1.0 +- github.com/srgssr/srgappearance-apple v5.2.0 +- github.com/srgssr/srgappearance-apple v5.2.1 +- github.com/srgssr/srgcontentprotection-apple v3.1.0 +- github.com/srgssr/srgdataprovider-apple v17.0.1 +- github.com/srgssr/srgdataprovider-apple v19.0.0 +- github.com/srgssr/srgdataprovider-apple v>= 0 +- github.com/srgssr/srgdiagnostics-apple v3.1.0 +- github.com/srgssr/srgidentity-apple v3.3.0 +- github.com/srgssr/srgletterbox-apple v8.4.0 +- github.com/srgssr/srgletterbox-apple v9.3.0 +- github.com/srgssr/srglogger-apple v3.1.0 +- github.com/srgssr/srgmediaplayer-apple v7.1.0 +- github.com/srgssr/srgmediaplayer-apple v7.2.1 +- github.com/srgssr/srgnetwork-apple v3.1.0 +- github.com/srgssr/srguserdata-apple v3.3.1 +- github.com/srgssr/tccore-xcframework-apple v4.5.4-srg5 +- github.com/srgssr/tccore-xcframework-apple v5.1.1 +- github.com/srgssr/tcsdk-xcframework-apple v4.4.1-srg5 +- github.com/srgssr/yywebimage v1.0.5-srg3 +- github.com/swiftkickmobile/swiftmessages v9.0.9 +- github.com/urbanairship/ios-library v14.5.1 +- github.com/urbanairship/ios-library v16.12.5 +- github.com/wenchaod/fscalendar v2.8.4 + diff --git a/public/techRadar/used_languages.md b/public/techRadar/used_languages.md new file mode 100644 index 0000000..caa67bf --- /dev/null +++ b/public/techRadar/used_languages.md @@ -0,0 +1,88 @@ +# Used languages + +This page lists all the repositories of the SRG SSR GitHub organisation, grouped by primary +language. +Some repository may use more than one language, which is not reflected in this document. + +## C# + +- [WakeUp](https://github.com/SRGSSR/WakeUp) + +## HTML + +- [SRGMediaPlayer-Tools](https://github.com/SRGSSR/SRGMediaPlayer-Tools) +- [guilde-plateformes-propres](https://github.com/SRGSSR/guilde-plateformes-propres) + +## Java + +- [TestPrep](https://github.com/SRGSSR/TestPrep) +- [playsrg-playfff](https://github.com/SRGSSR/playsrg-playfff) +- [react-native-pillarbox](https://github.com/SRGSSR/react-native-pillarbox) + +## JavaScript + +- [hackdays2023-storytelling](https://github.com/SRGSSR/hackdays2023-storytelling) +- [layered-image-generation-apple](https://github.com/SRGSSR/layered-image-generation-apple) +- [pillarbox-web](https://github.com/SRGSSR/pillarbox-web) +- [pillarbox-web-demo](https://github.com/SRGSSR/pillarbox-web-demo) +- [rio-gh-actions](https://github.com/SRGSSR/rio-gh-actions) +- [rio-lint](https://github.com/SRGSSR/rio-lint) +- [srgletterbox-peach](https://github.com/SRGSSR/srgletterbox-peach) +- [videojs-hlsjs](https://github.com/SRGSSR/videojs-hlsjs) +- [videojs-levels](https://github.com/SRGSSR/videojs-levels) +- [videojs-offset](https://github.com/SRGSSR/videojs-offset) +- [videojs-ttml](https://github.com/SRGSSR/videojs-ttml) +- [wdio-jasmine-boilerplate](https://github.com/SRGSSR/wdio-jasmine-boilerplate) + +## Kotlin + +- [pillarbox-android](https://github.com/SRGSSR/pillarbox-android) +- [srgdataprovider-android](https://github.com/SRGSSR/srgdataprovider-android) + +## Makefile + +- [docker-md2cf](https://github.com/SRGSSR/docker-md2cf) + +## Objective-C + +- [react-native-local-network-permission](https://github.com/SRGSSR/react-native-local-network-permission) +- [srganalytics-apple](https://github.com/SRGSSR/srganalytics-apple) +- [srgappearance-apple](https://github.com/SRGSSR/srgappearance-apple) +- [srgcontentprotection-apple](https://github.com/SRGSSR/srgcontentprotection-apple) +- [srgdataprovider-apple](https://github.com/SRGSSR/srgdataprovider-apple) +- [srgdiagnostics-apple](https://github.com/SRGSSR/srgdiagnostics-apple) +- [srgidentity-apple](https://github.com/SRGSSR/srgidentity-apple) +- [srgletterbox-apple](https://github.com/SRGSSR/srgletterbox-apple) +- [srglogger-apple](https://github.com/SRGSSR/srglogger-apple) +- [srgmediaplayer-apple](https://github.com/SRGSSR/srgmediaplayer-apple) +- [srgnetwork-apple](https://github.com/SRGSSR/srgnetwork-apple) +- [srguserdata-apple](https://github.com/SRGSSR/srguserdata-apple) + +## PowerShell + +- [PowershellScriptsSelection](https://github.com/SRGSSR/PowershellScriptsSelection) + +## Python + +- [recipes](https://github.com/SRGSSR/recipes) + +## Shell + +- [ComScore-xcframework-apple](https://github.com/SRGSSR/ComScore-xcframework-apple) +- [TCSDK-xcframework-apple](https://github.com/SRGSSR/TCSDK-xcframework-apple) + +## Swift + +- [GoogleCastSDK-ios-no-bluetooth](https://github.com/SRGSSR/GoogleCastSDK-ios-no-bluetooth) +- [GoogleCastSDK-no-bluetooth](https://github.com/SRGSSR/GoogleCastSDK-no-bluetooth) +- [TCServerSide-xcframework-spm-test-apple](https://github.com/SRGSSR/TCServerSide-xcframework-spm-test-apple) +- [ghost-start-tester](https://github.com/SRGSSR/ghost-start-tester) +- [pillarbox-apple](https://github.com/SRGSSR/pillarbox-apple) +- [playsrg-apple](https://github.com/SRGSSR/playsrg-apple) + +## Unknown + +- [.github](https://github.com/SRGSSR/.github) +- [pdpcore-schema](https://github.com/SRGSSR/pdpcore-schema) +- [pillarbox-documentation](https://github.com/SRGSSR/pillarbox-documentation) + diff --git a/techRadar/used_languages.tmpl b/techRadar/used_languages.tmpl new file mode 100644 index 0000000..ee939e7 --- /dev/null +++ b/techRadar/used_languages.tmpl @@ -0,0 +1,13 @@ +# Used languages + +This page lists all the repositories of the SRG SSR GitHub organisation, grouped by primary +language. +Some repository may use more than one language, which is not reflected in this document. + +{{ range $language, $repositories := (ds "repositories") -}} +## {{ if eq $language "null" }}Unknown{{ else }}{{ $language }}{{ end }} + +{{ range $name, $url := $repositories -}} +- [{{ $name }}]({{ $url }}) +{{ end }} +{{ end -}}