-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "prettier-plugin-css-color-to-rgb",
"description": "Prettier plugin to convert CSS color names to RGB values",
"type": "module",
"main": "dist/index.js",
"version": "0.2.0",
"files": [
"dist/index.js"
],
"repository": {
"url": "https://github.com/Nixie24/prettier-plugin-css-color-to-rgb",
"type": "git"
},
"homepage": "https://github.com/Nixie24/prettier-plugin-css-color-to-rgb",
"scripts": {
"build": "esbuild src/index.ts --sourcemap --minify --outdir=dist",
"test": "prettier --config test/.prettierrc test/test.css",
"example": "pnpm build && pnpm test"
},
"devDependencies": {
"@types/color": "^3.0.6",
"@types/color-name": "^1.1.4",
"esbuild": "^0.23.0",
"prettier": "^3.3.3",
"typescript": "~5.5.4"
},
"dependencies": {
"color": "^4.2.3",
"color-name": "^2.0.0",
"postcss": "^8.4.40",
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"prettier": "3.x"
}
}