{
  "name": "@sentry/webpack-plugin",
  "version": "5.2.0",
  "description": "Official Sentry Webpack plugin",
  "repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
  "homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/webpack-plugin",
  "author": "Sentry",
  "license": "MIT",
  "keywords": [
    "Sentry",
    "Webpack",
    "bundler",
    "plugin"
  ],
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "import": "./dist/esm/index.mjs",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    },
    "./webpack5": {
      "import": "./dist/esm/webpack5.mjs",
      "require": "./dist/cjs/webpack5.js",
      "types": "./dist/types/webpack5.d.ts"
    }
  },
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.mjs",
  "types": "dist/types/index.d.ts",
  "scripts": {
    "build": "premove ./dist && run-p build:rollup build:types && run-s build:npm",
    "build:watch": "run-p build:rollup:watch build:types:watch",
    "build:rollup": "rolldown --config rollup.config.mjs",
    "build:rollup:watch": "rolldown --config rollup.config.mjs --watch --no-watch.clearScreen",
    "build:types": "tsc --project types.tsconfig.json",
    "build:types:watch": "tsc --project types.tsconfig.json --watch --preserveWatchOutput",
    "check:types": "run-p check:types:src check:types:test",
    "check:types:src": "tsc --project ./src/tsconfig.json --noEmit",
    "check:types:test": "tsc --project ./test/tsconfig.json --noEmit",
    "build:npm": "npm pack",
    "clean": "run-s clean:build",
    "clean:all": "run-p clean clean:deps",
    "clean:build": "premove ./dist *.tgz",
    "clean:deps": "premove node_modules",
    "test": "vitest run",
    "lint": "eslint ./src ./test",
    "prepack": "ts-node ./src/prepack.ts"
  },
  "dependencies": {
    "@sentry/bundler-plugin-core": "5.2.0"
  },
  "devDependencies": {
    "@sentry-internal/eslint-config": "5.2.0",
    "@sentry-internal/sentry-bundler-plugin-tsconfig": "5.2.0",
    "@types/node": "^18.6.3",
    "@types/webpack": "npm:@types/webpack@^4",
    "eslint": "^8.18.0",
    "vitest": "^4.0.0",
    "premove": "^4.0.0",
    "rolldown": "1.0.0-rc.10",
    "ts-node": "^10.9.1",
    "typescript": "^4.7.4",
    "webpack": "5.76.0"
  },
  "peerDependencies": {
    "webpack": ">=5.0.0"
  },
  "volta": {
    "extends": "../../package.json"
  },
  "engines": {
    "node": ">= 18"
  }
}
