-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.1 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@sentry/bundler-plugin-core",
"version": "4.9.1",
"description": "Sentry Bundler Plugin Core",
"repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
"homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/bundler-plugin-core",
"author": "Sentry",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"sentry-release-injection-file.js",
"sentry-esbuild-debugid-injection-file.js"
],
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./sentry-release-injection-file": {
"import": "./sentry-release-injection-file.js",
"require": "./sentry-release-injection-file.js"
},
"./sentry-esbuild-debugid-injection-file": {
"import": "./sentry-esbuild-debugid-injection-file.js",
"require": "./sentry-esbuild-debugid-injection-file.js"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"scripts": {
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "premove ./out && run-p build:rollup build:types",
"build:watch": "run-p build:rollup:watch build:types:watch",
"build:rollup": "rolldown --config rollup.config.mjs",
"build:rollup:watch": "rolldown --config rollup.config.mjs --watch --no-watch.clearScreen",
"build:types": "tsc --project types.tsconfig.json",
"build:types:watch": "tsc --project types.tsconfig.json --watch --preserveWatchOutput",
"build:npm": "npm pack",
"check:types": "run-p check:types:src check:types:test",
"check:types:src": "tsc --project ./src/tsconfig.json --noEmit",
"check:types:test": "tsc --project ./test/tsconfig.json --noEmit",
"clean": "run-s clean:build",
"clean:all": "run-p clean clean:deps",
"clean:build": "premove ./dist *.tgz",
"clean:deps": "premove node_modules",
"pretest": "yarn prebuild",
"test": "jest",
"lint": "eslint ./src ./test",
"fix": "eslint ./src ./test --format stylish --fix"
},
"dependencies": {
"@babel/core": "^7.18.5",
"@sentry/babel-plugin-component-annotate": "4.9.1",
"@sentry/cli": "^2.57.0",
"dotenv": "^16.3.1",
"find-up": "^5.0.0",
"glob": "^13.0.6",
"magic-string": "0.30.8"
},
"devDependencies": {
"@sentry-internal/eslint-config": "4.9.1",
"@sentry-internal/sentry-bundler-plugin-tsconfig": "4.9.1",
"@sentry/core": "8.30.0",
"@sentry/types": "8.30.0",
"@sentry/utils": "8.30.0",
"@swc/core": "^1.2.205",
"@swc/jest": "^0.2.21",
"@types/jest": "^28.1.3",
"@types/node": "^18.6.3",
"eslint": "^8.18.0",
"jest": "^28.1.1",
"premove": "^4.0.0",
"rolldown": "^1.0.0-rc.4",
"typescript": "^4.7.4"
},
"volta": {
"extends": "../../package.json"
},
"engines": {
"node": ">= 14"
},
"sideEffects": [
"./sentry-release-injection-file.js",
"./sentry-esbuild-debugid-injection-file.js"
]
}