Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PackageNote

import type { PackageNote } from "https://googleapis.deno.dev/v1/containeranalysis:v1.ts";

PackageNote represents a particular package version.

interface PackageNote {
architecture?: "ARCHITECTURE_UNSPECIFIED" | "X86" | "X64";
cpeUri?: string;
description?: string;
digest?: Digest[];
distribution?: Distribution[];
license?: License;
maintainer?: string;
name?: string;
packageType?: string;
url?: string;
version?: Version;
}

§Properties

§
architecture?: "ARCHITECTURE_UNSPECIFIED" | "X86" | "X64"
[src]

The CPU architecture for which packages in this distribution channel were built. Architecture will be blank for language packages.

§
cpeUri?: string
[src]

The cpe_uri in CPE format denoting the package manager version distributing a package. The cpe_uri will be blank for language packages.

§
description?: string
[src]

The description of this package.

§
digest?: Digest[]
[src]

Hash value, typically a file digest, that allows unique identification a specific package.

§
distribution?: Distribution[]
[src]

Deprecated. The various channels by which a package is distributed.

§
license?: License
[src]

Licenses that have been declared by the authors of the package.

§
maintainer?: string
[src]

A freeform text denoting the maintainer of this package.

§
name?: string
[src]

Required. Immutable. The name of the package.

§
packageType?: string
[src]

The type of package; whether native or non native (e.g., ruby gems, node.js packages, etc.).

§
url?: string
[src]

The homepage for this package.

§
version?: Version
[src]

The version of the package.