@brnshkr/config 0.0.1-alpha.13 → 0.0.1-alpha.15

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.
@@ -1,17 +1,68 @@
1
- import { a as isModuleEnabledByDefault, b as packageOrganization, d as MODULES, f as PACKAGES, h as setModuleEnabled, i as GLOB_IGNORES, m as resolvePackages, n as MAX_LEN, p as isModuleEnabled, r as QUOTES, s as objectEntries, t as INDENT } from "../shared.mjs";
2
-
3
- //#region src/js/stylelint/configs/baseline.ts
1
+ import { a as resolvePackagesSharedSynchronously, l as objectEntries, n as GLOB_IGNORES, p as packageOrganization, r as isModuleEnabledByDefault, s as STYLELINT_PACKAGES, t as QUOTES } from "../shared.mjs";
2
+ //#region ../src/js/stylelint/utils/module.ts
3
+ const MODULES = {
4
+ baseline: {
5
+ name: "baseline",
6
+ packages: { requiredAll: [STYLELINT_PACKAGES.STYLELINT_PLUGIN_USE_BASELINE] }
7
+ },
8
+ defensive: {
9
+ name: "defensive",
10
+ packages: { requiredAll: [STYLELINT_PACKAGES.STYLELINT_PLUGIN_DEFENSIVE_CSS] }
11
+ },
12
+ html: {
13
+ name: "html",
14
+ packages: { requiredAll: [STYLELINT_PACKAGES.POSTCSS_HTML, STYLELINT_PACKAGES.STYLELINT_CONFIG_HTML] }
15
+ },
16
+ logical: {
17
+ name: "logical",
18
+ packages: { requiredAll: [STYLELINT_PACKAGES.STYLELINT_PLUGIN_LOGICAL_CSS] }
19
+ },
20
+ modules: {
21
+ name: "modules",
22
+ packages: { requiredAll: [STYLELINT_PACKAGES.STYLELINT_CONFIG_CSS_MODULES] }
23
+ },
24
+ nesting: {
25
+ name: "nesting",
26
+ packages: { requiredAll: [STYLELINT_PACKAGES.STYLELINT_USE_NESTING] }
27
+ },
28
+ order: {
29
+ name: "order",
30
+ packages: { requiredAll: [STYLELINT_PACKAGES.STYLELINT_ORDER, STYLELINT_PACKAGES.STYLELINT_CONFIG_RECESS_ORDER] }
31
+ },
32
+ scss: {
33
+ name: "scss",
34
+ packages: {
35
+ requiredAll: [STYLELINT_PACKAGES.STYLELINT_CONFIG_STANDARD_SCSS],
36
+ optional: [STYLELINT_PACKAGES.STYLELINT_PLUGIN_USE_BASELINE]
37
+ }
38
+ },
39
+ strict: {
40
+ name: "strict",
41
+ packages: { requiredAll: [STYLELINT_PACKAGES.STYLELINT_DECLARATION_STRICT_VALUE] }
42
+ },
43
+ style: {
44
+ name: "style",
45
+ packages: { requiredAll: [STYLELINT_PACKAGES.STYLISTIC_STYLELINT_CONFIG] }
46
+ }
47
+ };
48
+ const resolvePackages = (moduleInfo, type) => resolvePackagesSharedSynchronously(moduleInfo, type);
49
+ const enabledStates = {};
50
+ const isModuleEnabled = (moduleInfo) => enabledStates[moduleInfo.name] ?? isModuleEnabledByDefault(moduleInfo);
51
+ const setModuleEnabled = (moduleInfo, state) => {
52
+ enabledStates[moduleInfo.name] = state;
53
+ };
54
+ //#endregion
55
+ //#region ../src/js/stylelint/configs/baseline.ts
4
56
  const baseline = () => {
5
57
  const { requiredAll: [isStylelintPluginUseBaselineInstalled] } = resolvePackages(MODULES.baseline);
6
58
  if (!isStylelintPluginUseBaselineInstalled) return [];
7
59
  return [{
8
- plugins: PACKAGES.STYLELINT_PLUGIN_USE_BASELINE,
60
+ plugins: STYLELINT_PACKAGES.STYLELINT_PLUGIN_USE_BASELINE,
9
61
  rules: { "plugin/use-baseline": true }
10
62
  }];
11
63
  };
12
-
13
64
  //#endregion
14
- //#region src/js/stylelint/configs/css.ts
65
+ //#region ../src/js/stylelint/configs/css.ts
15
66
  const css = () => [{
16
67
  extends: "stylelint-config-standard",
17
68
  reportDescriptionlessDisables: true,
@@ -67,34 +118,24 @@ const css = () => [{
67
118
  }]
68
119
  }
69
120
  }];
70
-
71
121
  //#endregion
72
- //#region src/js/stylelint/configs/defensive.ts
122
+ //#region ../src/js/stylelint/configs/defensive.ts
73
123
  const defensive = () => {
74
124
  const { requiredAll: [isStylelintPluginDefensiveCssInstalled] } = resolvePackages(MODULES.defensive);
75
125
  if (!isStylelintPluginDefensiveCssInstalled) return [];
76
126
  return [{
77
- plugins: PACKAGES.STYLELINT_PLUGIN_DEFENSIVE_CSS,
78
- rules: { "plugin/use-defensive-css": [true, {
79
- "accidental-hover": true,
80
- "background-repeat": true,
81
- "flex-wrapping": true,
82
- "scroll-chaining": true,
83
- "scrollbar-gutter": true,
84
- "vendor-prefix-grouping": true
85
- }] }
127
+ plugins: STYLELINT_PACKAGES.STYLELINT_PLUGIN_DEFENSIVE_CSS,
128
+ extends: `${STYLELINT_PACKAGES.STYLELINT_PLUGIN_DEFENSIVE_CSS}/configs/strict`
86
129
  }];
87
130
  };
88
-
89
131
  //#endregion
90
- //#region src/js/stylelint/types/overrides.ts
132
+ //#region ../src/js/stylelint/types/overrides.ts
91
133
  const OVERRIDES = {
92
134
  SCSS: "scss",
93
135
  SVELTE: "svelte"
94
136
  };
95
-
96
137
  //#endregion
97
- //#region src/js/stylelint/utils/config.ts
138
+ //#region ../src/js/stylelint/utils/config.ts
98
139
  const buildOverrideName = (override) => [packageOrganization, override].filter(Boolean).join("/");
99
140
  const isValidGlobalAdditionalConfigKey = (key) => [
100
141
  "extends",
@@ -182,14 +223,13 @@ const includeConfigs = (config, configsToInclude) => {
182
223
  if (configToInclude.validate !== void 0) config.validate = configToInclude.validate;
183
224
  }
184
225
  };
185
-
186
226
  //#endregion
187
- //#region src/js/stylelint/configs/html.ts
227
+ //#region ../src/js/stylelint/configs/html.ts
188
228
  const html = () => {
189
229
  const { requiredAll: [isPostcssHtmlInstalled, isStylelintConfigHtmlInstalled] } = resolvePackages(MODULES.html);
190
230
  if (!isPostcssHtmlInstalled || !isStylelintConfigHtmlInstalled) return [];
191
231
  return [{
192
- extends: PACKAGES.STYLELINT_CONFIG_HTML,
232
+ extends: STYLELINT_PACKAGES.STYLELINT_CONFIG_HTML,
193
233
  overrides: [{
194
234
  name: buildOverrideName(OVERRIDES.SVELTE),
195
235
  files: ["**/*.svelte"],
@@ -200,59 +240,50 @@ const html = () => {
200
240
  }]
201
241
  }];
202
242
  };
203
-
204
243
  //#endregion
205
- //#region src/js/stylelint/configs/ignores.ts
244
+ //#region ../src/js/stylelint/configs/ignores.ts
206
245
  const ignores = () => [{ ignoreFiles: GLOB_IGNORES.map((glob) => glob.replace(/^\*\*/v, process.cwd())) }];
207
-
208
246
  //#endregion
209
- //#region src/js/stylelint/configs/logical.ts
247
+ //#region ../src/js/stylelint/configs/logical.ts
210
248
  const logical = () => {
211
249
  const { requiredAll: [isStylelintPluginLogicalCssInstalled] } = resolvePackages(MODULES.logical);
212
250
  if (!isStylelintPluginLogicalCssInstalled) return [];
213
251
  return [{
214
- plugins: PACKAGES.STYLELINT_PLUGIN_LOGICAL_CSS,
215
- rules: {
216
- "plugin/use-logical-properties-and-values": true,
217
- "plugin/use-logical-units": true
218
- }
252
+ plugins: STYLELINT_PACKAGES.STYLELINT_PLUGIN_LOGICAL_CSS,
253
+ extends: [`${STYLELINT_PACKAGES.STYLELINT_PLUGIN_LOGICAL_CSS}/configs/recommended`]
219
254
  }];
220
255
  };
221
-
222
256
  //#endregion
223
- //#region src/js/stylelint/configs/modules.ts
257
+ //#region ../src/js/stylelint/configs/modules.ts
224
258
  const modules = () => {
225
259
  const { requiredAll: [isStylelintConfigCssModulesInstalled] } = resolvePackages(MODULES.modules);
226
260
  if (!isStylelintConfigCssModulesInstalled) return [];
227
- return [{ extends: PACKAGES.STYLELINT_CONFIG_CSS_MODULES }];
261
+ return [{ extends: STYLELINT_PACKAGES.STYLELINT_CONFIG_CSS_MODULES }];
228
262
  };
229
-
230
263
  //#endregion
231
- //#region src/js/stylelint/configs/nesting.ts
264
+ //#region ../src/js/stylelint/configs/nesting.ts
232
265
  const nesting = () => {
233
266
  const { requiredAll: [isStylelintUseNestingInstalled] } = resolvePackages(MODULES.nesting);
234
267
  if (!isStylelintUseNestingInstalled) return [];
235
268
  return [{
236
- plugins: PACKAGES.STYLELINT_USE_NESTING,
269
+ plugins: STYLELINT_PACKAGES.STYLELINT_USE_NESTING,
237
270
  rules: { "csstools/use-nesting": ["always", { syntax: isModuleEnabled(MODULES.scss) ? "scss" : "css" }] }
238
271
  }];
239
272
  };
240
-
241
273
  //#endregion
242
- //#region src/js/stylelint/configs/order.ts
274
+ //#region ../src/js/stylelint/configs/order.ts
243
275
  const order = () => {
244
276
  const { requiredAll: [isStylelintConfigRecessOrderInstalled] } = resolvePackages(MODULES.order);
245
277
  if (!isStylelintConfigRecessOrderInstalled) return [];
246
- return [{ extends: PACKAGES.STYLELINT_CONFIG_RECESS_ORDER }];
278
+ return [{ extends: STYLELINT_PACKAGES.STYLELINT_CONFIG_RECESS_ORDER }];
247
279
  };
248
-
249
280
  //#endregion
250
- //#region src/js/stylelint/configs/scss.ts
281
+ //#region ../src/js/stylelint/configs/scss.ts
251
282
  const scss = () => {
252
283
  const { requiredAll: [isStylelintConfigStandardScssInstalled], optional: [isStylelintPluginUseBaselineInstalled] } = resolvePackages(MODULES.scss);
253
284
  if (!isStylelintConfigStandardScssInstalled) return [];
254
285
  return [{
255
- extends: PACKAGES.STYLELINT_CONFIG_STANDARD_SCSS,
286
+ extends: STYLELINT_PACKAGES.STYLELINT_CONFIG_STANDARD_SCSS,
256
287
  rules: {
257
288
  "scss/at-each-key-value-single-line": true,
258
289
  "scss/at-mixin-argumentless-call-parentheses": "always",
@@ -298,14 +329,13 @@ const scss = () => {
298
329
  }]
299
330
  }];
300
331
  };
301
-
302
332
  //#endregion
303
- //#region src/js/stylelint/configs/strict.ts
333
+ //#region ../src/js/stylelint/configs/strict.ts
304
334
  const strict = () => {
305
335
  const { requiredAll: [isStylelintDeclarationStrictValueInstalled] } = resolvePackages(MODULES.strict);
306
336
  if (!isStylelintDeclarationStrictValueInstalled) return [];
307
337
  return [{
308
- plugins: PACKAGES.STYLELINT_DECLARATION_STRICT_VALUE,
338
+ plugins: STYLELINT_PACKAGES.STYLELINT_DECLARATION_STRICT_VALUE,
309
339
  rules: { "scale-unlimited/declaration-strict-value": [
310
340
  "/color$/",
311
341
  "font-size",
@@ -313,14 +343,13 @@ const strict = () => {
313
343
  ] }
314
344
  }];
315
345
  };
316
-
317
346
  //#endregion
318
- //#region src/js/stylelint/configs/style.ts
347
+ //#region ../src/js/stylelint/configs/style.ts
319
348
  const style = () => {
320
349
  const { requiredAll: [isStylisticStylelintConfigInstalled] } = resolvePackages(MODULES.style);
321
350
  if (!isStylisticStylelintConfigInstalled) return [];
322
351
  return [{
323
- extends: PACKAGES.STYLISTIC_STYLELINT_CONFIG,
352
+ extends: STYLELINT_PACKAGES.STYLISTIC_STYLELINT_CONFIG,
324
353
  rules: {
325
354
  "@stylistic/at-rule-name-newline-after": "always-multi-line",
326
355
  "@stylistic/at-rule-semicolon-space-before": "never",
@@ -329,9 +358,9 @@ const style = () => {
329
358
  "@stylistic/declaration-block-semicolon-newline-after": "always",
330
359
  "@stylistic/function-comma-newline-before": "never-multi-line",
331
360
  "@stylistic/function-comma-space-before": "never-single-line",
332
- "@stylistic/indentation": INDENT,
361
+ "@stylistic/indentation": 2,
333
362
  "@stylistic/linebreaks": "unix",
334
- "@stylistic/max-line-length": MAX_LEN,
363
+ "@stylistic/max-line-length": 120,
335
364
  "@stylistic/media-query-list-comma-newline-after": "always",
336
365
  "@stylistic/media-query-list-comma-newline-before": "never-multi-line",
337
366
  "@stylistic/named-grid-areas-alignment": [true, { alignQuotes: true }],
@@ -343,9 +372,8 @@ const style = () => {
343
372
  }
344
373
  }];
345
374
  };
346
-
347
375
  //#endregion
348
- //#region src/js/stylelint/configs/index.ts
376
+ //#region ../src/js/stylelint/configs/index.ts
349
377
  const configs = {
350
378
  baseline,
351
379
  css,
@@ -360,9 +388,8 @@ const configs = {
360
388
  strict,
361
389
  style
362
390
  };
363
-
364
391
  //#endregion
365
- //#region src/js/stylelint/index.ts
392
+ //#region ../src/js/stylelint/index.ts
366
393
  const getConfig = (optionsAndGlobalConfig, ...additionalConfigs) => {
367
394
  const resolvedOptions = {
368
395
  baseline: isModuleEnabledByDefault(MODULES.baseline),
@@ -404,6 +431,5 @@ const getConfig = (optionsAndGlobalConfig, ...additionalConfigs) => {
404
431
  return config;
405
432
  };
406
433
  var stylelint_default = getConfig();
407
-
408
434
  //#endregion
409
- export { stylelint_default as default, getConfig };
435
+ export { stylelint_default as default, getConfig };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@brnshkr/config",
4
- "version": "0.0.1-alpha.13",
4
+ "version": "0.0.1-alpha.15",
5
5
  "description": "Centralized collection of configuration and tooling used across all @brnshkr projects",
6
6
  "license": "MIT",
7
7
  "author": "Patrick Rupp",
@@ -27,7 +27,6 @@
27
27
  "build": "bun --bun typegen && bun --bun tsdown --config ./conf/tsdown.config.ts",
28
28
  "watch": "bun --bun tsdown --config ./conf/tsdown.config.ts --watch",
29
29
  "typegen": "bun --bun scripts/typegen.ts",
30
- "changelog": "bun --bun conventional-changelog",
31
30
  "install-hooks": "bun --bun simple-git-hooks"
32
31
  },
33
32
  "exports": {
@@ -44,55 +43,52 @@
44
43
  "./dist"
45
44
  ],
46
45
  "dependencies": {
47
- "@eslint/js": "^9.39.2",
46
+ "@eslint/js": "^10.0.1",
48
47
  "confusing-browser-globals": "^1.0.11",
49
- "eslint-flat-config-utils": "^3.0.0",
50
- "globals": "^17.3.0",
48
+ "eslint-flat-config-utils": "^3.0.2",
49
+ "globals": "^17.4.0",
51
50
  "local-pkg": "^1.1.2",
52
51
  "stylelint-config-standard": "^40.0.0"
53
52
  },
54
53
  "peerDependencies": {
55
- "@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
56
- "@eslint/css": "^0.14.1",
57
- "@eslint/json": "^1.0.0",
54
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
55
+ "@eslint/css": "^1.0.0",
56
+ "@eslint/json": "^1.1.0",
58
57
  "@eslint/markdown": "^7.5.1",
59
- "@stylistic/eslint-plugin": "^5.7.1",
58
+ "@stylistic/eslint-plugin": "^5.10.0",
60
59
  "@stylistic/stylelint-config": "^4.0.0",
61
- "@vitest/eslint-plugin": "^1.6.6",
62
- "eslint": "^9.39.2",
63
- "eslint-config-flat-gitignore": "^2.1.0",
60
+ "@vitest/eslint-plugin": "^1.6.12",
61
+ "eslint": "^10.0.3",
62
+ "eslint-config-flat-gitignore": "^2.2.1",
64
63
  "eslint-import-resolver-typescript": "^4.4.4",
65
64
  "eslint-merge-processors": "^2.0.0",
66
- "eslint-plugin-antfu": "^3.1.3",
67
- "eslint-plugin-import-x": "^4.16.1",
68
- "eslint-plugin-jsdoc": "^62.5.0",
69
- "eslint-plugin-jsonc": "^2.21.0",
70
- "eslint-plugin-n": "^17.23.2",
71
- "eslint-plugin-perfectionist": "^5.4.0",
72
- "eslint-plugin-regexp": "^3.0.0",
73
- "eslint-plugin-svelte": "^3.14.0",
74
- "eslint-plugin-toml": "^1.0.3",
75
- "eslint-plugin-unicorn": "^62.0.0",
76
- "eslint-plugin-unused-imports": "^4.3.0",
77
- "eslint-plugin-yml": "^3.0.0",
78
- "jsonc-eslint-parser": "^2.4.2",
65
+ "eslint-plugin-antfu": "^3.2.2",
66
+ "eslint-plugin-import-x": "^4.16.2",
67
+ "eslint-plugin-jsdoc": "^62.8.0",
68
+ "eslint-plugin-jsonc": "^3.1.2",
69
+ "eslint-plugin-n": "^17.24.0",
70
+ "eslint-plugin-perfectionist": "^5.7.0",
71
+ "eslint-plugin-regexp": "^3.1.0",
72
+ "eslint-plugin-svelte": "^3.15.2",
73
+ "eslint-plugin-toml": "^1.3.1",
74
+ "eslint-plugin-unicorn": "^63.0.0",
75
+ "eslint-plugin-unused-imports": "^4.4.1",
76
+ "eslint-plugin-yml": "^3.3.1",
79
77
  "postcss-html": "^1.8.1",
80
- "stylelint": "^17.1.0",
78
+ "stylelint": "^17.4.0",
81
79
  "stylelint-config-css-modules": "^4.6.0",
82
80
  "stylelint-config-html": "^1.1.0",
83
- "stylelint-config-recess-order": "^7.6.0",
81
+ "stylelint-config-recess-order": "^7.7.0",
84
82
  "stylelint-config-standard-scss": "^17.0.0",
85
- "stylelint-declaration-strict-value": "^1.10.11",
86
- "stylelint-order": "^7.0.1",
87
- "stylelint-plugin-defensive-css": "^1.1.1",
88
- "stylelint-plugin-logical-css": "^1.3.0",
89
- "stylelint-plugin-use-baseline": "^1.2.1",
90
- "stylelint-use-nesting": "^6.0.1",
91
- "svelte": "^5.49.1",
92
- "toml-eslint-parser": "^1.0.3",
83
+ "stylelint-declaration-strict-value": "^1.11.1",
84
+ "stylelint-order": "^8.1.1",
85
+ "stylelint-plugin-defensive-css": "^2.7.0",
86
+ "stylelint-plugin-logical-css": "^2.0.2",
87
+ "stylelint-plugin-use-baseline": "^1.2.7",
88
+ "stylelint-use-nesting": "^6.0.2",
89
+ "svelte": "^5.53.13",
93
90
  "typescript": "^5.9.3",
94
- "typescript-eslint": "^8.54.0",
95
- "yaml-eslint-parser": "^2.0.0"
91
+ "typescript-eslint": "^8.57.1"
96
92
  },
97
93
  "peerDependenciesMeta": {
98
94
  "@eslint-community/eslint-plugin-eslint-comments": {
@@ -161,9 +157,6 @@
161
157
  "eslint-plugin-yml": {
162
158
  "optional": true
163
159
  },
164
- "jsonc-eslint-parser": {
165
- "optional": true
166
- },
167
160
  "postcss-html": {
168
161
  "optional": true
169
162
  },
@@ -203,77 +196,68 @@
203
196
  "svelte": {
204
197
  "optional": true
205
198
  },
206
- "toml-eslint-parser": {
207
- "optional": true
208
- },
209
199
  "typescript": {
210
200
  "optional": true
211
201
  },
212
202
  "typescript-eslint": {
213
203
  "optional": true
214
- },
215
- "yaml-eslint-parser": {
216
- "optional": true
217
204
  }
218
205
  },
219
206
  "devDependencies": {
220
- "@commitlint/config-conventional": "20.4.0",
221
- "@commitlint/types": "20.4.0",
222
- "@eslint-community/eslint-plugin-eslint-comments": "4.6.0",
223
- "@eslint/config-inspector": "1.4.2",
224
- "@eslint/css": "0.14.1",
225
- "@eslint/json": "1.0.0",
207
+ "@commitlint/config-conventional": "20.5.0",
208
+ "@commitlint/types": "20.5.0",
209
+ "@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
210
+ "@eslint/config-inspector": "1.5.0",
211
+ "@eslint/css": "1.0.0",
212
+ "@eslint/json": "1.1.0",
226
213
  "@eslint/markdown": "7.5.1",
227
- "@stylistic/eslint-plugin": "5.7.1",
214
+ "@stylistic/eslint-plugin": "5.10.0",
228
215
  "@stylistic/stylelint-config": "4.0.0",
229
216
  "@total-typescript/ts-reset": "0.6.1",
230
- "@types/bun": "1.3.8",
217
+ "@types/bun": "1.3.10",
231
218
  "@types/confusing-browser-globals": "1.0.3",
232
- "@typescript-eslint/utils": "8.54.0",
233
- "@vitest/eslint-plugin": "1.6.6",
234
- "commitlint": "20.4.0",
235
- "conventional-changelog": "7.1.1",
236
- "eslint": "9.39.2",
237
- "eslint-config-flat-gitignore": "2.1.0",
219
+ "@typescript-eslint/utils": "8.57.1",
220
+ "@vitest/eslint-plugin": "1.6.12",
221
+ "commitlint": "20.5.0",
222
+ "conventional-changelog": "7.2.0",
223
+ "eslint": "10.0.3",
224
+ "eslint-config-flat-gitignore": "2.2.1",
238
225
  "eslint-import-resolver-typescript": "4.4.4",
239
226
  "eslint-merge-processors": "2.0.0",
240
- "eslint-plugin-antfu": "3.1.3",
241
- "eslint-plugin-import-x": "4.16.1",
242
- "eslint-plugin-jsdoc": "62.5.0",
243
- "eslint-plugin-jsonc": "2.21.0",
244
- "eslint-plugin-n": "17.23.2",
245
- "eslint-plugin-perfectionist": "5.4.0",
246
- "eslint-plugin-regexp": "3.0.0",
247
- "eslint-plugin-svelte": "3.14.0",
248
- "eslint-plugin-toml": "1.0.3",
249
- "eslint-plugin-unicorn": "62.0.0",
250
- "eslint-plugin-unused-imports": "4.3.0",
251
- "eslint-plugin-yml": "3.0.0",
252
- "eslint-typegen": "2.3.0",
227
+ "eslint-plugin-antfu": "3.2.2",
228
+ "eslint-plugin-import-x": "4.16.2",
229
+ "eslint-plugin-jsdoc": "62.8.0",
230
+ "eslint-plugin-jsonc": "3.1.2",
231
+ "eslint-plugin-n": "17.24.0",
232
+ "eslint-plugin-perfectionist": "5.7.0",
233
+ "eslint-plugin-regexp": "3.1.0",
234
+ "eslint-plugin-svelte": "3.15.2",
235
+ "eslint-plugin-toml": "1.3.1",
236
+ "eslint-plugin-unicorn": "63.0.0",
237
+ "eslint-plugin-unused-imports": "4.4.1",
238
+ "eslint-plugin-yml": "3.3.1",
239
+ "eslint-typegen": "2.3.1",
253
240
  "jiti": "2.6.1",
254
- "jsonc-eslint-parser": "2.4.2",
255
- "node-modules-inspector": "1.3.1",
241
+ "node-modules-inspector": "1.4.2",
256
242
  "postcss-html": "1.8.1",
257
243
  "simple-git-hooks": "2.13.1",
258
- "stylelint": "17.1.0",
244
+ "stylelint": "17.4.0",
259
245
  "stylelint-config-css-modules": "4.6.0",
260
246
  "stylelint-config-html": "1.1.0",
261
- "stylelint-config-recess-order": "7.6.0",
247
+ "stylelint-config-recess-order": "7.7.0",
262
248
  "stylelint-config-standard-scss": "17.0.0",
263
- "stylelint-declaration-strict-value": "1.10.11",
264
- "stylelint-order": "7.0.1",
265
- "stylelint-plugin-defensive-css": "1.1.1",
266
- "stylelint-plugin-logical-css": "1.3.0",
267
- "stylelint-plugin-use-baseline": "1.2.1",
268
- "stylelint-use-nesting": "6.0.1",
269
- "svelte": "5.49.1",
270
- "toml-eslint-parser": "1.0.3",
271
- "tsdown": "0.16.0",
272
- "type-fest": "5.4.3",
249
+ "stylelint-declaration-strict-value": "1.11.1",
250
+ "stylelint-order": "8.1.1",
251
+ "stylelint-plugin-defensive-css": "2.7.0",
252
+ "stylelint-plugin-logical-css": "2.0.2",
253
+ "stylelint-plugin-use-baseline": "1.2.7",
254
+ "stylelint-use-nesting": "6.0.2",
255
+ "svelte": "5.53.13",
256
+ "tsdown": "0.21.4",
257
+ "type-fest": "5.4.4",
273
258
  "typescript": "5.9.3",
274
- "typescript-eslint": "8.54.0",
275
- "vitest": "4.0.18",
276
- "yaml-eslint-parser": "2.0.0"
259
+ "typescript-eslint": "8.57.1",
260
+ "vitest": "4.1.0"
277
261
  },
278
262
  "keywords": [
279
263
  "dev",