├── .clomonitor.yml ├── .ct.yaml ├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ ├── official-status-request.md │ └── report-abuse.md ├── codeql │ └── codeql-config.yml ├── dependabot.yml └── workflows │ ├── build-images.yml │ ├── chart-testing.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── fossa.yml │ ├── release.yml │ └── tern.conf ├── .gitignore ├── .gitpod.yml ├── .gitpod ├── Dockerfile ├── hub.yaml ├── tern-tests.conf ├── tern.conf └── tracker.yaml ├── .golangci.yml ├── .goreleaser.yml ├── .ignore ├── ADOPTERS.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── OWNERS ├── README.md ├── ROADMAP.md ├── SECURITY-INSIGHTS.yml ├── SECURITY.md ├── charts └── artifact-hub │ ├── .helmignore │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── ci │ ├── default-values.yaml │ └── dynamic-resource-name-prefix-values.yaml │ ├── templates │ ├── _helpers.tpl │ ├── db_migrator_job.yaml │ ├── db_migrator_secret.yaml │ ├── extra-list.yaml │ ├── hub_deployment.yaml │ ├── hub_ingress.yaml │ ├── hub_rbac.yaml │ ├── hub_secret.yaml │ ├── hub_service.yaml │ ├── hub_serviceaccount.yaml │ ├── scanner_cronjob.yaml │ ├── scanner_secret.yaml │ ├── tracker_cronjob.yaml │ ├── tracker_secret.yaml │ ├── trivy_deployment.yaml │ ├── trivy_pvc.yaml │ └── trivy_service.yaml │ ├── values-production.yaml │ ├── values-staging.yaml │ ├── values.schema.json │ └── values.yaml ├── cmd ├── ah │ ├── Dockerfile │ ├── ah.go │ ├── ah_test.go │ ├── lint.go │ ├── lint_test.go │ ├── testdata │ │ ├── lint │ │ │ ├── test1 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── README.md │ │ │ ├── test10 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── plugins │ │ │ │ │ └── manifest.yaml │ │ │ ├── test11 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── plugins │ │ │ │ │ └── manifest.yaml │ │ │ ├── test12 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── task1 │ │ │ │ │ └── 0.1 │ │ │ │ │ ├── README.md │ │ │ │ │ └── task1.yaml │ │ │ ├── test13 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── task1 │ │ │ │ │ └── 0.1 │ │ │ │ │ └── task1.yaml │ │ │ ├── test14 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── test-operator │ │ │ │ │ ├── 0.1.0 │ │ │ │ │ └── test-operator.v0.1.0.clusterserviceversion.yaml │ │ │ │ │ └── test-operator.package.yaml │ │ │ ├── test15 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── test-operator │ │ │ │ │ ├── 0.1.0 │ │ │ │ │ ├── manifests │ │ │ │ │ │ └── test-operator.v0.1.0.clusterserviceversion.yaml │ │ │ │ │ └── metadata │ │ │ │ │ │ └── annotations.yaml │ │ │ │ │ └── 0.2.0 │ │ │ │ │ ├── manifests │ │ │ │ │ └── test-operator.v0.2.0.clusterserviceversion.yaml │ │ │ │ │ └── metadata │ │ │ │ │ └── annotations.yaml │ │ │ ├── test16 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── test-operator │ │ │ │ │ ├── 0.1.0 │ │ │ │ │ └── test-operator.v0.1.0.clusterserviceversion.yaml │ │ │ │ │ └── test-operator.package.yaml │ │ │ ├── test17 │ │ │ │ └── output.golden │ │ │ ├── test18 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ ├── pkg1 │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ │ ├── artifacthub-pkg.yml │ │ │ │ │ │ └── pkg1.yaml │ │ │ │ │ └── 2.0.0 │ │ │ │ │ │ └── artifacthub-pkg.yml │ │ │ │ │ └── pkg2 │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ └── artifacthub-pkg.yml │ │ │ │ │ └── 2.0.0 │ │ │ │ │ ├── 2.0.0.yaml │ │ │ │ │ └── artifacthub-pkg.yml │ │ │ ├── test2 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ ├── chart1 │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── README.md │ │ │ │ │ └── chart2 │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ └── README.md │ │ │ ├── test3 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── Chart.yaml │ │ │ ├── test4 │ │ │ │ └── output.golden │ │ │ ├── test5 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ ├── artifacthub-pkg.yml │ │ │ │ │ └── policy1.rego │ │ │ ├── test6 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ ├── pkg1 │ │ │ │ │ ├── artifacthub-pkg.yml │ │ │ │ │ └── policy1.rego │ │ │ │ │ └── pkg2 │ │ │ │ │ ├── artifacthub-pkg.yml │ │ │ │ │ └── policy1.rego │ │ │ ├── test7 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ └── artifacthub-pkg.yml │ │ │ ├── test8 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── plugin.yaml │ │ │ └── test9 │ │ │ │ ├── output.golden │ │ │ │ └── pkgs │ │ │ │ └── plugin.yaml │ │ └── version │ │ │ ├── test1 │ │ │ └── output.golden │ │ │ └── test2 │ │ │ └── output.golden │ ├── version.go │ └── version_test.go ├── hub │ ├── Dockerfile │ └── main.go ├── scanner │ ├── Dockerfile │ └── main.go └── tracker │ ├── Dockerfile │ └── main.go ├── code-of-conduct.md ├── configs ├── grafana-dashboard.json ├── hub.yaml ├── scanner.yaml ├── tern.conf └── tracker.yaml ├── database ├── migrations │ ├── Dockerfile │ ├── functions │ │ ├── 001_load_functions.sql │ │ ├── api_keys │ │ │ ├── add_api_key.sql │ │ │ ├── delete_api_key.sql │ │ │ ├── get_api_key.sql │ │ │ ├── get_user_api_keys.sql │ │ │ └── update_api_key.sql │ │ ├── events │ │ │ └── get_pending_event.sql │ │ ├── images │ │ │ ├── get_image.sql │ │ │ └── register_image.sql │ │ ├── notifications │ │ │ ├── add_notification.sql │ │ │ ├── get_pending_notification.sql │ │ │ └── update_notification_status.sql │ │ ├── organizations │ │ │ ├── add_organization.sql │ │ │ ├── add_organization_member.sql │ │ │ ├── confirm_organization_membership.sql │ │ │ ├── delete_organization.sql │ │ │ ├── delete_organization_member.sql │ │ │ ├── get_authorization_policies.sql │ │ │ ├── get_authorization_policy.sql │ │ │ ├── get_organization.sql │ │ │ ├── get_organization_members.sql │ │ │ ├── get_user_organizations.sql │ │ │ ├── update_authorization_policy.sql │ │ │ ├── update_organization.sql │ │ │ └── user_belongs_to_organization.sql │ │ ├── packages │ │ │ ├── add_production_usage.sql │ │ │ ├── are_all_containers_images_whitelisted.sql │ │ │ ├── delete_production_usage.sql │ │ │ ├── enrich_package_data.sql │ │ │ ├── generate_package_tsdoc.sql │ │ │ ├── get_harbor_replication_dump.sql │ │ │ ├── get_helm_exporter_dump.sql │ │ │ ├── get_nova_dump.sql │ │ │ ├── get_package.sql │ │ │ ├── get_package_changelog.sql │ │ │ ├── get_package_stars.sql │ │ │ ├── get_package_summary.sql │ │ │ ├── get_package_views.sql │ │ │ ├── get_packages_starred_by_user.sql │ │ │ ├── get_packages_stats.sql │ │ │ ├── get_production_usage.sql │ │ │ ├── get_random_packages.sql │ │ │ ├── get_snapshots_to_scan.sql │ │ │ ├── is_latest.sql │ │ │ ├── register_package.sql │ │ │ ├── search_packages.sql │ │ │ ├── search_packages_monocular.sql │ │ │ ├── semver_gt.sql │ │ │ ├── semver_gte.sql │ │ │ ├── toggle_star.sql │ │ │ ├── unregister_package.sql │ │ │ ├── update_packages_views.sql │ │ │ └── update_snapshot_security_report.sql │ │ ├── repositories │ │ │ ├── add_repository.sql │ │ │ ├── delete_repository.sql │ │ │ ├── get_repository_by_id.sql │ │ │ ├── get_repository_by_name.sql │ │ │ ├── get_repository_packages_digest.sql │ │ │ ├── get_repository_summary.sql │ │ │ ├── search_repositories.sql │ │ │ ├── set_last_scanning_results.sql │ │ │ ├── set_last_tracking_results.sql │ │ │ ├── set_verified_publisher.sql │ │ │ ├── transfer_repository.sql │ │ │ └── update_repository.sql │ │ ├── stats │ │ │ └── get_stats.sql │ │ ├── subscriptions │ │ │ ├── add_opt_out.sql │ │ │ ├── add_subscription.sql │ │ │ ├── delete_opt_out.sql │ │ │ ├── delete_subscription.sql │ │ │ ├── get_package_subscriptors.sql │ │ │ ├── get_repository_subscriptors.sql │ │ │ ├── get_user_opt_out_entries.sql │ │ │ ├── get_user_package_subscriptions.sql │ │ │ └── get_user_subscriptions.sql │ │ ├── users │ │ │ ├── approve_session.sql │ │ │ ├── delete_user.sql │ │ │ ├── get_user_profile.sql │ │ │ ├── get_user_tfa_config.sql │ │ │ ├── register_delete_user_code.sql │ │ │ ├── register_password_reset_code.sql │ │ │ ├── register_session.sql │ │ │ ├── register_user.sql │ │ │ ├── reset_user_password.sql │ │ │ ├── update_user_password.sql │ │ │ ├── update_user_profile.sql │ │ │ ├── verify_email.sql │ │ │ └── verify_password_reset_code.sql │ │ └── webhooks │ │ │ ├── add_webhook.sql │ │ │ ├── delete_webhook.sql │ │ │ ├── get_org_webhooks.sql │ │ │ ├── get_user_webhooks.sql │ │ │ ├── get_webhook.sql │ │ │ ├── get_webhooks_subscribed_to_package.sql │ │ │ ├── update_webhook.sql │ │ │ └── user_has_access_to_webhook.sql │ ├── migrate.sh │ └── schema │ │ ├── 001_initial_schema.sql │ │ ├── 002_recommendations.sql │ │ ├── 003_password_reset.sql │ │ ├── 004_last_scanning.sql │ │ ├── 005_official_package.sql │ │ ├── 006_logo_in_snapshot.sql │ │ ├── 007_missing_created_at.sql │ │ ├── 008_hash_api_key.sql │ │ ├── 009_hash_password_reset_code.sql │ │ ├── 010_hash_session_id.sql │ │ ├── 011_keda_scalers.sql │ │ ├── 012_coredns_plugins.sql │ │ ├── 013_two_factor_auth.sql │ │ ├── 014_package_changes_improvements.sql │ │ ├── 015_refactoring.sql │ │ ├── 016_security_alerts.sql │ │ ├── 017_packages_search_refactor.sql │ │ ├── 018_search_repositories.sql │ │ ├── 019_pagination.sql │ │ ├── 020_sign_key.sql │ │ ├── 021_delete_user.sql │ │ ├── 022_keptn_integrations.sql │ │ ├── 023_missing_indexes.sql │ │ ├── 024_tsm_system_rows_extension.sql │ │ ├── 025_fix_index.sql │ │ ├── 026_tekton_pipelines.sql │ │ ├── 027_delete_old_enrich_package_data_function.sql │ │ ├── 028_screenshots.sql │ │ ├── 029_regenerate_all_packages_tsdoc.sql │ │ ├── 030_production_usage.sql │ │ ├── 031_signatures.sql │ │ ├── 032_packages_views.sql │ │ ├── 033_package_views_fkey.sql │ │ ├── 034_partman.sql │ │ ├── 035_containers_images.sql │ │ ├── 036_fix_check_user_alias_availability.sql │ │ ├── 037_kubewarden_policies.sql │ │ ├── 038_gatekeeper_policies.sql │ │ ├── 039_package_relative_path.sql │ │ ├── 040_keep_views_on_delete.sql │ │ ├── 041_kyverno_policies.sql │ │ ├── 042_package_alternative_name.sql │ │ ├── 043_knative_client_plugins.sql │ │ ├── 044_backstage_plugins.sql │ │ ├── 045_package_category.sql │ │ ├── 046_cncf.sql │ │ ├── 047_argo_templates.sql │ │ ├── 048_kubearmor_policies.sql │ │ ├── 049_kcl_packages.sql │ │ ├── 050_kcl_modules.sql │ │ ├── 051_missing_event_indexes.sql │ │ ├── 052_package_views_year_month_index.sql │ │ ├── 053_headlamp_plugins.sql │ │ ├── 054_repositories_notifications_disabled.sql │ │ ├── 055_add_semver_prerelease_collation.sql │ │ ├── 056_inspektor_gadgets.sql │ │ ├── 057_tekton_stepactions.sql │ │ ├── 058_meshery_designs.sql │ │ ├── 059_opencost_plugins.sql │ │ ├── 060_radius_recipes.sql │ │ ├── 061_packages_deletion_protection.sql │ │ ├── 062_bootable_containers.sql │ │ ├── 063_kagent_agents.sql │ │ └── data │ │ └── sample.sql └── tests │ ├── Dockerfile-db-tests │ ├── Dockerfile-postgres │ ├── functions │ ├── api_keys │ │ ├── add_api_key.sql │ │ ├── delete_api_key.sql │ │ ├── get_api_key.sql │ │ ├── get_user_api_keys.sql │ │ └── update_api_key.sql │ ├── events │ │ └── get_pending_event.sql │ ├── images │ │ ├── get_image.sql │ │ └── register_image.sql │ ├── notifications │ │ ├── add_notification.sql │ │ ├── get_pending_notification.sql │ │ └── update_notification_status.sql │ ├── organizations │ │ ├── add_organization.sql │ │ ├── add_organization_member.sql │ │ ├── confirm_organization_membership.sql │ │ ├── delete_organization.sql │ │ ├── delete_organization_member.sql │ │ ├── get_authorization_policies.sql │ │ ├── get_authorization_policy.sql │ │ ├── get_organization.sql │ │ ├── get_organization_members.sql │ │ ├── get_user_organizations.sql │ │ ├── update_authorization_policy.sql │ │ ├── update_organization.sql │ │ └── user_belongs_to_organization.sql │ ├── packages │ │ ├── add_production_usage.sql │ │ ├── are_all_containers_images_whitelisted.sql │ │ ├── delete_production_usage.sql │ │ ├── enrich_package_data.sql │ │ ├── get_harbor_replication_dump.sql │ │ ├── get_helm_exporter_dump.sql │ │ ├── get_nova_dump.sql │ │ ├── get_package.sql │ │ ├── get_package_changelog.sql │ │ ├── get_package_stars.sql │ │ ├── get_package_summary.sql │ │ ├── get_package_views.sql │ │ ├── get_packages_starred_by_user.sql │ │ ├── get_packages_stats.sql │ │ ├── get_production_usage.sql │ │ ├── get_random_packages.sql │ │ ├── get_snapshots_to_scan.sql │ │ ├── is_latest.sql │ │ ├── register_package.sql │ │ ├── search_packages.sql │ │ ├── search_packages_monocular.sql │ │ ├── semver_gt.sql │ │ ├── semver_gte.sql │ │ ├── toggle_star.sql │ │ ├── unregister_package.sql │ │ ├── update_packages_views.sql │ │ └── update_snapshot_security_report.sql │ ├── repositories │ │ ├── add_repository.sql │ │ ├── delete_repository.sql │ │ ├── get_repository_by_id.sql │ │ ├── get_repository_by_name.sql │ │ ├── get_repository_packages_digest.sql │ │ ├── get_repository_summary.sql │ │ ├── search_repositories.sql │ │ ├── set_last_scanning_results.sql │ │ ├── set_last_tracking_results.sql │ │ ├── set_verified_publisher.sql │ │ ├── transfer_repository.sql │ │ └── update_repository.sql │ ├── stats │ │ └── get_stats.sql │ ├── subscriptions │ │ ├── add_opt_out.sql │ │ ├── add_subscription.sql │ │ ├── delete_opt_out.sql │ │ ├── delete_subscription.sql │ │ ├── get_package_subscriptors.sql │ │ ├── get_repository_subscriptors.sql │ │ ├── get_user_opt_out_entries.sql │ │ ├── get_user_package_subscriptions.sql │ │ └── get_user_subscriptions.sql │ ├── users │ │ ├── approve_session.sql │ │ ├── delete_user.sql │ │ ├── get_user_profile.sql │ │ ├── get_user_tfa_config.sql │ │ ├── register_delete_user_code.sql │ │ ├── register_password_reset_code.sql │ │ ├── register_session.sql │ │ ├── register_user.sql │ │ ├── reset_user_password.sql │ │ ├── update_user_password.sql │ │ ├── update_user_profile.sql │ │ ├── verify_email.sql │ │ └── verify_password_reset_code.sql │ └── webhooks │ │ ├── add_webhook.sql │ │ ├── delete_webhook.sql │ │ ├── get_org_webhooks.sql │ │ ├── get_user_webhooks.sql │ │ ├── get_webhook.sql │ │ ├── get_webhooks_subscribed_to_package.sql │ │ ├── update_webhook.sql │ │ └── user_has_access_to_webhook.sql │ └── schema │ └── schema.sql ├── docs ├── api │ ├── custom-styles.css │ ├── index.html │ ├── oauth2-redirect.html │ ├── openapi-monocular.yaml │ ├── openapi.yaml │ ├── swagger-ui-bundle.js │ ├── swagger-ui-standalone-preset.js │ └── swagger-ui.css ├── architecture.md ├── argo_annotations.md ├── argo_templates_repositories.md ├── authorization.md ├── backstage_plugins_repositories.md ├── bootable_containers_repositories.md ├── chart │ ├── artifact-hub-0.10.0.tgz │ ├── artifact-hub-0.11.0.tgz │ ├── artifact-hub-0.12.0.tgz │ ├── artifact-hub-0.13.0.tgz │ ├── artifact-hub-0.14.0.tgz │ ├── artifact-hub-0.15.0.tgz │ ├── artifact-hub-0.16.0.tgz │ ├── artifact-hub-0.17.0.tgz │ ├── artifact-hub-0.18.0.tgz │ ├── artifact-hub-0.19.0.tgz │ ├── artifact-hub-0.2.0.tgz │ ├── artifact-hub-0.20.0.tgz │ ├── artifact-hub-0.3.0.tgz │ ├── artifact-hub-0.4.0.tgz │ ├── artifact-hub-0.5.0.tgz │ ├── artifact-hub-0.6.0.tgz │ ├── artifact-hub-0.7.0.tgz │ ├── artifact-hub-0.8.0.tgz │ ├── artifact-hub-0.9.0.tgz │ ├── artifact-hub-1.0.0.tgz │ ├── artifact-hub-1.1.0.tgz │ ├── artifacthub-repo.yml │ ├── index.html │ ├── index.yaml │ ├── logo.png │ └── logo_v2.png ├── cli.md ├── container_images_repositories.md ├── coredns_plugins_repositories.md ├── dev.md ├── embedding_artifacts.md ├── events │ └── CNSC-2024.png ├── falco_rules_repositories.md ├── faq.md ├── gatekeeper_policies_repositories.md ├── headlamp_annotations.md ├── headlamp_plugins_repositories.md ├── helm_annotations.md ├── helm_charts_repositories.md ├── helm_plugins_repositories.md ├── infrastructure.md ├── inspektor_gadgets_repositories.md ├── kagent_agents_repositories.md ├── kcl_modules_repositories.md ├── keda_scalers_repositories.md ├── keptn_annotations.md ├── keptn_integrations_repositories.md ├── knative_client_plugins_repositories.md ├── krew_annotations.md ├── krew_kubectl_plugins_repositories.md ├── kubearmor_policies_repositories.md ├── kubewarden_annotations.md ├── kubewarden_policies_repositories.md ├── kyverno_annotations.md ├── kyverno_policies_repositories.md ├── logo │ └── logo.svg ├── meshery_designs_repositories.md ├── metadata │ ├── artifacthub-pkg.yml │ └── artifacthub-repo.yml ├── olm_annotations.md ├── olm_operators_repositories.md ├── opa_policies_repositories.md ├── opencost_plugins_repositories.md ├── radius_recipes_repositories.md ├── repositories.md ├── screenshots │ ├── embed-screenshot-1.jpg │ ├── embed-screenshot-2.jpg │ ├── embed-screenshot-3.jpg │ ├── embed-screenshot-4.jpg │ ├── screenshot1.jpg │ ├── screenshot2.jpg │ ├── screenshot3.jpg │ ├── screenshot4.jpg │ ├── screenshot5.jpg │ └── screenshot6.jpg ├── security_report.md ├── tekton_annotations.md ├── tekton_pipelines_repositories.md ├── tekton_stepactions_repositories.md ├── tekton_tasks_repositories.md ├── tinkerbell_actions_repositories.md └── www │ ├── archetypes │ └── default.md │ ├── config.yaml │ ├── content │ ├── _index.md │ └── topics │ │ └── annotations │ │ └── _index.md │ ├── headers │ ├── architecture │ ├── argo_annotations │ ├── argo_templates_repositories │ ├── authorization │ ├── backstage_plugins_repositories │ ├── bootable_containers_repositories │ ├── cli │ ├── container_images_repositories │ ├── coredns_plugins_repositories │ ├── dev │ ├── embedding_artifacts │ ├── falco_rules_repositories │ ├── faq │ ├── gatekeeper_policies_repositories │ ├── headlamp_annotations │ ├── headlamp_plugins_repositories │ ├── helm_annotations │ ├── helm_charts_repositories │ ├── helm_plugins_repositories │ ├── infrastructure │ ├── inspektor_gadgets_repositories │ ├── kagent_agents_repositories │ ├── kcl_modules_repositories │ ├── keda_scalers_repositories │ ├── keptn_annotations │ ├── keptn_integrations_repositories │ ├── knative_client_plugins_repositories │ ├── krew_annotations │ ├── krew_kubectl_plugins_repositories │ ├── kubearmor_policies_repositories │ ├── kubewarden_annotations │ ├── kubewarden_policies_repositories │ ├── kyverno_annotations │ ├── kyverno_policies_repositories │ ├── meshery_designs_repositories │ ├── olm_annotations │ ├── olm_operators_repositories │ ├── opa_policies_repositories │ ├── opencost_plugins_repositories │ ├── radius_recipes_repositories │ ├── repositories │ ├── security_report │ ├── tekton_annotations │ ├── tekton_pipelines_repositories │ ├── tekton_stepactions_repositories │ ├── tekton_tasks_repositories │ └── tinkerbell_actions_repositories │ └── themes │ └── hugo-geekdoc │ ├── .jsbeautifyrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── archetypes │ ├── docs.md │ └── posts.md │ ├── assets │ └── js │ │ ├── search-data.js │ │ └── search.js │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html │ ├── partials │ │ ├── content.html │ │ ├── foot.html │ │ ├── head.html │ │ ├── menu-bundle.html │ │ ├── menu-filetree.html │ │ ├── menu.html │ │ ├── page-footer.html │ │ ├── page-header.html │ │ ├── search.html │ │ ├── site-footer.html │ │ ├── site-header.html │ │ ├── svg-icon-symbols.html │ │ └── title.html │ ├── posts │ │ ├── list.html │ │ └── single.html │ ├── shortcodes │ │ ├── button.html │ │ ├── columns.html │ │ ├── expand.html │ │ ├── hint.html │ │ ├── include.html │ │ ├── mermaid.html │ │ ├── tab.html │ │ ├── tabs.html │ │ ├── toc-tree.html │ │ └── toc.html │ └── taxonomy │ │ ├── list.html │ │ └── taxonomy.html │ ├── static │ ├── brand.svg │ ├── custom.css │ ├── fonts │ │ ├── GeekdocIcons.woff │ │ └── GeekdocIcons.woff2 │ ├── js │ │ ├── clipboard.min.js │ │ ├── flexsearch.min.js │ │ ├── mermaid.min.js │ │ └── mermaid.min.js.map │ ├── main.css │ └── main.min.css │ └── theme.yaml ├── go.mod ├── go.sum ├── internal ├── apikey │ ├── manager.go │ ├── manager_test.go │ └── mock.go ├── authz │ ├── authz.go │ ├── authz_test.go │ ├── mock.go │ └── policies.go ├── email │ ├── email.go │ ├── mock.go │ └── template │ │ └── base.tmpl ├── event │ ├── dispatcher.go │ ├── dispatcher_test.go │ ├── manager.go │ ├── manager_test.go │ ├── mock.go │ ├── worker.go │ └── worker_test.go ├── handlers │ ├── apikey │ │ ├── handlers.go │ │ └── handlers_test.go │ ├── handlers.go │ ├── handlers_test.go │ ├── helpers │ │ ├── helpers.go │ │ └── helpers_test.go │ ├── org │ │ ├── handlers.go │ │ └── handlers_test.go │ ├── pkg │ │ ├── handlers.go │ │ ├── handlers_test.go │ │ └── testdata │ │ │ ├── pkg1-1.0.0.tgz │ │ │ └── pkg2-1.0.0.tgz │ ├── repo │ │ ├── handlers.go │ │ └── handlers_test.go │ ├── static │ │ ├── handlers.go │ │ ├── handlers_test.go │ │ └── testdata │ │ │ ├── image.png │ │ │ ├── image.svg │ │ │ ├── index.html │ │ │ └── static │ │ │ └── test.css │ ├── stats │ │ ├── handlers.go │ │ └── handlers_test.go │ ├── subscription │ │ ├── handlers.go │ │ └── handlers_test.go │ ├── user │ │ ├── handlers.go │ │ └── handlers_test.go │ └── webhook │ │ ├── handlers.go │ │ └── handlers_test.go ├── httpw │ └── httpw.go ├── hub │ ├── apikey.go │ ├── authz.go │ ├── errors.go │ ├── event.go │ ├── external.go │ ├── index.go │ ├── notification.go │ ├── org.go │ ├── pkg.go │ ├── repo.go │ ├── stats.go │ ├── subscription.go │ ├── tracker.go │ ├── user.go │ └── webhook.go ├── img │ ├── img.go │ ├── img_test.go │ ├── mock.go │ ├── pg │ │ ├── pg.go │ │ ├── pg_test.go │ │ └── testdata │ │ │ ├── image.png │ │ │ └── image.svg │ └── testdata │ │ ├── invalid.png │ │ ├── valid.png │ │ ├── valid@1x.png │ │ ├── valid@2x.png │ │ ├── valid@3x.png │ │ └── valid@4x.png ├── license │ └── license.go ├── notification │ ├── dispatcher.go │ ├── dispatcher_test.go │ ├── manager.go │ ├── manager_test.go │ ├── mock.go │ ├── template │ │ ├── new_release_email.tmpl │ │ ├── ownership_claim_email.tmpl │ │ ├── scanning_errors_email.tmpl │ │ ├── security_alert_email.tmpl │ │ └── tracking_errors_email.tmpl │ ├── worker.go │ └── worker_test.go ├── oci │ ├── mock.go │ └── oci.go ├── org │ ├── manager.go │ ├── manager_test.go │ ├── mock.go │ └── template │ │ └── invitation_email.tmpl ├── pkg │ ├── manager.go │ ├── manager_test.go │ ├── metadata.go │ ├── metadata_test.go │ ├── mock.go │ ├── testdata │ │ ├── invalid.yml │ │ ├── no-version.yml │ │ ├── valid1.yml │ │ └── valid2.yaml │ ├── views.go │ └── views_test.go ├── repo │ ├── cloner.go │ ├── errors.go │ ├── errors_test.go │ ├── helm.go │ ├── manager.go │ ├── manager_test.go │ ├── mock.go │ ├── olm.go │ └── testdata │ │ ├── artifacthub-repo.yml │ │ ├── invalid-repo-id │ │ └── artifacthub-repo.yml │ │ ├── invalid │ │ └── artifacthub-repo.yml │ │ ├── test-yaml-repo.yaml │ │ ├── valid-yaml │ │ └── artifacthub-repo.yaml │ │ └── valid-yml │ │ └── artifacthub-repo.yml ├── scanner │ ├── mock.go │ ├── scanner.go │ └── scanner_test.go ├── stats │ ├── mock.go │ ├── stats.go │ └── stats_test.go ├── subscription │ ├── manager.go │ ├── manager_test.go │ └── mock.go ├── tests │ ├── db.go │ ├── error.go │ └── http.go ├── tracker │ ├── category.go │ ├── helpers.go │ ├── helpers_test.go │ ├── mock.go │ ├── source │ │ ├── container │ │ │ └── container.go │ │ ├── falco │ │ │ ├── falco.go │ │ │ ├── falco_test.go │ │ │ └── testdata │ │ │ │ ├── path1 │ │ │ │ └── .keep │ │ │ │ ├── path2 │ │ │ │ └── test.yaml │ │ │ │ ├── path3 │ │ │ │ └── test.yaml │ │ │ │ └── path4 │ │ │ │ └── test.yaml │ │ ├── generic │ │ │ ├── gatekeeper.go │ │ │ ├── generic.go │ │ │ ├── generic_test.go │ │ │ └── testdata │ │ │ │ ├── path1 │ │ │ │ └── .keep │ │ │ │ ├── path2 │ │ │ │ └── artifacthub-pkg.yml │ │ │ │ ├── path3 │ │ │ │ └── artifacthub-pkg.yml │ │ │ │ ├── path4 │ │ │ │ └── artifacthub-pkg.yml │ │ │ │ ├── path5 │ │ │ │ └── artifacthub-pkg.yml │ │ │ │ ├── path6 │ │ │ │ ├── artifacthub-pkg.yml │ │ │ │ └── policy1.rego │ │ │ │ ├── path7 │ │ │ │ ├── artifacthub-pkg.yml │ │ │ │ └── file1-rules.yaml │ │ │ │ ├── path8 │ │ │ │ ├── artifacthub-pkg.yml │ │ │ │ └── file1-rules.yaml │ │ │ │ ├── path9 │ │ │ │ ├── README.md │ │ │ │ ├── artifacthub-pkg.yml │ │ │ │ └── policy1.rego │ │ │ │ └── red-dot.png │ │ ├── helm │ │ │ ├── helm.go │ │ │ ├── helm_test.go │ │ │ └── testdata │ │ │ │ ├── artifact-hub-0.19.0.tgz │ │ │ │ └── pkg1-1.0.0.tgz │ │ ├── helmplugin │ │ │ ├── helmplugin.go │ │ │ ├── helmplugin_test.go │ │ │ └── testdata │ │ │ │ ├── path1 │ │ │ │ └── .keep │ │ │ │ ├── path2 │ │ │ │ └── plugin.yaml │ │ │ │ ├── path3 │ │ │ │ └── plugin.yaml │ │ │ │ └── path4 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── plugin.yaml │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── krew │ │ │ ├── krew.go │ │ │ ├── krew_test.go │ │ │ └── testdata │ │ │ │ ├── path1 │ │ │ │ └── plugins │ │ │ │ │ └── .keep │ │ │ │ ├── path2 │ │ │ │ └── plugins │ │ │ │ │ └── manifest.yaml │ │ │ │ ├── path3 │ │ │ │ └── plugins │ │ │ │ │ └── manifest.yaml │ │ │ │ └── path4 │ │ │ │ └── plugins │ │ │ │ └── manifest.yaml │ │ ├── mock.go │ │ ├── olm │ │ │ ├── olm.go │ │ │ ├── olm_test.go │ │ │ └── testdata │ │ │ │ ├── path1 │ │ │ │ └── .keep │ │ │ │ ├── path2 │ │ │ │ └── test-operator │ │ │ │ │ ├── 0.1.0 │ │ │ │ │ └── test-operator.v0.1.0.clusterserviceversion-invalid.yaml │ │ │ │ │ └── test-operator.package.yaml │ │ │ │ ├── path3 │ │ │ │ └── test-operator │ │ │ │ │ ├── 0.1.0 │ │ │ │ │ └── test-operator.v0.1.0.clusterserviceversion.yaml │ │ │ │ │ └── test-operator.package.yaml │ │ │ │ ├── path4 │ │ │ │ └── test-operator │ │ │ │ │ ├── 0.1.0 │ │ │ │ │ └── test-operator.v0.1.0.clusterserviceversion.yaml │ │ │ │ │ └── test-operator.package.yaml │ │ │ │ ├── path5 │ │ │ │ └── test-operator │ │ │ │ │ ├── 0.1.0 │ │ │ │ │ ├── manifests │ │ │ │ │ │ └── test-operator.v0.1.0.clusterserviceversion.yaml │ │ │ │ │ └── metadata │ │ │ │ │ │ └── annotations.yaml │ │ │ │ │ └── 0.2.0 │ │ │ │ │ ├── manifests │ │ │ │ │ └── test-operator.v0.2.0.clusterserviceversion.yaml │ │ │ │ │ └── metadata │ │ │ │ │ └── annotations.yaml │ │ │ │ └── red-dot.png │ │ ├── tekton │ │ │ ├── tekton.go │ │ │ ├── tekton_test.go │ │ │ └── testdata │ │ │ │ ├── path1 │ │ │ │ └── .keep │ │ │ │ ├── path2 │ │ │ │ └── task1 │ │ │ │ │ └── 0.1 │ │ │ │ │ └── task1.yaml │ │ │ │ ├── path3 │ │ │ │ └── task1 │ │ │ │ │ └── 0.1 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── samples │ │ │ │ │ └── sample1.yaml │ │ │ │ │ └── task1.yaml │ │ │ │ ├── path4 │ │ │ │ └── pipeline1 │ │ │ │ │ └── 0.1 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── pipeline1.yaml │ │ │ │ │ └── samples │ │ │ │ │ └── sample1.yaml │ │ │ │ └── path5 │ │ │ │ └── stepaction1 │ │ │ │ └── 0.1 │ │ │ │ ├── README.md │ │ │ │ ├── samples │ │ │ │ └── sample1.yaml │ │ │ │ └── stepaction1.yaml │ │ └── tests.go │ ├── tracker.go │ └── tracker_test.go ├── user │ ├── manager.go │ ├── manager_test.go │ ├── mock.go │ └── template │ │ ├── confirm_user_deletion_email.tmpl │ │ ├── password_reset_email.tmpl │ │ ├── password_reset_success_email.tmpl │ │ ├── tfa_disabled_email.tmpl │ │ ├── tfa_enabled_email.tmpl │ │ ├── user_deleted_email.tmpl │ │ └── verification_email.tmpl ├── util │ ├── config.go │ ├── config_test.go │ ├── db.go │ ├── file.go │ ├── http.go │ ├── image.go │ ├── image_test.go │ ├── logger.go │ └── logger_test.go └── webhook │ ├── manager.go │ ├── manager_test.go │ └── mock.go ├── ml └── category │ ├── category.py │ ├── data │ └── csv │ │ ├── test.csv │ │ └── train.csv │ ├── model │ ├── keras_metadata.pb │ ├── saved_model.pb │ └── variables │ │ ├── variables.data-00000-of-00001 │ │ └── variables.index │ └── scripts │ └── classifier │ └── main.go ├── public ├── categories │ └── index.xml ├── index.xml ├── sitemap.xml └── tags │ └── index.xml ├── scripts ├── docker-build.sh └── prepare-docs.sh ├── web ├── .eslintrc ├── .prettierrc ├── decs.d.ts ├── eslint.config.js ├── index.html ├── jest.setup.js ├── package.json ├── public │ ├── maintenance.html │ ├── manifest.json │ └── static │ │ ├── js │ │ ├── docsRedirection.js │ │ ├── fixFirefoxNightMode.js │ │ └── theme.js │ │ └── media │ │ ├── argo-light.svg │ │ ├── argo.svg │ │ ├── argo_icon.png │ │ ├── arrow-repeat.svg │ │ ├── artifactHub.png │ │ ├── artifactHub_v2.png │ │ ├── backstage-light.svg │ │ ├── backstage.svg │ │ ├── backstage_icon.png │ │ ├── bootc-light.svg │ │ ├── bootc.svg │ │ ├── bootc_icon.png │ │ ├── bootstrap │ │ ├── bt_check.svg │ │ ├── bt_dot.svg │ │ ├── bt_input_error.svg │ │ ├── bt_input_success.svg │ │ ├── bt_select.svg │ │ └── bt_select_dark.svg │ │ ├── capability-level-diagram.svg │ │ ├── capability-level-diagram_v2.svg │ │ ├── capability-level-diagram_v3.svg │ │ ├── cncf-icon.svg │ │ ├── cncf-incubating-color.svg │ │ ├── cncf-incubating-white.svg │ │ ├── cncf.svg │ │ ├── container-light.svg │ │ ├── container.svg │ │ ├── container_icon.png │ │ ├── coredns-plugin-light.svg │ │ ├── coredns-plugin.svg │ │ ├── coredns.svg │ │ ├── coredns_icon.png │ │ ├── falco-rules-light.svg │ │ ├── falco-rules.svg │ │ ├── falco.svg │ │ ├── falco_icon.png │ │ ├── gatekeeper-light.svg │ │ ├── gatekeeper.svg │ │ ├── gatekeeper_icon.png │ │ ├── github-mark.svg │ │ ├── google.svg │ │ ├── headlamp-light.svg │ │ ├── headlamp.svg │ │ ├── headlamp_icon.png │ │ ├── helm-chart-light.svg │ │ ├── helm-chart.svg │ │ ├── helm-plugin_icon.png │ │ ├── helm.svg │ │ ├── helm_icon.png │ │ ├── inspektor-gadget-light.svg │ │ ├── inspektor-gadget.svg │ │ ├── inspektor-gadget_icon.png │ │ ├── kagent-light.svg │ │ ├── kagent.svg │ │ ├── kagent_icon.png │ │ ├── kcl-light.svg │ │ ├── kcl.svg │ │ ├── kcl_icon.png │ │ ├── keda-scaler-light.svg │ │ ├── keda-scaler.svg │ │ ├── keda-scaler_icon.png │ │ ├── keptn-integrations-light.svg │ │ ├── keptn-integrations.svg │ │ ├── keptn_icon.png │ │ ├── knative-light.svg │ │ ├── knative.svg │ │ ├── knative_icon.png │ │ ├── krew-plugins-light.svg │ │ ├── krew-plugins.svg │ │ ├── krew_icon.png │ │ ├── kubearmor-light.svg │ │ ├── kubearmor.svg │ │ ├── kubearmor_icon.png │ │ ├── kubernetes.svg │ │ ├── kubewarden-light.svg │ │ ├── kubewarden.svg │ │ ├── kubewarden_icon.png │ │ ├── kyverno-light.svg │ │ ├── kyverno.svg │ │ ├── kyverno_icon.png │ │ ├── logo.png │ │ ├── logo │ │ ├── artifacthub-brand-white.svg │ │ ├── artifacthub-horizontal-color.svg │ │ ├── artifacthub-icon-color.svg │ │ └── artifacthub-stacked-color.svg │ │ ├── logo192.png │ │ ├── logo192_v2.png │ │ ├── logo512.png │ │ ├── logo512_v2.png │ │ ├── logo_v2.png │ │ ├── meshery-light.svg │ │ ├── meshery.svg │ │ ├── meshery_icon.png │ │ ├── olm-operators-light.svg │ │ ├── olm-operators.svg │ │ ├── olm.svg │ │ ├── olm_icon.png │ │ ├── opa-policies-light.svg │ │ ├── opa-policies.svg │ │ ├── opa.svg │ │ ├── opa_icon.png │ │ ├── opencost-light.svg │ │ ├── opencost.svg │ │ ├── opencost_icon.png │ │ ├── openid.svg │ │ ├── package_placeholder.svg │ │ ├── pattern-transparent.png │ │ ├── placeholder_pkg_argo.png │ │ ├── placeholder_pkg_backstage.png │ │ ├── placeholder_pkg_bootc.png │ │ ├── placeholder_pkg_container.png │ │ ├── placeholder_pkg_coredns.png │ │ ├── placeholder_pkg_falco.png │ │ ├── placeholder_pkg_gatekeeper.png │ │ ├── placeholder_pkg_headlamp.png │ │ ├── placeholder_pkg_helm-plugin.png │ │ ├── placeholder_pkg_helm.png │ │ ├── placeholder_pkg_inspektor-gadget.png │ │ ├── placeholder_pkg_kagent.png │ │ ├── placeholder_pkg_kcl.png │ │ ├── placeholder_pkg_keda-scaler.png │ │ ├── placeholder_pkg_keptn.png │ │ ├── placeholder_pkg_knative.png │ │ ├── placeholder_pkg_krew.png │ │ ├── placeholder_pkg_kubearmor.png │ │ ├── placeholder_pkg_kubewarden.png │ │ ├── placeholder_pkg_kyverno.png │ │ ├── placeholder_pkg_meshery.png │ │ ├── placeholder_pkg_olm.png │ │ ├── placeholder_pkg_opa.png │ │ ├── placeholder_pkg_opencost.png │ │ ├── placeholder_pkg_radius.png │ │ ├── placeholder_pkg_tbaction.png │ │ ├── placeholder_pkg_tekton-task.png │ │ ├── radius-light.svg │ │ ├── radius.svg │ │ ├── radius_icon.png │ │ ├── registries │ │ ├── amazon.svg │ │ ├── azure.svg │ │ ├── bundlebar.svg │ │ ├── docker.svg │ │ ├── github.svg │ │ ├── gitlab.svg │ │ ├── google.svg │ │ ├── quay.svg │ │ └── unknown.svg │ │ ├── tbaction_icon.png │ │ ├── tekton-pipeline_icon.png │ │ ├── tekton-pkg-light.svg │ │ ├── tekton-pkg.svg │ │ ├── tekton-task_icon.png │ │ ├── tekton.svg │ │ ├── tinkerbell-actions-light.svg │ │ └── tinkerbell-actions.svg ├── src │ ├── analytics │ │ └── analytics.ts │ ├── api │ │ ├── __fixtures__ │ │ │ └── index │ │ │ │ ├── 1.json │ │ │ │ ├── 10.json │ │ │ │ ├── 11.json │ │ │ │ ├── 12.json │ │ │ │ ├── 13.json │ │ │ │ ├── 14a.json │ │ │ │ ├── 14b.json │ │ │ │ ├── 14c.json │ │ │ │ ├── 14d.json │ │ │ │ ├── 15.json │ │ │ │ ├── 16.json │ │ │ │ ├── 17.json │ │ │ │ ├── 18.json │ │ │ │ ├── 19.json │ │ │ │ ├── 2.json │ │ │ │ ├── 20.json │ │ │ │ ├── 21.json │ │ │ │ ├── 22.json │ │ │ │ ├── 23.json │ │ │ │ ├── 24.json │ │ │ │ ├── 25.json │ │ │ │ ├── 26.json │ │ │ │ ├── 27.json │ │ │ │ ├── 28.json │ │ │ │ ├── 29.json │ │ │ │ ├── 3.json │ │ │ │ ├── 30.json │ │ │ │ ├── 31.json │ │ │ │ ├── 32.json │ │ │ │ ├── 33.json │ │ │ │ ├── 34.json │ │ │ │ ├── 35.json │ │ │ │ ├── 36.json │ │ │ │ ├── 36_old.json │ │ │ │ ├── 37.json │ │ │ │ ├── 38.json │ │ │ │ ├── 39.json │ │ │ │ ├── 4.json │ │ │ │ ├── 40.json │ │ │ │ ├── 41.json │ │ │ │ ├── 42.json │ │ │ │ ├── 43.json │ │ │ │ ├── 44.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 8.json │ │ │ │ └── 9.json │ │ ├── __mocks__ │ │ │ └── index.ts │ │ ├── index.test.tsx │ │ └── index.ts │ ├── context │ │ └── AppCtx.tsx │ ├── hooks │ │ ├── useBodyScroll.ts │ │ ├── useBreakpointDetect.ts │ │ ├── useIsMounted.ts │ │ ├── useOnLocationChange.tsx │ │ ├── useOutsideClick.ts │ │ ├── useOverflowWrapper.ts │ │ ├── useScrollRestorationFix.ts │ │ └── useSystemThemeMode.ts │ ├── index.tsx │ ├── jsonschema.ts │ ├── jsx.d.ts │ ├── layout │ │ ├── App.css │ │ ├── App.tsx │ │ ├── common │ │ │ ├── Alert.module.css │ │ │ ├── Alert.test.tsx │ │ │ ├── Alert.tsx │ │ │ ├── AlertController.module.css │ │ │ ├── AlertController.test.tsx │ │ │ ├── AlertController.tsx │ │ │ ├── AnchorHeader.module.css │ │ │ ├── AnchorHeader.test.tsx │ │ │ ├── AnchorHeader.tsx │ │ │ ├── AttachedIconToText.test.tsx │ │ │ ├── AttachedIconToText.tsx │ │ │ ├── AutoresizeTextarea.module.css │ │ │ ├── AutoresizeTextarea.test.tsx │ │ │ ├── AutoresizeTextarea.tsx │ │ │ ├── BlockCodeButtons.module.css │ │ │ ├── BlockCodeButtons.test.tsx │ │ │ ├── BlockCodeButtons.tsx │ │ │ ├── ButtonCopyToClipboard.module.css │ │ │ ├── ButtonCopyToClipboard.test.tsx │ │ │ ├── ButtonCopyToClipboard.tsx │ │ │ ├── Checkbox.module.css │ │ │ ├── Checkbox.test.tsx │ │ │ ├── Checkbox.tsx │ │ │ ├── CodeEditor.module.css │ │ │ ├── CodeEditor.tsx │ │ │ ├── ContentDefaultModal.module.css │ │ │ ├── ContentDefaultModal.test.tsx │ │ │ ├── ContentDefaultModal.tsx │ │ │ ├── ElementWithTooltip.module.css │ │ │ ├── ElementWithTooltip.test.tsx │ │ │ ├── ElementWithTooltip.tsx │ │ │ ├── ErrorBoundary.test.tsx │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── ExpandableList.test.tsx │ │ │ ├── ExpandableList.tsx │ │ │ ├── ExternalLink.module.css │ │ │ ├── ExternalLink.test.tsx │ │ │ ├── ExternalLink.tsx │ │ │ ├── FullScreenModal.module.css │ │ │ ├── FullScreenModal.test.tsx │ │ │ ├── FullScreenModal.tsx │ │ │ ├── HoverableItem.test.tsx │ │ │ ├── HoverableItem.tsx │ │ │ ├── Image.test.tsx │ │ │ ├── Image.tsx │ │ │ ├── InputField.module.css │ │ │ ├── InputField.test.tsx │ │ │ ├── InputField.tsx │ │ │ ├── InputFileField.module.css │ │ │ ├── InputFileField.test.tsx │ │ │ ├── InputFileField.tsx │ │ │ ├── InputTypeahead.module.css │ │ │ ├── InputTypeahead.test.tsx │ │ │ ├── InputTypeahead.tsx │ │ │ ├── InputTypeaheadOptionItem.test.tsx │ │ │ ├── InputTypeaheadOptionItem.tsx │ │ │ ├── Label.module.css │ │ │ ├── Label.test.tsx │ │ │ ├── Label.tsx │ │ │ ├── Loading.module.css │ │ │ ├── Loading.test.tsx │ │ │ ├── Loading.tsx │ │ │ ├── Modal.module.css │ │ │ ├── Modal.test.tsx │ │ │ ├── Modal.tsx │ │ │ ├── NoData.module.css │ │ │ ├── NoData.test.tsx │ │ │ ├── NoData.tsx │ │ │ ├── OrganizationInfo.module.css │ │ │ ├── OrganizationInfo.test.tsx │ │ │ ├── OrganizationInfo.tsx │ │ │ ├── PackageCard.module.css │ │ │ ├── PackageCard.test.tsx │ │ │ ├── PackageCard.tsx │ │ │ ├── PackageCategoryLabel.module.css │ │ │ ├── PackageCategoryLabel.tsx │ │ │ ├── Pagination.module.css │ │ │ ├── Pagination.test.tsx │ │ │ ├── Pagination.tsx │ │ │ ├── PaginationSummary.test.tsx │ │ │ ├── PaginationSummary.tsx │ │ │ ├── RSSLinkTitle.test.tsx │ │ │ ├── RSSLinkTitle.tsx │ │ │ ├── RepositoryIcon.test.tsx │ │ │ ├── RepositoryIcon.tsx │ │ │ ├── RepositoryIconLabel.module.css │ │ │ ├── RepositoryIconLabel.test.tsx │ │ │ ├── RepositoryIconLabel.tsx │ │ │ ├── RepositoryInfo.module.css │ │ │ ├── RepositoryInfo.test.tsx │ │ │ ├── RepositoryInfo.tsx │ │ │ ├── SampleQueries.module.css │ │ │ ├── SampleQueries.test.tsx │ │ │ ├── SampleQueries.tsx │ │ │ ├── SearchBar.module.css │ │ │ ├── SearchBar.test.tsx │ │ │ ├── SearchBar.tsx │ │ │ ├── SearchPackages.module.css │ │ │ ├── SearchPackages.test.tsx │ │ │ ├── SearchPackages.tsx │ │ │ ├── SearchRepositories.module.css │ │ │ ├── SearchRepositories.test.tsx │ │ │ ├── SearchRepositories.tsx │ │ │ ├── SearchTipsModal.module.css │ │ │ ├── SearchTipsModal.test.tsx │ │ │ ├── SearchTipsModal.tsx │ │ │ ├── SectionPanel.module.css │ │ │ ├── SectionPanel.test.tsx │ │ │ ├── SectionPanel.tsx │ │ │ ├── SecurityRating.module.css │ │ │ ├── SecurityRating.test.tsx │ │ │ ├── SecurityRating.tsx │ │ │ ├── SeeAllModal.module.css │ │ │ ├── SeeAllModal.test.tsx │ │ │ ├── SeeAllModal.tsx │ │ │ ├── Sidebar.module.css │ │ │ ├── Sidebar.test.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SmallTite.test.tsx │ │ │ ├── SmallTitle.tsx │ │ │ ├── StarBadge.module.css │ │ │ ├── StarBadge.test.tsx │ │ │ ├── StarBadge.tsx │ │ │ ├── Tabs.module.css │ │ │ ├── Tabs.test.tsx │ │ │ ├── Tabs.tsx │ │ │ ├── ValuesSearch.module.css │ │ │ ├── ValuesSearch.test.tsx │ │ │ ├── ValuesSearch.tsx │ │ │ ├── __fixtures__ │ │ │ │ ├── OrganizationInfo │ │ │ │ │ └── 1.json │ │ │ │ ├── PackageCard │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── PackageInfo │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── SearchBar │ │ │ │ │ ├── 1.json │ │ │ │ │ └── 2.json │ │ │ │ ├── SearchPackages │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ └── 3.json │ │ │ │ └── SearchRepositories │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ └── 4.json │ │ │ ├── __snapshots__ │ │ │ │ ├── Alert.test.tsx.snap │ │ │ │ ├── AlertController.test.tsx.snap │ │ │ │ ├── AnchorHeader.test.tsx.snap │ │ │ │ ├── AttachedIconToText.test.tsx.snap │ │ │ │ ├── AutoresizeTextarea.test.tsx.snap │ │ │ │ ├── BlockCodeButtons.test.tsx.snap │ │ │ │ ├── ButtonCopyToClipboard.test.tsx.snap │ │ │ │ ├── Checkbox.test.tsx.snap │ │ │ │ ├── ContentDefaultModal.test.tsx.snap │ │ │ │ ├── ElementWithTooltip.test.tsx.snap │ │ │ │ ├── ErrorBoundary.test.tsx.snap │ │ │ │ ├── ExpandableList.test.tsx.snap │ │ │ │ ├── ExternalLink.test.tsx.snap │ │ │ │ ├── FullScreenModal.test.tsx.snap │ │ │ │ ├── HoverableItem.test.tsx.snap │ │ │ │ ├── Image.test.tsx.snap │ │ │ │ ├── InputField.test.tsx.snap │ │ │ │ ├── InputFileField.test.tsx.snap │ │ │ │ ├── InputTypeahead.test.tsx.snap │ │ │ │ ├── InputTypeaheadOptionItem.test.tsx.snap │ │ │ │ ├── Label.test.tsx.snap │ │ │ │ ├── Loading.test.tsx.snap │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ ├── NoData.test.tsx.snap │ │ │ │ ├── OrganizationInfo.test.tsx.snap │ │ │ │ ├── PackageCard.test.tsx.snap │ │ │ │ ├── Pagination.test.tsx.snap │ │ │ │ ├── RSSLinkTitle.test.tsx.snap │ │ │ │ ├── RepositoryIcon.test.tsx.snap │ │ │ │ ├── RepositoryIconLabel.test.tsx.snap │ │ │ │ ├── RepositoryInfo.test.tsx.snap │ │ │ │ ├── SampleQueries.test.tsx.snap │ │ │ │ ├── SearchBar.test.tsx.snap │ │ │ │ ├── SearchPackages.test.tsx.snap │ │ │ │ ├── SearchRepositories.test.tsx.snap │ │ │ │ ├── SearchTipsModal.test.tsx.snap │ │ │ │ ├── SectionPanel.test.tsx.snap │ │ │ │ ├── SecurityRating.test.tsx.snap │ │ │ │ ├── SeeAllModal.test.tsx.snap │ │ │ │ ├── Sidebar.test.tsx.snap │ │ │ │ ├── SmallTite.test.tsx.snap │ │ │ │ ├── StarBadge.test.tsx.snap │ │ │ │ ├── Tabs.test.tsx.snap │ │ │ │ └── ValuesSearch.test.tsx.snap │ │ │ ├── badges │ │ │ │ ├── Badge.module.css │ │ │ │ ├── Badge.tsx │ │ │ │ ├── CNCF.tsx │ │ │ │ ├── Deprecated.tsx │ │ │ │ ├── Official.tsx │ │ │ │ ├── RepositoryDisabled.tsx │ │ │ │ ├── SecurityScannerDisabled.tsx │ │ │ │ ├── Signed.tsx │ │ │ │ ├── ValuesSchema.tsx │ │ │ │ └── VerifiedPublisher.tsx │ │ │ └── userNotifications │ │ │ │ ├── UserNotifications.module.css │ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ ├── controlPanel │ │ │ ├── ActionBtn.module.css │ │ │ ├── ActionBtn.test.tsx │ │ │ ├── ActionBtn.tsx │ │ │ ├── ControlPanelView.module.css │ │ │ ├── UserContext.module.css │ │ │ ├── UserContext.test.tsx │ │ │ ├── UserContext.tsx │ │ │ ├── __fixtures__ │ │ │ │ └── UserContext │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ └── 6.json │ │ │ ├── __snapshots__ │ │ │ │ ├── ActionBtn.test.tsx.snap │ │ │ │ ├── UserContext.test.tsx.snap │ │ │ │ └── index.test.tsx.snap │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ ├── members │ │ │ │ ├── Card.module.css │ │ │ │ ├── Card.test.tsx │ │ │ │ ├── Card.tsx │ │ │ │ ├── MembersSection.module.css │ │ │ │ ├── Modal.module.css │ │ │ │ ├── Modal.test.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ ├── UserInvitation.module.css │ │ │ │ ├── UserInvitation.test.tsx │ │ │ │ ├── UserInvitation.tsx │ │ │ │ ├── __fixtures__ │ │ │ │ │ └── index │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ └── 8.json │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Card.test.tsx.snap │ │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ │ ├── UserInvitation.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ ├── organizations │ │ │ │ ├── Card.module.css │ │ │ │ ├── Card.test.tsx │ │ │ │ ├── Card.tsx │ │ │ │ ├── Form.module.css │ │ │ │ ├── Form.test.tsx │ │ │ │ ├── Form.tsx │ │ │ │ ├── Modal.module.css │ │ │ │ ├── Modal.test.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ ├── OrganizationsSection.module.css │ │ │ │ ├── __fixtures__ │ │ │ │ │ └── index │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ └── 7.json │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Card.test.tsx.snap │ │ │ │ │ ├── Form.test.tsx.snap │ │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ ├── repositories │ │ │ │ ├── BadgeModal.module.css │ │ │ │ ├── BadgeModal.test.tsx │ │ │ │ ├── BadgeModal.tsx │ │ │ │ ├── Card.module.css │ │ │ │ ├── Card.test.tsx │ │ │ │ ├── Card.tsx │ │ │ │ ├── ClaimOwnershipModal.module.css │ │ │ │ ├── ClaimOwnershipModal.test.tsx │ │ │ │ ├── ClaimOwnershipModal.tsx │ │ │ │ ├── DeletionModal.module.css │ │ │ │ ├── DeletionModal.test.tsx │ │ │ │ ├── DeletionModal.tsx │ │ │ │ ├── Modal.module.css │ │ │ │ ├── Modal.test.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ ├── Repository.module.css │ │ │ │ ├── RepositoryWarningModal.module.css │ │ │ │ ├── RepositoryWarningModal.test.tsx │ │ │ │ ├── RepositoryWarningModal.tsx │ │ │ │ ├── TagsList.module.css │ │ │ │ ├── TagsList.test.tsx │ │ │ │ ├── TagsList.tsx │ │ │ │ ├── TransferModal.module.css │ │ │ │ ├── TransferModal.test.tsx │ │ │ │ ├── TransferModal.tsx │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── ClaimOwnershipModal │ │ │ │ │ │ ├── 1org.json │ │ │ │ │ │ ├── 1repo.json │ │ │ │ │ │ └── 2repo.json │ │ │ │ │ ├── TransferModal │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ └── 9.json │ │ │ │ │ └── index │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ └── 8.json │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── BadgeModal.test.tsx.snap │ │ │ │ │ ├── Card.test.tsx.snap │ │ │ │ │ ├── ClaimOwnershipModal.test.tsx.snap │ │ │ │ │ ├── DeletionModal.test.tsx.snap │ │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ │ ├── RepositoryWarningModal.test.tsx.snap │ │ │ │ │ ├── TagsList.test.tsx.snap │ │ │ │ │ ├── TransferModal.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ └── settings │ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── orgSettings │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── authorization │ │ │ │ │ ├── AuthorizationSection.module.css │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ │ ├── 10.json │ │ │ │ │ │ │ ├── 11.json │ │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ │ └── 9.json │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── profile │ │ │ │ │ ├── DeleteOrg.module.css │ │ │ │ │ ├── DeleteOrg.test.tsx │ │ │ │ │ ├── DeleteOrg.tsx │ │ │ │ │ ├── ProfileSection.module.css │ │ │ │ │ ├── UpdateOrg.test.tsx │ │ │ │ │ ├── UpdateOrg.tsx │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── UpdateOrg │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ └── 2.json │ │ │ │ │ └── index │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ └── 2.json │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── DeleteOrg.test.tsx.snap │ │ │ │ │ ├── UpdateOrg.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── userSettings │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── apiKeys │ │ │ │ │ ├── APIKeysSection.module.css │ │ │ │ │ ├── Card.module.css │ │ │ │ │ ├── Card.test.tsx │ │ │ │ │ ├── Card.tsx │ │ │ │ │ ├── Modal.module.css │ │ │ │ │ ├── Modal.test.tsx │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ │ └── 7.json │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── Card.test.tsx.snap │ │ │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.test.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── profile │ │ │ │ │ ├── DeleteAccount.module.css │ │ │ │ │ ├── DeleteAccount.test.tsx │ │ │ │ │ ├── DeleteAccount.tsx │ │ │ │ │ ├── ProfileSection.module.css │ │ │ │ │ ├── UpdatePassword.test.tsx │ │ │ │ │ ├── UpdatePassword.tsx │ │ │ │ │ ├── UpdateProfile.test.tsx │ │ │ │ │ ├── UpdateProfile.tsx │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ │ └── 3.json │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── DeleteAccount.test.tsx.snap │ │ │ │ │ │ ├── UpdatePassword.test.tsx.snap │ │ │ │ │ │ ├── UpdateProfile.test.tsx.snap │ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── twoFactorAuth │ │ │ │ │ │ ├── DisableModal.module.css │ │ │ │ │ │ ├── DisableModal.test.tsx │ │ │ │ │ │ ├── DisableModal.tsx │ │ │ │ │ │ ├── EnableModal.module.css │ │ │ │ │ │ ├── EnableModal.test.tsx │ │ │ │ │ │ ├── EnableModal.tsx │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── DisableModal.test.tsx.snap │ │ │ │ │ │ └── EnableModal.test.tsx.snap │ │ │ │ │ │ └── index.tsx │ │ │ │ └── subscriptions │ │ │ │ │ ├── SubscriptionsSection.module.css │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── packages │ │ │ │ │ ├── Modal.module.css │ │ │ │ │ ├── Modal.test.tsx │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ ├── PackageCard.module.css │ │ │ │ │ ├── PackageCard.test.tsx │ │ │ │ │ ├── PackageCard.tsx │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ ├── Modal │ │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ │ ├── 3s.json │ │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ │ ├── 4s.json │ │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ │ ├── 5s.json │ │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ │ ├── 6s.json │ │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ │ ├── 7s.json │ │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ │ └── 8s.json │ │ │ │ │ │ ├── PackageCard │ │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ │ ├── 10.json │ │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ │ └── 9.json │ │ │ │ │ │ └── index │ │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ │ ├── 10.json │ │ │ │ │ │ │ ├── 11.json │ │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ │ └── 9.json │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ │ │ ├── PackageCard.test.tsx.snap │ │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ └── repositories │ │ │ │ │ ├── Modal.module.css │ │ │ │ │ ├── Modal.test.tsx │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ ├── SubscriptionSwitch.test.tsx │ │ │ │ │ ├── SubscriptionSwitch.tsx │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── Modal │ │ │ │ │ │ ├── orgs.json │ │ │ │ │ │ └── repos.json │ │ │ │ │ └── index │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 10.json │ │ │ │ │ │ ├── 11.json │ │ │ │ │ │ ├── 12.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ └── 9.json │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ │ ├── SubscriptionSwitch.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── webhooks │ │ │ │ ├── Card.module.css │ │ │ │ ├── Card.test.tsx │ │ │ │ ├── Card.tsx │ │ │ │ ├── Form.module.css │ │ │ │ ├── Form.test.tsx │ │ │ │ ├── Form.tsx │ │ │ │ ├── LastNotificationsModal.module.css │ │ │ │ ├── LastNotificationsModal.test.tsx │ │ │ │ ├── LastNotificationsModal.tsx │ │ │ │ ├── WebhooksSection.module.css │ │ │ │ ├── __fixtures__ │ │ │ │ ├── Card │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── Form │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12.json │ │ │ │ │ ├── 13.json │ │ │ │ │ ├── 14.json │ │ │ │ │ ├── 1s.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── LastNotificationsModal │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ └── 6.json │ │ │ │ └── index │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ └── 6.json │ │ │ │ ├── __snapshots__ │ │ │ │ ├── Card.test.tsx.snap │ │ │ │ ├── Form.test.tsx.snap │ │ │ │ ├── LastNotificationsModal.test.tsx.snap │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ ├── home │ │ │ ├── AccountDeletion.module.css │ │ │ ├── AccountDeletion.test.tsx │ │ │ ├── AccountDeletion.tsx │ │ │ ├── Counter.module.css │ │ │ ├── Counter.test.tsx │ │ │ ├── Counter.tsx │ │ │ ├── HomeView.module.css │ │ │ ├── RandomPackages.module.css │ │ │ ├── RandomPackages.test.tsx │ │ │ ├── RandomPackages.tsx │ │ │ ├── ResetPasswordModal.module.css │ │ │ ├── ResetPasswordModal.test.tsx │ │ │ ├── ResetPasswordModal.tsx │ │ │ ├── SearchTip.module.css │ │ │ ├── SearchTip.test.tsx │ │ │ ├── SearchTip.tsx │ │ │ ├── UserConfirmation.module.css │ │ │ ├── UserConfirmation.test.tsx │ │ │ ├── UserConfirmation.tsx │ │ │ ├── __fixtures__ │ │ │ │ ├── PackageCard │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── RandomPackages │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ └── 3.json │ │ │ │ └── index │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ └── 6.json │ │ │ ├── __snapshots__ │ │ │ │ ├── AccountDeletion.test.tsx.snap │ │ │ │ ├── Counter.test.tsx.snap │ │ │ │ ├── RandomPackages.test.tsx.snap │ │ │ │ ├── ResetPasswordModal.test.tsx.snap │ │ │ │ ├── SearchTip.test.tsx.snap │ │ │ │ ├── UserConfirmation.test.tsx.snap │ │ │ │ └── index.test.tsx.snap │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── navigation │ │ │ ├── BannerMOTD.module.css │ │ │ ├── BannerMOTD.test.tsx │ │ │ ├── BannerMOTD.tsx │ │ │ ├── CreateAnAccount.test.tsx │ │ │ ├── CreateAnAccount.tsx │ │ │ ├── Footer.module.css │ │ │ ├── Footer.test.tsx │ │ │ ├── Footer.tsx │ │ │ ├── GuestDropdown.module.css │ │ │ ├── GuestDropdown.test.tsx │ │ │ ├── GuestDropdown.tsx │ │ │ ├── LogIn.module.css │ │ │ ├── LogIn.test.tsx │ │ │ ├── LogIn.tsx │ │ │ ├── LogOut.test.tsx │ │ │ ├── LogOut.tsx │ │ │ ├── MobileSettings.module.css │ │ │ ├── MobileSettings.test.tsx │ │ │ ├── MobileSettings.tsx │ │ │ ├── Navbar.module.css │ │ │ ├── Navbar.test.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── OAuth.module.css │ │ │ ├── OAuth.test.tsx │ │ │ ├── OAuth.tsx │ │ │ ├── ResetPassword.test.tsx │ │ │ ├── ResetPassword.tsx │ │ │ ├── SignUp.module.css │ │ │ ├── SignUp.test.tsx │ │ │ ├── SignUp.tsx │ │ │ ├── SubNavbar.module.css │ │ │ ├── SubNavbar.test.tsx │ │ │ ├── SubNavbar.tsx │ │ │ ├── ThemeMode.module.css │ │ │ ├── ThemeMode.test.tsx │ │ │ ├── ThemeMode.tsx │ │ │ ├── UserAuthDropdown.module.css │ │ │ ├── UserAuthDropdown.test.tsx │ │ │ ├── UserAuthDropdown.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── BannerMOTD.test.tsx.snap │ │ │ │ ├── CreateAnAccount.test.tsx.snap │ │ │ │ ├── Footer.test.tsx.snap │ │ │ │ ├── GuestDropdown.test.tsx.snap │ │ │ │ ├── LogIn.test.tsx.snap │ │ │ │ ├── LogOut.test.tsx.snap │ │ │ │ ├── MobileSettings.test.tsx.snap │ │ │ │ ├── Navbar.test.tsx.snap │ │ │ │ ├── OAuth.test.tsx.snap │ │ │ │ ├── ResetPassword.test.tsx.snap │ │ │ │ ├── SignUp.test.tsx.snap │ │ │ │ ├── SubNavbar.test.tsx.snap │ │ │ │ ├── ThemeMode.test.tsx.snap │ │ │ │ └── UserAuthDropdown.test.tsx.snap │ │ ├── notFound │ │ │ ├── NotFound.module.css │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ ├── package │ │ │ ├── Banner.module.css │ │ │ ├── Banner.tsx │ │ │ ├── BigRelatedPackageCard.module.css │ │ │ ├── BigRelatedPackageCard.tsx │ │ │ ├── CapabilityLevel.module.css │ │ │ ├── CapabilityLevel.test.tsx │ │ │ ├── CapabilityLevel.tsx │ │ │ ├── CapabilityLevelInfoModal.module.css │ │ │ ├── CapabilityLevelInfoModal.test.tsx │ │ │ ├── CapabilityLevelInfoModal.tsx │ │ │ ├── ContainerAlternativeLocations.test.tsx │ │ │ ├── ContainerAlternativeLocations.tsx │ │ │ ├── ContainerRegistry.module.css │ │ │ ├── ContainerRegistry.test.tsx │ │ │ ├── ContainerRegistry.tsx │ │ │ ├── ContainersImages.module.css │ │ │ ├── ContainersImages.test.tsx │ │ │ ├── ContainersImages.tsx │ │ │ ├── Dependencies.module.css │ │ │ ├── Dependencies.test.tsx │ │ │ ├── Dependencies.tsx │ │ │ ├── Details.module.css │ │ │ ├── Details.test.tsx │ │ │ ├── Details.tsx │ │ │ ├── Flavors.module.css │ │ │ ├── Flavors.test.tsx │ │ │ ├── Flavors.tsx │ │ │ ├── GatekeeperExamplesModal.module.css │ │ │ ├── GatekeeperExamplesModal.test.tsx │ │ │ ├── GatekeeperExamplesModal.tsx │ │ │ ├── InProductionButton.module.css │ │ │ ├── InProductionButton.test.tsx │ │ │ ├── InProductionButton.tsx │ │ │ ├── Keywords.module.css │ │ │ ├── Keywords.test.tsx │ │ │ ├── Keywords.tsx │ │ │ ├── Last30DaysViews.module.css │ │ │ ├── Last30DaysViews.test.tsx │ │ │ ├── Last30DaysViews.tsx │ │ │ ├── LastYearActivity.module.css │ │ │ ├── LastYearActivity.test.tsx │ │ │ ├── LastYearActivity.tsx │ │ │ ├── License.module.css │ │ │ ├── License.test.tsx │ │ │ ├── License.tsx │ │ │ ├── Links.module.css │ │ │ ├── Links.test.tsx │ │ │ ├── Links.tsx │ │ │ ├── Maintainers.module.css │ │ │ ├── Maintainers.test.tsx │ │ │ ├── Maintainers.tsx │ │ │ ├── MesheryDesignModal.module.css │ │ │ ├── MesheryDesignModal.test.tsx │ │ │ ├── MesheryDesignModal.tsx │ │ │ ├── ModalHeader.module.css │ │ │ ├── ModalHeader.test.tsx │ │ │ ├── ModalHeader.tsx │ │ │ ├── MoreActionsButton.module.css │ │ │ ├── MoreActionsButton.test.tsx │ │ │ ├── MoreActionsButton.tsx │ │ │ ├── PackageView.module.css │ │ │ ├── PackageViewsStats.module.css │ │ │ ├── PackageViewsStats.test.tsx │ │ │ ├── PackageViewsStats.tsx │ │ │ ├── Platforms.module.css │ │ │ ├── Platforms.test.tsx │ │ │ ├── Platforms.tsx │ │ │ ├── RecommendedPackages │ │ │ │ ├── Card.module.css │ │ │ │ ├── Card.test.tsx │ │ │ │ ├── Card.tsx │ │ │ │ ├── RecommendedPackages.module.css │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Card.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ ├── RelatedPackageCard.module.css │ │ │ ├── RelatedPackageCard.test.tsx │ │ │ ├── RelatedPackageCard.tsx │ │ │ ├── RelatedPackages.module.css │ │ │ ├── RelatedPackages.test.tsx │ │ │ ├── RelatedPackages.tsx │ │ │ ├── SignKeyInfo.module.css │ │ │ ├── SignKeyInfo.test.tsx │ │ │ ├── SignKeyInfo.tsx │ │ │ ├── StarButton.module.css │ │ │ ├── StarButton.test.tsx │ │ │ ├── StarButton.tsx │ │ │ ├── Stats.module.css │ │ │ ├── Stats.test.tsx │ │ │ ├── Stats.tsx │ │ │ ├── SubscriptionsButton.module.css │ │ │ ├── SubscriptionsButton.test.tsx │ │ │ ├── SubscriptionsButton.tsx │ │ │ ├── TasksInPipeline.module.css │ │ │ ├── TasksInPipeline.test.tsx │ │ │ ├── TasksInPipeline.tsx │ │ │ ├── TektonManifestModal.module.css │ │ │ ├── TektonManifestModal.test.tsx │ │ │ ├── TektonManifestModal.tsx │ │ │ ├── Version.module.css │ │ │ ├── Version.test.tsx │ │ │ ├── Version.tsx │ │ │ ├── VersionInRow.module.css │ │ │ ├── VersionInRow.test.tsx │ │ │ ├── VersionInRow.tsx │ │ │ ├── VersionsModal.module.css │ │ │ ├── VersionsModal.test.tsx │ │ │ ├── VersionsModal.tsx │ │ │ ├── WidgetModal.module.css │ │ │ ├── WidgetModal.test.tsx │ │ │ ├── WidgetModal.tsx │ │ │ ├── __fixtures__ │ │ │ │ ├── ContainersImages │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ └── 5.json │ │ │ │ ├── Dependencies │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ └── 5.json │ │ │ │ ├── Details │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12.json │ │ │ │ │ ├── 13.json │ │ │ │ │ ├── 14.json │ │ │ │ │ ├── 15.json │ │ │ │ │ ├── 16.json │ │ │ │ │ ├── 17.json │ │ │ │ │ ├── 18.json │ │ │ │ │ ├── 19.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 20.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── InProductionButton │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ └── 6.json │ │ │ │ ├── LastYearActivity │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ └── 5.json │ │ │ │ ├── Maintainers │ │ │ │ │ ├── 1.json │ │ │ │ │ └── 2.json │ │ │ │ ├── RelatedPackageCard │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── VersionsModal │ │ │ │ │ ├── 1.json │ │ │ │ │ └── 2.json │ │ │ │ └── index │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12.json │ │ │ │ │ ├── 13.json │ │ │ │ │ ├── 14.json │ │ │ │ │ ├── 15.json │ │ │ │ │ ├── 16.json │ │ │ │ │ ├── 16a.json │ │ │ │ │ ├── 16b.json │ │ │ │ │ ├── 18.json │ │ │ │ │ ├── 19.json │ │ │ │ │ ├── 1Related.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 20.json │ │ │ │ │ ├── 21.json │ │ │ │ │ ├── 2Related.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 3Related.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 4Related.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 5Related.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ ├── __snapshots__ │ │ │ │ ├── CapabilityLevel.test.tsx.snap │ │ │ │ ├── CapabilityLevelInfoModal.test.tsx.snap │ │ │ │ ├── ContainerAlternativeLocations.test.tsx.snap │ │ │ │ ├── ContainerRegistry.test.tsx.snap │ │ │ │ ├── ContainersImages.test.tsx.snap │ │ │ │ ├── Dependencies.test.tsx.snap │ │ │ │ ├── Details.test.tsx.snap │ │ │ │ ├── Flavors.test.tsx.snap │ │ │ │ ├── GatekeeperExamplesModal.test.tsx.snap │ │ │ │ ├── InProductionButton.test.tsx.snap │ │ │ │ ├── Keywords.test.tsx.snap │ │ │ │ ├── Last30DaysViews.test.tsx.snap │ │ │ │ ├── LastYearActivity.test.tsx.snap │ │ │ │ ├── License.test.tsx.snap │ │ │ │ ├── Links.test.tsx.snap │ │ │ │ ├── Maintainers.test.tsx.snap │ │ │ │ ├── MesheryDesignModal.test.tsx.snap │ │ │ │ ├── ModalHeader.test.tsx.snap │ │ │ │ ├── MoreActionsButton.test.tsx.snap │ │ │ │ ├── PackageViewsStats.test.tsx.snap │ │ │ │ ├── Platforms.test.tsx.snap │ │ │ │ ├── RelatedPackageCard.test.tsx.snap │ │ │ │ ├── RelatedPackages.test.tsx.snap │ │ │ │ ├── SignKeyInfo.test.tsx.snap │ │ │ │ ├── StarButton.test.tsx.snap │ │ │ │ ├── Stats.test.tsx.snap │ │ │ │ ├── SubscriptionsButton.test.tsx.snap │ │ │ │ ├── TasksInPipeline.test.tsx.snap │ │ │ │ ├── TektonManifestModal.test.tsx.snap │ │ │ │ ├── Version.test.tsx.snap │ │ │ │ ├── VersionInRow.test.tsx.snap │ │ │ │ ├── VersionsModal.test.tsx.snap │ │ │ │ └── index.test.tsx.snap │ │ │ ├── changelog │ │ │ │ ├── Content.module.css │ │ │ │ ├── Content.test.tsx │ │ │ │ ├── Content.tsx │ │ │ │ ├── Modal.module.css │ │ │ │ ├── Modal.test.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ ├── __fixtures__ │ │ │ │ │ └── Modal │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 10.json │ │ │ │ │ │ ├── 11.json │ │ │ │ │ │ ├── 12.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ └── 9.json │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── Content.test.tsx.snap │ │ │ │ │ └── Modal.test.tsx.snap │ │ │ ├── chartTemplates │ │ │ │ ├── ChartTemplatesModal.module.css │ │ │ │ ├── CompareTemplatesList.module.css │ │ │ │ ├── CompareTemplatesList.test.tsx │ │ │ │ ├── CompareTemplatesList.tsx │ │ │ │ ├── CompareView.module.css │ │ │ │ ├── CompareView.test.tsx │ │ │ │ ├── CompareView.tsx │ │ │ │ ├── DiffTemplate.module.css │ │ │ │ ├── DiffTemplate.tsx │ │ │ │ ├── ParamInfo.module.css │ │ │ │ ├── ParamInfo.test.tsx │ │ │ │ ├── ParamInfo.tsx │ │ │ │ ├── ResourceLabel.module.css │ │ │ │ ├── ResourceLabel.test.tsx │ │ │ │ ├── ResourceLabel.tsx │ │ │ │ ├── Template.module.css │ │ │ │ ├── Template.test.tsx │ │ │ │ ├── Template.tsx │ │ │ │ ├── TemplatesList.module.css │ │ │ │ ├── TemplatesList.test.tsx │ │ │ │ ├── TemplatesList.tsx │ │ │ │ ├── TemplatesView.module.css │ │ │ │ ├── TemplatesView.tsx │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── TemplatesList │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ └── 5.json │ │ │ │ │ └── index │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ └── 9.json │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── CompareTemplatesList.test.tsx.snap │ │ │ │ │ ├── CompareView.test.tsx.snap │ │ │ │ │ ├── ParamInfo.test.tsx.snap │ │ │ │ │ ├── ResourceLabel.test.tsx.snap │ │ │ │ │ ├── Template.test.tsx.snap │ │ │ │ │ ├── TemplatesList.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── builtIn.json │ │ │ │ ├── functions.json │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.test.tsx │ │ │ ├── index.tsx │ │ │ ├── installation │ │ │ │ ├── CommandBlock.test.tsx │ │ │ │ ├── CommandBlock.tsx │ │ │ │ ├── ContentInstall.module.css │ │ │ │ ├── FalcoInstall.test.tsx │ │ │ │ ├── FalcoInstall.tsx │ │ │ │ ├── HelmInstall.test.tsx │ │ │ │ ├── HelmInstall.tsx │ │ │ │ ├── HelmOCIInstall.test.tsx │ │ │ │ ├── HelmOCIInstall.tsx │ │ │ │ ├── HelmPluginInstall.test.tsx │ │ │ │ ├── HelmPluginInstall.tsx │ │ │ │ ├── KrewInstall.test.tsx │ │ │ │ ├── KrewInstall.tsx │ │ │ │ ├── KubeArmorInstall.tsx │ │ │ │ ├── KubectlGatekeeperInstall.test.tsx │ │ │ │ ├── KubectlGatekeeperInstall.tsx │ │ │ │ ├── KubewardenInstall.test.tsx │ │ │ │ ├── KubewardenInstall.tsx │ │ │ │ ├── KustomizeGatekeeperInstall.test.tsx │ │ │ │ ├── KustomizeGatekeeperInstall.tsx │ │ │ │ ├── Modal.test.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ ├── OLMInstall.test.tsx │ │ │ │ ├── OLMInstall.tsx │ │ │ │ ├── OLMOCIInstall.test.tsx │ │ │ │ ├── OLMOCIInstall.tsx │ │ │ │ ├── PrivateRepoWarning.tsx │ │ │ │ ├── PublisherInstructionsInstall.test.tsx │ │ │ │ ├── PublisherInstructionsInstall.tsx │ │ │ │ ├── TektonInstall.test.tsx │ │ │ │ ├── TektonInstall.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── CommandBlock.test.tsx.snap │ │ │ │ │ ├── FalcoInstall.test.tsx.snap │ │ │ │ │ ├── HelmInstall.test.tsx.snap │ │ │ │ │ ├── HelmOCIInstall.test.tsx.snap │ │ │ │ │ ├── HelmPluginInstall.test.tsx.snap │ │ │ │ │ ├── KrewInstall.test.tsx.snap │ │ │ │ │ ├── KubectlGatekeeperInstall.test.tsx.snap │ │ │ │ │ ├── KubewardenInstall.test.tsx.snap │ │ │ │ │ ├── KustomizeGatekeeperInstall.test.tsx.snap │ │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ │ ├── OLMInstall.test.tsx.snap │ │ │ │ │ ├── OLMOCIInstall.test.tsx.snap │ │ │ │ │ ├── PublisherInstructionsInstall.test.tsx.snap │ │ │ │ │ └── TektonInstall.test.tsx.snap │ │ │ ├── readme │ │ │ │ ├── Readme.module.css │ │ │ │ ├── Readme.tsx │ │ │ │ ├── TOC.module.css │ │ │ │ ├── TOC.test.tsx │ │ │ │ ├── TOC.tsx │ │ │ │ ├── TOCEntry.module.css │ │ │ │ ├── TOCEntry.test.tsx │ │ │ │ ├── TOCEntry.tsx │ │ │ │ ├── TOCList.test.tsx │ │ │ │ ├── TOCList.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── TOC.test.tsx.snap │ │ │ │ │ ├── TOCEntry.test.tsx.snap │ │ │ │ │ ├── TOCList.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ ├── screenshots │ │ │ │ ├── Modal.module.css │ │ │ │ ├── Modal.test.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Modal.test.tsx.snap │ │ │ ├── securityReport │ │ │ │ ├── Btns.module.css │ │ │ │ ├── CVSSVector.module.css │ │ │ │ ├── CVSSVector.test.tsx │ │ │ │ ├── CVSSVector.tsx │ │ │ │ ├── Cell.module.css │ │ │ │ ├── Cell.test.tsx │ │ │ │ ├── Cell.tsx │ │ │ │ ├── ImageBtn.tsx │ │ │ │ ├── MobileModal.module.css │ │ │ │ ├── MobileModal.tsx │ │ │ │ ├── Modal.module.css │ │ │ │ ├── Modal.test.tsx │ │ │ │ ├── Modal.tsx │ │ │ │ ├── OldVulnerabilitiesWarning.test.tsx │ │ │ │ ├── OldVulnerabilitiesWarning.tsx │ │ │ │ ├── SectionBtn.test.tsx │ │ │ │ ├── SectionBtn.tsx │ │ │ │ ├── SecurityReport.module.css │ │ │ │ ├── Summary.module.css │ │ │ │ ├── Summary.test.tsx │ │ │ │ ├── Summary.tsx │ │ │ │ ├── SummaryTable.module.css │ │ │ │ ├── SummaryTable.test.tsx │ │ │ │ ├── SummaryTable.tsx │ │ │ │ ├── Table.module.css │ │ │ │ ├── Table.test.tsx │ │ │ │ ├── Table.tsx │ │ │ │ ├── TargetImageBtn.test.tsx │ │ │ │ ├── TargetImageBtn.tsx │ │ │ │ ├── __fixtures__ │ │ │ │ │ ├── Modal │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ ├── 6.json │ │ │ │ │ │ ├── 7.json │ │ │ │ │ │ ├── 8.json │ │ │ │ │ │ └── 9.json │ │ │ │ │ ├── OldVulnerabilitiesWarning │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ └── 3.json │ │ │ │ │ ├── SummaryTable │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 1fix.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 2fix.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ └── 3fix.json │ │ │ │ │ └── Table │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 1fix.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 2fix.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 3fix.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── 4fix.json │ │ │ │ │ │ ├── 5.json │ │ │ │ │ │ └── 5fix.json │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── CVSSVector.test.tsx.snap │ │ │ │ │ ├── Cell.test.tsx.snap │ │ │ │ │ ├── Modal.test.tsx.snap │ │ │ │ │ ├── OldVulnerabilitiesWarning.test.tsx.snap │ │ │ │ │ ├── SectionBtn.test.tsx.snap │ │ │ │ │ ├── Summary.test.tsx.snap │ │ │ │ │ ├── SummaryTable.test.tsx.snap │ │ │ │ │ ├── Table.test.tsx.snap │ │ │ │ │ ├── TargetImageBtn.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ ├── values │ │ │ │ ├── CompareView.module.css │ │ │ │ ├── CompareView.test.tsx │ │ │ │ ├── CompareView.tsx │ │ │ │ ├── DiffTemplate.module.css │ │ │ │ ├── DiffTemplate.tsx │ │ │ │ ├── Values.module.css │ │ │ │ ├── ValuesView.test.tsx │ │ │ │ ├── ValuesView.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── CompareView.test.tsx.snap │ │ │ │ │ ├── ValuesView.test.tsx.snap │ │ │ │ │ └── index.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ │ └── valuesSchema │ │ │ │ ├── Schema.module.css │ │ │ │ ├── Schema.test.tsx │ │ │ │ ├── Schema.tsx │ │ │ │ ├── SchemaDefinition.module.css │ │ │ │ ├── SchemaDefinition.test.tsx │ │ │ │ ├── SchemaDefinition.tsx │ │ │ │ ├── SchemaLine.module.css │ │ │ │ ├── SchemaLine.test.tsx │ │ │ │ ├── SchemaLine.tsx │ │ │ │ ├── ValuesSchema.module.css │ │ │ │ ├── __fixtures__ │ │ │ │ ├── SchemaDefinition │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12a.json │ │ │ │ │ ├── 12b.json │ │ │ │ │ ├── 13.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── SchemaLine │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ └── index │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ │ ├── __snapshots__ │ │ │ │ ├── Schema.test.tsx.snap │ │ │ │ ├── SchemaDefinition.test.tsx.snap │ │ │ │ └── SchemaLine.test.tsx.snap │ │ │ │ ├── index.test.tsx │ │ │ │ └── index.tsx │ │ ├── search │ │ │ ├── FilterBadge.module.css │ │ │ ├── FilterBadge.test.tsx │ │ │ ├── FilterBadge.tsx │ │ │ ├── Filters.module.css │ │ │ ├── Filters.test.tsx │ │ │ ├── Filters.tsx │ │ │ ├── MoreActionsButton.module.css │ │ │ ├── MoreActionsButton.test.tsx │ │ │ ├── MoreActionsButton.tsx │ │ │ ├── PaginationLimit.module.css │ │ │ ├── PaginationLimit.test.tsx │ │ │ ├── PaginationLimit.tsx │ │ │ ├── SearchView.module.css │ │ │ ├── SortOptions.module.css │ │ │ ├── SortOptions.tsx │ │ │ ├── WidgetsGroupModal.module.css │ │ │ ├── WidgetsGroupModal.test.tsx │ │ │ ├── WidgetsGroupModal.tsx │ │ │ ├── __fixtures__ │ │ │ │ └── index │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12.json │ │ │ │ │ ├── 13.json │ │ │ │ │ ├── 14.json │ │ │ │ │ ├── 15.json │ │ │ │ │ ├── 16.json │ │ │ │ │ ├── 17.json │ │ │ │ │ ├── 18.json │ │ │ │ │ ├── 19.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 20.json │ │ │ │ │ ├── 21.json │ │ │ │ │ ├── 22a.json │ │ │ │ │ ├── 22b.json │ │ │ │ │ ├── 23.json │ │ │ │ │ ├── 24.json │ │ │ │ │ ├── 25.json │ │ │ │ │ ├── 26.json │ │ │ │ │ ├── 27.json │ │ │ │ │ ├── 28.json │ │ │ │ │ ├── 29.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 30.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ └── 9.json │ │ │ ├── __snapshots__ │ │ │ │ ├── FilterBadge.test.tsx.snap │ │ │ │ ├── Filters.test.tsx.snap │ │ │ │ ├── MoreActionsButton.test.tsx.snap │ │ │ │ ├── PaginationLimit.test.tsx.snap │ │ │ │ └── WidgetsGroupModal.test.tsx.snap │ │ │ └── index.tsx │ │ ├── starredPackages │ │ │ ├── StarredPackagesView.module.css │ │ │ ├── __fixtures__ │ │ │ │ └── index │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ └── 6.json │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.tsx.snap │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ │ └── stats │ │ │ ├── BrushChart.tsx │ │ │ ├── PackagesList.module.css │ │ │ ├── PackagesList.tsx │ │ │ ├── StatsView.module.css │ │ │ ├── __fixtures__ │ │ │ └── index │ │ │ │ ├── 1.json │ │ │ │ ├── 2.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ └── 5.json │ │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ │ ├── index.test.tsx │ │ │ └── index.tsx │ ├── react-app-env.d.ts │ ├── remark-plugins.d.ts │ ├── setupTests.ts │ ├── themes │ │ ├── dark.scss │ │ ├── default.scss │ │ └── light.scss │ ├── types.ts │ ├── utils │ │ ├── __fixtures__ │ │ │ └── buildPackageURL │ │ │ │ ├── 1.json │ │ │ │ ├── 2.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ └── 7.json │ │ ├── alertDispatcher.test.tsx │ │ ├── alertDispatcher.ts │ │ ├── authorizer.test.tsx │ │ ├── authorizer.ts │ │ ├── bannerDispatcher.ts │ │ ├── browserDetect.ts │ │ ├── buildPackageURL.test.tsx │ │ ├── buildPackageURL.ts │ │ ├── buildSearchParams.test.tsx │ │ ├── buildSearchParams.ts │ │ ├── calculateDiffInYears.test.tsx │ │ ├── calculateDiffInYears.tsx │ │ ├── capitalizeFirstLetter.test.tsx │ │ ├── capitalizeFirstLetter.ts │ │ ├── checkCodeLanguage.test.ts │ │ ├── checkCodeLanguage.ts │ │ ├── checkIfOldVulnerabilities.test.tsx │ │ ├── checkIfOldVulnerabilities.ts │ │ ├── checkIfPropIsRequiredInSchema.test.tsx │ │ ├── checkIfPropIsRequiredInSchema.ts │ │ ├── checkUnsavedPolicyChanges.test.tsx │ │ ├── checkUnsavedPolicyChanges.tsx │ │ ├── cleanLoginUrlParams.test.tsx │ │ ├── cleanLoginUrlParams.tsx │ │ ├── cleanTOCEntry.ts │ │ ├── compoundErrorMessage.test.tsx │ │ ├── compoundErrorMessage.ts │ │ ├── compoundJSONSchemaYAML.test.tsx │ │ ├── compoundJSONSchemaYAML.ts │ │ ├── cutString.test.tsx │ │ ├── cutString.tsx │ │ ├── data.tsx │ │ ├── dereference.test.tsx │ │ ├── dereference.ts │ │ ├── detectActiveThemeMode.test.tsx │ │ ├── detectActiveThemeMode.ts │ │ ├── detectLinksInText.test.tsx │ │ ├── detectLinksInText.tsx │ │ ├── escapeRegExp.test.tsx │ │ ├── escapeRegExp.ts │ │ ├── extractReadmeTOC.test.tsx │ │ ├── extractReadmeTOC.ts │ │ ├── findClosestNumberIndex.test.tsx │ │ ├── findClosestNumberIndex.ts │ │ ├── formatCVSS.test.tsx │ │ ├── formatCVSS.ts │ │ ├── formatChartTemplates.test.tsx │ │ ├── formatChartTemplates.ts │ │ ├── formatSecurityReport.test.tsx │ │ ├── formatSecurityReport.ts │ │ ├── formatStringForYAML.test.tsx │ │ ├── formatStringForYAML.ts │ │ ├── getAnchorValue.test.tsx │ │ ├── getAnchorValue.ts │ │ ├── getGitHostingProvider.tsx │ │ ├── getInstallMethods.test.tsx │ │ ├── getInstallMethods.ts │ │ ├── getJMESPathForValuesSchema.test.tsx │ │ ├── getJMESPathForValuesSchema.ts │ │ ├── getMetaTag.test.tsx │ │ ├── getMetaTag.ts │ │ ├── getOLMInstallInstructions.test.tsx │ │ ├── getOLMInstallInstructions.ts │ │ ├── getSampleQueries.test.tsx │ │ ├── getSampleQueries.ts │ │ ├── getTextBetweenParenthesis.test.tsx │ │ ├── getTextBetweenParenthesis.ts │ │ ├── hasToBeDisplayedNewNotification.test.tsx │ │ ├── hasToBeDisplayedNewNotification.ts │ │ ├── history.tsx │ │ ├── isControlPanelSectionAvailable.test.tsx │ │ ├── isControlPanelSectionAvailable.ts │ │ ├── isFuture.ts │ │ ├── isPackageOfficial.test.tsx │ │ ├── isPackageOfficial.ts │ │ ├── isValidJSON.test.tsx │ │ ├── isValidJSON.ts │ │ ├── isValidURL.test.tsx │ │ ├── isValidURL.ts │ │ ├── isVisibleItemInContainer.ts │ │ ├── isWhiteLabel.test.tsx │ │ ├── isWhiteLabel.ts │ │ ├── localStoragePreferences.test.tsx │ │ ├── localStoragePreferences.ts │ │ ├── minutesToNearestInterval.test.tsx │ │ ├── minutesToNearestInterval.ts │ │ ├── notifications.json │ │ ├── prepareMarkdownTOC.test.tsx │ │ ├── prepareMarkdownTOC.ts │ │ ├── prepareQueryString.test.tsx │ │ ├── prepareQueryString.ts │ │ ├── prepareRegoPolicyForPlayground.test.tsx │ │ ├── prepareRegoPolicyForPlayground.ts │ │ ├── prettifyNumber.test.tsx │ │ ├── prettifyNumber.ts │ │ ├── processHelmTemplate.test.tsx │ │ ├── processHelmTemplate.tsx │ │ ├── removeEmojis.test.tsx │ │ ├── removeEmojis.ts │ │ ├── removeUrlProtocol.ts │ │ ├── renameKeysInObject.test.tsx │ │ ├── renameKeysInObject.ts │ │ ├── repoKind.test.tsx │ │ ├── repoKind.ts │ │ ├── scrollToTop.ts │ │ ├── sortPackageVersions.test.tsx │ │ ├── sortPackageVersions.ts │ │ ├── sortVersions.ts │ │ ├── stringifyPolicyData.test.tsx │ │ ├── stringifyPolicyData.ts │ │ ├── sumObjectValues.test.tsx │ │ ├── sumObjectValues.ts │ │ ├── testUtils.ts │ │ ├── themeBuilder.ts │ │ ├── trimPrefix.test.tsx │ │ ├── trimPrefix.tsx │ │ ├── updateMetaIndex.test.tsx │ │ ├── updateMetaIndex.ts │ │ ├── userNotificationsDispatcher.test.tsx │ │ ├── userNotificationsDispatcher.ts │ │ ├── viewsStats.test.tsx │ │ ├── viewsStats.ts │ │ └── vulnerabilities.ts │ └── vite-env.d.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock └── widget ├── .prettierrc ├── eslint.config.js ├── index.html ├── package.json ├── src ├── api │ ├── __fixtures__ │ │ └── index │ │ │ ├── 1.json │ │ │ └── 2.json │ ├── index.test.tsx │ └── index.ts ├── index.tsx ├── jest-shim.d.ts ├── layout │ ├── Group.test.tsx │ ├── Group.tsx │ ├── Widget.test.tsx │ ├── Widget.tsx │ ├── __fixtures__ │ │ ├── Group │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ └── 6.json │ │ └── Widget │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ ├── __snapshots__ │ │ ├── Group.test.tsx.snap │ │ └── Widget.test.tsx.snap │ └── common │ │ ├── Image.test.tsx │ │ ├── Image.tsx │ │ ├── Label.test.tsx │ │ ├── Label.tsx │ │ ├── Loading.test.tsx │ │ ├── Loading.tsx │ │ ├── RepositoryIcon.test.tsx │ │ ├── RepositoryIcon.tsx │ │ ├── RepositoryIconLabel.test.tsx │ │ ├── RepositoryIconLabel.tsx │ │ ├── SVGIcons.test.tsx │ │ ├── SVGIcons.tsx │ │ └── __snapshots__ │ │ ├── Image.test.tsx.snap │ │ ├── Label.test.tsx.snap │ │ ├── Loading.test.tsx.snap │ │ ├── RepositoryIcon.test.tsx.snap │ │ ├── RepositoryIconLabel.test.tsx.snap │ │ └── SVGIcons.test.tsx.snap ├── react-app-env.d.ts ├── setupTests.ts ├── shims │ └── prop-types.js └── types.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.clomonitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.clomonitor.yml -------------------------------------------------------------------------------- /.ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.ct.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | web/node_modules 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-abuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/ISSUE_TEMPLATE/report-abuse.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- 1 | paths-ignore: 2 | - docs/api/*.js 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/workflows/build-images.yml -------------------------------------------------------------------------------- /.github/workflows/chart-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/workflows/chart-testing.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tern.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.github/workflows/tern.conf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.gitpod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.gitpod/Dockerfile -------------------------------------------------------------------------------- /.gitpod/hub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.gitpod/hub.yaml -------------------------------------------------------------------------------- /.gitpod/tern-tests.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.gitpod/tern-tests.conf -------------------------------------------------------------------------------- /.gitpod/tern.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.gitpod/tern.conf -------------------------------------------------------------------------------- /.gitpod/tracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.gitpod/tracker.yaml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | .git 2 | vendor 3 | -------------------------------------------------------------------------------- /ADOPTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ADOPTERS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY-INSIGHTS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/SECURITY-INSIGHTS.yml -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/SECURITY.md -------------------------------------------------------------------------------- /charts/artifact-hub/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/.helmignore -------------------------------------------------------------------------------- /charts/artifact-hub/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/Chart.yaml -------------------------------------------------------------------------------- /charts/artifact-hub/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/LICENSE -------------------------------------------------------------------------------- /charts/artifact-hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/README.md -------------------------------------------------------------------------------- /charts/artifact-hub/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/ci/default-values.yaml -------------------------------------------------------------------------------- /charts/artifact-hub/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/artifact-hub/templates/hub_rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/templates/hub_rbac.yaml -------------------------------------------------------------------------------- /charts/artifact-hub/values-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/values-production.yaml -------------------------------------------------------------------------------- /charts/artifact-hub/values-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/values-staging.yaml -------------------------------------------------------------------------------- /charts/artifact-hub/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/values.schema.json -------------------------------------------------------------------------------- /charts/artifact-hub/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/charts/artifact-hub/values.yaml -------------------------------------------------------------------------------- /cmd/ah/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/Dockerfile -------------------------------------------------------------------------------- /cmd/ah/ah.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/ah.go -------------------------------------------------------------------------------- /cmd/ah/ah_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/ah_test.go -------------------------------------------------------------------------------- /cmd/ah/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/lint.go -------------------------------------------------------------------------------- /cmd/ah/lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/lint_test.go -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test1/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test1/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test1/pkgs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test1/pkgs/Chart.yaml -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test1/pkgs/README.md: -------------------------------------------------------------------------------- 1 | # Test README file 2 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test10/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test10/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test11/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test11/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test12/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test12/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test13/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test13/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test14/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test14/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test15/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test15/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test16/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test16/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test17/output.golden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test18/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test18/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test18/pkgs/pkg1/1.0.0/pkg1.yaml: -------------------------------------------------------------------------------- 1 | policy content 2 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test18/pkgs/pkg2/2.0.0/2.0.0.yaml: -------------------------------------------------------------------------------- 1 | policy content 2 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test2/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test2/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test2/pkgs/chart1/README.md: -------------------------------------------------------------------------------- 1 | # Test README file 2 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test2/pkgs/chart2/README.md: -------------------------------------------------------------------------------- 1 | # Test README file 2 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test3/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test3/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test3/pkgs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test3/pkgs/Chart.yaml -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test4/output.golden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test5/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test5/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test5/pkgs/policy1.rego: -------------------------------------------------------------------------------- 1 | policy content 2 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test6/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test6/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test6/pkgs/pkg1/policy1.rego: -------------------------------------------------------------------------------- 1 | policy content 2 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test6/pkgs/pkg2/policy1.rego: -------------------------------------------------------------------------------- 1 | policy content 2 | -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test7/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test7/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test8/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test8/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test8/pkgs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test8/pkgs/LICENSE -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test8/pkgs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test8/pkgs/README.md -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test8/pkgs/plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test8/pkgs/plugin.yaml -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test9/output.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/testdata/lint/test9/output.golden -------------------------------------------------------------------------------- /cmd/ah/testdata/lint/test9/pkgs/plugin.yaml: -------------------------------------------------------------------------------- 1 | name: test-plugin 2 | version: 0.1.0 3 | -------------------------------------------------------------------------------- /cmd/ah/testdata/version/test1/output.golden: -------------------------------------------------------------------------------- 1 | Version: 0.0.1 2 | Git commit: aaabbbcccdddeeefff 3 | -------------------------------------------------------------------------------- /cmd/ah/testdata/version/test2/output.golden: -------------------------------------------------------------------------------- 1 | Version: 2 | Git commit: 3 | -------------------------------------------------------------------------------- /cmd/ah/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/version.go -------------------------------------------------------------------------------- /cmd/ah/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/ah/version_test.go -------------------------------------------------------------------------------- /cmd/hub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/hub/Dockerfile -------------------------------------------------------------------------------- /cmd/hub/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/hub/main.go -------------------------------------------------------------------------------- /cmd/scanner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/scanner/Dockerfile -------------------------------------------------------------------------------- /cmd/scanner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/scanner/main.go -------------------------------------------------------------------------------- /cmd/tracker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/tracker/Dockerfile -------------------------------------------------------------------------------- /cmd/tracker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/cmd/tracker/main.go -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /configs/grafana-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/configs/grafana-dashboard.json -------------------------------------------------------------------------------- /configs/hub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/configs/hub.yaml -------------------------------------------------------------------------------- /configs/scanner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/configs/scanner.yaml -------------------------------------------------------------------------------- /configs/tern.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/configs/tern.conf -------------------------------------------------------------------------------- /configs/tracker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/configs/tracker.yaml -------------------------------------------------------------------------------- /database/migrations/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/migrations/Dockerfile -------------------------------------------------------------------------------- /database/migrations/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/migrations/migrate.sh -------------------------------------------------------------------------------- /database/migrations/schema/020_sign_key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/migrations/schema/020_sign_key.sql -------------------------------------------------------------------------------- /database/migrations/schema/034_partman.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/migrations/schema/034_partman.sql -------------------------------------------------------------------------------- /database/migrations/schema/046_cncf.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/migrations/schema/046_cncf.sql -------------------------------------------------------------------------------- /database/migrations/schema/data/sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/migrations/schema/data/sample.sql -------------------------------------------------------------------------------- /database/tests/Dockerfile-db-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/tests/Dockerfile-db-tests -------------------------------------------------------------------------------- /database/tests/Dockerfile-postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/tests/Dockerfile-postgres -------------------------------------------------------------------------------- /database/tests/schema/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/database/tests/schema/schema.sql -------------------------------------------------------------------------------- /docs/api/custom-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/api/custom-styles.css -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/api/oauth2-redirect.html -------------------------------------------------------------------------------- /docs/api/openapi-monocular.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/api/openapi-monocular.yaml -------------------------------------------------------------------------------- /docs/api/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/api/openapi.yaml -------------------------------------------------------------------------------- /docs/api/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/api/swagger-ui-bundle.js -------------------------------------------------------------------------------- /docs/api/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/api/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /docs/api/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/api/swagger-ui.css -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/argo_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/argo_annotations.md -------------------------------------------------------------------------------- /docs/argo_templates_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/argo_templates_repositories.md -------------------------------------------------------------------------------- /docs/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/authorization.md -------------------------------------------------------------------------------- /docs/backstage_plugins_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/backstage_plugins_repositories.md -------------------------------------------------------------------------------- /docs/bootable_containers_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/bootable_containers_repositories.md -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.10.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.10.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.11.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.11.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.12.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.12.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.13.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.13.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.14.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.14.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.15.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.15.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.16.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.16.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.17.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.17.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.18.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.18.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.19.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.19.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.2.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.20.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.20.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.3.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.4.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.4.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.5.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.5.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.6.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.6.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.7.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.7.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.8.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.8.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-0.9.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-0.9.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-1.0.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifact-hub-1.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/artifact-hub-1.1.0.tgz -------------------------------------------------------------------------------- /docs/chart/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: a032a436-3568-4970-804a-2780f5e9d231 2 | -------------------------------------------------------------------------------- /docs/chart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/index.html -------------------------------------------------------------------------------- /docs/chart/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/index.yaml -------------------------------------------------------------------------------- /docs/chart/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/logo.png -------------------------------------------------------------------------------- /docs/chart/logo_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/chart/logo_v2.png -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/container_images_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/container_images_repositories.md -------------------------------------------------------------------------------- /docs/coredns_plugins_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/coredns_plugins_repositories.md -------------------------------------------------------------------------------- /docs/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/dev.md -------------------------------------------------------------------------------- /docs/embedding_artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/embedding_artifacts.md -------------------------------------------------------------------------------- /docs/events/CNSC-2024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/events/CNSC-2024.png -------------------------------------------------------------------------------- /docs/falco_rules_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/falco_rules_repositories.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/gatekeeper_policies_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/gatekeeper_policies_repositories.md -------------------------------------------------------------------------------- /docs/headlamp_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/headlamp_annotations.md -------------------------------------------------------------------------------- /docs/headlamp_plugins_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/headlamp_plugins_repositories.md -------------------------------------------------------------------------------- /docs/helm_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/helm_annotations.md -------------------------------------------------------------------------------- /docs/helm_charts_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/helm_charts_repositories.md -------------------------------------------------------------------------------- /docs/helm_plugins_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/helm_plugins_repositories.md -------------------------------------------------------------------------------- /docs/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/infrastructure.md -------------------------------------------------------------------------------- /docs/inspektor_gadgets_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/inspektor_gadgets_repositories.md -------------------------------------------------------------------------------- /docs/kagent_agents_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/kagent_agents_repositories.md -------------------------------------------------------------------------------- /docs/kcl_modules_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/kcl_modules_repositories.md -------------------------------------------------------------------------------- /docs/keda_scalers_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/keda_scalers_repositories.md -------------------------------------------------------------------------------- /docs/keptn_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/keptn_annotations.md -------------------------------------------------------------------------------- /docs/keptn_integrations_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/keptn_integrations_repositories.md -------------------------------------------------------------------------------- /docs/knative_client_plugins_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/knative_client_plugins_repositories.md -------------------------------------------------------------------------------- /docs/krew_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/krew_annotations.md -------------------------------------------------------------------------------- /docs/krew_kubectl_plugins_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/krew_kubectl_plugins_repositories.md -------------------------------------------------------------------------------- /docs/kubearmor_policies_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/kubearmor_policies_repositories.md -------------------------------------------------------------------------------- /docs/kubewarden_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/kubewarden_annotations.md -------------------------------------------------------------------------------- /docs/kubewarden_policies_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/kubewarden_policies_repositories.md -------------------------------------------------------------------------------- /docs/kyverno_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/kyverno_annotations.md -------------------------------------------------------------------------------- /docs/kyverno_policies_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/kyverno_policies_repositories.md -------------------------------------------------------------------------------- /docs/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/logo/logo.svg -------------------------------------------------------------------------------- /docs/meshery_designs_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/meshery_designs_repositories.md -------------------------------------------------------------------------------- /docs/metadata/artifacthub-pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/metadata/artifacthub-pkg.yml -------------------------------------------------------------------------------- /docs/metadata/artifacthub-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/metadata/artifacthub-repo.yml -------------------------------------------------------------------------------- /docs/olm_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/olm_annotations.md -------------------------------------------------------------------------------- /docs/olm_operators_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/olm_operators_repositories.md -------------------------------------------------------------------------------- /docs/opa_policies_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/opa_policies_repositories.md -------------------------------------------------------------------------------- /docs/opencost_plugins_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/opencost_plugins_repositories.md -------------------------------------------------------------------------------- /docs/radius_recipes_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/radius_recipes_repositories.md -------------------------------------------------------------------------------- /docs/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/repositories.md -------------------------------------------------------------------------------- /docs/screenshots/embed-screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/embed-screenshot-1.jpg -------------------------------------------------------------------------------- /docs/screenshots/embed-screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/embed-screenshot-2.jpg -------------------------------------------------------------------------------- /docs/screenshots/embed-screenshot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/embed-screenshot-3.jpg -------------------------------------------------------------------------------- /docs/screenshots/embed-screenshot-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/embed-screenshot-4.jpg -------------------------------------------------------------------------------- /docs/screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /docs/screenshots/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/screenshot2.jpg -------------------------------------------------------------------------------- /docs/screenshots/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/screenshot3.jpg -------------------------------------------------------------------------------- /docs/screenshots/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/screenshot4.jpg -------------------------------------------------------------------------------- /docs/screenshots/screenshot5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/screenshot5.jpg -------------------------------------------------------------------------------- /docs/screenshots/screenshot6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/screenshots/screenshot6.jpg -------------------------------------------------------------------------------- /docs/security_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/security_report.md -------------------------------------------------------------------------------- /docs/tekton_annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/tekton_annotations.md -------------------------------------------------------------------------------- /docs/tekton_pipelines_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/tekton_pipelines_repositories.md -------------------------------------------------------------------------------- /docs/tekton_stepactions_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/tekton_stepactions_repositories.md -------------------------------------------------------------------------------- /docs/tekton_tasks_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/tekton_tasks_repositories.md -------------------------------------------------------------------------------- /docs/tinkerbell_actions_repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/tinkerbell_actions_repositories.md -------------------------------------------------------------------------------- /docs/www/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/archetypes/default.md -------------------------------------------------------------------------------- /docs/www/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/config.yaml -------------------------------------------------------------------------------- /docs/www/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/content/_index.md -------------------------------------------------------------------------------- /docs/www/headers/architecture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/architecture -------------------------------------------------------------------------------- /docs/www/headers/argo_annotations: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Argo" 3 | aliases: [ 4 | "/argo_annotations", 5 | ] 6 | --- 7 | -------------------------------------------------------------------------------- /docs/www/headers/authorization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/authorization -------------------------------------------------------------------------------- /docs/www/headers/cli: -------------------------------------------------------------------------------- 1 | --- 2 | title: "CLI tool" 3 | weight: 9 4 | aliases: [ 5 | "/cli", 6 | ] 7 | --- 8 | -------------------------------------------------------------------------------- /docs/www/headers/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/dev -------------------------------------------------------------------------------- /docs/www/headers/embedding_artifacts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/embedding_artifacts -------------------------------------------------------------------------------- /docs/www/headers/falco_rules_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/falco_rules_repositories -------------------------------------------------------------------------------- /docs/www/headers/faq: -------------------------------------------------------------------------------- 1 | --- 2 | title: "FAQ" 3 | weight: 0 4 | aliases: [ 5 | "/faq" 6 | ] 7 | --- -------------------------------------------------------------------------------- /docs/www/headers/headlamp_annotations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/headlamp_annotations -------------------------------------------------------------------------------- /docs/www/headers/helm_annotations: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Helm" 3 | aliases: [ 4 | "/helm_annotations" 5 | ] 6 | --- 7 | -------------------------------------------------------------------------------- /docs/www/headers/helm_charts_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/helm_charts_repositories -------------------------------------------------------------------------------- /docs/www/headers/helm_plugins_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/helm_plugins_repositories -------------------------------------------------------------------------------- /docs/www/headers/infrastructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/infrastructure -------------------------------------------------------------------------------- /docs/www/headers/kagent_agents_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/kagent_agents_repositories -------------------------------------------------------------------------------- /docs/www/headers/kcl_modules_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/kcl_modules_repositories -------------------------------------------------------------------------------- /docs/www/headers/keda_scalers_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/keda_scalers_repositories -------------------------------------------------------------------------------- /docs/www/headers/keptn_annotations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/keptn_annotations -------------------------------------------------------------------------------- /docs/www/headers/krew_annotations: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Krew" 3 | aliases: [ 4 | "/krew_annotations", 5 | ] 6 | --- 7 | -------------------------------------------------------------------------------- /docs/www/headers/kubewarden_annotations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/kubewarden_annotations -------------------------------------------------------------------------------- /docs/www/headers/kyverno_annotations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/kyverno_annotations -------------------------------------------------------------------------------- /docs/www/headers/olm_annotations: -------------------------------------------------------------------------------- 1 | --- 2 | title: "OLM" 3 | aliases: [ 4 | "/olm_annotations", 5 | ] 6 | --- 7 | -------------------------------------------------------------------------------- /docs/www/headers/olm_operators_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/olm_operators_repositories -------------------------------------------------------------------------------- /docs/www/headers/opa_policies_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/opa_policies_repositories -------------------------------------------------------------------------------- /docs/www/headers/repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/repositories -------------------------------------------------------------------------------- /docs/www/headers/security_report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/security_report -------------------------------------------------------------------------------- /docs/www/headers/tekton_annotations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/tekton_annotations -------------------------------------------------------------------------------- /docs/www/headers/tekton_tasks_repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/headers/tekton_tasks_repositories -------------------------------------------------------------------------------- /docs/www/themes/hugo-geekdoc/.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/themes/hugo-geekdoc/.jsbeautifyrc -------------------------------------------------------------------------------- /docs/www/themes/hugo-geekdoc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/themes/hugo-geekdoc/CHANGELOG.md -------------------------------------------------------------------------------- /docs/www/themes/hugo-geekdoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/themes/hugo-geekdoc/LICENSE -------------------------------------------------------------------------------- /docs/www/themes/hugo-geekdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/themes/hugo-geekdoc/README.md -------------------------------------------------------------------------------- /docs/www/themes/hugo-geekdoc/VERSION: -------------------------------------------------------------------------------- 1 | v0.4.0 2 | -------------------------------------------------------------------------------- /docs/www/themes/hugo-geekdoc/layouts/taxonomy/list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/www/themes/hugo-geekdoc/layouts/taxonomy/taxonomy.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/www/themes/hugo-geekdoc/theme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/docs/www/themes/hugo-geekdoc/theme.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/go.sum -------------------------------------------------------------------------------- /internal/apikey/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/apikey/manager.go -------------------------------------------------------------------------------- /internal/apikey/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/apikey/manager_test.go -------------------------------------------------------------------------------- /internal/apikey/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/apikey/mock.go -------------------------------------------------------------------------------- /internal/authz/authz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/authz/authz.go -------------------------------------------------------------------------------- /internal/authz/authz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/authz/authz_test.go -------------------------------------------------------------------------------- /internal/authz/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/authz/mock.go -------------------------------------------------------------------------------- /internal/authz/policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/authz/policies.go -------------------------------------------------------------------------------- /internal/email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/email/email.go -------------------------------------------------------------------------------- /internal/email/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/email/mock.go -------------------------------------------------------------------------------- /internal/email/template/base.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/email/template/base.tmpl -------------------------------------------------------------------------------- /internal/event/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/event/dispatcher.go -------------------------------------------------------------------------------- /internal/event/dispatcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/event/dispatcher_test.go -------------------------------------------------------------------------------- /internal/event/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/event/manager.go -------------------------------------------------------------------------------- /internal/event/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/event/manager_test.go -------------------------------------------------------------------------------- /internal/event/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/event/mock.go -------------------------------------------------------------------------------- /internal/event/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/event/worker.go -------------------------------------------------------------------------------- /internal/event/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/event/worker_test.go -------------------------------------------------------------------------------- /internal/handlers/apikey/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/apikey/handlers.go -------------------------------------------------------------------------------- /internal/handlers/apikey/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/apikey/handlers_test.go -------------------------------------------------------------------------------- /internal/handlers/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/handlers.go -------------------------------------------------------------------------------- /internal/handlers/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/handlers_test.go -------------------------------------------------------------------------------- /internal/handlers/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/helpers/helpers.go -------------------------------------------------------------------------------- /internal/handlers/helpers/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/helpers/helpers_test.go -------------------------------------------------------------------------------- /internal/handlers/org/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/org/handlers.go -------------------------------------------------------------------------------- /internal/handlers/org/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/org/handlers_test.go -------------------------------------------------------------------------------- /internal/handlers/pkg/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/pkg/handlers.go -------------------------------------------------------------------------------- /internal/handlers/pkg/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/pkg/handlers_test.go -------------------------------------------------------------------------------- /internal/handlers/repo/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/repo/handlers.go -------------------------------------------------------------------------------- /internal/handlers/repo/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/repo/handlers_test.go -------------------------------------------------------------------------------- /internal/handlers/static/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/static/handlers.go -------------------------------------------------------------------------------- /internal/handlers/static/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/static/handlers_test.go -------------------------------------------------------------------------------- /internal/handlers/static/testdata/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/static/testdata/image.png -------------------------------------------------------------------------------- /internal/handlers/static/testdata/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/static/testdata/image.svg -------------------------------------------------------------------------------- /internal/handlers/static/testdata/static/test.css: -------------------------------------------------------------------------------- 1 | testCssData 2 | -------------------------------------------------------------------------------- /internal/handlers/stats/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/stats/handlers.go -------------------------------------------------------------------------------- /internal/handlers/stats/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/stats/handlers_test.go -------------------------------------------------------------------------------- /internal/handlers/subscription/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/subscription/handlers.go -------------------------------------------------------------------------------- /internal/handlers/user/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/user/handlers.go -------------------------------------------------------------------------------- /internal/handlers/user/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/user/handlers_test.go -------------------------------------------------------------------------------- /internal/handlers/webhook/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/webhook/handlers.go -------------------------------------------------------------------------------- /internal/handlers/webhook/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/handlers/webhook/handlers_test.go -------------------------------------------------------------------------------- /internal/httpw/httpw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/httpw/httpw.go -------------------------------------------------------------------------------- /internal/hub/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/apikey.go -------------------------------------------------------------------------------- /internal/hub/authz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/authz.go -------------------------------------------------------------------------------- /internal/hub/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/errors.go -------------------------------------------------------------------------------- /internal/hub/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/event.go -------------------------------------------------------------------------------- /internal/hub/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/external.go -------------------------------------------------------------------------------- /internal/hub/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/index.go -------------------------------------------------------------------------------- /internal/hub/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/notification.go -------------------------------------------------------------------------------- /internal/hub/org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/org.go -------------------------------------------------------------------------------- /internal/hub/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/pkg.go -------------------------------------------------------------------------------- /internal/hub/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/repo.go -------------------------------------------------------------------------------- /internal/hub/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/stats.go -------------------------------------------------------------------------------- /internal/hub/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/subscription.go -------------------------------------------------------------------------------- /internal/hub/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/tracker.go -------------------------------------------------------------------------------- /internal/hub/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/user.go -------------------------------------------------------------------------------- /internal/hub/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/hub/webhook.go -------------------------------------------------------------------------------- /internal/img/img.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/img.go -------------------------------------------------------------------------------- /internal/img/img_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/img_test.go -------------------------------------------------------------------------------- /internal/img/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/mock.go -------------------------------------------------------------------------------- /internal/img/pg/pg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/pg/pg.go -------------------------------------------------------------------------------- /internal/img/pg/pg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/pg/pg_test.go -------------------------------------------------------------------------------- /internal/img/pg/testdata/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/pg/testdata/image.png -------------------------------------------------------------------------------- /internal/img/pg/testdata/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/pg/testdata/image.svg -------------------------------------------------------------------------------- /internal/img/testdata/invalid.png: -------------------------------------------------------------------------------- 1 | hola 2 | -------------------------------------------------------------------------------- /internal/img/testdata/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/testdata/valid.png -------------------------------------------------------------------------------- /internal/img/testdata/valid@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/testdata/valid@1x.png -------------------------------------------------------------------------------- /internal/img/testdata/valid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/testdata/valid@2x.png -------------------------------------------------------------------------------- /internal/img/testdata/valid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/testdata/valid@3x.png -------------------------------------------------------------------------------- /internal/img/testdata/valid@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/img/testdata/valid@4x.png -------------------------------------------------------------------------------- /internal/license/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/license/license.go -------------------------------------------------------------------------------- /internal/notification/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/notification/dispatcher.go -------------------------------------------------------------------------------- /internal/notification/dispatcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/notification/dispatcher_test.go -------------------------------------------------------------------------------- /internal/notification/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/notification/manager.go -------------------------------------------------------------------------------- /internal/notification/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/notification/manager_test.go -------------------------------------------------------------------------------- /internal/notification/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/notification/mock.go -------------------------------------------------------------------------------- /internal/notification/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/notification/worker.go -------------------------------------------------------------------------------- /internal/notification/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/notification/worker_test.go -------------------------------------------------------------------------------- /internal/oci/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/oci/mock.go -------------------------------------------------------------------------------- /internal/oci/oci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/oci/oci.go -------------------------------------------------------------------------------- /internal/org/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/org/manager.go -------------------------------------------------------------------------------- /internal/org/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/org/manager_test.go -------------------------------------------------------------------------------- /internal/org/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/org/mock.go -------------------------------------------------------------------------------- /internal/org/template/invitation_email.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/org/template/invitation_email.tmpl -------------------------------------------------------------------------------- /internal/pkg/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/manager.go -------------------------------------------------------------------------------- /internal/pkg/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/manager_test.go -------------------------------------------------------------------------------- /internal/pkg/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/metadata.go -------------------------------------------------------------------------------- /internal/pkg/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/metadata_test.go -------------------------------------------------------------------------------- /internal/pkg/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/mock.go -------------------------------------------------------------------------------- /internal/pkg/testdata/invalid.yml: -------------------------------------------------------------------------------- 1 | {" 2 | -------------------------------------------------------------------------------- /internal/pkg/testdata/no-version.yml: -------------------------------------------------------------------------------- 1 | version: "" 2 | -------------------------------------------------------------------------------- /internal/pkg/testdata/valid1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/testdata/valid1.yml -------------------------------------------------------------------------------- /internal/pkg/testdata/valid2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/testdata/valid2.yaml -------------------------------------------------------------------------------- /internal/pkg/views.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/views.go -------------------------------------------------------------------------------- /internal/pkg/views_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/pkg/views_test.go -------------------------------------------------------------------------------- /internal/repo/cloner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/cloner.go -------------------------------------------------------------------------------- /internal/repo/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/errors.go -------------------------------------------------------------------------------- /internal/repo/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/errors_test.go -------------------------------------------------------------------------------- /internal/repo/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/helm.go -------------------------------------------------------------------------------- /internal/repo/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/manager.go -------------------------------------------------------------------------------- /internal/repo/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/manager_test.go -------------------------------------------------------------------------------- /internal/repo/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/mock.go -------------------------------------------------------------------------------- /internal/repo/olm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/olm.go -------------------------------------------------------------------------------- /internal/repo/testdata/artifacthub-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/testdata/artifacthub-repo.yml -------------------------------------------------------------------------------- /internal/repo/testdata/invalid-repo-id/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | repositoryID: invalid 2 | -------------------------------------------------------------------------------- /internal/repo/testdata/invalid/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | {" 2 | -------------------------------------------------------------------------------- /internal/repo/testdata/test-yaml-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/repo/testdata/test-yaml-repo.yaml -------------------------------------------------------------------------------- /internal/scanner/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/scanner/mock.go -------------------------------------------------------------------------------- /internal/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/scanner/scanner.go -------------------------------------------------------------------------------- /internal/scanner/scanner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/scanner/scanner_test.go -------------------------------------------------------------------------------- /internal/stats/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/stats/mock.go -------------------------------------------------------------------------------- /internal/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/stats/stats.go -------------------------------------------------------------------------------- /internal/stats/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/stats/stats_test.go -------------------------------------------------------------------------------- /internal/subscription/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/subscription/manager.go -------------------------------------------------------------------------------- /internal/subscription/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/subscription/manager_test.go -------------------------------------------------------------------------------- /internal/subscription/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/subscription/mock.go -------------------------------------------------------------------------------- /internal/tests/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tests/db.go -------------------------------------------------------------------------------- /internal/tests/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tests/error.go -------------------------------------------------------------------------------- /internal/tests/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tests/http.go -------------------------------------------------------------------------------- /internal/tracker/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/category.go -------------------------------------------------------------------------------- /internal/tracker/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/helpers.go -------------------------------------------------------------------------------- /internal/tracker/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/helpers_test.go -------------------------------------------------------------------------------- /internal/tracker/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/mock.go -------------------------------------------------------------------------------- /internal/tracker/source/falco/falco.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/falco/falco.go -------------------------------------------------------------------------------- /internal/tracker/source/falco/falco_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/falco/falco_test.go -------------------------------------------------------------------------------- /internal/tracker/source/falco/testdata/path1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/tracker/source/falco/testdata/path2/test.yaml: -------------------------------------------------------------------------------- 1 | {" 2 | invalid 3 | -------------------------------------------------------------------------------- /internal/tracker/source/falco/testdata/path3/test.yaml: -------------------------------------------------------------------------------- 1 | kind: FalcoRules 2 | name: test 3 | version: invalid 4 | -------------------------------------------------------------------------------- /internal/tracker/source/generic/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/generic/generic.go -------------------------------------------------------------------------------- /internal/tracker/source/generic/testdata/path1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/tracker/source/generic/testdata/path2/artifacthub-pkg.yml: -------------------------------------------------------------------------------- 1 | { 2 | "key": 3 | -------------------------------------------------------------------------------- /internal/tracker/source/generic/testdata/path3/artifacthub-pkg.yml: -------------------------------------------------------------------------------- 1 | version: invalid 2 | -------------------------------------------------------------------------------- /internal/tracker/source/generic/testdata/path6/policy1.rego: -------------------------------------------------------------------------------- 1 | policy content 2 | -------------------------------------------------------------------------------- /internal/tracker/source/generic/testdata/path7/file1-rules.yaml: -------------------------------------------------------------------------------- 1 | falco rules 2 | -------------------------------------------------------------------------------- /internal/tracker/source/generic/testdata/path8/file1-rules.yaml: -------------------------------------------------------------------------------- 1 | falco rules 2 | -------------------------------------------------------------------------------- /internal/tracker/source/generic/testdata/path9/README.md: -------------------------------------------------------------------------------- 1 | # Package documentation in markdown format 2 | -------------------------------------------------------------------------------- /internal/tracker/source/generic/testdata/path9/policy1.rego: -------------------------------------------------------------------------------- 1 | policy content 2 | -------------------------------------------------------------------------------- /internal/tracker/source/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/helm/helm.go -------------------------------------------------------------------------------- /internal/tracker/source/helm/helm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/helm/helm_test.go -------------------------------------------------------------------------------- /internal/tracker/source/helmplugin/testdata/path1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/tracker/source/helmplugin/testdata/path2/plugin.yaml: -------------------------------------------------------------------------------- 1 | "{ 2 | invalid 3 | -------------------------------------------------------------------------------- /internal/tracker/source/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/helpers.go -------------------------------------------------------------------------------- /internal/tracker/source/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/helpers_test.go -------------------------------------------------------------------------------- /internal/tracker/source/krew/krew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/krew/krew.go -------------------------------------------------------------------------------- /internal/tracker/source/krew/krew_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/krew/krew_test.go -------------------------------------------------------------------------------- /internal/tracker/source/krew/testdata/path1/plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/tracker/source/krew/testdata/path2/plugins/manifest.yaml: -------------------------------------------------------------------------------- 1 | "{ 2 | invalid 3 | -------------------------------------------------------------------------------- /internal/tracker/source/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/mock.go -------------------------------------------------------------------------------- /internal/tracker/source/olm/olm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/olm/olm.go -------------------------------------------------------------------------------- /internal/tracker/source/olm/olm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/olm/olm_test.go -------------------------------------------------------------------------------- /internal/tracker/source/olm/testdata/path1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/tracker/source/tekton/tekton.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/tekton/tekton.go -------------------------------------------------------------------------------- /internal/tracker/source/tekton/testdata/path1/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/tracker/source/tekton/testdata/path3/task1/0.1/samples/sample1.yaml: -------------------------------------------------------------------------------- 1 | sample content 2 | -------------------------------------------------------------------------------- /internal/tracker/source/tekton/testdata/path4/pipeline1/0.1/samples/sample1.yaml: -------------------------------------------------------------------------------- 1 | sample content 2 | -------------------------------------------------------------------------------- /internal/tracker/source/tekton/testdata/path5/stepaction1/0.1/samples/sample1.yaml: -------------------------------------------------------------------------------- 1 | sample content 2 | -------------------------------------------------------------------------------- /internal/tracker/source/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/source/tests.go -------------------------------------------------------------------------------- /internal/tracker/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/tracker.go -------------------------------------------------------------------------------- /internal/tracker/tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/tracker/tracker_test.go -------------------------------------------------------------------------------- /internal/user/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/user/manager.go -------------------------------------------------------------------------------- /internal/user/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/user/manager_test.go -------------------------------------------------------------------------------- /internal/user/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/user/mock.go -------------------------------------------------------------------------------- /internal/util/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/config.go -------------------------------------------------------------------------------- /internal/util/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/config_test.go -------------------------------------------------------------------------------- /internal/util/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/db.go -------------------------------------------------------------------------------- /internal/util/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/file.go -------------------------------------------------------------------------------- /internal/util/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/http.go -------------------------------------------------------------------------------- /internal/util/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/image.go -------------------------------------------------------------------------------- /internal/util/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/image_test.go -------------------------------------------------------------------------------- /internal/util/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/logger.go -------------------------------------------------------------------------------- /internal/util/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/util/logger_test.go -------------------------------------------------------------------------------- /internal/webhook/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/webhook/manager.go -------------------------------------------------------------------------------- /internal/webhook/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/webhook/manager_test.go -------------------------------------------------------------------------------- /internal/webhook/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/internal/webhook/mock.go -------------------------------------------------------------------------------- /ml/category/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ml/category/category.py -------------------------------------------------------------------------------- /ml/category/data/csv/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ml/category/data/csv/test.csv -------------------------------------------------------------------------------- /ml/category/data/csv/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ml/category/data/csv/train.csv -------------------------------------------------------------------------------- /ml/category/model/keras_metadata.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ml/category/model/keras_metadata.pb -------------------------------------------------------------------------------- /ml/category/model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ml/category/model/saved_model.pb -------------------------------------------------------------------------------- /ml/category/model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ml/category/model/variables/variables.index -------------------------------------------------------------------------------- /ml/category/scripts/classifier/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/ml/category/scripts/classifier/main.go -------------------------------------------------------------------------------- /public/categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/public/categories/index.xml -------------------------------------------------------------------------------- /public/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/public/index.xml -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/public/tags/index.xml -------------------------------------------------------------------------------- /scripts/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/scripts/docker-build.sh -------------------------------------------------------------------------------- /scripts/prepare-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/scripts/prepare-docs.sh -------------------------------------------------------------------------------- /web/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/.eslintrc -------------------------------------------------------------------------------- /web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/.prettierrc -------------------------------------------------------------------------------- /web/decs.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-diff-view'; 2 | -------------------------------------------------------------------------------- /web/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/eslint.config.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/index.html -------------------------------------------------------------------------------- /web/jest.setup.js: -------------------------------------------------------------------------------- 1 | jest.setTimeout(30000); 2 | -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/maintenance.html -------------------------------------------------------------------------------- /web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/manifest.json -------------------------------------------------------------------------------- /web/public/static/js/docsRedirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/js/docsRedirection.js -------------------------------------------------------------------------------- /web/public/static/js/fixFirefoxNightMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/js/fixFirefoxNightMode.js -------------------------------------------------------------------------------- /web/public/static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/js/theme.js -------------------------------------------------------------------------------- /web/public/static/media/argo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/argo-light.svg -------------------------------------------------------------------------------- /web/public/static/media/argo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/argo.svg -------------------------------------------------------------------------------- /web/public/static/media/argo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/argo_icon.png -------------------------------------------------------------------------------- /web/public/static/media/arrow-repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/arrow-repeat.svg -------------------------------------------------------------------------------- /web/public/static/media/artifactHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/artifactHub.png -------------------------------------------------------------------------------- /web/public/static/media/artifactHub_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/artifactHub_v2.png -------------------------------------------------------------------------------- /web/public/static/media/backstage-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/backstage-light.svg -------------------------------------------------------------------------------- /web/public/static/media/backstage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/backstage.svg -------------------------------------------------------------------------------- /web/public/static/media/backstage_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/backstage_icon.png -------------------------------------------------------------------------------- /web/public/static/media/bootc-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/bootc-light.svg -------------------------------------------------------------------------------- /web/public/static/media/bootc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/bootc.svg -------------------------------------------------------------------------------- /web/public/static/media/bootc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/bootc_icon.png -------------------------------------------------------------------------------- /web/public/static/media/cncf-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/cncf-icon.svg -------------------------------------------------------------------------------- /web/public/static/media/cncf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/cncf.svg -------------------------------------------------------------------------------- /web/public/static/media/container-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/container-light.svg -------------------------------------------------------------------------------- /web/public/static/media/container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/container.svg -------------------------------------------------------------------------------- /web/public/static/media/container_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/container_icon.png -------------------------------------------------------------------------------- /web/public/static/media/coredns-plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/coredns-plugin.svg -------------------------------------------------------------------------------- /web/public/static/media/coredns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/coredns.svg -------------------------------------------------------------------------------- /web/public/static/media/coredns_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/coredns_icon.png -------------------------------------------------------------------------------- /web/public/static/media/falco-rules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/falco-rules.svg -------------------------------------------------------------------------------- /web/public/static/media/falco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/falco.svg -------------------------------------------------------------------------------- /web/public/static/media/falco_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/falco_icon.png -------------------------------------------------------------------------------- /web/public/static/media/gatekeeper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/gatekeeper.svg -------------------------------------------------------------------------------- /web/public/static/media/gatekeeper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/gatekeeper_icon.png -------------------------------------------------------------------------------- /web/public/static/media/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/github-mark.svg -------------------------------------------------------------------------------- /web/public/static/media/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/google.svg -------------------------------------------------------------------------------- /web/public/static/media/headlamp-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/headlamp-light.svg -------------------------------------------------------------------------------- /web/public/static/media/headlamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/headlamp.svg -------------------------------------------------------------------------------- /web/public/static/media/headlamp_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/headlamp_icon.png -------------------------------------------------------------------------------- /web/public/static/media/helm-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/helm-chart.svg -------------------------------------------------------------------------------- /web/public/static/media/helm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/helm.svg -------------------------------------------------------------------------------- /web/public/static/media/helm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/helm_icon.png -------------------------------------------------------------------------------- /web/public/static/media/kagent-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kagent-light.svg -------------------------------------------------------------------------------- /web/public/static/media/kagent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kagent.svg -------------------------------------------------------------------------------- /web/public/static/media/kagent_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kagent_icon.png -------------------------------------------------------------------------------- /web/public/static/media/kcl-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kcl-light.svg -------------------------------------------------------------------------------- /web/public/static/media/kcl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kcl.svg -------------------------------------------------------------------------------- /web/public/static/media/kcl_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kcl_icon.png -------------------------------------------------------------------------------- /web/public/static/media/keda-scaler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/keda-scaler.svg -------------------------------------------------------------------------------- /web/public/static/media/keptn_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/keptn_icon.png -------------------------------------------------------------------------------- /web/public/static/media/knative-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/knative-light.svg -------------------------------------------------------------------------------- /web/public/static/media/knative.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/knative.svg -------------------------------------------------------------------------------- /web/public/static/media/knative_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/knative_icon.png -------------------------------------------------------------------------------- /web/public/static/media/krew-plugins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/krew-plugins.svg -------------------------------------------------------------------------------- /web/public/static/media/krew_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/krew_icon.png -------------------------------------------------------------------------------- /web/public/static/media/kubearmor-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kubearmor-light.svg -------------------------------------------------------------------------------- /web/public/static/media/kubearmor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kubearmor.svg -------------------------------------------------------------------------------- /web/public/static/media/kubearmor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kubearmor_icon.png -------------------------------------------------------------------------------- /web/public/static/media/kubernetes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kubernetes.svg -------------------------------------------------------------------------------- /web/public/static/media/kubewarden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kubewarden.svg -------------------------------------------------------------------------------- /web/public/static/media/kyverno-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kyverno-light.svg -------------------------------------------------------------------------------- /web/public/static/media/kyverno.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kyverno.svg -------------------------------------------------------------------------------- /web/public/static/media/kyverno_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/kyverno_icon.png -------------------------------------------------------------------------------- /web/public/static/media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/logo.png -------------------------------------------------------------------------------- /web/public/static/media/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/logo192.png -------------------------------------------------------------------------------- /web/public/static/media/logo192_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/logo192_v2.png -------------------------------------------------------------------------------- /web/public/static/media/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/logo512.png -------------------------------------------------------------------------------- /web/public/static/media/logo512_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/logo512_v2.png -------------------------------------------------------------------------------- /web/public/static/media/logo_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/logo_v2.png -------------------------------------------------------------------------------- /web/public/static/media/meshery-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/meshery-light.svg -------------------------------------------------------------------------------- /web/public/static/media/meshery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/meshery.svg -------------------------------------------------------------------------------- /web/public/static/media/meshery_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/meshery_icon.png -------------------------------------------------------------------------------- /web/public/static/media/olm-operators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/olm-operators.svg -------------------------------------------------------------------------------- /web/public/static/media/olm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/olm.svg -------------------------------------------------------------------------------- /web/public/static/media/olm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/olm_icon.png -------------------------------------------------------------------------------- /web/public/static/media/opa-policies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/opa-policies.svg -------------------------------------------------------------------------------- /web/public/static/media/opa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/opa.svg -------------------------------------------------------------------------------- /web/public/static/media/opa_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/opa_icon.png -------------------------------------------------------------------------------- /web/public/static/media/opencost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/opencost.svg -------------------------------------------------------------------------------- /web/public/static/media/opencost_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/opencost_icon.png -------------------------------------------------------------------------------- /web/public/static/media/openid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/openid.svg -------------------------------------------------------------------------------- /web/public/static/media/radius-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/radius-light.svg -------------------------------------------------------------------------------- /web/public/static/media/radius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/radius.svg -------------------------------------------------------------------------------- /web/public/static/media/radius_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/radius_icon.png -------------------------------------------------------------------------------- /web/public/static/media/tbaction_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/tbaction_icon.png -------------------------------------------------------------------------------- /web/public/static/media/tekton-pkg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/tekton-pkg.svg -------------------------------------------------------------------------------- /web/public/static/media/tekton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/public/static/media/tekton.svg -------------------------------------------------------------------------------- /web/src/analytics/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/analytics/analytics.ts -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/1.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/10.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/11.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/12.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/13.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/14a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/14a.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/14b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/14b.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/14c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/14c.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/14d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/14d.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/15.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/16.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/17.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/18.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/19.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/2.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/20.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/21.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/22.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/23.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/24.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/25.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/26.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/27.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/28.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/29.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/3.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/30.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/31.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/32.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/33.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/34.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/35.json: -------------------------------------------------------------------------------- 1 | { 2 | "result": "https://play.openpolicyagent.org/p/wkFwnwti9Z" 3 | } 4 | -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/36.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/37.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/38.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/39.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/4.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/40.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/41.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/42.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/43.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/44.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/5.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/6.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/7.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/8.json -------------------------------------------------------------------------------- /web/src/api/__fixtures__/index/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__fixtures__/index/9.json -------------------------------------------------------------------------------- /web/src/api/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/__mocks__/index.ts -------------------------------------------------------------------------------- /web/src/api/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/index.test.tsx -------------------------------------------------------------------------------- /web/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/api/index.ts -------------------------------------------------------------------------------- /web/src/context/AppCtx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/context/AppCtx.tsx -------------------------------------------------------------------------------- /web/src/hooks/useBodyScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/hooks/useBodyScroll.ts -------------------------------------------------------------------------------- /web/src/hooks/useBreakpointDetect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/hooks/useBreakpointDetect.ts -------------------------------------------------------------------------------- /web/src/hooks/useIsMounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/hooks/useIsMounted.ts -------------------------------------------------------------------------------- /web/src/hooks/useOnLocationChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/hooks/useOnLocationChange.tsx -------------------------------------------------------------------------------- /web/src/hooks/useOutsideClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/hooks/useOutsideClick.ts -------------------------------------------------------------------------------- /web/src/hooks/useOverflowWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/hooks/useOverflowWrapper.ts -------------------------------------------------------------------------------- /web/src/hooks/useScrollRestorationFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/hooks/useScrollRestorationFix.ts -------------------------------------------------------------------------------- /web/src/hooks/useSystemThemeMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/hooks/useSystemThemeMode.ts -------------------------------------------------------------------------------- /web/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/index.tsx -------------------------------------------------------------------------------- /web/src/jsonschema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/jsonschema.ts -------------------------------------------------------------------------------- /web/src/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/jsx.d.ts -------------------------------------------------------------------------------- /web/src/layout/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/App.css -------------------------------------------------------------------------------- /web/src/layout/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/App.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Alert.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Alert.module.css -------------------------------------------------------------------------------- /web/src/layout/common/Alert.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Alert.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Alert.tsx -------------------------------------------------------------------------------- /web/src/layout/common/AlertController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/AlertController.tsx -------------------------------------------------------------------------------- /web/src/layout/common/AnchorHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/AnchorHeader.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Checkbox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Checkbox.module.css -------------------------------------------------------------------------------- /web/src/layout/common/Checkbox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Checkbox.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Checkbox.tsx -------------------------------------------------------------------------------- /web/src/layout/common/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/CodeEditor.tsx -------------------------------------------------------------------------------- /web/src/layout/common/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/ErrorBoundary.tsx -------------------------------------------------------------------------------- /web/src/layout/common/ExpandableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/ExpandableList.tsx -------------------------------------------------------------------------------- /web/src/layout/common/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/ExternalLink.tsx -------------------------------------------------------------------------------- /web/src/layout/common/FullScreenModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/FullScreenModal.tsx -------------------------------------------------------------------------------- /web/src/layout/common/HoverableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/HoverableItem.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Image.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Image.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Image.tsx -------------------------------------------------------------------------------- /web/src/layout/common/InputField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/InputField.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/InputField.tsx -------------------------------------------------------------------------------- /web/src/layout/common/InputFileField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/InputFileField.tsx -------------------------------------------------------------------------------- /web/src/layout/common/InputTypeahead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/InputTypeahead.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Label.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Label.module.css -------------------------------------------------------------------------------- /web/src/layout/common/Label.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Label.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Label.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Loading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Loading.module.css -------------------------------------------------------------------------------- /web/src/layout/common/Loading.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Loading.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Loading.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Modal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Modal.module.css -------------------------------------------------------------------------------- /web/src/layout/common/Modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Modal.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Modal.tsx -------------------------------------------------------------------------------- /web/src/layout/common/NoData.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/NoData.module.css -------------------------------------------------------------------------------- /web/src/layout/common/NoData.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/NoData.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/NoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/NoData.tsx -------------------------------------------------------------------------------- /web/src/layout/common/PackageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/PackageCard.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Pagination.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Pagination.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Pagination.tsx -------------------------------------------------------------------------------- /web/src/layout/common/RSSLinkTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/RSSLinkTitle.tsx -------------------------------------------------------------------------------- /web/src/layout/common/RepositoryIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/RepositoryIcon.tsx -------------------------------------------------------------------------------- /web/src/layout/common/RepositoryInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/RepositoryInfo.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SampleQueries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SampleQueries.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SearchBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SearchBar.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SearchBar.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SearchPackages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SearchPackages.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SearchTipsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SearchTipsModal.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SectionPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SectionPanel.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SecurityRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SecurityRating.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SeeAllModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SeeAllModal.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Sidebar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Sidebar.module.css -------------------------------------------------------------------------------- /web/src/layout/common/Sidebar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Sidebar.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Sidebar.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SmallTite.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SmallTite.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/SmallTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/SmallTitle.tsx -------------------------------------------------------------------------------- /web/src/layout/common/StarBadge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/StarBadge.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/StarBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/StarBadge.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Tabs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Tabs.module.css -------------------------------------------------------------------------------- /web/src/layout/common/Tabs.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Tabs.test.tsx -------------------------------------------------------------------------------- /web/src/layout/common/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/Tabs.tsx -------------------------------------------------------------------------------- /web/src/layout/common/ValuesSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/ValuesSearch.tsx -------------------------------------------------------------------------------- /web/src/layout/common/badges/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/badges/Badge.tsx -------------------------------------------------------------------------------- /web/src/layout/common/badges/CNCF.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/badges/CNCF.tsx -------------------------------------------------------------------------------- /web/src/layout/common/badges/Official.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/badges/Official.tsx -------------------------------------------------------------------------------- /web/src/layout/common/badges/Signed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/common/badges/Signed.tsx -------------------------------------------------------------------------------- /web/src/layout/controlPanel/ActionBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/controlPanel/ActionBtn.tsx -------------------------------------------------------------------------------- /web/src/layout/controlPanel/__fixtures__/UserContext/5.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /web/src/layout/controlPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/controlPanel/index.tsx -------------------------------------------------------------------------------- /web/src/layout/controlPanel/members/__fixtures__/index/4.json: -------------------------------------------------------------------------------- 1 | { "items": [], "paginationTotalCount": "0" } 2 | -------------------------------------------------------------------------------- /web/src/layout/controlPanel/organizations/Form.module.css: -------------------------------------------------------------------------------- 1 | .label { 2 | font-size: 0.875rem; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/layout/controlPanel/repositories/__fixtures__/index/4.json: -------------------------------------------------------------------------------- 1 | { "items": [], "paginationTotalCount": "0" } 2 | -------------------------------------------------------------------------------- /web/src/layout/controlPanel/settings/userSettings/subscriptions/repositories/__fixtures__/index/4.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /web/src/layout/controlPanel/settings/webhooks/__fixtures__/index/3.json: -------------------------------------------------------------------------------- 1 | { "items": [], "paginationTotalCount": "0" } 2 | -------------------------------------------------------------------------------- /web/src/layout/controlPanel/settings/webhooks/__fixtures__/index/4.json: -------------------------------------------------------------------------------- 1 | { "items": [], "paginationTotalCount": "0" } 2 | -------------------------------------------------------------------------------- /web/src/layout/home/AccountDeletion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/AccountDeletion.tsx -------------------------------------------------------------------------------- /web/src/layout/home/Counter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/Counter.module.css -------------------------------------------------------------------------------- /web/src/layout/home/Counter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/Counter.test.tsx -------------------------------------------------------------------------------- /web/src/layout/home/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/Counter.tsx -------------------------------------------------------------------------------- /web/src/layout/home/HomeView.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/HomeView.module.css -------------------------------------------------------------------------------- /web/src/layout/home/RandomPackages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/RandomPackages.tsx -------------------------------------------------------------------------------- /web/src/layout/home/SearchTip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/SearchTip.module.css -------------------------------------------------------------------------------- /web/src/layout/home/SearchTip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/SearchTip.test.tsx -------------------------------------------------------------------------------- /web/src/layout/home/SearchTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/SearchTip.tsx -------------------------------------------------------------------------------- /web/src/layout/home/UserConfirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/UserConfirmation.tsx -------------------------------------------------------------------------------- /web/src/layout/home/__fixtures__/RandomPackages/3.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /web/src/layout/home/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/index.test.tsx -------------------------------------------------------------------------------- /web/src/layout/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/home/index.tsx -------------------------------------------------------------------------------- /web/src/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/index.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/BannerMOTD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/BannerMOTD.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/Footer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/Footer.test.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/Footer.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/LogIn.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/LogIn.test.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/LogIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/LogIn.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/LogOut.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/LogOut.test.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/LogOut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/LogOut.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/Navbar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/Navbar.test.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/Navbar.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/OAuth.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/OAuth.test.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/OAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/OAuth.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/SignUp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/SignUp.test.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/SignUp.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/SubNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/SubNavbar.tsx -------------------------------------------------------------------------------- /web/src/layout/navigation/ThemeMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/navigation/ThemeMode.tsx -------------------------------------------------------------------------------- /web/src/layout/notFound/NotFound.module.css: -------------------------------------------------------------------------------- 1 | .icon { 2 | font-size: 4rem; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/layout/notFound/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/notFound/index.test.tsx -------------------------------------------------------------------------------- /web/src/layout/notFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/notFound/index.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Banner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Banner.module.css -------------------------------------------------------------------------------- /web/src/layout/package/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Banner.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Dependencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Dependencies.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Details.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Details.module.css -------------------------------------------------------------------------------- /web/src/layout/package/Details.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Details.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Details.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Flavors.module.css: -------------------------------------------------------------------------------- 1 | .text { 2 | font-size: 0.9rem; 3 | line-height: 1.25; 4 | } 5 | -------------------------------------------------------------------------------- /web/src/layout/package/Flavors.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Flavors.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Flavors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Flavors.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Keywords.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Keywords.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Keywords.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Keywords.tsx -------------------------------------------------------------------------------- /web/src/layout/package/License.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/License.module.css -------------------------------------------------------------------------------- /web/src/layout/package/License.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/License.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/License.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/License.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Links.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Links.module.css -------------------------------------------------------------------------------- /web/src/layout/package/Links.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Links.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Links.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Maintainers.module.css: -------------------------------------------------------------------------------- 1 | .linkText { 2 | font-size: 0.9rem; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/layout/package/Maintainers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Maintainers.tsx -------------------------------------------------------------------------------- /web/src/layout/package/ModalHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/ModalHeader.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Platforms.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Platforms.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Platforms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Platforms.tsx -------------------------------------------------------------------------------- /web/src/layout/package/SignKeyInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/SignKeyInfo.tsx -------------------------------------------------------------------------------- /web/src/layout/package/StarButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/StarButton.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Stats.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Stats.module.css -------------------------------------------------------------------------------- /web/src/layout/package/Stats.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Stats.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Stats.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Version.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Version.module.css -------------------------------------------------------------------------------- /web/src/layout/package/Version.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Version.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/Version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/Version.tsx -------------------------------------------------------------------------------- /web/src/layout/package/VersionInRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/VersionInRow.tsx -------------------------------------------------------------------------------- /web/src/layout/package/VersionsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/VersionsModal.tsx -------------------------------------------------------------------------------- /web/src/layout/package/WidgetModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/WidgetModal.tsx -------------------------------------------------------------------------------- /web/src/layout/package/chartTemplates/__fixtures__/index/6.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": {} 3 | } 4 | -------------------------------------------------------------------------------- /web/src/layout/package/chartTemplates/__fixtures__/index/8.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": {} 3 | } 4 | -------------------------------------------------------------------------------- /web/src/layout/package/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/index.test.tsx -------------------------------------------------------------------------------- /web/src/layout/package/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/index.tsx -------------------------------------------------------------------------------- /web/src/layout/package/readme/Readme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/readme/Readme.tsx -------------------------------------------------------------------------------- /web/src/layout/package/readme/TOC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/readme/TOC.tsx -------------------------------------------------------------------------------- /web/src/layout/package/readme/TOCList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/readme/TOCList.tsx -------------------------------------------------------------------------------- /web/src/layout/package/readme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/readme/index.tsx -------------------------------------------------------------------------------- /web/src/layout/package/values/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/package/values/index.tsx -------------------------------------------------------------------------------- /web/src/layout/search/FilterBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/search/FilterBadge.tsx -------------------------------------------------------------------------------- /web/src/layout/search/Filters.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/search/Filters.module.css -------------------------------------------------------------------------------- /web/src/layout/search/Filters.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/search/Filters.test.tsx -------------------------------------------------------------------------------- /web/src/layout/search/Filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/search/Filters.tsx -------------------------------------------------------------------------------- /web/src/layout/search/PaginationLimit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/search/PaginationLimit.tsx -------------------------------------------------------------------------------- /web/src/layout/search/SortOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/search/SortOptions.tsx -------------------------------------------------------------------------------- /web/src/layout/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/search/index.tsx -------------------------------------------------------------------------------- /web/src/layout/starredPackages/__fixtures__/index/5.json: -------------------------------------------------------------------------------- 1 | { "items": [], "paginationTotalCount": "0" } 2 | -------------------------------------------------------------------------------- /web/src/layout/starredPackages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/starredPackages/index.tsx -------------------------------------------------------------------------------- /web/src/layout/stats/BrushChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/stats/BrushChart.tsx -------------------------------------------------------------------------------- /web/src/layout/stats/PackagesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/stats/PackagesList.tsx -------------------------------------------------------------------------------- /web/src/layout/stats/StatsView.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/stats/StatsView.module.css -------------------------------------------------------------------------------- /web/src/layout/stats/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/stats/index.test.tsx -------------------------------------------------------------------------------- /web/src/layout/stats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/layout/stats/index.tsx -------------------------------------------------------------------------------- /web/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/src/remark-plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/remark-plugins.d.ts -------------------------------------------------------------------------------- /web/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/setupTests.ts -------------------------------------------------------------------------------- /web/src/themes/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/themes/dark.scss -------------------------------------------------------------------------------- /web/src/themes/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/themes/default.scss -------------------------------------------------------------------------------- /web/src/themes/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/themes/light.scss -------------------------------------------------------------------------------- /web/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/types.ts -------------------------------------------------------------------------------- /web/src/utils/alertDispatcher.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/alertDispatcher.test.tsx -------------------------------------------------------------------------------- /web/src/utils/alertDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/alertDispatcher.ts -------------------------------------------------------------------------------- /web/src/utils/authorizer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/authorizer.test.tsx -------------------------------------------------------------------------------- /web/src/utils/authorizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/authorizer.ts -------------------------------------------------------------------------------- /web/src/utils/bannerDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/bannerDispatcher.ts -------------------------------------------------------------------------------- /web/src/utils/browserDetect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/browserDetect.ts -------------------------------------------------------------------------------- /web/src/utils/buildPackageURL.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/buildPackageURL.test.tsx -------------------------------------------------------------------------------- /web/src/utils/buildPackageURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/buildPackageURL.ts -------------------------------------------------------------------------------- /web/src/utils/buildSearchParams.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/buildSearchParams.test.tsx -------------------------------------------------------------------------------- /web/src/utils/buildSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/buildSearchParams.ts -------------------------------------------------------------------------------- /web/src/utils/calculateDiffInYears.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/calculateDiffInYears.tsx -------------------------------------------------------------------------------- /web/src/utils/capitalizeFirstLetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/capitalizeFirstLetter.ts -------------------------------------------------------------------------------- /web/src/utils/checkCodeLanguage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/checkCodeLanguage.test.ts -------------------------------------------------------------------------------- /web/src/utils/checkCodeLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/checkCodeLanguage.ts -------------------------------------------------------------------------------- /web/src/utils/cleanLoginUrlParams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/cleanLoginUrlParams.tsx -------------------------------------------------------------------------------- /web/src/utils/cleanTOCEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/cleanTOCEntry.ts -------------------------------------------------------------------------------- /web/src/utils/compoundErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/compoundErrorMessage.ts -------------------------------------------------------------------------------- /web/src/utils/compoundJSONSchemaYAML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/compoundJSONSchemaYAML.ts -------------------------------------------------------------------------------- /web/src/utils/cutString.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/cutString.test.tsx -------------------------------------------------------------------------------- /web/src/utils/cutString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/cutString.tsx -------------------------------------------------------------------------------- /web/src/utils/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/data.tsx -------------------------------------------------------------------------------- /web/src/utils/dereference.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/dereference.test.tsx -------------------------------------------------------------------------------- /web/src/utils/dereference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/dereference.ts -------------------------------------------------------------------------------- /web/src/utils/detectActiveThemeMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/detectActiveThemeMode.ts -------------------------------------------------------------------------------- /web/src/utils/detectLinksInText.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/detectLinksInText.test.tsx -------------------------------------------------------------------------------- /web/src/utils/detectLinksInText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/detectLinksInText.tsx -------------------------------------------------------------------------------- /web/src/utils/escapeRegExp.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/escapeRegExp.test.tsx -------------------------------------------------------------------------------- /web/src/utils/escapeRegExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/escapeRegExp.ts -------------------------------------------------------------------------------- /web/src/utils/extractReadmeTOC.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/extractReadmeTOC.test.tsx -------------------------------------------------------------------------------- /web/src/utils/extractReadmeTOC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/extractReadmeTOC.ts -------------------------------------------------------------------------------- /web/src/utils/findClosestNumberIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/findClosestNumberIndex.ts -------------------------------------------------------------------------------- /web/src/utils/formatCVSS.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/formatCVSS.test.tsx -------------------------------------------------------------------------------- /web/src/utils/formatCVSS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/formatCVSS.ts -------------------------------------------------------------------------------- /web/src/utils/formatChartTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/formatChartTemplates.ts -------------------------------------------------------------------------------- /web/src/utils/formatSecurityReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/formatSecurityReport.ts -------------------------------------------------------------------------------- /web/src/utils/formatStringForYAML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/formatStringForYAML.ts -------------------------------------------------------------------------------- /web/src/utils/getAnchorValue.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getAnchorValue.test.tsx -------------------------------------------------------------------------------- /web/src/utils/getAnchorValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getAnchorValue.ts -------------------------------------------------------------------------------- /web/src/utils/getGitHostingProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getGitHostingProvider.tsx -------------------------------------------------------------------------------- /web/src/utils/getInstallMethods.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getInstallMethods.test.tsx -------------------------------------------------------------------------------- /web/src/utils/getInstallMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getInstallMethods.ts -------------------------------------------------------------------------------- /web/src/utils/getMetaTag.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getMetaTag.test.tsx -------------------------------------------------------------------------------- /web/src/utils/getMetaTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getMetaTag.ts -------------------------------------------------------------------------------- /web/src/utils/getSampleQueries.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getSampleQueries.test.tsx -------------------------------------------------------------------------------- /web/src/utils/getSampleQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/getSampleQueries.ts -------------------------------------------------------------------------------- /web/src/utils/history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/history.tsx -------------------------------------------------------------------------------- /web/src/utils/isFuture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isFuture.ts -------------------------------------------------------------------------------- /web/src/utils/isPackageOfficial.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isPackageOfficial.test.tsx -------------------------------------------------------------------------------- /web/src/utils/isPackageOfficial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isPackageOfficial.ts -------------------------------------------------------------------------------- /web/src/utils/isValidJSON.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isValidJSON.test.tsx -------------------------------------------------------------------------------- /web/src/utils/isValidJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isValidJSON.ts -------------------------------------------------------------------------------- /web/src/utils/isValidURL.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isValidURL.test.tsx -------------------------------------------------------------------------------- /web/src/utils/isValidURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isValidURL.ts -------------------------------------------------------------------------------- /web/src/utils/isVisibleItemInContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isVisibleItemInContainer.ts -------------------------------------------------------------------------------- /web/src/utils/isWhiteLabel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isWhiteLabel.test.tsx -------------------------------------------------------------------------------- /web/src/utils/isWhiteLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/isWhiteLabel.ts -------------------------------------------------------------------------------- /web/src/utils/localStoragePreferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/localStoragePreferences.ts -------------------------------------------------------------------------------- /web/src/utils/minutesToNearestInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/minutesToNearestInterval.ts -------------------------------------------------------------------------------- /web/src/utils/notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/notifications.json -------------------------------------------------------------------------------- /web/src/utils/prepareMarkdownTOC.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/prepareMarkdownTOC.test.tsx -------------------------------------------------------------------------------- /web/src/utils/prepareMarkdownTOC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/prepareMarkdownTOC.ts -------------------------------------------------------------------------------- /web/src/utils/prepareQueryString.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/prepareQueryString.test.tsx -------------------------------------------------------------------------------- /web/src/utils/prepareQueryString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/prepareQueryString.ts -------------------------------------------------------------------------------- /web/src/utils/prettifyNumber.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/prettifyNumber.test.tsx -------------------------------------------------------------------------------- /web/src/utils/prettifyNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/prettifyNumber.ts -------------------------------------------------------------------------------- /web/src/utils/processHelmTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/processHelmTemplate.tsx -------------------------------------------------------------------------------- /web/src/utils/removeEmojis.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/removeEmojis.test.tsx -------------------------------------------------------------------------------- /web/src/utils/removeEmojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/removeEmojis.ts -------------------------------------------------------------------------------- /web/src/utils/removeUrlProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/removeUrlProtocol.ts -------------------------------------------------------------------------------- /web/src/utils/renameKeysInObject.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/renameKeysInObject.test.tsx -------------------------------------------------------------------------------- /web/src/utils/renameKeysInObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/renameKeysInObject.ts -------------------------------------------------------------------------------- /web/src/utils/repoKind.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/repoKind.test.tsx -------------------------------------------------------------------------------- /web/src/utils/repoKind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/repoKind.ts -------------------------------------------------------------------------------- /web/src/utils/scrollToTop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/scrollToTop.ts -------------------------------------------------------------------------------- /web/src/utils/sortPackageVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/sortPackageVersions.ts -------------------------------------------------------------------------------- /web/src/utils/sortVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/sortVersions.ts -------------------------------------------------------------------------------- /web/src/utils/stringifyPolicyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/stringifyPolicyData.ts -------------------------------------------------------------------------------- /web/src/utils/sumObjectValues.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/sumObjectValues.test.tsx -------------------------------------------------------------------------------- /web/src/utils/sumObjectValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/sumObjectValues.ts -------------------------------------------------------------------------------- /web/src/utils/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/testUtils.ts -------------------------------------------------------------------------------- /web/src/utils/themeBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/themeBuilder.ts -------------------------------------------------------------------------------- /web/src/utils/trimPrefix.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/trimPrefix.test.tsx -------------------------------------------------------------------------------- /web/src/utils/trimPrefix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/trimPrefix.tsx -------------------------------------------------------------------------------- /web/src/utils/updateMetaIndex.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/updateMetaIndex.test.tsx -------------------------------------------------------------------------------- /web/src/utils/updateMetaIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/updateMetaIndex.ts -------------------------------------------------------------------------------- /web/src/utils/viewsStats.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/viewsStats.test.tsx -------------------------------------------------------------------------------- /web/src/utils/viewsStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/viewsStats.ts -------------------------------------------------------------------------------- /web/src/utils/vulnerabilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/src/utils/vulnerabilities.ts -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/vite.config.ts -------------------------------------------------------------------------------- /web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/web/yarn.lock -------------------------------------------------------------------------------- /widget/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/.prettierrc -------------------------------------------------------------------------------- /widget/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/eslint.config.js -------------------------------------------------------------------------------- /widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/index.html -------------------------------------------------------------------------------- /widget/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/package.json -------------------------------------------------------------------------------- /widget/src/api/__fixtures__/index/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/api/__fixtures__/index/1.json -------------------------------------------------------------------------------- /widget/src/api/__fixtures__/index/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/api/__fixtures__/index/2.json -------------------------------------------------------------------------------- /widget/src/api/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/api/index.test.tsx -------------------------------------------------------------------------------- /widget/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/api/index.ts -------------------------------------------------------------------------------- /widget/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/index.tsx -------------------------------------------------------------------------------- /widget/src/jest-shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/jest-shim.d.ts -------------------------------------------------------------------------------- /widget/src/layout/Group.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/Group.test.tsx -------------------------------------------------------------------------------- /widget/src/layout/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/Group.tsx -------------------------------------------------------------------------------- /widget/src/layout/Widget.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/Widget.test.tsx -------------------------------------------------------------------------------- /widget/src/layout/Widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/Widget.tsx -------------------------------------------------------------------------------- /widget/src/layout/common/Image.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/common/Image.test.tsx -------------------------------------------------------------------------------- /widget/src/layout/common/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/common/Image.tsx -------------------------------------------------------------------------------- /widget/src/layout/common/Label.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/common/Label.test.tsx -------------------------------------------------------------------------------- /widget/src/layout/common/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/common/Label.tsx -------------------------------------------------------------------------------- /widget/src/layout/common/Loading.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/common/Loading.test.tsx -------------------------------------------------------------------------------- /widget/src/layout/common/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/common/Loading.tsx -------------------------------------------------------------------------------- /widget/src/layout/common/SVGIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/layout/common/SVGIcons.tsx -------------------------------------------------------------------------------- /widget/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /widget/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/setupTests.ts -------------------------------------------------------------------------------- /widget/src/shims/prop-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/shims/prop-types.js -------------------------------------------------------------------------------- /widget/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/src/types.ts -------------------------------------------------------------------------------- /widget/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/tsconfig.json -------------------------------------------------------------------------------- /widget/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/vite.config.ts -------------------------------------------------------------------------------- /widget/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artifacthub/hub/HEAD/widget/yarn.lock --------------------------------------------------------------------------------