├── .env.dist ├── .git-branches.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── build-docker-image │ │ └── action.yaml └── workflows │ ├── git-town.yaml │ ├── license-check.yaml │ ├── lint-frontend.yml │ ├── pr-title-lint.yml │ ├── production-cache-flush.yaml │ ├── production-deploy.yaml │ ├── staging-deploy.yaml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── COPYRIGHT_HEADER.txt ├── COPYRIGHT_HEADER_vue.txt ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── commitlint.config.mjs ├── database ├── create_migration.sh ├── migrate.sh └── migrations │ ├── V1749123250__initial.sql │ ├── V1749196362__createSequinReplicationSlot.sql │ ├── V1749196398__packageDownloads.sql │ ├── V1752513036__renameSearchVolumeSlugToProject.sql │ ├── V1755502790__createChatResponsesTable.sql │ ├── V1756973486__addConversationIdToChatResponses.sql │ ├── V1756973487__alterChatResponsesRouterResponseCheck.sql │ ├── V1759392166__addAskClarificationRouterResponseType.sql │ ├── V1759927411__createChatResponseAgentStepsTable.sql │ ├── V1759927412__makeChatResponsesNullable.sql │ └── V2__Create_search_volume_table.sql ├── frontend ├── .gitignore ├── .husky │ ├── commit-msg │ └── pre-commit ├── .prettierignore ├── .storybook │ ├── main.ts │ ├── preview-head.html │ └── preview.ts ├── .stress │ ├── stress-test.js │ └── warm-cache.js ├── AUTH_CONFIGURATION.md ├── CLAUDE.md ├── Dockerfile ├── README.md ├── app.vue ├── app │ ├── assets │ │ ├── images │ │ │ ├── collections-header.png │ │ │ ├── github.svg │ │ │ ├── icon-gray.svg │ │ │ ├── icon.svg │ │ │ ├── logo-mobile.svg │ │ │ ├── logo.svg │ │ │ └── revanite.svg │ │ └── styles │ │ │ ├── base.scss │ │ │ ├── helpers.scss │ │ │ ├── main.scss │ │ │ ├── utils │ │ │ ├── _container.scss │ │ │ ├── _dependency-display.scss │ │ │ ├── _table.scss │ │ │ ├── _tree-map.scss │ │ │ └── index.scss │ │ │ └── variables │ │ │ ├── _colors.scss │ │ │ ├── _font.scss │ │ │ ├── _radius.scss │ │ │ ├── _shadows.scss │ │ │ ├── _typography.scss │ │ │ └── index.scss │ ├── components │ │ ├── modules │ │ │ ├── auth │ │ │ │ ├── components │ │ │ │ │ └── login.vue │ │ │ │ └── store │ │ │ │ │ └── auth.store.ts │ │ │ ├── collection │ │ │ │ ├── components │ │ │ │ │ ├── details │ │ │ │ │ │ ├── filters.vue │ │ │ │ │ │ └── header.vue │ │ │ │ │ └── list │ │ │ │ │ │ ├── collection-list-filters.vue │ │ │ │ │ │ ├── collection-list-item-loading.vue │ │ │ │ │ │ ├── collection-list-item.vue │ │ │ │ │ │ └── filters │ │ │ │ │ │ ├── collection-list-filters-category-options.vue │ │ │ │ │ │ └── collection-list-filters-category.vue │ │ │ │ ├── services │ │ │ │ │ ├── collections.api.service.ts │ │ │ │ │ └── collections.query.service.ts │ │ │ │ └── views │ │ │ │ │ ├── collection-details.vue │ │ │ │ │ └── collection-list.vue │ │ │ ├── explore │ │ │ │ ├── components │ │ │ │ │ ├── collection-card.vue │ │ │ │ │ ├── explore-header.vue │ │ │ │ │ ├── featured-collection.vue │ │ │ │ │ ├── leaderboard-carousel-section.vue │ │ │ │ │ ├── list-card.vue │ │ │ │ │ ├── list-modal.vue │ │ │ │ │ ├── load-more.vue │ │ │ │ │ ├── source-index-filters.vue │ │ │ │ │ ├── source-index-progress.vue │ │ │ │ │ ├── source-index-section.vue │ │ │ │ │ ├── table-header.vue │ │ │ │ │ ├── top-contributors.vue │ │ │ │ │ ├── top-organizations.vue │ │ │ │ │ ├── top-projects.vue │ │ │ │ │ └── top-section.vue │ │ │ │ ├── config │ │ │ │ │ └── top-section-tabs.ts │ │ │ │ ├── services │ │ │ │ │ └── explore.api.service.ts │ │ │ │ ├── types │ │ │ │ │ └── explore.types.ts │ │ │ │ └── views │ │ │ │ │ └── explore.vue │ │ │ ├── leaderboards │ │ │ │ ├── README.md │ │ │ │ ├── components │ │ │ │ │ ├── data-displays │ │ │ │ │ │ ├── duration.vue │ │ │ │ │ │ ├── numeric.vue │ │ │ │ │ │ └── timestamp.vue │ │ │ │ │ ├── filters │ │ │ │ │ │ └── collections-filter.vue │ │ │ │ │ ├── minimize-row-displays │ │ │ │ │ │ ├── codebase-size-row.vue │ │ │ │ │ │ ├── contributor-row.vue │ │ │ │ │ │ ├── longest-running-row.vue │ │ │ │ │ │ ├── organization-row.vue │ │ │ │ │ │ ├── project-decimal.vue │ │ │ │ │ │ ├── project-duration.vue │ │ │ │ │ │ ├── project-integer.vue │ │ │ │ │ │ └── project-timestamp.vue │ │ │ │ │ ├── row-displays │ │ │ │ │ │ ├── codebase-size-row.vue │ │ │ │ │ │ ├── contributor-row.vue │ │ │ │ │ │ ├── longest-running-row.vue │ │ │ │ │ │ ├── organization-row.vue │ │ │ │ │ │ ├── project-decimal.vue │ │ │ │ │ │ ├── project-duration.vue │ │ │ │ │ │ ├── project-integer.vue │ │ │ │ │ │ └── project-timestamp.vue │ │ │ │ │ ├── sections │ │ │ │ │ │ ├── leaderboard-card.vue │ │ │ │ │ │ ├── leaderboard-detail-header.vue │ │ │ │ │ │ ├── leaderboard-mobile-nav.vue │ │ │ │ │ │ ├── leaderboard-search-results.vue │ │ │ │ │ │ ├── leaderboard-search.vue │ │ │ │ │ │ ├── leaderboard-sidebar.vue │ │ │ │ │ │ ├── leaderboard-table.vue │ │ │ │ │ │ └── table-header.vue │ │ │ │ │ ├── trends │ │ │ │ │ │ ├── numeric-trends.vue │ │ │ │ │ │ └── timestamp-duration.vue │ │ │ │ │ └── views │ │ │ │ │ │ ├── leaderboard-detail.vue │ │ │ │ │ │ └── leaderboard-landing.vue │ │ │ │ ├── config │ │ │ │ │ ├── codebase-size.config.ts │ │ │ │ │ ├── commit-activity.config.ts │ │ │ │ │ ├── fastest-mergers.config.ts │ │ │ │ │ ├── fastest-responders.config.ts │ │ │ │ │ ├── focused-teams.config.ts │ │ │ │ │ ├── index.config.ts │ │ │ │ │ ├── longest-running.config.ts │ │ │ │ │ ├── most-active-contributors.config.ts │ │ │ │ │ ├── most-active-organizations.config.ts │ │ │ │ │ ├── resolution-rate.config.ts │ │ │ │ │ ├── small-teams-massive-output.config.ts │ │ │ │ │ ├── top-100-contributors.config.ts │ │ │ │ │ ├── top-100-organizations.config.ts │ │ │ │ │ └── types │ │ │ │ │ │ └── leaderboard.types.ts │ │ │ │ └── services │ │ │ │ │ └── leaderboard.api.service.ts │ │ │ ├── open-source-index │ │ │ │ ├── components │ │ │ │ │ ├── distribution │ │ │ │ │ │ ├── osi-chart.vue │ │ │ │ │ │ ├── osi-tooltip-item.vue │ │ │ │ │ │ └── osi-tooltip.vue │ │ │ │ │ ├── list │ │ │ │ │ │ ├── osi-list-collections.vue │ │ │ │ │ │ ├── osi-list-groups.vue │ │ │ │ │ │ └── osi-list-projects.vue │ │ │ │ │ ├── osi-distribution.vue │ │ │ │ │ └── osi-header.vue │ │ │ │ ├── services │ │ │ │ │ ├── osi.api.service.ts │ │ │ │ │ └── osi.template.service.ts │ │ │ │ └── views │ │ │ │ │ ├── open-source-index-category.vue │ │ │ │ │ ├── open-source-index-group.vue │ │ │ │ │ └── open-source-index.vue │ │ │ ├── project │ │ │ │ ├── components │ │ │ │ │ ├── community │ │ │ │ │ │ ├── card-displays │ │ │ │ │ │ │ ├── default-card.vue │ │ │ │ │ │ │ ├── github-card.vue │ │ │ │ │ │ │ └── reddit-card.vue │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── bluesky.config.ts │ │ │ │ │ │ │ ├── devto.config.ts │ │ │ │ │ │ │ ├── github.config.ts │ │ │ │ │ │ │ ├── hackernews.config.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── linkedin.config.ts │ │ │ │ │ │ │ ├── newsletter.config.ts │ │ │ │ │ │ │ ├── podcast.config.ts │ │ │ │ │ │ │ ├── reddit.config.ts │ │ │ │ │ │ │ ├── stackoverflow.config.ts │ │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ │ └── community.types.ts │ │ │ │ │ │ │ ├── x.config.ts │ │ │ │ │ │ │ └── youtube.config.ts │ │ │ │ │ │ ├── fragments │ │ │ │ │ │ │ ├── card-content.vue │ │ │ │ │ │ │ ├── card-footer.vue │ │ │ │ │ │ │ ├── card-header.vue │ │ │ │ │ │ │ ├── filter-option.vue │ │ │ │ │ │ │ ├── filter-select-all.vue │ │ │ │ │ │ │ ├── keyword-filter.vue │ │ │ │ │ │ │ ├── language-filter.vue │ │ │ │ │ │ │ ├── platform-filter.vue │ │ │ │ │ │ │ ├── selected-chips.vue │ │ │ │ │ │ │ ├── sentiment-filter.vue │ │ │ │ │ │ │ └── sentiment-icon.vue │ │ │ │ │ │ ├── sections │ │ │ │ │ │ │ ├── community-filter-global.vue │ │ │ │ │ │ │ ├── community-filter-modal.vue │ │ │ │ │ │ │ ├── filter-area.vue │ │ │ │ │ │ │ └── results-area.vue │ │ │ │ │ │ └── store │ │ │ │ │ │ │ └── community.store.ts │ │ │ │ │ ├── list │ │ │ │ │ │ ├── project-list-item-loading.vue │ │ │ │ │ │ └── project-list-item.vue │ │ │ │ │ ├── overview │ │ │ │ │ │ ├── about-section.vue │ │ │ │ │ │ ├── about-section │ │ │ │ │ │ │ ├── about-section-loading.vue │ │ │ │ │ │ │ ├── about-software-value.vue │ │ │ │ │ │ │ ├── associated-organization.vue │ │ │ │ │ │ │ ├── connected-platforms.vue │ │ │ │ │ │ │ ├── links.vue │ │ │ │ │ │ │ ├── project-criticality.vue │ │ │ │ │ │ │ └── tags-ang-languages.vue │ │ │ │ │ │ ├── info-details │ │ │ │ │ │ │ ├── about-value-maturity.vue │ │ │ │ │ │ │ ├── associated-org.vue │ │ │ │ │ │ │ ├── links.vue │ │ │ │ │ │ │ └── tags-languages.vue │ │ │ │ │ │ ├── info-section.vue │ │ │ │ │ │ ├── score-details │ │ │ │ │ │ │ ├── details-empty.vue │ │ │ │ │ │ │ ├── score-accordion-view.vue │ │ │ │ │ │ │ ├── score-item.vue │ │ │ │ │ │ │ ├── score-list.vue │ │ │ │ │ │ │ └── score-tab-view.vue │ │ │ │ │ │ ├── score-tabs.vue │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ └── security-score.vue │ │ │ │ │ │ ├── trust-score.vue │ │ │ │ │ │ └── trust-score │ │ │ │ │ │ │ ├── score-chart.vue │ │ │ │ │ │ │ ├── score-display.vue │ │ │ │ │ │ │ └── share-badge.vue │ │ │ │ │ ├── security │ │ │ │ │ │ ├── evaluation-assesment.vue │ │ │ │ │ │ ├── evaluation-repository.vue │ │ │ │ │ │ ├── evaluation-result-tag.vue │ │ │ │ │ │ ├── evaluation-result.vue │ │ │ │ │ │ ├── evaluation-section.vue │ │ │ │ │ │ ├── osps-score.vue │ │ │ │ │ │ ├── paginated-eval-repos.vue │ │ │ │ │ │ └── yaml │ │ │ │ │ │ │ ├── generate-yaml-modal.vue │ │ │ │ │ │ │ ├── generate-yaml-preview.vue │ │ │ │ │ │ │ ├── generate-yaml-sidebar.vue │ │ │ │ │ │ │ └── generate-yaml-type.vue │ │ │ │ │ └── shared │ │ │ │ │ │ ├── header.vue │ │ │ │ │ │ ├── header │ │ │ │ │ │ ├── custom-date-range-picker.vue │ │ │ │ │ │ ├── date-range-picker.vue │ │ │ │ │ │ ├── project-menu.vue │ │ │ │ │ │ ├── repository-switch.vue │ │ │ │ │ │ └── repository-switch │ │ │ │ │ │ │ ├── repository-group-search.vue │ │ │ │ │ │ │ ├── repository-item.vue │ │ │ │ │ │ │ ├── repository-search.vue │ │ │ │ │ │ │ └── repository-switch-item.vue │ │ │ │ │ │ ├── load-state.vue │ │ │ │ │ │ └── skeleton-state.vue │ │ │ │ ├── config │ │ │ │ │ ├── date-options.ts │ │ │ │ │ ├── links.ts │ │ │ │ │ ├── osps-baseline-score.ts │ │ │ │ │ ├── security-category.ts │ │ │ │ │ ├── sentiments.ts │ │ │ │ │ ├── social-links.ts │ │ │ │ │ └── yaml-generation │ │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── basic-yaml.config.ts │ │ │ │ │ │ ├── yaml-basic-project-repositories.vue │ │ │ │ │ │ ├── yaml-basic-project-vulnerability.vue │ │ │ │ │ │ ├── yaml-basic-project.vue │ │ │ │ │ │ ├── yaml-basic-repository-license.vue │ │ │ │ │ │ ├── yaml-basic-repository-members.vue │ │ │ │ │ │ ├── yaml-basic-repository-security.vue │ │ │ │ │ │ └── yaml-basic-repository.vue │ │ │ │ │ │ ├── child-repository │ │ │ │ │ │ ├── child-repository-yaml.config.ts │ │ │ │ │ │ ├── yaml-child-repository-header.vue │ │ │ │ │ │ ├── yaml-child-repository-licence.vue │ │ │ │ │ │ ├── yaml-child-repository-security.vue │ │ │ │ │ │ ├── yaml-child-repository-team-members.vue │ │ │ │ │ │ └── yaml-child-repository.vue │ │ │ │ │ │ ├── comprehensive │ │ │ │ │ │ ├── comprehensive-yaml.config.ts │ │ │ │ │ │ ├── yaml-comprehensive-project-administrators.vue │ │ │ │ │ │ ├── yaml-comprehensive-project-documentation.vue │ │ │ │ │ │ ├── yaml-comprehensive-project-repositories.vue │ │ │ │ │ │ ├── yaml-comprehensive-project-steward.vue │ │ │ │ │ │ ├── yaml-comprehensive-project-vulnerability.vue │ │ │ │ │ │ ├── yaml-comprehensive-project.vue │ │ │ │ │ │ ├── yaml-comprehensive-repository-documentation.vue │ │ │ │ │ │ ├── yaml-comprehensive-repository-members.vue │ │ │ │ │ │ ├── yaml-comprehensive-repository-release.vue │ │ │ │ │ │ ├── yaml-comprehensive-repository-security-champions.vue │ │ │ │ │ │ ├── yaml-comprehensive-repository-security-tools.vue │ │ │ │ │ │ ├── yaml-comprehensive-repository-security.vue │ │ │ │ │ │ └── yaml-comprehensive-repository.vue │ │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── yaml-administrator-item.vue │ │ │ │ │ │ │ ├── yaml-attestation-item.vue │ │ │ │ │ │ │ ├── yaml-core-member-item.vue │ │ │ │ │ │ │ ├── yaml-datepicker.vue │ │ │ │ │ │ │ ├── yaml-distribution-point-item.vue │ │ │ │ │ │ │ ├── yaml-repository-item.vue │ │ │ │ │ │ │ ├── yaml-repository-status.vue │ │ │ │ │ │ │ ├── yaml-security-champion-item.vue │ │ │ │ │ │ │ ├── yaml-security-tool-item.vue │ │ │ │ │ │ │ └── yaml-third-party-assessment-item.vue │ │ │ │ │ │ └── yaml-header-information.vue │ │ │ │ │ │ └── yaml-generation.config.ts │ │ │ │ ├── services │ │ │ │ │ ├── community.api.service.ts │ │ │ │ │ ├── js-yaml.ts │ │ │ │ │ ├── overview.api.service.ts │ │ │ │ │ ├── project.api.service.ts │ │ │ │ │ ├── project.query.service.ts │ │ │ │ │ ├── security.api.service.ts │ │ │ │ │ └── security.service.ts │ │ │ │ ├── store │ │ │ │ │ └── project.store.ts │ │ │ │ └── views │ │ │ │ │ ├── community-voice.vue │ │ │ │ │ ├── contributors.vue │ │ │ │ │ ├── overview.vue │ │ │ │ │ └── security.vue │ │ │ ├── repository │ │ │ │ └── utils │ │ │ │ │ └── repository.helpers.ts │ │ │ └── widget │ │ │ │ ├── components │ │ │ │ ├── contributors │ │ │ │ │ ├── config │ │ │ │ │ │ ├── geo-map-countries.ts │ │ │ │ │ │ └── granularity-tabs.ts │ │ │ │ │ ├── fragments │ │ │ │ │ │ ├── activities-dropdown.vue │ │ │ │ │ │ ├── contributors-table.vue │ │ │ │ │ │ ├── dependency-display.vue │ │ │ │ │ │ └── organizations-table.vue │ │ │ │ │ └── types │ │ │ │ │ │ ├── contributors.types.ts │ │ │ │ │ │ └── geo-map.types.ts │ │ │ │ ├── development │ │ │ │ │ └── fragments │ │ │ │ │ │ ├── code-review-table.vue │ │ │ │ │ │ └── pull-request-legend-item.vue │ │ │ │ ├── popularity │ │ │ │ │ └── fragments │ │ │ │ │ │ └── press-mention-lists.vue │ │ │ │ └── shared │ │ │ │ │ ├── embed │ │ │ │ │ └── embed-modal.vue │ │ │ │ │ ├── snapshot │ │ │ │ │ ├── snapshot-modal.vue │ │ │ │ │ └── snapshot-preview.vue │ │ │ │ │ ├── widget-area.vue │ │ │ │ │ ├── widget-embed.vue │ │ │ │ │ ├── widget-menu-item.vue │ │ │ │ │ ├── widget-menu-popover.vue │ │ │ │ │ ├── widget-menu.vue │ │ │ │ │ └── widget.vue │ │ │ │ ├── config │ │ │ │ ├── contributor │ │ │ │ │ ├── active-contributors │ │ │ │ │ │ ├── active-contributors.config.ts │ │ │ │ │ │ ├── active-contributors.vue │ │ │ │ │ │ └── share-active-contributors.vue │ │ │ │ │ ├── active-organizations │ │ │ │ │ │ ├── active-organizations.config.ts │ │ │ │ │ │ └── active-organizations.vue │ │ │ │ │ ├── contributor-dependency │ │ │ │ │ │ ├── contributor-dependency.config.ts │ │ │ │ │ │ └── contributor-dependency.vue │ │ │ │ │ ├── contributors-leaderboard │ │ │ │ │ │ ├── contributors-leaderboard.config.ts │ │ │ │ │ │ ├── contributors-leaderboard.vue │ │ │ │ │ │ └── fragments │ │ │ │ │ │ │ └── contributor-leaderboard-drawer.vue │ │ │ │ │ ├── geographical-distribution │ │ │ │ │ │ ├── geographical-distribution.config.ts │ │ │ │ │ │ └── geographical-distribution.vue │ │ │ │ │ ├── organization-dependency │ │ │ │ │ │ ├── organization-dependency.config.ts │ │ │ │ │ │ └── organization-dependency.vue │ │ │ │ │ ├── organizations-leaderboard │ │ │ │ │ │ ├── fragments │ │ │ │ │ │ │ └── organization-leaderboard-drawer.vue │ │ │ │ │ │ ├── organizations-leaderboard.config.ts │ │ │ │ │ │ └── organizations-leaderboard.vue │ │ │ │ │ └── retention │ │ │ │ │ │ ├── retention.config.ts │ │ │ │ │ │ └── retention.vue │ │ │ │ ├── development │ │ │ │ │ ├── active-days │ │ │ │ │ │ ├── active-days.config.ts │ │ │ │ │ │ └── active-days.vue │ │ │ │ │ ├── average-time-to-merge │ │ │ │ │ │ ├── average-time-to-merge.config.ts │ │ │ │ │ │ └── average-time-to-merge.vue │ │ │ │ │ ├── code-review-engagement │ │ │ │ │ │ ├── code-review-engagement.config.ts │ │ │ │ │ │ └── code-review-engagement.vue │ │ │ │ │ ├── commit-activities │ │ │ │ │ │ ├── commit-activities.config.ts │ │ │ │ │ │ └── commit-activities.vue │ │ │ │ │ ├── contributions-outside-work-hours │ │ │ │ │ │ ├── contributions-outside-work-hours.config.ts │ │ │ │ │ │ └── contributions-outside-work-hours.vue │ │ │ │ │ ├── issues-resolution │ │ │ │ │ │ ├── issues-resolution.config.ts │ │ │ │ │ │ └── issues-resolution.vue │ │ │ │ │ ├── merge-lead-time │ │ │ │ │ │ ├── fragments │ │ │ │ │ │ │ └── merge-lead-item.vue │ │ │ │ │ │ ├── merge-lead-time.config.ts │ │ │ │ │ │ └── merge-lead-time.vue │ │ │ │ │ ├── pull-requests │ │ │ │ │ │ ├── pull-requests.config.ts │ │ │ │ │ │ └── pull-requests.vue │ │ │ │ │ ├── review-time-by-pull-request-size │ │ │ │ │ │ ├── review-time-by-pull-request-size.config.ts │ │ │ │ │ │ └── review-time-by-pull-request-size.vue │ │ │ │ │ └── wait-time-first-review │ │ │ │ │ │ ├── wait-time-first-review.config.ts │ │ │ │ │ │ └── wait-time-first-review.vue │ │ │ │ ├── popularity │ │ │ │ │ ├── forks │ │ │ │ │ │ ├── forks.config.ts │ │ │ │ │ │ └── forks.vue │ │ │ │ │ ├── github-mentions │ │ │ │ │ │ ├── github-mentions.config.ts │ │ │ │ │ │ └── github-mentions.vue │ │ │ │ │ ├── mailing-list-messages │ │ │ │ │ │ ├── mailing-list-messages.config.ts │ │ │ │ │ │ └── mailing-list-messages.vue │ │ │ │ │ ├── package-dependency │ │ │ │ │ │ ├── fragments │ │ │ │ │ │ │ └── package-legend-item.vue │ │ │ │ │ │ ├── package-dependency.config.ts │ │ │ │ │ │ └── package-dependency.vue │ │ │ │ │ ├── package-downloads │ │ │ │ │ │ ├── fragments │ │ │ │ │ │ │ └── package-dropdown.vue │ │ │ │ │ │ ├── package-downloads.config.ts │ │ │ │ │ │ └── package-downloads.vue │ │ │ │ │ ├── press-mentions │ │ │ │ │ │ ├── press-mentions.config.ts │ │ │ │ │ │ └── press-mentions.vue │ │ │ │ │ ├── search-queries │ │ │ │ │ │ ├── search-queries.config.ts │ │ │ │ │ │ └── search-queries.vue │ │ │ │ │ ├── social-mentions │ │ │ │ │ │ ├── social-mentions.config.ts │ │ │ │ │ │ └── social-mentions.vue │ │ │ │ │ └── stars │ │ │ │ │ │ ├── stars.config.ts │ │ │ │ │ │ └── stars.vue │ │ │ │ ├── widget-area.config.ts │ │ │ │ └── widget.config.ts │ │ │ │ ├── services │ │ │ │ ├── benchmarks.api.service.ts │ │ │ │ ├── contributors.api.service.ts │ │ │ │ ├── development.api.service.ts │ │ │ │ └── popularity.api.service.ts │ │ │ │ └── types │ │ │ │ ├── widget-area.ts │ │ │ │ └── widget.ts │ │ ├── shared │ │ │ ├── components │ │ │ │ ├── archived-tag.vue │ │ │ │ ├── empty-state.vue │ │ │ │ ├── health-score.vue │ │ │ │ ├── onboarding-link.vue │ │ │ │ ├── repos-exclusion-footer.vue │ │ │ │ └── repos-inclusion-note.vue │ │ │ ├── layout │ │ │ │ ├── banner.vue │ │ │ │ ├── footer.vue │ │ │ │ ├── menu.vue │ │ │ │ ├── menu │ │ │ │ │ ├── github-button.vue │ │ │ │ │ ├── menu-mobile.vue │ │ │ │ │ ├── menu-tablet.vue │ │ │ │ │ └── static-links.vue │ │ │ │ ├── navbar.vue │ │ │ │ ├── search │ │ │ │ │ ├── search-modal.vue │ │ │ │ │ ├── search-result.vue │ │ │ │ │ └── search.vue │ │ │ │ └── tools.vue │ │ │ ├── modules │ │ │ │ ├── copilot │ │ │ │ │ ├── components │ │ │ │ │ │ ├── chat-history │ │ │ │ │ │ │ ├── chat-error.vue │ │ │ │ │ │ │ ├── chat-feedback.vue │ │ │ │ │ │ │ ├── chat-label.vue │ │ │ │ │ │ │ ├── chat-result.vue │ │ │ │ │ │ │ ├── copilot-chat-history.vue │ │ │ │ │ │ │ ├── copilot-chat-item.vue │ │ │ │ │ │ │ └── feedback-button.vue │ │ │ │ │ │ ├── copilot-global.vue │ │ │ │ │ │ ├── copilot-modal.vue │ │ │ │ │ │ ├── copilot-sidebar.vue │ │ │ │ │ │ ├── copilot-widget-modal.vue │ │ │ │ │ │ ├── info │ │ │ │ │ │ │ ├── empty-chat.vue │ │ │ │ │ │ │ └── empty-result.vue │ │ │ │ │ │ ├── results │ │ │ │ │ │ │ ├── chart-results.vue │ │ │ │ │ │ │ ├── results-header.vue │ │ │ │ │ │ │ ├── results-section.vue │ │ │ │ │ │ │ ├── results-toggle.vue │ │ │ │ │ │ │ └── table-results.vue │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── context-display.vue │ │ │ │ │ │ │ ├── error-state.vue │ │ │ │ │ │ │ ├── loading-state.vue │ │ │ │ │ │ │ └── result-label.vue │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── store │ │ │ │ │ │ ├── copilot.api.service.ts │ │ │ │ │ │ └── copilot.store.ts │ │ │ │ │ └── types │ │ │ │ │ │ └── copilot.types.ts │ │ │ │ ├── report │ │ │ │ │ ├── components │ │ │ │ │ │ ├── report-global.vue │ │ │ │ │ │ └── report-modal.vue │ │ │ │ │ ├── store │ │ │ │ │ │ └── report.store.ts │ │ │ │ │ └── types │ │ │ │ │ │ └── report.types.ts │ │ │ │ └── share │ │ │ │ │ ├── components │ │ │ │ │ ├── active-contributor-badge.vue │ │ │ │ │ ├── share-actions.vue │ │ │ │ │ ├── share-badge-item.vue │ │ │ │ │ ├── share-badge.vue │ │ │ │ │ ├── share-global.vue │ │ │ │ │ └── share-modal.vue │ │ │ │ │ ├── store │ │ │ │ │ ├── share.api.service.ts │ │ │ │ │ └── share.store.ts │ │ │ │ │ └── types │ │ │ │ │ └── share.types.ts │ │ │ ├── store │ │ │ │ └── banner.store.ts │ │ │ ├── types │ │ │ │ ├── formatter.types.ts │ │ │ │ ├── granularity.ts │ │ │ │ ├── routes.ts │ │ │ │ └── tanstack.ts │ │ │ └── utils │ │ │ │ ├── formatter.ts │ │ │ │ ├── helper.ts │ │ │ │ ├── overview-score.ts │ │ │ │ ├── query-param.ts │ │ │ │ ├── responsive.ts │ │ │ │ └── scroll.ts │ │ └── uikit │ │ │ ├── .gitkeep │ │ │ ├── accordion │ │ │ ├── accordion-item.vue │ │ │ ├── accordion.scss │ │ │ ├── accordion.stories.ts │ │ │ └── accordion.vue │ │ │ ├── avatar-group │ │ │ ├── avatar-group.scss │ │ │ ├── avatar-group.stories.ts │ │ │ └── avatar-group.vue │ │ │ ├── avatar │ │ │ ├── avatar.scss │ │ │ ├── avatar.stories.ts │ │ │ ├── avatar.vue │ │ │ └── types │ │ │ │ └── Avatar.types.ts │ │ │ ├── back │ │ │ └── back.vue │ │ │ ├── benchmarks │ │ │ ├── benchmark-icon.vue │ │ │ ├── benchmarks-wrap.vue │ │ │ ├── benchmarks.scss │ │ │ └── benchmarks.vue │ │ │ ├── button │ │ │ ├── button.scss │ │ │ ├── button.stories.ts │ │ │ ├── button.vue │ │ │ └── types │ │ │ │ └── button.types.ts │ │ │ ├── card │ │ │ ├── card.scss │ │ │ ├── card.stories.ts │ │ │ └── card.vue │ │ │ ├── carousel │ │ │ ├── carousel-navigation.vue │ │ │ ├── carousel.scss │ │ │ ├── carousel.vue │ │ │ └── types │ │ │ │ └── carousel.types.ts │ │ │ ├── chart │ │ │ ├── chart.vue │ │ │ ├── configs │ │ │ │ ├── bar.chart.ts │ │ │ │ ├── defaults.chart.ts │ │ │ │ ├── gauge.chart.ts │ │ │ │ ├── geo-map.chart.ts │ │ │ │ ├── heat-map.chart.ts │ │ │ │ ├── line.area.chart.ts │ │ │ │ ├── radar.chart.ts │ │ │ │ ├── scatter.chart.ts │ │ │ │ ├── tree-map.chart.ts │ │ │ │ └── world.json │ │ │ ├── helpers │ │ │ │ ├── chart-helpers.ts │ │ │ │ └── formatters.ts │ │ │ └── types │ │ │ │ ├── ChartTypes.ts │ │ │ │ └── EChartTypes.ts │ │ │ ├── checkbox │ │ │ ├── checkbox.scss │ │ │ ├── checkbox.stories.ts │ │ │ └── checkbox.vue │ │ │ ├── chip │ │ │ ├── chip.scss │ │ │ ├── chip.stories.ts │ │ │ ├── chip.vue │ │ │ └── types │ │ │ │ └── chip.types.ts │ │ │ ├── datepicker │ │ │ ├── datepicker.scss │ │ │ ├── datepicker.stories.ts │ │ │ └── datepicker.vue │ │ │ ├── delta-display │ │ │ ├── delta-display.stories.ts │ │ │ ├── delta-display.vue │ │ │ └── types │ │ │ │ └── delta-display.types.ts │ │ │ ├── drawer │ │ │ ├── drawer.scss │ │ │ ├── drawer.stories.ts │ │ │ └── drawer.vue │ │ │ ├── dropdown │ │ │ ├── dropdown-group-title.vue │ │ │ ├── dropdown-item.vue │ │ │ ├── dropdown-search.vue │ │ │ ├── dropdown-select.vue │ │ │ ├── dropdown-selector.vue │ │ │ ├── dropdown-separator.vue │ │ │ ├── dropdown-submenu.vue │ │ │ ├── dropdown.scss │ │ │ ├── dropdown.stories.ts │ │ │ ├── dropdown.vue │ │ │ └── types │ │ │ │ └── dropdown.types.ts │ │ │ ├── field │ │ │ ├── constants │ │ │ │ └── fieldMessageTypeData.ts │ │ │ ├── field-message.scss │ │ │ ├── field-message.stories.ts │ │ │ ├── field-message.vue │ │ │ ├── field-messages.stories.ts │ │ │ ├── field-messages.vue │ │ │ ├── field.stories.ts │ │ │ ├── field.vue │ │ │ └── types │ │ │ │ └── FieldMessageType.ts │ │ │ ├── icon-button │ │ │ ├── icon-button.scss │ │ │ ├── icon-button.stories.ts │ │ │ ├── icon-button.vue │ │ │ └── types │ │ │ │ └── icon-button.types.ts │ │ │ ├── icon │ │ │ ├── icon.scss │ │ │ ├── icon.stories.ts │ │ │ ├── icon.vue │ │ │ └── types │ │ │ │ └── icon.types.ts │ │ │ ├── index.scss │ │ │ ├── input │ │ │ ├── input.scss │ │ │ ├── input.stories.ts │ │ │ └── input.vue │ │ │ ├── maintain-height │ │ │ └── maintain-height.vue │ │ │ ├── menu-button │ │ │ ├── menu-button.scss │ │ │ ├── menu-button.stories.ts │ │ │ └── menu-button.vue │ │ │ ├── modal │ │ │ ├── modal.scss │ │ │ ├── modal.stories.ts │ │ │ └── modal.vue │ │ │ ├── organization-logo │ │ │ ├── organization-logo.scss │ │ │ └── organization-logo.vue │ │ │ ├── popover │ │ │ ├── popover.scss │ │ │ ├── popover.stories.ts │ │ │ ├── popover.vue │ │ │ └── types │ │ │ │ ├── PopoverPlacement.ts │ │ │ │ └── PopoverTrigger.ts │ │ │ ├── progress-bar │ │ │ ├── progress-bar.scss │ │ │ ├── progress-bar.stories.ts │ │ │ ├── progress-bar.vue │ │ │ └── types │ │ │ │ └── progress-bar.types.ts │ │ │ ├── scroll-view │ │ │ ├── scroll-area.vue │ │ │ └── scroll-view.vue │ │ │ ├── scrollable-shadow │ │ │ ├── scrollable-shadow.scss │ │ │ └── scrollable-shadow.vue │ │ │ ├── select │ │ │ ├── option.vue │ │ │ ├── select.scss │ │ │ ├── select.stories.ts │ │ │ └── select.vue │ │ │ ├── share │ │ │ ├── share.stories.ts │ │ │ └── share.vue │ │ │ ├── side-nav │ │ │ ├── side-nav.scss │ │ │ ├── side-nav.vue │ │ │ └── types │ │ │ │ └── side-nav.types.ts │ │ │ ├── skeleton │ │ │ ├── skeleton.scss │ │ │ ├── skeleton.stories.ts │ │ │ └── skeleton.vue │ │ │ ├── spinner │ │ │ ├── spinner.stories.ts │ │ │ └── spinner.vue │ │ │ ├── table │ │ │ ├── table.scss │ │ │ ├── table.stories.ts │ │ │ └── table.vue │ │ │ ├── tabs │ │ │ ├── panels.vue │ │ │ ├── tabs-panels.vue │ │ │ ├── tabs.scss │ │ │ ├── tabs.stories.ts │ │ │ ├── tabs.vue │ │ │ └── types │ │ │ │ └── tab.types.ts │ │ │ ├── tag │ │ │ ├── tag.scss │ │ │ ├── tag.stories.ts │ │ │ ├── tag.vue │ │ │ └── types │ │ │ │ └── tag.types.ts │ │ │ ├── textarea │ │ │ ├── textarea.stories.ts │ │ │ └── textarea.vue │ │ │ ├── toast │ │ │ ├── toast.scss │ │ │ ├── toast.service.ts │ │ │ ├── toast.stories.ts │ │ │ ├── toast.vue │ │ │ └── types │ │ │ │ └── toast.types.ts │ │ │ ├── toggle │ │ │ ├── toggle.scss │ │ │ ├── toggle.stories.ts │ │ │ ├── toggle.vue │ │ │ └── types │ │ │ │ └── toggle.types.ts │ │ │ └── tooltip │ │ │ ├── tooltip.scss │ │ │ ├── tooltip.stories.ts │ │ │ ├── tooltip.vue │ │ │ └── types │ │ │ └── TooltipPlacement.ts │ ├── config │ │ ├── banner.config.ts │ │ ├── ecosystems │ │ │ └── index.ts │ │ ├── links.ts │ │ ├── menu │ │ │ ├── footer.ts │ │ │ ├── index.ts │ │ │ └── tools │ │ │ │ ├── community-management.ts │ │ │ │ ├── crowdfunding.ts │ │ │ │ ├── document-management.ts │ │ │ │ ├── easy-cla.ts │ │ │ │ ├── index.ts │ │ │ │ ├── individual-dashboard.ts │ │ │ │ ├── mentorship.ts │ │ │ │ ├── organization-dashboard.ts │ │ │ │ ├── project-control-center.ts │ │ │ │ └── security.ts │ │ ├── platforms │ │ │ ├── configs │ │ │ │ ├── confluence.platform.ts │ │ │ │ ├── devto.platform.ts │ │ │ │ ├── discord.platform.ts │ │ │ │ ├── discourse.platform.ts │ │ │ │ ├── gerrit.platform.ts │ │ │ │ ├── git.platform.ts │ │ │ │ ├── github.platform.ts │ │ │ │ ├── gitlab.platform.ts │ │ │ │ ├── groupsio.platform.ts │ │ │ │ ├── hackernews.platform.ts │ │ │ │ ├── jira.platform.ts │ │ │ │ ├── linkedin.platform.ts │ │ │ │ ├── reddit.platform.ts │ │ │ │ ├── slack.platform.ts │ │ │ │ ├── stackoverflow.platform.ts │ │ │ │ └── twitter.platform.ts │ │ │ └── index.ts │ │ └── styles │ │ │ ├── colors.ts │ │ │ └── font-size.ts │ ├── error.vue │ ├── layouts │ │ └── default.vue │ ├── pages │ │ ├── collection │ │ │ ├── [slug].vue │ │ │ └── index.vue │ │ ├── embed │ │ │ └── project │ │ │ │ └── [slug] │ │ │ │ └── index.vue │ │ ├── index.vue │ │ ├── leaderboards │ │ │ ├── [key].vue │ │ │ └── index.vue │ │ ├── open-source-index │ │ │ ├── category │ │ │ │ └── [slug].vue │ │ │ ├── group │ │ │ │ └── [slug].vue │ │ │ └── index.vue │ │ └── project │ │ │ ├── [slug].vue │ │ │ └── [slug] │ │ │ ├── community-voice.vue │ │ │ ├── contributors.vue │ │ │ ├── development.vue │ │ │ ├── index.vue │ │ │ ├── popularity.vue │ │ │ ├── repository-group │ │ │ └── [groupSlug] │ │ │ │ ├── community-voice.vue │ │ │ │ ├── contributors.vue │ │ │ │ ├── development.vue │ │ │ │ ├── index.vue │ │ │ │ ├── popularity.vue │ │ │ │ └── security.vue │ │ │ ├── repository │ │ │ └── [name] │ │ │ │ ├── community-voice.vue │ │ │ │ ├── contributors.vue │ │ │ │ ├── development.vue │ │ │ │ ├── index.vue │ │ │ │ ├── popularity.vue │ │ │ │ └── security.vue │ │ │ └── security.vue │ └── plugins │ │ ├── analytics.ts │ │ ├── canonical.ts │ │ └── vue-query.ts ├── blog │ ├── .vitepress │ │ ├── config.mts │ │ ├── theme │ │ │ ├── components │ │ │ │ ├── BlogAuthor.vue │ │ │ │ ├── BlogLayout.vue │ │ │ │ ├── BlogLayoutWrapper.vue │ │ │ │ ├── CustomLfxFooter.vue │ │ │ │ ├── CustomNavbar.vue │ │ │ │ └── CustomNotFound.vue │ │ │ ├── cssOverrides │ │ │ │ ├── button.scss │ │ │ │ ├── dialog.scss │ │ │ │ ├── home.scss │ │ │ │ ├── index.ts │ │ │ │ ├── search.scss │ │ │ │ └── sidebar.scss │ │ │ ├── custom.css │ │ │ ├── index.ts │ │ │ └── tailwind.postcss │ │ └── vue-shim.d.ts │ ├── first-3-months │ │ └── index.md │ ├── introducing-insights │ │ └── index.md │ ├── product-update-nov-2025 │ │ └── index.md │ ├── public │ │ └── images │ │ │ ├── github.svg │ │ │ ├── health-score-readmes.png │ │ │ ├── jonathan-headshot-2025.png │ │ │ ├── logo-blog.svg │ │ │ ├── logo-mobile.svg │ │ │ ├── plausible-analytics-countries.png │ │ │ └── plausible-analytics-stats.png │ └── tsconfig.json ├── composables │ ├── useAuth.ts │ ├── useRichSchema.ts │ └── useSanitize.ts ├── config │ └── trust-score.ts ├── docker-compose.yml ├── docs │ ├── .vitepress │ │ ├── config.ts │ │ └── theme │ │ │ ├── components │ │ │ ├── CustomLfxFooter.vue │ │ │ └── CustomNavbar.vue │ │ │ ├── cssOverrides │ │ │ ├── button.scss │ │ │ ├── dialog.scss │ │ │ ├── index.ts │ │ │ ├── search.scss │ │ │ └── sidebar.scss │ │ │ ├── custom.css │ │ │ ├── index.ts │ │ │ └── tailwind.postcss │ ├── features │ │ └── lfx-data-copilot │ │ │ └── index.md │ ├── images │ │ ├── criticality-score.png │ │ ├── feedback-buttons.png │ │ ├── global-button.png │ │ ├── report-data-issue-form.png │ │ ├── report-data-issue.png │ │ └── widget-button.png │ ├── index.md │ ├── introduction │ │ ├── contributions │ │ │ └── index.md │ │ ├── data-quality │ │ │ └── index.md │ │ ├── data-sources │ │ │ └── index.md │ │ ├── lf-oss-index │ │ │ └── index.md │ │ ├── maintainers │ │ │ └── index.md │ │ └── what-is-insights │ │ │ └── index.md │ ├── metrics │ │ ├── contributors │ │ │ └── index.md │ │ ├── development │ │ │ └── index.md │ │ ├── health-score │ │ │ └── index.md │ │ ├── popularity │ │ │ └── index.md │ │ └── security │ │ │ └── index.md │ ├── more │ │ ├── faq │ │ │ └── index.md │ │ └── glossary │ │ │ └── index.md │ ├── public │ │ └── images │ │ │ ├── github.svg │ │ │ ├── logo-docs.svg │ │ │ └── logo-mobile.svg │ └── tsconfig.json ├── dontuse.env.test ├── eslint.config.mjs ├── lib │ └── chat │ │ ├── Readme.md │ │ ├── agents │ │ ├── auditor.ts │ │ ├── base-agent.ts │ │ ├── index.ts │ │ ├── pipe.ts │ │ ├── router.ts │ │ └── text-to-sql.ts │ │ ├── chart │ │ ├── analysis.ts │ │ ├── base-config.ts │ │ ├── generator.ts │ │ └── types.ts │ │ ├── data-copilot.ts │ │ ├── enums.ts │ │ ├── instructions.ts │ │ ├── prompts │ │ ├── auditor.ts │ │ ├── pipe.ts │ │ ├── router.ts │ │ ├── text-to-sql.ts │ │ ├── tinybird-functions.md │ │ └── tinybird-patterns.md │ │ ├── tests │ │ ├── auditor.test.ts │ │ └── router.test.ts │ │ ├── types.ts │ │ └── utils │ │ └── data-summary.ts ├── nuxt.config.ts ├── package.json ├── pnpm-lock.yaml ├── prettier.config.mjs ├── public │ ├── fonts │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-Light.woff2 │ │ ├── inter-bold.b64 │ │ ├── inter-light.b64 │ │ └── inter-regular.b64 │ ├── images │ │ ├── criticality │ │ │ ├── top-10.svg │ │ │ ├── top-100.svg │ │ │ ├── top-1000.svg │ │ │ ├── top-10000.svg │ │ │ ├── top-500.svg │ │ │ └── top-5000.svg │ │ ├── ecosystems │ │ │ ├── conda.png │ │ │ ├── generic.png │ │ │ ├── go.png │ │ │ ├── maven.png │ │ │ ├── npm.png │ │ │ ├── nuget.png │ │ │ ├── pypi.png │ │ │ └── rubygems.png │ │ ├── fallback-logo.png │ │ ├── integrations │ │ │ ├── confluence.svg │ │ │ ├── devto.png │ │ │ ├── discord.png │ │ │ ├── discourse.png │ │ │ ├── gerrit.png │ │ │ ├── git.png │ │ │ ├── github.png │ │ │ ├── gitlab.png │ │ │ ├── groupsio.svg │ │ │ ├── hackernews.svg │ │ │ ├── jira.png │ │ │ ├── linkedin.png │ │ │ ├── reddit.svg │ │ │ ├── slack.png │ │ │ ├── stackoverflow.png │ │ │ └── x.png │ │ ├── misc │ │ │ └── loading-state-bg.svg │ │ ├── platforms │ │ │ ├── bluesky.png │ │ │ ├── devto.png │ │ │ ├── github.png │ │ │ ├── hackernews.svg │ │ │ ├── linkedin.png │ │ │ ├── newsletter.png │ │ │ ├── podcast.png │ │ │ ├── reddit.svg │ │ │ ├── stackoverflow.png │ │ │ ├── x.png │ │ │ └── youtube.png │ │ └── share │ │ │ ├── linkedin.svg │ │ │ ├── reddit.svg │ │ │ └── x.svg │ ├── logo.svg │ └── og-image.png ├── server │ ├── api │ │ ├── auth │ │ │ ├── callback.ts │ │ │ ├── login.get.ts │ │ │ ├── logout.post.ts │ │ │ └── user.get.ts │ │ ├── badge │ │ │ ├── active-contributors.ts │ │ │ ├── contributors.ts │ │ │ └── health-score.ts │ │ ├── category │ │ │ └── index.ts │ │ ├── chat │ │ │ ├── chart.ts │ │ │ ├── feedback │ │ │ │ └── [id].ts │ │ │ └── stream.ts │ │ ├── collection │ │ │ ├── [slug].ts │ │ │ └── index.ts │ │ ├── community │ │ │ ├── [slug].post.ts │ │ │ └── list.ts │ │ ├── explore │ │ │ ├── contributors.ts │ │ │ └── organizations.ts │ │ ├── health │ │ │ ├── index.ts │ │ │ └── live.ts │ │ ├── leaderboard │ │ │ ├── [type].ts │ │ │ └── index.ts │ │ ├── organization │ │ │ ├── avg-merge-time.ts │ │ │ ├── commit.ts │ │ │ ├── contributors.ts │ │ │ ├── maintainers.ts │ │ │ ├── metrics.ts │ │ │ └── pr-opened.ts │ │ ├── ossindex │ │ │ ├── categories.ts │ │ │ ├── collections.ts │ │ │ └── groups.ts │ │ ├── project │ │ │ ├── [slug] │ │ │ │ ├── activity-types.get.ts │ │ │ │ ├── contributors │ │ │ │ │ ├── active-contributors.get.ts │ │ │ │ │ ├── active-organizations.get.ts │ │ │ │ │ ├── contributor-dependency.get.ts │ │ │ │ │ ├── contributor-leaderboard.get.ts │ │ │ │ │ ├── geographical-distribution.get.ts │ │ │ │ │ ├── organization-dependency.get.ts │ │ │ │ │ ├── organization-leaderboard.get.ts │ │ │ │ │ └── retention.get.ts │ │ │ │ ├── development │ │ │ │ │ ├── active-days.get.ts │ │ │ │ │ ├── average-time-merge.get.ts │ │ │ │ │ ├── code-review-engagement.get.ts │ │ │ │ │ ├── commit-activities.get.ts │ │ │ │ │ ├── contribution-outside.get.ts │ │ │ │ │ ├── issues-resolution.get.ts │ │ │ │ │ ├── merge-lead-time.get.ts │ │ │ │ │ ├── pull-requests.get.ts │ │ │ │ │ ├── review-time-by-pr-size.get.ts │ │ │ │ │ └── wait-time-1st-review.get.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insights.get.ts │ │ │ │ ├── overview │ │ │ │ │ ├── associated-organization.get.ts │ │ │ │ │ ├── health-score-overview.get.ts │ │ │ │ │ └── health-score.get.ts │ │ │ │ ├── popularity │ │ │ │ │ ├── forks.get.ts │ │ │ │ │ ├── github-mentions.get.ts │ │ │ │ │ ├── mailing-lists-messages.get.ts │ │ │ │ │ ├── package-downloads.get.ts │ │ │ │ │ ├── packages.get.ts │ │ │ │ │ ├── press-mentions.get.ts │ │ │ │ │ ├── search-queries.get.ts │ │ │ │ │ ├── social-mentions.get.ts │ │ │ │ │ └── stars.get.ts │ │ │ │ └── security │ │ │ │ │ └── assessment.ts │ │ │ └── index.ts │ │ ├── report │ │ │ └── index.post.ts │ │ ├── search.ts │ │ ├── seo │ │ │ ├── og-image.ts │ │ │ └── sitemap │ │ │ │ ├── blog.ts │ │ │ │ ├── collections.ts │ │ │ │ ├── docs.ts │ │ │ │ ├── oss-index-categories.ts │ │ │ │ ├── oss-index-groups.ts │ │ │ │ ├── projects.ts │ │ │ │ └── static.ts │ │ └── testing │ │ │ ├── chart-data.get.ts │ │ │ ├── heat-data.get.ts │ │ │ ├── issues-data.get.ts │ │ │ ├── map-geo.ts │ │ │ └── scatter-data.get.ts │ ├── constants │ │ ├── inter-bold-font.ts │ │ ├── inter-light-font.ts │ │ └── inter-regular-font.ts │ ├── data │ │ ├── data-sources.ts │ │ ├── github │ │ │ └── github.api.ts │ │ ├── tinybird │ │ │ ├── active-contributors-data-source.test.ts │ │ │ ├── active-contributors-data-source.ts │ │ │ ├── active-days-data-source.test.ts │ │ │ ├── active-days-data-source.ts │ │ │ ├── active-organizations-data-source.test.ts │ │ │ ├── active-organizations-data-source.ts │ │ │ ├── activity-types-data-source.test.ts │ │ │ ├── activity-types-data-source.ts │ │ │ ├── average-time-to-merge-data-source.test.ts │ │ │ ├── average-time-to-merge-data-source.ts │ │ │ ├── bucket-cache.ts │ │ │ ├── code-review-engagement-data-source.test.ts │ │ │ ├── code-review-engagement-data-source.ts │ │ │ ├── commit-activites-data-source.ts │ │ │ ├── contributions-outside-work-hours-data-source.ts │ │ │ ├── contributions-outside-working-hours.test.ts │ │ │ ├── contributors-dependency-data-source.test.ts │ │ │ ├── contributors-dependency-data-source.ts │ │ │ ├── contributors-leaderboard-data-source.test.ts │ │ │ ├── contributors-leaderboard-data-source.ts │ │ │ ├── forks-data-source.test.ts │ │ │ ├── forks-data-source.ts │ │ │ ├── geographic-distribution-data-source.test.ts │ │ │ ├── geographic-distribution-data-source.ts │ │ │ ├── issues-resolution-data-source.test.ts │ │ │ ├── issues-resolution-data-source.ts │ │ │ ├── mailing-lists-messages-data-source.ts │ │ │ ├── merge-lead-time-data-source.test.ts │ │ │ ├── merge-lead-time-data-source.ts │ │ │ ├── organizations-dependency-data-source.test.ts │ │ │ ├── organizations-dependency-data-source.ts │ │ │ ├── organizations-leaderboard-data-source.test.ts │ │ │ ├── organizations-leaderboard-data-source.ts │ │ │ ├── package-metrics-data-source.ts │ │ │ ├── packages-data-source.ts │ │ │ ├── pull-requests-data-source.test.ts │ │ │ ├── pull-requests-data-source.ts │ │ │ ├── requests.types.ts │ │ │ ├── responses.types.ts │ │ │ ├── retention-data-source.test.ts │ │ │ ├── retention-data-source.ts │ │ │ ├── review-time-by-pr-size-data-source.test.ts │ │ │ ├── review-time-by-pr-size-data-source.ts │ │ │ ├── search-queries-data-source.ts │ │ │ ├── stars-data-source.test.ts │ │ │ ├── stars-data-source.ts │ │ │ ├── tinybird.test.ts │ │ │ ├── tinybird.ts │ │ │ ├── wait-time-for-1st-review-data-source.test.ts │ │ │ └── wait-time-for-1st-review-data-source.ts │ │ ├── types.ts │ │ ├── util.test.ts │ │ └── util.ts │ ├── helpers │ │ ├── health-score.helpers.ts │ │ ├── jira-issue.helpers.ts │ │ └── repository.helpers.ts │ ├── middleware │ │ ├── database.ts │ │ └── jwt-auth.ts │ ├── mocks │ │ ├── github-mentions.mock.ts │ │ ├── press-mentions.mock.ts │ │ ├── social-mentions.mock.ts │ │ ├── tinybird-active-contributors-response.mock.ts │ │ ├── tinybird-active-days-response.mock.ts │ │ ├── tinybird-active-organizations-response.mock.ts │ │ ├── tinybird-activities-count.mock.ts │ │ ├── tinybird-activities-heatmap-by-weekday-and-2hours-blocks-response.mock.ts │ │ ├── tinybird-average-time-to-merge-response.mock.ts │ │ ├── tinybird-code-review-engagement-response.mock.ts │ │ ├── tinybird-contributors-dependency-response.mock.ts │ │ ├── tinybird-contributors-leaderboard-response.mock.ts │ │ ├── tinybird-forks-response.mock.ts │ │ ├── tinybird-geo-distribution-response.mock.ts │ │ ├── tinybird-issues-response.mock.ts │ │ ├── tinybird-merge-lead-time-response.mock.ts │ │ ├── tinybird-organizations-dependency-response.mock.ts │ │ ├── tinybird-organizations-leaderboard-response.mock.ts │ │ ├── tinybird-pull-requests-response.mock.ts │ │ ├── tinybird-retention-response.mock.ts │ │ ├── tinybird-review-time-by-pr-size-response.mock.ts │ │ ├── tinybird-search-volume-response.mock.ts │ │ ├── tinybird-stars-response.mock.ts │ │ ├── tinybird-wait-time-for-1st-review-response.mock.ts │ │ ├── tree-map.mock.ts │ │ └── wait-time-1st-review.mock.ts │ ├── repo │ │ ├── chat.repo.ts │ │ └── insightsProjects.repo.ts │ ├── tsconfig.json │ └── utils │ │ ├── common.ts │ │ ├── db.ts │ │ ├── jwt.ts │ │ └── plausible.ts ├── setup │ ├── caching.ts │ ├── echarts.ts │ ├── head.ts │ ├── primevue.ts │ ├── sitemap.ts │ └── tailwind.ts ├── shims-vue.d.ts ├── tailwind.config.js ├── tsconfig.json ├── types │ ├── auth │ │ ├── auth-jwt.types.ts │ │ └── auth-user.types.ts │ ├── category.ts │ ├── category │ │ ├── category-group.ts │ │ └── category.ts │ ├── collection.ts │ ├── community │ │ └── community.ts │ ├── contributors │ │ └── responses.types.ts │ ├── development │ │ ├── requests.types.ts │ │ └── responses.types.ts │ ├── explore │ │ ├── contributors.ts │ │ └── organizations.ts │ ├── health.ts │ ├── leaderboard │ │ └── leaderboard.ts │ ├── organization-dashboard.ts │ ├── ossindex │ │ ├── category-group.ts │ │ ├── category.ts │ │ ├── collection.ts │ │ └── common.ts │ ├── overview │ │ ├── responses.types.ts │ │ └── score-display.types.ts │ ├── popularity │ │ └── responses.types.ts │ ├── project.ts │ ├── report │ │ └── requests.types.ts │ ├── search.ts │ ├── security │ │ └── responses.types.ts │ └── shared │ │ ├── activity-platforms.ts │ │ ├── activity-types.ts │ │ ├── benchmark.types.ts │ │ ├── ecosystems.types.ts │ │ ├── granularity.ts │ │ ├── pagination.ts │ │ ├── platforms.types.ts │ │ └── summary.types.ts ├── vite.config.ts └── vitest.config.ts ├── init-submodules.sh ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── add-license-all-files.js ├── add-license.js └── check-license.js └── workers └── temporal ├── base ├── base.tsconfig.json ├── package.json └── src │ ├── activities │ ├── activityInterceptor.ts │ └── index.ts │ ├── index.ts │ ├── interceptors.ts │ ├── logging.ts │ ├── worker.ts │ └── workflowInterceptors │ └── index.ts ├── package_downloads_worker ├── package.json ├── src │ ├── Dockerfile.package_downloads_worker │ ├── Dockerfile.package_downloads_worker.dockerignore │ ├── activities.ts │ ├── activities │ │ └── index.ts │ ├── main.ts │ ├── repo │ │ └── index.ts │ ├── schedules │ │ └── scheduleTriggeringDailyPackageDownloads.ts │ ├── types.ts │ ├── util.ts │ ├── workflows.ts │ └── workflows │ │ ├── savePackageDownloads.ts │ │ └── triggerDailyPackageDownloads.ts └── tsconfig.json └── search_volume_worker ├── .dockerignore ├── Dockerfile ├── package.json ├── src ├── activities.ts ├── activities │ └── monthlySearchVolumeUpdate.ts ├── main.ts ├── schedules │ └── monthlySearchVolumeUpdate.ts ├── search-volume │ ├── database.ts │ ├── keywords-everywhere.ts │ ├── search-volume.ts │ ├── tinybird.ts │ └── types.ts ├── types.ts ├── util.ts ├── workflows.ts └── workflows │ └── monthlySearchVolumeUpdate.ts └── tsconfig.json /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.env.dist -------------------------------------------------------------------------------- /.git-branches.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.git-branches.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/build-docker-image/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/actions/build-docker-image/action.yaml -------------------------------------------------------------------------------- /.github/workflows/git-town.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/workflows/git-town.yaml -------------------------------------------------------------------------------- /.github/workflows/license-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/workflows/license-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/workflows/lint-frontend.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/workflows/pr-title-lint.yml -------------------------------------------------------------------------------- /.github/workflows/production-cache-flush.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/workflows/production-cache-flush.yaml -------------------------------------------------------------------------------- /.github/workflows/production-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/workflows/production-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/staging-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/workflows/staging-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT_HEADER.txt: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2025 The Linux Foundation and each contributor. 2 | // SPDX-License-Identifier: MIT -------------------------------------------------------------------------------- /COPYRIGHT_HEADER_vue.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/SECURITY.md -------------------------------------------------------------------------------- /commitlint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/commitlint.config.mjs -------------------------------------------------------------------------------- /database/create_migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/create_migration.sh -------------------------------------------------------------------------------- /database/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrate.sh -------------------------------------------------------------------------------- /database/migrations/V1749123250__initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1749123250__initial.sql -------------------------------------------------------------------------------- /database/migrations/V1749196362__createSequinReplicationSlot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1749196362__createSequinReplicationSlot.sql -------------------------------------------------------------------------------- /database/migrations/V1749196398__packageDownloads.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1749196398__packageDownloads.sql -------------------------------------------------------------------------------- /database/migrations/V1752513036__renameSearchVolumeSlugToProject.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1752513036__renameSearchVolumeSlugToProject.sql -------------------------------------------------------------------------------- /database/migrations/V1755502790__createChatResponsesTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1755502790__createChatResponsesTable.sql -------------------------------------------------------------------------------- /database/migrations/V1756973486__addConversationIdToChatResponses.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1756973486__addConversationIdToChatResponses.sql -------------------------------------------------------------------------------- /database/migrations/V1756973487__alterChatResponsesRouterResponseCheck.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1756973487__alterChatResponsesRouterResponseCheck.sql -------------------------------------------------------------------------------- /database/migrations/V1759392166__addAskClarificationRouterResponseType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1759392166__addAskClarificationRouterResponseType.sql -------------------------------------------------------------------------------- /database/migrations/V1759927411__createChatResponseAgentStepsTable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1759927411__createChatResponseAgentStepsTable.sql -------------------------------------------------------------------------------- /database/migrations/V1759927412__makeChatResponsesNullable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V1759927412__makeChatResponsesNullable.sql -------------------------------------------------------------------------------- /database/migrations/V2__Create_search_volume_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/database/migrations/V2__Create_search_volume_table.sql -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.husky/commit-msg: -------------------------------------------------------------------------------- 1 | pnpm dlx commitlint --edit $1 2 | -------------------------------------------------------------------------------- /frontend/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/.husky/pre-commit -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/.prettierignore -------------------------------------------------------------------------------- /frontend/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/.storybook/main.ts -------------------------------------------------------------------------------- /frontend/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/.storybook/preview-head.html -------------------------------------------------------------------------------- /frontend/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/.storybook/preview.ts -------------------------------------------------------------------------------- /frontend/.stress/stress-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/.stress/stress-test.js -------------------------------------------------------------------------------- /frontend/.stress/warm-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/.stress/warm-cache.js -------------------------------------------------------------------------------- /frontend/AUTH_CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/AUTH_CONFIGURATION.md -------------------------------------------------------------------------------- /frontend/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/CLAUDE.md -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app.vue -------------------------------------------------------------------------------- /frontend/app/assets/images/collections-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/images/collections-header.png -------------------------------------------------------------------------------- /frontend/app/assets/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/images/github.svg -------------------------------------------------------------------------------- /frontend/app/assets/images/icon-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/images/icon-gray.svg -------------------------------------------------------------------------------- /frontend/app/assets/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/images/icon.svg -------------------------------------------------------------------------------- /frontend/app/assets/images/logo-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/images/logo-mobile.svg -------------------------------------------------------------------------------- /frontend/app/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/images/logo.svg -------------------------------------------------------------------------------- /frontend/app/assets/images/revanite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/images/revanite.svg -------------------------------------------------------------------------------- /frontend/app/assets/styles/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/base.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/helpers.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/main.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/utils/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/utils/_container.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/utils/_dependency-display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/utils/_dependency-display.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/utils/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/utils/_table.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/utils/_tree-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/utils/_tree-map.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/utils/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/utils/index.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/variables/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/variables/_colors.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/variables/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/variables/_font.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/variables/_radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/variables/_radius.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/variables/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/variables/_shadows.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/variables/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/variables/_typography.scss -------------------------------------------------------------------------------- /frontend/app/assets/styles/variables/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/assets/styles/variables/index.scss -------------------------------------------------------------------------------- /frontend/app/components/modules/auth/components/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/auth/components/login.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/auth/store/auth.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/auth/store/auth.store.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/collection/components/details/filters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/collection/components/details/filters.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/collection/components/details/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/collection/components/details/header.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/collection/views/collection-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/collection/views/collection-details.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/collection/views/collection-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/collection/views/collection-list.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/collection-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/collection-card.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/explore-header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/explore-header.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/featured-collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/featured-collection.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/list-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/list-card.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/list-modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/list-modal.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/load-more.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/load-more.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/table-header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/table-header.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/top-contributors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/top-contributors.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/top-organizations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/top-organizations.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/top-projects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/top-projects.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/components/top-section.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/components/top-section.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/config/top-section-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/config/top-section-tabs.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/services/explore.api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/services/explore.api.service.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/types/explore.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/types/explore.types.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/explore/views/explore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/explore/views/explore.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/leaderboards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/leaderboards/README.md -------------------------------------------------------------------------------- /frontend/app/components/modules/leaderboards/config/index.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/leaderboards/config/index.config.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/components/overview/info-details/associated-org.vue: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /frontend/app/components/modules/project/components/overview/info-details/links.vue: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /frontend/app/components/modules/project/components/overview/info-details/tags-languages.vue: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /frontend/app/components/modules/project/components/overview/info-section.vue: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /frontend/app/components/modules/project/components/overview/score-tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/components/overview/score-tabs.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/project/components/security/osps-score.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/components/security/osps-score.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/project/components/shared/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/components/shared/header.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/project/components/shared/load-state.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/components/shared/load-state.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/project/config/date-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/config/date-options.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/config/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/config/links.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/config/osps-baseline-score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/config/osps-baseline-score.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/config/security-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/config/security-category.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/config/sentiments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/config/sentiments.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/config/social-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/config/social-links.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/services/js-yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/services/js-yaml.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/services/project.api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/services/project.api.service.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/services/security.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/services/security.service.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/store/project.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/store/project.store.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/project/views/community-voice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/views/community-voice.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/project/views/contributors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/views/contributors.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/project/views/overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/views/overview.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/project/views/security.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/project/views/security.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/repository/utils/repository.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/repository/utils/repository.helpers.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/widget/components/shared/widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/widget/components/shared/widget.vue -------------------------------------------------------------------------------- /frontend/app/components/modules/widget/config/widget-area.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/widget/config/widget-area.config.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/widget/config/widget.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/widget/config/widget.config.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/widget/types/widget-area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/widget/types/widget-area.ts -------------------------------------------------------------------------------- /frontend/app/components/modules/widget/types/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/modules/widget/types/widget.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/components/archived-tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/components/archived-tag.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/components/empty-state.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/components/empty-state.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/components/health-score.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/components/health-score.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/components/onboarding-link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/components/onboarding-link.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/components/repos-exclusion-footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/components/repos-exclusion-footer.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/components/repos-inclusion-note.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/components/repos-inclusion-note.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/banner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/banner.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/footer.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/menu.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/menu/github-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/menu/github-button.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/menu/menu-mobile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/menu/menu-mobile.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/menu/menu-tablet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/menu/menu-tablet.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/menu/static-links.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/menu/static-links.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/navbar.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/search/search-modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/search/search-modal.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/search/search-result.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/search/search-result.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/search/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/search/search.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/layout/tools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/layout/tools.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/copilot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/copilot/index.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/copilot/store/copilot.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/copilot/store/copilot.store.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/copilot/types/copilot.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/copilot/types/copilot.types.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/report/store/report.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/report/store/report.store.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/report/types/report.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/report/types/report.types.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/share/components/share-badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/share/components/share-badge.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/share/components/share-modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/share/components/share-modal.vue -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/share/store/share.api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/share/store/share.api.service.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/share/store/share.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/share/store/share.store.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/modules/share/types/share.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/modules/share/types/share.types.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/store/banner.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/store/banner.store.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/types/formatter.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/types/formatter.types.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/types/granularity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/types/granularity.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/types/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/types/routes.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/types/tanstack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/types/tanstack.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/utils/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/utils/formatter.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/utils/helper.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/utils/overview-score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/utils/overview-score.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/utils/query-param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/utils/query-param.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/utils/responsive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/utils/responsive.ts -------------------------------------------------------------------------------- /frontend/app/components/shared/utils/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/shared/utils/scroll.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/app/components/uikit/accordion/accordion-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/accordion/accordion-item.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/accordion/accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/accordion/accordion.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/accordion/accordion.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/accordion/accordion.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/accordion/accordion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/accordion/accordion.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/avatar-group/avatar-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/avatar-group/avatar-group.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/avatar-group/avatar-group.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/avatar-group/avatar-group.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/avatar-group/avatar-group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/avatar-group/avatar-group.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/avatar/avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/avatar/avatar.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/avatar/avatar.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/avatar/avatar.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/avatar/avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/avatar/avatar.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/avatar/types/Avatar.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/avatar/types/Avatar.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/back/back.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/back/back.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/benchmarks/benchmark-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/benchmarks/benchmark-icon.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/benchmarks/benchmarks-wrap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/benchmarks/benchmarks-wrap.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/benchmarks/benchmarks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/benchmarks/benchmarks.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/benchmarks/benchmarks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/benchmarks/benchmarks.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/button/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/button/button.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/button/button.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/button/button.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/button/button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/button/button.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/button/types/button.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/button/types/button.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/card/card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/card/card.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/card/card.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/card/card.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/card/card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/card/card.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/carousel/carousel-navigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/carousel/carousel-navigation.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/carousel/carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/carousel/carousel.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/carousel/carousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/carousel/carousel.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/carousel/types/carousel.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/carousel/types/carousel.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/chart.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/bar.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/bar.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/defaults.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/defaults.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/gauge.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/gauge.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/geo-map.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/geo-map.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/heat-map.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/heat-map.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/line.area.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/line.area.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/radar.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/radar.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/scatter.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/scatter.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/tree-map.chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/tree-map.chart.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/configs/world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/configs/world.json -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/helpers/chart-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/helpers/chart-helpers.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/helpers/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/helpers/formatters.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/types/ChartTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/types/ChartTypes.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chart/types/EChartTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chart/types/EChartTypes.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/checkbox/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/checkbox/checkbox.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/checkbox/checkbox.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/checkbox/checkbox.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/checkbox/checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/checkbox/checkbox.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/chip/chip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chip/chip.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/chip/chip.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chip/chip.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/chip/chip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chip/chip.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/chip/types/chip.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/chip/types/chip.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/datepicker/datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/datepicker/datepicker.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/datepicker/datepicker.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/datepicker/datepicker.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/datepicker/datepicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/datepicker/datepicker.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/delta-display/delta-display.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/delta-display/delta-display.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/delta-display/delta-display.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/delta-display/delta-display.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/drawer/drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/drawer/drawer.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/drawer/drawer.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/drawer/drawer.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/drawer/drawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/drawer/drawer.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown-group-title.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown-group-title.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown-item.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown-search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown-search.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown-select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown-select.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown-selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown-selector.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown-separator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown-separator.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown-submenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown-submenu.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/dropdown.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/dropdown/types/dropdown.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/dropdown/types/dropdown.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/constants/fieldMessageTypeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/constants/fieldMessageTypeData.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/field-message.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/field-message.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/field-message.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/field-message.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/field-message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/field-message.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/field-messages.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/field-messages.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/field-messages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/field-messages.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/field.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/field.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/field.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/field/types/FieldMessageType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/field/types/FieldMessageType.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/icon-button/icon-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/icon-button/icon-button.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/icon-button/icon-button.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/icon-button/icon-button.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/icon-button/icon-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/icon-button/icon-button.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/icon-button/types/icon-button.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/icon-button/types/icon-button.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/icon/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/icon/icon.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/icon/icon.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/icon/icon.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/icon/icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/icon/icon.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/icon/types/icon.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/icon/types/icon.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/index.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/input/input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/input/input.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/input/input.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/input/input.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/input/input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/input/input.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/maintain-height/maintain-height.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/maintain-height/maintain-height.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/menu-button/menu-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/menu-button/menu-button.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/menu-button/menu-button.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/menu-button/menu-button.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/menu-button/menu-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/menu-button/menu-button.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/modal/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/modal/modal.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/modal/modal.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/modal/modal.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/modal/modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/modal/modal.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/organization-logo/organization-logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/organization-logo/organization-logo.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/organization-logo/organization-logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/organization-logo/organization-logo.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/popover/popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/popover/popover.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/popover/popover.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/popover/popover.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/popover/popover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/popover/popover.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/popover/types/PopoverPlacement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/popover/types/PopoverPlacement.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/popover/types/PopoverTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/popover/types/PopoverTrigger.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/progress-bar/progress-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/progress-bar/progress-bar.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/progress-bar/progress-bar.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/progress-bar/progress-bar.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/progress-bar/progress-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/progress-bar/progress-bar.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/progress-bar/types/progress-bar.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/progress-bar/types/progress-bar.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/scroll-view/scroll-area.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/scroll-view/scroll-area.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/scroll-view/scroll-view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/scroll-view/scroll-view.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/scrollable-shadow/scrollable-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/scrollable-shadow/scrollable-shadow.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/scrollable-shadow/scrollable-shadow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/scrollable-shadow/scrollable-shadow.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/select/option.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/select/option.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/select/select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/select/select.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/select/select.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/select/select.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/select/select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/select/select.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/share/share.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/share/share.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/share/share.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/share/share.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/side-nav/side-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/side-nav/side-nav.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/side-nav/side-nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/side-nav/side-nav.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/side-nav/types/side-nav.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/side-nav/types/side-nav.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/skeleton/skeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/skeleton/skeleton.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/skeleton/skeleton.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/skeleton/skeleton.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/skeleton/skeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/skeleton/skeleton.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/spinner/spinner.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/spinner/spinner.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/spinner/spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/spinner/spinner.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/table/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/table/table.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/table/table.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/table/table.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/table/table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/table/table.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/tabs/panels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tabs/panels.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/tabs/tabs-panels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tabs/tabs-panels.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/tabs/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tabs/tabs.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/tabs/tabs.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tabs/tabs.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/tabs/tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tabs/tabs.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/tabs/types/tab.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tabs/types/tab.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/tag/tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tag/tag.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/tag/tag.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tag/tag.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/tag/tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tag/tag.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/tag/types/tag.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tag/types/tag.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/textarea/textarea.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/textarea/textarea.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/textarea/textarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/textarea/textarea.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/toast/toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toast/toast.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/toast/toast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toast/toast.service.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/toast/toast.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toast/toast.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/toast/toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toast/toast.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/toast/types/toast.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toast/types/toast.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/toggle/toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toggle/toggle.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/toggle/toggle.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toggle/toggle.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/toggle/toggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toggle/toggle.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/toggle/types/toggle.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/toggle/types/toggle.types.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/tooltip/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tooltip/tooltip.scss -------------------------------------------------------------------------------- /frontend/app/components/uikit/tooltip/tooltip.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tooltip/tooltip.stories.ts -------------------------------------------------------------------------------- /frontend/app/components/uikit/tooltip/tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tooltip/tooltip.vue -------------------------------------------------------------------------------- /frontend/app/components/uikit/tooltip/types/TooltipPlacement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/components/uikit/tooltip/types/TooltipPlacement.ts -------------------------------------------------------------------------------- /frontend/app/config/banner.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/banner.config.ts -------------------------------------------------------------------------------- /frontend/app/config/ecosystems/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/ecosystems/index.ts -------------------------------------------------------------------------------- /frontend/app/config/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/links.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/footer.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/index.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/community-management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/community-management.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/crowdfunding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/crowdfunding.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/document-management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/document-management.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/easy-cla.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/easy-cla.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/index.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/individual-dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/individual-dashboard.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/mentorship.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/mentorship.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/organization-dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/organization-dashboard.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/project-control-center.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/project-control-center.ts -------------------------------------------------------------------------------- /frontend/app/config/menu/tools/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/menu/tools/security.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/confluence.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/confluence.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/devto.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/devto.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/discord.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/discord.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/discourse.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/discourse.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/gerrit.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/gerrit.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/git.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/git.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/github.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/github.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/gitlab.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/gitlab.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/groupsio.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/groupsio.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/hackernews.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/hackernews.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/jira.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/jira.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/linkedin.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/linkedin.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/reddit.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/reddit.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/slack.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/slack.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/stackoverflow.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/stackoverflow.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/configs/twitter.platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/configs/twitter.platform.ts -------------------------------------------------------------------------------- /frontend/app/config/platforms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/platforms/index.ts -------------------------------------------------------------------------------- /frontend/app/config/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/styles/colors.ts -------------------------------------------------------------------------------- /frontend/app/config/styles/font-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/config/styles/font-size.ts -------------------------------------------------------------------------------- /frontend/app/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/error.vue -------------------------------------------------------------------------------- /frontend/app/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/layouts/default.vue -------------------------------------------------------------------------------- /frontend/app/pages/collection/[slug].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/collection/[slug].vue -------------------------------------------------------------------------------- /frontend/app/pages/collection/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/collection/index.vue -------------------------------------------------------------------------------- /frontend/app/pages/embed/project/[slug]/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/embed/project/[slug]/index.vue -------------------------------------------------------------------------------- /frontend/app/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/index.vue -------------------------------------------------------------------------------- /frontend/app/pages/leaderboards/[key].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/leaderboards/[key].vue -------------------------------------------------------------------------------- /frontend/app/pages/leaderboards/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/leaderboards/index.vue -------------------------------------------------------------------------------- /frontend/app/pages/open-source-index/category/[slug].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/open-source-index/category/[slug].vue -------------------------------------------------------------------------------- /frontend/app/pages/open-source-index/group/[slug].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/open-source-index/group/[slug].vue -------------------------------------------------------------------------------- /frontend/app/pages/open-source-index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/open-source-index/index.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug].vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/community-voice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/community-voice.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/contributors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/contributors.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/development.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/development.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/index.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/popularity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/popularity.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/repository/[name]/community-voice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/repository/[name]/community-voice.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/repository/[name]/contributors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/repository/[name]/contributors.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/repository/[name]/development.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/repository/[name]/development.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/repository/[name]/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/repository/[name]/index.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/repository/[name]/popularity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/repository/[name]/popularity.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/repository/[name]/security.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/repository/[name]/security.vue -------------------------------------------------------------------------------- /frontend/app/pages/project/[slug]/security.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/pages/project/[slug]/security.vue -------------------------------------------------------------------------------- /frontend/app/plugins/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/plugins/analytics.ts -------------------------------------------------------------------------------- /frontend/app/plugins/canonical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/plugins/canonical.ts -------------------------------------------------------------------------------- /frontend/app/plugins/vue-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/app/plugins/vue-query.ts -------------------------------------------------------------------------------- /frontend/blog/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/config.mts -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/components/BlogAuthor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/components/BlogAuthor.vue -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/components/BlogLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/components/BlogLayout.vue -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/components/BlogLayoutWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/components/BlogLayoutWrapper.vue -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/components/CustomLfxFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/components/CustomLfxFooter.vue -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/components/CustomNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/components/CustomNavbar.vue -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/components/CustomNotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/components/CustomNotFound.vue -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/cssOverrides/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/cssOverrides/button.scss -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/cssOverrides/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/cssOverrides/dialog.scss -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/cssOverrides/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/cssOverrides/home.scss -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/cssOverrides/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/cssOverrides/index.ts -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/cssOverrides/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/cssOverrides/search.scss -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/cssOverrides/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/cssOverrides/sidebar.scss -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /frontend/blog/.vitepress/theme/tailwind.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/theme/tailwind.postcss -------------------------------------------------------------------------------- /frontend/blog/.vitepress/vue-shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/.vitepress/vue-shim.d.ts -------------------------------------------------------------------------------- /frontend/blog/first-3-months/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/first-3-months/index.md -------------------------------------------------------------------------------- /frontend/blog/introducing-insights/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/introducing-insights/index.md -------------------------------------------------------------------------------- /frontend/blog/product-update-nov-2025/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/product-update-nov-2025/index.md -------------------------------------------------------------------------------- /frontend/blog/public/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/public/images/github.svg -------------------------------------------------------------------------------- /frontend/blog/public/images/health-score-readmes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/public/images/health-score-readmes.png -------------------------------------------------------------------------------- /frontend/blog/public/images/jonathan-headshot-2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/public/images/jonathan-headshot-2025.png -------------------------------------------------------------------------------- /frontend/blog/public/images/logo-blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/public/images/logo-blog.svg -------------------------------------------------------------------------------- /frontend/blog/public/images/logo-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/public/images/logo-mobile.svg -------------------------------------------------------------------------------- /frontend/blog/public/images/plausible-analytics-countries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/public/images/plausible-analytics-countries.png -------------------------------------------------------------------------------- /frontend/blog/public/images/plausible-analytics-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/public/images/plausible-analytics-stats.png -------------------------------------------------------------------------------- /frontend/blog/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/blog/tsconfig.json -------------------------------------------------------------------------------- /frontend/composables/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/composables/useAuth.ts -------------------------------------------------------------------------------- /frontend/composables/useRichSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/composables/useRichSchema.ts -------------------------------------------------------------------------------- /frontend/composables/useSanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/composables/useSanitize.ts -------------------------------------------------------------------------------- /frontend/config/trust-score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/config/trust-score.ts -------------------------------------------------------------------------------- /frontend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docker-compose.yml -------------------------------------------------------------------------------- /frontend/docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/components/CustomLfxFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/components/CustomLfxFooter.vue -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/components/CustomNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/components/CustomNavbar.vue -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/cssOverrides/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/cssOverrides/button.scss -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/cssOverrides/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/cssOverrides/dialog.scss -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/cssOverrides/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/cssOverrides/index.ts -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/cssOverrides/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/cssOverrides/search.scss -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/cssOverrides/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/cssOverrides/sidebar.scss -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /frontend/docs/.vitepress/theme/tailwind.postcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/.vitepress/theme/tailwind.postcss -------------------------------------------------------------------------------- /frontend/docs/features/lfx-data-copilot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/features/lfx-data-copilot/index.md -------------------------------------------------------------------------------- /frontend/docs/images/criticality-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/images/criticality-score.png -------------------------------------------------------------------------------- /frontend/docs/images/feedback-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/images/feedback-buttons.png -------------------------------------------------------------------------------- /frontend/docs/images/global-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/images/global-button.png -------------------------------------------------------------------------------- /frontend/docs/images/report-data-issue-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/images/report-data-issue-form.png -------------------------------------------------------------------------------- /frontend/docs/images/report-data-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/images/report-data-issue.png -------------------------------------------------------------------------------- /frontend/docs/images/widget-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/images/widget-button.png -------------------------------------------------------------------------------- /frontend/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/index.md -------------------------------------------------------------------------------- /frontend/docs/introduction/contributions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/introduction/contributions/index.md -------------------------------------------------------------------------------- /frontend/docs/introduction/data-quality/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/introduction/data-quality/index.md -------------------------------------------------------------------------------- /frontend/docs/introduction/data-sources/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/introduction/data-sources/index.md -------------------------------------------------------------------------------- /frontend/docs/introduction/lf-oss-index/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/introduction/lf-oss-index/index.md -------------------------------------------------------------------------------- /frontend/docs/introduction/maintainers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/introduction/maintainers/index.md -------------------------------------------------------------------------------- /frontend/docs/introduction/what-is-insights/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/introduction/what-is-insights/index.md -------------------------------------------------------------------------------- /frontend/docs/metrics/contributors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/metrics/contributors/index.md -------------------------------------------------------------------------------- /frontend/docs/metrics/development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/metrics/development/index.md -------------------------------------------------------------------------------- /frontend/docs/metrics/health-score/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/metrics/health-score/index.md -------------------------------------------------------------------------------- /frontend/docs/metrics/popularity/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/metrics/popularity/index.md -------------------------------------------------------------------------------- /frontend/docs/metrics/security/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/metrics/security/index.md -------------------------------------------------------------------------------- /frontend/docs/more/faq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/more/faq/index.md -------------------------------------------------------------------------------- /frontend/docs/more/glossary/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/more/glossary/index.md -------------------------------------------------------------------------------- /frontend/docs/public/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/public/images/github.svg -------------------------------------------------------------------------------- /frontend/docs/public/images/logo-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/public/images/logo-docs.svg -------------------------------------------------------------------------------- /frontend/docs/public/images/logo-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/public/images/logo-mobile.svg -------------------------------------------------------------------------------- /frontend/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/docs/tsconfig.json -------------------------------------------------------------------------------- /frontend/dontuse.env.test: -------------------------------------------------------------------------------- 1 | NUXT_TINYBIRD_TOKEN=somefaketoken -------------------------------------------------------------------------------- /frontend/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/eslint.config.mjs -------------------------------------------------------------------------------- /frontend/lib/chat/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/Readme.md -------------------------------------------------------------------------------- /frontend/lib/chat/agents/auditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/agents/auditor.ts -------------------------------------------------------------------------------- /frontend/lib/chat/agents/base-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/agents/base-agent.ts -------------------------------------------------------------------------------- /frontend/lib/chat/agents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/agents/index.ts -------------------------------------------------------------------------------- /frontend/lib/chat/agents/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/agents/pipe.ts -------------------------------------------------------------------------------- /frontend/lib/chat/agents/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/agents/router.ts -------------------------------------------------------------------------------- /frontend/lib/chat/agents/text-to-sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/agents/text-to-sql.ts -------------------------------------------------------------------------------- /frontend/lib/chat/chart/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/chart/analysis.ts -------------------------------------------------------------------------------- /frontend/lib/chat/chart/base-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/chart/base-config.ts -------------------------------------------------------------------------------- /frontend/lib/chat/chart/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/chart/generator.ts -------------------------------------------------------------------------------- /frontend/lib/chat/chart/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/chart/types.ts -------------------------------------------------------------------------------- /frontend/lib/chat/data-copilot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/data-copilot.ts -------------------------------------------------------------------------------- /frontend/lib/chat/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/enums.ts -------------------------------------------------------------------------------- /frontend/lib/chat/instructions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/instructions.ts -------------------------------------------------------------------------------- /frontend/lib/chat/prompts/auditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/prompts/auditor.ts -------------------------------------------------------------------------------- /frontend/lib/chat/prompts/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/prompts/pipe.ts -------------------------------------------------------------------------------- /frontend/lib/chat/prompts/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/prompts/router.ts -------------------------------------------------------------------------------- /frontend/lib/chat/prompts/text-to-sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/prompts/text-to-sql.ts -------------------------------------------------------------------------------- /frontend/lib/chat/prompts/tinybird-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/prompts/tinybird-functions.md -------------------------------------------------------------------------------- /frontend/lib/chat/prompts/tinybird-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/prompts/tinybird-patterns.md -------------------------------------------------------------------------------- /frontend/lib/chat/tests/auditor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/tests/auditor.test.ts -------------------------------------------------------------------------------- /frontend/lib/chat/tests/router.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/tests/router.test.ts -------------------------------------------------------------------------------- /frontend/lib/chat/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/types.ts -------------------------------------------------------------------------------- /frontend/lib/chat/utils/data-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/lib/chat/utils/data-summary.ts -------------------------------------------------------------------------------- /frontend/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/nuxt.config.ts -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/prettier.config.mjs -------------------------------------------------------------------------------- /frontend/public/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/inter-bold.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/fonts/inter-bold.b64 -------------------------------------------------------------------------------- /frontend/public/fonts/inter-light.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/fonts/inter-light.b64 -------------------------------------------------------------------------------- /frontend/public/fonts/inter-regular.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/fonts/inter-regular.b64 -------------------------------------------------------------------------------- /frontend/public/images/criticality/top-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/criticality/top-10.svg -------------------------------------------------------------------------------- /frontend/public/images/criticality/top-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/criticality/top-100.svg -------------------------------------------------------------------------------- /frontend/public/images/criticality/top-1000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/criticality/top-1000.svg -------------------------------------------------------------------------------- /frontend/public/images/criticality/top-10000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/criticality/top-10000.svg -------------------------------------------------------------------------------- /frontend/public/images/criticality/top-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/criticality/top-500.svg -------------------------------------------------------------------------------- /frontend/public/images/criticality/top-5000.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/criticality/top-5000.svg -------------------------------------------------------------------------------- /frontend/public/images/ecosystems/conda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/ecosystems/conda.png -------------------------------------------------------------------------------- /frontend/public/images/ecosystems/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/ecosystems/generic.png -------------------------------------------------------------------------------- /frontend/public/images/ecosystems/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/ecosystems/go.png -------------------------------------------------------------------------------- /frontend/public/images/ecosystems/maven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/ecosystems/maven.png -------------------------------------------------------------------------------- /frontend/public/images/ecosystems/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/ecosystems/npm.png -------------------------------------------------------------------------------- /frontend/public/images/ecosystems/nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/ecosystems/nuget.png -------------------------------------------------------------------------------- /frontend/public/images/ecosystems/pypi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/ecosystems/pypi.png -------------------------------------------------------------------------------- /frontend/public/images/ecosystems/rubygems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/ecosystems/rubygems.png -------------------------------------------------------------------------------- /frontend/public/images/fallback-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/fallback-logo.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/confluence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/confluence.svg -------------------------------------------------------------------------------- /frontend/public/images/integrations/devto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/devto.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/discord.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/discourse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/discourse.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/gerrit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/gerrit.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/git.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/github.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/gitlab.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/groupsio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/groupsio.svg -------------------------------------------------------------------------------- /frontend/public/images/integrations/hackernews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/hackernews.svg -------------------------------------------------------------------------------- /frontend/public/images/integrations/jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/jira.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/linkedin.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/reddit.svg -------------------------------------------------------------------------------- /frontend/public/images/integrations/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/slack.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/stackoverflow.png -------------------------------------------------------------------------------- /frontend/public/images/integrations/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/integrations/x.png -------------------------------------------------------------------------------- /frontend/public/images/misc/loading-state-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/misc/loading-state-bg.svg -------------------------------------------------------------------------------- /frontend/public/images/platforms/bluesky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/bluesky.png -------------------------------------------------------------------------------- /frontend/public/images/platforms/devto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/devto.png -------------------------------------------------------------------------------- /frontend/public/images/platforms/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/github.png -------------------------------------------------------------------------------- /frontend/public/images/platforms/hackernews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/hackernews.svg -------------------------------------------------------------------------------- /frontend/public/images/platforms/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/linkedin.png -------------------------------------------------------------------------------- /frontend/public/images/platforms/newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/newsletter.png -------------------------------------------------------------------------------- /frontend/public/images/platforms/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/podcast.png -------------------------------------------------------------------------------- /frontend/public/images/platforms/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/reddit.svg -------------------------------------------------------------------------------- /frontend/public/images/platforms/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/stackoverflow.png -------------------------------------------------------------------------------- /frontend/public/images/platforms/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/x.png -------------------------------------------------------------------------------- /frontend/public/images/platforms/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/platforms/youtube.png -------------------------------------------------------------------------------- /frontend/public/images/share/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/share/linkedin.svg -------------------------------------------------------------------------------- /frontend/public/images/share/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/share/reddit.svg -------------------------------------------------------------------------------- /frontend/public/images/share/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/images/share/x.svg -------------------------------------------------------------------------------- /frontend/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/logo.svg -------------------------------------------------------------------------------- /frontend/public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/public/og-image.png -------------------------------------------------------------------------------- /frontend/server/api/auth/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/auth/callback.ts -------------------------------------------------------------------------------- /frontend/server/api/auth/login.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/auth/login.get.ts -------------------------------------------------------------------------------- /frontend/server/api/auth/logout.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/auth/logout.post.ts -------------------------------------------------------------------------------- /frontend/server/api/auth/user.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/auth/user.get.ts -------------------------------------------------------------------------------- /frontend/server/api/badge/active-contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/badge/active-contributors.ts -------------------------------------------------------------------------------- /frontend/server/api/badge/contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/badge/contributors.ts -------------------------------------------------------------------------------- /frontend/server/api/badge/health-score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/badge/health-score.ts -------------------------------------------------------------------------------- /frontend/server/api/category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/category/index.ts -------------------------------------------------------------------------------- /frontend/server/api/chat/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/chat/chart.ts -------------------------------------------------------------------------------- /frontend/server/api/chat/feedback/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/chat/feedback/[id].ts -------------------------------------------------------------------------------- /frontend/server/api/chat/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/chat/stream.ts -------------------------------------------------------------------------------- /frontend/server/api/collection/[slug].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/collection/[slug].ts -------------------------------------------------------------------------------- /frontend/server/api/collection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/collection/index.ts -------------------------------------------------------------------------------- /frontend/server/api/community/[slug].post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/community/[slug].post.ts -------------------------------------------------------------------------------- /frontend/server/api/community/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/community/list.ts -------------------------------------------------------------------------------- /frontend/server/api/explore/contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/explore/contributors.ts -------------------------------------------------------------------------------- /frontend/server/api/explore/organizations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/explore/organizations.ts -------------------------------------------------------------------------------- /frontend/server/api/health/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/health/index.ts -------------------------------------------------------------------------------- /frontend/server/api/health/live.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/health/live.ts -------------------------------------------------------------------------------- /frontend/server/api/leaderboard/[type].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/leaderboard/[type].ts -------------------------------------------------------------------------------- /frontend/server/api/leaderboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/leaderboard/index.ts -------------------------------------------------------------------------------- /frontend/server/api/organization/avg-merge-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/organization/avg-merge-time.ts -------------------------------------------------------------------------------- /frontend/server/api/organization/commit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/organization/commit.ts -------------------------------------------------------------------------------- /frontend/server/api/organization/contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/organization/contributors.ts -------------------------------------------------------------------------------- /frontend/server/api/organization/maintainers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/organization/maintainers.ts -------------------------------------------------------------------------------- /frontend/server/api/organization/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/organization/metrics.ts -------------------------------------------------------------------------------- /frontend/server/api/organization/pr-opened.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/organization/pr-opened.ts -------------------------------------------------------------------------------- /frontend/server/api/ossindex/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/ossindex/categories.ts -------------------------------------------------------------------------------- /frontend/server/api/ossindex/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/ossindex/collections.ts -------------------------------------------------------------------------------- /frontend/server/api/ossindex/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/ossindex/groups.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/activity-types.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/activity-types.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/contributors/retention.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/contributors/retention.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/development/active-days.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/development/active-days.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/development/commit-activities.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/development/commit-activities.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/development/issues-resolution.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/development/issues-resolution.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/development/merge-lead-time.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/development/merge-lead-time.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/development/pull-requests.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/development/pull-requests.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/index.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/insights.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/insights.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/overview/health-score.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/overview/health-score.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/popularity/forks.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/popularity/forks.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/popularity/github-mentions.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/popularity/github-mentions.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/popularity/package-downloads.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/popularity/package-downloads.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/popularity/packages.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/popularity/packages.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/popularity/press-mentions.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/popularity/press-mentions.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/popularity/search-queries.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/popularity/search-queries.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/popularity/social-mentions.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/popularity/social-mentions.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/popularity/stars.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/popularity/stars.get.ts -------------------------------------------------------------------------------- /frontend/server/api/project/[slug]/security/assessment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/[slug]/security/assessment.ts -------------------------------------------------------------------------------- /frontend/server/api/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/project/index.ts -------------------------------------------------------------------------------- /frontend/server/api/report/index.post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/report/index.post.ts -------------------------------------------------------------------------------- /frontend/server/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/search.ts -------------------------------------------------------------------------------- /frontend/server/api/seo/og-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/seo/og-image.ts -------------------------------------------------------------------------------- /frontend/server/api/seo/sitemap/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/seo/sitemap/blog.ts -------------------------------------------------------------------------------- /frontend/server/api/seo/sitemap/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/seo/sitemap/collections.ts -------------------------------------------------------------------------------- /frontend/server/api/seo/sitemap/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/seo/sitemap/docs.ts -------------------------------------------------------------------------------- /frontend/server/api/seo/sitemap/oss-index-categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/seo/sitemap/oss-index-categories.ts -------------------------------------------------------------------------------- /frontend/server/api/seo/sitemap/oss-index-groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/seo/sitemap/oss-index-groups.ts -------------------------------------------------------------------------------- /frontend/server/api/seo/sitemap/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/seo/sitemap/projects.ts -------------------------------------------------------------------------------- /frontend/server/api/seo/sitemap/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/seo/sitemap/static.ts -------------------------------------------------------------------------------- /frontend/server/api/testing/chart-data.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/testing/chart-data.get.ts -------------------------------------------------------------------------------- /frontend/server/api/testing/heat-data.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/testing/heat-data.get.ts -------------------------------------------------------------------------------- /frontend/server/api/testing/issues-data.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/testing/issues-data.get.ts -------------------------------------------------------------------------------- /frontend/server/api/testing/map-geo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/testing/map-geo.ts -------------------------------------------------------------------------------- /frontend/server/api/testing/scatter-data.get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/api/testing/scatter-data.get.ts -------------------------------------------------------------------------------- /frontend/server/constants/inter-bold-font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/constants/inter-bold-font.ts -------------------------------------------------------------------------------- /frontend/server/constants/inter-light-font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/constants/inter-light-font.ts -------------------------------------------------------------------------------- /frontend/server/constants/inter-regular-font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/constants/inter-regular-font.ts -------------------------------------------------------------------------------- /frontend/server/data/data-sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/data-sources.ts -------------------------------------------------------------------------------- /frontend/server/data/github/github.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/github/github.api.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/active-contributors-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/active-contributors-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/active-contributors-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/active-contributors-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/active-days-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/active-days-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/active-days-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/active-days-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/active-organizations-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/active-organizations-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/active-organizations-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/active-organizations-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/activity-types-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/activity-types-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/activity-types-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/activity-types-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/average-time-to-merge-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/average-time-to-merge-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/average-time-to-merge-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/average-time-to-merge-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/bucket-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/bucket-cache.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/code-review-engagement-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/code-review-engagement-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/commit-activites-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/commit-activites-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/contributors-dependency-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/contributors-dependency-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/contributors-leaderboard-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/contributors-leaderboard-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/forks-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/forks-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/forks-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/forks-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/geographic-distribution-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/geographic-distribution-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/issues-resolution-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/issues-resolution-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/issues-resolution-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/issues-resolution-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/mailing-lists-messages-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/mailing-lists-messages-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/merge-lead-time-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/merge-lead-time-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/merge-lead-time-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/merge-lead-time-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/organizations-dependency-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/organizations-dependency-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/organizations-leaderboard-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/organizations-leaderboard-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/package-metrics-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/package-metrics-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/packages-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/packages-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/pull-requests-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/pull-requests-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/pull-requests-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/pull-requests-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/requests.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/requests.types.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/responses.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/responses.types.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/retention-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/retention-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/retention-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/retention-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/review-time-by-pr-size-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/review-time-by-pr-size-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/search-queries-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/search-queries-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/stars-data-source.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/stars-data-source.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/stars-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/stars-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/tinybird.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/tinybird.test.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/tinybird.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/tinybird.ts -------------------------------------------------------------------------------- /frontend/server/data/tinybird/wait-time-for-1st-review-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/tinybird/wait-time-for-1st-review-data-source.ts -------------------------------------------------------------------------------- /frontend/server/data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/types.ts -------------------------------------------------------------------------------- /frontend/server/data/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/util.test.ts -------------------------------------------------------------------------------- /frontend/server/data/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/data/util.ts -------------------------------------------------------------------------------- /frontend/server/helpers/health-score.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/helpers/health-score.helpers.ts -------------------------------------------------------------------------------- /frontend/server/helpers/jira-issue.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/helpers/jira-issue.helpers.ts -------------------------------------------------------------------------------- /frontend/server/helpers/repository.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/helpers/repository.helpers.ts -------------------------------------------------------------------------------- /frontend/server/middleware/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/middleware/database.ts -------------------------------------------------------------------------------- /frontend/server/middleware/jwt-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/middleware/jwt-auth.ts -------------------------------------------------------------------------------- /frontend/server/mocks/github-mentions.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/github-mentions.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/press-mentions.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/press-mentions.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/social-mentions.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/social-mentions.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-active-contributors-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-active-contributors-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-active-days-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-active-days-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-active-organizations-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-active-organizations-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-activities-count.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-activities-count.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-average-time-to-merge-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-average-time-to-merge-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-code-review-engagement-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-code-review-engagement-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-contributors-dependency-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-contributors-dependency-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-forks-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-forks-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-geo-distribution-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-geo-distribution-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-issues-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-issues-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-merge-lead-time-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-merge-lead-time-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-pull-requests-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-pull-requests-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-retention-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-retention-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-review-time-by-pr-size-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-review-time-by-pr-size-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-search-volume-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-search-volume-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tinybird-stars-response.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tinybird-stars-response.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/tree-map.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/tree-map.mock.ts -------------------------------------------------------------------------------- /frontend/server/mocks/wait-time-1st-review.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/mocks/wait-time-1st-review.mock.ts -------------------------------------------------------------------------------- /frontend/server/repo/chat.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/repo/chat.repo.ts -------------------------------------------------------------------------------- /frontend/server/repo/insightsProjects.repo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/repo/insightsProjects.repo.ts -------------------------------------------------------------------------------- /frontend/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/server/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/utils/common.ts -------------------------------------------------------------------------------- /frontend/server/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/utils/db.ts -------------------------------------------------------------------------------- /frontend/server/utils/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/utils/jwt.ts -------------------------------------------------------------------------------- /frontend/server/utils/plausible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/server/utils/plausible.ts -------------------------------------------------------------------------------- /frontend/setup/caching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/setup/caching.ts -------------------------------------------------------------------------------- /frontend/setup/echarts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/setup/echarts.ts -------------------------------------------------------------------------------- /frontend/setup/head.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/setup/head.ts -------------------------------------------------------------------------------- /frontend/setup/primevue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/setup/primevue.ts -------------------------------------------------------------------------------- /frontend/setup/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/setup/sitemap.ts -------------------------------------------------------------------------------- /frontend/setup/tailwind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/setup/tailwind.ts -------------------------------------------------------------------------------- /frontend/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/shims-vue.d.ts -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/types/auth/auth-jwt.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/auth/auth-jwt.types.ts -------------------------------------------------------------------------------- /frontend/types/auth/auth-user.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/auth/auth-user.types.ts -------------------------------------------------------------------------------- /frontend/types/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/category.ts -------------------------------------------------------------------------------- /frontend/types/category/category-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/category/category-group.ts -------------------------------------------------------------------------------- /frontend/types/category/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/category/category.ts -------------------------------------------------------------------------------- /frontend/types/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/collection.ts -------------------------------------------------------------------------------- /frontend/types/community/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/community/community.ts -------------------------------------------------------------------------------- /frontend/types/contributors/responses.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/contributors/responses.types.ts -------------------------------------------------------------------------------- /frontend/types/development/requests.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/development/requests.types.ts -------------------------------------------------------------------------------- /frontend/types/development/responses.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/development/responses.types.ts -------------------------------------------------------------------------------- /frontend/types/explore/contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/explore/contributors.ts -------------------------------------------------------------------------------- /frontend/types/explore/organizations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/explore/organizations.ts -------------------------------------------------------------------------------- /frontend/types/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/health.ts -------------------------------------------------------------------------------- /frontend/types/leaderboard/leaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/leaderboard/leaderboard.ts -------------------------------------------------------------------------------- /frontend/types/organization-dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/organization-dashboard.ts -------------------------------------------------------------------------------- /frontend/types/ossindex/category-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/ossindex/category-group.ts -------------------------------------------------------------------------------- /frontend/types/ossindex/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/ossindex/category.ts -------------------------------------------------------------------------------- /frontend/types/ossindex/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/ossindex/collection.ts -------------------------------------------------------------------------------- /frontend/types/ossindex/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/ossindex/common.ts -------------------------------------------------------------------------------- /frontend/types/overview/responses.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/overview/responses.types.ts -------------------------------------------------------------------------------- /frontend/types/overview/score-display.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/overview/score-display.types.ts -------------------------------------------------------------------------------- /frontend/types/popularity/responses.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/popularity/responses.types.ts -------------------------------------------------------------------------------- /frontend/types/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/project.ts -------------------------------------------------------------------------------- /frontend/types/report/requests.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/report/requests.types.ts -------------------------------------------------------------------------------- /frontend/types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/search.ts -------------------------------------------------------------------------------- /frontend/types/security/responses.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/security/responses.types.ts -------------------------------------------------------------------------------- /frontend/types/shared/activity-platforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/shared/activity-platforms.ts -------------------------------------------------------------------------------- /frontend/types/shared/activity-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/shared/activity-types.ts -------------------------------------------------------------------------------- /frontend/types/shared/benchmark.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/shared/benchmark.types.ts -------------------------------------------------------------------------------- /frontend/types/shared/ecosystems.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/shared/ecosystems.types.ts -------------------------------------------------------------------------------- /frontend/types/shared/granularity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/shared/granularity.ts -------------------------------------------------------------------------------- /frontend/types/shared/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/shared/pagination.ts -------------------------------------------------------------------------------- /frontend/types/shared/platforms.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/shared/platforms.types.ts -------------------------------------------------------------------------------- /frontend/types/shared/summary.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/types/shared/summary.types.ts -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /frontend/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/frontend/vitest.config.ts -------------------------------------------------------------------------------- /init-submodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/init-submodules.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/add-license-all-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/scripts/add-license-all-files.js -------------------------------------------------------------------------------- /scripts/add-license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/scripts/add-license.js -------------------------------------------------------------------------------- /scripts/check-license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/scripts/check-license.js -------------------------------------------------------------------------------- /workers/temporal/base/base.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/base.tsconfig.json -------------------------------------------------------------------------------- /workers/temporal/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/package.json -------------------------------------------------------------------------------- /workers/temporal/base/src/activities/activityInterceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/src/activities/activityInterceptor.ts -------------------------------------------------------------------------------- /workers/temporal/base/src/activities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/src/activities/index.ts -------------------------------------------------------------------------------- /workers/temporal/base/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/src/index.ts -------------------------------------------------------------------------------- /workers/temporal/base/src/interceptors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/src/interceptors.ts -------------------------------------------------------------------------------- /workers/temporal/base/src/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/src/logging.ts -------------------------------------------------------------------------------- /workers/temporal/base/src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/src/worker.ts -------------------------------------------------------------------------------- /workers/temporal/base/src/workflowInterceptors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/base/src/workflowInterceptors/index.ts -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/package.json -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/src/activities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/src/activities.ts -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/src/activities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/src/activities/index.ts -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/src/main.ts -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/src/repo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/src/repo/index.ts -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/src/types.ts -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/src/util.ts -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/src/workflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/src/workflows.ts -------------------------------------------------------------------------------- /workers/temporal/package_downloads_worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/package_downloads_worker/tsconfig.json -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/.dockerignore -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/Dockerfile -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/package.json -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/src/activities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/src/activities.ts -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/src/main.ts -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/src/search-volume/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/src/search-volume/database.ts -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/src/search-volume/tinybird.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/src/search-volume/tinybird.ts -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/src/search-volume/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/src/search-volume/types.ts -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/src/types.ts: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2025 The Linux Foundation and each contributor. 2 | // SPDX-License-Identifier: MIT 3 | -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/src/util.ts -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/src/workflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/src/workflows.ts -------------------------------------------------------------------------------- /workers/temporal/search_volume_worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxfoundation/insights/HEAD/workers/temporal/search_volume_worker/tsconfig.json --------------------------------------------------------------------------------