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
The repository for high quality TypeScript type definitions.
npm install @types/keyv__sqlite
Typescript
Module System
65.8
Supply Chain
76.2
Quality
75
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
32,640
Last Day
7
Last Week
13
Last Month
25
Last Year
258
NOASSERTION License
50,001 Stars
89,698 Commits
30,431 Forks
641 Watchers
6 Branches
9,957 Contributors
Updated on Jul 06, 2025
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
600%
7
Compared to previous day
Last Week
333.3%
13
Compared to previous week
Last Month
38.9%
25
Compared to previous month
Last Year
-23%
258
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 1 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
license file detected
Details
Reason
Found 25/29 approved changesets -- score normalized to 8
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-30
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