|
| 1 | +{ |
| 2 | + "name": "@sentry/node-experimental", |
| 3 | + "version": "7.60.0", |
| 4 | + "description": "Experimental version of a Node SDK using OpenTelemetry for performance instrumentation", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/node-experimental", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "MIT", |
| 9 | + "engines": { |
| 10 | + "node": ">=14" |
| 11 | + }, |
| 12 | + "main": "build/cjs/index.js", |
| 13 | + "module": "build/esm/index.js", |
| 14 | + "types": "build/types/index.d.ts", |
| 15 | + "typesVersions": { |
| 16 | + "<4.9": { |
| 17 | + "build/types/index.d.ts": [ |
| 18 | + "build/types-ts3.8/index.d.ts" |
| 19 | + ] |
| 20 | + } |
| 21 | + }, |
| 22 | + "publishConfig": { |
| 23 | + "access": "public" |
| 24 | + }, |
| 25 | + "dependencies": { |
| 26 | + "@opentelemetry/api": "~1.4.1", |
| 27 | + "@opentelemetry/instrumentation": "~0.41.0", |
| 28 | + "@opentelemetry/instrumentation-fastify": "~0.32.0", |
| 29 | + "@opentelemetry/instrumentation-http": "~0.41.0", |
| 30 | + "@opentelemetry/instrumentation-express": "~0.33.0", |
| 31 | + "@opentelemetry/instrumentation-graphql": "~0.35.0", |
| 32 | + "@opentelemetry/instrumentation-mongodb": "~0.36.0", |
| 33 | + "@opentelemetry/instrumentation-mongoose": "~0.33.0", |
| 34 | + "@opentelemetry/instrumentation-mysql": "~0.34.0", |
| 35 | + "@opentelemetry/instrumentation-mysql2": "~0.34.0", |
| 36 | + "@opentelemetry/instrumentation-pg": "~0.36.0", |
| 37 | + "@opentelemetry/instrumentation-nestjs-core": "~0.33.0", |
| 38 | + "@opentelemetry/semantic-conventions": "~1.15.0", |
| 39 | + "@opentelemetry/sdk-trace-node": "~1.15.0", |
| 40 | + "@prisma/instrumentation": "~5.0.0", |
| 41 | + "@sentry/core": "7.60.0", |
| 42 | + "@sentry/node": "7.60.0", |
| 43 | + "@sentry/opentelemetry-node": "7.60.0", |
| 44 | + "@sentry/types": "7.60.0", |
| 45 | + "@sentry/utils": "7.60.0" |
| 46 | + }, |
| 47 | + "scripts": { |
| 48 | + "build": "run-p build:transpile build:types", |
| 49 | + "build:dev": "yarn build", |
| 50 | + "build:transpile": "rollup -c rollup.npm.config.js", |
| 51 | + "build:types": "run-s build:types:core build:types:downlevel", |
| 52 | + "build:types:core": "tsc -p tsconfig.types.json", |
| 53 | + "build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8", |
| 54 | + "build:watch": "run-p build:transpile:watch build:types:watch", |
| 55 | + "build:dev:watch": "yarn build:watch", |
| 56 | + "build:transpile:watch": "rollup -c rollup.npm.config.js --watch", |
| 57 | + "build:types:watch": "tsc -p tsconfig.types.json --watch", |
| 58 | + "build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build", |
| 59 | + "circularDepCheck": "madge --circular src/index.ts", |
| 60 | + "clean": "rimraf build coverage sentry-node-experimental-*.tgz", |
| 61 | + "fix": "run-s fix:eslint fix:prettier", |
| 62 | + "fix:eslint": "eslint . --format stylish --fix", |
| 63 | + "fix:prettier": "prettier --write \"{src,test,scripts}/**/**.ts\"", |
| 64 | + "lint": "run-s lint:prettier lint:eslint", |
| 65 | + "lint:eslint": "eslint . --format stylish", |
| 66 | + "lint:prettier": "prettier --check \"{src,test,scripts}/**/**.ts\"", |
| 67 | + "test": "yarn test:jest", |
| 68 | + "test:jest": "jest", |
| 69 | + "test:watch": "jest --watch", |
| 70 | + "yalc:publish": "ts-node ../../scripts/prepack.ts && yalc publish build --push" |
| 71 | + }, |
| 72 | + "volta": { |
| 73 | + "extends": "../../package.json" |
| 74 | + }, |
| 75 | + "sideEffects": false |
| 76 | +} |
0 commit comments