@chrono-cache/next
Version:
A custom cache handler for Next.js, designed to address a common challenge: the need for large and costly distributed cache solutions (e.g., Redis) in horizontally scaled applications hosted outside of Vercel
61 lines • 1.51 kB
JSON
{
"name": "@chrono-cache/next",
"version": "1.0.0",
"description": "A custom cache handler for Next.js, designed to address a common challenge: the need for large and costly distributed cache solutions (e.g., Redis) in horizontally scaled applications hosted outside of Vercel",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"type": "module",
"repository": "https://github.com/LeandroCesarr/chrono-cache",
"files": [
"dist"
],
"keywords": [
"lru",
"cache",
"nodejs",
"caching",
"lru-cache",
"file-cache",
"ttl-cache",
"disk-cache",
"performance",
"javascript",
"memory-cache",
"chrono-cache",
"file-storage",
"data-storage",
"cache-library",
"modular-cache",
"efficient-cache",
"in-memory-cache",
"cache-expiration",
"next",
"nextjs",
"cache-handler",
"custom-cache-handler",
"vercel"
],
"author": "Leandro C. Silva",
"license": "MIT",
"dependencies": {
"@chrono-cache/core": "1.1.0"
},
"peerDependencies": {
"next": "15.x"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@vitest/ui": "^2.1.6",
"tsup": "^8.3.5",
"typescript": "5.7.2",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.6",
"@chrono-cache/typescript-config": "0.0.0"
},
"scripts": {
"dev": "export WATCH_MODE=true && tsup --config tsup.config.ts",
"build": "tsup --config tsup.config.ts",
"test": "vitest",
"test:ui": "vitest --ui"
}
}