Skip to content

Commit 5ffa39b

Browse files
collect plugins data
1 parent 3794958 commit 5ffa39b

194 files changed

Lines changed: 3042 additions & 2015 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.

npm-data/last-version/autoprefixer.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "autoprefixer",
3-
"version": "10.4.20",
3+
"version": "10.4.21",
44
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
55
"engines": {
66
"node": "^10 || ^12 || >=14"
@@ -47,14 +47,14 @@
4747
"postcss": "^8.1.0"
4848
},
4949
"dependencies": {
50-
"browserslist": "^4.23.3",
51-
"caniuse-lite": "^1.0.30001646",
50+
"browserslist": "^4.24.4",
51+
"caniuse-lite": "^1.0.30001702",
5252
"fraction.js": "^4.3.7",
5353
"normalize-range": "^0.1.2",
54-
"picocolors": "^1.0.1",
54+
"picocolors": "^1.1.1",
5555
"postcss-value-parser": "^4.2.0"
5656
},
57-
"_id": "[email protected].20",
57+
"_id": "[email protected].21",
5858
"contributors": [
5959
{
6060
"name": "Aaron",
@@ -748,20 +748,20 @@
748748
"email": "[email protected]"
749749
}
750750
],
751-
"gitHead": "dae6eb465da5640bb03ecda8b6d6b73e9ba26429",
751+
"gitHead": "541295c0e6dd348db2d3f52772b59cd403c59d29",
752752
"homepage": "https://github.com/postcss/autoprefixer#readme",
753-
"_nodeVersion": "20.12.2",
754-
"_npmVersion": "10.5.0",
753+
"_nodeVersion": "22.14.0",
754+
"_npmVersion": "10.9.2",
755755
"dist": {
756-
"integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
757-
"shasum": "5caec14d43976ef42e32dcb4bd62878e96be5b3b",
758-
"tarball": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz",
756+
"integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
757+
"shasum": "77189468e7a8ad1d9a37fbc08efc9f480cf0a95d",
758+
"tarball": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
759759
"fileCount": 83,
760-
"unpackedSize": 199114,
760+
"unpackedSize": 199184,
761761
"signatures": [
762762
{
763-
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
764-
"sig": "MEQCIH8KVxq8drNmyIhkY+PB3Vwiss3ypNLWE/8u8Bd9kTuKAiAgFmBVcPgFsJf1tbY2QldttdqSp8XJO3txE3mwb4bfDA=="
763+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
764+
"sig": "MEUCIQDDvEvx86F1Kl2Jk9uzrU5mhkPo0QuAd/1ZkF+bIs0QRQIgPghUahicnY//3CA7+Tu5lMLLL3enwdd4KRAasZKf58c="
765765
}
766766
]
767767
},
@@ -777,9 +777,9 @@
777777
}
778778
],
779779
"_npmOperationalInternal": {
780-
"host": "s3://npm-registry-packages",
781-
"tmp": "tmp/autoprefixer_10.4.20_1722633102355_0.36461782658844766"
780+
"host": "s3://npm-registry-packages-npm-production",
781+
"tmp": "tmp/autoprefixer_10.4.21_1741526844017_0.34655575028159324"
782782
},
783783
"_hasShrinkwrap": false,
784-
"_time": "2024-08-02T21:11:42.554Z"
784+
"_time": "2025-03-09T13:27:24.235Z"
785785
}
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
{
2+
"name": "postcss-color-transformer",
3+
"version": "1.0.2",
4+
"description": "Plugin PostCSS pour convertir entre différents formats de couleurs",
5+
"main": "dist/index.js",
6+
"module": "dist/index.mjs",
7+
"types": "dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"import": "./dist/index.mjs",
11+
"require": "./dist/index.js",
12+
"types": "./dist/index.d.ts"
13+
}
14+
},
15+
"engines": {
16+
"node": ">=14.0.0"
17+
},
18+
"scripts": {
19+
"build": "tsup",
20+
"dev": "tsup --watch",
21+
"lint": "eslint --ext .ts .",
22+
"lint:fix": "eslint --ext .ts . --fix",
23+
"test": "vitest run",
24+
"test:watch": "vitest",
25+
"prepublishOnly": "npm run build && npm run test",
26+
"release": "bumpp && npm publish"
27+
},
28+
"repository": {
29+
"type": "git",
30+
"url": "git+https://github.com/tuxado/postcss-color-transformer.git"
31+
},
32+
"keywords": [
33+
"postcss",
34+
"postcss-plugin",
35+
"css",
36+
"color",
37+
"converter",
38+
"oklch",
39+
"hsl",
40+
"rgb",
41+
"lab",
42+
"lch",
43+
"hwb",
44+
"typescript"
45+
],
46+
"author": {
47+
"name": "Votre Nom",
48+
"email": "[email protected]"
49+
},
50+
"license": "MIT",
51+
"bugs": {
52+
"url": "https://github.com/tuxado/postcss-color-transformer/issues"
53+
},
54+
"homepage": "https://github.com/tuxado/postcss-color-transformer#readme",
55+
"peerDependencies": {
56+
"postcss": "^8.0.0"
57+
},
58+
"dependencies": {
59+
"culori": "^3.2.0"
60+
},
61+
"devDependencies": {
62+
"@types/node": "^20.4.10",
63+
"@typescript-eslint/eslint-plugin": "^6.3.0",
64+
"@typescript-eslint/parser": "^6.3.0",
65+
"bumpp": "^9.1.1",
66+
"eslint": "^8.45.0",
67+
"postcss": "^8.4.26",
68+
"tsup": "^7.2.0",
69+
"typescript": "^5.1.6",
70+
"vitest": "^0.33.0"
71+
},
72+
73+
"gitHead": "1027e413c7cb5390653502bfd423a738fd74f620",
74+
"_nodeVersion": "22.11.0",
75+
"_npmVersion": "11.2.0",
76+
"dist": {
77+
"integrity": "sha512-6uw2sr0uOiArb3mTbC7IBVnnkVq56PIvEbuc3cTlfopOxFZeDl+a4wUcnQ2cTRo4S7T99B/JBczWY5FgSCQo8A==",
78+
"shasum": "eb452ed78be606cd3fa40a715f47e33ee415daeb",
79+
"tarball": "https://registry.npmjs.org/postcss-color-transformer/-/postcss-color-transformer-1.0.2.tgz",
80+
"fileCount": 9,
81+
"unpackedSize": 91894,
82+
"signatures": [
83+
{
84+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
85+
"sig": "MEYCIQD6ZguW1texsW3HjOVlQtqhDnMOA7jyrzHV9Nf2n5My/QIhAKPcK7vtTyPiIX6KL+nW/7TsEmsqOP2ShPyLfDsO45f0"
86+
}
87+
]
88+
},
89+
"_npmUser": {
90+
"name": "tuxado",
91+
"email": "[email protected]"
92+
},
93+
"directories": {},
94+
"maintainers": [
95+
{
96+
"name": "tuxado",
97+
"email": "[email protected]"
98+
}
99+
],
100+
"_npmOperationalInternal": {
101+
"host": "s3://npm-registry-packages-npm-production",
102+
"tmp": "tmp/postcss-color-transformer_1.0.2_1741539289568_0.4400449891927476"
103+
},
104+
"_hasShrinkwrap": false,
105+
"_time": "2025-03-09T16:54:49.763Z"
106+
}

0 commit comments

Comments
 (0)