@jsse/eslint-config 0.4.27 → 0.4.28
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.
- package/CHANGELOG.md +6 -0
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +4 -207
- package/dist/index.js +2 -9
- package/dist/{version-UD6aSD5j.js → version-BzlliPF3.js} +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
package/dist/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -15,13 +15,10 @@ import * as _stylistic_eslint_plugin0 from "@stylistic/eslint-plugin";
|
|
|
15
15
|
import { FlatGitignoreOptions } from "eslint-config-flat-gitignore";
|
|
16
16
|
import * as eslint_plugin_react0 from "eslint-plugin-react";
|
|
17
17
|
import * as jsonc_eslint_parser0 from "jsonc-eslint-parser";
|
|
18
|
-
import * as yaml_eslint_parser0 from "yaml-eslint-parser";
|
|
19
18
|
import * as eslint0 from "eslint";
|
|
20
19
|
import { Linter, Rule } from "eslint";
|
|
21
20
|
import * as eslint_plugin_jsonc_meta0 from "eslint-plugin-jsonc/meta";
|
|
22
21
|
import * as eslint_plugin_jsonc_types0 from "eslint-plugin-jsonc/types";
|
|
23
|
-
import * as eslint_plugin_yml_lib_meta_js0 from "eslint-plugin-yml/lib/meta.js";
|
|
24
|
-
import * as eslint_plugin_yml_lib_types_js0 from "eslint-plugin-yml/lib/types.js";
|
|
25
22
|
|
|
26
23
|
//#region src/generated/dts/builtins.d.ts
|
|
27
24
|
interface BuiltinsRuleOptions {
|
|
@@ -9714,6 +9711,7 @@ interface StylisticRuleOptions {
|
|
|
9714
9711
|
/**
|
|
9715
9712
|
* Enforce props alphabetical sorting
|
|
9716
9713
|
* @see https://eslint.style/rules/jsx-sort-props
|
|
9714
|
+
* @deprecated
|
|
9717
9715
|
*/
|
|
9718
9716
|
"@stylistic/jsx-sort-props"?: Linter.RuleEntry<StylisticJsxSortProps>;
|
|
9719
9717
|
/**
|
|
@@ -11215,7 +11213,7 @@ type StylisticTypeAnnotationSpacing = [] | [{
|
|
|
11215
11213
|
after?: boolean;
|
|
11216
11214
|
overrides?: {
|
|
11217
11215
|
colon?: _StylisticTypeAnnotationSpacing_SpacingConfig;
|
|
11218
|
-
arrow?: _StylisticTypeAnnotationSpacing_SpacingConfig;
|
|
11216
|
+
arrow?: "ignore" | _StylisticTypeAnnotationSpacing_SpacingConfig;
|
|
11219
11217
|
variable?: _StylisticTypeAnnotationSpacing_SpacingConfig;
|
|
11220
11218
|
parameter?: _StylisticTypeAnnotationSpacing_SpacingConfig;
|
|
11221
11219
|
property?: _StylisticTypeAnnotationSpacing_SpacingConfig;
|
|
@@ -15329,7 +15327,7 @@ declare function defineConfig(options?: OptionsConfig & Config, ...userConfigs:
|
|
|
15329
15327
|
type DefineConfig = typeof defineConfig;
|
|
15330
15328
|
//#endregion
|
|
15331
15329
|
//#region src/generated/version.d.ts
|
|
15332
|
-
declare const VERSION = "0.4.
|
|
15330
|
+
declare const VERSION = "0.4.28";
|
|
15333
15331
|
declare namespace globs_d_exports {
|
|
15334
15332
|
export { GLOB_ALL_SRC, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_JS_SRC_EXT, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSCONFIG, GLOB_TSX, GLOB_TS_SRC_EXT, GLOB_YAML };
|
|
15335
15333
|
}
|
|
@@ -16397,207 +16395,6 @@ declare function importJsoncLibs(): Promise<{
|
|
|
16397
16395
|
getStaticJSONValue: typeof jsonc_eslint_parser0.getStaticJSONValue;
|
|
16398
16396
|
};
|
|
16399
16397
|
}>;
|
|
16400
|
-
declare function importYmlLibs(): Promise<{
|
|
16401
|
-
parserYaml: typeof yaml_eslint_parser0;
|
|
16402
|
-
pluginYaml: {
|
|
16403
|
-
meta: typeof eslint_plugin_yml_lib_meta_js0;
|
|
16404
|
-
configs: {
|
|
16405
|
-
base: {
|
|
16406
|
-
plugins: string[];
|
|
16407
|
-
overrides: {
|
|
16408
|
-
files: string[];
|
|
16409
|
-
parser: string;
|
|
16410
|
-
rules: {
|
|
16411
|
-
"no-irregular-whitespace": string;
|
|
16412
|
-
"no-unused-vars": string;
|
|
16413
|
-
"spaced-comment": string;
|
|
16414
|
-
};
|
|
16415
|
-
}[];
|
|
16416
|
-
};
|
|
16417
|
-
recommended: {
|
|
16418
|
-
extends: string[];
|
|
16419
|
-
rules: {
|
|
16420
|
-
"yml/no-empty-document": string;
|
|
16421
|
-
"yml/no-empty-key": string;
|
|
16422
|
-
"yml/no-empty-mapping-value": string;
|
|
16423
|
-
"yml/no-empty-sequence-entry": string;
|
|
16424
|
-
"yml/no-irregular-whitespace": string;
|
|
16425
|
-
"yml/no-tab-indent": string;
|
|
16426
|
-
"yml/vue-custom-block/no-parsing-error": string;
|
|
16427
|
-
};
|
|
16428
|
-
};
|
|
16429
|
-
standard: {
|
|
16430
|
-
extends: string[];
|
|
16431
|
-
rules: {
|
|
16432
|
-
"yml/block-mapping-question-indicator-newline": string;
|
|
16433
|
-
"yml/block-mapping": string;
|
|
16434
|
-
"yml/block-sequence-hyphen-indicator-newline": string;
|
|
16435
|
-
"yml/block-sequence": string;
|
|
16436
|
-
"yml/flow-mapping-curly-newline": string;
|
|
16437
|
-
"yml/flow-mapping-curly-spacing": string;
|
|
16438
|
-
"yml/flow-sequence-bracket-newline": string;
|
|
16439
|
-
"yml/flow-sequence-bracket-spacing": string;
|
|
16440
|
-
"yml/indent": string;
|
|
16441
|
-
"yml/key-spacing": string;
|
|
16442
|
-
"yml/no-empty-document": string;
|
|
16443
|
-
"yml/no-empty-key": string;
|
|
16444
|
-
"yml/no-empty-mapping-value": string;
|
|
16445
|
-
"yml/no-empty-sequence-entry": string;
|
|
16446
|
-
"yml/no-irregular-whitespace": string;
|
|
16447
|
-
"yml/no-tab-indent": string;
|
|
16448
|
-
"yml/plain-scalar": string;
|
|
16449
|
-
"yml/quotes": string;
|
|
16450
|
-
"yml/spaced-comment": string;
|
|
16451
|
-
"yml/vue-custom-block/no-parsing-error": string;
|
|
16452
|
-
};
|
|
16453
|
-
};
|
|
16454
|
-
prettier: {
|
|
16455
|
-
extends: string[];
|
|
16456
|
-
rules: {
|
|
16457
|
-
"yml/block-mapping-colon-indicator-newline": string;
|
|
16458
|
-
"yml/block-mapping-question-indicator-newline": string;
|
|
16459
|
-
"yml/block-sequence-hyphen-indicator-newline": string;
|
|
16460
|
-
"yml/flow-mapping-curly-newline": string;
|
|
16461
|
-
"yml/flow-mapping-curly-spacing": string;
|
|
16462
|
-
"yml/flow-sequence-bracket-newline": string;
|
|
16463
|
-
"yml/flow-sequence-bracket-spacing": string;
|
|
16464
|
-
"yml/indent": string;
|
|
16465
|
-
"yml/key-spacing": string;
|
|
16466
|
-
"yml/no-multiple-empty-lines": string;
|
|
16467
|
-
"yml/no-trailing-zeros": string;
|
|
16468
|
-
"yml/quotes": string;
|
|
16469
|
-
};
|
|
16470
|
-
};
|
|
16471
|
-
"flat/base": ({
|
|
16472
|
-
plugins: {
|
|
16473
|
-
readonly yml: eslint0.ESLint.Plugin;
|
|
16474
|
-
};
|
|
16475
|
-
files?: undefined;
|
|
16476
|
-
languageOptions?: undefined;
|
|
16477
|
-
rules?: undefined;
|
|
16478
|
-
} | {
|
|
16479
|
-
files: string[];
|
|
16480
|
-
languageOptions: {
|
|
16481
|
-
parser: typeof yaml_eslint_parser0;
|
|
16482
|
-
};
|
|
16483
|
-
rules: {
|
|
16484
|
-
"no-irregular-whitespace": "off";
|
|
16485
|
-
"no-unused-vars": "off";
|
|
16486
|
-
"spaced-comment": "off";
|
|
16487
|
-
};
|
|
16488
|
-
plugins?: undefined;
|
|
16489
|
-
})[];
|
|
16490
|
-
"flat/recommended": ({
|
|
16491
|
-
plugins: {
|
|
16492
|
-
readonly yml: eslint0.ESLint.Plugin;
|
|
16493
|
-
};
|
|
16494
|
-
files?: undefined;
|
|
16495
|
-
languageOptions?: undefined;
|
|
16496
|
-
rules?: undefined;
|
|
16497
|
-
} | {
|
|
16498
|
-
files: string[];
|
|
16499
|
-
languageOptions: {
|
|
16500
|
-
parser: typeof yaml_eslint_parser0;
|
|
16501
|
-
};
|
|
16502
|
-
rules: {
|
|
16503
|
-
"no-irregular-whitespace": "off";
|
|
16504
|
-
"no-unused-vars": "off";
|
|
16505
|
-
"spaced-comment": "off";
|
|
16506
|
-
};
|
|
16507
|
-
plugins?: undefined;
|
|
16508
|
-
} | {
|
|
16509
|
-
rules: {
|
|
16510
|
-
"yml/no-empty-document": "error";
|
|
16511
|
-
"yml/no-empty-key": "error";
|
|
16512
|
-
"yml/no-empty-mapping-value": "error";
|
|
16513
|
-
"yml/no-empty-sequence-entry": "error";
|
|
16514
|
-
"yml/no-irregular-whitespace": "error";
|
|
16515
|
-
"yml/no-tab-indent": "error";
|
|
16516
|
-
"yml/vue-custom-block/no-parsing-error": "error";
|
|
16517
|
-
};
|
|
16518
|
-
})[];
|
|
16519
|
-
"flat/standard": ({
|
|
16520
|
-
plugins: {
|
|
16521
|
-
readonly yml: eslint0.ESLint.Plugin;
|
|
16522
|
-
};
|
|
16523
|
-
files?: undefined;
|
|
16524
|
-
languageOptions?: undefined;
|
|
16525
|
-
rules?: undefined;
|
|
16526
|
-
} | {
|
|
16527
|
-
files: string[];
|
|
16528
|
-
languageOptions: {
|
|
16529
|
-
parser: typeof yaml_eslint_parser0;
|
|
16530
|
-
};
|
|
16531
|
-
rules: {
|
|
16532
|
-
"no-irregular-whitespace": "off";
|
|
16533
|
-
"no-unused-vars": "off";
|
|
16534
|
-
"spaced-comment": "off";
|
|
16535
|
-
};
|
|
16536
|
-
plugins?: undefined;
|
|
16537
|
-
} | {
|
|
16538
|
-
rules: {
|
|
16539
|
-
"yml/block-mapping-question-indicator-newline": "error";
|
|
16540
|
-
"yml/block-mapping": "error";
|
|
16541
|
-
"yml/block-sequence-hyphen-indicator-newline": "error";
|
|
16542
|
-
"yml/block-sequence": "error";
|
|
16543
|
-
"yml/flow-mapping-curly-newline": "error";
|
|
16544
|
-
"yml/flow-mapping-curly-spacing": "error";
|
|
16545
|
-
"yml/flow-sequence-bracket-newline": "error";
|
|
16546
|
-
"yml/flow-sequence-bracket-spacing": "error";
|
|
16547
|
-
"yml/indent": "error";
|
|
16548
|
-
"yml/key-spacing": "error";
|
|
16549
|
-
"yml/no-empty-document": "error";
|
|
16550
|
-
"yml/no-empty-key": "error";
|
|
16551
|
-
"yml/no-empty-mapping-value": "error";
|
|
16552
|
-
"yml/no-empty-sequence-entry": "error";
|
|
16553
|
-
"yml/no-irregular-whitespace": "error";
|
|
16554
|
-
"yml/no-tab-indent": "error";
|
|
16555
|
-
"yml/plain-scalar": "error";
|
|
16556
|
-
"yml/quotes": "error";
|
|
16557
|
-
"yml/spaced-comment": "error";
|
|
16558
|
-
"yml/vue-custom-block/no-parsing-error": "error";
|
|
16559
|
-
};
|
|
16560
|
-
})[];
|
|
16561
|
-
"flat/prettier": ({
|
|
16562
|
-
plugins: {
|
|
16563
|
-
readonly yml: eslint0.ESLint.Plugin;
|
|
16564
|
-
};
|
|
16565
|
-
files?: undefined;
|
|
16566
|
-
languageOptions?: undefined;
|
|
16567
|
-
rules?: undefined;
|
|
16568
|
-
} | {
|
|
16569
|
-
files: string[];
|
|
16570
|
-
languageOptions: {
|
|
16571
|
-
parser: typeof yaml_eslint_parser0;
|
|
16572
|
-
};
|
|
16573
|
-
rules: {
|
|
16574
|
-
"no-irregular-whitespace": "off";
|
|
16575
|
-
"no-unused-vars": "off";
|
|
16576
|
-
"spaced-comment": "off";
|
|
16577
|
-
};
|
|
16578
|
-
plugins?: undefined;
|
|
16579
|
-
} | {
|
|
16580
|
-
rules: {
|
|
16581
|
-
"yml/block-mapping-colon-indicator-newline": "off";
|
|
16582
|
-
"yml/block-mapping-question-indicator-newline": "off";
|
|
16583
|
-
"yml/block-sequence-hyphen-indicator-newline": "off";
|
|
16584
|
-
"yml/flow-mapping-curly-newline": "off";
|
|
16585
|
-
"yml/flow-mapping-curly-spacing": "off";
|
|
16586
|
-
"yml/flow-sequence-bracket-newline": "off";
|
|
16587
|
-
"yml/flow-sequence-bracket-spacing": "off";
|
|
16588
|
-
"yml/indent": "off";
|
|
16589
|
-
"yml/key-spacing": "off";
|
|
16590
|
-
"yml/no-multiple-empty-lines": "off";
|
|
16591
|
-
"yml/no-trailing-zeros": "off";
|
|
16592
|
-
"yml/quotes": "off";
|
|
16593
|
-
};
|
|
16594
|
-
})[];
|
|
16595
|
-
};
|
|
16596
|
-
rules: {
|
|
16597
|
-
[key: string]: eslint_plugin_yml_lib_types_js0.RuleModule;
|
|
16598
|
-
};
|
|
16599
|
-
};
|
|
16600
|
-
}>;
|
|
16601
16398
|
declare function importPluginMarkdown(): Promise<{
|
|
16602
16399
|
pluginMarkdown: typeof _eslint_markdown0.default;
|
|
16603
16400
|
}>;
|
|
@@ -16688,4 +16485,4 @@ declare function changeRuleEntrySeverity(ruleConfig: Linter.RuleEntry<any>, leve
|
|
|
16688
16485
|
declare function error2warn<T extends Config>(configs: T[]): T[];
|
|
16689
16486
|
declare function warn2error<T extends Config>(configs: T[]): T[];
|
|
16690
16487
|
//#endregion
|
|
16691
|
-
export { Awaitable, Config, EslintConfigFn, LanguageOptions, OptionsCommon, OptionsComponentExts, OptionsConfig, OptionsFiles, OptionsHasTypeScript, OptionsIsInEditor, OptionsOverrides, OptionsPrefix, OptionsReact, OptionsStylistic, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, RenamePefix, RuleName, SLOW_RULES, StylisticConfig, TailwindEslintSettings, TailwindOptions, TypedFlatConfigItemWithId, UnPromise, VERSION, changeRuleEntrySeverity, combine, combineAsync, jsse as default, jsse, defineConfig, error2warn, globs_d_exports as globs, importJsoncLibs, importParserJsonc, importPluginJsonc, importPluginMarkdown, importPluginReact, importPluginReactRefresh, importPluginStylistic, importPluginTsdoc,
|
|
16488
|
+
export { Awaitable, Config, EslintConfigFn, LanguageOptions, OptionsCommon, OptionsComponentExts, OptionsConfig, OptionsFiles, OptionsHasTypeScript, OptionsIsInEditor, OptionsOverrides, OptionsPrefix, OptionsReact, OptionsStylistic, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, RenamePefix, RuleName, SLOW_RULES, StylisticConfig, TailwindEslintSettings, TailwindOptions, TypedFlatConfigItemWithId, UnPromise, VERSION, changeRuleEntrySeverity, combine, combineAsync, jsse as default, jsse, defineConfig, error2warn, globs_d_exports as globs, importJsoncLibs, importParserJsonc, importPluginJsonc, importPluginMarkdown, importPluginReact, importPluginReactRefresh, importPluginStylistic, importPluginTsdoc, interopDefault, isCI, isInEditor, jsseReact, parserPlain, parserTs, pluginAntfu, pluginDeMorgan, pluginEslintComments, pluginImportLite, pluginN, pluginPerfectionist, pluginPnpm, pluginTs, pluginUnicorn, pluginUnusedImports, renameRules, turnOffRules, uniqueStrings, warn2error };
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as __exportAll, r as __toESM, t as __commonJSMin } from "./chunk-VnP9fmST.js";
|
|
2
|
-
import { n as DEBUG, r as SLOW_RULES, t as VERSION } from "./version-
|
|
2
|
+
import { n as DEBUG, r as SLOW_RULES, t as VERSION } from "./version-BzlliPF3.js";
|
|
3
3
|
import { builtinModules, createRequire } from "node:module";
|
|
4
4
|
import process$1 from "node:process";
|
|
5
5
|
import fs, { promises, realpathSync, statSync } from "node:fs";
|
|
@@ -12871,13 +12871,6 @@ async function importJsoncLibs() {
|
|
|
12871
12871
|
pluginJsonc
|
|
12872
12872
|
};
|
|
12873
12873
|
}
|
|
12874
|
-
async function importYmlLibs() {
|
|
12875
|
-
const [pluginYaml, parserYaml] = await Promise.all([interopDefault(import("eslint-plugin-yml")), interopDefault(import("yaml-eslint-parser"))]);
|
|
12876
|
-
return {
|
|
12877
|
-
parserYaml,
|
|
12878
|
-
pluginYaml
|
|
12879
|
-
};
|
|
12880
|
-
}
|
|
12881
12874
|
async function importPluginMarkdown() {
|
|
12882
12875
|
const pluginMarkdown = await interopDefault(import("@eslint/markdown"));
|
|
12883
12876
|
return { pluginMarkdown };
|
|
@@ -19307,4 +19300,4 @@ const presetAll = makePresetFn([
|
|
|
19307
19300
|
]);
|
|
19308
19301
|
|
|
19309
19302
|
//#endregion
|
|
19310
|
-
export { SLOW_RULES, VERSION, changeRuleEntrySeverity, combine, combineAsync, jsse as default, jsse, defineConfig, error2warn, globs_exports as globs, importJsoncLibs, importParserJsonc, importPluginJsonc, importPluginMarkdown, importPluginReact, importPluginReactRefresh, importPluginStylistic, importPluginTsdoc,
|
|
19303
|
+
export { SLOW_RULES, VERSION, changeRuleEntrySeverity, combine, combineAsync, jsse as default, jsse, defineConfig, error2warn, globs_exports as globs, importJsoncLibs, importParserJsonc, importPluginJsonc, importPluginMarkdown, importPluginReact, importPluginReactRefresh, importPluginStylistic, importPluginTsdoc, interopDefault, isCI, isInEditor, jsseReact, parserPlain, parserTs, pluginAntfu, pluginDeMorgan, pluginEslintComments, pluginImportLite, pluginN, pluginPerfectionist, pluginPnpm, pluginTs, pluginUnicorn, pluginUnusedImports, renameRules, turnOffRules, uniqueStrings, warn2error };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsse/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.28",
|
|
5
5
|
"description": "@jsse/eslint-config ~ WYSIWYG",
|
|
6
6
|
"author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@eslint-community/eslint-plugin-eslint-comments": "^4.
|
|
63
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
|
|
64
64
|
"@eslint/compat": "^2.0.0",
|
|
65
65
|
"@eslint/js": "^9.39.2",
|
|
66
66
|
"@eslint/markdown": "^7.5.1",
|
|
67
|
-
"@stylistic/eslint-plugin": "5.
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^8.53.
|
|
69
|
-
"@typescript-eslint/parser": "^8.53.
|
|
67
|
+
"@stylistic/eslint-plugin": "5.7.0",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
69
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
70
70
|
"@vitest/eslint-plugin": "^1.6.6",
|
|
71
71
|
"debug": "^4.4.3",
|
|
72
72
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
@@ -75,32 +75,32 @@
|
|
|
75
75
|
"eslint-plugin-command": "^3.4.0",
|
|
76
76
|
"eslint-plugin-de-morgan": "^2.0.0",
|
|
77
77
|
"eslint-plugin-import-lite": "^0.5.0",
|
|
78
|
-
"eslint-plugin-jsdoc": "^
|
|
78
|
+
"eslint-plugin-jsdoc": "^62.2.0",
|
|
79
79
|
"eslint-plugin-jsonc": "^2.21.0",
|
|
80
80
|
"eslint-plugin-n": "^17.23.2",
|
|
81
81
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
82
82
|
"eslint-plugin-perfectionist": "^5.3.1",
|
|
83
|
-
"eslint-plugin-pnpm": "^1.
|
|
83
|
+
"eslint-plugin-pnpm": "^1.5.0",
|
|
84
84
|
"eslint-plugin-react": "^7.37.5",
|
|
85
85
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
86
86
|
"eslint-plugin-react-refresh": "^0.4.26",
|
|
87
|
-
"eslint-plugin-toml": "^0.
|
|
87
|
+
"eslint-plugin-toml": "^1.0.3",
|
|
88
88
|
"eslint-plugin-tsdoc": "^0.5.0",
|
|
89
89
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
90
90
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
91
|
-
"eslint-plugin-yml": "^
|
|
91
|
+
"eslint-plugin-yml": "^3.0.0",
|
|
92
92
|
"jsonc-eslint-parser": "^2.4.2",
|
|
93
|
-
"toml-eslint-parser": "^1.0.
|
|
94
|
-
"typescript-eslint": "^8.53.
|
|
95
|
-
"yaml-eslint-parser": "^
|
|
93
|
+
"toml-eslint-parser": "^1.0.3",
|
|
94
|
+
"typescript-eslint": "^8.53.1",
|
|
95
|
+
"yaml-eslint-parser": "^2.0.0"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"@changesets/cli": "^2.29.8",
|
|
99
|
-
"@jsse/prettier-config": "^1.0.
|
|
99
|
+
"@jsse/prettier-config": "^1.0.2",
|
|
100
100
|
"@jsse/tsconfig": "^0.4.0",
|
|
101
101
|
"@types/debug": "^4.1.12",
|
|
102
102
|
"@types/fs-extra": "^11.0.4",
|
|
103
|
-
"@types/node": "^
|
|
103
|
+
"@types/node": "^25.0.9",
|
|
104
104
|
"cac": "^6.7.14",
|
|
105
105
|
"eslint": "^9.39.2",
|
|
106
106
|
"eslint-flat-config-utils": "^2.1.4",
|
|
@@ -110,9 +110,9 @@
|
|
|
110
110
|
"fs-extra": "^11.3.3",
|
|
111
111
|
"globals": "^17.0.0",
|
|
112
112
|
"local-pkg": "^1.1.2",
|
|
113
|
-
"oxlint": "^1.
|
|
113
|
+
"oxlint": "^1.41.0",
|
|
114
114
|
"picocolors": "^1.1.1",
|
|
115
|
-
"prettier": "^3.
|
|
115
|
+
"prettier": "^3.8.0",
|
|
116
116
|
"react": "~19.2.3",
|
|
117
117
|
"rimraf": "^6.1.2",
|
|
118
118
|
"tsdown": "^0.18.4",
|