Gathering detailed insights and metrics for @types/ink-big-text
Gathering detailed insights and metrics for @types/ink-big-text
Gathering detailed insights and metrics for @types/ink-big-text
Gathering detailed insights and metrics for @types/ink-big-text
The repository for high quality TypeScript type definitions.
npm install @types/ink-big-text
Typescript
Module System
70.4
Supply Chain
94.3
Quality
75.4
Maintenance
100
Vulnerability
100
License
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,032 Stars
89,737 Commits
30,433 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 13, 2025
Latest Version
1.2.4
Package Id
@types/ink-big-text@1.2.4
Unpacked Size
6.28 kB
Size
2.22 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/ink-big-text
This package contains type definitions for ink-big-text (https://github.com/sindresorhus/ink-big-text).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ink-big-text.
1import * as React from "react"; 2 3// note: BigTextProps.colors are based on cfonts (https://github.com/dominikwilkowski/cfonts). I will have commented out 4// some of the accepted inputs. Becuase it also allows for hex colors, I decided to not narrow it down 5// from a string type. A regex would be VERY useful here, but is unfortunately unsupported 6// (see this issue: https://github.com/Microsoft/TypeScript/issues/6579). I will happily update this type if 7// this feature ever gets added! That way the colors[] will be typed as any of the accepted colors OR a valid hex color. 8// However until then, the type will be string. 9 10// The official cfont docs state the following would be accepted (in addition to any valid hex): 11// type DefinedColors = 12// | 'system' 13// | 'black' 14// | 'red' 15// | 'green' 16// | 'yellow' 17// | 'blue' 18// | 'magenta' 19// | 'cyan' 20// | 'white' 21// | 'gray' 22// | 'redBright' 23// | 'greenBright' 24// | 'yellowBright' 25// | 'blueBright' 26// | 'magentaBright' 27// | 'cyanBright' 28// | 'whiteBright'; 29 30interface BigTextProps { 31 text: string; 32 font?: 33 | "block" 34 | "slick" 35 | "tiny" 36 | "grid" 37 | "pallet" 38 | "shade" 39 | "simple" 40 | "simpleBlock" 41 | "3d" 42 | "simple3d" 43 | "chrome" 44 | "huge" 45 | undefined; 46 align?: "left" | "center" | "right" | undefined; 47 colors?: string[] | undefined; 48 backgroundColor?: 49 | "transparent" 50 | "black" 51 | "red" 52 | "green" 53 | "yellow" 54 | "blue" 55 | "magenta" 56 | "cyan" 57 | "white" 58 | undefined; 59 letterSpacing?: number | undefined; 60 lineHeight?: number | undefined; 61 space?: boolean | undefined; 62 maxLength?: number | undefined; 63} 64 65declare const BigText: React.FC<BigTextProps>; 66export = BigText; 67
These definitions were written by aaronleopold.
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