package.json 731 B

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