package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@vendure/email-plugin",
  3. "version": "3.4.4",
  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. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/vendure-ecommerce/vendure"
  15. },
  16. "scripts": {
  17. "watch": "tsc -p ./tsconfig.build.json --watch",
  18. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  19. "lint": "eslint --fix .",
  20. "test": "vitest --config vitest.config.mts --run"
  21. },
  22. "homepage": "https://www.vendure.io/",
  23. "funding": "https://github.com/sponsors/michaelbromley",
  24. "publishConfig": {
  25. "access": "public"
  26. },
  27. "dependencies": {
  28. "@types/nodemailer": "^6.4.9",
  29. "dateformat": "^3.0.3",
  30. "express": "^5.1.0",
  31. "fs-extra": "^11.2.0",
  32. "handlebars": "^4.7.8",
  33. "mjml": "^4.14.1",
  34. "nodemailer": "^6.9.4"
  35. },
  36. "devDependencies": {
  37. "@types/dateformat": "^3.0.1",
  38. "@types/express": "^5.0.1",
  39. "@types/fs-extra": "^11.0.4",
  40. "@types/mjml": "^4.7.4",
  41. "@vendure/common": "3.4.4",
  42. "@vendure/core": "3.4.4",
  43. "rimraf": "^5.0.5",
  44. "typescript": "5.8.2"
  45. }
  46. }