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

Hierarchy (View Summary)

Properties

bin?: string

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

Defaults to options.name.

icon?: string

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.