initial commit

This commit is contained in:
2025-02-12 22:13:31 +01:00
commit 047b2e9f4a
52 changed files with 8552 additions and 0 deletions

17
src/types.ts Normal file
View File

@ -0,0 +1,17 @@
export interface ModEntry {
namespace: string;
name: string;
description: string;
package_url: string;
icon: string;
path: string;
version: string;
version_available: string;
enabled: boolean;
}
export interface Profile {
name: string;
game: 'ongeki' | 'chunithm';
mods: string[];
}