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{
"name": "scoped-rem",
"version": "0.2.0",
"description": "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",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest"
},
"engines": {},
"keywords": [
"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",
"dependencies": {
"postcss": "^8.5.6",
"postcss-value-parser": "^4.2.0",
"zod": "^4.1.11"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}