modpack-lock
    Preparing search index...

    Interface Lockfile

    Contains information about the modpack dependencies and their versions.

    interface Lockfile {
        version: string;
        generated: string;
        total: number;
        counts: {
            mods: number;
            resourcepacks: number;
            datapacks: number;
            shaderpacks: number;
        };
        dependencies: {
            mods: any[];
            resourcepacks: any[];
            datapacks: any[];
            shaderpacks: any[];
        };
    }
    Index

    Properties

    version: string

    The version of the modpack

    generated: string

    The date and time the lockfile was generated

    total: number

    The total number of files in the modpack

    counts: {
        mods: number;
        resourcepacks: number;
        datapacks: number;
        shaderpacks: number;
    }

    The counts object

    Type Declaration

    • mods: number

      The mods count

    • resourcepacks: number

      The resourcepacks count

    • datapacks: number

      The datapacks count

    • shaderpacks: number

      The shaderpacks count

    dependencies: {
        mods: any[];
        resourcepacks: any[];
        datapacks: any[];
        shaderpacks: any[];
    }

    The dependencies object

    Type Declaration

    • mods: any[]

      The mods object

    • resourcepacks: any[]

      The resourcepacks object

    • datapacks: any[]

      The datapacks object

    • shaderpacks: any[]

      The shaderpacks object