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
145 lines
4.2 KiB
Plaintext
145 lines
4.2 KiB
Plaintext
{
|
|
"name": "@sentry/node-core",
|
|
"version": "10.39.0",
|
|
"description": "Sentry Node-Core SDK",
|
|
"repository": "git://github.com/getsentry/sentry-javascript.git",
|
|
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/node-core",
|
|
"author": "Sentry",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"files": [
|
|
"/build"
|
|
],
|
|
"main": "build/cjs/index.js",
|
|
"module": "build/esm/index.js",
|
|
"types": "build/types/index.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./build/types/index.d.ts",
|
|
"default": "./build/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./build/types/index.d.ts",
|
|
"default": "./build/cjs/index.js"
|
|
}
|
|
},
|
|
"./light": {
|
|
"import": {
|
|
"types": "./build/types/light/index.d.ts",
|
|
"default": "./build/esm/light/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./build/types/light/index.d.ts",
|
|
"default": "./build/cjs/light/index.js"
|
|
}
|
|
},
|
|
"./import": {
|
|
"import": {
|
|
"default": "./build/import-hook.mjs"
|
|
}
|
|
},
|
|
"./loader": {
|
|
"import": {
|
|
"default": "./build/loader-hook.mjs"
|
|
}
|
|
},
|
|
"./init": {
|
|
"import": {
|
|
"default": "./build/esm/init.js"
|
|
},
|
|
"require": {
|
|
"default": "./build/cjs/init.js"
|
|
}
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"<5.0": {
|
|
"build/types/index.d.ts": [
|
|
"build/types-ts3.8/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"peerDependencies": {
|
|
"@opentelemetry/api": "^1.9.0",
|
|
"@opentelemetry/context-async-hooks": "^1.30.1 || ^2.1.0",
|
|
"@opentelemetry/core": "^1.30.1 || ^2.1.0",
|
|
"@opentelemetry/instrumentation": ">=0.57.1 <1",
|
|
"@opentelemetry/resources": "^1.30.1 || ^2.1.0",
|
|
"@opentelemetry/sdk-trace-base": "^1.30.1 || ^2.1.0",
|
|
"@opentelemetry/semantic-conventions": "^1.39.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@opentelemetry/api": {
|
|
"optional": true
|
|
},
|
|
"@opentelemetry/context-async-hooks": {
|
|
"optional": true
|
|
},
|
|
"@opentelemetry/core": {
|
|
"optional": true
|
|
},
|
|
"@opentelemetry/instrumentation": {
|
|
"optional": true
|
|
},
|
|
"@opentelemetry/resources": {
|
|
"optional": true
|
|
},
|
|
"@opentelemetry/sdk-trace-base": {
|
|
"optional": true
|
|
},
|
|
"@opentelemetry/semantic-conventions": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@apm-js-collab/tracing-hooks": "^0.3.1",
|
|
"@sentry/core": "10.39.0",
|
|
"@sentry/opentelemetry": "10.39.0",
|
|
"import-in-the-middle": "^2.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@apm-js-collab/code-transformer": "^0.8.2",
|
|
"@opentelemetry/api": "^1.9.0",
|
|
"@opentelemetry/context-async-hooks": "^2.5.0",
|
|
"@opentelemetry/core": "^2.5.0",
|
|
"@opentelemetry/instrumentation": "^0.211.0",
|
|
"@opentelemetry/resources": "^2.5.0",
|
|
"@opentelemetry/sdk-trace-base": "^2.5.0",
|
|
"@opentelemetry/semantic-conventions": "^1.39.0",
|
|
"@types/node": "^18.19.1"
|
|
},
|
|
"scripts": {
|
|
"build": "run-p build:transpile build:types",
|
|
"build:dev": "yarn build",
|
|
"build:transpile": "rollup -c rollup.npm.config.mjs",
|
|
"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": "rollup -c rollup.npm.config.mjs --watch",
|
|
"build:types:watch": "tsc -p tsconfig.types.json --watch",
|
|
"build:tarball": "npm pack",
|
|
"circularDepCheck": "madge --circular src/index.ts",
|
|
"clean": "rimraf build coverage sentry-node-*.tgz",
|
|
"fix": "eslint . --format stylish --fix",
|
|
"lint": "eslint . --format stylish",
|
|
"lint:es-compatibility": "es-check es2022 ./build/cjs/*.js && es-check es2022 ./build/esm/*.js --module",
|
|
"test": "yarn test:unit",
|
|
"test:unit": "vitest run",
|
|
"test:watch": "vitest --watch",
|
|
"yalc:publish": "yalc publish --push --sig"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
},
|
|
"sideEffects": false
|
|
}
|