UNPKG

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.4 kB
{ "name": "file-entry-cache", "version": "10.0.8", "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": { "@types/node": "^22.14.0", "@vitest/coverage-v8": "^3.1.1", "rimraf": "^6.0.1", "tsup": "^8.4.0", "typescript": "^5.8.2", "vitest": "^3.1.1", "xo": "^0.60.0" }, "dependencies": { "flat-cache": "^6.1.8" }, "files": [ "dist", "license" ], "scripts": { "build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean", "prepublish": "pnpm build", "test": "xo --fix && vitest run --coverage", "test:ci": "xo && vitest run", "clean": "rimraf ./dist ./coverage ./node_modules" } }