This commit is contained in:
2025-05-12 05:38:44 +09:00
parent dced21c3f8
commit 6d78bfa46e
8120 changed files with 1161564 additions and 0 deletions

41
book/node_modules/lru_map/package.json generated vendored Normal file
View File

@ -0,0 +1,41 @@
{
"name": "lru_map",
"version": "0.4.1",
"description": "Finite key-value map using the Least Recently Used (LRU) algorithm where the most recently used objects are keept in the map while less recently used items are evicted to make room for new ones.",
"main": "dist/lru.js",
"types": "lru.d.ts",
"typings": "lru.d.ts",
"scripts": {
"test": "npm run build && node test.js && echo 'Verifying TypeScript definition...' && tsc --noEmit",
"build": "esbuild --minify --sourcemap --target=es2016 --outfile=dist/lru.js lru.js",
"prepublishOnly": "npm test",
"benchmark": "node --expose-gc benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsms/js-lru.git"
},
"files": [
"README.md",
"lru.d.ts",
"dist/lru.js",
"dist/lru.js.map",
".gitignore"
],
"keywords": [
"cache",
"lru",
"buffer",
"map"
],
"author": "Rasmus Andersson <me@rsms.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsms/js-lru/issues"
},
"homepage": "https://github.com/rsms/js-lru#readme",
"devDependencies": {
"esbuild": "^0.5.26",
"typescript": "^3.9.7"
}
}