|
| 1 | +{ |
| 2 | + "name": "@sentry/component-annotate-plugin", |
| 3 | + "version": "2.10.3", |
| 4 | + "description": "A Babel plugin that annotates frontend components with additional data to enrich the experience in Sentry", |
| 5 | + "repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git", |
| 6 | + "homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/component-annotate-plugin", |
| 7 | + "author": "Sentry", |
| 8 | + "license": "MIT", |
| 9 | + "keywords": [ |
| 10 | + "Sentry", |
| 11 | + "React", |
| 12 | + "bundler", |
| 13 | + "plugin", |
| 14 | + "babel", |
| 15 | + "component", |
| 16 | + "annotate" |
| 17 | + ], |
| 18 | + "publishConfig": { |
| 19 | + "access": "public" |
| 20 | + }, |
| 21 | + "files": [ |
| 22 | + "dist" |
| 23 | + ], |
| 24 | + "exports": { |
| 25 | + ".": { |
| 26 | + "import": "./dist/esm/index.mjs", |
| 27 | + "require": "./dist/cjs/index.js", |
| 28 | + "types": "./dist/types/index.d.ts" |
| 29 | + } |
| 30 | + }, |
| 31 | + "main": "dist/cjs/index.js", |
| 32 | + "module": "dist/esm/index.mjs", |
| 33 | + "types": "dist/types/index.d.ts", |
| 34 | + "scripts": { |
| 35 | + "build": "rimraf ./out && run-p build:rollup build:types", |
| 36 | + "build:watch": "run-p build:rollup:watch build:types:watch", |
| 37 | + "build:rollup": "rollup --config rollup.config.js", |
| 38 | + "build:rollup:watch": "rollup --config rollup.config.js --watch --no-watch.clearScreen", |
| 39 | + "build:types": "tsc --project types.tsconfig.json", |
| 40 | + "build:types:watch": "tsc --project types.tsconfig.json --watch --preserveWatchOutput", |
| 41 | + "build:npm": "npm pack", |
| 42 | + "check:types": "run-p check:types:src check:types:test", |
| 43 | + "check:types:src": "tsc --project ./src/tsconfig.json --noEmit", |
| 44 | + "check:types:test": "tsc --project ./test/tsconfig.json --noEmit", |
| 45 | + "clean": "run-s clean:build", |
| 46 | + "clean:all": "run-p clean clean:deps", |
| 47 | + "clean:build": "rimraf ./dist *.tgz", |
| 48 | + "clean:deps": "rimraf node_modules", |
| 49 | + "test": "jest", |
| 50 | + "lint": "eslint ./src ./test", |
| 51 | + "prepack": "ts-node ./src/prepack.ts" |
| 52 | + }, |
| 53 | + "dependencies": {}, |
| 54 | + "devDependencies": { |
| 55 | + "@babel/core": "7.18.5", |
| 56 | + "@babel/preset-env": "7.18.2", |
| 57 | + "@babel/preset-react": "^7.23.3", |
| 58 | + "@babel/preset-typescript": "7.17.12", |
| 59 | + "@rollup/plugin-babel": "5.3.1", |
| 60 | + "@rollup/plugin-node-resolve": "13.3.0", |
| 61 | + "@sentry-internal/eslint-config": "2.10.3", |
| 62 | + "@sentry-internal/sentry-bundler-plugin-tsconfig": "2.10.3", |
| 63 | + "@swc/core": "^1.2.205", |
| 64 | + "@swc/jest": "^0.2.21", |
| 65 | + "@types/jest": "^28.1.3", |
| 66 | + "@types/node": "^18.6.3", |
| 67 | + "@types/uuid": "^9.0.1", |
| 68 | + "eslint": "^8.18.0", |
| 69 | + "jest": "^28.1.1", |
| 70 | + "rimraf": "^3.0.2", |
| 71 | + "rollup": "2.75.7", |
| 72 | + "ts-node": "^10.9.1", |
| 73 | + "typescript": "^4.7.4" |
| 74 | + }, |
| 75 | + "volta": { |
| 76 | + "extends": "../../package.json" |
| 77 | + }, |
| 78 | + "engines": { |
| 79 | + "node": ">= 14" |
| 80 | + } |
| 81 | +} |
0 commit comments