Gathering detailed insights and metrics for @types/duplicate-package-checker-webpack-plugin
Gathering detailed insights and metrics for @types/duplicate-package-checker-webpack-plugin
Gathering detailed insights and metrics for @types/duplicate-package-checker-webpack-plugin
Gathering detailed insights and metrics for @types/duplicate-package-checker-webpack-plugin
The repository for high quality TypeScript type definitions.
npm install @types/duplicate-package-checker-webpack-plugin
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,025 Stars
89,737 Commits
30,433 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 12, 2025
Latest Version
2.1.5
Package Id
@types/duplicate-package-checker-webpack-plugin@2.1.5
Unpacked Size
6.24 kB
Size
2.10 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
npm install --save @types/duplicate-package-checker-webpack-plugin
This package contains type definitions for duplicate-package-checker-webpack-plugin (https://github.com/darrenscerri/duplicate-package-checker-webpack-plugin#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/duplicate-package-checker-webpack-plugin.
1import { Plugin } from "webpack"; 2 3export = DuplicatePackageCheckerWebpackPlugin; 4 5declare class DuplicatePackageCheckerWebpackPlugin extends Plugin { 6 constructor(options?: DuplicatePackageCheckerWebpackPlugin.Options); 7} 8 9declare namespace DuplicatePackageCheckerWebpackPlugin { 10 /** The properties of the instance of a package */ 11 interface PackageInstanceProperties { 12 /** The name of the package */ 13 name: string; 14 /** The version of the package */ 15 version: string; 16 /** Absolute path to the package */ 17 path: string; 18 /** Absolute path to the module that requested the package */ 19 issuer?: string | undefined; 20 } 21 22 /** The configurable options for the plugin */ 23 interface Options { 24 /** Also show module that is requiring each duplicate package (default: false) */ 25 verbose?: boolean | undefined; 26 /** Emit errors instead of warnings (default: false) */ 27 emitError?: boolean | undefined; 28 /** Show help message if duplicate packages are found (default: true) */ 29 showHelp?: boolean | undefined; 30 /** Warn also if major versions differ (default: true) */ 31 strict?: boolean | undefined; 32 33 /** 34 * Exclude instances of packages from the results. 35 * If all instances of a package are excluded, or all instances except one, 36 * then the package is no longer considered duplicated and won't be emitted as a warning/error. 37 * @param instance The instance of a package being evaluated for exclusion. 38 * @returns true to exclude the instance, false otherwise 39 */ 40 exclude?: ((instance: PackageInstanceProperties) => boolean) | undefined; 41 } 42} 43
These definitions were written by Matt Traynham.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More