@visulima/packem-rollup 1.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/LICENSE.md +890 -0
- package/README.md +71 -0
- package/dist/index.d.mts +56 -0
- package/dist/index.d.ts +56 -0
- package/dist/index.mjs +1 -0
- package/dist/packem_shared/browserslist-to-esbuild-DY9HwYtp.d.mts +3 -0
- package/dist/packem_shared/browserslist-to-esbuild-DY9HwYtp.d.ts +3 -0
- package/dist/packem_shared/browserslistToEsbuild-C0IWmbNe.mjs +1 -0
- package/dist/packem_shared/cachingPlugin-D0BBFJPD.mjs +1 -0
- package/dist/packem_shared/chunkSplitter-DWAy1JkE.mjs +1 -0
- package/dist/packem_shared/cjsInteropPlugin-D5wyoQ_B.mjs +2 -0
- package/dist/packem_shared/copyPlugin--6RITp1-.mjs +1 -0
- package/dist/packem_shared/createSplitChunks-CGDk55G3.mjs +1 -0
- package/dist/packem_shared/esbuildPlugin-BAwyhG6L.mjs +1 -0
- package/dist/packem_shared/esmShimCjsSyntaxPlugin-DjKqX4DE.mjs +11 -0
- package/dist/packem_shared/fix-dts-default-cjs-exports-BQc0nwIG.mjs +26 -0
- package/dist/packem_shared/fixDtsDefaultCjsExportsPlugin-Dp1UcHVR.mjs +1 -0
- package/dist/packem_shared/fixDynamicImportExtension-BBGNRniz.mjs +1 -0
- package/dist/packem_shared/getCustomModuleLayer-d8i66lfh.mjs +1 -0
- package/dist/packem_shared/getModuleLayer-rF9RxnJ5.mjs +1 -0
- package/dist/packem_shared/index-Dq8IUFTs.mjs +1 -0
- package/dist/packem_shared/index-IiwweiIe.d.mts +4538 -0
- package/dist/packem_shared/index-IiwweiIe.d.ts +4538 -0
- package/dist/packem_shared/isolatedDeclarationsOxcTransformer-WbfE6cGu.mjs +1 -0
- package/dist/packem_shared/isolatedDeclarationsPlugin-BqP17nSP.mjs +3 -0
- package/dist/packem_shared/isolatedDeclarationsSwcTransformer-Ch2AgtWC.mjs +1 -0
- package/dist/packem_shared/isolatedDeclarationsTypescriptTransformer-DkuEkofo.mjs +3 -0
- package/dist/packem_shared/jsonPlugin-BAi3Da-h.mjs +1 -0
- package/dist/packem_shared/jsxRemoveAttributes-B1PLPffj.mjs +1 -0
- package/dist/packem_shared/licensePlugin-C5yzUqe-.mjs +13 -0
- package/dist/packem_shared/makeExecutable-6aOVHoJR.mjs +4 -0
- package/dist/packem_shared/metafilePlugin-ObS4J7mO.mjs +1 -0
- package/dist/packem_shared/oxcResolvePlugin-BJpi-eSG.mjs +1 -0
- package/dist/packem_shared/oxcTransformPlugin-DfVQouIB.mjs +4 -0
- package/dist/packem_shared/patchTypescriptTypes-BEdkvKxL.mjs +6 -0
- package/dist/packem_shared/preserveDirectivesPlugin-B49Cbykd.mjs +4 -0
- package/dist/packem_shared/rawPlugin-BqlR6ZOI.mjs +1 -0
- package/dist/packem_shared/resolveFileUrl-BkpjVHeK.mjs +1 -0
- package/dist/packem_shared/resolveTsconfigPathsPlugin-Crf4lzxq.mjs +1 -0
- package/dist/packem_shared/resolveTsconfigRootDirectoriesPlugin-_93afm2q.mjs +1 -0
- package/dist/packem_shared/resolveTypescriptMjsCtsPlugin-DcZrZTmM.mjs +1 -0
- package/dist/packem_shared/sourcemapsPlugin-B4W3J79w.mjs +1 -0
- package/dist/packem_shared/swcPlugin-Boip4lWG.mjs +1 -0
- package/dist/packem_shared/urlPlugin-DBgFIkTc.mjs +1 -0
- package/dist/plugins/esbuild/index.d.mts +24 -0
- package/dist/plugins/esbuild/index.d.ts +24 -0
- package/dist/plugins/esbuild/index.mjs +1 -0
- package/dist/plugins/oxc/index.d.mts +27 -0
- package/dist/plugins/oxc/index.d.ts +27 -0
- package/dist/plugins/oxc/index.mjs +1 -0
- package/dist/plugins/sucrase/index.d.mts +18 -0
- package/dist/plugins/sucrase/index.d.ts +18 -0
- package/dist/plugins/sucrase/index.mjs +1 -0
- package/dist/plugins/swc/index.d.mts +25 -0
- package/dist/plugins/swc/index.d.ts +25 -0
- package/dist/plugins/swc/index.mjs +1 -0
- package/dist/plugins/typescript/index.d.mts +28 -0
- package/dist/plugins/typescript/index.d.ts +28 -0
- package/dist/plugins/typescript/index.mjs +1 -0
- package/package.json +133 -0
package/package.json
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@visulima/packem-rollup",
|
|
3
|
+
"version": "1.0.0-alpha.1",
|
|
4
|
+
"description": "Rollup plugins for packem",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"visulima",
|
|
7
|
+
"packem-rollup"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/visulima/packem/tree/main/packages/packem-rollup",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/visulima/packem/issues"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/visulima/packem.git",
|
|
16
|
+
"directory": "packages/packem-rollup"
|
|
17
|
+
},
|
|
18
|
+
"funding": [
|
|
19
|
+
{
|
|
20
|
+
"type": "github",
|
|
21
|
+
"url": "https://github.com/sponsors/prisis"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "consulting",
|
|
25
|
+
"url": "https://anolilab.com/support"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"author": {
|
|
30
|
+
"name": "Daniel Bannert",
|
|
31
|
+
"email": "d.bannert@anolilab.de"
|
|
32
|
+
},
|
|
33
|
+
"sideEffects": false,
|
|
34
|
+
"type": "module",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.mts",
|
|
38
|
+
"default": "./dist/index.mjs"
|
|
39
|
+
},
|
|
40
|
+
"./esbuild": {
|
|
41
|
+
"types": "./dist/plugins/esbuild/index.d.mts",
|
|
42
|
+
"default": "./dist/plugins/esbuild/index.mjs"
|
|
43
|
+
},
|
|
44
|
+
"./swc": {
|
|
45
|
+
"types": "./dist/plugins/swc/index.d.mts",
|
|
46
|
+
"default": "./dist/plugins/swc/index.mjs"
|
|
47
|
+
},
|
|
48
|
+
"./typescript": {
|
|
49
|
+
"types": "./dist/plugins/typescript/index.d.mts",
|
|
50
|
+
"default": "./dist/plugins/typescript/index.mjs"
|
|
51
|
+
},
|
|
52
|
+
"./oxc": {
|
|
53
|
+
"types": "./dist/plugins/oxc/index.d.mts",
|
|
54
|
+
"default": "./dist/plugins/oxc/index.mjs"
|
|
55
|
+
},
|
|
56
|
+
"./sucrase": {
|
|
57
|
+
"types": "./dist/plugins/sucrase/index.d.mts",
|
|
58
|
+
"default": "./dist/plugins/sucrase/index.mjs"
|
|
59
|
+
},
|
|
60
|
+
"./package.json": "./package.json"
|
|
61
|
+
},
|
|
62
|
+
"files": [
|
|
63
|
+
"CHANGELOG.md",
|
|
64
|
+
"README.md",
|
|
65
|
+
"dist"
|
|
66
|
+
],
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@babel/parser": "7.28.0",
|
|
69
|
+
"@rollup/plugin-alias": "5.1.1",
|
|
70
|
+
"@rollup/plugin-commonjs": "28.0.6",
|
|
71
|
+
"@rollup/plugin-dynamic-import-vars": "2.1.5",
|
|
72
|
+
"@rollup/plugin-inject": "5.0.5",
|
|
73
|
+
"@rollup/plugin-json": "6.1.0",
|
|
74
|
+
"@rollup/plugin-node-resolve": "16.0.1",
|
|
75
|
+
"@rollup/plugin-replace": "6.0.2",
|
|
76
|
+
"@rollup/plugin-wasm": "6.2.2",
|
|
77
|
+
"@rollup/pluginutils": "5.2.0",
|
|
78
|
+
"@visulima/find-cache-dir": "1.0.31",
|
|
79
|
+
"@visulima/fs": "3.1.5",
|
|
80
|
+
"@visulima/package": "3.5.8",
|
|
81
|
+
"@visulima/packem-share": "1.0.0-alpha.1",
|
|
82
|
+
"@visulima/path": "1.4.0",
|
|
83
|
+
"@visulima/source-map": "1.0.20",
|
|
84
|
+
"es-module-lexer": "1.7.0",
|
|
85
|
+
"glob-parent": "6.0.2",
|
|
86
|
+
"magic-string": "0.30.17",
|
|
87
|
+
"mlly": "1.7.4",
|
|
88
|
+
"oxc-parser": "0.75.0",
|
|
89
|
+
"oxc-resolver": "11.3.0",
|
|
90
|
+
"rollup-plugin-dts": "6.2.1",
|
|
91
|
+
"rollup-plugin-license": "3.6.0",
|
|
92
|
+
"rollup-plugin-polyfill-node": "0.13.0",
|
|
93
|
+
"rollup-plugin-pure": "^0.4.0",
|
|
94
|
+
"rollup-plugin-visualizer": "6.0.3",
|
|
95
|
+
"semver": "7.7.2",
|
|
96
|
+
"tinyglobby": "0.2.14"
|
|
97
|
+
},
|
|
98
|
+
"peerDependencies": {
|
|
99
|
+
"@swc/core": "*",
|
|
100
|
+
"esbuild": "*",
|
|
101
|
+
"oxc-transform": "*",
|
|
102
|
+
"rollup": ">=4",
|
|
103
|
+
"sucrase": "*",
|
|
104
|
+
"typescript": "*"
|
|
105
|
+
},
|
|
106
|
+
"peerDependenciesMeta": {
|
|
107
|
+
"@swc/core": {
|
|
108
|
+
"optional": true
|
|
109
|
+
},
|
|
110
|
+
"esbuild": {
|
|
111
|
+
"optional": true
|
|
112
|
+
},
|
|
113
|
+
"oxc-transform": {
|
|
114
|
+
"optional": true
|
|
115
|
+
},
|
|
116
|
+
"p-queue": {
|
|
117
|
+
"optional": true
|
|
118
|
+
},
|
|
119
|
+
"sucrase": {
|
|
120
|
+
"optional": true
|
|
121
|
+
},
|
|
122
|
+
"typescript": {
|
|
123
|
+
"optional": true
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"engines": {
|
|
127
|
+
"node": ">=18.* <=24.*"
|
|
128
|
+
},
|
|
129
|
+
"publishConfig": {
|
|
130
|
+
"access": "public",
|
|
131
|
+
"provenance": true
|
|
132
|
+
}
|
|
133
|
+
}
|