mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.8 KiB
78 lines
1.8 KiB
{
|
|
"name": "keyv",
|
|
"version": "5.5.1",
|
|
"description": "Simple key-value storage with support for multiple backends",
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jaredwray/keyv.git"
|
|
},
|
|
"keywords": [
|
|
"key",
|
|
"value",
|
|
"store",
|
|
"cache",
|
|
"ttl",
|
|
"key-value",
|
|
"storage",
|
|
"backend",
|
|
"adapter",
|
|
"redis",
|
|
"mongodb",
|
|
"sqlite",
|
|
"mysql",
|
|
"postgresql",
|
|
"memory",
|
|
"node-cache",
|
|
"lru-cache",
|
|
"lru",
|
|
"cache-manager"
|
|
],
|
|
"author": "Jared Wray <me@jaredwray.com> (http://jaredwray.com)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/jaredwray/keyv/issues"
|
|
},
|
|
"homepage": "https://github.com/jaredwray/keyv",
|
|
"dependencies": {
|
|
"@keyv/serialize": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.2.3",
|
|
"@faker-js/faker": "^10.0.0",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"rimraf": "^6.0.1",
|
|
"timekeeper": "^2.3.1",
|
|
"tsd": "^0.33.0",
|
|
"vitest": "^3.2.4",
|
|
"@keyv/mongo": "^3.0.3",
|
|
"@keyv/compress-lz4": "^1.0.1",
|
|
"@keyv/memcache": "^2.0.2",
|
|
"@keyv/sqlite": "^4.0.5",
|
|
"@keyv/test-suite": "^2.1.1",
|
|
"@keyv/compress-brotli": "^2.0.5",
|
|
"@keyv/compress-gzip": "^2.0.3"
|
|
},
|
|
"tsd": {
|
|
"directory": "test"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"LISCENCE"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
|
|
"test": "biome check --write && vitest run --coverage",
|
|
"test:ci": "biome check && vitest --run --sequence.setupFiles=list --coverage",
|
|
"clean": "rimraf ./node_modules ./coverage ./test/testdb.sqlite ./dist"
|
|
}
|
|
}
|