package.json 1.1 KB

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