This update includes version bumps for several dependencies across multiple packages and applications including "@sentry/nextjs", "lucide-react", "@types/node", "pnpm", and others. It also includes a change to the SentryProvider component where the SentryMonitoringService is now instantiated outside the MonitoringProvider function instead of using useRef inside the function.
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "@kit/sentry",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"clean": "git clean -xdf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"lint": "eslint .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"prettier": "@kit/prettier-config",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./provider": "./src/components/provider.tsx",
|
|
"./instrumentation": "./src/instrumentation.ts",
|
|
"./config/client": "./src/sentry.client.config.ts",
|
|
"./config/server": "./src/sentry.client.server.ts"
|
|
},
|
|
"dependencies": {
|
|
"@opentelemetry/exporter-jaeger": "1.24.1",
|
|
"@opentelemetry/resources": "1.24.1",
|
|
"@opentelemetry/sdk-node": "0.51.1",
|
|
"@opentelemetry/semantic-conventions": "^1.24.1",
|
|
"@sentry/nextjs": "^8.7.0",
|
|
"@sentry/opentelemetry-node": "^7.114.0"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/eslint-config": "workspace:*",
|
|
"@kit/monitoring-core": "workspace:*",
|
|
"@kit/prettier-config": "workspace:*",
|
|
"@kit/tailwind-config": "workspace:*",
|
|
"@kit/tsconfig": "workspace:*",
|
|
"@types/react": "^18.3.3",
|
|
"react": "18.3.1"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@kit/eslint-config/base",
|
|
"@kit/eslint-config/react"
|
|
]
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|