New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@waiting/shared-types

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@waiting/shared-types - npm Package Compare versions

Comparing version 21.3.1 to 21.4.0

60

dist/lib/npm-pkg.d.ts

@@ -6,2 +6,3 @@ /**

*/
import { DateISOString } from './alias.js';
export interface NpmPkg {

@@ -40,2 +41,61 @@ name: string;

}
export interface NpmPkgDist {
integrity: string;
shasum: string;
tarball: string;
fileCount?: number;
unpackedSize?: number;
signatures?: {
keyid: string;
sig: string;
};
}
export interface NpmPkgView {
access?: 'public' | 'private';
author?: string;
bin?: Record<string, string>;
bugs?: Record<string, string>;
bundleDependencies?: string[];
dependencies?: Record<string, string>;
devDependencies?: Record<string, string>;
description?: string;
directories?: Record<string, string>;
dist: NpmPkgDist;
engines?: Record<string, string>;
exports?: Record<string, string | Record<string, string>>;
files?: string[];
gitHead?: string;
homepage?: string;
keywords?: string[];
license?: string;
main: string;
maintainers?: (NpmPkgPersion | string)[];
name: string;
'dist-tags': {
latest: string;
[name: string]: string;
};
private: boolean;
readme: string;
readmeFilename: string;
repository?: {
type: string;
url: string;
directory?: string;
};
scripts?: Record<string, string>;
time: Record<string, DateISOString>;
type?: 'module' | 'commonjs' | 'bundle';
types?: string;
users?: Record<string, boolean>;
version: string;
versions: string[];
workspaces?: string[];
_id: string;
_contentLength: number;
_hasShrinkwrap?: boolean;
_nodeVersion: string;
_npmVersion: string;
[key: string]: any;
}
export interface NpmPkgPublishConfig {

@@ -42,0 +102,0 @@ access: boolean;

4

package.json
{
"name": "@waiting/shared-types",
"author": "waiting",
"version": "21.3.1",
"version": "21.4.0",
"description": "shared typescript types",

@@ -63,3 +63,3 @@ "keywords": [

},
"gitHead": "d729a79f3f79b3c3c277f409778529f30f22e044"
"gitHead": "d476bfcf99440b8edcaa6320aff4c481f6a56ef9"
}

@@ -7,2 +7,4 @@ /**

import { DateISOString } from './alias.js'
/* eslint-disable @typescript-eslint/no-explicit-any */

@@ -43,2 +45,63 @@ export interface NpmPkg {

export interface NpmPkgDist {
integrity: string
shasum: string
tarball: string
fileCount?: number
unpackedSize?: number
signatures?: {
keyid: string,
sig: string,
}
}
export interface NpmPkgView {
access?: 'public' | 'private'
author?: string
bin?: Record<string, string>
bugs?: Record<string, string>
bundleDependencies?: string[]
dependencies?: Record<string, string>
devDependencies?: Record<string, string>
description?: string
directories?: Record<string, string>
dist: NpmPkgDist
engines?: Record<string, string>
exports?: Record<string, string | Record<string, string>>
files?: string[]
gitHead?: string
homepage?: string
keywords?: string[]
license?: string
main: string
maintainers?: (NpmPkgPersion | string)[]
name: string
'dist-tags': {
latest: string,
[name: string]: string,
}
private: boolean
readme: string
readmeFilename: string
repository?: {
type: string,
url: string,
directory?: string,
}
scripts?: Record<string, string>
time: Record<string, DateISOString>
type?: 'module' | 'commonjs' | 'bundle'
types?: string
users?: Record<string, boolean>
version: string
versions: string[]
workspaces?: string[]
_id: string
_contentLength: number
_hasShrinkwrap?: boolean
_nodeVersion: string
_npmVersion: string
[key: string]: any
}
export interface NpmPkgPublishConfig {

@@ -45,0 +108,0 @@ access: boolean

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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