Skip to content
This repository was archived by the owner on Aug 31, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/registry/RegistryPackage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ export interface RegistryPackage {
*/
id: string;

/**
* Name of the package.
*/
title: string;

/**
* Description of the package.
*/
Expand Down
10 changes: 10 additions & 0 deletions src/registry/RegistryVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ export interface RegistryVersion {
*/
version_type: RegistryReleaseChannel;

/**
* Compatible loaders.
*/
loaders: string[];

/**
* Compatible game versions.
*/
game_versions: string[];

/**
* The dependencies of this version.
*
Expand Down