UNPKG

@alepha/cache

Version:

A generic key-value caching interface with in-memory implementation.

52 lines (51 loc) 1.04 kB
{ "name": "@alepha/cache", "description": "A generic key-value caching interface with in-memory implementation.", "keywords": [ "alepha", "cache", "in-memory" ], "author": "Feunard", "version": "0.10.3", "type": "module", "engines": { "node": ">=22.0.0" }, "license": "MIT", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "src" ], "dependencies": { "@alepha/core": "0.10.3", "@alepha/datetime": "0.10.3", "@alepha/logger": "0.10.3" }, "devDependencies": { "@biomejs/biome": "^2.2.5", "tsdown": "^0.15.6", "typescript": "^5.9.3", "vitest": "^3.2.4" }, "scripts": { "test": "vitest run", "lint": "biome check --write --unsafe", "build": "tsdown -c ../../tsdown.config.ts", "check": "tsc" }, "repository": { "type": "git", "url": "git+https://github.com/feunard/alepha.git" }, "homepage": "https://github.com/feunard/alepha", "module": "./dist/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } } }