Skip to content

Commit 1edd607

Browse files
collect plugins data
1 parent e6b43a6 commit 1edd607

File tree

208 files changed

+3745
-3141
lines changed

Some content is hidden

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

208 files changed

+3745
-3141
lines changed
Lines changed: 87 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
{
22
"name": "@eik/postcss-plugin",
3-
"version": "5.0.7",
3+
"version": "5.0.8",
4+
"description": "PostCSS plugin that uses Eik defined import map files to transform bare import specifiers to absolute URLs in @import rules",
5+
"main": "src/plugin.js",
6+
"types": "./types/plugin.d.ts",
7+
"type": "module",
8+
"scripts": {
9+
"clean": "rimraf .tap node_modules types",
10+
"test": "tap test/*.js --disable-coverage --allow-empty-coverage",
11+
"test:snapshot": "TAP_SNAPSHOT=1 tap test/*.js --disable-coverage --allow-empty-coverage",
12+
"lint": "eslint .",
13+
"lint:fix": "eslint . --fix",
14+
"types": "run-s types:module types:test",
15+
"types:module": "tsc",
16+
"types:test": "tsc --project tsconfig.test.json"
17+
},
18+
"repository": {
19+
"type": "git",
20+
"url": "git+https://github.com/eik-lib/postcss-plugin.git"
21+
},
422
"keywords": [
523
"css",
624
"postcss",
@@ -12,64 +30,58 @@
1230
"name": "Finn.no"
1331
},
1432
"license": "MIT",
15-
"_id": "@eik/[email protected]",
16-
"maintainers": [
17-
{
18-
"name": "trygve-lie",
19-
"email": "[email protected]"
20-
},
21-
{
22-
"name": "digitalsadhu",
23-
"email": "[email protected]"
24-
},
25-
{
26-
"name": "trygve-bot",
27-
"email": "[email protected]"
28-
},
29-
{
30-
"name": "wllm",
31-
"email": "[email protected]"
32-
}
33-
],
34-
"homepage": "https://github.com/eik-lib/postcss-plugin#readme",
3533
"bugs": {
3634
"url": "https://github.com/eik-lib/postcss-plugin/issues"
3735
},
36+
"homepage": "https://github.com/eik-lib/postcss-plugin#readme",
37+
"devDependencies": {
38+
"@eik/eslint-config": "1.0.23",
39+
"@eik/prettier-config": "1.0.1",
40+
"@eik/semantic-release-config": "1.0.11",
41+
"@eik/typescript-config": "1.0.0",
42+
"eslint": "9.39.2",
43+
"fastify": "5.6.2",
44+
"npm-run-all2": "8.0.4",
45+
"postcss": "8.5.6",
46+
"prettier": "3.7.4",
47+
"rimraf": "6.1.2",
48+
"rollup": "4.53.3",
49+
"semantic-release": "25.0.2",
50+
"tap": "21.5.0",
51+
"typescript": "5.9.3"
52+
},
53+
"dependencies": {
54+
"@eik/common": "5.1.12",
55+
"css-url-parser": "1.1.4"
56+
},
57+
"peerDependencies": {
58+
"postcss": "^8.0.0"
59+
},
60+
"engines": {
61+
"node": ">=20"
62+
},
63+
"gitHead": "f4f6c65aaa9fe9cab59bcdd75f7ca837aad33882",
64+
"_id": "@eik/[email protected]",
65+
"_nodeVersion": "24.12.0",
66+
"_npmVersion": "11.7.0",
3867
"dist": {
39-
"shasum": "d8cb726c8cc7f1b6adc12a1a73baff78225f1885",
40-
"tarball": "https://registry.npmjs.org/@eik/postcss-plugin/-/postcss-plugin-5.0.7.tgz",
68+
"integrity": "sha512-utDOTwDM734tKpZy5PEybXV/gibFusUCY2AGpplughkJIJ92yZS8KgUidBn/g47q9iC2DZK/oUzLjTJsykeJOw==",
69+
"shasum": "f2afc796c836c2dffa96c8da1e6bf7eed9291797",
70+
"tarball": "https://registry.npmjs.org/@eik/postcss-plugin/-/postcss-plugin-5.0.8.tgz",
4171
"fileCount": 6,
42-
"integrity": "sha512-GylqZVM/M4kbyq/TulIBR+owNXvKsb4BKN2i3pvBe71KWa8PhOlRPJP8rQz5xJGkKd4AbZXyamz9SEHrA0YWQA==",
43-
"signatures": [
44-
{
45-
"sig": "MEYCIQDcjpzDYSJ8i9kKLkIruoSUE/7qgn2ddcWTX4eT4OjZDwIhAIoQcbxe201SZ8cMp4P0DrXjNoaL/REMmmFoFxONAKLb",
46-
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"
47-
}
48-
],
72+
"unpackedSize": 26711,
4973
"attestations": {
50-
"url": "https://registry.npmjs.org/-/npm/v1/attestations/@eik%[email protected].7",
74+
"url": "https://registry.npmjs.org/-/npm/v1/attestations/@eik%[email protected].8",
5175
"provenance": {
5276
"predicateType": "https://slsa.dev/provenance/v1"
5377
}
5478
},
55-
"unpackedSize": 26383
56-
},
57-
"main": "src/plugin.js",
58-
"type": "module",
59-
"types": "./types/plugin.d.ts",
60-
"engines": {
61-
"node": ">=20"
62-
},
63-
"gitHead": "a6fcba5f5f6911f6c874a819580cc4b8bd7ec99c",
64-
"scripts": {
65-
"lint": "eslint .",
66-
"test": "tap test/*.js --disable-coverage --allow-empty-coverage",
67-
"clean": "rimraf .tap node_modules types",
68-
"types": "run-s types:module types:test",
69-
"lint:fix": "eslint . --fix",
70-
"types:test": "tsc --project tsconfig.test.json",
71-
"types:module": "tsc",
72-
"test:snapshot": "TAP_SNAPSHOT=1 tap test/*.js --disable-coverage --allow-empty-coverage"
79+
"signatures": [
80+
{
81+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
82+
"sig": "MEYCIQD1p9Z8GV2Un4iT4vl+x8TXnDjbpUBOJSVQL73F4vImFgIhAPVRy+cZmX7rbBn2tD7RgulhjFk84flH7NFZRKxgEfOg"
83+
}
84+
]
7385
},
7486
"_npmUser": {
7587
"name": "GitHub Actions",
@@ -79,41 +91,33 @@
7991
"oidcConfigId": "oidc:6d7ef4ad-3964-4125-a422-2ccf06c318b1"
8092
}
8193
},
82-
"repository": {
83-
"url": "git+https://github.com/eik-lib/postcss-plugin.git",
84-
"type": "git"
85-
},
86-
"_npmVersion": "11.7.0",
87-
"description": "PostCSS plugin that uses Eik defined import map files to transform bare import specifiers to absolute URLs in @import rules",
8894
"directories": {},
89-
"_nodeVersion": "24.11.1",
90-
"dependencies": {
91-
"@eik/common": "5.1.11",
92-
"css-url-parser": "1.1.4"
93-
},
94-
"_hasShrinkwrap": false,
95-
"devDependencies": {
96-
"tap": "21.5.0",
97-
"eslint": "9.39.1",
98-
"rimraf": "6.1.2",
99-
"rollup": "4.53.3",
100-
"fastify": "5.6.2",
101-
"postcss": "8.5.6",
102-
"prettier": "3.7.4",
103-
"typescript": "5.9.3",
104-
"npm-run-all2": "8.0.4",
105-
"semantic-release": "25.0.2",
106-
"@eik/eslint-config": "1.0.23",
107-
"@eik/prettier-config": "1.0.1",
108-
"@eik/typescript-config": "1.0.0",
109-
"@eik/semantic-release-config": "1.0.10"
110-
},
111-
"peerDependencies": {
112-
"postcss": "^8.0.0"
113-
},
95+
"maintainers": [
96+
{
97+
"name": "trygve-lie",
98+
"email": "[email protected]"
99+
},
100+
{
101+
"name": "digitalsadhu",
102+
"email": "[email protected]"
103+
},
104+
{
105+
"name": "trygve-bot",
106+
"email": "[email protected]"
107+
},
108+
{
109+
"name": "leftiefriele",
110+
"email": "[email protected]"
111+
},
112+
{
113+
"name": "wllm",
114+
"email": "[email protected]"
115+
}
116+
],
114117
"_npmOperationalInternal": {
115-
"tmp": "tmp/postcss-plugin_5.0.7_1765543173121_0.13669879961053288",
116-
"host": "s3://npm-registry-packages-npm-production"
118+
"host": "s3://npm-registry-packages-npm-production",
119+
"tmp": "tmp/postcss-plugin_5.0.8_1766224875543_0.2942407462228507"
117120
},
118-
"_time": "2025-12-12T12:39:33.254Z"
121+
"_hasShrinkwrap": false,
122+
"_time": "2025-12-20T10:01:15.741Z"
119123
}
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
{
2+
"name": "postcss-plugin-shared",
3+
"version": "1.0.0",
4+
"description": "Shared utilities for postcss-plugins monorepo packages.",
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-plugin-shared"
14+
},
15+
"bugs": {
16+
"url": "https://github.com/sonofmagic/postcss-plugins/issues"
17+
},
18+
"keywords": [
19+
"postcss",
20+
"postcss-plugin",
21+
"shared",
22+
"utils"
23+
],
24+
"sideEffects": false,
25+
"exports": {
26+
".": {
27+
"types": "./dist/index.d.ts",
28+
"import": "./dist/index.mjs",
29+
"require": "./dist/index.cjs"
30+
}
31+
},
32+
"peerDependencies": {
33+
"postcss": "^8"
34+
},
35+
"dependencies": {
36+
"defu": "^6.1.4"
37+
},
38+
"scripts": {
39+
"dev": "tsup --watch --sourcemap",
40+
"build": "tsup",
41+
"lint": "eslint .",
42+
"lint:fix": "eslint . --fix"
43+
},
44+
"main": "./dist/index.cjs",
45+
"module": "./dist/index.mjs",
46+
"types": "./dist/index.d.ts",
47+
48+
"homepage": "https://github.com/sonofmagic/postcss-plugins#readme",
49+
"_integrity": "sha512-3x83BXvFXlbtIaD/GC4C2uZQ+UmGwh1uYCm4DjQTEjDv8HrrBmZWZH968W+Shq/vxP+amsH08OafVt8aVzqL2w==",
50+
"_resolved": "/tmp/7963e38ebe5806825eb4543c689819df/postcss-plugin-shared-1.0.0.tgz",
51+
"_from": "file:postcss-plugin-shared-1.0.0.tgz",
52+
"_nodeVersion": "24.12.0",
53+
"_npmVersion": "11.6.2",
54+
"dist": {
55+
"integrity": "sha512-3x83BXvFXlbtIaD/GC4C2uZQ+UmGwh1uYCm4DjQTEjDv8HrrBmZWZH968W+Shq/vxP+amsH08OafVt8aVzqL2w==",
56+
"shasum": "ffc5c7b21cf1f50acc62c4d75a9aed65ce84ae9f",
57+
"tarball": "https://registry.npmjs.org/postcss-plugin-shared/-/postcss-plugin-shared-1.0.0.tgz",
58+
"fileCount": 8,
59+
"unpackedSize": 28162,
60+
"attestations": {
61+
"url": "https://registry.npmjs.org/-/npm/v1/attestations/[email protected]",
62+
"provenance": {
63+
"predicateType": "https://slsa.dev/provenance/v1"
64+
}
65+
},
66+
"signatures": [
67+
{
68+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
69+
"sig": "MEQCIHf0KrJwS2lI6EuLt34d1iERZUKc1u/lRi8DkRRFj4crAiAXbtZDfEgcDoa+0bX55oPFFplOiA1Ph7aIdT8yOS715w=="
70+
}
71+
]
72+
},
73+
"_npmUser": {
74+
"name": "GitHub Actions",
75+
"email": "[email protected]",
76+
"trustedPublisher": {
77+
"id": "github",
78+
"oidcConfigId": "oidc:06df814c-ba6b-4f93-abc1-f3ce8680d410"
79+
}
80+
},
81+
"directories": {},
82+
"maintainers": [
83+
{
84+
"name": "icebreaker",
85+
"email": "[email protected]"
86+
}
87+
],
88+
"_npmOperationalInternal": {
89+
"host": "s3://npm-registry-packages-npm-production",
90+
"tmp": "tmp/postcss-plugin-shared_1.0.0_1766047843723_0.3492887876252022"
91+
},
92+
"_hasShrinkwrap": false,
93+
"_time": "2025-12-18T08:50:43.877Z"
94+
}

0 commit comments

Comments
 (0)