package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@vendure/email-plugin",
  3. "version": "3.1.7",
  4. "license": "GPL-3.0-or-later",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*",
  9. "templates/**/*",
  10. "dev-mailbox.html"
  11. ],
  12. "scripts": {
  13. "watch": "tsc -p ./tsconfig.build.json --watch",
  14. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  15. "lint": "eslint --fix .",
  16. "test": "vitest --config vitest.config.mts --run"
  17. },
  18. "homepage": "https://www.vendure.io/",
  19. "funding": "https://github.com/sponsors/michaelbromley",
  20. "publishConfig": {
  21. "access": "public"
  22. },
  23. "dependencies": {
  24. "@types/nodemailer": "^6.4.9",
  25. "dateformat": "^3.0.3",
  26. "express": "^4.18.2",
  27. "fs-extra": "^11.2.0",
  28. "handlebars": "^4.7.8",
  29. "mjml": "^4.14.1",
  30. "nodemailer": "^6.9.4"
  31. },
  32. "devDependencies": {
  33. "@types/dateformat": "^3.0.1",
  34. "@types/express": "^4.17.21",
  35. "@types/fs-extra": "^11.0.4",
  36. "@types/mjml": "^4.7.4",
  37. "@vendure/common": "^3.1.7",
  38. "@vendure/core": "^3.1.7",
  39. "rimraf": "^5.0.5",
  40. "typescript": "5.3.3"
  41. }
  42. }