package.json 854 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vendure/sentry-plugin",
  3. "version": "3.3.3",
  4. "license": "GPL-3.0-or-later",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/vendure-ecommerce/vendure"
  13. },
  14. "scripts": {
  15. "watch": "tsc -p ./tsconfig.build.json --watch",
  16. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  17. "lint": "eslint --fix ."
  18. },
  19. "homepage": "https://www.vendure.io",
  20. "funding": "https://github.com/sponsors/michaelbromley",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "peerDependencies": {
  25. "@sentry/node": "^7.106.1"
  26. },
  27. "devDependencies": {
  28. "@sentry/node": "^7.106.1",
  29. "@vendure/common": "3.3.3",
  30. "@vendure/core": "3.3.3"
  31. }
  32. }