-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.45 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
{
"name": "@sentry/webpack-plugin",
"version": "5.1.1",
"description": "Official Sentry Webpack plugin",
"repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
"homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/webpack-plugin",
"author": "Sentry",
"license": "MIT",
"keywords": [
"Sentry",
"Webpack",
"bundler",
"plugin"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./webpack5": {
"import": "./dist/esm/webpack5.mjs",
"require": "./dist/cjs/webpack5.js",
"types": "./dist/types/webpack5.d.ts"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "premove ./dist && run-p build:rollup build:types && run-s build:npm",
"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",
"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",
"build:npm": "npm pack",
"clean": "run-s clean:build",
"clean:all": "run-p clean clean:deps",
"clean:build": "premove ./dist *.tgz",
"clean:deps": "premove node_modules",
"test": "vitest run",
"lint": "eslint ./src ./test",
"prepack": "ts-node ./src/prepack.ts"
},
"dependencies": {
"@sentry/bundler-plugin-core": "5.1.1"
},
"devDependencies": {
"@sentry-internal/eslint-config": "5.1.1",
"@sentry-internal/sentry-bundler-plugin-tsconfig": "5.1.1",
"@types/node": "^18.6.3",
"@types/webpack": "npm:@types/webpack@^4",
"eslint": "^8.18.0",
"vitest": "^4.0.0",
"premove": "^4.0.0",
"rolldown": "1.0.0-rc.10",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "5.76.0"
},
"peerDependencies": {
"webpack": ">=5.0.0"
},
"volta": {
"extends": "../../package.json"
},
"engines": {
"node": ">= 18"
}
}