feat: phase 2

Newfound motivation
This commit is contained in:
2025-02-23 05:12:21 +01:00
parent fdf3679fbe
commit a29bce2227
36 changed files with 1367 additions and 615 deletions

View File

@ -1,17 +1,25 @@
export interface ModEntry {
export interface Package {
namespace: string;
name: string;
description: string;
package_url: string;
icon: string;
path: string;
version: string;
version_available: string;
enabled: boolean;
loc: {
version: string;
path: string;
dependencies: string[];
} | null;
rmt: {
version: string;
package_url: string;
download_url: string;
deprecated: boolean;
} | null;
}
export interface Profile {
name: string;
game: 'ongeki' | 'chunithm';
game: 'Ongeki' | 'Chunithm';
mods: string[];
}
export type PackageC = Map<string, Package>;