Gathering detailed insights and metrics for @types/webpack-shell-plugin
Gathering detailed insights and metrics for @types/webpack-shell-plugin
Gathering detailed insights and metrics for @types/webpack-shell-plugin
Gathering detailed insights and metrics for @types/webpack-shell-plugin
The repository for high quality TypeScript type definitions.
npm install @types/webpack-shell-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,033 Stars
89,737 Commits
30,434 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 14, 2025
Latest Version
0.5.7
Package Id
@types/webpack-shell-plugin@0.5.7
Unpacked Size
5.54 kB
Size
1.99 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
npm install --save @types/webpack-shell-plugin
This package contains type definitions for webpack-shell-plugin (https://github.com/1337programming/webpack-shell-plugin).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-shell-plugin.
1import { Plugin } from "webpack"; 2 3declare class WebpackShellPlugin extends Plugin { 4 constructor(options?: WebpackShellPlugin.Options); 5} 6 7declare namespace WebpackShellPlugin { 8 interface Options { 9 /** 10 * scripts to execute on the initial build 11 * @default [] 12 */ 13 onBuildStart?: string[] | undefined; 14 /** 15 * scripts to execute after files are emitted at the end of the compilation 16 * @default [] 17 */ 18 onBuildEnd?: string[] | undefined; 19 /** 20 * scripts to execute after webpack process is complete 21 * @default [] 22 */ 23 onBuildExit?: string[] | undefined; 24 /** 25 * Switch for development environments. 26 * This causes scripts to execute once. 27 * Useful for running HMR on webpack-dev-server or webpack watch mode. 28 * @default true 29 */ 30 dev?: boolean | undefined; 31 /** 32 * Switches script execution process from spawn to exec. 33 * If running into problems with spawn, turn this setting on. 34 * @default false 35 */ 36 safe?: boolean | undefined; 37 /** 38 * Enable for verbose output 39 * @deprecated 40 * @default false 41 */ 42 verbose?: boolean | undefined; 43 } 44} 45 46export = WebpackShellPlugin; 47
These definitions were written by Piotr Błażejewicz.
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