|
| 1 | +{ |
| 2 | + "name": "@sentry/nuxt", |
| 3 | + "version": "8.10.0", |
| 4 | + "description": "Official Sentry SDK for Nuxt (EXPERIMENTAL)", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/nuxt", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "MIT", |
| 9 | + "engines": { |
| 10 | + "node": ">=16" |
| 11 | + }, |
| 12 | + "files": [ |
| 13 | + "build" |
| 14 | + ], |
| 15 | + "main": "build/module.cjs", |
| 16 | + "module": "build/module.mjs", |
| 17 | + "types": "build/types.d.ts", |
| 18 | + "exports": { |
| 19 | + ".": { |
| 20 | + "types": "./build/types.d.ts", |
| 21 | + "import": "./build/module.mjs", |
| 22 | + "require": "./build/module.cjs" |
| 23 | + }, |
| 24 | + "./package.json": "./package.json" |
| 25 | + }, |
| 26 | + "publishConfig": { |
| 27 | + "access": "public" |
| 28 | + }, |
| 29 | + "peerDependencies": { |
| 30 | + "nuxt": "3.x" |
| 31 | + }, |
| 32 | + "dependencies": { |
| 33 | + "@sentry/core": "8.10.0", |
| 34 | + "@sentry/node": "8.10.0", |
| 35 | + "@sentry/opentelemetry": "8.10.0", |
| 36 | + "@sentry/types": "8.10.0", |
| 37 | + "@sentry/utils": "8.10.0", |
| 38 | + "@sentry/vite-plugin": "2.18.0", |
| 39 | + "@sentry/vue": "8.10.0", |
| 40 | + "@nuxt/kit": "^3.12.2" |
| 41 | + }, |
| 42 | + "devDependencies": { |
| 43 | + "@nuxt/module-builder": "0.8.0", |
| 44 | + "nuxt": "^3.12.2" |
| 45 | + }, |
| 46 | + "scripts": { |
| 47 | + "build": "run-p build:transpile", |
| 48 | + "build:dev": "yarn build", |
| 49 | + "build:transpile": "nuxt-module-build build --outDir build", |
| 50 | + "build:watch": "run-p build:transpile:watch build:types:watch", |
| 51 | + "build:dev:watch": "yarn build:watch", |
| 52 | + "build:transpile:watch": "nuxt-module-build build --outDir build --watch", |
| 53 | + "build:types:watch": "tsc -p tsconfig.types.json --watch", |
| 54 | + "build:tarball": "ts-node ../../scripts/prepack.ts && npm pack ./build", |
| 55 | + "circularDepCheck": "madge --circular src/index.client.ts && madge --circular src/index.server.ts && madge --circular src/index.types.ts", |
| 56 | + "clean": "rimraf build coverage sentry-nuxt-*.tgz", |
| 57 | + "fix": "eslint . --format stylish --fix", |
| 58 | + "lint": "eslint . --format stylish", |
| 59 | + "test": "yarn test:unit", |
| 60 | + "test:unit": "vitest run", |
| 61 | + "test:watch": "vitest --watch", |
| 62 | + "yalc:publish": "ts-node ../../scripts/prepack.ts && yalc publish build --push --sig" |
| 63 | + }, |
| 64 | + "volta": { |
| 65 | + "extends": "../../package.json" |
| 66 | + }, |
| 67 | + "nx": { |
| 68 | + "targets": { |
| 69 | + "build:transpile": { |
| 70 | + "dependsOn": [ |
| 71 | + "^build:transpile", |
| 72 | + "^build:types" |
| 73 | + ], |
| 74 | + "outputs": [ |
| 75 | + "{projectRoot}/build" |
| 76 | + ] |
| 77 | + } |
| 78 | + } |
| 79 | + } |
| 80 | +} |
0 commit comments