Gathering detailed insights and metrics for @types/react-typing-animation
Gathering detailed insights and metrics for @types/react-typing-animation
npm install @types/react-typing-animation
Typescript
Module System
67.4
Supply Chain
83.9
Quality
75.5
Maintenance
100
Vulnerability
100
License
TypeScript (99.9%)
JavaScript (0.09%)
Shell (0.01%)
Total Downloads
63,359
Last Day
90
Last Week
493
Last Month
2,274
Last Year
19,212
49,095 Stars
88,626 Commits
30,292 Forks
640 Watching
5 Branches
9,977 Contributors
Latest Version
1.6.6
Package Id
@types/react-typing-animation@1.6.6
Unpacked Size
5.21 kB
Size
1.83 kB
File Count
5
Publised On
07 Nov 2023
Cumulative downloads
Total Downloads
Last day
-23.1%
90
Compared to previous day
Last week
-15.3%
493
Compared to previous week
Last month
-10.7%
2,274
Compared to previous month
Last year
76.1%
19,212
Compared to previous year
1
npm install --save @types/react-typing-animation
This package contains type definitions for react-typing-animation (https://github.com/notadamking/react-typing-animation#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-typing-animation.
1import { Component } from "react"; 2 3export interface TypingProps { 4 children: React.ReactNode; 5 className?: string | undefined; 6 cursorClassName?: string | undefined; 7 cursor?: React.ReactNode | undefined; 8 hideCursor?: boolean | undefined; 9 speed?: number | undefined; 10 startDelay?: number | undefined; 11 loop?: boolean | undefined; 12 onStartedTyping?: (() => void) | undefined; 13 onBeforeType?: (() => void) | undefined; 14 onAfterType?: (() => void) | undefined; 15 onFinishedTyping?: (() => void) | undefined; 16} 17 18declare namespace Typing { 19 interface BackspaceProperties { 20 count?: number | undefined; 21 delay?: number | undefined; 22 speed?: number | undefined; 23 } 24 class Backspace extends Component<BackspaceProperties> {} 25 26 interface DelayProperties { 27 ms: number; 28 } 29 class Delay extends Component<DelayProperties> {} 30 31 interface SpeedProperties { 32 ms: number; 33 } 34 class Speed extends Component<SpeedProperties> {} 35 36 interface ResetProperties { 37 count?: number | undefined; 38 delay?: number | undefined; 39 speed?: number | undefined; 40 } 41 class Reset extends Component<ResetProperties> {} 42} 43 44declare class Typing extends Component<TypingProps> {} 45 46export default Typing; 47
These definitions were written by Haseeb Majid.
No vulnerabilities found.
Reason
30 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
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-01-27
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