Spaces:
Sleeping
Sleeping
File size: 1,808 Bytes
a23aa7d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | {
"name": "@asamuzakjp/generational-cache",
"description": "A generational pseudo-LRU cache with strict maximum size limits.",
"author": "asamuzaK",
"license": "MIT",
"homepage": "https://github.com/asamuzaK/generationalCache",
"bugs": "https://github.com/asamuzaK/generationalCache/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/asamuzaK/generationalCache.git"
},
"files": [
"src",
"types"
],
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@types/node": "^25.6.0",
"c8": "^11.0.0",
"commander": "^14.0.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-regexp": "^3.1.0",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.5.0",
"lru-cache": "^11.3.5",
"mitata": "^1.0.34",
"mnemonist": "^0.40.3",
"mocha": "^11.7.5",
"neostandard": "^0.13.0",
"prettier": "^3.8.2",
"quick-lru": "^7.3.0",
"typescript": "^6.0.2"
},
"overrides": {
"c8": {
"yargs": "^18.0.0"
},
"eslint": {
"brace-expansion": "^1.1.13"
},
"serialize-javascript": "^7.0.4"
},
"scripts": {
"bench": "node --expose-gc ./benchmark/benchmark.js",
"bench:worst": "node --expose-gc ./benchmark/worst-case-benchmark.js",
"build": "npm run tsc && npm run lint && npm test",
"lint": "eslint --fix .",
"test": "c8 --reporter=text mocha --exit test/*.test.js",
"tsc": "node scripts/index clean --dir=types -i && npx tsc"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
},
"version": "1.0.1"
}
|