-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
62 lines (62 loc) · 1.94 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@csstools/postcss-plugins",
"private": true,
"version": "1.0.0",
"description": "",
"author": "Jonathan Neal <[email protected]>",
"license": "MIT-0",
"engines": {
"node": "^14 || ^16 || >=18"
},
"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.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.13.0",
"@microsoft/api-documenter": "^7.26.1",
"@microsoft/api-extractor": "^7.48.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.1.2",
"@stryker-mutator/core": "^8.7.0",
"eslint": "^9.15.0",
"globals": "^15.13.0",
"knip": "^5.39.2",
"rollup": "^4.28.1",
"tslib": "^2.8.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.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": "22.12.0"
}
}