* wip * wip * verbose logging * remove prepublish scripts * chore: add back prepublish scripts * wip * remove prepublishOnly script * chore: Clean up rest of build scripts * add back build script * feedback --------- Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>
47 lines
1.0 KiB
JSON
47 lines
1.0 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": {
|
|
"test": "jest --passWithNoTests src",
|
|
"build": "rimraf dist && tsc --build ./tsconfig.json",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@medusajs/medusa": "^1.20.3",
|
|
"@types/stripe": "^8.0.417",
|
|
"cross-env": "^5.2.1",
|
|
"jest": "^29.7.0",
|
|
"rimraf": "^5.0.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"peerDependencies": {
|
|
"awilix": "^8.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/utils": "^1.11.9",
|
|
"body-parser": "^1.19.0",
|
|
"express": "^4.17.1",
|
|
"stripe": "latest"
|
|
},
|
|
"gitHead": "81a7ff73d012fda722f6e9ef0bd9ba0232d37808",
|
|
"keywords": [
|
|
"medusa-plugin",
|
|
"medusa-plugin-payment"
|
|
]
|
|
}
|