Fetches the version manifest for this specific version.
GET /{package}/{version}
Optionalsignal: AbortSignalOptional AbortSignal to cancel the request
The version manifest object
Allows the resource to be awaited directly, resolving with the version manifest. Delegates to VersionResource.get.
Optionalonfulfilled: null | (value: NpmPackageVersion) => TResult1 | PromiseLike<TResult1>Optionalonrejected: null | (reason: unknown) => TResult2 | PromiseLike<TResult2>
Represents a specific version of an npm package, providing access to its manifest.
Implements
PromiseLike<NpmPackageVersion>so it can be awaited directly.Example