ReForged
    Preparing search index...

    Interface MakerOptions

    interface MakerOptions {
        bin?: string;
        icon?: string | IconSet;
        name?: string;
        productName?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bin?: string

    Name of the executable to put into the Exec field of generated .desktop file.

    Defaults to options.name.

    icon?: string | IconSet

    Path to icon to use for the application (shortcut, launchers etc.).

    name?: string

    Name of the package (lowercase & hypens only). Makers sanitize this value with a chance of encountering a failure for unsanitizable strings.

    Defaults to sanitized packageJSON.name.

    productName?: string

    Human-friendly name of the application.

    Defaults to packageJSON.productName.