-
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.87 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.87 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
{
"name": "@csstools/postcss-plugins",
"private": true,
"version": "1.0.0",
"description": "",
"license": "MIT-0",
"workspaces": [
"packages/color-helpers",
"packages/css-tokenizer",
"packages/css-parser-algorithms",
"packages/css-calc",
"packages/css-color-parser",
"packages/cascade-layer-name-parser",
"packages/media-query-list-parser",
"packages/*",
"plugins/postcss-progressive-custom-properties",
"plugins/postcss-debug-logger",
"plugins/*",
"plugin-packs/*",
"cli/*",
"experimental/*",
"plugins-stylelint/*"
],
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^10.0.1",
"@microsoft/api-documenter": "^7.28.9",
"@microsoft/api-extractor": "^7.56.3",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.3.0",
"@stryker-mutator/core": "^9.5.1",
"@stylistic/eslint-plugin": "^5.8.0",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"knip": "^5.83.1",
"rollup": "^4.57.1",
"tslib": "^2.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"scripts": {
"everything": "npm run lint && npm run knip && npm run build && npm run docs && npm run test",
"build": "npm run build --workspaces --if-present",
"docs": "npm run docs --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present && eslint ./ && bash .github/bin/detect-executable-files/detect-executable-files.sh && node .github/bin/license/check-license.mjs",
"new-plugin": "node ./.github/bin/new-plugin.mjs",
"release-plan": "node .github/bin/release-plan/release-plan.mjs",
"release-plan:dry-run": "node .github/bin/release-plan/release-plan.mjs --dry-run",
"test": "npm run test --workspaces --if-present",
"knip": "knip"
},
"volta": {
"node": "25.1.0"
}
}