Files
medusa-store/packages/modules/providers/notification-sendgrid/package.json
Oli Juhl 2bacf86d3c chore: Remove prepublishOnly script (#8699)
* 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>
2024-08-27 10:31:38 +02:00

42 lines
1017 B
JSON

{
"name": "@medusajs/notification-sendgrid",
"version": "0.0.1",
"description": "Sendgrid notification provider for Medusa",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa",
"directory": "packages/modules/providers/notification-sendgrid"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"author": "Medusa",
"license": "MIT",
"scripts": {
"test": "jest --passWithNoTests src",
"test:integration": "jest --forceExit -- integration-tests/**/__tests__/**/*.spec.ts",
"build": "rimraf dist && tsc --build ./tsconfig.json",
"watch": "tsc --watch"
},
"devDependencies": {
"@swc/core": "^1.5.29",
"@swc/jest": "^0.2.36",
"cross-env": "^5.2.1",
"jest": "^29.7.0",
"rimraf": "^5.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@medusajs/utils": "^1.11.9",
"@sendgrid/mail": "^8.1.3"
},
"keywords": [
"medusa-provider",
"medusa-provider-sendgrid"
]
}