-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
37
38
39
40
41
42
43
44
{
"name": "postcss-figma-blur-fix",
"version": "0.0.1",
"packageManager": "[email protected]",
"description": "PostCSS plugin that adjusts blur values imported from Figma to ensure they visually match the blur effect in browsers. Perfect for syncing design and implementation.",
"author": "Ivan Bulakhov <[email protected]>",
"license": "MIT",
"repository": "kabarchonok/postcss-figma-blur-fix",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-figma-blur-fix"
],
"engines": {
"node": ">=18.0.0",
"pnpm": "^9.0.0"
},
"scripts": {
"unit": "node --test index.test.js",
"test": "npm run unit && eslint .",
"release": "pnpm dlx bumpp -r && pnpm -r publish"
},
"peerDependencies": {
"postcss": "^8.4.27"
},
"devDependencies": {
"@antfu/eslint-config": "^3.13.0",
"eslint": "^9.18.0",
"postcss": "^8.4.27"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended"
]
}
}