modpack-lock
    Preparing search index...

    Interface ModpackInfo

    Contains information about the modpack that is not dependent on the lockfile.

    interface ModpackInfo {
        name: string;
        version: string;
        description: string;
        id: string;
        author: string;
        projectUrl: string;
        sourceUrl: string;
        license: string;
        modloader: string;
        targetModloaderVersion: string;
        targetMinecraftVersion: string;
    }
    Index

    Properties

    name: string

    The name of the modpack (Required)

    version: string

    The version of the modpack (Required)

    description: string

    The description of the modpack

    id: string

    The slug/ID of the modpack (Required)

    author: string

    The author of the modpack (Required)

    projectUrl: string

    The project URL of the modpack

    sourceUrl: string

    The source code URL of the modpack

    license: string

    The license of the modpack

    modloader: string

    The modloader of the modpack (Required)

    targetModloaderVersion: string

    The target modloader version of the modpack

    targetMinecraftVersion: string

    The target Minecraft version of the modpack (Required)