forked from maxdavidson/rollup-plugin-sourcemaps
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.71 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
{
"name": "rollup-plugin-sourcemaps2",
"version": "0.4.2",
"description": "Rollup plugin for grabbing source maps from sourceMappingURLs",
"author": "Kudakwashe Mupeni <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/2wce/rollup-plugin-sourcemaps2.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"release": "changeset publish",
"build": "rollup --config rollup.config.js",
"test": "vitest",
"prebuild": "rimraf dist && npm run lint:ci && npm run typecheck",
"postbuild": "node patch-paths.js",
"lint": "biome check --write .",
"lint:ci": "biome ci .",
"typecheck": "tsc",
"prepublishOnly": "npm run build",
"preversion": "npm run test"
},
"keywords": [
"rollup",
"rollup-plugin",
"sourcemap",
"source-map",
"sourceMappingURL"
],
"files": [
"dist"
],
"dependencies": {
"@rollup/pluginutils": "5.1.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.9",
"@rollup/plugin-swc": "0.4.0",
"@swc/core": "1.9.2",
"@types/node": "22.9.0",
"glob": "11.0.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.27.3",
"typescript": "5.6.3",
"vite": "5.4.11",
"vitest": "2.1.5"
},
"peerDependencies": {
"@types/node": ">=18.0.0",
"rollup": ">=4"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}