forked from maxdavidson/rollup-plugin-sourcemaps
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2 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
78
79
80
81
{
"name": "rollup-plugin-sourcemaps2",
"version": "0.5.8",
"description": "Rollup plugin for grabbing source maps from sourceMappingURLs",
"author": "Kudakwashe Mupeni <said.coyness-0m@icloud.com>",
"license": "MIT",
"homepage": "https://github.com/2wce/rollup-plugin-sourcemaps2#readme",
"bugs": {
"url": "https://github.com/2wce/rollup-plugin-sourcemaps2/issues"
},
"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.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.10",
"@changesets/cli": "3.0.1",
"@rollup/plugin-swc": "0.4.1",
"@swc/core": "1.16.1",
"@types/node": "26.2.0",
"glob": "13.0.6",
"prettier": "3.9.6",
"rimraf": "6.1.3",
"rollup": "4.62.5",
"typescript": "7.0.2",
"vite": "8.2.2",
"vitest": "4.1.11"
},
"peerDependencies": {
"@types/node": ">=18.0.0",
"rollup": ">=4"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}