package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@vendure/email-plugin",
  3. "version": "2.2.0-next.4",
  4. "license": "MIT",
  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.ts --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.1.1",
  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.8",
  35. "@types/fs-extra": "^9.0.1",
  36. "@types/handlebars": "^4.1.0",
  37. "@types/mjml": "^4.0.4",
  38. "@vendure/common": "2.2.0-next.4",
  39. "@vendure/core": "2.2.0-next.4",
  40. "rimraf": "^3.0.2",
  41. "typescript": "5.1.6"
  42. }
  43. }