lrufy
Version:
A feature-rich LRU cache implementation with TTL support, custom sizing, and event hooks
38 lines (37 loc) • 899 B
JSON
{
"name": "lrufy",
"version": "1.0.2",
"description": "A feature-rich LRU cache implementation with TTL support, custom sizing, and event hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"example": "ts-node src/example.ts"
},
"keywords": [
"lru",
"cache",
"ttl",
"least-recently-used"
],
"author": "Quy Huynh",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hmqiwtCode/lrufy.git"
},
"homepage": "https://github.com/hmqiwtCode/lrufy#readme",
"bugs": {
"url": "https://github.com/hmqiwtCode/lrufy/issues"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}