-
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.62 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.62 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@csstools/csstools-cli",
"description": "Transform CSS with any plugin from csstools/postcss-plugins",
"version": "5.0.7",
"contributors": [
{
"name": "Antonio Laguna",
"email": "[email protected]",
"url": "https://antonio.laguna.es"
},
{
"name": "Romain Menke",
"email": "[email protected]"
}
],
"license": "MIT-0",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/csstools"
},
{
"type": "opencollective",
"url": "https://opencollective.com/csstools"
}
],
"engines": {
"node": ">=20.19.0"
},
"bin": {
"csstools-cli": "dist/cli.cjs"
},
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"dist"
],
"dependencies": {
"@csstools/postcss-cascade-layers": "^6.0.0",
"@csstools/postcss-color-function": "^5.0.3",
"@csstools/postcss-color-mix-function": "^4.0.3",
"@csstools/postcss-content-alt-text": "^3.0.0",
"@csstools/postcss-exponential-functions": "^3.0.2",
"@csstools/postcss-font-format-keywords": "^5.0.0",
"@csstools/postcss-gradients-interpolation-method": "^6.0.3",
"@csstools/postcss-hwb-function": "^5.0.3",
"@csstools/postcss-ic-unit": "^5.0.0",
"@csstools/postcss-is-pseudo-class": "^6.0.0",
"@csstools/postcss-light-dark-function": "^3.0.0",
"@csstools/postcss-logical-float-and-clear": "^4.0.0",
"@csstools/postcss-logical-resize": "^4.0.0",
"@csstools/postcss-logical-viewport-units": "^4.0.0",
"@csstools/postcss-media-minmax": "^3.0.2",
"@csstools/postcss-media-queries-aspect-ratio-number-values": "^4.0.0",
"@csstools/postcss-nested-calc": "^5.0.0",
"@csstools/postcss-normalize-display-values": "^5.0.1",
"@csstools/postcss-oklab-function": "^5.0.3",
"@csstools/postcss-relative-color-syntax": "^4.0.3",
"@csstools/postcss-scope-pseudo-class": "^5.0.0",
"@csstools/postcss-stepped-value-functions": "^5.0.2",
"@csstools/postcss-text-decoration-shorthand": "^5.0.3",
"@csstools/postcss-trigonometric-functions": "^5.0.2",
"@csstools/postcss-unset-value": "^5.0.0",
"css-blank-pseudo": "^8.0.1",
"css-has-pseudo": "^8.0.0",
"css-prefers-color-scheme": "^11.0.0",
"postcss": "^8.5.9",
"postcss-attribute-case-insensitive": "^8.0.0",
"postcss-color-functional-notation": "^8.0.3",
"postcss-color-hex-alpha": "^11.0.0",
"postcss-color-rebeccapurple": "^11.0.0",
"postcss-custom-media": "^12.0.1",
"postcss-custom-properties": "^15.0.1",
"postcss-custom-selectors": "^9.0.1",
"postcss-dir-pseudo-class": "^10.0.0",
"postcss-double-position-gradients": "^7.0.0",
"postcss-focus-visible": "^11.0.0",
"postcss-focus-within": "^10.0.0",
"postcss-gap-properties": "^7.0.0",
"postcss-image-set-function": "^8.0.0",
"postcss-lab-function": "^8.0.3",
"postcss-logical": "^9.0.0",
"postcss-nesting": "^14.0.0",
"postcss-overflow-shorthand": "^7.0.0",
"postcss-place": "^11.0.0",
"postcss-preset-env": "^11.2.1",
"postcss-pseudo-class-any-link": "^11.0.0",
"postcss-selector-not": "^9.0.0"
},
"devDependencies": {
"@csstools/base-cli": "0.1.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs && npm run set-cli-file-permissions",
"csstools-cli": "csstools-cli",
"lint": "node ../../.github/bin/format-package-json.mjs",
"prepublishOnly": "npm run build && npm run test",
"set-cli-file-permissions": "chmod a+x ./dist/cli.cjs",
"test": "exit 0",
"test:cli": "bash ./test/cli/test.sh"
},
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/cli/csstools-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/csstools/postcss-plugins.git",
"directory": "cli/csstools-cli"
},
"volta": {
"extends": "../../package.json"
}
}