package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "3.5.2",
  4. "license": "GPL-3.0-or-later",
  5. "main": "package/index.js",
  6. "types": "package/index.d.ts",
  7. "files": [
  8. "package/**/*"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/vendurehq/vendure"
  13. },
  14. "private": false,
  15. "scripts": {
  16. "watch": "tsc -p ./tsconfig.build.json --watch",
  17. "build": "rimraf package && tsc -p ./tsconfig.build.json",
  18. "e2e": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
  19. "e2e:watch": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.mts",
  20. "lint": "eslint --fix .",
  21. "ci": "npm run build",
  22. "dev-server:mollie": "npm run build && DB=sqlite node -r ts-node/register e2e/mollie-dev-server.ts",
  23. "dev-server:stripe": "npm run build && DB=sqlite node -r ts-node/register e2e/stripe-dev-server.ts"
  24. },
  25. "homepage": "https://www.vendure.io/",
  26. "funding": "https://github.com/sponsors/michaelbromley",
  27. "publishConfig": {
  28. "access": "public"
  29. },
  30. "peerDependencies": {
  31. "@mollie/api-client": "4.x",
  32. "braintree": "3.x",
  33. "stripe": "13.x"
  34. },
  35. "dependencies": {
  36. "currency.js": "2.0.4"
  37. },
  38. "peerDependenciesMeta": {
  39. "@mollie/api-client": {
  40. "optional": true
  41. },
  42. "braintree": {
  43. "optional": true
  44. },
  45. "stripe": {
  46. "optional": true
  47. }
  48. },
  49. "devDependencies": {
  50. "@mollie/api-client": "^4.3.3",
  51. "@types/braintree": "^3.3.11",
  52. "@types/localtunnel": "2.0.4",
  53. "@vendure/common": "3.5.2",
  54. "@vendure/core": "3.5.2",
  55. "@vendure/testing": "3.5.2",
  56. "braintree": "^3.22.0",
  57. "localtunnel": "2.0.2",
  58. "nock": "^13.1.4",
  59. "rimraf": "^5.0.5",
  60. "stripe": "^13.3.0",
  61. "typescript": "5.8.2"
  62. }
  63. }