fs-cachebox
Version:
A lightweight file-based caching library for Node.js. Stores key-value data on the filesystem with optional TTL support.
65 lines • 1.54 kB
JSON
{
"name": "fs-cachebox",
"version": "1.1.3",
"description": "A lightweight file-based caching library for Node.js. Stores key-value data on the filesystem with optional TTL support.",
"type": "module",
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.cjs"
}
},
"main": "./dist/main.cjs",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"keywords": [
"cache",
"file-cache",
"filebase",
"disk-cache",
"filesystem",
"storage",
"local-cache",
"nodejs",
"file",
"persistent-cache",
"fs-cache",
"key-value",
"node-cache",
"cache-manager",
"lightweight-cache"
],
"repository": {
"type": "git",
"url": "https://github.com/OgabekYuldoshev/fs-cachebox.git"
},
"bugs": {
"url": "https://github.com/OgabekYuldoshev/fs-cachebox/issues"
},
"homepage": "https://github.com/OgabekYuldoshev/fs-cachebox#readme",
"publishConfig": {
"access": "public"
},
"author": "OgabekYuldoshev <https://github.com/OgabekYuldoshev>",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@types/node": "^24.1.0",
"@vitest/coverage-v8": "3.2.4",
"changelogen": "^0.6.2",
"typescript": "^5.8.3",
"unbuild": "^3.6.0",
"vitest": "^3.2.4"
},
"dependencies": {
"devalue": "^5.1.1"
},
"scripts": {
"test": "vitest run --coverage",
"build": "./scripts/build.sh",
"release": "changelogen --release",
"lint": "biome check --write src"
}
}