@origami-minecraft/devbuilds
Version:
Origami is a terminal-first Minecraft launcher that supports authentication, installation, and launching of Minecraft versions — with built-in support for Microsoft accounts, mod loaders, profile management, and more. Designed for power users, modders, an
22 lines (19 loc) • 375 B
text/typescript
export interface VersionManifest {
latest: VersionLatest;
versions: VersionData[];
};
export interface VersionLatest {
release: string;
snapshot: string;
};
export interface VersionData {
id: string;
type: string;
url: string;
time: string;
releaseTime: string;
};
export interface ForgeVersions {
id: string;
forge: string[];
}