modpack-lock
    Preparing search index...

    Type Alias ModpackInfo

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

    type 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 modpack version (Required)

    description: string

    A description of the modpack

    id: string

    The modpack's slug/ID (Required)

    author: string

    The author of the modpack (Required)

    projectUrl: string

    The project's homepage URL

    sourceUrl: string

    The project's source code URL

    license: string

    The modpack's license

    modloader: string

    The modpack's modloader (Required)

    targetModloaderVersion: string

    The target modloader version

    targetMinecraftVersion: string

    The target Minecraft version (Required)