-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"version": "0.1.1",
"license": "MIT",
"name": "@rollup-extras/plugin-script-loader",
"author": "Konstantin Shutkin",
"type": "module",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./package.json": "./package.json"
},
"main": "./src/index.js",
"module": "./src/index.js",
"files": [
"src",
"types"
],
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kshutkin/rollup-extras.git",
"directory": "plugin-script-loader"
},
"bugs": "https://github.com/kshutkin/rollup-extras/issues",
"homepage": "https://github.com/kshutkin/rollup-extras/blob/main/plugin-script-loader/README.md",
"readme": "README.md",
"description": "Rollup plugin to mimic Webpack's script-loader inline behavior. Inlines raw scripts into the bundle in import order, enabling legacy library loading with stable ordering, terser optimization and concatenation.",
"keywords": [
"rollup-plugin",
"script-loader",
"legacy",
"inline",
"concatenation"
],
"scripts": {
"build": "dts-buddy",
"prepack": "pkgprn-internal --flatten types,src --strip-comments",
"test": "vitest run --coverage --config ../vitest.config.js",
"test:types": "tsc -p tsconfig.types.json"
},
"dependencies": {
"@ampproject/remapping": "^2.3.0",
"@niceties/logger": "^2.1.0",
"@rollup-extras/utils": "workspace:^",
"magic-string": "^0.30.21"
},
"peerDependencies": {
"rollup": "^4.0.0"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
}
}
}