@sugoidogo/packwiz-extras-lib
    Preparing search index...

    Interface PackIndex

    The index file of the modpack, storing references to every file to be downloaded in the pack.

    interface PackIndex {
        files?: [
            {
                alias?: string;
                file: string;
                hash?: string;
                "hash-format"?: HashFormat;
                metafile?: boolean;
                preserve?: boolean;
            },
        ];
        "hash-format"?: HashFormat;
    }
    Index

    Properties

    Properties

    files?: [
        {
            alias?: string;
            file: string;
            hash?: string;
            "hash-format"?: HashFormat;
            metafile?: boolean;
            preserve?: boolean;
        },
    ]

    The files listed in this index. If it is not defined, defaults to an empty list.

    "hash-format"?: HashFormat

    The default hash format for every file in the index.