file-entry-cache
Version:
A lightweight cache for file metadata, ideal for processes that work on a specific set of files and only need to reprocess files that have changed since the last run
54 lines • 1.45 kB
JSON
{
"name": "file-entry-cache",
"version": "10.1.4",
"description": "A lightweight cache for file metadata, ideal for processes that work on a specific set of files and only need to reprocess files that have changed since the last run",
"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/cacheable.git",
"directory": "packages/file-entry-cache"
},
"author": "Jared Wray <me@jaredwray.com>",
"license": "MIT",
"private": false,
"keywords": [
"file cache",
"task cache files",
"file cache",
"key par",
"key value",
"cache"
],
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^3.2.4",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"flat-cache": "^6.1.13"
},
"files": [
"dist",
"license"
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"test": "biome check --write && vitest run --coverage",
"test:ci": "biome check && vitest run --coverage",
"clean": "rimraf ./dist ./coverage ./node_modules"
}
}