Skip to content

Commit 7d665bf

Browse files
collect plugins data
1 parent 55f3fcb commit 7d665bf

File tree

206 files changed

+3450
-2559
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+3450
-2559
lines changed
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
{
2+
"name": "tailwind-postcss-spacing",
3+
"version": "1.0.2",
4+
"description": "PostCSS plugin for scalable design systems - converts px/rem to calc() expressions with CSS custom properties. Perfect for Tailwind CSS projects requiring dynamic spacing control.",
5+
"main": "./dist/index.cjs",
6+
"module": "./dist/index.mjs",
7+
"type": "module",
8+
"exports": {
9+
".": {
10+
"import": "./dist/index.mjs",
11+
"require": "./dist/index.cjs",
12+
"default": "./dist/index.mjs"
13+
},
14+
"./package.json": "./package.json"
15+
},
16+
"scripts": {
17+
"build": "rollup -c",
18+
"prebuild": "rm -rf dist",
19+
"prepublishOnly": "npm run build && npm test",
20+
"test": "jest",
21+
"test:watch": "jest --watch",
22+
"lint": "eslint .",
23+
"lint:fix": "eslint . --fix"
24+
},
25+
"keywords": [
26+
"postcss",
27+
"postcss-plugin",
28+
"tailwind",
29+
"tailwindcss",
30+
"css",
31+
"css-variables",
32+
"custom-properties",
33+
"px",
34+
"rem",
35+
"spacing",
36+
"calc",
37+
"design-system",
38+
"responsive",
39+
"scalable",
40+
"transform",
41+
"conversion",
42+
"utility"
43+
],
44+
"author": "",
45+
"license": "MIT",
46+
"engines": {
47+
"node": ">=14.0.0"
48+
},
49+
"peerDependencies": {
50+
"postcss": "^8.0.0"
51+
},
52+
"dependencies": {
53+
"postcss-value-parser": "^4.2.0"
54+
},
55+
"devDependencies": {
56+
"@babel/core": "^7.28.4",
57+
"@babel/preset-env": "^7.28.3",
58+
"@rollup/plugin-node-resolve": "^16.0.3",
59+
"eslint": "^8.53.0",
60+
"jest": "^29.7.0",
61+
"postcss": "^8.4.31",
62+
"rollup": "^4.52.4"
63+
},
64+
"repository": {
65+
"type": "git",
66+
"url": "git+https://github.com/Damon4/tailwind-postcss-spacing.git"
67+
},
68+
"bugs": {
69+
"url": "https://github.com/Damon4/tailwind-postcss-spacing/issues"
70+
},
71+
"homepage": "https://github.com/Damon4/tailwind-postcss-spacing#readme",
72+
73+
"gitHead": "1aeac3bd6e7fb226ece24e87d83c86d598a9d1d9",
74+
"_nodeVersion": "22.19.0",
75+
"_npmVersion": "10.9.3",
76+
"dist": {
77+
"integrity": "sha512-WcuhL97ywLG5KJz9CP/SxEt1ra9oo/DOK/zKPXjR6q9DpnenFgOd4kuk/IG+0tXghbIXHs9dT1sJhzKyxxa+jQ==",
78+
"shasum": "cf8649d215a0f27a76c81b5733e9a1a7c9a238cd",
79+
"tarball": "https://registry.npmjs.org/tailwind-postcss-spacing/-/tailwind-postcss-spacing-1.0.2.tgz",
80+
"fileCount": 7,
81+
"unpackedSize": 18961,
82+
"signatures": [
83+
{
84+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
85+
"sig": "MEQCIB+imLduTGkaU0aXKKT+RWIa1nTNU9z1AqCD0EdJAoY0AiBvPc8ZJ+YSy1iymSRMbE842QJWkG/Yrm3am8m9nrcbFQ=="
86+
}
87+
]
88+
},
89+
"_npmUser": {
90+
"name": "demian_dark",
91+
"email": "[email protected]"
92+
},
93+
"directories": {},
94+
"maintainers": [
95+
{
96+
"name": "demian_dark",
97+
"email": "[email protected]"
98+
}
99+
],
100+
"_npmOperationalInternal": {
101+
"host": "s3://npm-registry-packages-npm-production",
102+
"tmp": "tmp/tailwind-postcss-spacing_1.0.2_1760703462472_0.6392910563964407"
103+
},
104+
"_hasShrinkwrap": false,
105+
"_time": "2025-10-17T12:17:42.693Z"
106+
}

0 commit comments

Comments
 (0)