Socket
Socket
Sign inDemoInstall

@pnpm/lockfile-types

Package Overview
Dependencies
Maintainers
2
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnpm/lockfile-types - npm Package Compare versions

Comparing version 7.1.1 to 7.1.2

21

lib/index.d.ts

@@ -13,2 +13,3 @@ import { type DependenciesMeta, type DepPath, type PatchFile, type ProjectId } from '@pnpm/types';

time?: Record<string, string>;
catalogs?: CatalogSnapshots;
packages?: PackageSnapshots;

@@ -121,1 +122,21 @@ overrides?: Record<string, string>;

export type ResolvedDependencies = Record<string, string>;
export interface CatalogSnapshots {
[catalogName: string]: {
[dependencyName: string]: ResolvedCatalogEntry;
};
}
export interface ResolvedCatalogEntry {
/**
* The real specifier that should be used for this dependency's catalog entry.
* This would be the ^1.2.3 portion of:
*
* @example
* catalog:
* foo: ^1.2.3
*/
readonly specifier: string;
/**
* The concrete version that the requested specifier resolved to. Ex: 1.2.3
*/
readonly version: string;
}

6

package.json
{
"name": "@pnpm/lockfile-types",
"version": "7.1.1",
"version": "7.1.2",
"description": "Types for the pnpm-lock.yaml lockfile",

@@ -27,6 +27,6 @@ "main": "lib/index.js",

"dependencies": {
"@pnpm/types": "10.1.1"
"@pnpm/types": "11.0.0"
},
"devDependencies": {
"@pnpm/lockfile-types": "7.1.1"
"@pnpm/lockfile-types": "7.1.2"
},

@@ -33,0 +33,0 @@ "exports": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc