added first cache

This commit is contained in:
Bojan Kucera 2025-06-05 07:39:54 -04:00
parent eee6135867
commit 3fc123eca3
9 changed files with 210 additions and 9 deletions

21
libs/cache/package.json vendored Normal file
View file

@ -0,0 +1,21 @@
{
"name": "@stock-bot/cache",
"version": "1.0.0",
"description": "Caching library for Redis and in-memory providers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"dependencies": {
"ioredis": "^5.3.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"bun-types": "*"
}
}