least-recent
Version:
A cache object that deletes the least-recently-used items
53 lines • 1.24 kB
JSON
{
"name": "least-recent",
"version": "1.0.3",
"description": "A cache object that deletes the least-recently-used items",
"keywords": [
"lru",
"lru-cache",
"cache"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicnetwork/least-recent.git"
},
"bugs": {
"url": "https://github.com/ceramicnetwork/least-recent/issues"
},
"homepage": "https://github.com/ceramicnetwork/least-recent",
"author": "Sergey Ukustov <sergey@ukstv.me>",
"license": "(MIT OR Apache-2.0)",
"type": "module",
"files": [
"dist"
],
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"devDependencies": {
"prettier": "^3.0.1",
"ts-essentials": "^9.3.2",
"tsm": "^2.3.0",
"typescript": "^5.1.6",
"uvu": "^0.5.6",
"watchlist": "^0.3.1"
},
"dependencies": {
"nanoevents": "^8.0.0"
},
"scripts": {
"build": "./node_modules/.bin/tsc -p tsconfig.build.json",
"test": "./node_modules/.bin/tsm ./node_modules/uvu/bin.js . .+\\.test\\.ts",
"test:watch": "./node_modules/.bin/watchlist --eager src -- pnpm run test"
}
}