Skip to content

Commit a9c9896

Browse files
collect plugins data
1 parent 0fcfde5 commit a9c9896

File tree

187 files changed

+3625
-3105
lines changed

Some content is hidden

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

187 files changed

+3625
-3105
lines changed
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
{
2+
"name": "postcss-global-data",
3+
"type": "module",
4+
"version": "1.0.0",
5+
"description": "PostCSS plugin to define global data that will be injected into PostCSS for use in other plugins.",
6+
"author": {
7+
"name": "Byron",
8+
"email": "[email protected]"
9+
},
10+
"license": "MIT",
11+
"funding": "https://github.com/sponsors/byronogis",
12+
"homepage": "https://github.com/byronogis/postcss-global-data#readme",
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/byronogis/postcss-global-data.git"
16+
},
17+
"bugs": {
18+
"url": "https://github.com/byronogis/postcss-global-data/issues"
19+
},
20+
"keywords": [
21+
"css injection",
22+
"global data",
23+
"postcss-plugin",
24+
"productivity"
25+
],
26+
"sideEffects": false,
27+
"publishConfig": {
28+
"access": "public"
29+
},
30+
"exports": {
31+
".": "./dist/index.js",
32+
"./package.json": "./package.json"
33+
},
34+
"main": "./dist/index.cjs",
35+
"module": "./dist/index.js",
36+
"types": "./dist/index.d.cts",
37+
"peerDependencies": {
38+
"postcss": "^8.4"
39+
},
40+
"devDependencies": {
41+
"@csstools/postcss-cascade-layers": "^5.0.2",
42+
"@csstools/postcss-tape": "*",
43+
"open-props": "^1.7.15",
44+
"postcss-custom-media": "^11.0.6",
45+
"postcss-custom-properties": "^14.0.6"
46+
},
47+
"scripts": {
48+
"dev": "tsdown --watch",
49+
"build": "tsdown",
50+
"start": "jiti src/index.ts",
51+
"automd": "automd README.md",
52+
"release": "pnpm publish",
53+
"typecheck": "tsc --noEmit",
54+
"test": "node --test",
55+
"test:rewrite-expects": "REWRITE_EXPECTS=true node --test",
56+
"clear": "rimraf dist"
57+
},
58+
59+
"_integrity": "sha512-FgnA3XAtAUHIqxKpDfZJ2I5Xx7Q6PxW42IOn2/s0gW9LM2WWDnr7XN6n3UMPB0+sQumiSTzcniTkJC7apw5fhw==",
60+
"_resolved": "/private/var/folders/44/m92mlysn1b39gdgg1sf2ryx80000gn/T/dc18890745cf65d707b1abed79f10f56/postcss-global-data-1.0.0.tgz",
61+
"_from": "file:postcss-global-data-1.0.0.tgz",
62+
"_nodeVersion": "22.18.0",
63+
"_npmVersion": "10.9.3",
64+
"dist": {
65+
"integrity": "sha512-FgnA3XAtAUHIqxKpDfZJ2I5Xx7Q6PxW42IOn2/s0gW9LM2WWDnr7XN6n3UMPB0+sQumiSTzcniTkJC7apw5fhw==",
66+
"shasum": "1d1553401e1c278deac662ab0170607aec8cc878",
67+
"tarball": "https://registry.npmjs.org/postcss-global-data/-/postcss-global-data-1.0.0.tgz",
68+
"fileCount": 7,
69+
"unpackedSize": 13988,
70+
"signatures": [
71+
{
72+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
73+
"sig": "MEUCIGEHxgCByyba5f1E2vvhe/1XwJ3o3bJ+gio7gvAuhPKQAiEAkdMtHO37aNXvpvRS7NJNFoYoHV6GYvk+tYM5+hUgLhg="
74+
}
75+
]
76+
},
77+
"_npmUser": {
78+
"name": "byronogis",
79+
"email": "[email protected]"
80+
},
81+
"directories": {},
82+
"maintainers": [
83+
{
84+
"name": "byronogis",
85+
"email": "[email protected]"
86+
}
87+
],
88+
"_npmOperationalInternal": {
89+
"host": "s3://npm-registry-packages-npm-production",
90+
"tmp": "tmp/postcss-global-data_1.0.0_1755133262020_0.687483614430872"
91+
},
92+
"_hasShrinkwrap": false,
93+
"_time": "2025-08-14T01:01:02.227Z"
94+
}
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"author": {
3+
"name": "Ron Dekker",
4+
"url": "https://rondekker.com"
5+
},
6+
"name": "postcss-reuse",
7+
"version": "2.2.0",
8+
"description": "PostCSS plugin for re-using selectors and declarations using previously declared selectors.",
9+
"keywords": [
10+
"postcss",
11+
"postcss-plugin",
12+
"reuse",
13+
"apply",
14+
"extend",
15+
"inline",
16+
"insert"
17+
],
18+
"license": "MIT",
19+
"homepage": "https://github.com/redkenrok/postcss-plugins/tree/main/packages/reuse/#readme",
20+
"repository": {
21+
"type": "git",
22+
"url": "git+https://github.com/redkenrok/postcss-plugins.git"
23+
},
24+
"bugs": {
25+
"url": "https://github.com/redkenrok/postcss-plugins/issues"
26+
},
27+
"publishConfig": {
28+
"access": "public"
29+
},
30+
"main": "src/index.js",
31+
"scripts": {
32+
"lint": "eslint --fix --cache src --ext .js",
33+
"test": "postcss-tape --plugin src/index.js"
34+
},
35+
"peerDependencies": {
36+
"postcss": "8.x"
37+
},
38+
"dependencies": {
39+
"css-selector-tokenizer": "0.8.x"
40+
},
41+
42+
"dist": {
43+
"shasum": "50fd1bb2a06dae21740505519102614e7d570aa4",
44+
"integrity": "sha512-1o2bWK0e4CHr4IPAdqG5aow9EgVmrXYGIbzB2UWX8jcSyPnoocbvnCOJh/RzLtP7UzRBV6K3PurKzAYoNuPcjg==",
45+
"tarball": "https://registry.npmjs.org/postcss-reuse/-/postcss-reuse-2.2.0.tgz",
46+
"fileCount": 9,
47+
"unpackedSize": 16236,
48+
"signatures": [
49+
{
50+
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
51+
"sig": "MEUCIQCU8VkWN+UMZCfYshb5FLdBjxDdyb5Vb8ktUwFNr9+T2gIgIiPR6p2wj14hGCxpyTI+k+LiNK0vnTsTkOkTHgVPOoA="
52+
}
53+
],
54+
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjrZROACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoGCA/+JGCCObUk4oqNuxSByHI8aTZS7Bn2ciM+9tL+jy+bS4+SUA0R\r\nLk4jqYfi0sd/rSS/lcvwdHhqDWjfaYHZV0GzaXTzcSiTaotf11hQjqOFv5ri\r\nsh9uX/EA+CnSlehkqveinwQmH26u4tZZVrHUFdpDZGMMNrLQ/Bsw9FsJgZ23\r\nijLn90IIVjhQgyRlsKW3TgqQ/ekcZNefXzJCtH7++DNaEPzeOiCvx18PFeDR\r\nV+UAbTFMsPEWpVrMqw3LEklKzTtqMpFUeo0Hysz/6ICbRkCe1+GAY0PboCCY\r\n+BRKrgjlMs7RMjKV0U4P/trGfBg4EKMJHzLaQIDtLvinMpxbeUBgEHX2Ffvf\r\n5xBQhQEBdupfmehLAEkwlrNPj5tuAi7Xps9Jq3fbvzeauTPpKnUuGn1lM2GI\r\n0r5vjP9XI6QH8gSnKJqJEtc6m/2ORUm/k3hAXUrXn7jg2JBbjBPoQgy0qVwz\r\nS48+imLJcIQiZsxeG0+fC4/F1dugsgpmvlTgrUjuPO2U7EuzGEnsBm4xTLTN\r\nT75Q3V3cmlo1ykMFaBeBOxFv4Cooi3Ksm87Uhigh220CQUdibKsjNylvw6Nk\r\np+gVBopLN6wqYeLCUzS3m3kDt+JalYj7sKPzhxC4MkFA47N4T8hP9kmsIqrh\r\nxV+KFg7n2G4q/eLwgQT6DE0riPbZHuH1gGs=\r\n=3dmg\r\n-----END PGP SIGNATURE-----\r\n"
55+
},
56+
"_npmUser": {
57+
"name": "redkenrok",
58+
"email": "[email protected]"
59+
},
60+
"directories": {},
61+
"maintainers": [
62+
{
63+
"name": "redkenrok",
64+
"email": "[email protected]"
65+
}
66+
],
67+
"_npmOperationalInternal": {
68+
"host": "s3://npm-registry-packages",
69+
"tmp": "tmp/postcss-reuse_2.2.0_1672320078473_0.3631007111812343"
70+
},
71+
"_hasShrinkwrap": false,
72+
"_time": "2022-12-29T13:21:18.690Z"
73+
}

0 commit comments

Comments
 (0)