forked from clinggroup/vite-plugin-rollbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "vite-plugin-rollbar",
"version": "0.0.15",
"description": "A Vite plugin to upload sourcemaps to Rollbar after build.",
"type": "module",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"exports": {
".": {
"require": "./cjs/index.js",
"default": "./esm/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production rollup -c",
"release": "npx bumpp --push --tag --commit && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/clinggroup/vite-plugin-rollbar"
},
"keywords": [
"vite",
"plugin",
"vite-plugin",
"source",
"map",
"sourcemap",
"sourcemaps",
"production"
],
"author": "rang-ali <rang@docspo.com>",
"bugs": {
"url": "https://github.com/clinggroup/vite-plugin-rollbar/issues"
},
"homepage": "https://github.com/clinggroup/vite-plugin-rollbar#readme",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-eslint": "^8.0.2",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"rollup": "^2.77.2",
"rollup-plugin-auto-external": "^2.0.0"
},
"dependencies": {
"fast-glob": "^3.2.11",
"verror": "^1.10.1"
},
"peerDependencies": {
"vite": ">=2.6.0"
}
}