@cacheable/node-cache
Version:
Simple and Maintained fast NodeJS internal caching
58 lines • 1.37 kB
JSON
{
"name": "@cacheable/node-cache",
"version": "1.5.6",
"description": "Simple and Maintained fast NodeJS internal caching",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredwray/cacheable.git",
"directory": "packages/node-cache"
},
"author": "Jared Wray <me@jaredwray.com>",
"license": "MIT",
"private": false,
"keywords": [
"cache",
"caching",
"node",
"nodejs",
"cacheable",
"cacheable-node-cache",
"node-cache",
"cacheable-node"
],
"devDependencies": {
"@types/node": "^22.15.30",
"@vitest/coverage-v8": "^3.2.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.2",
"xo": "^1.1.0"
},
"dependencies": {
"hookified": "^1.9.1",
"keyv": "^5.3.3",
"cacheable": "^1.10.0"
},
"files": [
"dist",
"license"
],
"scripts": {
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepublish": "pnpm build",
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest run",
"clean": "rimraf ./dist ./coverage ./node_modules"
}
}