Skip to content

Commit 6fbeee8

Browse files
committed
update
1 parent 8c7ea7f commit 6fbeee8

10 files changed

+491
-70
lines changed

cmd/tasks/directory/directory.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export async function updateTheDirectory() {
7777
}
7878

7979
const pluginData = JSON.parse(await fs.readFile(pluginDataFile));
80-
if (maliciousPackages[pluginData.name].length) {
80+
if (maliciousPackages[pluginData.name]?.length) {
8181
await fs.rm(pluginDataFile);
8282
continue;
8383
}
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
{
2+
"name": "@byronogis/postcss-global-data",
3+
"type": "module",
4+
"version": "1.0.1",
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+
"_id": "@byronogis/[email protected]",
59+
"_integrity": "sha512-bfg+M4aMUS6Jwo35M34RHm8KqsUCdijOalL5VPRjdkj0qvFUE/hAOTby5bANRr2hCjlkVx2Rj/6ueTrfFrRaPQ==",
60+
"_resolved": "/tmp/353cded5ab547ef46e15fc3bb36d15c2/byronogis-postcss-global-data-1.0.1.tgz",
61+
"_from": "file:byronogis-postcss-global-data-1.0.1.tgz",
62+
"_nodeVersion": "22.18.0",
63+
"_npmVersion": "10.9.3",
64+
"dist": {
65+
"integrity": "sha512-bfg+M4aMUS6Jwo35M34RHm8KqsUCdijOalL5VPRjdkj0qvFUE/hAOTby5bANRr2hCjlkVx2Rj/6ueTrfFrRaPQ==",
66+
"shasum": "1906ebd6b50e61f14253d0b97aaf9a26cd814d9b",
67+
"tarball": "https://registry.npmjs.org/@byronogis/postcss-global-data/-/postcss-global-data-1.0.1.tgz",
68+
"fileCount": 7,
69+
"unpackedSize": 14186,
70+
"signatures": [
71+
{
72+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
73+
"sig": "MEYCIQDq3ObpNPuILRcBOh5oS7GjJ4yzcrGN1JWmnw6O9j7ltAIhAMPO8F8+tm4ypefxsMXoQyd+at/4pDADSUqw9HzALHbQ"
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.1_1755280270874_0.15576567150201948"
91+
},
92+
"_hasShrinkwrap": false,
93+
"_time": "2025-08-15T17:51:11.076Z"
94+
}
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
{
2+
"name": "@carbonorm/postcss-modules",
3+
"version": "6.0.2",
4+
"description": "PostCSS plugin to use CSS Modules everywhere",
5+
"main": "build/index.js",
6+
"types": "index.d.ts",
7+
"keywords": [
8+
"postcss",
9+
"css",
10+
"postcss-plugin",
11+
"modules",
12+
"css modules",
13+
"components"
14+
],
15+
"author": {
16+
"name": "Alexander Madyankin",
17+
"email": "[email protected]"
18+
},
19+
"license": "MIT",
20+
"repository": {
21+
"type": "git",
22+
"url": "git+https://github.com/CarbonORM/postcss-modules.git"
23+
},
24+
"dependencies": {
25+
"generic-names": "^4.0.0",
26+
"icss-utils": "^5.1.0",
27+
"lodash.camelcase": "^4.3.0",
28+
"postcss-modules-extract-imports": "^3.0.0",
29+
"postcss-modules-local-by-default": "^4.0.0",
30+
"postcss-modules-scope": "^3.0.0",
31+
"postcss-modules-values": "^4.0.0",
32+
"string-hash": "^1.1.1"
33+
},
34+
"peerDependencies": {
35+
"postcss": "^8.0.0"
36+
},
37+
"devDependencies": {
38+
"@babel/cli": "^7.17.10",
39+
"@babel/core": "^7.18.0",
40+
"@babel/eslint-parser": "^7.17.0",
41+
"@babel/preset-env": "^7.18.0",
42+
"@babel/register": "^7.17.7",
43+
"autoprefixer": "^10.0.2",
44+
"eslint": "^7.3.1",
45+
"eslint-plugin-import": "^2.21.2",
46+
"eslint-plugin-jest": "^23.17.0",
47+
"husky": "^4.2.5",
48+
"jest": "^26.0.1",
49+
"lint-staged": "^10.2.11",
50+
"postcss": "^8.1.9",
51+
"prettier": "^2.0.5"
52+
},
53+
"scripts": {
54+
"test": "make test",
55+
"precommit": "lint-staged"
56+
},
57+
"lint-staged": {
58+
"*.{json,md}": [
59+
"prettier --write",
60+
"git add"
61+
],
62+
"*.js": [
63+
"prettier --write",
64+
"eslint --fix",
65+
"git add"
66+
]
67+
},
68+
"require": "@babel/register",
69+
"gitHead": "b9bf8015ce14ac84d1708e1b44cae5f2c835c1b8",
70+
"bugs": {
71+
"url": "https://github.com/CarbonORM/postcss-modules/issues"
72+
},
73+
"homepage": "https://github.com/CarbonORM/postcss-modules#readme",
74+
"_id": "@carbonorm/[email protected]",
75+
"_nodeVersion": "18.11.0",
76+
"_npmVersion": "8.19.2",
77+
"dist": {
78+
"integrity": "sha512-qRY2uai2yX//xjwR3t79GSdKD36eR+EZWoGt4m5W8zah+if12Oes4LEXyFE3smxjPUTqQqcx0RNDuAt2+KBLng==",
79+
"shasum": "1ccdcab8fabe5e3e2c5f460a5b22d0115f17470b",
80+
"tarball": "https://registry.npmjs.org/@carbonorm/postcss-modules/-/postcss-modules-6.0.2.tgz",
81+
"fileCount": 21,
82+
"unpackedSize": 36273,
83+
"signatures": [
84+
{
85+
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
86+
"sig": "MEUCIQC3C1x8xnGoQKlbLtamzdB6t04MVSyxx9jbXrYiHVanQwIgKa2vEL/PlYu6OAU+uFLw7MqronEw8hiSHcs8FiEfShA="
87+
}
88+
]
89+
},
90+
"_npmUser": {
91+
"name": "richardtylermiles",
92+
"email": "[email protected]"
93+
},
94+
"directories": {},
95+
"maintainers": [
96+
{
97+
"name": "richardtylermiles",
98+
"email": "[email protected]"
99+
}
100+
],
101+
"_npmOperationalInternal": {
102+
"host": "s3://npm-registry-packages",
103+
"tmp": "tmp/postcss-modules_6.0.2_1690511147144_0.8306885640544854"
104+
},
105+
"_hasShrinkwrap": false,
106+
"_time": "2023-07-28T02:25:47.306Z"
107+
}
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
{
2+
"name": "@csstools/postcss-alpha-function",
3+
"description": "Use the alpha() function in CSS",
4+
"version": "1.0.0",
5+
"contributors": [
6+
{
7+
"name": "Romain Menke",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"license": "MIT-0",
12+
"funding": [
13+
{
14+
"type": "github",
15+
"url": "https://github.com/sponsors/csstools"
16+
},
17+
{
18+
"type": "opencollective",
19+
"url": "https://opencollective.com/csstools"
20+
}
21+
],
22+
"engines": {
23+
"node": ">=18"
24+
},
25+
"type": "module",
26+
"main": "dist/index.cjs",
27+
"module": "dist/index.mjs",
28+
"exports": {
29+
".": {
30+
"import": {
31+
"types": "./dist/index.d.ts",
32+
"default": "./dist/index.mjs"
33+
},
34+
"require": {
35+
"default": "./dist/index.cjs"
36+
}
37+
}
38+
},
39+
"dependencies": {
40+
"@csstools/css-color-parser": "^3.1.0",
41+
"@csstools/css-parser-algorithms": "^3.0.5",
42+
"@csstools/css-tokenizer": "^3.0.4",
43+
"@csstools/postcss-progressive-custom-properties": "^4.2.0",
44+
"@csstools/utilities": "^2.0.0"
45+
},
46+
"peerDependencies": {
47+
"postcss": "^8.4"
48+
},
49+
"scripts": {},
50+
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-alpha-function#readme",
51+
"repository": {
52+
"type": "git",
53+
"url": "git+https://github.com/csstools/postcss-plugins.git",
54+
"directory": "plugins/postcss-alpha-function"
55+
},
56+
"bugs": {
57+
"url": "https://github.com/csstools/postcss-plugins/issues"
58+
},
59+
"keywords": [
60+
"alpha",
61+
"color",
62+
"css",
63+
"design",
64+
"postcss",
65+
"postcss-plugin"
66+
],
67+
"_id": "@csstools/[email protected]",
68+
"gitHead": "fca7b4f89596801d44669f71cff1a49a2d9e39c0",
69+
"types": "./dist/index.d.ts",
70+
"_nodeVersion": "24.4.0",
71+
"_npmVersion": "11.4.2",
72+
"dist": {
73+
"integrity": "sha512-r2L8KNg5Wriq5n8IUQcjzy2Rh37J5YjzP9iOyHZL5fxdWYHB08vqykHQa4wAzN/tXwDuCHnhQDGCtxfS76xn7g==",
74+
"shasum": "8764fbbf25a5f1e106fb623ae632e01a220a6fc2",
75+
"tarball": "https://registry.npmjs.org/@csstools/postcss-alpha-function/-/postcss-alpha-function-1.0.0.tgz",
76+
"fileCount": 7,
77+
"unpackedSize": 13913,
78+
"signatures": [
79+
{
80+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
81+
"sig": "MEUCIQDbbYDK1dg1b6MsHSw9XLuAAsJxS3YH7X6LOhu9TrEylgIgGtssCsCbAy1cHCjBH435lmv6jwA6L4VcdQYApbSk4Tw="
82+
}
83+
]
84+
},
85+
"_npmUser": {
86+
"name": "romainmenke",
87+
"email": "[email protected]"
88+
},
89+
"directories": {},
90+
"maintainers": [
91+
{
92+
"name": "jonathantneal",
93+
"email": "[email protected]"
94+
},
95+
{
96+
"name": "alaguna",
97+
"email": "[email protected]"
98+
},
99+
{
100+
"name": "romainmenke",
101+
"email": "[email protected]"
102+
}
103+
],
104+
"_npmOperationalInternal": {
105+
"host": "s3://npm-registry-packages-npm-production",
106+
"tmp": "tmp/postcss-alpha-function_1.0.0_1755891890599_0.6988256144147242"
107+
},
108+
"_hasShrinkwrap": false,
109+
"_time": "2025-08-22T19:44:50.810Z"
110+
}

0 commit comments

Comments
 (0)