**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>
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@medusajs/payment-stripe",
|
|
"version": "0.0.2",
|
|
"description": "Stripe payment provider for Medusa",
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/payment-stripe"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prepublishOnly": "cross-env NODE_ENV=production tsc --build",
|
|
"test": "jest --passWithNoTests src",
|
|
"build": "rimraf dist && tsc -p ./tsconfig.json",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@medusajs/medusa": "^1.20.3",
|
|
"@types/stripe": "^8.0.417",
|
|
"awilix": "^8.0.1",
|
|
"cross-env": "^5.2.1",
|
|
"jest": "^29.7.0",
|
|
"rimraf": "^5.0.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@medusajs/medusa": "^1.12.0"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/utils": "^1.11.7",
|
|
"body-parser": "^1.19.0",
|
|
"express": "^4.17.1",
|
|
"stripe": "latest"
|
|
},
|
|
"gitHead": "81a7ff73d012fda722f6e9ef0bd9ba0232d37808",
|
|
"keywords": [
|
|
"medusa-plugin",
|
|
"medusa-plugin-payment"
|
|
]
|
|
}
|