eslint-plugin-etc-misc 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/_internal/rule-creator.d.ts.map +1 -1
  2. package/dist/_internal/rule-creator.js +0 -2
  3. package/dist/_internal/rule-creator.js.map +1 -1
  4. package/dist/_internal/syntax-selectors.d.ts.map +1 -1
  5. package/dist/_internal/syntax-selectors.js +0 -1
  6. package/dist/_internal/syntax-selectors.js.map +1 -1
  7. package/dist/plugin.cjs +8864 -3
  8. package/dist/plugin.cjs.map +7 -0
  9. package/dist/plugin.d.cts +15 -2
  10. package/dist/rules/consistent-enum-members.d.ts.map +1 -1
  11. package/dist/rules/consistent-enum-members.js +0 -1
  12. package/dist/rules/consistent-enum-members.js.map +1 -1
  13. package/dist/rules/consistent-symbol-description.d.ts.map +1 -1
  14. package/dist/rules/consistent-symbol-description.js +0 -1
  15. package/dist/rules/consistent-symbol-description.js.map +1 -1
  16. package/dist/rules/no-language-mixing.d.ts.map +1 -1
  17. package/dist/rules/no-language-mixing.js +0 -1
  18. package/dist/rules/no-language-mixing.js.map +1 -1
  19. package/dist/rules/no-misused-generics.d.ts.map +1 -1
  20. package/dist/rules/no-misused-generics.js +31 -25
  21. package/dist/rules/no-misused-generics.js.map +1 -1
  22. package/dist/rules/restrict-identifier-characters.d.ts.map +1 -1
  23. package/dist/rules/restrict-identifier-characters.js +0 -1
  24. package/dist/rules/restrict-identifier-characters.js.map +1 -1
  25. package/dist/rules/typescript-class-methods-use-this.d.ts.map +1 -1
  26. package/dist/rules/typescript-class-methods-use-this.js +27 -22
  27. package/dist/rules/typescript-class-methods-use-this.js.map +1 -1
  28. package/dist/rules/typescript-consistent-array-type-name.d.ts.map +1 -1
  29. package/dist/rules/typescript-consistent-array-type-name.js +0 -1
  30. package/dist/rules/typescript-consistent-array-type-name.js.map +1 -1
  31. package/dist/rules/typescript-prefer-array-type-alias.d.ts.map +1 -1
  32. package/dist/rules/typescript-prefer-array-type-alias.js +0 -1
  33. package/dist/rules/typescript-prefer-array-type-alias.js.map +1 -1
  34. package/dist/rules/typescript-prefer-enum.d.ts.map +1 -1
  35. package/dist/rules/typescript-prefer-enum.js +7 -5
  36. package/dist/rules/typescript-prefer-enum.js.map +1 -1
  37. package/dist/rules.d.ts.map +1 -1
  38. package/dist/rules.js +1 -3
  39. package/dist/rules.js.map +1 -1
  40. package/docs/docusaurus/docusaurus.config.ts +8 -8
  41. package/docs/docusaurus/package.json +16 -16
  42. package/docs/docusaurus/sidebars.rules.ts +2 -2
  43. package/docs/docusaurus/sidebars.ts +2 -2
  44. package/docs/docusaurus/src/components/GitHubStats.jsx +1 -1
  45. package/docs/docusaurus/src/components/GitHubStats.module.css +46 -0
  46. package/docs/docusaurus/src/css/custom.css +0 -1
  47. package/docs/docusaurus/src/pages/index.module.css +0 -1
  48. package/package.json +82 -70
@@ -5,7 +5,7 @@
5
5
  import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
6
6
 
7
7
  /** Main sidebar configuration for the default docs plugin instance. */
8
- const sidebars: SidebarsConfig = {
8
+ const sidebars = {
9
9
  docs: [
10
10
  {
11
11
  className: "sb-doc-intro",
@@ -131,6 +131,6 @@ const sidebars: SidebarsConfig = {
131
131
  ],
132
132
  },
133
133
  ],
134
- };
134
+ } as const satisfies SidebarsConfig;
135
135
 
136
136
  export default sidebars;
@@ -1,6 +1,6 @@
1
1
  import Link from "@docusaurus/Link";
2
2
 
3
- import styles from "../pages/index.module.css";
3
+ import styles from "./GitHubStats.module.css";
4
4
 
5
5
  const liveBadges = [
6
6
  {
@@ -0,0 +1,46 @@
1
+ .liveBadgeList {
2
+ display: flex;
3
+ flex-wrap: wrap;
4
+ padding: 0;
5
+ margin: 0;
6
+ gap: 0.58rem;
7
+ list-style-type: "";
8
+ padding-block-start: 16px;
9
+ padding-inline-start: 0;
10
+ }
11
+
12
+ .liveBadgeListItem {
13
+ margin: 0;
14
+ list-style-type: "";
15
+ }
16
+
17
+ .liveBadgeAnchor {
18
+ display: inline-flex;
19
+ align-items: center;
20
+ justify-content: center;
21
+ padding: 0;
22
+ border: 0;
23
+ border-radius: 0;
24
+ background: transparent;
25
+ transition:
26
+ filter 140ms ease,
27
+ transform 140ms ease;
28
+
29
+ &:hover,
30
+ &:focus {
31
+ filter: brightness(1.06);
32
+ transform: translateY(-1px);
33
+ }
34
+ }
35
+
36
+ .liveBadgeImage {
37
+ display: block;
38
+ block-size: 20px;
39
+ inline-size: auto;
40
+ }
41
+
42
+ @media (width <= 640px) {
43
+ .liveBadgeImage {
44
+ block-size: 18px;
45
+ }
46
+ }
@@ -1,5 +1,4 @@
1
1
  /** eslint-disable css/use-baseline */
2
- /* stylelint-disable plugin/no-low-performance-animation-properties, order/properties-order, no-descending-specificity, csstools/use-nesting, a11y/media-prefers-reduced-motion -- Docusaurus CSS breaks these features */
3
2
 
4
3
  /**
5
4
  * Global CSS overrides for Docusaurus documentation site.
@@ -1,5 +1,4 @@
1
1
  /** eslint-disable css/use-baseline */
2
- /* stylelint-disable defensive-css/require-named-grid-lines, scales/font-sizes -- Docusaurus CSS breaks these features */
3
2
 
4
3
  /**
5
4
  * CSS files with the .module.css suffix will be treated as CSS modules
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "eslint-plugin-etc-misc",
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "private": false,
6
6
  "description": "ESLint Plugin combining eslint-plugin-etc and eslint-plugin-misc!",
7
7
  "keywords": [
@@ -58,10 +58,12 @@
58
58
  "docs/docusaurus"
59
59
  ],
60
60
  "scripts": {
61
- "build": "tsc -p tsconfig.build.json && node scripts/write-cjs-entry.mjs",
61
+ "build": "tsc -b tsconfig.build.json --force && npm run build:types:cjs && npm run build:cjs",
62
+ "build:cjs": "esbuild dist/plugin.js --bundle --format=cjs --platform=node --packages=external --sourcemap --outfile=dist/plugin.cjs --footer:js=\"module.exports = module.exports.default;\"",
62
63
  "build:clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
63
64
  "build:eslint-inspector": "npx -y @eslint/config-inspector@1.4.2 build --outDir \"docs/docusaurus/static/eslint-inspector\" --base \"/eslint-plugin-etc-misc/eslint-inspector/\"",
64
65
  "build:eslint-inspector:local": "npx @eslint/config-inspector",
66
+ "build:types:cjs": "node -e \"require('node:fs').copyFileSync('dist/plugin.d.ts','dist/plugin.d.cts')\"",
65
67
  "changelog:generate": "git-cliff --config cliff.toml --output CHANGELOG.md",
66
68
  "changelog:preview": "git-cliff --config cliff.toml --unreleased",
67
69
  "changelog:release-notes": "git-cliff --config cliff.toml --latest --strip all",
@@ -98,7 +100,6 @@
98
100
  "docs:typedoc": "npm run --workspace docs/docusaurus docs:api",
99
101
  "docs:typedoc:local": "npm run --workspace docs/docusaurus docs:api:local",
100
102
  "docs:validate-links": "remark docs --use remark-validate-links --frail",
101
- "fix:imports:nodenext": "node scripts/fix-source-import-specifiers.mjs",
102
103
  "knip": "cross-env NODE_OPTIONS=--max_old_space_size=4096 NODE_NO_WARNINGS=1 npx knip -c knip.config.ts --include-libs --cache --cache-location .cache/knip --tsConfig tsconfig.json",
103
104
  "prelint": "npm run build",
104
105
  "lint": "cross-env NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache",
@@ -151,7 +152,7 @@
151
152
  "lint:unused-deps": "depcheck --ignores='@types/*,@testing-library/*,@vitest/*'",
152
153
  "lint:yaml": "cross-env NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache \"**/*.{yml,yaml}\" && echo \"YAML lint done!\"",
153
154
  "lint:yaml:fix": "cross-env NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache --fix \"**/*.{yml,yaml}\" && echo \"YAML lint (fix) done!\"",
154
- "madge:circular": "node scripts/lint-circular-deps.mjs",
155
+ "madge:circular": "madge --circular --no-spinner --ts-config tsconfig.json --extensions ts,tsx,js,jsx,mjs,cjs,cts,mts ./src --exclude \"(^|[\\/])(test|dist|node_modules|cache|.cache|coverage|build|eslint-inspector|temp|.docusaurus)($|[\\/])|\\.css$\"",
155
156
  "madge:leaves": "madge --leaves --no-spinner --ts-config tsconfig.json --extensions ts,tsx,js,jsx,mjs,cjs,cts,mts ./src --exclude \"(^|[\\/])(test|dist|node_modules|cache|.cache|coverage|build|eslint-inspector|temp|.docusaurus)($|[\\/])|\\.css$\"",
156
157
  "madge:orphans": "madge --orphans --no-spinner --ts-config tsconfig.json --extensions ts,tsx,js,jsx,mjs,cjs,cts,mts ./src --exclude \"(^|[\\/])(test|dist|node_modules|cache|.cache|coverage|build|eslint-inspector|temp|.docusaurus)($|[\\/])|\\.css$\"",
157
158
  "open:coverage": "open-cli coverage/index.html",
@@ -164,8 +165,6 @@
164
165
  "sync:readme-rules-table": "node scripts/sync-readme-rules-table.mjs",
165
166
  "pretest": "npm run build",
166
167
  "test": "vitest run",
167
- "test:autofix:fixtures": "cross-env TYPEFEST_AUTOFIX_SMOKE=1 vitest run test/autofix-fixtures-all-rules-smoke.test.ts",
168
- "test:autofix:fixtures:typed": "cross-env TYPEFEST_AUTOFIX_SMOKE=1 TYPEFEST_AUTOFIX_FIXTURE_DIR=test/fixtures/typed vitest run test/autofix-fixtures-all-rules-smoke.test.ts",
169
168
  "test:ci": "cross-env CI=true vitest run --reporter=default",
170
169
  "test:coverage": "vitest run --coverage --reporter=default",
171
170
  "test:coverage:detailed": "vitest run --coverage --reporter=verbose",
@@ -191,59 +190,58 @@
191
190
  },
192
191
  "dependencies": {
193
192
  "@eslint-community/eslint-utils": "^4.9.1",
194
- "@typescript-eslint/parser": "^8.58.0",
195
- "@typescript-eslint/type-utils": "^8.58.0",
196
- "@typescript-eslint/utils": "^8.58.0",
193
+ "@typescript-eslint/type-utils": "^8.59.0",
194
+ "@typescript-eslint/utils": "^8.59.0",
197
195
  "debug": "^4.4.3",
198
- "eslint-plugin-write-good-comments-2": "^1.0.6",
199
196
  "eslint-visitor-keys": "^5.0.1",
200
197
  "minimatch": "^10.2.5",
201
198
  "semver": "^7.7.4",
202
- "tinyglobby": "^0.2.15",
203
- "ts-extras": "^0.19.0",
199
+ "tinyglobby": "^0.2.16",
200
+ "ts-extras": "^1.0.0",
204
201
  "tslib": "^2.8.1",
205
202
  "tsutils": "^3.21.0",
206
- "type-fest": "^5.5.0"
203
+ "type-fest": "^5.6.0"
207
204
  },
208
205
  "devDependencies": {
209
206
  "@arethetypeswrong/cli": "^0.18.2",
210
- "@codecov/vite-plugin": "^1.9.1",
207
+ "@codecov/bundle-analyzer": "^2.0.1",
208
+ "@codecov/vite-plugin": "^2.0.1",
211
209
  "@csstools/stylelint-formatter-github": "^2.0.0",
212
- "@docusaurus/eslint-plugin": "^3.9.2",
210
+ "@docusaurus/eslint-plugin": "^3.10.0",
213
211
  "@double-great/remark-lint-alt-text": "^1.1.1",
214
- "@double-great/stylelint-a11y": "^3.4.9",
212
+ "@double-great/stylelint-a11y": "^3.4.10",
215
213
  "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
216
214
  "@eslint-react/eslint-plugin": "^4.2.3",
217
- "@eslint/compat": "^2.0.4",
218
- "@eslint/config-helpers": "^0.5.4",
219
- "@eslint/config-inspector": "^1.5.0",
215
+ "@eslint/compat": "^2.0.5",
216
+ "@eslint/config-helpers": "^0.5.5",
217
+ "@eslint/config-inspector": "^2.0.0",
220
218
  "@eslint/css": "^1.1.0",
221
219
  "@eslint/js": "^10.0.1",
222
220
  "@eslint/json": "^1.2.0",
223
221
  "@eslint/markdown": "^8.0.1",
224
- "@html-eslint/eslint-plugin": "^0.58.1",
225
- "@html-eslint/parser": "^0.58.1",
222
+ "@html-eslint/eslint-plugin": "^0.59.0",
223
+ "@html-eslint/parser": "^0.59.0",
226
224
  "@microsoft/eslint-plugin-sdl": "^1.1.0",
227
225
  "@microsoft/tsdoc-config": "^0.18.1",
228
- "@secretlint/secretlint-rule-anthropic": "^11.5.0",
229
- "@secretlint/secretlint-rule-aws": "^11.5.0",
230
- "@secretlint/secretlint-rule-database-connection-string": "^11.5.0",
231
- "@secretlint/secretlint-rule-gcp": "^11.5.0",
232
- "@secretlint/secretlint-rule-github": "^11.5.0",
233
- "@secretlint/secretlint-rule-no-dotenv": "^11.5.0",
234
- "@secretlint/secretlint-rule-no-homedir": "^11.5.0",
235
- "@secretlint/secretlint-rule-npm": "^11.5.0",
236
- "@secretlint/secretlint-rule-openai": "^11.5.0",
237
- "@secretlint/secretlint-rule-pattern": "^11.5.0",
238
- "@secretlint/secretlint-rule-preset-recommend": "^11.4.1",
239
- "@secretlint/secretlint-rule-privatekey": "^11.5.0",
240
- "@secretlint/secretlint-rule-secp256k1-privatekey": "^11.5.0",
241
- "@secretlint/types": "^11.5.0",
226
+ "@secretlint/secretlint-rule-anthropic": "^12.1.0",
227
+ "@secretlint/secretlint-rule-aws": "^12.1.0",
228
+ "@secretlint/secretlint-rule-database-connection-string": "^12.1.0",
229
+ "@secretlint/secretlint-rule-gcp": "^12.1.0",
230
+ "@secretlint/secretlint-rule-github": "^12.1.0",
231
+ "@secretlint/secretlint-rule-no-dotenv": "^12.1.0",
232
+ "@secretlint/secretlint-rule-no-homedir": "^12.1.0",
233
+ "@secretlint/secretlint-rule-npm": "^12.1.0",
234
+ "@secretlint/secretlint-rule-openai": "^12.1.0",
235
+ "@secretlint/secretlint-rule-pattern": "^12.1.0",
236
+ "@secretlint/secretlint-rule-preset-recommend": "^12.1.0",
237
+ "@secretlint/secretlint-rule-privatekey": "^12.1.0",
238
+ "@secretlint/secretlint-rule-secp256k1-privatekey": "^12.1.0",
239
+ "@secretlint/types": "^12.1.0",
242
240
  "@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
243
241
  "@stryker-ignorer/console-all": "^0.3.2",
244
- "@stryker-mutator/core": "^9.6.0",
245
- "@stryker-mutator/typescript-checker": "^9.6.0",
246
- "@stryker-mutator/vitest-runner": "^9.6.0",
242
+ "@stryker-mutator/core": "^9.6.1",
243
+ "@stryker-mutator/typescript-checker": "^9.6.1",
244
+ "@stryker-mutator/vitest-runner": "^9.6.1",
247
245
  "@stylelint-types/stylelint-order": "^7.0.1",
248
246
  "@stylelint-types/stylelint-stylistic": "^5.0.0",
249
247
  "@stylistic/eslint-plugin": "^5.10.0",
@@ -252,7 +250,7 @@
252
250
  "@types/eslint-plugin-security": "^3.0.1",
253
251
  "@types/htmlhint": "^1.1.5",
254
252
  "@types/madge": "^5.0.3",
255
- "@types/node": "^25.5.2",
253
+ "@types/node": "^25.6.0",
256
254
  "@types/postcss-clamp": "^4.1.3",
257
255
  "@types/postcss-flexbugs-fixes": "^5.0.3",
258
256
  "@types/postcss-html": "^1.5.3",
@@ -261,11 +259,13 @@
261
259
  "@types/postcss-normalize": "^9.0.4",
262
260
  "@types/postcss-reporter": "^7.0.5",
263
261
  "@types/sloc": "^0.2.3",
264
- "@typescript-eslint/eslint-plugin": "^8.58.0",
265
- "@typescript-eslint/rule-tester": "^8.58.0",
266
- "@vitest/coverage-v8": "^4.1.2",
267
- "@vitest/eslint-plugin": "^1.6.14",
268
- "@vitest/ui": "^4.1.2",
262
+ "@typescript-eslint/eslint-plugin": "^8.59.0",
263
+ "@typescript-eslint/parser": "^8.59.0",
264
+ "@typescript-eslint/rule-tester": "^8.59.0",
265
+ "@typpi/eslint-plugin-vite": "^1.0.12",
266
+ "@vitest/coverage-v8": "^4.1.4",
267
+ "@vitest/eslint-plugin": "^1.6.16",
268
+ "@vitest/ui": "^4.1.4",
269
269
  "actionlint": "^2.0.6",
270
270
  "all-contributors-cli": "^6.26.1",
271
271
  "cognitive-complexity-ts": "^0.8.1",
@@ -273,22 +273,28 @@
273
273
  "cross-env": "^10.1.0",
274
274
  "depcheck": "^1.4.7",
275
275
  "detect-secrets": "^1.0.6",
276
- "eslint": "^10.2.0",
276
+ "esbuild": "^0.27.7",
277
+ "eslint": "^10.2.1",
277
278
  "eslint-config-flat-gitignore": "^2.3.0",
278
279
  "eslint-config-prettier": "^10.1.8",
279
280
  "eslint-formatter-unix": "^9.0.1",
280
281
  "eslint-import-resolver-typescript": "^4.4.4",
281
282
  "eslint-plugin-array-func": "^5.1.1",
282
283
  "eslint-plugin-canonical": "^5.1.3",
283
- "eslint-plugin-case-police": "^2.2.0",
284
+ "eslint-plugin-case-police": "^2.2.1",
284
285
  "eslint-plugin-comment-length": "^2.3.0",
286
+ "eslint-plugin-copilot": "^1.0.8",
285
287
  "eslint-plugin-css-modules": "^2.12.0",
286
288
  "eslint-plugin-de-morgan": "^2.1.1",
287
289
  "eslint-plugin-depend": "^1.5.0",
290
+ "eslint-plugin-docusaurus-2": "^0.1.4",
288
291
  "eslint-plugin-eslint-plugin": "^7.3.2",
289
292
  "eslint-plugin-etc": "^2.0.3",
290
- "eslint-plugin-file-progress-2": "^3.4.4",
293
+ "eslint-plugin-etc-misc": "^1.0.7",
294
+ "eslint-plugin-file-progress-2": "^5.0.1",
295
+ "eslint-plugin-github-actions-2": "^1.0.6",
291
296
  "eslint-plugin-html": "^8.1.4",
297
+ "eslint-plugin-immutable-2": "^1.0.10",
292
298
  "eslint-plugin-import-x": "^4.16.2",
293
299
  "eslint-plugin-jsdoc": "^62.9.0",
294
300
  "eslint-plugin-jsonc": "^3.1.2",
@@ -299,7 +305,7 @@
299
305
  "eslint-plugin-module-interop": "^0.3.1",
300
306
  "eslint-plugin-n": "^17.24.0",
301
307
  "eslint-plugin-nitpick": "^0.12.0",
302
- "eslint-plugin-no-barrel-files": "^1.2.2",
308
+ "eslint-plugin-no-barrel-files": "^1.3.1",
303
309
  "eslint-plugin-no-explicit-type-exports": "^0.12.1",
304
310
  "eslint-plugin-no-function-declare-after-return": "^1.1.0",
305
311
  "eslint-plugin-no-lookahead-lookbehind-regexp": "^0.4.0",
@@ -309,41 +315,45 @@
309
315
  "eslint-plugin-no-use-extend-native": "^0.7.2",
310
316
  "eslint-plugin-node-dependencies": "^2.2.0",
311
317
  "eslint-plugin-package-json": "^0.91.1",
312
- "eslint-plugin-perfectionist": "^5.8.0",
318
+ "eslint-plugin-perfectionist": "^5.9.0",
313
319
  "eslint-plugin-prefer-arrow": "^1.2.3",
314
320
  "eslint-plugin-prettier": "^5.5.5",
315
321
  "eslint-plugin-promise": "^7.2.1",
316
322
  "eslint-plugin-redos": "^4.5.0",
317
323
  "eslint-plugin-regexp": "^3.1.0",
318
324
  "eslint-plugin-require-jsdoc": "^1.0.4",
325
+ "eslint-plugin-sdl-2": "^1.0.7",
319
326
  "eslint-plugin-security": "^4.0.0",
320
- "eslint-plugin-sonarjs": "^4.0.2",
327
+ "eslint-plugin-sonarjs": "^4.0.3",
321
328
  "eslint-plugin-sort-class-members": "^1.22.1",
329
+ "eslint-plugin-stylelint-2": "^1.0.14",
322
330
  "eslint-plugin-testing-library": "^7.16.2",
323
331
  "eslint-plugin-toml": "^1.3.1",
324
332
  "eslint-plugin-total-functions": "^7.1.0",
325
333
  "eslint-plugin-tsdoc": "^0.5.2",
326
- "eslint-plugin-tsdoc-require-2": "^1.0.7",
327
- "eslint-plugin-typefest": "^1.0.10",
334
+ "eslint-plugin-tsdoc-require-2": "^1.0.9",
335
+ "eslint-plugin-typedoc": "^1.1.4",
336
+ "eslint-plugin-typefest": "^1.2.3",
328
337
  "eslint-plugin-undefined-css-classes": "^0.1.5",
329
338
  "eslint-plugin-unicorn": "^64.0.0",
330
339
  "eslint-plugin-unused-imports": "^4.4.1",
340
+ "eslint-plugin-write-good-comments-2": "^1.0.6",
331
341
  "eslint-plugin-yml": "^3.3.1",
332
- "fast-check": "^4.6.0",
342
+ "fast-check": "^4.7.0",
333
343
  "git-cliff": "^2.12.0",
334
344
  "gitleaks-secret-scanner": "^2.1.1",
335
- "globals": "^17.4.0",
345
+ "globals": "^17.5.0",
336
346
  "htmlhint": "^1.9.2",
337
- "jscpd": "^4.0.8",
347
+ "jscpd": "^4.0.9",
338
348
  "jsonc-eslint-parser": "^3.1.0",
339
- "knip": "^6.3.0",
349
+ "knip": "^6.5.0",
340
350
  "leasot": "^14.4.0",
341
351
  "madge": "^8.0.0",
342
352
  "markdown-link-check": "^3.14.2",
343
- "npm-check-updates": "^20.0.0",
344
- "npm-package-json-lint": "^10.2.0",
353
+ "npm-check-updates": "^21.0.2",
354
+ "npm-package-json-lint": "^10.2.1",
345
355
  "picocolors": "^1.1.1",
346
- "postcss": "^8.5.8",
356
+ "postcss": "^8.5.10",
347
357
  "postcss-assets": "^6.0.0",
348
358
  "postcss-clamp": "^4.1.0",
349
359
  "postcss-combine-duplicated-selectors": "^10.0.3",
@@ -356,11 +366,11 @@
356
366
  "postcss-reporter": "^7.1.0",
357
367
  "postcss-round-subpixels": "^2.0.0",
358
368
  "postcss-scss": "^4.0.9",
359
- "postcss-sort-media-queries": "^6.3.3",
369
+ "postcss-sort-media-queries": "^6.5.0",
360
370
  "postcss-styled-jsx": "^1.0.1",
361
371
  "postcss-styled-syntax": "^0.7.1",
362
372
  "postcss-viewport-height-correction": "^1.1.1",
363
- "prettier": "^3.8.1",
373
+ "prettier": "^3.8.3",
364
374
  "prettier-plugin-ini": "^1.3.0",
365
375
  "prettier-plugin-interpolated-html-tags": "^2.0.1",
366
376
  "prettier-plugin-jsdoc": "^1.8.0",
@@ -369,7 +379,9 @@
369
379
  "prettier-plugin-multiline-arrays": "^4.1.5",
370
380
  "prettier-plugin-packagejson": "^3.0.2",
371
381
  "prettier-plugin-properties": "^0.3.1",
382
+ "prettier-plugin-sh": "^0.18.1",
372
383
  "prettier-plugin-sort-json": "^4.2.0",
384
+ "prettier-plugin-sql": "^0.20.0",
373
385
  "prettier-plugin-toml": "^2.0.6",
374
386
  "publint": "^0.3.18",
375
387
  "recheck-jar": "^4.5.0",
@@ -480,10 +492,10 @@
480
492
  "remark-validate-links": "^13.1.0",
481
493
  "remark-wiki-link": "^2.0.1",
482
494
  "rimraf": "^6.1.3",
483
- "secretlint": "^11.4.1",
495
+ "secretlint": "^12.1.0",
484
496
  "sloc": "^0.3.2",
485
497
  "sort-package-json": "^3.6.1",
486
- "stylelint": "^17.6.0",
498
+ "stylelint": "^17.8.0",
487
499
  "stylelint-actions-formatters": "^16.3.1",
488
500
  "stylelint-checkstyle-formatter": "^0.1.2",
489
501
  "stylelint-codeframe-formatter": "^1.2.0",
@@ -511,7 +523,7 @@
511
523
  "stylelint-no-unresolved-module": "^2.5.2",
512
524
  "stylelint-no-unsupported-browser-features": "^8.1.1",
513
525
  "stylelint-order": "^8.1.1",
514
- "stylelint-plugin-defensive-css": "^2.8.1",
526
+ "stylelint-plugin-defensive-css": "^2.9.1",
515
527
  "stylelint-plugin-logical-css": "^2.1.0",
516
528
  "stylelint-plugin-use-baseline": "^1.4.1",
517
529
  "stylelint-prettier": "^5.0.3",
@@ -522,19 +534,19 @@
522
534
  "stylelint-value-no-unknown-custom-properties": "^6.1.1",
523
535
  "toml-eslint-parser": "^1.0.3",
524
536
  "ts-unused-exports": "^11.0.1",
525
- "typedoc": "^0.28.18",
526
- "typescript": "^6.0.2",
527
- "typescript-eslint": "^8.58.0",
537
+ "typedoc": "^0.28.19",
538
+ "typescript": "^6.0.3",
539
+ "typescript-eslint": "^8.59.0",
528
540
  "typesync": "^0.14.3",
529
541
  "vfile": "^6.0.3",
530
- "vite": "^8.0.3",
542
+ "vite": "^8.0.9",
531
543
  "vite-tsconfig-paths": "^6.1.1",
532
- "vitest": "^4.1.2",
544
+ "vitest": "^4.1.4",
533
545
  "yaml-eslint-parser": "^2.0.0",
534
546
  "yamllint-js": "^0.2.4"
535
547
  },
536
548
  "peerDependencies": {
537
- "eslint": "^9.0.0 || ^10.2.0",
549
+ "eslint": "^9.0.0 || ^10.2.1",
538
550
  "typescript": ">=5.0.0"
539
551
  },
540
552
  "packageManager": "npm@11.12.1",