@eagleoutice/flowr - v2.13.1
    Preparing search index...

    The project metadata a plugin may contribute, see FlowrAnalyzerMetaContext#contribute.

    interface ProjectMetaFields {
        authors?: RAuthorInfo[];
        declares?: DeclaredPackages;
        encoding?: string;
        licenses?: RLicenseElementInfo[];
        name?: string;
        namespace?: string;
        rVersion?: string;
        title?: string;
        version?: SemVer & { str: string };
    }
    Index

    Properties

    authors?: RAuthorInfo[]

    the project authors

    declares?: DeclaredPackages

    the packages the project declares, used to report on them; what is loadable lives in the dependency context

    encoding?: string

    the encoding the project's files are written in

    licenses?: RLicenseElementInfo[]

    the project licenses

    name?: string

    the project name, e.g. the Package of a DESCRIPTION or the [project] name of an rproject.toml

    namespace?: string

    The namespace a::b resolves against. Only set this for a real R package: a plain project (e.g. an rv project) has a name but no namespace, and claiming one changes symbol resolution.

    rVersion?: string

    the R version the project targets, e.g. the r_version of an rproject.toml

    title?: string

    the human-readable project title

    version?: SemVer & { str: string }

    the project version