-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "vite-plugin-rollbar-sourcemap",
"description": "This is a Vite plugin for uploading Vite-generated Sourcemaps to Rolbar.",
"author": "madogiwa0124 <[email protected]>",
"repository": "madogiwa0124/vite-plugin-rollbar-sourcemap",
"keywords": ["rollbar", "sourcemap", "vite-plugin"],
"license": "MIT",
"version": "0.0.6",
"type": "module",
"files": ["dist"],
"main": "dist/index.umd.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.esm.js",
"require": "./dist/index.umd.cjs",
"default": "./dist/index.esm.js"
}
},
"scripts": {
"build": "rollup --config",
"lint": "biome check",
"typecheck": "tsc --noEmit",
"format": "biome format --write && biome check --write",
"test": "vitest"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"rollup": "^4.29.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vitest": "^2.1.8"
},
"peerDependencies": {
"vite": "^6.0.0"
},
"packageManager": "[email protected]"
}