-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.13 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
{
"name": "postcss-nested",
"version": "8.0.1",
"description": "PostCSS plugin to unwrap nested rules like how Sass does it",
"keywords": [
"css",
"nested",
"postcss",
"postcss-plugin",
"sass"
],
"license": "MIT",
"author": "Andrey Sitnik <andrey@sitnik.es>",
"repository": "postcss/postcss-nested",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"type": "module",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"test:coverage": "pnpm bnt --coverage 100",
"test:lint": "oxlint",
"test": "pnpm run /^test:/"
},
"dependencies": {
"postcss-selector-parser": "^7.1.4"
},
"devDependencies": {
"@logux/oxc-configs": "^1.0.0",
"better-node-test": "^1.0.0",
"oxlint": "^1.76.0",
"oxlint-tsgolint": "^7.0.2001",
"postcss": "^8.5.25",
"typescript": "^7.0.2"
},
"peerDependencies": {
"postcss": "^8.2.14"
},
"engines": {
"node": "^22.0.0 || ^24.0.0 || >= 26.0.0"
}
}