-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "postcss-smooth-shadow",
"version": "0.3.2",
"description": "PostCSS plugin to generate more realistic smooth shadows",
"type": "module",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"shadow",
"smooth"
],
"scripts": {
"test:coverage": "bnt --coverage 100",
"test:lint": "eslint .",
"test:build": "pnpm build",
"test": "pnpm run /^test:/",
"start": "vite --host 0.0.0.0 test/demo/",
"build": "vite build test/demo/ -m production --base /postcss-smooth-shadow/"
},
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "postcss/postcss-smooth-shadow",
"engines": {
"node": "^20.0 || ^22.0 || >=24.0"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"peerDependencies": {
"postcss": "^8.2.14"
},
"devDependencies": {
"@logux/eslint-config": "^56.1.0",
"actions-up": "^1.4.1",
"better-node-test": "^0.8.3",
"clean-publish": "^5.2.2",
"eslint": "^9.37.0",
"multiocular": "^0.8.1",
"postcss": "^8.5.6",
"postcss-value-parser": "^4.2.0",
"vite": "^7.1.10"
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"clean-publish": {
"cleanDocs": true
}
}