Gathering detailed insights and metrics for @types/keyv__sqlite
Gathering detailed insights and metrics for @types/keyv__sqlite
Gathering detailed insights and metrics for @types/keyv__sqlite
Gathering detailed insights and metrics for @types/keyv__sqlite
npm install @types/keyv__sqlite
Typescript
Module System
62.6
Supply Chain
76.2
Quality
75
Maintenance
100
Vulnerability
100
License
TypeScript (99.9%)
JavaScript (0.09%)
Shell (0.01%)
Total Downloads
32,561
Last Day
1
Last Week
2
Last Month
20
Last Year
238
48,922 Stars
88,341 Commits
30,219 Forks
641 Watching
5 Branches
9,977 Contributors
Latest Version
2.0.2
Package Id
@types/keyv__sqlite@2.0.2
Unpacked Size
4.62 kB
Size
1.82 kB
File Count
4
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
-86.7%
2
Compared to previous week
Last month
233.3%
20
Compared to previous month
Last year
-44.8%
238
Compared to previous year
2
npm install --save @types/keyv__sqlite
This package contains type definitions for @keyv/sqlite (https://github.com/lukechilds/keyv-sqlite).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/keyv__sqlite.
1// Type definitions for @keyv/sqlite 2.0 2// Project: https://github.com/lukechilds/keyv-sqlite 3// Definitions by: BendingBender <https://github.com/BendingBender> 4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped 5// TypeScript Version: 2.3 6 7/// <reference types="node" /> 8 9import { Store } from 'keyv'; 10import { EventEmitter } from 'events'; 11 12export = KeyvSqlite; 13 14declare class KeyvSqlite extends EventEmitter implements Store<string | undefined> { 15 readonly ttlSupport: false; 16 namespace?: string | undefined; 17 18 constructor(options?: KeyvSqlite.Options); 19 20 get(key: string): Promise<string | undefined>; 21 set(key: string, value: string | undefined): Promise<any>; 22 delete(key: string): Promise<boolean>; 23 clear(): Promise<void>; 24} 25 26declare namespace KeyvSqlite { 27 interface Options { 28 uri?: string | undefined; 29 busyTimeout?: number | undefined; 30 table?: string | undefined; 31 keySize?: number | undefined; 32 } 33} 34
These definitions were written by BendingBender.
No vulnerabilities found.
Reason
30 commit(s) and 5 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 2024-12-23
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