**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>
40 lines
894 B
JSON
40 lines
894 B
JSON
{
|
|
"name": "@medusajs/cache-inmemory",
|
|
"version": "1.8.10",
|
|
"description": "In-memory Cache Module for Medusa",
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/cache-inmemory"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@medusajs/types": "^1.11.6",
|
|
"cross-env": "^5.2.1",
|
|
"jest": "^29.7.0",
|
|
"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 --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/modules-sdk": "^1.12.3"
|
|
}
|
|
}
|