UNPKG

@xmcl/mod-parser

Version:

The utilities to parse Forge/Liteloader/Fabric/Quilt mod metadata.

17 lines 641 B
import { FileSystem } from '@xmcl/system'; export interface LiteloaderModMetadata { readonly mcversion: string; readonly name: string; readonly revision: number; readonly author?: string; readonly version?: string; readonly description?: string; readonly url?: string; readonly tweakClass?: string; readonly dependsOn?: string[]; readonly injectAt?: string; readonly requiredAPIs?: string[]; readonly classTransformerClasses?: string[]; } export declare function readLiteloaderMod(mod: string | Uint8Array | FileSystem): Promise<LiteloaderModMetadata>; //# sourceMappingURL=liteloader.d.ts.map