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

VulnerablePackage

import type { VulnerablePackage } from "https://aws-api.deno.dev/v0.3/services/inspector2.ts?docs=full";

Information on the vulnerable package identified by a finding.

interface VulnerablePackage {
arch?: string | null;
epoch?: number | null;
filePath?: string | null;
fixedInVersion?: string | null;
name: string;
packageManager?: PackageManager | null;
release?: string | null;
sourceLayerHash?: string | null;
version: string;
}

§Properties

§
arch?: string | null
[src]

The architecture of the vulnerable package.

§
epoch?: number | null
[src]

The epoch of the vulnerable package.

§
filePath?: string | null
[src]

The file path of the vulnerable package.

§
fixedInVersion?: string | null
[src]

The version of the package that contains the vulnerability fix.

§
name: string
[src]

The name of the vulnerable package.

§
packageManager?: PackageManager | null
[src]

The package manager of the vulnerable package.

§
release?: string | null
[src]

The release of the vulnerable package.

§
sourceLayerHash?: string | null
[src]

The source layer hash of the vulnerable package.

§
version: string
[src]

The version of the vulnerable package.