forked from maxdavidson/rollup-plugin-sourcemaps
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.72 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.3",
"description": "Rollup plugin for grabbing source maps from sourceMappingURLs",
"author": "Kudakwashe Mupeni <said.coyness-0m@icloud.com>",
"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.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.11",
"@rollup/plugin-swc": "0.4.0",
"@swc/core": "1.10.7",
"@types/node": "22.10.6",
"glob": "11.0.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"rollup": "4.30.1",
"typescript": "5.7.3",
"vite": "6.0.7",
"vitest": "2.1.8"
},
"peerDependencies": {
"@types/node": ">=18.0.0",
"rollup": ">=4"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}