modpack-lock
    Preparing search index...

    Interface InitOptions

    Contains options for the initialization of the modpack files.

    interface InitOptions {
        folder: string;
        noninteractive: boolean;
        addLicense: boolean;
        name: string;
        version: string;
        id: string;
        description: string;
        author: string;
        projectUrl: string;
        sourceUrl: string;
        license: string;
        modloader: string;
        targetModloaderVersion: string;
        targetMinecraftVersion: string;
        _init: boolean;
    }
    Index

    Properties

    folder: string

    The folder to generate the modpack files in

    noninteractive: boolean

    Whether to run the interactive mode

    addLicense: boolean

    Whether to add the license file to the modpack

    name: string

    The name of the modpack

    version: string

    The version of the modpack

    id: string

    The slug/ID of the modpack

    description: string

    The description of the modpack

    author: string

    The author of the modpack

    projectUrl: string

    The modpack's project URL

    sourceUrl: string

    The modpack's source code URL

    license: string

    The modpack's license

    modloader: string

    The modpack's modloader

    targetModloaderVersion: string

    The target modloader version

    targetMinecraftVersion: string

    The target Minecraft version

    _init: boolean

    Internal boolean added to indicate options come from the init command.