Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
132 lines
4.3 KiB
Plaintext
132 lines
4.3 KiB
Plaintext
{
|
|
"name": "@sentry/nextjs",
|
|
"version": "10.39.0",
|
|
"description": "Official Sentry SDK for Next.js",
|
|
"repository": "git://github.com/getsentry/sentry-javascript.git",
|
|
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/nextjs",
|
|
"author": "Sentry",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"main": "build/cjs/index.server.js",
|
|
"module": "build/esm/index.server.js",
|
|
"types": "build/types/index.types.d.ts",
|
|
"files": [
|
|
"/build"
|
|
],
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"types": "./build/types/index.types.d.ts",
|
|
"edge": {
|
|
"import": "./build/esm/edge/index.js",
|
|
"require": "./build/cjs/edge/index.js",
|
|
"default": "./build/esm/edge/index.js"
|
|
},
|
|
"edge-light": {
|
|
"import": "./build/esm/edge/index.js",
|
|
"require": "./build/cjs/edge/index.js",
|
|
"default": "./build/esm/edge/index.js"
|
|
},
|
|
"worker": {
|
|
"import": "./build/esm/edge/index.js",
|
|
"require": "./build/cjs/edge/index.js",
|
|
"default": "./build/esm/edge/index.js"
|
|
},
|
|
"workerd": {
|
|
"import": "./build/esm/edge/index.js",
|
|
"require": "./build/cjs/edge/index.js",
|
|
"default": "./build/esm/edge/index.js"
|
|
},
|
|
"browser": {
|
|
"import": "./build/esm/index.client.js",
|
|
"require": "./build/cjs/index.client.js"
|
|
},
|
|
"node": "./build/cjs/index.server.js",
|
|
"import": "./build/esm/index.server.js"
|
|
},
|
|
"./async-storage-shim": {
|
|
"import": {
|
|
"default": "./build/esm/config/templates/requestAsyncStorageShim.js"
|
|
},
|
|
"require": {
|
|
"default": "./build/cjs/config/templates/requestAsyncStorageShim.js"
|
|
}
|
|
},
|
|
"./import": {
|
|
"import": {
|
|
"default": "./build/import-hook.mjs"
|
|
}
|
|
},
|
|
"./loader": {
|
|
"import": {
|
|
"default": "./build/loader-hook.mjs"
|
|
}
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"<5.0": {
|
|
"build/npm/types/index.d.ts": [
|
|
"build/npm/types-ts3.8/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@opentelemetry/api": "^1.9.0",
|
|
"@opentelemetry/semantic-conventions": "^1.37.0",
|
|
"@rollup/plugin-commonjs": "28.0.1",
|
|
"@sentry-internal/browser-utils": "10.39.0",
|
|
"@sentry/bundler-plugin-core": "^4.9.0",
|
|
"@sentry/core": "10.39.0",
|
|
"@sentry/node": "10.39.0",
|
|
"@sentry/opentelemetry": "10.39.0",
|
|
"@sentry/react": "10.39.0",
|
|
"@sentry/vercel-edge": "10.39.0",
|
|
"@sentry/webpack-plugin": "^4.8.0",
|
|
"rollup": "^4.35.0",
|
|
"stacktrace-parser": "^0.1.10"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-plugin-react": "^7.31.11",
|
|
"next": "14.2.35",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"peerDependencies": {
|
|
"next": "^13.2.0 || ^14.0 || ^15.0.0-rc.0 || ^16.0.0-0"
|
|
},
|
|
"scripts": {
|
|
"build": "run-p build:transpile build:types",
|
|
"build:dev": "yarn build",
|
|
"build:transpile": "ts-node scripts/buildRollup.ts",
|
|
"build:types": "run-s build:types:core build:types:downlevel",
|
|
"build:types:core": "tsc -p tsconfig.types.json",
|
|
"build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8",
|
|
"build:watch": "run-p build:transpile:watch build:types:watch",
|
|
"build:dev:watch": "yarn build:watch",
|
|
"build:transpile:watch": "nodemon --ext ts --watch src scripts/buildRollup.ts",
|
|
"build:types:watch": "tsc -p tsconfig.types.json --watch",
|
|
"build:tarball": "npm pack",
|
|
"circularDepCheck": "madge --circular src/index.client.ts && madge --circular src/edge/index.ts && madge --circular src/index.server.ts && madge --circular src/index.types.ts",
|
|
"clean": "rimraf build coverage sentry-nextjs-*.tgz",
|
|
"fix": "eslint . --format stylish --fix",
|
|
"lint": "eslint . --format stylish",
|
|
"lint:es-compatibility": "es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module",
|
|
"test": "yarn test:unit",
|
|
"test:all": "run-s test:unit",
|
|
"test:unit": "vitest run",
|
|
"test:watch": "vitest --watch",
|
|
"vercel:branch": "source vercel/set-up-branch-for-test-app-use.sh",
|
|
"vercel:project": "source vercel/make-project-use-current-branch.sh",
|
|
"yalc:publish": "yalc publish --push --sig"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
},
|
|
"sideEffects": false
|
|
}
|