|
| 1 | +{ |
| 2 | + "name": "@sentry-internal/nitro-utils", |
| 3 | + "version": "8.42.0", |
| 4 | + "description": "Utilities for all Sentry SDKs with Nitro on the server-side", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/nitro-utils", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "MIT", |
| 9 | + "engines": { |
| 10 | + "node": ">=16.20" |
| 11 | + }, |
| 12 | + "files": [ |
| 13 | + "/build" |
| 14 | + ], |
| 15 | + "main": "build/cjs/index.js", |
| 16 | + "module": "build/esm/index.js", |
| 17 | + "types": "build/types/index.d.ts", |
| 18 | + "exports": { |
| 19 | + "./package.json": "./package.json", |
| 20 | + ".": { |
| 21 | + "import": { |
| 22 | + "types": "./build/types/index.d.ts", |
| 23 | + "default": "./build/esm/index.js" |
| 24 | + }, |
| 25 | + "require": { |
| 26 | + "types": "./build/types/index.d.ts", |
| 27 | + "default": "./build/cjs/index.js" |
| 28 | + } |
| 29 | + } |
| 30 | + }, |
| 31 | + "typesVersions": { |
| 32 | + "<4.9": { |
| 33 | + "build/types/index.d.ts": [ |
| 34 | + "build/types-ts3.8/index.d.ts" |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + "publishConfig": { |
| 39 | + "access": "public" |
| 40 | + }, |
| 41 | + "dependencies": { |
| 42 | + "@sentry/core": "8.42.0" |
| 43 | + }, |
| 44 | + "devDependencies": { |
| 45 | + "rollup": "^4.24.4" |
| 46 | + }, |
| 47 | + "scripts": { |
| 48 | + "build": "run-p build:transpile build:types", |
| 49 | + "build:dev": "yarn build", |
| 50 | + "build:transpile": "rollup -c rollup.npm.config.mjs", |
| 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": "run-p build:transpile:watch build:types:watch", |
| 56 | + "build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch", |
| 57 | + "build:types:watch": "tsc -p tsconfig.types.json --watch", |
| 58 | + "build:tarball": "npm pack", |
| 59 | + "clean": "rimraf build coverage sentry-internal-nitro-utils-*.tgz", |
| 60 | + "fix": "eslint . --format stylish --fix", |
| 61 | + "lint": "eslint . --format stylish", |
| 62 | + "test": "yarn test:unit", |
| 63 | + "test:unit": "vitest run", |
| 64 | + "test:watch": "vitest --watch", |
| 65 | + "yalc:publish": "yalc publish --push --sig" |
| 66 | + }, |
| 67 | + "volta": { |
| 68 | + "extends": "../../package.json" |
| 69 | + }, |
| 70 | + "sideEffects": false |
| 71 | +} |
0 commit comments