find-itch-games
    Preparing search index...

    Interface IItchReceipt

    itch writes one of these into every folder it installs a game into.

    Mirrors bfs.Receipt in github.com/itchio/hush.

    interface IItchReceipt {
        game: IItchGame;
        upload?: IItchUpload;
        build?: IItchBuild;
        files?: string[];
        installerName?: string;
        legacy?: IItchLegacyReceiptInfo;
    }
    Index
    game: IItchGame

    The itch.io game installed at this location.

    upload?: IItchUpload

    The itch.io upload installed at this location.

    build?: IItchBuild

    The itch.io build installed here. Absent for non-wharf uploads.

    files?: string[]

    Installed files, as slash-separated paths relative to the folder.

    installerName?: string

    The installer used, e.g. archive, msi, inno.

    Set when the receipt came from the pre-v23 .itch/receipt.json format, which recorded ids but no game metadata.