Skip to content

Commit 73729a9

Browse files
collect plugins data
1 parent 0d86d2d commit 73729a9

209 files changed

Lines changed: 10590 additions & 8735 deletions

File tree

Some content is hidden

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

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3250,7 +3250,7 @@ <h3>extract-css-variables <span style="font-size: 0.8em;">(lesjoursfr)</span></h
32503250
</dd>
32513251

32523252
<dt>Version</dt>
3253-
<dd><code>3.0.1</code></dd>
3253+
<dd><code>3.0.2</code></dd>
32543254

32553255
<dt>License</dt>
32563256
<dd><code>MIT</code></dd>
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
{
2+
"name": "@csstools/postcss-property-rule-prelude-list",
3+
"description": "Declare a list of custom properties in a single at-property rule",
4+
"version": "1.0.0",
5+
"contributors": [
6+
{
7+
"name": "Antonio Laguna",
8+
"email": "[email protected]",
9+
"url": "https://antonio.laguna.es"
10+
},
11+
{
12+
"name": "Romain Menke",
13+
"email": "[email protected]"
14+
}
15+
],
16+
"license": "MIT-0",
17+
"funding": [
18+
{
19+
"type": "github",
20+
"url": "https://github.com/sponsors/csstools"
21+
},
22+
{
23+
"type": "opencollective",
24+
"url": "https://opencollective.com/csstools"
25+
}
26+
],
27+
"engines": {
28+
"node": ">=18"
29+
},
30+
"type": "module",
31+
"main": "dist/index.cjs",
32+
"module": "dist/index.mjs",
33+
"exports": {
34+
".": {
35+
"import": {
36+
"types": "./dist/index.d.ts",
37+
"default": "./dist/index.mjs"
38+
},
39+
"require": {
40+
"default": "./dist/index.cjs"
41+
}
42+
}
43+
},
44+
"dependencies": {
45+
"@csstools/css-parser-algorithms": "^3.0.5",
46+
"@csstools/css-tokenizer": "^3.0.4"
47+
},
48+
"peerDependencies": {
49+
"postcss": "^8.4"
50+
},
51+
"scripts": {},
52+
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-property-rule-prelude-list#readme",
53+
"repository": {
54+
"type": "git",
55+
"url": "git+https://github.com/csstools/postcss-plugins.git",
56+
"directory": "plugins/postcss-property-rule-prelude-list"
57+
},
58+
"bugs": {
59+
"url": "https://github.com/csstools/postcss-plugins/issues"
60+
},
61+
"keywords": [
62+
"postcss-plugin"
63+
],
64+
"gitHead": "d666d09cd56b22cc2b358518d2f5d7683c374a51",
65+
"types": "./dist/index.d.ts",
66+
"_id": "@csstools/[email protected]",
67+
"_nodeVersion": "25.1.0",
68+
"_npmVersion": "11.6.2",
69+
"dist": {
70+
"integrity": "sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA==",
71+
"shasum": "700b7aa41228c02281bda074ae778f36a09da188",
72+
"tarball": "https://registry.npmjs.org/@csstools/postcss-property-rule-prelude-list/-/postcss-property-rule-prelude-list-1.0.0.tgz",
73+
"fileCount": 7,
74+
"unpackedSize": 5364,
75+
"signatures": [
76+
{
77+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
78+
"sig": "MEYCIQCM7RI+Va8jfLvPovS5lX1goyF6kpVKXG0WLXKKxvayIwIhAKIxSu/p/UaAZrHF9YLetdhpRjn98LMBf4zVkMORRCI2"
79+
}
80+
]
81+
},
82+
"_npmUser": {
83+
"name": "romainmenke",
84+
"email": "[email protected]"
85+
},
86+
"directories": {},
87+
"maintainers": [
88+
{
89+
"name": "jonathantneal",
90+
"email": "[email protected]"
91+
},
92+
{
93+
"name": "alaguna",
94+
"email": "[email protected]"
95+
},
96+
{
97+
"name": "romainmenke",
98+
"email": "[email protected]"
99+
}
100+
],
101+
"_npmOperationalInternal": {
102+
"host": "s3://npm-registry-packages-npm-production",
103+
"tmp": "tmp/postcss-property-rule-prelude-list_1.0.0_1766836744529_0.7622683391677851"
104+
},
105+
"_hasShrinkwrap": false,
106+
"_time": "2025-12-27T11:59:04.679Z"
107+
}
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
{
2+
"name": "postcss-pxtrans",
3+
"version": "1.0.0",
4+
"description": "PostCSS plugin that converts px units to rpx/rem/vw/px for multiple platforms.",
5+
"author": {
6+
"name": "ice breaker",
7+
"email": "[email protected]"
8+
},
9+
"license": "MIT",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/sonofmagic/postcss-plugins.git",
13+
"directory": "packages/postcss-pxtrans"
14+
},
15+
"bugs": {
16+
"url": "https://github.com/sonofmagic/postcss-plugins/issues"
17+
},
18+
"keywords": [
19+
"postcss",
20+
"postcss-plugin",
21+
"px",
22+
"rpx",
23+
"rem",
24+
"vw",
25+
"pxtransform"
26+
],
27+
"sideEffects": false,
28+
"exports": {
29+
".": {
30+
"types": "./dist/index.d.ts",
31+
"import": "./dist/index.mjs",
32+
"require": "./dist/index.cjs"
33+
}
34+
},
35+
"peerDependencies": {
36+
"postcss": "^8"
37+
},
38+
"dependencies": {
39+
"postcss-plugin-shared": "^1.0.0"
40+
},
41+
"scripts": {
42+
"dev": "tsup --watch --sourcemap",
43+
"build": "tsup",
44+
"test": "vitest run",
45+
"test:dev": "vitest",
46+
"bench": "vitest bench",
47+
"release": "pnpm publish",
48+
"lint": "eslint .",
49+
"lint:fix": "eslint . --fix"
50+
},
51+
"main": "./dist/index.cjs",
52+
"module": "./dist/index.mjs",
53+
"types": "./dist/index.d.ts",
54+
55+
"homepage": "https://github.com/sonofmagic/postcss-plugins#readme",
56+
"_integrity": "sha512-1AKXs+w/hor0EAmxCAa2ATfYKgzqey/rHTgJ6LvvpNsRyeV9hyVNczF3N1hSXcB5ruM4E3ezg8cf3W+W/GY4GA==",
57+
"_resolved": "/tmp/2fc82afaa4312c86bf0cd446d36f768a/postcss-pxtrans-1.0.0.tgz",
58+
"_from": "file:postcss-pxtrans-1.0.0.tgz",
59+
"_nodeVersion": "24.12.0",
60+
"_npmVersion": "11.6.2",
61+
"dist": {
62+
"integrity": "sha512-1AKXs+w/hor0EAmxCAa2ATfYKgzqey/rHTgJ6LvvpNsRyeV9hyVNczF3N1hSXcB5ruM4E3ezg8cf3W+W/GY4GA==",
63+
"shasum": "7df6ba96d1e31ea4fc5977b118877de3fe917f55",
64+
"tarball": "https://registry.npmjs.org/postcss-pxtrans/-/postcss-pxtrans-1.0.0.tgz",
65+
"fileCount": 8,
66+
"unpackedSize": 41859,
67+
"attestations": {
68+
"url": "https://registry.npmjs.org/-/npm/v1/attestations/[email protected]",
69+
"provenance": {
70+
"predicateType": "https://slsa.dev/provenance/v1"
71+
}
72+
},
73+
"signatures": [
74+
{
75+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
76+
"sig": "MEQCIGs/hFRUuKLxSK7NYat7babeBFKFo6FqyUKnnzEHV/v9AiAylq+LBs4IhdwYGa8pO5qBXreUeonCR9P6AO+cDZWVSA=="
77+
}
78+
]
79+
},
80+
"_npmUser": {
81+
"name": "GitHub Actions",
82+
"email": "[email protected]",
83+
"trustedPublisher": {
84+
"id": "github",
85+
"oidcConfigId": "oidc:c2e14f60-c13d-489f-bbad-644b0f59175a"
86+
}
87+
},
88+
"directories": {},
89+
"maintainers": [
90+
{
91+
"name": "icebreaker",
92+
"email": "[email protected]"
93+
}
94+
],
95+
"_npmOperationalInternal": {
96+
"host": "s3://npm-registry-packages-npm-production",
97+
"tmp": "tmp/postcss-pxtrans_1.0.0_1766047843550_0.45521876663483174"
98+
},
99+
"_hasShrinkwrap": false,
100+
"_time": "2025-12-18T08:50:43.688Z"
101+
}

0 commit comments

Comments
 (0)