This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
forked from clinggroup/vite-plugin-rollbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "vite-plugin-rollbar",
"version": "0.0.11",
"description": "A Vite plugin to upload sourcemaps to Rollbar after build.",
"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 <[email protected]>",
"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",
"form-data": "^4.0.0",
"node-fetch-native": "^0.1.4",
"verror": "^1.10.1"
},
"peerDependencies": {
"vite": "^2.6.0 || ^3.0.0"
}
}