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{
"name": "scoped-rem-loader",
"version": "0.1.3",
"description": "Webpack loader of scoped-rem, a tool that makes CSS rem units relative to a custom root font size.",
"type": "module",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest"
},
"keywords": [
"webpack",
"loader",
"webpack-loader",
"css",
"rem",
"scoped",
"transform",
"responsive"
],
"author": "situ2001 <yongcong2001@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/situ2001/scoped-rem.git"
},
"homepage": "https://github.com/situ2001/scoped-rem#readme",
"bugs": {
"url": "https://github.com/situ2001/scoped-rem/issues"
},
"packageManager": "pnpm@10.16.1",
"devDependencies": {
"@types/webpack": "^5.0.0",
"css-loader": "^7.1.2",
"style-loader": "^4.0.0",
"webpack": "^5.0.0"
},
"dependencies": {
"scoped-rem": "workspace:*"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}