package.json 757 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "@vendure/payments-plugin",
  3. "version": "1.3.2",
  4. "license": "MIT",
  5. "main": "package/index.js",
  6. "types": "package/index.d.ts",
  7. "files": [
  8. "package/**/*"
  9. ],
  10. "private": false,
  11. "scripts": {
  12. "watch": "tsc -p ./tsconfig.build.json --watch",
  13. "build": "rimraf package && tsc -p ./tsconfig.build.json",
  14. "lint": "tslint --fix --project ./",
  15. "ci": "yarn build"
  16. },
  17. "homepage": "https://www.vendure.io/",
  18. "funding": "https://github.com/sponsors/michaelbromley",
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "devDependencies": {
  23. "@types/braintree": "^2.22.15",
  24. "@vendure/common": "^1.3.2",
  25. "@vendure/core": "^1.3.2",
  26. "braintree": "^3.0.0",
  27. "rimraf": "^3.0.2",
  28. "typescript": "4.3.5"
  29. }
  30. }