Skip to content

Commit aed770c

Browse files
postcss-color-transformer-1.0.2 (#2097)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 668fe03 commit aed770c

1 file changed

Lines changed: 106 additions & 0 deletions

File tree

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)