**What** Update the `MedusaService` class, factory and types to remove the concept of main modules. The idea being that all method will be explicitly named and suffixes to represent the object you are trying to manipulate. This pr also includes various fixes in different modules Co-authored-by: Stevche Radevski <4820812+sradevski@users.noreply.github.com> Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "@medusajs/event-bus-redis",
|
|
"version": "1.8.13",
|
|
"description": "Redis Event Bus Module for Medusa",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/event-bus-redis"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@medusajs/types": "^1.11.16",
|
|
"cross-env": "^5.2.1",
|
|
"jest": "^29.7.0",
|
|
"medusa-test-utils": "^1.1.44",
|
|
"rimraf": "^5.0.1",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"scripts": {
|
|
"watch": "tsc --build --watch",
|
|
"prepublishOnly": "cross-env NODE_ENV=production tsc --build",
|
|
"build": "rimraf dist && tsc --build",
|
|
"test": "jest --silent --bail --maxWorkers=50% --forceExit"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/modules-sdk": "^1.12.11",
|
|
"@medusajs/utils": "^1.11.9",
|
|
"awilix": "^8.0.0",
|
|
"bullmq": "^5.4.2",
|
|
"ioredis": "^5.2.5"
|
|
}
|
|
}
|