46 lines
983 B
JSON
46 lines
983 B
JSON
{
|
|
"name": "@medusajs/cache-redis",
|
|
"version": "2.8.0",
|
|
"description": "Redis Cache Module for Medusa",
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/modules/cache-redis"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/**/__tests__",
|
|
"!dist/**/__mocks__",
|
|
"!dist/**/__fixtures__"
|
|
],
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@medusajs/framework": "2.8.0",
|
|
"@swc/core": "^1.7.28",
|
|
"@swc/jest": "^0.2.36",
|
|
"jest": "^29.7.0",
|
|
"rimraf": "^5.0.1",
|
|
"typescript": "^5.6.2"
|
|
},
|
|
"scripts": {
|
|
"watch": "tsc --build --watch",
|
|
"build": "rimraf dist && tsc --build",
|
|
"test": "jest --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"ioredis": "^5.4.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@medusajs/framework": "2.8.0",
|
|
"awilix": "^8.0.1"
|
|
}
|
|
}
|