feat(core): Enhanced caching solution with optional configurations and improved documentation.

This commit is contained in:
2024-11-24 20:16:25 +01:00
parent e45c662658
commit 75140e9d70
8 changed files with 6659 additions and 3856 deletions

View File

@@ -2,7 +2,7 @@
"name": "@push.rocks/levelcache",
"version": "3.0.8",
"private": false,
"description": "A cache that utilizes memory, disk, and S3 for data storage and backup.",
"description": "A versatile caching solution offering multi-level storage utilizing memory, disk, and Amazon S3 for efficient data management and backup.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
@@ -18,23 +18,23 @@
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.11.17"
"@push.rocks/tapbundle": "^5.5.3",
"@types/node": "^22.9.3"
},
"dependencies": {
"@push.rocks/lik": "^6.0.12",
"@push.rocks/smartbucket": "^2.0.4",
"@push.rocks/lik": "^6.1.0",
"@push.rocks/smartbucket": "^3.3.3",
"@push.rocks/smartcache": "^1.0.13",
"@push.rocks/smartenv": "^5.0.12",
"@push.rocks/smartexit": "^1.0.21",
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/smartjson": "^5.0.10",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartstring": "^4.0.13",
"@push.rocks/smartunique": "^3.0.6",
"@push.rocks/smartexit": "^1.0.23",
"@push.rocks/smartfile": "^11.0.21",
"@push.rocks/smartjson": "^5.0.20",
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.0.4",
"@push.rocks/smartstring": "^4.0.15",
"@push.rocks/smartunique": "^3.0.9",
"@push.rocks/taskbuffer": "^3.1.7",
"@tsclass/tsclass": "^4.0.51"
"@tsclass/tsclass": "^4.1.2"
},
"files": [
"ts/**/*",
@@ -53,16 +53,17 @@
],
"keywords": [
"caching",
"data storage",
"memory cache",
"disk cache",
"S3 cache",
"S3 storage",
"data backup",
"multilevel caching",
"performance optimization",
"multi-level caching",
"performance",
"persistent storage",
"data retrieval",
"node.js",
"typescript"
"Node.js",
"TypeScript"
],
"homepage": "https://code.foss.global/push.rocks/levelcache",
"repository": {