-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 2.63 KB
/
package.json
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "unplugin-sentry",
"type": "module",
"version": "1.1.2",
"packageManager": "[email protected]",
"description": "Sentry plugin for webpack, vite, rollup, nuxt .etc.",
"license": "MIT",
"homepage": "https://github.com/kricsleo/unplugin-sentry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kricsleo/unplugin-sentry.git"
},
"bugs": {
"url": "https://github.com/kricsleo/unplugin-sentry/issues"
},
"keywords": [
"unplugin",
"plugin",
"vite",
"webpack",
"rollup",
"nuxt",
"sentry",
"sourcemap"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./astro": {
"import": "./dist/astro.js",
"require": "./dist/astro.cjs"
},
"./rspack": {
"import": "./dist/rspack.js",
"require": "./dist/rspack.cjs"
},
"./vite": {
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./webpack": {
"import": "./dist/webpack.js",
"require": "./dist/webpack.cjs"
},
"./rollup": {
"import": "./dist/rollup.js",
"require": "./dist/rollup.cjs"
},
"./esbuild": {
"import": "./dist/esbuild.js",
"require": "./dist/esbuild.cjs"
},
"./nuxt": {
"import": "./dist/nuxt.js",
"require": "./dist/nuxt.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"release": "npm run lint:fix && bumpp && npm run build && npm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"@nuxt/kit": "^3",
"@nuxt/schema": "^3",
"esbuild": "*",
"rollup": "^3",
"vite": ">=3",
"webpack": "^4 || ^5"
},
"peerDependenciesMeta": {
"@nuxt/kit": {
"optional": true
},
"@nuxt/schema": {
"optional": true
},
"esbuild": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
},
"webpack": {
"optional": true
}
},
"dependencies": {
"@sentry/cli": "2.33.1",
"chalk": "4",
"rimraf": "^4.4.1",
"unplugin": "^1.12.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.25.1",
"@nuxt/kit": "^3.12.4",
"@nuxt/schema": "^3.12.4",
"@types/node": "^20.14.15",
"bumpp": "^9.4.2",
"eslint": "^9.9.0",
"rollup": "^4.20.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"webpack": "^5.93.0"
}
}