forked from maxdavidson/rollup-plugin-sourcemaps
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.84 KB
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
73
74
75
76
77
{
"name": "rollup-plugin-sourcemaps2",
"version": "0.5.7",
"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"
},
"packageManager": "pnpm@11.1.0",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/2wce/rollup-plugin-sourcemaps2.git"
},
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"release": "changeset publish",
"build": "rollup --config rollup.config.js",
"test": "vitest",
"prebuild": "rimraf dist tsconfig.tsbuildinfo && 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"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist"
],
"dependencies": {
"@rollup/pluginutils": "5.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@changesets/cli": "2.31.0",
"@rollup/plugin-swc": "0.4.0",
"@swc/core": "1.15.40",
"@types/node": "25.9.1",
"glob": "13.0.6",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"rollup": "4.60.4",
"typescript": "6.0.3",
"vite": "8.0.14",
"vitest": "4.1.7"
},
"peerDependencies": {
"@types/node": ">=18.0.0",
"rollup": ">=4"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}