Skip to content

Commit 22a5b7e

Browse files
postcss-better-units-1.0.1 (#2396)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent cfc7747 commit 22a5b7e

File tree

1 file changed

+123
-0
lines changed

1 file changed

+123
-0
lines changed
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
{
2+
"name": "postcss-better-units",
3+
"type": "module",
4+
"version": "1.0.1",
5+
"description": "A PostCSS plugin to define, transform, and manage custom or existing CSS units with ease.",
6+
"author": {
7+
"name": "zumm",
8+
"email": "[email protected]",
9+
"url": "https://github.com/zumm"
10+
},
11+
"license": "MIT",
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/zumm/postcss-better-units.git"
15+
},
16+
"bugs": {
17+
"url": "https://github.com/zumm/postcss-better-units/issues"
18+
},
19+
"keywords": [
20+
"css",
21+
"postcss",
22+
"postcss-plugin",
23+
"units",
24+
"custom units"
25+
],
26+
"sideEffects": false,
27+
"exports": {
28+
".": {
29+
"import": {
30+
"types": "./dist/index.d.mts",
31+
"default": "./dist/index.mjs"
32+
},
33+
"require": {
34+
"types": "./dist/index.d.cts",
35+
"default": "./dist/index.cjs"
36+
}
37+
}
38+
},
39+
"main": "dist/index.cjs",
40+
"module": "dist/index.mjs",
41+
"types": "dist/index.d.ts",
42+
"typesVersions": {
43+
"*": {
44+
"*": [
45+
"./dist/*",
46+
"./*"
47+
]
48+
}
49+
},
50+
"engines": {
51+
"node": ">=22.0.0"
52+
},
53+
"peerDependencies": {
54+
"postcss": "^8.5.3"
55+
},
56+
"dependencies": {
57+
"postcss-value-parser": "^4.2.0"
58+
},
59+
"devDependencies": {
60+
"@anolilab/semantic-release-pnpm": "^1.1.10",
61+
"@antfu/eslint-config": "^4.4.0",
62+
"@commitlint/cli": "^19.7.1",
63+
"@commitlint/config-conventional": "^19.7.1",
64+
"@commitlint/types": "^19.5.0",
65+
"@dotenvx/dotenvx": "^1.38.4",
66+
"@semantic-release/changelog": "^6.0.3",
67+
"@semantic-release/commit-analyzer": "^13.0.1",
68+
"@semantic-release/release-notes-generator": "^14.0.3",
69+
"conventional-changelog-conventionalcommits": "^8.0.0",
70+
"eslint": "^9.21.0",
71+
"husky": "^9.1.7",
72+
"semantic-release": "^24.2.3",
73+
"typescript": "^5.8.2",
74+
"unbuild": "^3.5.0",
75+
"vitest": "^3.0.7"
76+
},
77+
"scripts": {
78+
"lint": "eslint .",
79+
"commitlint": "commitlint --edit",
80+
"typecheck": "tsc --noEmit",
81+
"build": "unbuild",
82+
"dev": "unbuild --stub",
83+
"test": "vitest run --bail 1",
84+
"release": "dotenvx run -- semantic-release"
85+
},
86+
87+
"homepage": "https://github.com/zumm/postcss-better-units#readme",
88+
"_integrity": "sha512-JQz/felFpucceeGTNP8ne2AJqJzp6l5Up8fm7+KuRRx8VG7XXs1xuQ786wcr2wcRmW4AwvnXRzjhftGRSL7T3w==",
89+
"_resolved": "/tmp/5b504bc4984c3007f41dd1119366af7a/postcss-better-units-1.0.1.tgz",
90+
"_from": "file:postcss-better-units-1.0.1.tgz",
91+
"_nodeVersion": "22.14.0",
92+
"_npmVersion": "10.9.2",
93+
"dist": {
94+
"integrity": "sha512-JQz/felFpucceeGTNP8ne2AJqJzp6l5Up8fm7+KuRRx8VG7XXs1xuQ786wcr2wcRmW4AwvnXRzjhftGRSL7T3w==",
95+
"shasum": "47b13f49696246d56e1147504dfce7bd6d587cf3",
96+
"tarball": "https://registry.npmjs.org/postcss-better-units/-/postcss-better-units-1.0.1.tgz",
97+
"fileCount": 8,
98+
"unpackedSize": 13854,
99+
"signatures": [
100+
{
101+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
102+
"sig": "MEUCIQD69negOjpTJrv7cbhxAC36MfAwIeKItlaLAu4OWg/wjgIgPaCrI1fQLoq02/kKvYMHjhn7q8jz7Sw9GxFCZOxoHAA="
103+
}
104+
]
105+
},
106+
"_npmUser": {
107+
"name": "zumm",
108+
"email": "[email protected]"
109+
},
110+
"directories": {},
111+
"maintainers": [
112+
{
113+
"name": "zumm",
114+
"email": "[email protected]"
115+
}
116+
],
117+
"_npmOperationalInternal": {
118+
"host": "s3://npm-registry-packages-npm-production",
119+
"tmp": "tmp/postcss-better-units_1.0.1_1741157665356_0.9746053202312261"
120+
},
121+
"_hasShrinkwrap": false,
122+
"_time": "2025-03-05T06:54:25.516Z"
123+
}

0 commit comments

Comments
 (0)