Files
medusa-store/packages/modules/providers/caching-redis/package.json
2025-12-03 09:20:02 +01:00

45 lines
1.3 KiB
JSON

{
"name": "@medusajs/caching-redis",
"version": "2.12.1",
"description": "Redis Caching for Medusa",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa",
"directory": "packages/modules/providers/caching-redis"
},
"files": [
"dist",
"!dist/**/__tests__",
"!dist/**/__mocks__",
"!dist/**/__fixtures__"
],
"engines": {
"node": ">=20"
},
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "2.12.1"
},
"peerDependencies": {
"@medusajs/framework": "2.12.1"
},
"dependencies": {
"ioredis": "^5.4.1",
"xxhash-wasm": "^1.1.0"
},
"scripts": {
"watch": "yarn run -T tsc --build --watch",
"watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch",
"resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json",
"build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases",
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
"test:integration": "../../../../node_modules/.bin/jest --forceExit --passWithNoTests"
},
"keywords": [
"medusa-providers",
"medusa-providers-cache"
]
}