@sentry/vite-plugin
Version:
64 lines (63 loc) • 1.96 kB
JSON
{
"name": "@sentry/vite-plugin",
"version": "5.4.0",
"description": "Official Sentry Vite plugin",
"repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
"homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/vite-plugin",
"author": "Sentry",
"license": "MIT",
"keywords": [
"Sentry",
"Vite",
"bundler",
"plugin"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "premove ./out && 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",
"build:npm": "npm pack",
"check:types": "run-p check:types:src check:types:test",
"check:types:src": "tsc --project ./tsconfig.json --noEmit",
"check:types:test": "tsc --project ./test/tsconfig.json --noEmit",
"clean": "run-s clean:build",
"clean:all": "run-p clean clean:deps",
"clean:build": "premove ./dist *.tgz",
"clean:deps": "premove node_modules",
"prepack": "node ./prepack.mjs"
},
"dependencies": {
"@sentry/bundler-plugins": "^10.64.0"
},
"devDependencies": {
"@sentry-internal/dev-utils": "5.4.0",
"@types/node": "^18.6.3",
"premove": "^4.0.0",
"rolldown": "^1.0.0"
},
"volta": {
"extends": "../../package.json"
},
"engines": {
"node": ">= 18"
}
}