{"maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"keywords":["cache","fs","file-system"],"dist-tags":{"latest":"3.0.0-alpha.8"},"author":{"name":"Phil Cockfield","email":"phil@cockfield.net","url":"https://github.com/philcockfield"},"description":"A super-fast, promise-based cache that reads and writes to the file-system.","readme":"[![ci(esm)](https://github.com/philcockfield/file-system-cache/actions/workflows/node.esm.yml/badge.svg)](https://github.com/philcockfield/file-system-cache/actions/workflows/node.esm.yml)\n\n# file-system-cache\n\nA super-fast, promise-based cache that reads and writes to the file-system.\n\n\n## Installation\n\n    npm install --save file-system-cache\n\nImport\n\n```ts\nimport Cache from 'file-system-cache';\n\n   // or ↑↓ (equivalent)\n\nimport { Cache } from 'file-system-cache';\n```\n\n## Usage (API)\n\nCreate an instance of the cache optionally giving it a folder location to store files within.\n\n```js\nimport Cache from \"file-system-cache\";\n\nconst cache = Cache({\n  basePath: \"./.cache\", // (optional) Path where cache files are stored (default).\n  ns: \"my-namespace\",   // (optional) A grouping namespace for items.\n  hash: \"sha1\",         // (optional) A hashing algorithm used within the cache key.\n  ttl: 60,              // (optional) A time-to-live (in secs) on how long an item remains cached.\n});\n```\n\n> Reference `default` for CommonJS, e.g: `const Cache = require('file-system-cache').default\n`\n\nThe optional `ns` (\"namespace\") allows for multiple groupings of files to reside within the one cache folder.  When you have multiple caches with different namespaces you can re-use the same keys and they will not collide.\n\nThe optional `ttl` (\"time to live\") allows you to set a default expiration for the cache key, in seconds. For example if you\nset this value to 60 then cache hits to any cache key made beyond the limit of that 60 seconds will result in cache misses.\n\n### get(key, defaultValue)\nRetrieves the contents of a cached file.\n\n```js\ncache.get(\"foo\")\n  .then(result => /* Success */)\n  .catch(err => /* Fail */);\n```\n\nor use modern `async/await` syntactic sugar of course:\n\n```js\nconst value = await cache.get(\"foo\");\n```\n\nUse `getSync` for a synchronous version.  \nPass a `defaultValue` parameter to use if the key does not exist within the cache.\n\n\n### set(key, value, ttl)\nWrite a value to the cache.\n\n```js\n/* This will apply the default TTL to this cache key */\ncache.set(\"foo\", \"...value...\")\n  .then(result => /* Success */)\n\n/* This will set a specific TTL for this cache key */\ncache.set(\"bar\", \"...baz\", 60)\n  .then(result => /* Success */)\n```\n\nValue types are stored and respected on subsequent calls to `get`.  For examples, passing in Object will return that in its parsed object state.\n\nUse `setSync` for a synchronous version.\n\n### remove(key)\nDeletes the specified cache item from the file-system.\n```js\ncache.remove(\"foo\")\n  .then(() => /* Removed */)\n```\n\n### clear()\nClears all cached items from the file-system.\n```js\ncache.clear()\n  .then(() => /* All items deleted */)\n```\n\n\n### save()\nSaves (sets) several items to the cache in one operation.\n```js\ncache.save([{ key:\"one\", value:\"hello\" }, { key:\"two\", value:222 }])\n  .then(result => /* All items saved. */)\n```\n\n### load()\nLoads all files within the cache's namespace.\n```js\ncache.load()\n  .then(result => /* The complete of cached files (for the ns). */)\n```\n\n\n\n## Test\n    # Run tests.\n    npm test\n\n","repository":{"type":"git","url":"git+https://github.com/philcockfield/file-system-cache.git"},"users":{"amitpatil26":true},"bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"license":"MIT","versions":{"1.0.0":{"name":"file-system-cache","version":"1.0.0","keywords":["cache,fs"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@1.0.0","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"818917197e7fedd2f865dc8c87ca674d68bc0cf5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-1.0.0.tgz","integrity":"sha512-wShf0JWwJ8LR8JPhGddESAoznRukqi84eCjkNjXZWBGDU+DjzfNpqIUB0Ge2OegVkM+SdZJ2/eDK4x4QBg/nkg==","signatures":[{"sig":"MEUCIEO1hWmDHyJDowEfGA3Za9WkX0GXMQuuxjCV9ivJa/7zAiEA5JQ8A08pVjmruO/H274zrziiRL3WnNiYXsGYejDceRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/index.js","_from":".","_shasum":"818917197e7fedd2f865dc8c87ca674d68bc0cf5","gitHead":"2dbaba21242ff932dc4a5a99550d3e82afe62586","scripts":{"tdd":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel/register --watch","test":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel/register","start":"node .","prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"2.14.2","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"ramda":"^0.17.1","bluebird":"^2.10.0","fs-extra":"^0.24.0"},"devDependencies":{"chai":"^2.2.0","gulp":"^3.9.0","babel":"^5.6.14","mocha":"^2.2.1","eslint":"^0.24.1","babel-core":"^5.6.18","gulp-babel":"^5.2.0","gulp-eslint":"^0.15.0","babel-eslint":"^3.1.23"}},"1.0.1":{"name":"file-system-cache","version":"1.0.1","keywords":["cache,fs,file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@1.0.1","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"d328de1a3b8898a146717ddce66533e303d32782","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-1.0.1.tgz","integrity":"sha512-QCSK6Lzaq04B+fVkwu7ny5C5+rjqueof1cNO7G4uvx93xRp/h+CR+hxQaJ1ziRlwDTYw55Nb+kB1R5daOHmo8w==","signatures":[{"sig":"MEUCIGVZs4/M3/8R1BhqZ3ajKU/GLuQznSDa1CJaQVIyKZEQAiEA59rC+bg/NKHjFxAH/FfH2aHqo9oHp/x+RzUZHRiXf0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/index.js","_from":".","_shasum":"d328de1a3b8898a146717ddce66533e303d32782","gitHead":"65ad1e8f0960d02c67a3f93c2a76a9a43531e235","scripts":{"tdd":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel/register --watch","test":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel/register","start":"node .","prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"2.14.7","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"4.2.1","dependencies":{"ramda":"^0.17.1","bluebird":"^2.10.0","fs-extra":"^0.24.0"},"devDependencies":{"chai":"^2.2.0","gulp":"^3.9.0","babel":"^5.6.14","mocha":"^2.2.1","eslint":"^0.24.1","babel-core":"^5.6.18","gulp-babel":"^5.2.0","gulp-eslint":"^0.15.0","babel-eslint":"^3.1.23"}},"1.0.2":{"name":"file-system-cache","version":"1.0.2","keywords":["cache,fs,file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@1.0.2","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"5e4d733fba261853107d918649604a6b6480081c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-1.0.2.tgz","integrity":"sha512-HGYlgwqYF8JKeI4AhG8K3mRYxeerzdlPH0MQWsJs8MsHMzYU+C3GasqzEBTNkYIDhqI5k5bLsfZwMYalKRGEPg==","signatures":[{"sig":"MEUCIG6y7vXMR+HO40NLQhFYEldFzmrgOtM8BTv3+9nEnGjuAiEA6Ji4sM/IGiH5+eZKVtWTX9Mbt5TWKI5sKpMl9hVIwic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/index.js","_from":".","_shasum":"5e4d733fba261853107d918649604a6b6480081c","gitHead":"94f6c58faa759062e615cbf2d0e7ddb44963db42","scripts":{"tdd":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel/register --watch","test":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel/register","start":"node .","prepublish":"gulp build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"2.14.7","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"4.2.1","dependencies":{"ramda":"^0.17.1","bluebird":"^2.10.0","fs-extra":"^0.24.0"},"devDependencies":{"chai":"^2.2.0","gulp":"^3.9.0","babel":"^5.6.14","mocha":"^2.2.1","eslint":"^0.24.1","babel-core":"^5.6.18","gulp-babel":"^5.2.0","gulp-eslint":"^0.15.0","babel-eslint":"^3.1.23"}},"1.0.3":{"name":"file-system-cache","version":"1.0.3","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@1.0.3","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"3fce1709c0f1a9b4b2f3713cf3ad8486e20d5b78","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-1.0.3.tgz","integrity":"sha512-eUZQv9Qhowgk/kAmcAjghHEB6DVjA3ptdud7G9KWtlgGpWT+RK0JQNKoX8uh1pjy2FZHPyvsOzjKJMesfnp8uA==","signatures":[{"sig":"MEUCIQDQj8JSJ82e1oJq8ypWPBmMl+gQ/XH6gOeGGBWRBNb0wAIgPEy89EX9EUeolKsaQbh+rqK3zE4iKfzplgW1X4p5zmU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/index.js","_from":".","_shasum":"3fce1709c0f1a9b4b2f3713cf3ad8486e20d5b78","gitHead":"6281dc2565f211366aa689b6a6db750fe3c945bf","scripts":{"tdd":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel-register --watch","lint":"eslint ./src","test":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel-register","build":"babel src --out-dir lib --source-maps","prepublish":"npm test && npm run lint && npm build","build:watch":"npm run build -- --watch"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"3.3.12","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"5.5.0","dependencies":{"ramda":"^0.19.1","bluebird":"^3.1.4","fs-extra":"^0.26.4"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.3.4","js-babel":"^6.0.0","js-babel-dev":"^6.0.0"}},"1.0.4":{"name":"file-system-cache","version":"1.0.4","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@1.0.4","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"cf8eb14fec857455801707c88108577bf0782446","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-1.0.4.tgz","integrity":"sha512-lq9BTicK5ZS0uYtrAJd04MbBi5UzLOZvgFIvY84awgSJounj4NAEofxwtimKC8SrU5XXnTCs7dK7tf2Ws9YVZA==","signatures":[{"sig":"MEUCIFp9DuXfte76q4Vjrnza0jQoBmFVTIE7uNg7R9iS0QxkAiEAjhTu7mRtSnZPtJEgFdJDPN8PHfcCHSYxiyp2E8HbcT0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/index.js","_from":".","_shasum":"cf8eb14fec857455801707c88108577bf0782446","gitHead":"74f2d2b7286965be6d55d5e6efc1ac7e3b48a74b","scripts":{"tdd":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel-register --watch","lint":"eslint ./src","test":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel-register","build":"babel src --out-dir lib --source-maps","prepublish":"npm test && npm run lint && npm run build","build:watch":"npm run build -- --watch"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"3.3.12","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"5.5.0","dependencies":{"ramda":"^0.19.1","bluebird":"^3.1.4","fs-extra":"^0.26.4"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.3.4","js-babel":"^6.0.0","js-babel-dev":"^6.0.0"}},"1.0.5":{"name":"file-system-cache","version":"1.0.5","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@1.0.5","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"84259b36a2bbb8d3d6eb1021d3132ffe64cfff4f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-1.0.5.tgz","integrity":"sha512-w9jqeQdOeVaXBCgl4c90XJ6zI8MguJgSiC5LsLdhUu6eSCzcRHPPXUF3lkKMagpzHi+6GnDkjv9BtxMmXdvptA==","signatures":[{"sig":"MEUCIH5ts1kt09wYlxn+QKxUvjAglRy3Mle5fNTSs51OXnHSAiEA1uERQpNwLRsgA6JfM3N1qFvnYVI5JnjLCjvyJsZkV2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/index.js","_from":".","_shasum":"84259b36a2bbb8d3d6eb1021d3132ffe64cfff4f","gitHead":"6f77449ef06ecde59e431251032ca6febcf9b0ae","scripts":{"tdd":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel-register --watch","lint":"eslint ./src","test":"./node_modules/mocha/bin/mocha --recursive --compilers js:babel-register","build":"babel src --out-dir lib --source-maps","prepublish":"npm test && npm run lint && npm run build","build:watch":"npm run build -- --watch"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"3.8.3","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"5.10.1","dependencies":{"ramda":"^0.21.0","bluebird":"^3.3.5","fs-extra":"^0.30.0"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.4.5","js-babel":"^6.0.4","js-babel-dev":"^6.0.5"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache-1.0.5.tgz_1462575173168_0.34434167412109673","host":"packages-12-west.internal.npmjs.com"}},"1.1.0":{"name":"file-system-cache","version":"1.1.0","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@1.1.0","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"984de17b976b75a77a27e08d6828137c1aa80fa1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-1.1.0.tgz","fileCount":35,"integrity":"sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==","signatures":[{"sig":"MEUCICV+tJa9rAksB0SZVNpOqz74XErfBsxHcC3qgUgZkHVVAiEAkzQHvqDOUg6k+Q1a6WzdfhuJ1IXtIqbdti8/8q755FI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifvJaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpIpRAAo1MZ1riZyFC49tjawoneEphq+yWTLOKvJLB4Vha9pjtplD87\r\nYrw7z8Zl/DUGJ+cfBW6AHbFDfo4khCYF1LU3iLL8VFGHPH/GsK9VHDPWX9cc\r\ns+sBzUGLxXMHZhtgffLHPgNWmHv3S7BhipGq6ubSSolB2zkZ2UAgZzMjgZY3\r\n8ziG2LOj7+TEFUnHj0VPHcqmkQaYlMO+Ad5fGhFfrEBJDM/EQHbSxFzW47t4\r\nvq1+eLS9cM6gxLMMQ3rzSQVIYPY4y1akvpy1fXG8L0hpNUhDw5gyLmFF+7oe\r\nz5wps8CQRXB/yfLCymuSHynn4ELKU8o+WwdXrGf1BR+VEfKORq1WeLycQ0m1\r\nbyDTEttLFG5tFU3ewLOzAvtzLTdeoIWpW7nseSewHnwhHkYh7F/OsHTZ9q29\r\nYqzoYhVj+fG9j0zmFIKlUROweKH9c16tkqbtRkgHTKQTKyaldrcEOD+zJcsq\r\nM6ykuuINF92UkKz4Txbk6QsVUQ+a6rE7Evr34GXT/cL7RcVsipwedTYw6nbK\r\n4VKv+o1AxL4O1FbLDFT2Md4MWFGRunOI8XlsoTFrk3viBTBmipiL9UPyRYyU\r\nNVXXuyVlghGzPD7M5b/IdYsZEY1dcKO/wdK5WdUz3YKszd/l2FZ3cOMrKi3e\r\nFZ01X9YJ7CDsoh3TlUmIhqaG+tqMnSm2w1o=\r\n=ZvMx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"2267ac8c81aad2b7b1fd1c5037eaf761861ecf8a","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && npm run build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"8.5.5","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"16.15.0","dependencies":{"ramda":"^0.28.0","fs-extra":"^10.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.3.6","mocha":"^10.0.0","ts-mocha":"10.0.0","typescript":"4.6.4","@types/chai":"^4.3.1","@types/mocha":"9.1.1","@types/ramda":"^0.28.12","@types/expect":"24.3.0","@types/fs-extra":"^9.0.13"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_1.1.0_1652486745809_0.2410461253973133","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"file-system-cache","version":"2.0.0","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.0.0","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"87c02587460dbbee4a2ba1c8525230c9a410dd40","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.0.0.tgz","fileCount":35,"integrity":"sha512-QlYut2ZtxRgdW/dboSmiKZWM8FsnpLaLI549hN/RWgwn3FawSil7Jc2n7nFHheclvYxa4LJqwEOvNUYv9VsCXg==","signatures":[{"sig":"MEUCIEmSyeFI5RpOLdoBt/dizNNT1zzweeZkx2uf5ON6X5r3AiEA3NJEXuJO7ANtCeOex+kDx3OVrFWgGPMkYkVDhwFGA+I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifvJ6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpXzg//Qg0Z5NihaLI7rsVt6aJcm63jmia1FdqAkBNA/L2CE1+RJydt\r\nB+M6Iu4P/BrJp0HX892N4/ph+BvoXI2zMchAxz1/8YiNpdwS1YAqOdgAQQ05\r\njWjr0B0Gpi+jFtLOC0c8/Oz2lEm5JemtzYTrIlZ8OsrmvG5ROi6KO4O4upbq\r\nXI1/Ihr+8PiVWGj8H+SewicqItdIOVJsmGdzxklQ4u42cmd83GnSlxcIJRgE\r\nWMyt8dGyhl5k3oNWNhpTI0mrWoFIFB7ufVYNVCwvmavjAeHZU6gmsY5AuKp9\r\nuJv/0KdfGFZG3lWSEBkNbYSP3jTuuGztY/lS9d6AK6Yx8XTrpzQY7VvpYAkB\r\n0UzmZddMuY4LxY35EfrIdnAKnKXqPyFUGGkuBqaQ8YBe4MLg3ApzZ48hrVI4\r\nCYiWL2pbvDlPfcyiqiokT/hzkuGt5OooZXWs4w6Cl1YqdMv1V0i1WzbYuv4h\r\n8Mg8muEBjaMiLlCmkSFCOddfcaUfK6V05kWCqKsI882flGfC/dU2uW6lXxFG\r\npbJPj96Yw0bgqEXuFW/R0iEbAILIO26UoIybE+jDyEdXdhAQCMOUcl3Bt/rV\r\nxl2Fd0kykORhfUKM86Ofom6tn/opNCwiIRUwICDSWHHCiRfg7D6o6NF/KiMT\r\nNFG+Ayk9Z/B+yt+NaGevMD6VyB3IYfX/uAI=\r\n=21J2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"2267ac8c81aad2b7b1fd1c5037eaf761861ecf8a","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && npm run build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"8.5.5","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"16.15.0","dependencies":{"ramda":"^0.28.0","fs-extra":"^10.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.3.6","mocha":"^10.0.0","ts-mocha":"10.0.0","typescript":"4.6.4","@types/chai":"^4.3.1","@types/mocha":"9.1.1","@types/ramda":"^0.28.12","@types/expect":"24.3.0","@types/fs-extra":"^9.0.13"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.0.0_1652486778061_0.4234156560338276","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"file-system-cache","version":"2.0.1","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.0.1","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"1ce31c4a75ae13c00666bbde0c890cae8d980cd7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.0.1.tgz","fileCount":17,"integrity":"sha512-ypttSkXKUUEOSNU7qxmtlN/3wiFihpFdH9c7YZ/bYYepNN/+2moCI4TXIFpFWslRAb/Bzl0vyfTvYcHLqqpxfA==","signatures":[{"sig":"MEUCIQDjHmDcexXj+i7pTB+lQXbutaJOb9s2nPGL+5qyQ8iMAQIgW57ucby4omZFhA+VaKU+Bk6GnzuUUI4UgTs6fZuJMDQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRdjTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrUBAAkh08lwOn9gpO4PL0Dhai4zowURy4ysof9y2PsbmiYYpPHEs+\r\nwBNRD83IoOlzgDGtb9wKJq+ivRHJSlw0cmhFIpr/kfhJWppu/r1HraWJ7kE4\r\n85efPq5csPo4LHMc8I/kQ1HgK8/ErQrpRR79VGcr4dQ2nEeN0r5r3sHdyYtt\r\nUofrNA1b4d0aaN3RIyYcCmTzVg2Vfp3L75tiHcjYW/8QB6DNFEYuTHLvybqT\r\nBrxJJomNv/RxSIJ/38QHiyUbRTxWSzInh7qKVSalfF8rfHTALRMbh4OZr8UF\r\nFJ3LwQ7LuX5iwHRhpjyMqV+iBZ4Tey33AnIJYsjjeu50uBQEEybv1NXESdJ/\r\n0LsidxUx4y1ba0gTyMu9vVow37iUjZbNs6Elhus1O0BjmZJSdl9aE3ZkrMzB\r\nbFN4YdDk/XGV7/uVDzusZV0miJEgxkbKOFTdbPbicDtm6vB5Rj6lrvmjSIWW\r\nJvukn28EgzvcaPMrbomuLSLnYyYWxmBCk4RW9zUUhbZdS2r3EqDZnUajeCOd\r\nNhFnG4iu4YfZVXzKrduqh3osYxpPu8vHwcplEf/rcPL2DVALSTLyw98jP5/9\r\n9Ve03OVZnWlbjAyE/ORhO2s5Uxma7dO+7Wh07UrE1rprC3GrjYW7+dVxsynf\r\nauBJJ0xZlkPoqMe9vFSyVjf/jH8Mely1skU=\r\n=YSEi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"3f77f7d0b9af8d93017604d1c63b89ee7c8be637","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && npm run build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"8.15.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"18.7.0","dependencies":{"ramda":"^0.28.0","fs-extra":"^10.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.3.6","mocha":"^10.0.0","ts-mocha":"10.0.0","typescript":"4.8.4","@types/chai":"^4.3.3","@types/mocha":"^10.0.0","@types/ramda":"^0.28.15","@types/expect":"24.3.0","@types/fs-extra":"^9.0.13"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.0.1_1665521874862_0.6801774297928009","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"file-system-cache","version":"2.0.2","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.0.2","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"6b51d58c5786302146fa883529e0d7f88896e948","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.0.2.tgz","fileCount":18,"integrity":"sha512-lp4BHO4CWqvRyx88Tt3quZic9ZMf4cJyquYq7UI8sH42Bm2ArlBBjKQAalZOo+UfaBassb7X123Lik5qZ/tSAA==","signatures":[{"sig":"MEUCIQDO/0972uPsIC8Lj/g9aFhtYjbL91PsBMx6unpMkCKSXQIgFCGPuRf1Lp2qEVPhI+oTODaxzuEoY0Em1HzO7rpRjjQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxcG5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYwg//UkrW3qpXwgCEDnO6C0DcaG/M+ue6wRP1JNNnk8XBpP9sQOQ1\r\nLRUsI42JQUXnDeeXRj/mWzQezb5swpL8mFnIWdyZ6nGgqYeQtT78yvsLa3iC\r\n1wIo27yE4vzRHEhcsQ0TOQhu888GNC+SvX9E4SzOK3wVBKtyBmxmGFM4Yzui\r\nm8Pb1eeARNsLBtR6g2DlCrPYrOpzdf0wbFzDT3ye6cQw3j86lfNTRpTklV3w\r\nKmfMkeshZZNOXXRfZg8KxliUxWe73S76+Z+BRGL9c+vKAzMUqhq1bY8aEvvz\r\nlrskPJwDNg30NvJp7NUzzlLYSqAlPY+qDnEcLarsiLVsawE0CwtjYU4m3e4f\r\n8RkCESBfC9xbLWSJ9siOHvg6I9QdgU+b99ysB6rCr/B+QP61TQ7RxbkpfH1e\r\nTDid8fLMroQZEDM/yfAzCNYBo5+OSj86GqY0NUwtxhlnOQMjzusLiE3m3izD\r\nQ/ipknx1nd4tyHEEDgdKzjHxC8w9BPRnLg5IkdRTgF8fvzpFn7kzkYupefPd\r\njhZNEAHDscrGmA/vlv981dF75E9U+HauhU+KJA8krIVWNqK7LYI62vL1HJil\r\nr6foBehFV0ndM9Aaw4ffW2LPJRfCAAfb4VJF5XntHhGuA9GXHuo0PADeZBKJ\r\n629Rx5sduu/QaqE1R7E6NMoRsd9LnvsK5L8=\r\n=Ri8Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"de74216c7183c666b3a5fe7d39537bb7730eb9ff","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && npm run build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"8.15.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"18.7.0","dependencies":{"ramda":"^0.28.0","fs-extra":"^11.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.3.7","mocha":"^10.2.0","ts-mocha":"^10.0.0","typescript":"4.7.4","@types/chai":"^4.3.4","@types/mocha":"^10.0.1","@types/ramda":"^0.28.21","@types/expect":"24.3.0","@types/fs-extra":"^11.0.1"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.0.2_1673904569755_0.49281023547289826","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"file-system-cache","version":"2.1.0","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.1.0","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"98183ca3f5bc9499e76f3c0e436a48644079eac6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.1.0.tgz","fileCount":18,"integrity":"sha512-DYsIRzIwnZFOfVwux4Wd7GqvXy63jN9HGfA7Mjlh9c/UsECJpNKwgXU24f3JNZ6phkbvRWOHBp+DWG1MVbGYWw==","signatures":[{"sig":"MEUCIQC7Lzf4of0RVmocebPsDb/FXe+7RYDkBN0MpMgpDa93xwIgGGA+5TCY8ZmPDBC15OicDpCtdd4JayNZh1g1TppjGgw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPvvWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp3fg//WAVpsq6DcmjhBoJ2/cblpcIkf+Txmp9ADhsxsPronh8wxKez\r\njVXuz3ZfbkemPNvwuOD9rvbKBRtuy9subGk/uukZY3cMEdhP8t7xbC49LW+w\r\nX+f/fMzMrXeLyewKXbNrUXumgd9ON4Fz79S+WLQwY1z1IB5ogoZHOmTIIXs4\r\ncrCgluy4EbZYzqPof9hYXOqb6LZ/9DIev7+exVHvRBZcvudPtOKfmMLR3al9\r\nnATR2/cnovL57Tvn6NIZ39A+8Mn/K0CpTofIOReEFmFB/nNyiGupvlaj3u91\r\nou1MHOMVqvyCQ/mtBiNZiRYIh4g+isscuI9rzoNAnPWjYX20qsAK1DQxwy6Q\r\nCUyFaasGjGeCuVCTYuWf+jeDtFjtmXz4OVIYZh8GrKMFRHh1g4Ul/+NY1pFv\r\nxHsgC4NUs8dvEg/EEoYYsm8ugIeawOkU99QnBDlaHgGpF7PFQYpv5gJlK/2e\r\nmb2Y442LAWloHeAgXUS8kSu3xpDj/ZbbogrTOpetb09MUNNf754Nxwxf+ALW\r\n113q2o03Bqe7bTO7GorYfey2MP4X2lwg0bxYrJWTsJMvwoBASFiD1RLvER7/\r\nVZlafMtLPSs658SvXJtENb4A/RkPGkUhVGb8ihNaRJabfJemgKnMDpci2uwn\r\nX7/sVT/8ylmDb+h86fTTFprmgTEboQc780U=\r\n=w4SH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"ec8d6aaf506b3add35f15e61addb472d73aceb4e","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && npm run build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"9.5.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"19.7.0","dependencies":{"ramda":"^0.28.0","fs-extra":"^11.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.3.7","mocha":"^10.2.0","ts-mocha":"^10.0.0","typescript":"4.7.4","@types/chai":"^4.3.4","@types/mocha":"^10.0.1","@types/ramda":"^0.28.21","@types/expect":"24.3.0","@types/fs-extra":"^11.0.1"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.1.0_1681849301852_0.2882851109803932","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"file-system-cache","version":"2.1.1","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.1.1","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"25bb4019f7d62b458f4bed45452b638e41f6412b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.1.1.tgz","fileCount":18,"integrity":"sha512-vgZ1uDsK29DM4pptUOv47zdJO2tYM5M/ERyAE9Jk0QBN6e64Md+a+xJSOp68dCCDH4niFMVD8nC8n8A5ic0bmg==","signatures":[{"sig":"MEUCIQC2ABrAlVOWQUGOes2x1PQUlZFuLUOF3EMv+fmUm91X9gIgEOftSjb+WIAE05vMHwdBLbPfa3v8PoZOI/aPBlfjfdI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQgCRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpxhQ/+JbcT/LqPa6pZ15a3iJke/fg8F5nhaF6DDWWL3YUoBRyohZRx\r\nUAxkTal0tFfF6mw3tIs34LlRXcJhSihJ8yUWhZOnYumlPg7RfEPzjv+6klWQ\r\nSvoyrUggn8JFVJ+tub+wR40PHYrZC5NA87y4OFG+9UBsQFctRKg9549nQ7Tl\r\nTseVm3gbDEoGeg2ZjAKuDlwUXMOAlxrjuhfEs/mUTluq/OosXk2m1PgihcOS\r\nGTFSIj6gPmORRf1wWqVHRrcgIpj6XTj+3Pb3vm1B/0IiZf2PFrBAyFSgLXUl\r\nfplSkhujayMhbuVxUS3mfhvx+UzHhvy16ZuCcL67NxlJ1vNIcKEWyBl1js/y\r\nadfewZCDHKbzDi2I6uP6QqGoBckY/GH8M1/RsAnbvv6Q9n7LLo5VovGdOUQ6\r\nfWPVV3eoy1kAZ1yN6DDUmN7caueN4tiYFBUF+lwLLcHks7OrhRnfILDGmb0L\r\npEYmrAGv13BCrf69mvR/WfGhuG+sx+ePHkj2+aDDN10yNoYUNHaeiidCuf/T\r\nYCkccGWIpGvkccP5xU0QNMwLZ/yNP+1FBbpmhhOTPxTsplm8Z0czfN8G5PrC\r\npr1R947cIjb/sknJVYnDfDMnPsZa4FiZhO4ud0Nh6EIwmWnROy7Mv8XtrZTs\r\nXrdn97ms39FBjtGxcTjdDHtnnuw8lMmadkU=\r\n=GDQ4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"ec8d6aaf506b3add35f15e61addb472d73aceb4e","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && npm run build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"9.5.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"19.7.0","dependencies":{"ramda":"^0.28.0","fs-extra":"^11.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.3.7","mocha":"^10.2.0","ts-mocha":"^10.0.0","typescript":"4.7.4","@types/chai":"^4.3.4","@types/mocha":"^10.0.1","@types/ramda":"^0.28.21","@types/expect":"24.3.0","@types/fs-extra":"^11.0.1"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.1.1_1682047121374_0.3220357253281796","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"file-system-cache","version":"2.3.0","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.3.0","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"201feaf4c8cd97b9d0d608e96861bb6005f46fe6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.3.0.tgz","fileCount":18,"integrity":"sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==","signatures":[{"sig":"MEUCIQCqoM04jMBcfdsBcwVpMJ/bsQSHheTKU4itaDqtj1aXKwIgfDZcZqKjCtiQkau/bKwIKf8V57h2IccZudcuRDgNJ0s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21168},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"a47b0b48e6a6e3e14d76411643ccf771b64712d1","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && npm run build"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"9.5.1","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"18.16.0","dependencies":{"ramda":"0.29.0","fs-extra":"11.1.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","mocha":"10.2.0","ts-mocha":"10.0.0","typescript":"5.0.4","@types/chai":"4.3.4","@types/mocha":"10.0.1","@types/ramda":"0.29.1","@types/expect":"24.3.0","@types/fs-extra":"11.0.1"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.3.0_1684705860732_0.9602642150865284","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"file-system-cache","version":"2.4.0","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.4.0","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"18c842942fac3d27a698388002ef6405b8a3fc4a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.4.0.tgz","fileCount":27,"integrity":"sha512-aqfrsrc43lOJdK6e4xZT/61y0s+oJgeMxbhIxjVIJ/H/lbBNIuQ+51DjQJKt36eQAj2j7wu0i0QQcYP/eGyudQ==","signatures":[{"sig":"MEQCIGGdIXzGklAV4PDVnwxXrb+6Ym2sGP+tVWRXkV5OSDrIAiB/NnfNk+68gCjx99IGP7IvsfO3r1AO4Qetcb1nIUE1rA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26535},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"11c9ecf26da2a51f23fe3c99f03e1d749859c471","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && npm run build","gen:hashtype":"ts-node-esm -T ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"9.6.3","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"19.9.0","dependencies":{"ramda":"0.29.0","fs-extra":"11.1.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","mocha":"10.2.0","ts-node":"10.9.1","ts-mocha":"10.0.0","typescript":"5.1.3","@types/chai":"4.3.5","@types/mocha":"10.0.1","@types/ramda":"0.29.2","@types/expect":"24.3.0","@types/fs-extra":"11.0.1"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.4.0_1687819402332_0.5912675679845747","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"file-system-cache","version":"2.4.1","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.4.1","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"4e02ea62b9cdea9874909685131f7fe852fc5ff6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.4.1.tgz","fileCount":27,"integrity":"sha512-mzEiUdjzqhxwppIJVSBq8C9evWM1j0v/lCg7gFMDiQDQPlQSm8kRfXSPFScT1p/Fxy0N2LSIps6g28e8itumlg==","signatures":[{"sig":"MEUCIAOqw/GnNJFDwPU2DeyzqmIvpHCaSCQNVYE6MKARqwOAAiEAtgj5+HfPO+eCivTkn9UCO/XYCW5PkCajCIoI1CjvK60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26670},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"1f60227f83dc16b3a3b3ca0ce1ac5ba4b53f29e0","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && rm -rf ./lib && npm run build","gen:hashtype":"ts-node-esm -T ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"9.6.3","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"19.9.0","dependencies":{"ramda":"0.29.0","fs-extra":"11.1.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","mocha":"10.2.0","ts-node":"10.9.1","ts-mocha":"10.0.0","typescript":"5.1.3","@types/chai":"4.3.5","@types/mocha":"10.0.1","@types/ramda":"0.29.2","@types/expect":"24.3.0","@types/fs-extra":"11.0.1"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.4.1_1687907835093_0.8852523928104665","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"file-system-cache","version":"2.4.2","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.4.2","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"d0911c3981858033fd2e57b602cfe91984d84658","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.4.2.tgz","fileCount":27,"integrity":"sha512-33ALMyc8nFwrb7p5+Dl0rmYUY48hHoYvFQhH7zpr08DJ68xR41PONJaYQ5XRj61CFq/hvoj680Ej/P9hoOU4eQ==","signatures":[{"sig":"MEQCIAg+SsCA/gOJlUiPU98G3yBLdYiOOFLRDR53wB9uLASKAiBlklxGCGo5Hj15vU2Y2Sv8cI7FSA+I368DEmkV28EGcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26796},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"ccf5d0d571494a1b558a76e73c40fa31888deb48","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && rm -rf ./lib && npm run build","gen:hashtype":"ts-node-esm -T ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"9.6.3","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"19.9.0","dependencies":{"ramda":"0.29.0","fs-extra":"11.1.1","@types/ramda":"0.29.3"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","mocha":"10.2.0","ts-node":"10.9.1","ts-mocha":"10.0.0","typescript":"5.1.6","@types/chai":"4.3.5","@types/mocha":"10.0.1","@types/expect":"24.3.0","@types/fs-extra":"11.0.1"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.4.2_1688786707167_0.2389494209001355","host":"s3://npm-registry-packages"}},"2.4.3":{"name":"file-system-cache","version":"2.4.3","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.4.3","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"6db5ebe70c4d924ef550440107393973b8b39c52","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.4.3.tgz","fileCount":39,"integrity":"sha512-wBJ+ysm8ma2m7bNYKu72ZZ02LfypRg00AYdG9w2sbpOsu9KgHGQ4mJEGoAWYjAr+C+9jf1Q1ZwBqTB4Rdz0upA==","signatures":[{"sig":"MEUCIEWuMG2BPWRyaHvXBjFW3sU+8GLSPY7QJJLOcLwiTjuhAiEA9L/UbX6ZcjaAN4PDq6swABACTC52DW05LMKiWiodb2c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35914},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"6b642f889cfda6e4b2f0d109230a5f23051bc882","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && rm -rf ./lib && npm run build","gen:hashtype":"ts-node-esm -T ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"9.6.3","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"19.9.0","dependencies":{"ramda":"0.29.0","fs-extra":"11.1.1","@types/ramda":"0.29.3","@types/fs-extra":"11.0.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","mocha":"10.2.0","ts-node":"10.9.1","ts-mocha":"10.0.0","typescript":"5.1.6","@types/chai":"4.3.5","@types/mocha":"10.0.1","@types/expect":"24.3.0"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.4.3_1690495170567_0.5834150743068274","host":"s3://npm-registry-packages"}},"2.4.4":{"name":"file-system-cache","version":"2.4.4","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.4.4","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"90eb72960e3d7b72d09768d4d4262c98f8d206b6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.4.4.tgz","fileCount":39,"integrity":"sha512-vCYhn8pb5nlC3Gs2FFCOkmf4NEg2Ym3ulJwkmS9o6p9oRShGj6CwTMFvpgZihBlsh373NaM0XgAgDHXQIlS4LQ==","signatures":[{"sig":"MEUCICyqsdOUwb0BCBkfyKp+cx74zSYLNuW7J4fb6YpA7QDBAiEApYh7wnEuZ5CpRcSpKzikNqfwNuRVihbDv668x7i8/9k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36015},"main":"./lib/index.js","types":"./lib/index.d.ts","gitHead":"597c12f82d8b780e0433fde9e09efa5c86c7861d","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && rm -rf ./lib && npm run build","gen:hashtype":"ts-node-esm -T ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"9.6.3","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"19.9.0","dependencies":{"ramda":"0.29.0","fs-extra":"11.1.1","@types/ramda":"0.29.3","@types/fs-extra":"11.0.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","mocha":"10.2.0","ts-node":"10.9.1","ts-mocha":"10.0.0","typescript":"5.1.6","@types/chai":"4.3.5","@types/mocha":"10.0.1","@types/expect":"24.3.0"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.4.4_1691711805697_0.7974863692507839","host":"s3://npm-registry-packages"}},"2.4.5":{"name":"file-system-cache","version":"2.4.5","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.4.5","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"90cb6421ee23333b21bf5c5b72fa06eaf0435c9c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.4.5.tgz","fileCount":5,"integrity":"sha512-pwQKOaKTGLSjMN7M2lsLN7hCbak1Mus7KKAssi9EXKvGPiasj1AwUnuTb3NRjYVpAsT2n1vywktVkdWXlL2jeA==","signatures":[{"sig":"MEUCIFXNNQl1+GAYKbN6y/QMPdfAm3phbME2q9Vn+HveI8ngAiEAyL6LQBWkivR2bgFnjFzYhffe+GOcsx65EomOsKWE5KA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":101933},"main":"./lib/index.js","type":"module","types":"./lib/index.d.ts","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js"},"./package.json":"./package.json"},"gitHead":"d50595974c10b6f4c636be743dcee7ba30d62e19","scripts":{"test":"vitest","build":"tsup src/index.ts --clean --minify --dts --format esm --out-dir lib --treeshake","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","mocha":"^10.6.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/mocha":"^10.0.7","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.4.5_1721082858325_0.547095912786157","host":"s3://npm-registry-packages"}},"2.4.6":{"name":"file-system-cache","version":"2.4.6","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.4.6","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"a6010d547d484041dc2ad485fdcf60ad3abb9a50","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.4.6.tgz","fileCount":33,"integrity":"sha512-DYjC2u56z5D4NfO0yndHyQ3alsqv+OqR9eLu2zqlJ2L7YJ9oCCbsn+Rbug5lVJWHwbSPDVXCXsz1nrBbnCiuuw==","signatures":[{"sig":"MEUCIDJQADJcoIHim5OIgIF0TOzn5Qgbu96XYl1mct97E7/BAiEAz42E/T58xRRZBTI2s1Nt6Vdhsse0ZQxhdD2WUxCVx4Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32439},"main":"./lib/index.js","type":"module","types":"./lib/index.d.ts","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js"},"./package.json":"./package.json"},"gitHead":"880e2930b3af3555956ac023f7efa1fcf931aa57","scripts":{"test":"vitest","build":"tsup src/index.ts --clean --minify --dts --format esm --out-dir lib --treeshake","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.4.6_1721108794296_0.385813706923686","host":"s3://npm-registry-packages"}},"2.4.7":{"name":"file-system-cache","version":"2.4.7","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@2.4.7","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"d48ec59b384f91c9ee2d392831ce1fb35e90e5b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-2.4.7.tgz","fileCount":39,"integrity":"sha512-VEUHQCtl3hjDH0bfjjwzuH6pP1rpmf1pjwQhiKm3cfcZnMidz7ILtjDecQz4yM8xidvoBSIdOke3GLe90gE1LQ==","signatures":[{"sig":"MEUCIQDUBV77JS8QPpDl+2N/fvZPItdrZyVp6wuyTC1F5VePQAIgWlnrD/qb11GWGybqb5lIsgCFbPMI2qnm7FqvRsSuWtg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36015},"main":"./lib/index.js","types":"./lib/index.d.ts","scripts":{"test":"ts-mocha -p tsconfig.json src/**/*.TEST.ts","build":"tsc","prepublish":"npm test && rm -rf ./lib && npm run build","gen:hashtype":"ts-node-esm -T ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"json5":">=1.0.2"},"_nodeVersion":"22.1.0","dependencies":{"ramda":"0.29.0","fs-extra":"11.1.1","@types/ramda":"0.29.3","@types/fs-extra":"11.0.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"4.3.7","mocha":"10.2.0","ts-node":"10.9.1","ts-mocha":"10.0.0","typescript":"5.1.6","@types/chai":"4.3.5","@types/mocha":"10.0.1","@types/expect":"24.3.0"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_2.4.7_1721109332717_0.5476340819396304","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"file-system-cache","version":"3.0.0","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@3.0.0","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"abe3cc4b62143c925b5ae1225c41d8d936c35367","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0.tgz","fileCount":5,"integrity":"sha512-0DGtxRpTdrg0LCCZ4TjAiLs+2CQYlcWx4V5BP95qgUpQGMgAXQ58PfB2mb5KT7BPryhCJ9KD4JW+feMweHlXFw==","signatures":[{"sig":"MEUCIDaV6GexOhe/XN4A5iSz7Dc2yLcnclb1kKhPmP8LVXXaAiEA+uFCArHSt6ttmsWhZwUaZOUJOqozNw+n5RnA2PeW7nU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":101949},"main":"./lib/index.js","type":"module","types":"./lib/index.d.ts","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js"},"./package.json":"./package.json"},"gitHead":"667254881be1b282551744f9ccafe04b8bd04edb","scripts":{"test":"vitest","build":"tsup src/index.ts --clean --minify --dts --format esm --out-dir lib --treeshake","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_3.0.0_1721110133108_0.3755500337392863","host":"s3://npm-registry-packages"}},"3.0.0-alpha.1":{"name":"file-system-cache","version":"3.0.0-alpha.1","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@3.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"134fe5169a9264e06cd97976569b7b9662f33d57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0-alpha.1.tgz","fileCount":5,"integrity":"sha512-Ql5rpbsgPl1Qe8OKqqOTPNZUwVNORI7u8yGMwHyL1/bv82nlilOlcWrtyLenQ1pdpMBWCxtpARTB0qJiSQ73gg==","signatures":[{"sig":"MEQCIGTSMXvPCkDDBAxtCtNOgOenvRgekNasmsh8rDlMG4yDAiANzJBQh5DUiD4MBgEis8P27MTyCAObq2GNMF0nR6jmsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":101992},"main":"./lib/index.js","type":"module","types":"./lib/index.d.ts","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js","default":"./lib/index.js"},"./package.json":"./package.json"},"gitHead":"06481d23552fb81e98068e5f40eed8d5c086a223","scripts":{"test":"vitest","build":"tsup src/index.ts --clean --minify --dts --format esm --out-dir lib --treeshake","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_3.0.0-alpha.1_1721862082286_0.6968001340467003","host":"s3://npm-registry-packages"}},"3.0.0-alpha.2":{"name":"file-system-cache","version":"3.0.0-alpha.2","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@3.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"959bb9d8fadd0b3a1d8123dc52ad02e5a8dce503","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0-alpha.2.tgz","fileCount":7,"integrity":"sha512-5Vf/9UcFEBjwQj2PdcwAdUnLBfUbXdSI83YllmLBBJEP9Mlw89mj/S6ucTdOYf88CfmefgkJNtpuFvHHfyPgeA==","signatures":[{"sig":"MEQCIGfxkSiS/QkZF1HTEcatq+EMR29ifNVCN2LRlQUjGSSJAiAV+6OHUrZH7KAI6vgtFMW/fEasPoZPZXR3js5Sldd6rw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198893},"main":"./lib/index.cjs","type":"module","types":"./lib/index.d.ts","module":"./lib/index.js","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js","require":"./lib/index.cjs"},"./package.json":"./package.json"},"gitHead":"06481d23552fb81e98068e5f40eed8d5c086a223","scripts":{"test":"vitest","build":"tsup src/index.ts --clean --minify --dts --format esm,cjs --out-dir lib --treeshake","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_3.0.0-alpha.2_1721863090623_0.1365161687757419","host":"s3://npm-registry-packages"}},"3.0.0-alpha.3":{"name":"file-system-cache","version":"3.0.0-alpha.3","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@3.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"1908320a9f0daa122ab85809f1d00c996298a984","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0-alpha.3.tgz","fileCount":9,"integrity":"sha512-oSH2ETwDAfAF9HPwUWod3L5kmbA0ues6bHJOY742Sf5U6K2qwshwc9DY5cc8zaNH1L7UbH0K5Wquk7PyfDYslg==","signatures":[{"sig":"MEQCIEnMKg5irEShMixhpk6nJhUM3TJ4mnd4kQ3cWV/1p2oeAiB3dnuWZvvLFxBzP18/wIClyzmwwLElxOtsW5wyFeh4lQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1500665},"main":"./lib/index.cjs","type":"module","types":"./lib/index.d.ts","module":"./lib/index.js","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js","require":"./lib/index.cjs"},"./package.json":"./package.json"},"gitHead":"06481d23552fb81e98068e5f40eed8d5c086a223","scripts":{"test":"vitest","build":"tsup","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_3.0.0-alpha.3_1721863635455_0.0951536863839555","host":"s3://npm-registry-packages"}},"3.0.0-alpha.4":{"name":"file-system-cache","version":"3.0.0-alpha.4","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@3.0.0-alpha.4","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"2abd6e4921ab9d1a1c7c38d76678f0718385d742","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0-alpha.4.tgz","fileCount":9,"integrity":"sha512-0yUkhGR0PvfT8gQ450mDQpKfXXXphHdWHB8uVn0Xxr4HS9XBndI5BhsgMjNC8/aofI0EnjYLpjhHf5vPrm6QhQ==","signatures":[{"sig":"MEQCIE3CuudAN3ZOtphUsOBSsR7MTi6dZ0hkaUafth2l7MhRAiBWuhAgcfAwcURHGu0sh5OvkTTZhBoddD0WKgrP/4oZiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1500665},"main":"./lib/index.cjs","type":"module","types":"./lib/index.d.ts","module":"./lib/index.js","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js","require":"./lib/index.cjs"},"./package.json":"./package.json"},"gitHead":"06481d23552fb81e98068e5f40eed8d5c086a223","scripts":{"test":"vitest","build":"tsup","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_3.0.0-alpha.4_1721864387522_0.5530928328180056","host":"s3://npm-registry-packages"}},"3.0.0-alpha.5":{"name":"file-system-cache","version":"3.0.0-alpha.5","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@3.0.0-alpha.5","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"cf2ec486a2bb88672be3af38e5a3d30af334ee37","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0-alpha.5.tgz","fileCount":9,"integrity":"sha512-+qgC3VlbfsCSQIowdSDVn9Q6DDVHIHMOjT6xxjYp670Zrp936rLDGheu6/ZdI4qh2CSUtauwBgDM4+paH97gDw==","signatures":[{"sig":"MEUCIQD3PPBzXVoT4JoYdM0NxlMzhT1LKbu+mGNKTtnYnO65DAIgSTzdLzdeV8TSNce7njDl7rH4jiVJbuoamFpuke4eMEE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1500665},"main":"./lib/index.cjs","type":"module","types":"./lib/index.d.ts","module":"./lib/index.js","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js","require":"./lib/index.cjs"},"./package.json":"./package.json"},"gitHead":"06481d23552fb81e98068e5f40eed8d5c086a223","scripts":{"test":"vitest","build":"tsup","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_3.0.0-alpha.5_1721864666994_0.15627575135727523","host":"s3://npm-registry-packages"}},"3.0.0-alpha.6":{"name":"file-system-cache","version":"3.0.0-alpha.6","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@3.0.0-alpha.6","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"8c1cf40106a9c58a125d58d97c4d4d9012de80d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0-alpha.6.tgz","fileCount":9,"integrity":"sha512-k/b0xvNWXzTKa2inbkT8faTAuL2+TQm/jknG7OmeG/vv19zQvl5XMHwI/I7sCdjelo0I/8uyMM5CbSsph8730g==","signatures":[{"sig":"MEUCIQCm5j378hUsBGP34X7TDDawsz3hnqOgG1u4m9EbWNCyhQIgZ6pqCpUHFsCJlHBEbt6eVcV2cCA/3OFSp04DcVi2JRk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1189549},"main":"./lib/index.cjs","type":"module","types":"./lib/index.d.ts","module":"./lib/index.js","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js","require":"./lib/index.cjs"},"./package.json":"./package.json"},"gitHead":"06481d23552fb81e98068e5f40eed8d5c086a223","scripts":{"test":"vitest","build":"tsup","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_3.0.0-alpha.6_1721864940282_0.3852440061182616","host":"s3://npm-registry-packages"}},"3.0.0-alpha.7":{"name":"file-system-cache","version":"3.0.0-alpha.7","keywords":["cache","fs","file-system"],"author":{"url":"https://github.com/philcockfield","name":"Phil Cockfield","email":"phil@cockfield.net"},"license":"MIT","_id":"file-system-cache@3.0.0-alpha.7","maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"homepage":"https://github.com/philcockfield/file-system-cache","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"dist":{"shasum":"f3f9d38203cbdd8d83e0bbecff4de95aa9e18295","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0-alpha.7.tgz","fileCount":9,"integrity":"sha512-SSn3LF+JL67Y+lz7YwVW1EVQV4Lz2dOe/LzRyRTvS910/LbiGK0817Gy0WSQNUuncgdyPmFee04angzD0yHEBw==","signatures":[{"sig":"MEUCID+3MWZx1eq5Lyz9/yIgMSA8QEp3Yvm//KoBm/MLKDOSAiEAl0a3P/pYbur/skmN2PzHTcXGxwCZJOfKgEV6e8WPNdA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1500665},"main":"./lib/index.cjs","type":"module","types":"./lib/index.d.ts","module":"./lib/index.js","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js","require":"./lib/index.cjs"},"./package.json":"./package.json"},"gitHead":"06481d23552fb81e98068e5f40eed8d5c086a223","scripts":{"test":"vitest","build":"tsup","format":"prettier ./src --write","prepublish":"npm test && npm run build","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts"},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"repository":{"url":"git+https://github.com/philcockfield/file-system-cache.git","type":"git"},"_npmVersion":"10.7.0","description":"A super-fast, promise-based cache that reads and writes to the file-system.","directories":{},"resolutions":{"vite":">=5.3.3","braces":">=3.0.3"},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","devDependencies":{"tsx":"^4.16.2","chai":"^5.1.1","tsup":"^8.1.0","ramda":"^0.30.1","vitest":"^2.0.3","fs-extra":"^11.2.0","prettier":"^3.3.3","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/ramda":"^0.30.1","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4"},"_npmOperationalInternal":{"tmp":"tmp/file-system-cache_3.0.0-alpha.7_1721865765749_0.6154679549312951","host":"s3://npm-registry-packages"}},"3.0.0-alpha.8":{"name":"file-system-cache","version":"3.0.0-alpha.8","description":"A super-fast, promise-based cache that reads and writes to the file-system.","keywords":["cache","fs","file-system"],"homepage":"https://github.com/philcockfield/file-system-cache","repository":{"type":"git","url":"git+https://github.com/philcockfield/file-system-cache.git"},"license":"MIT","author":{"name":"Phil Cockfield","email":"phil@cockfield.net","url":"https://github.com/philcockfield"},"type":"module","main":"./lib/index.cjs","module":"./lib/index.js","exports":{".":{"types":"./lib/index.d.ts","import":"./lib/index.js","require":"./lib/index.cjs"},"./package.json":"./package.json"},"scripts":{"build":"tsup","format":"prettier ./src --write","gen:hashtype":"tsx ./script.ts/generate-hashtype.ts","prepublish":"npm test && npm run build","test":"vitest"},"devDependencies":{"@types/chai":"^4.3.16","@types/expect":"^24.3.0","@types/fs-extra":"^11.0.4","@types/ramda":"^0.30.1","chai":"^5.1.1","fs-extra":"^11.2.0","prettier":"^3.3.3","ramda":"^0.30.1","tsup":"^8.1.0","tsx":"^4.16.2","typescript":"^5.5.3","vitest":"^2.0.3"},"resolutions":{"braces":">=3.0.3","vite":">=5.3.3"},"packageManager":"yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71","_id":"file-system-cache@3.0.0-alpha.8","gitHead":"0ddc1d43404206bb23e619742300dea07edd1ee4","types":"./lib/index.d.ts","bugs":{"url":"https://github.com/philcockfield/file-system-cache/issues"},"_nodeVersion":"22.1.0","_npmVersion":"10.7.0","dist":{"integrity":"sha512-DKzByUd1LjyPfXHdVjEjkaqEuWIFgjJ/D1WkdVI7zC/jxXgkADkg5nPac0EKw8NOdF8QV7T9e3VelfRu+Thr4w==","shasum":"cecb4374266c1619af50c3804464443a87d6adfc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/file-system-cache/-/file-system-cache-3.0.0-alpha.8.tgz","fileCount":6,"unpackedSize":752874,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDva7e7xrDUh2g6A4wx4QCdVWAlW67+rqvQPWHB4HJadgIhAN0aBFDloG9tSWfE++8tzSbm2YvrEHyrRo9px7mSWWR0"}]},"_npmUser":{"name":"anonymous","email":"phil@cockfield.net"},"directories":{},"maintainers":[{"name":"anonymous","email":"phil@cockfield.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/file-system-cache_3.0.0-alpha.8_1724711722569_0.7340693666365712"},"_hasShrinkwrap":false}},"name":"file-system-cache","time":{"created":"2015-09-28T00:57:33.597Z","modified":"2024-08-26T22:35:22.986Z","1.0.0":"2015-09-28T00:57:33.597Z","1.0.1":"2015-11-25T07:23:47.873Z","1.0.2":"2015-11-25T07:24:54.325Z","1.0.3":"2016-01-25T20:20:53.869Z","1.0.4":"2016-01-26T19:39:36.778Z","1.0.5":"2016-05-06T22:52:53.647Z","1.1.0":"2022-05-14T00:05:45.996Z","2.0.0":"2022-05-14T00:06:18.201Z","2.0.1":"2022-10-11T20:57:55.057Z","2.0.2":"2023-01-16T21:29:29.960Z","2.1.0":"2023-04-18T20:21:42.009Z","2.1.1":"2023-04-21T03:18:41.566Z","2.3.0":"2023-05-21T21:51:00.896Z","2.4.0":"2023-06-26T22:43:22.500Z","2.4.1":"2023-06-27T23:17:15.369Z","2.4.2":"2023-07-08T03:25:07.352Z","2.4.3":"2023-07-27T21:59:30.830Z","2.4.4":"2023-08-10T23:56:45.912Z","2.4.5":"2024-07-15T22:34:18.510Z","2.4.6":"2024-07-16T05:46:34.497Z","2.4.7":"2024-07-16T05:55:32.872Z","3.0.0":"2024-07-16T06:08:53.257Z","3.0.0-alpha.1":"2024-07-24T23:01:22.475Z","3.0.0-alpha.2":"2024-07-24T23:18:10.848Z","3.0.0-alpha.3":"2024-07-24T23:27:15.775Z","3.0.0-alpha.4":"2024-07-24T23:39:47.742Z","3.0.0-alpha.5":"2024-07-24T23:44:27.248Z","3.0.0-alpha.6":"2024-07-24T23:49:00.550Z","3.0.0-alpha.7":"2024-07-25T00:02:46.009Z","3.0.0-alpha.8":"2024-08-26T22:35:22.805Z"},"readmeFilename":"README.md","homepage":"https://github.com/philcockfield/file-system-cache"}