Gathering detailed insights and metrics for @types/project-name-generator
Gathering detailed insights and metrics for @types/project-name-generator
Gathering detailed insights and metrics for @types/project-name-generator
Gathering detailed insights and metrics for @types/project-name-generator
The repository for high quality TypeScript type definitions.
npm install @types/project-name-generator
Typescript
Module System
76.8
Supply Chain
77.5
Quality
75.3
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
552,121
Last Day
168
Last Week
4,173
Last Month
19,146
Last Year
146,692
NOASSERTION License
49,913 Stars
89,589 Commits
30,406 Forks
640 Watchers
7 Branches
9,958 Contributors
Updated on Jun 19, 2025
Latest Version
2.1.3
Package Id
@types/project-name-generator@2.1.3
Unpacked Size
4.57 kB
Size
1.92 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
-13.4%
168
Compared to previous day
Last Week
-10.8%
4,173
Compared to previous week
Last Month
7.4%
19,146
Compared to previous month
Last Year
18.9%
146,692
Compared to previous year
npm install --save @types/project-name-generator
This package contains type definitions for project-name-generator (https://github.com/aceakash/project-name-generator#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/project-name-generator.
1/** 2 * Generate quirky names like spiffy-waterfall, sassy-bread, mature-dew-8239 to use wherever you need a random but memorable name. 3 */ 4declare function generate(options?: generate.Options): generate.Project; 5 6declare namespace generate { 7 interface Options { 8 /** 9 * Number of words generated (excluding number). 10 * All words will be adjectives, except the last one which will be a noun 11 * @default 2 12 */ 13 words?: number | undefined; 14 /** 15 * Whether a numeric suffix is generated or not. The number is between 1 - 9999, both inclusive. 16 * @default false 17 */ 18 number?: boolean | undefined; 19 /** 20 * Whether to output words beginning with the same letter or not 21 * @default false 22 */ 23 alliterative?: boolean | undefined; 24 } 25 interface Project { 26 raw: Array<string | number>; 27 dashed: string; 28 spaced: string; 29 } 30} 31 32export = generate; 33
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 29/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-06-16
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