|
| 1 | +{ |
| 2 | + "name": "@sentry/bundler-plugins", |
| 3 | + "version": "5.3.0", |
| 4 | + "description": "Sentry Bundler Plugins", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/bundler-plugins", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "MIT", |
| 9 | + "publishConfig": { |
| 10 | + "access": "public" |
| 11 | + }, |
| 12 | + "files": [ |
| 13 | + "dist", |
| 14 | + "sentry-release-injection-file.js", |
| 15 | + "sentry-esbuild-debugid-injection-file.js" |
| 16 | + ], |
| 17 | + "exports": { |
| 18 | + "./webpack": { |
| 19 | + "types": "./dist/types/webpack/index.d.ts", |
| 20 | + "import": "./dist/esm/webpack/index.mjs", |
| 21 | + "require": "./dist/cjs/webpack/index.js" |
| 22 | + }, |
| 23 | + "./webpack5": { |
| 24 | + "types": "./dist/types/webpack/webpack5.d.ts", |
| 25 | + "import": "./dist/esm/webpack/webpack5.mjs", |
| 26 | + "require": "./dist/cjs/webpack/webpack5.js" |
| 27 | + }, |
| 28 | + "./rollup": { |
| 29 | + "types": "./dist/types/rollup/index.d.ts", |
| 30 | + "import": "./dist/esm/rollup/index.mjs", |
| 31 | + "require": "./dist/cjs/rollup/index.js" |
| 32 | + }, |
| 33 | + "./vite": { |
| 34 | + "types": "./dist/types/vite/index.d.ts", |
| 35 | + "import": "./dist/esm/vite/index.mjs", |
| 36 | + "require": "./dist/cjs/vite/index.js" |
| 37 | + }, |
| 38 | + "./esbuild": { |
| 39 | + "types": "./dist/types/esbuild/index.d.ts", |
| 40 | + "import": "./dist/esm/esbuild/index.mjs", |
| 41 | + "require": "./dist/cjs/esbuild/index.js" |
| 42 | + }, |
| 43 | + "./core": { |
| 44 | + "types": "./dist/types/core/index.d.ts", |
| 45 | + "import": "./dist/esm/core/index.mjs", |
| 46 | + "require": "./dist/cjs/core/index.js" |
| 47 | + }, |
| 48 | + "./babel-plugin": { |
| 49 | + "types": "./dist/types/babel-plugin/index.d.ts", |
| 50 | + "import": "./dist/esm/babel-plugin/index.mjs", |
| 51 | + "require": "./dist/cjs/babel-plugin/index.js" |
| 52 | + }, |
| 53 | + "./sentry-release-injection-file": { |
| 54 | + "import": "./sentry-release-injection-file.js", |
| 55 | + "require": "./sentry-release-injection-file.js" |
| 56 | + }, |
| 57 | + "./sentry-esbuild-debugid-injection-file": { |
| 58 | + "import": "./sentry-esbuild-debugid-injection-file.js", |
| 59 | + "require": "./sentry-esbuild-debugid-injection-file.js" |
| 60 | + }, |
| 61 | + "./webpack-loader": { |
| 62 | + "require": "./dist/cjs/webpack/component-annotation-transform.js" |
| 63 | + } |
| 64 | + }, |
| 65 | + "scripts": { |
| 66 | + "prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/core/version.ts", |
| 67 | + "build": "premove ./dist && run-p build:rollup build:types && run-s build:npm", |
| 68 | + "build:watch": "run-p build:rollup:watch build:types:watch", |
| 69 | + "build:rollup": "rolldown --config rollup.config.mjs", |
| 70 | + "build:rollup:watch": "rolldown --config rollup.config.mjs --watch --no-watch.clearScreen", |
| 71 | + "build:types": "tsc --project types.tsconfig.json", |
| 72 | + "build:types:watch": "tsc --project types.tsconfig.json --watch --preserveWatchOutput", |
| 73 | + "build:npm": "npm pack", |
| 74 | + "check:types": "run-p check:types:src check:types:test", |
| 75 | + "check:types:src": "tsc --project ./tsconfig.json --noEmit", |
| 76 | + "check:types:test": "tsc --project ./test/tsconfig.json --noEmit", |
| 77 | + "clean": "run-s clean:build", |
| 78 | + "clean:all": "run-p clean clean:deps", |
| 79 | + "clean:build": "premove ./dist *.tgz", |
| 80 | + "clean:deps": "premove node_modules", |
| 81 | + "pretest": "yarn prebuild", |
| 82 | + "test": "vitest run" |
| 83 | + }, |
| 84 | + "dependencies": { |
| 85 | + "@babel/core": "^7.18.5", |
| 86 | + "@sentry/cli": "^2.58.6", |
| 87 | + "dotenv": "^16.3.1", |
| 88 | + "find-up": "^5.0.0", |
| 89 | + "glob": "^13.0.6", |
| 90 | + "magic-string": "~0.30.8" |
| 91 | + }, |
| 92 | + "peerDependencies": { |
| 93 | + "rollup": ">=3.2.0", |
| 94 | + "webpack": ">=5.0.0" |
| 95 | + }, |
| 96 | + "peerDependenciesMeta": { |
| 97 | + "rollup": { |
| 98 | + "optional": true |
| 99 | + }, |
| 100 | + "webpack": { |
| 101 | + "optional": true |
| 102 | + } |
| 103 | + }, |
| 104 | + "devDependencies": { |
| 105 | + "@babel/preset-react": "^7.23.3", |
| 106 | + "@sentry/core": "10.56.0", |
| 107 | + "@sentry/types": "10.56.0", |
| 108 | + "@sentry-internal/dev-utils": "5.3.0", |
| 109 | + "@types/babel__core": "^7.20.5", |
| 110 | + "@types/node": "^18.6.3", |
| 111 | + "@types/webpack": "npm:@types/webpack@^4", |
| 112 | + "premove": "^4.0.0", |
| 113 | + "rolldown": "^1.0.0", |
| 114 | + "vitest": "^4.0.0", |
| 115 | + "webpack": "5.76.0" |
| 116 | + }, |
| 117 | + "volta": { |
| 118 | + "extends": "../../package.json" |
| 119 | + }, |
| 120 | + "engines": { |
| 121 | + "node": ">= 18" |
| 122 | + }, |
| 123 | + "sideEffects": [ |
| 124 | + "./sentry-release-injection-file.js", |
| 125 | + "./sentry-esbuild-debugid-injection-file.js" |
| 126 | + ] |
| 127 | +} |
0 commit comments