@dhzh/eslint-config 2.0.4 → 2.1.0

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/dist/index.d.mts CHANGED
@@ -165,11 +165,6 @@ interface RuleOptions {
165
165
  * @see https://eslint-community.github.io/eslint-plugin-eslint-comments/rules/require-description.html
166
166
  */
167
167
  '@eslint-community/eslint-comments/require-description'?: Linter.RuleEntry<EslintCommunityEslintCommentsRequireDescription>;
168
- /**
169
- * Disallows higher order functions that define components or hooks inside them.
170
- * @see https://eslint-react.xyz/docs/rules/component-hook-factories
171
- */
172
- '@eslint-react/component-hook-factories'?: Linter.RuleEntry<[]>;
173
168
  /**
174
169
  * Disallows DOM elements from using 'dangerouslySetInnerHTML'.
175
170
  * @see https://eslint-react.xyz/docs/rules/dom-no-dangerously-set-innerhtml
@@ -250,11 +245,6 @@ interface RuleOptions {
250
245
  * @see https://eslint-react.xyz/docs/rules/dom-no-void-elements-with-children
251
246
  */
252
247
  '@eslint-react/dom-no-void-elements-with-children'?: Linter.RuleEntry<[]>;
253
- /**
254
- * Enforces importing React DOM via a namespace import.
255
- * @see https://eslint-react.xyz/docs/rules/dom-prefer-namespace-import
256
- */
257
- '@eslint-react/dom-prefer-namespace-import'?: Linter.RuleEntry<[]>;
258
248
  /**
259
249
  * Validates usage of Error Boundaries instead of try/catch for errors in child components.
260
250
  * @see https://eslint-react.xyz/docs/rules/error-boundaries
@@ -265,6 +255,11 @@ interface RuleOptions {
265
255
  * @see https://github.com/facebook/react/issues/14920
266
256
  */
267
257
  '@eslint-react/exhaustive-deps'?: Linter.RuleEntry<EslintReactExhaustiveDeps>;
258
+ /**
259
+ * Validates against assignment/mutation of globals during render, part of ensuring that side effects must run outside of render.
260
+ * @see https://eslint-react.xyz/docs/rules/globals
261
+ */
262
+ '@eslint-react/globals'?: Linter.RuleEntry<[]>;
268
263
  /**
269
264
  * Validates against mutating props, state, and other values that are immutable.
270
265
  * @see https://eslint-react.xyz/docs/rules/immutability
@@ -272,46 +267,46 @@ interface RuleOptions {
272
267
  '@eslint-react/immutability'?: Linter.RuleEntry<[]>;
273
268
  /**
274
269
  * Disallows passing 'children' as a prop.
275
- * @see https://eslint-react.xyz/docs/rules/no-children-prop
270
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-children-prop
276
271
  */
277
272
  '@eslint-react/jsx-no-children-prop'?: Linter.RuleEntry<[]>;
278
273
  /**
279
274
  * Disallows passing 'children' as a prop when children are also passed as nested content.
280
- * @see https://eslint-react.xyz/docs/rules/no-children-prop-with-children
275
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-children-prop-with-children
281
276
  */
282
277
  '@eslint-react/jsx-no-children-prop-with-children'?: Linter.RuleEntry<[]>;
283
278
  /**
284
279
  * Prevents comment strings from being accidentally inserted into a JSX element's text nodes.
285
- * @see https://eslint-react.xyz/docs/rules/no-comment-textnodes
280
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-comment-textnodes
286
281
  */
287
282
  '@eslint-react/jsx-no-comment-textnodes'?: Linter.RuleEntry<[]>;
288
283
  /**
289
284
  * Prevent patterns that cause deoptimization when using the automatic JSX runtime.
290
- * @see https://eslint-react.xyz/docs/rules/no-key-after-spread
285
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-key-after-spread
291
286
  */
292
287
  '@eslint-react/jsx-no-key-after-spread'?: Linter.RuleEntry<[]>;
293
288
  /**
294
289
  * Catches `$` before `{expr}` in JSX — typically from template literal `${expr}` being copy-pasted into JSX without removing the `$`. The `$` "leaks" into the rendered output.
295
- * @see https://eslint-react.xyz/docs/rules/no-leaked-dollar
290
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-leaked-dollar
296
291
  */
297
292
  '@eslint-react/jsx-no-leaked-dollar'?: Linter.RuleEntry<[]>;
298
293
  /**
299
294
  * Catches `;` at the start of JSX text nodes — typically from accidentally placing a statement-ending `;` inside JSX. The `;` "leaks" into the rendered output.
300
- * @see https://eslint-react.xyz/docs/rules/no-leaked-semicolon
295
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-leaked-semicolon
301
296
  */
302
297
  '@eslint-react/jsx-no-leaked-semicolon'?: Linter.RuleEntry<[]>;
303
298
  /**
304
299
  * Disallow JSX namespace syntax, as React does not support them.
305
- * @see https://eslint-react.xyz/docs/rules/no-namespace
300
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-namespace
306
301
  */
307
302
  '@eslint-react/jsx-no-namespace'?: Linter.RuleEntry<[]>;
308
303
  /**
309
304
  * Disallows useless fragment elements.
310
- * @see https://eslint-react.xyz/docs/rules/no-useless-fragment
305
+ * @see https://eslint-react.xyz/docs/rules/jsx-no-useless-fragment
311
306
  */
312
307
  '@eslint-react/jsx-no-useless-fragment'?: Linter.RuleEntry<EslintReactJsxNoUselessFragment>;
313
308
  /**
314
- * Enforces the context name to be a valid component name with the suffix 'Context'.
309
+ * Enforces identifier names assigned from `createContext` calls to be a valid component name with the suffix `Context`.
315
310
  * @see https://eslint-react.xyz/docs/rules/naming-convention-context-name
316
311
  */
317
312
  '@eslint-react/naming-convention-context-name'?: Linter.RuleEntry<[]>;
@@ -391,7 +386,7 @@ interface RuleOptions {
391
386
  */
392
387
  '@eslint-react/no-context-provider'?: Linter.RuleEntry<[]>;
393
388
  /**
394
- * Disallows 'createRef' in function components.
389
+ * Disallows 'createRef' in function components and Hooks.
395
390
  * @see https://eslint-react.xyz/docs/rules/no-create-ref
396
391
  */
397
392
  '@eslint-react/no-create-ref'?: Linter.RuleEntry<[]>;
@@ -460,11 +455,6 @@ interface RuleOptions {
460
455
  * @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
461
456
  */
462
457
  '@eslint-react/no-nested-lazy-component-declarations'?: Linter.RuleEntry<[]>;
463
- /**
464
- * Disallows 'shouldComponentUpdate' when extending 'React.PureComponent'.
465
- * @see https://eslint-react.xyz/docs/rules/no-redundant-should-component-update
466
- */
467
- '@eslint-react/no-redundant-should-component-update'?: Linter.RuleEntry<[]>;
468
458
  /**
469
459
  * Disallows calling 'this.setState' in 'componentDidMount' outside functions such as callbacks.
470
460
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
@@ -480,16 +470,6 @@ interface RuleOptions {
480
470
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
481
471
  */
482
472
  '@eslint-react/no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
483
- /**
484
- * Disallows unnecessary usage of 'useCallback'.
485
- * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-callback
486
- */
487
- '@eslint-react/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
488
- /**
489
- * Disallows unnecessary usage of 'useMemo'.
490
- * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-memo
491
- */
492
- '@eslint-react/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
493
473
  /**
494
474
  * Enforces that a function with the 'use' prefix uses at least one Hook inside it.
495
475
  * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
@@ -531,7 +511,7 @@ interface RuleOptions {
531
511
  */
532
512
  '@eslint-react/no-unused-props'?: Linter.RuleEntry<[]>;
533
513
  /**
534
- * Warns about unused class component state.
514
+ * Warns about state variables that are defined but never used.
535
515
  * @see https://eslint-react.xyz/docs/rules/no-unused-state
536
516
  */
537
517
  '@eslint-react/no-unused-state'?: Linter.RuleEntry<[]>;
@@ -540,16 +520,6 @@ interface RuleOptions {
540
520
  * @see https://eslint-react.xyz/docs/rules/no-use-context
541
521
  */
542
522
  '@eslint-react/no-use-context'?: Linter.RuleEntry<[]>;
543
- /**
544
- * Enforces destructuring assignment for component props and context.
545
- * @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
546
- */
547
- '@eslint-react/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
548
- /**
549
- * Enforces importing React via a namespace import.
550
- * @see https://eslint-react.xyz/docs/rules/prefer-namespace-import
551
- */
552
- '@eslint-react/prefer-namespace-import'?: Linter.RuleEntry<[]>;
553
523
  /**
554
524
  * Validates that components and hooks are pure by checking that they do not call known-impure functions during render.
555
525
  * @see https://eslint-react.xyz/docs/rules/purity
@@ -562,7 +532,7 @@ interface RuleOptions {
562
532
  '@eslint-react/refs'?: Linter.RuleEntry<[]>;
563
533
  /**
564
534
  * Validates and transforms React Client/Server Function definitions.
565
- * @see https://eslint-react.xyz/docs/rules/function-definition
535
+ * @see https://eslint-react.xyz/docs/rules/rsc-function-definition
566
536
  */
567
537
  '@eslint-react/rsc-function-definition'?: Linter.RuleEntry<[]>;
568
538
  /**
@@ -580,6 +550,11 @@ interface RuleOptions {
580
550
  * @see https://eslint-react.xyz/docs/rules/set-state-in-render
581
551
  */
582
552
  '@eslint-react/set-state-in-render'?: Linter.RuleEntry<[]>;
553
+ /**
554
+ * Validates that components are static, not recreated every render.
555
+ * @see https://eslint-react.xyz/docs/rules/static-components
556
+ */
557
+ '@eslint-react/static-components'?: Linter.RuleEntry<[]>;
583
558
  /**
584
559
  * Validates against syntax that React Compiler does not support.
585
560
  * @see https://eslint-react.xyz/docs/rules/unsupported-syntax
@@ -600,6 +575,11 @@ interface RuleOptions {
600
575
  * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-event-listener
601
576
  */
602
577
  '@eslint-react/web-api-no-leaked-event-listener'?: Linter.RuleEntry<[]>;
578
+ /**
579
+ * Enforces that every 'fetch' in a component or custom hook has a corresponding 'AbortController' abort in the cleanup function.
580
+ * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-fetch
581
+ */
582
+ '@eslint-react/web-api-no-leaked-fetch'?: Linter.RuleEntry<[]>;
603
583
  /**
604
584
  * Enforces that every 'setInterval' in a component or custom hook has a corresponding 'clearInterval'.
605
585
  * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-interval
@@ -615,11 +595,6 @@ interface RuleOptions {
615
595
  * @see https://eslint-react.xyz/docs/rules/web-api-no-leaked-timeout
616
596
  */
617
597
  '@eslint-react/web-api-no-leaked-timeout'?: Linter.RuleEntry<[]>;
618
- /**
619
- * Disallows higher order functions that define components or hooks inside them.
620
- * @see https://eslint-react.xyz/docs/rules/component-hook-factories
621
- */
622
- '@eslint-react/x-component-hook-factories'?: Linter.RuleEntry<[]>;
623
598
  /**
624
599
  * Validates usage of Error Boundaries instead of try/catch for errors in child components.
625
600
  * @see https://eslint-react.xyz/docs/rules/error-boundaries
@@ -630,6 +605,11 @@ interface RuleOptions {
630
605
  * @see https://github.com/facebook/react/issues/14920
631
606
  */
632
607
  '@eslint-react/x-exhaustive-deps'?: Linter.RuleEntry<EslintReactXExhaustiveDeps>;
608
+ /**
609
+ * Validates against assignment/mutation of globals during render, part of ensuring that side effects must run outside of render.
610
+ * @see https://eslint-react.xyz/docs/rules/globals
611
+ */
612
+ '@eslint-react/x-globals'?: Linter.RuleEntry<[]>;
633
613
  /**
634
614
  * Validates against mutating props, state, and other values that are immutable.
635
615
  * @see https://eslint-react.xyz/docs/rules/immutability
@@ -701,7 +681,7 @@ interface RuleOptions {
701
681
  */
702
682
  '@eslint-react/x-no-context-provider'?: Linter.RuleEntry<[]>;
703
683
  /**
704
- * Disallows 'createRef' in function components.
684
+ * Disallows 'createRef' in function components and Hooks.
705
685
  * @see https://eslint-react.xyz/docs/rules/no-create-ref
706
686
  */
707
687
  '@eslint-react/x-no-create-ref'?: Linter.RuleEntry<[]>;
@@ -770,11 +750,6 @@ interface RuleOptions {
770
750
  * @see https://eslint-react.xyz/docs/rules/no-nested-lazy-component-declarations
771
751
  */
772
752
  '@eslint-react/x-no-nested-lazy-component-declarations'?: Linter.RuleEntry<[]>;
773
- /**
774
- * Disallows 'shouldComponentUpdate' when extending 'React.PureComponent'.
775
- * @see https://eslint-react.xyz/docs/rules/no-redundant-should-component-update
776
- */
777
- '@eslint-react/x-no-redundant-should-component-update'?: Linter.RuleEntry<[]>;
778
753
  /**
779
754
  * Disallows calling 'this.setState' in 'componentDidMount' outside functions such as callbacks.
780
755
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-did-mount
@@ -790,16 +765,6 @@ interface RuleOptions {
790
765
  * @see https://eslint-react.xyz/docs/rules/no-set-state-in-component-will-update
791
766
  */
792
767
  '@eslint-react/x-no-set-state-in-component-will-update'?: Linter.RuleEntry<[]>;
793
- /**
794
- * Disallows unnecessary usage of 'useCallback'.
795
- * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-callback
796
- */
797
- '@eslint-react/x-no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
798
- /**
799
- * Disallows unnecessary usage of 'useMemo'.
800
- * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-memo
801
- */
802
- '@eslint-react/x-no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
803
768
  /**
804
769
  * Enforces that a function with the 'use' prefix uses at least one Hook inside it.
805
770
  * @see https://eslint-react.xyz/docs/rules/no-unnecessary-use-prefix
@@ -841,7 +806,7 @@ interface RuleOptions {
841
806
  */
842
807
  '@eslint-react/x-no-unused-props'?: Linter.RuleEntry<[]>;
843
808
  /**
844
- * Warns about unused class component state.
809
+ * Warns about state variables that are defined but never used.
845
810
  * @see https://eslint-react.xyz/docs/rules/no-unused-state
846
811
  */
847
812
  '@eslint-react/x-no-unused-state'?: Linter.RuleEntry<[]>;
@@ -850,16 +815,6 @@ interface RuleOptions {
850
815
  * @see https://eslint-react.xyz/docs/rules/no-use-context
851
816
  */
852
817
  '@eslint-react/x-no-use-context'?: Linter.RuleEntry<[]>;
853
- /**
854
- * Enforces destructuring assignment for component props and context.
855
- * @see https://eslint-react.xyz/docs/rules/prefer-destructuring-assignment
856
- */
857
- '@eslint-react/x-prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
858
- /**
859
- * Enforces importing React via a namespace import.
860
- * @see https://eslint-react.xyz/docs/rules/prefer-namespace-import
861
- */
862
- '@eslint-react/x-prefer-namespace-import'?: Linter.RuleEntry<[]>;
863
818
  /**
864
819
  * Validates that components and hooks are pure by checking that they do not call known-impure functions during render.
865
820
  * @see https://eslint-react.xyz/docs/rules/purity
@@ -885,6 +840,11 @@ interface RuleOptions {
885
840
  * @see https://eslint-react.xyz/docs/rules/set-state-in-render
886
841
  */
887
842
  '@eslint-react/x-set-state-in-render'?: Linter.RuleEntry<[]>;
843
+ /**
844
+ * Validates that components are static, not recreated every render.
845
+ * @see https://eslint-react.xyz/docs/rules/static-components
846
+ */
847
+ '@eslint-react/x-static-components'?: Linter.RuleEntry<[]>;
888
848
  /**
889
849
  * Validates against syntax that React Compiler does not support.
890
850
  * @see https://eslint-react.xyz/docs/rules/unsupported-syntax
@@ -2071,12 +2031,12 @@ interface RuleOptions {
2071
2031
  */
2072
2032
  'accessor-pairs'?: Linter.RuleEntry<AccessorPairs>;
2073
2033
  /**
2074
- * Having line breaks styles to object, array and named imports
2034
+ * Enforce consistent line breaks for chaining member access
2075
2035
  * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-chaining.md
2076
2036
  */
2077
2037
  'antfu/consistent-chaining'?: Linter.RuleEntry<AntfuConsistentChaining>;
2078
2038
  /**
2079
- * Having line breaks styles to object, array and named imports
2039
+ * Enforce consistent line breaks inside braces and parentheses
2080
2040
  * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/consistent-list-newline.md
2081
2041
  */
2082
2042
  'antfu/consistent-list-newline'?: Linter.RuleEntry<AntfuConsistentListNewline>;
@@ -2102,22 +2062,22 @@ interface RuleOptions {
2102
2062
  'antfu/indent-unindent'?: Linter.RuleEntry<AntfuIndentUnindent>;
2103
2063
  /**
2104
2064
  * Prevent importing modules in `dist` folder
2105
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.test.ts
2065
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-dist.md
2106
2066
  */
2107
2067
  'antfu/no-import-dist'?: Linter.RuleEntry<[]>;
2108
2068
  /**
2109
2069
  * Prevent importing modules in `node_modules` folder by relative or absolute path
2110
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.test.ts
2070
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-import-node-modules-by-path.md
2111
2071
  */
2112
2072
  'antfu/no-import-node-modules-by-path'?: Linter.RuleEntry<[]>;
2113
2073
  /**
2114
2074
  * Prevent using top-level await
2115
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.test.ts
2075
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-top-level-await.md
2116
2076
  */
2117
2077
  'antfu/no-top-level-await'?: Linter.RuleEntry<[]>;
2118
2078
  /**
2119
2079
  * Do not use `exports =`
2120
- * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.test.ts
2080
+ * @see https://github.com/antfu/eslint-plugin-antfu/blob/main/src/rules/no-ts-export-equal.md
2121
2081
  */
2122
2082
  'antfu/no-ts-export-equal'?: Linter.RuleEntry<[]>;
2123
2083
  /**
@@ -4089,428 +4049,482 @@ interface RuleOptions {
4089
4049
  'operator-linebreak'?: Linter.RuleEntry<OperatorLinebreak>;
4090
4050
  /**
4091
4051
  * Enforce that names for bin properties are in kebab case.
4092
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/bin-name-casing.md
4052
+ * @see https://eslint-plugin-package-json.dev/rules/bin-name-casing
4093
4053
  */
4094
4054
  'package-json/bin-name-casing'?: Linter.RuleEntry<[]>;
4095
4055
  /**
4096
4056
  * Enforce consistent format for the exports field (implicit or explicit subpaths).
4097
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/exports-subpaths-style.md
4057
+ * @see https://eslint-plugin-package-json.dev/rules/exports-subpaths-style
4098
4058
  */
4099
4059
  'package-json/exports-subpaths-style'?: Linter.RuleEntry<PackageJsonExportsSubpathsStyle>;
4100
4060
  /**
4101
4061
  * Reports on unnecessary empty arrays and objects.
4102
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-empty-fields.md
4062
+ * @see https://eslint-plugin-package-json.dev/rules/no-empty-fields
4103
4063
  */
4104
4064
  'package-json/no-empty-fields'?: Linter.RuleEntry<PackageJsonNoEmptyFields>;
4065
+ /**
4066
+ * Requires that dependencies do not use local file paths, which will likely result in errors when installing from a registry.
4067
+ * @see https://eslint-plugin-package-json.dev/rules/no-local-dependencies
4068
+ */
4069
+ 'package-json/no-local-dependencies'?: Linter.RuleEntry<PackageJsonNoLocalDependencies>;
4105
4070
  /**
4106
4071
  * Prevents adding unnecessary / redundant files.
4107
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-redundant-files.md
4072
+ * @see https://eslint-plugin-package-json.dev/rules/no-redundant-files
4108
4073
  */
4109
4074
  'package-json/no-redundant-files'?: Linter.RuleEntry<[]>;
4110
4075
  /**
4111
4076
  * Warns when publishConfig.access is used in unscoped packages.
4112
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/no-redundant-publishConfig.md
4077
+ * @see https://eslint-plugin-package-json.dev/rules/no-redundant-publishConfig
4113
4078
  */
4114
4079
  'package-json/no-redundant-publishConfig'?: Linter.RuleEntry<[]>;
4115
4080
  /**
4116
4081
  * Package properties should be declared in standard order
4117
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/order-properties.md
4082
+ * @see https://eslint-plugin-package-json.dev/rules/order-properties
4118
4083
  */
4119
4084
  'package-json/order-properties'?: Linter.RuleEntry<PackageJsonOrderProperties>;
4120
4085
  /**
4121
4086
  * Enforce either object or shorthand declaration for repository.
4122
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/repository-shorthand.md
4087
+ * @see https://eslint-plugin-package-json.dev/rules/repository-shorthand
4123
4088
  */
4124
4089
  'package-json/repository-shorthand'?: Linter.RuleEntry<PackageJsonRepositoryShorthand>;
4125
4090
  /**
4126
4091
  * Ensures that proper attribution is included, requiring that either `author` or `contributors` is defined, and that if `contributors` is present, it should include at least one contributor.
4127
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-attribution.md
4092
+ * @see https://eslint-plugin-package-json.dev/rules/require-attribution
4128
4093
  */
4129
4094
  'package-json/require-attribution'?: Linter.RuleEntry<PackageJsonRequireAttribution>;
4130
4095
  /**
4131
4096
  * Requires the `author` property to be present.
4132
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-author.md
4097
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-author
4133
4098
  */
4134
4099
  'package-json/require-author'?: Linter.RuleEntry<PackageJsonRequireAuthor>;
4135
4100
  /**
4136
4101
  * Requires the `bin` property to be present.
4137
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bin.md
4102
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bin
4138
4103
  */
4139
4104
  'package-json/require-bin'?: Linter.RuleEntry<PackageJsonRequireBin>;
4105
+ /**
4106
+ * Requires the `browser` property to be present.
4107
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-browser
4108
+ */
4109
+ 'package-json/require-browser'?: Linter.RuleEntry<PackageJsonRequireBrowser>;
4140
4110
  /**
4141
4111
  * Requires the `bugs` property to be present.
4142
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bugs.md
4112
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bugs
4143
4113
  */
4144
4114
  'package-json/require-bugs'?: Linter.RuleEntry<PackageJsonRequireBugs>;
4145
4115
  /**
4146
4116
  * Requires the `bundleDependencies` property to be present.
4147
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-bundleDependencies.md
4117
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-bundleDependencies
4148
4118
  */
4149
4119
  'package-json/require-bundleDependencies'?: Linter.RuleEntry<PackageJsonRequireBundleDependencies>;
4120
+ /**
4121
+ * Requires the `config` property to be present.
4122
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-config
4123
+ */
4124
+ 'package-json/require-config'?: Linter.RuleEntry<PackageJsonRequireConfig>;
4150
4125
  /**
4151
4126
  * Requires the `contributors` property to be present.
4152
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-contributors.md
4127
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-contributors
4153
4128
  */
4154
4129
  'package-json/require-contributors'?: Linter.RuleEntry<PackageJsonRequireContributors>;
4155
4130
  /**
4156
4131
  * Requires the `cpu` property to be present.
4157
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-cpu.md
4132
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-cpu
4158
4133
  */
4159
4134
  'package-json/require-cpu'?: Linter.RuleEntry<PackageJsonRequireCpu>;
4160
4135
  /**
4161
4136
  * Requires the `dependencies` property to be present.
4162
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-dependencies.md
4137
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-dependencies
4163
4138
  */
4164
4139
  'package-json/require-dependencies'?: Linter.RuleEntry<PackageJsonRequireDependencies>;
4165
4140
  /**
4166
4141
  * Requires the `description` property to be present.
4167
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-description.md
4142
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-description
4168
4143
  */
4169
4144
  'package-json/require-description'?: Linter.RuleEntry<PackageJsonRequireDescription>;
4170
4145
  /**
4171
4146
  * Requires the `devDependencies` property to be present.
4172
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-devDependencies.md
4147
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-devDependencies
4173
4148
  */
4174
4149
  'package-json/require-devDependencies'?: Linter.RuleEntry<PackageJsonRequireDevDependencies>;
4175
4150
  /**
4176
4151
  * Requires the `devEngines` property to be present.
4177
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-devEngines.md
4152
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-devEngines
4178
4153
  */
4179
4154
  'package-json/require-devEngines'?: Linter.RuleEntry<PackageJsonRequireDevEngines>;
4180
4155
  /**
4181
4156
  * Requires the `directories` property to be present.
4182
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-directories.md
4157
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-directories
4183
4158
  */
4184
4159
  'package-json/require-directories'?: Linter.RuleEntry<PackageJsonRequireDirectories>;
4185
4160
  /**
4186
4161
  * Requires the `engines` property to be present.
4187
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-engines.md
4162
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-engines
4188
4163
  */
4189
4164
  'package-json/require-engines'?: Linter.RuleEntry<PackageJsonRequireEngines>;
4190
4165
  /**
4191
4166
  * Requires the `exports` property to be present.
4192
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-exports.md
4167
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-exports
4193
4168
  */
4194
4169
  'package-json/require-exports'?: Linter.RuleEntry<PackageJsonRequireExports>;
4195
4170
  /**
4196
4171
  * Requires the `files` property to be present.
4197
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-files.md
4172
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-files
4198
4173
  */
4199
4174
  'package-json/require-files'?: Linter.RuleEntry<PackageJsonRequireFiles>;
4200
4175
  /**
4201
4176
  * Requires the `funding` property to be present.
4202
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-funding.md
4177
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-funding
4203
4178
  */
4204
4179
  'package-json/require-funding'?: Linter.RuleEntry<PackageJsonRequireFunding>;
4180
+ /**
4181
+ * Requires the `gypfile` property to be present.
4182
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-gypfile
4183
+ */
4184
+ 'package-json/require-gypfile'?: Linter.RuleEntry<PackageJsonRequireGypfile>;
4205
4185
  /**
4206
4186
  * Requires the `homepage` property to be present.
4207
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-homepage.md
4187
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-homepage
4208
4188
  */
4209
4189
  'package-json/require-homepage'?: Linter.RuleEntry<PackageJsonRequireHomepage>;
4210
4190
  /**
4211
4191
  * Requires the `keywords` property to be present.
4212
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-keywords.md
4192
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-keywords
4213
4193
  */
4214
4194
  'package-json/require-keywords'?: Linter.RuleEntry<PackageJsonRequireKeywords>;
4195
+ /**
4196
+ * Requires the `libc` property to be present.
4197
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-libc
4198
+ */
4199
+ 'package-json/require-libc'?: Linter.RuleEntry<PackageJsonRequireLibc>;
4215
4200
  /**
4216
4201
  * Requires the `license` property to be present.
4217
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-license.md
4202
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-license
4218
4203
  */
4219
4204
  'package-json/require-license'?: Linter.RuleEntry<PackageJsonRequireLicense>;
4220
4205
  /**
4221
4206
  * Requires the `main` property to be present.
4222
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-main.md
4207
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-main
4223
4208
  */
4224
4209
  'package-json/require-main'?: Linter.RuleEntry<PackageJsonRequireMain>;
4225
4210
  /**
4226
4211
  * Requires the `man` property to be present.
4227
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-man.md
4212
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-man
4228
4213
  */
4229
4214
  'package-json/require-man'?: Linter.RuleEntry<PackageJsonRequireMan>;
4230
4215
  /**
4231
4216
  * Requires the `module` property to be present.
4232
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-module.md
4217
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-module
4233
4218
  */
4234
4219
  'package-json/require-module'?: Linter.RuleEntry<PackageJsonRequireModule>;
4235
4220
  /**
4236
4221
  * Requires the `name` property to be present.
4237
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-name.md
4222
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-name
4238
4223
  */
4239
4224
  'package-json/require-name'?: Linter.RuleEntry<PackageJsonRequireName>;
4240
4225
  /**
4241
4226
  * Requires the `optionalDependencies` property to be present.
4242
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-optionalDependencies.md
4227
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-optionalDependencies
4243
4228
  */
4244
4229
  'package-json/require-optionalDependencies'?: Linter.RuleEntry<PackageJsonRequireOptionalDependencies>;
4245
4230
  /**
4246
4231
  * Requires the `os` property to be present.
4247
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-os.md
4232
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-os
4248
4233
  */
4249
4234
  'package-json/require-os'?: Linter.RuleEntry<PackageJsonRequireOs>;
4250
4235
  /**
4251
4236
  * Requires the `packageManager` property to be present.
4252
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-packageManager.md
4237
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-packageManager
4253
4238
  */
4254
4239
  'package-json/require-packageManager'?: Linter.RuleEntry<PackageJsonRequirePackageManager>;
4255
4240
  /**
4256
4241
  * Requires the `peerDependencies` property to be present.
4257
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-peerDependencies.md
4242
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-peerDependencies
4258
4243
  */
4259
4244
  'package-json/require-peerDependencies'?: Linter.RuleEntry<PackageJsonRequirePeerDependencies>;
4245
+ /**
4246
+ * Requires the `peerDependenciesMeta` property to be present.
4247
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-peerDependenciesMeta
4248
+ */
4249
+ 'package-json/require-peerDependenciesMeta'?: Linter.RuleEntry<PackageJsonRequirePeerDependenciesMeta>;
4260
4250
  /**
4261
4251
  * Requires the `private` property to be present.
4262
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-private.md
4252
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-private
4263
4253
  */
4264
4254
  'package-json/require-private'?: Linter.RuleEntry<[]>;
4265
4255
  /**
4266
4256
  * Requires the `publishConfig` property to be present.
4267
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-publishConfig.md
4257
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-publishConfig
4268
4258
  */
4269
4259
  'package-json/require-publishConfig'?: Linter.RuleEntry<PackageJsonRequirePublishConfig>;
4270
4260
  /**
4271
4261
  * Requires the `repository` property to be present.
4272
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-repository.md
4262
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-repository
4273
4263
  */
4274
4264
  'package-json/require-repository'?: Linter.RuleEntry<PackageJsonRequireRepository>;
4275
4265
  /**
4276
4266
  * Requires the `scripts` property to be present.
4277
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-scripts.md
4267
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-scripts
4278
4268
  */
4279
4269
  'package-json/require-scripts'?: Linter.RuleEntry<PackageJsonRequireScripts>;
4280
4270
  /**
4281
4271
  * Requires the `sideEffects` property to be present.
4282
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-sideEffects.md
4272
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-sideEffects
4283
4273
  */
4284
4274
  'package-json/require-sideEffects'?: Linter.RuleEntry<PackageJsonRequireSideEffects>;
4285
4275
  /**
4286
4276
  * Requires the `type` property to be present.
4287
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-type.md
4277
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-type
4288
4278
  */
4289
4279
  'package-json/require-type'?: Linter.RuleEntry<PackageJsonRequireType>;
4290
4280
  /**
4291
4281
  * Requires the `types` property to be present.
4292
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-types.md
4282
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-types
4293
4283
  */
4294
4284
  'package-json/require-types'?: Linter.RuleEntry<PackageJsonRequireTypes>;
4295
4285
  /**
4296
4286
  * Requires the `version` property to be present.
4297
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/require-version.md
4287
+ * @see https://eslint-plugin-package-json.dev/rules/require-properties/require-version
4298
4288
  */
4299
4289
  'package-json/require-version'?: Linter.RuleEntry<PackageJsonRequireVersion>;
4300
4290
  /**
4301
4291
  * Restricts the range of dependencies to allow or disallow specific types of ranges.
4302
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-dependency-ranges.md
4292
+ * @see https://eslint-plugin-package-json.dev/rules/restrict-dependency-ranges
4303
4293
  */
4304
4294
  'package-json/restrict-dependency-ranges'?: Linter.RuleEntry<PackageJsonRestrictDependencyRanges>;
4305
4295
  /**
4306
4296
  * Disallows unnecessary properties in private packages.
4307
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/restrict-private-properties.md
4297
+ * @see https://eslint-plugin-package-json.dev/rules/restrict-private-properties
4308
4298
  */
4309
4299
  'package-json/restrict-private-properties'?: Linter.RuleEntry<PackageJsonRestrictPrivateProperties>;
4300
+ /**
4301
+ * Disallows specified top-level properties in package.json.
4302
+ * @see https://eslint-plugin-package-json.dev/rules/restrict-top-level-properties
4303
+ */
4304
+ 'package-json/restrict-top-level-properties'?: Linter.RuleEntry<PackageJsonRestrictTopLevelProperties>;
4310
4305
  /**
4311
4306
  * Enforce that names for `scripts` are in kebab case (optionally separated by colons).
4312
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/scripts-name-casing.md
4307
+ * @see https://eslint-plugin-package-json.dev/rules/scripts-name-casing
4313
4308
  */
4314
4309
  'package-json/scripts-name-casing'?: Linter.RuleEntry<[]>;
4315
4310
  /**
4316
4311
  * Selected collections must be in a consistent order (lexicographical for most; lifecycle-aware for scripts).
4317
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/sort-collections.md
4312
+ * @see https://eslint-plugin-package-json.dev/rules/sort-collections
4318
4313
  */
4319
4314
  'package-json/sort-collections'?: Linter.RuleEntry<PackageJsonSortCollections>;
4320
4315
  /**
4321
4316
  * Requires that all peer dependencies are also declared as dev dependencies
4322
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/specify-peers-locally.md
4317
+ * @see https://eslint-plugin-package-json.dev/rules/specify-peers-locally
4323
4318
  */
4324
4319
  'package-json/specify-peers-locally'?: Linter.RuleEntry<[]>;
4325
4320
  /**
4326
4321
  * Checks a dependency isn't specified more than once (i.e. in `dependencies` and `devDependencies`)
4327
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/unique-dependencies.md
4322
+ * @see https://eslint-plugin-package-json.dev/rules/unique-dependencies
4328
4323
  */
4329
4324
  'package-json/unique-dependencies'?: Linter.RuleEntry<[]>;
4330
4325
  /**
4331
4326
  * Enforce that the `author` property is valid.
4332
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-author.md
4327
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-author
4333
4328
  */
4334
4329
  'package-json/valid-author'?: Linter.RuleEntry<[]>;
4335
4330
  /**
4336
4331
  * Enforce that the `bin` property is valid.
4337
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bin.md
4332
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bin
4338
4333
  */
4339
4334
  'package-json/valid-bin'?: Linter.RuleEntry<[]>;
4335
+ /**
4336
+ * Enforce that the `browser` property is valid.
4337
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-browser
4338
+ */
4339
+ 'package-json/valid-browser'?: Linter.RuleEntry<[]>;
4340
4340
  /**
4341
4341
  * Enforce that the `bugs` property is valid.
4342
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bugs.md
4342
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bugs
4343
4343
  */
4344
4344
  'package-json/valid-bugs'?: Linter.RuleEntry<[]>;
4345
4345
  /**
4346
- * Enforce that the `bundleDependencies` (also: `bundledDependencies`) property is valid.
4347
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-bundleDependencies.md
4346
+ * Enforce that the `bundleDependencies` (also `bundledDependencies`) property is valid.
4347
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-bundleDependencies
4348
4348
  */
4349
4349
  'package-json/valid-bundleDependencies'?: Linter.RuleEntry<[]>;
4350
4350
  /**
4351
4351
  * Enforce that the `config` property is valid.
4352
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-config.md
4352
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-config
4353
4353
  */
4354
4354
  'package-json/valid-config'?: Linter.RuleEntry<[]>;
4355
4355
  /**
4356
4356
  * Enforce that the `contributors` property is valid.
4357
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-contributors.md
4357
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-contributors
4358
4358
  */
4359
4359
  'package-json/valid-contributors'?: Linter.RuleEntry<[]>;
4360
4360
  /**
4361
4361
  * Enforce that the `cpu` property is valid.
4362
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-cpu.md
4362
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-cpu
4363
4363
  */
4364
4364
  'package-json/valid-cpu'?: Linter.RuleEntry<[]>;
4365
4365
  /**
4366
4366
  * Enforce that the `dependencies` property is valid.
4367
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-dependencies.md
4367
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-dependencies
4368
4368
  */
4369
4369
  'package-json/valid-dependencies'?: Linter.RuleEntry<[]>;
4370
4370
  /**
4371
4371
  * Enforce that the `description` property is valid.
4372
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-description.md
4372
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-description
4373
4373
  */
4374
4374
  'package-json/valid-description'?: Linter.RuleEntry<[]>;
4375
4375
  /**
4376
4376
  * Enforce that the `devDependencies` property is valid.
4377
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-devDependencies.md
4377
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-devDependencies
4378
4378
  */
4379
4379
  'package-json/valid-devDependencies'?: Linter.RuleEntry<[]>;
4380
4380
  /**
4381
4381
  * Enforce that the `devEngines` property is valid.
4382
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-devEngines.md
4382
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-devEngines
4383
4383
  */
4384
4384
  'package-json/valid-devEngines'?: Linter.RuleEntry<[]>;
4385
4385
  /**
4386
4386
  * Enforce that the `directories` property is valid.
4387
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-directories.md
4387
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-directories
4388
4388
  */
4389
4389
  'package-json/valid-directories'?: Linter.RuleEntry<[]>;
4390
4390
  /**
4391
4391
  * Enforce that the `engines` property is valid.
4392
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-engines.md
4392
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-engines
4393
4393
  */
4394
4394
  'package-json/valid-engines'?: Linter.RuleEntry<[]>;
4395
4395
  /**
4396
4396
  * Enforce that the `exports` property is valid.
4397
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-exports.md
4397
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-exports
4398
4398
  */
4399
4399
  'package-json/valid-exports'?: Linter.RuleEntry<[]>;
4400
4400
  /**
4401
4401
  * Enforce that the `files` property is valid.
4402
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-files.md
4402
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-files
4403
4403
  */
4404
4404
  'package-json/valid-files'?: Linter.RuleEntry<[]>;
4405
4405
  /**
4406
4406
  * Enforce that the `funding` property is valid.
4407
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-funding.md
4407
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-funding
4408
4408
  */
4409
4409
  'package-json/valid-funding'?: Linter.RuleEntry<[]>;
4410
+ /**
4411
+ * Enforce that the `gypfile` property is valid.
4412
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-gypfile
4413
+ */
4414
+ 'package-json/valid-gypfile'?: Linter.RuleEntry<[]>;
4410
4415
  /**
4411
4416
  * Enforce that the `homepage` property is valid.
4412
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-homepage.md
4417
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-homepage
4413
4418
  */
4414
4419
  'package-json/valid-homepage'?: Linter.RuleEntry<[]>;
4415
4420
  /**
4416
4421
  * Enforce that the `keywords` property is valid.
4417
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-keywords.md
4422
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-keywords
4418
4423
  */
4419
4424
  'package-json/valid-keywords'?: Linter.RuleEntry<[]>;
4425
+ /**
4426
+ * Enforce that the `libc` property is valid.
4427
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-libc
4428
+ */
4429
+ 'package-json/valid-libc'?: Linter.RuleEntry<[]>;
4420
4430
  /**
4421
4431
  * Enforce that the `license` property is valid.
4422
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-license.md
4432
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-license
4423
4433
  */
4424
4434
  'package-json/valid-license'?: Linter.RuleEntry<[]>;
4425
4435
  /**
4426
4436
  * Enforce that the `main` property is valid.
4427
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-main.md
4437
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-main
4428
4438
  */
4429
4439
  'package-json/valid-main'?: Linter.RuleEntry<[]>;
4430
4440
  /**
4431
4441
  * Enforce that the `man` property is valid.
4432
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-man.md
4442
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-man
4433
4443
  */
4434
4444
  'package-json/valid-man'?: Linter.RuleEntry<[]>;
4435
4445
  /**
4436
4446
  * Enforce that the `module` property is valid.
4437
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-module.md
4447
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-module
4438
4448
  */
4439
4449
  'package-json/valid-module'?: Linter.RuleEntry<[]>;
4440
4450
  /**
4441
- * Enforce that package names are valid npm package names
4442
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-name.md
4451
+ * Enforce that the `name` property is valid.
4452
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-name
4443
4453
  */
4444
4454
  'package-json/valid-name'?: Linter.RuleEntry<[]>;
4445
4455
  /**
4446
4456
  * Enforce that the `optionalDependencies` property is valid.
4447
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-optionalDependencies.md
4457
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-optionalDependencies
4448
4458
  */
4449
4459
  'package-json/valid-optionalDependencies'?: Linter.RuleEntry<[]>;
4450
4460
  /**
4451
4461
  * Enforce that the `os` property is valid.
4452
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-os.md
4462
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-os
4453
4463
  */
4454
4464
  'package-json/valid-os'?: Linter.RuleEntry<[]>;
4455
- /**
4456
- * Enforce that package.json has all properties required by the npm spec
4457
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-package-definition.md
4458
- * @deprecated
4459
- */
4460
- 'package-json/valid-package-definition'?: Linter.RuleEntry<PackageJsonValidPackageDefinition>;
4461
4465
  /**
4462
4466
  * Enforce that the `packageManager` property is valid.
4463
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-packageManager.md
4467
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-packageManager
4464
4468
  */
4465
4469
  'package-json/valid-packageManager'?: Linter.RuleEntry<[]>;
4466
4470
  /**
4467
4471
  * Enforce that the `peerDependencies` property is valid.
4468
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-peerDependencies.md
4472
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-peerDependencies
4469
4473
  */
4470
4474
  'package-json/valid-peerDependencies'?: Linter.RuleEntry<[]>;
4475
+ /**
4476
+ * Enforce that the `peerDependenciesMeta` property is valid.
4477
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-peerDependenciesMeta
4478
+ */
4479
+ 'package-json/valid-peerDependenciesMeta'?: Linter.RuleEntry<[]>;
4480
+ /**
4481
+ * Enforces that any dependencies declared in `peerDependenciesMeta` are also defined in the package's `peerDependencies`.
4482
+ * @see https://eslint-plugin-package-json.dev/rules/valid-peerDependenciesMeta-relationship
4483
+ */
4484
+ 'package-json/valid-peerDependenciesMeta-relationship'?: Linter.RuleEntry<[]>;
4471
4485
  /**
4472
4486
  * Enforce that the `private` property is valid.
4473
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-private.md
4487
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-private
4474
4488
  */
4475
4489
  'package-json/valid-private'?: Linter.RuleEntry<[]>;
4476
4490
  /**
4477
4491
  * Enforce that the `publishConfig` property is valid.
4478
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-publishConfig.md
4492
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-publishConfig
4479
4493
  */
4480
4494
  'package-json/valid-publishConfig'?: Linter.RuleEntry<[]>;
4481
4495
  /**
4482
4496
  * Enforce that the `repository` property is valid.
4483
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-repository.md
4497
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-repository
4484
4498
  */
4485
4499
  'package-json/valid-repository'?: Linter.RuleEntry<[]>;
4486
4500
  /**
4487
4501
  * Enforce that if repository directory is specified, it matches the path to the package.json file
4488
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-repository-directory.md
4502
+ * @see https://eslint-plugin-package-json.dev/rules/valid-repository-directory
4489
4503
  */
4490
4504
  'package-json/valid-repository-directory'?: Linter.RuleEntry<[]>;
4491
4505
  /**
4492
4506
  * Enforce that the `scripts` property is valid.
4493
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-scripts.md
4507
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-scripts
4494
4508
  */
4495
4509
  'package-json/valid-scripts'?: Linter.RuleEntry<[]>;
4496
4510
  /**
4497
4511
  * Enforce that the `sideEffects` property is valid.
4498
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-sideEffects.md
4512
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-sideEffects
4499
4513
  */
4500
4514
  'package-json/valid-sideEffects'?: Linter.RuleEntry<[]>;
4501
4515
  /**
4502
4516
  * Enforce that the `type` property is valid.
4503
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-type.md
4517
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-type
4504
4518
  */
4505
4519
  'package-json/valid-type'?: Linter.RuleEntry<[]>;
4506
4520
  /**
4507
- * Enforce that package versions are valid semver specifiers
4508
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-version.md
4521
+ * Enforce that the `version` property is valid.
4522
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-version
4509
4523
  */
4510
4524
  'package-json/valid-version'?: Linter.RuleEntry<[]>;
4511
4525
  /**
4512
4526
  * Enforce that the `workspaces` property is valid.
4513
- * @see https://github.com/michaelfaith/eslint-plugin-package-json/blob/HEAD/docs/rules/valid-workspaces.md
4527
+ * @see https://eslint-plugin-package-json.dev/rules/valid-properties/valid-workspaces
4514
4528
  */
4515
4529
  'package-json/valid-workspaces'?: Linter.RuleEntry<[]>;
4516
4530
  /**
@@ -6959,7 +6973,7 @@ interface RuleOptions {
6959
6973
  */
6960
6974
  'vue/jsx-uses-vars'?: Linter.RuleEntry<[]>;
6961
6975
  /**
6962
- * Enforce consistent spacing between keys and values in object literal properties in `<template>`
6976
+ * Enforce consistent spacing between property names and type annotations in types and interfaces in `<template>`
6963
6977
  * @see https://eslint.vuejs.org/rules/key-spacing.html
6964
6978
  */
6965
6979
  'vue/key-spacing'?: Linter.RuleEntry<VueKeySpacing>;
@@ -7681,7 +7695,7 @@ interface RuleOptions {
7681
7695
  */
7682
7696
  'vue/prop-name-casing'?: Linter.RuleEntry<VuePropNameCasing>;
7683
7697
  /**
7684
- * Require quotes around object literal property names in `<template>`
7698
+ * Require quotes around object literal, type literal, interfaces and enums property names in `<template>`
7685
7699
  * @see https://eslint.vuejs.org/rules/quote-props.html
7686
7700
  */
7687
7701
  'vue/quote-props'?: Linter.RuleEntry<VueQuoteProps>;
@@ -11682,7 +11696,6 @@ type NNoUnpublishedBin = [] | [{
11682
11696
  exclude?: string[];
11683
11697
  replace: [string, string];
11684
11698
  })[]]);
11685
- [k: string]: unknown | undefined;
11686
11699
  }]; // ----- n/no-unpublished-import -----
11687
11700
  type NNoUnpublishedImport = [] | [{
11688
11701
  allowModules?: string[];
@@ -11736,7 +11749,7 @@ type NNoUnsupportedFeaturesEsSyntax = [] | [{
11736
11749
  type NNoUnsupportedFeaturesNodeBuiltins = [] | [{
11737
11750
  version?: string;
11738
11751
  allowExperimental?: boolean;
11739
- ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent" | "http.ClientRequest" | "http.Server" | "http.ServerResponse" | "http.IncomingMessage" | "http.OutgoingMessage" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
11752
+ ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.locks" | "navigator.locks.request" | "navigator.locks.query" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decapsulateBits" | "crypto.subtle.decapsulateKey" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encapsulateBits" | "crypto.subtle.encapsulateKey" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.getPublicKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "SubtleCrypto.supports" | "CloseEvent" | "CustomEvent" | "Event" | "EventSource" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.execve" | "process.exitCode" | "process.features.cached_builtins" | "process.features.debug" | "process.features.inspector" | "process.features.ipv6" | "process.features.require_module" | "process.features.tls" | "process.features.tls_alpn" | "process.features.tls_ocsp" | "process.features.tls_sni" | "process.features.typescript" | "process.features.uv" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.ref" | "process.release" | "process.report" | "process.report.excludeEnv" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.threadCpuUsage" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.unref" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.Assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.partialDeepStrictEqual" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.Assert" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.partialDeepStrictEqual" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.Assert" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.partialDeepStrictEqual" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decapsulateBits" | "crypto.webcrypto.subtle.decapsulateKey" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encapsulateBits" | "crypto.webcrypto.subtle.encapsulateKey" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.getPublicKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.argon2" | "crypto.argon2Sync" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.decapsulate" | "crypto.diffieHellman" | "crypto.encapsulate" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTlsa" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTlsa" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTlsa" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.mkdtempDisposable" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.mkdtempDisposableSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.Utf8Stream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.mkdtempDisposable" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.METHODS" | "http.STATUS_CODES" | "http.globalAgent" | "http.maxHeaderSize" | "http.createServer" | "http.get" | "http.request" | "http.validateHeaderName" | "http.validateHeaderValue" | "http.setMaxIdleHTTPParsers" | "http.Agent()" | "http.Agent" | "http.ClientRequest()" | "http.ClientRequest" | "http.Server()" | "http.Server" | "http.ServerResponse()" | "http.ServerResponse" | "http.IncomingMessage()" | "http.IncomingMessage" | "http.OutgoingMessage()" | "http.OutgoingMessage" | "http.WebSocket()" | "http.WebSocket" | "_http_agent" | "_http_client" | "_http_common" | "_http_incoming" | "_http_outgoing" | "_http_server" | "https" | "https.globalAgent" | "https.createServer" | "https.get" | "https.request" | "https.Agent" | "https.Server" | "inspector" | "inspector.Session" | "inspector.Network.dataReceived" | "inspector.Network.dataSent" | "inspector.Network.loadingFailed" | "inspector.Network.loadingFinished" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.webSocketCreated" | "inspector.Network.webSocketHandshakeResponseReceived" | "inspector.Network.webSocketClosed" | "inspector.NetworkResources.put" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.Network.dataReceived" | "inspector/promises.Network.dataSent" | "inspector/promises.Network.loadingFailed" | "inspector/promises.Network.loadingFinished" | "inspector/promises.Network.requestWillBeSent" | "inspector/promises.Network.responseReceived" | "inspector/promises.Network.webSocketCreated" | "inspector/promises.Network.webSocketHandshakeResponseReceived" | "inspector/promises.Network.webSocketClosed" | "inspector/promises.NetworkResources.put" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.findPackageJSON" | "module.flushCompileCache" | "module.getCompileCacheDir" | "module.getSourceMapsSupport" | "module.isBuiltin" | "module.registerHooks" | "module.register" | "module.setSourceMapsSupport" | "module.stripTypeScriptTypes" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.findPackageJSON" | "module.Module.flushCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.getSourceMapsSupport" | "module.Module.isBuiltin" | "module.Module.registerHooks" | "module.Module.register" | "module.Module.setSourceMapsSupport" | "module.Module.stripTypeScriptTypes" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.BlockList.isBlockList" | "net.SocketAddress" | "net.SocketAddress.parse" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.eventLoopUtilization" | "perf_hooks.timerify" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getAssetKeys" | "sea.getRawAsset" | "sea.sea.isSea" | "sea.sea.getAsset" | "sea.sea.getAssetAsBlob" | "sea.sea.getAssetKeys" | "sea.sea.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "_stream_duplex" | "_stream_passthrough" | "_stream_readable" | "_stream_transform" | "_stream_wrap" | "_stream_writable" | "string_decoder" | "string_decoder.StringDecoder" | "sqlite" | "sqlite.constants" | "sqlite.constants.SQLITE_CHANGESET_OMIT" | "sqlite.constants.SQLITE_CHANGESET_REPLACE" | "sqlite.constants.SQLITE_CHANGESET_ABORT" | "sqlite.backup" | "sqlite.DatabaseSync" | "sqlite.Session" | "sqlite.StatementSync" | "sqlite.SQLITE_CHANGESET_OMIT" | "sqlite.SQLITE_CHANGESET_REPLACE" | "sqlite.SQLITE_CHANGESET_ABORT" | "test" | "test.after" | "test.afterEach" | "test.assert" | "test.assert.register" | "test.before" | "test.beforeEach" | "test.describe" | "test.describe.only" | "test.describe.skip" | "test.describe.todo" | "test.it" | "test.it.only" | "test.it.skip" | "test.it.todo" | "test.mock" | "test.mock.fn" | "test.mock.getter" | "test.mock.method" | "test.mock.module" | "test.mock.property" | "test.mock.reset" | "test.mock.restoreAll" | "test.mock.setter" | "test.mock.timers" | "test.mock.timers.enable" | "test.mock.timers.reset" | "test.mock.timers.tick" | "test.only" | "test.run" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.skip" | "test.suite" | "test.test" | "test.test.only" | "test.test.skip" | "test.test.todo" | "test.todo" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "timers/promises.scheduler.wait" | "timers/promises.scheduler.yield" | "tls" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.CryptoStream" | "tls.DEFAULT_CIPHERS" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.getCACertificates" | "tls.getCiphers" | "tls.rootCertificates" | "tls.SecureContext" | "tls.SecurePair" | "tls.Server" | "tls.setDefaultCACertificates" | "tls.TLSSocket" | "_tls_common" | "_tls_wrap" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLPattern" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.diff" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getCallSites" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.getSystemErrorMessage" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.setTraceSigInt" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat16Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat16Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.isStringOneByteRepresentation" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "v8.startCpuProfile" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.threadName" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.getHeapStatistics" | "worker_threads.markAsUncloneable" | "worker_threads.markAsUntransferable" | "worker_threads.isInternalThread" | "worker_threads.isMainThread" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.locks" | "worker_threads.locks.request" | "worker_threads.locks.query" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.constants" | "zlib.constants.ZSTD_e_continue" | "zlib.constants.ZSTD_e_flush" | "zlib.constants.ZSTD_e_end" | "zlib.constants.ZSTD_fast" | "zlib.constants.ZSTD_dfast" | "zlib.constants.ZSTD_greedy" | "zlib.constants.ZSTD_lazy" | "zlib.constants.ZSTD_lazy2" | "zlib.constants.ZSTD_btlazy2" | "zlib.constants.ZSTD_btopt" | "zlib.constants.ZSTD_btultra" | "zlib.constants.ZSTD_btultra2" | "zlib.constants.ZSTD_c_compressionLevel" | "zlib.constants.ZSTD_c_windowLog" | "zlib.constants.ZSTD_c_hashLog" | "zlib.constants.ZSTD_c_chainLog" | "zlib.constants.ZSTD_c_searchLog" | "zlib.constants.ZSTD_c_minMatch" | "zlib.constants.ZSTD_c_targetLength" | "zlib.constants.ZSTD_c_strategy" | "zlib.constants.ZSTD_c_enableLongDistanceMatching" | "zlib.constants.ZSTD_c_ldmHashLog" | "zlib.constants.ZSTD_c_ldmMinMatch" | "zlib.constants.ZSTD_c_ldmBucketSizeLog" | "zlib.constants.ZSTD_c_ldmHashRateLog" | "zlib.constants.ZSTD_c_contentSizeFlag" | "zlib.constants.ZSTD_c_checksumFlag" | "zlib.constants.ZSTD_c_dictIDFlag" | "zlib.constants.ZSTD_c_nbWorkers" | "zlib.constants.ZSTD_c_jobSize" | "zlib.constants.ZSTD_c_overlapLog" | "zlib.constants.ZSTD_d_windowLogMax" | "zlib.constants.ZSTD_CLEVEL_DEFAULT" | "zlib.constants.ZSTD_error_no_error" | "zlib.constants.ZSTD_error_GENERIC" | "zlib.constants.ZSTD_error_prefix_unknown" | "zlib.constants.ZSTD_error_version_unsupported" | "zlib.constants.ZSTD_error_frameParameter_unsupported" | "zlib.constants.ZSTD_error_frameParameter_windowTooLarge" | "zlib.constants.ZSTD_error_corruption_detected" | "zlib.constants.ZSTD_error_checksum_wrong" | "zlib.constants.ZSTD_error_literals_headerWrong" | "zlib.constants.ZSTD_error_dictionary_corrupted" | "zlib.constants.ZSTD_error_dictionary_wrong" | "zlib.constants.ZSTD_error_dictionaryCreation_failed" | "zlib.constants.ZSTD_error_parameter_unsupported" | "zlib.constants.ZSTD_error_parameter_combination_unsupported" | "zlib.constants.ZSTD_error_parameter_outOfBound" | "zlib.constants.ZSTD_error_tableLog_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooLarge" | "zlib.constants.ZSTD_error_maxSymbolValue_tooSmall" | "zlib.constants.ZSTD_error_stabilityCondition_notRespected" | "zlib.constants.ZSTD_error_stage_wrong" | "zlib.constants.ZSTD_error_init_missing" | "zlib.constants.ZSTD_error_memory_allocation" | "zlib.constants.ZSTD_error_workSpace_tooSmall" | "zlib.constants.ZSTD_error_dstSize_tooSmall" | "zlib.constants.ZSTD_error_srcSize_wrong" | "zlib.constants.ZSTD_error_dstBuffer_null" | "zlib.constants.ZSTD_error_noForwardProgress_destFull" | "zlib.constants.ZSTD_error_noForwardProgress_inputEmpty" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.createZstdCompress" | "zlib.createZstdDecompress" | "zlib.deflate" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.deflateSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.inflateSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.zstdCompress" | "zlib.zstdCompressSync" | "zlib.zstdDecompress" | "zlib.zstdDecompressSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib.ZstdCompress" | "zlib.ZstdDecompress" | "zlib.ZstdOptions" | "zlib" | "import.meta.resolve" | "import.meta.dirname" | "import.meta.filename" | "import.meta.main")[];
11740
11753
  }]; // ----- n/prefer-global/buffer -----
11741
11754
  type NPreferGlobalBuffer = [] | [("always" | "never")]; // ----- n/prefer-global/console -----
11742
11755
  type NPreferGlobalConsole = [] | [("always" | "never")]; // ----- n/prefer-global/crypto -----
@@ -12174,9 +12187,12 @@ type PackageJsonExportsSubpathsStyle = [] | [{
12174
12187
  }]; // ----- package-json/no-empty-fields -----
12175
12188
  type PackageJsonNoEmptyFields = [] | [{
12176
12189
  ignoreProperties?: string[];
12190
+ }]; // ----- package-json/no-local-dependencies -----
12191
+ type PackageJsonNoLocalDependencies = [] | [{
12192
+ ignorePrivate?: boolean;
12177
12193
  }]; // ----- package-json/order-properties -----
12178
12194
  type PackageJsonOrderProperties = [] | [{
12179
- order?: (("legacy" | "sort-package-json") | string[]);
12195
+ order?: ("sort-package-json" | string[]);
12180
12196
  }]; // ----- package-json/repository-shorthand -----
12181
12197
  type PackageJsonRepositoryShorthand = [] | [{
12182
12198
  form?: ("object" | "shorthand");
@@ -12190,12 +12206,18 @@ type PackageJsonRequireAuthor = [] | [{
12190
12206
  }]; // ----- package-json/require-bin -----
12191
12207
  type PackageJsonRequireBin = [] | [{
12192
12208
  ignorePrivate?: boolean;
12209
+ }]; // ----- package-json/require-browser -----
12210
+ type PackageJsonRequireBrowser = [] | [{
12211
+ ignorePrivate?: boolean;
12193
12212
  }]; // ----- package-json/require-bugs -----
12194
12213
  type PackageJsonRequireBugs = [] | [{
12195
12214
  ignorePrivate?: boolean;
12196
12215
  }]; // ----- package-json/require-bundleDependencies -----
12197
12216
  type PackageJsonRequireBundleDependencies = [] | [{
12198
12217
  ignorePrivate?: boolean;
12218
+ }]; // ----- package-json/require-config -----
12219
+ type PackageJsonRequireConfig = [] | [{
12220
+ ignorePrivate?: boolean;
12199
12221
  }]; // ----- package-json/require-contributors -----
12200
12222
  type PackageJsonRequireContributors = [] | [{
12201
12223
  ignorePrivate?: boolean;
@@ -12229,12 +12251,18 @@ type PackageJsonRequireFiles = [] | [{
12229
12251
  }]; // ----- package-json/require-funding -----
12230
12252
  type PackageJsonRequireFunding = [] | [{
12231
12253
  ignorePrivate?: boolean;
12254
+ }]; // ----- package-json/require-gypfile -----
12255
+ type PackageJsonRequireGypfile = [] | [{
12256
+ ignorePrivate?: boolean;
12232
12257
  }]; // ----- package-json/require-homepage -----
12233
12258
  type PackageJsonRequireHomepage = [] | [{
12234
12259
  ignorePrivate?: boolean;
12235
12260
  }]; // ----- package-json/require-keywords -----
12236
12261
  type PackageJsonRequireKeywords = [] | [{
12237
12262
  ignorePrivate?: boolean;
12263
+ }]; // ----- package-json/require-libc -----
12264
+ type PackageJsonRequireLibc = [] | [{
12265
+ ignorePrivate?: boolean;
12238
12266
  }]; // ----- package-json/require-license -----
12239
12267
  type PackageJsonRequireLicense = [] | [{
12240
12268
  ignorePrivate?: boolean;
@@ -12262,6 +12290,9 @@ type PackageJsonRequirePackageManager = [] | [{
12262
12290
  }]; // ----- package-json/require-peerDependencies -----
12263
12291
  type PackageJsonRequirePeerDependencies = [] | [{
12264
12292
  ignorePrivate?: boolean;
12293
+ }]; // ----- package-json/require-peerDependenciesMeta -----
12294
+ type PackageJsonRequirePeerDependenciesMeta = [] | [{
12295
+ ignorePrivate?: boolean;
12265
12296
  }]; // ----- package-json/require-publishConfig -----
12266
12297
  type PackageJsonRequirePublishConfig = [] | [{
12267
12298
  ignorePrivate?: boolean;
@@ -12297,11 +12328,14 @@ type PackageJsonRestrictDependencyRanges = [] | [({
12297
12328
  }[])]; // ----- package-json/restrict-private-properties -----
12298
12329
  type PackageJsonRestrictPrivateProperties = [] | [{
12299
12330
  blockedProperties?: string[];
12331
+ }]; // ----- package-json/restrict-top-level-properties -----
12332
+ type PackageJsonRestrictTopLevelProperties = [] | [{
12333
+ ban?: (string | {
12334
+ message?: string;
12335
+ property: string;
12336
+ })[];
12300
12337
  }]; // ----- package-json/sort-collections -----
12301
- type PackageJsonSortCollections = [] | [string[]]; // ----- package-json/valid-package-definition -----
12302
- type PackageJsonValidPackageDefinition = [] | [{
12303
- ignoreProperties?: string[];
12304
- }]; // ----- padded-blocks -----
12338
+ type PackageJsonSortCollections = [] | [string[]]; // ----- padded-blocks -----
12305
12339
  type PaddedBlocks = [] | [(("always" | "never") | {
12306
12340
  blocks?: ("always" | "never");
12307
12341
  switches?: ("always" | "never");
@@ -14264,6 +14298,7 @@ type VueArrayElementNewline = [] | [(_VueArrayElementNewlineBasicConfig | {
14264
14298
  ArrayPattern?: _VueArrayElementNewlineBasicConfig;
14265
14299
  })];
14266
14300
  type _VueArrayElementNewlineBasicConfig = (("always" | "never" | "consistent") | {
14301
+ consistent?: boolean;
14267
14302
  multiline?: boolean;
14268
14303
  minItems?: (number | null);
14269
14304
  }); // ----- vue/arrow-spacing -----
@@ -14323,9 +14358,14 @@ type VueCommaDangle = [] | [(_VueCommaDangleValue | {
14323
14358
  imports?: _VueCommaDangleValueWithIgnore;
14324
14359
  exports?: _VueCommaDangleValueWithIgnore;
14325
14360
  functions?: _VueCommaDangleValueWithIgnore;
14361
+ importAttributes?: _VueCommaDangleValueWithIgnore;
14362
+ dynamicImports?: _VueCommaDangleValueWithIgnore;
14363
+ enums?: _VueCommaDangleValueWithIgnore;
14364
+ generics?: _VueCommaDangleValueWithIgnore;
14365
+ tuples?: _VueCommaDangleValueWithIgnore;
14326
14366
  })];
14327
14367
  type _VueCommaDangleValue = ("always-multiline" | "always" | "never" | "only-multiline");
14328
- type _VueCommaDangleValueWithIgnore = ("always-multiline" | "always" | "ignore" | "never" | "only-multiline"); // ----- vue/comma-spacing -----
14368
+ type _VueCommaDangleValueWithIgnore = ("always-multiline" | "always" | "never" | "only-multiline" | "ignore"); // ----- vue/comma-spacing -----
14329
14369
  type VueCommaSpacing = [] | [{
14330
14370
  before?: boolean;
14331
14371
  after?: boolean;
@@ -14375,6 +14415,10 @@ type VueFirstAttributeLinebreak = [] | [{
14375
14415
  }]; // ----- vue/func-call-spacing -----
14376
14416
  type VueFuncCallSpacing = ([] | ["never"] | [] | ["always"] | ["always", {
14377
14417
  allowNewlines?: boolean;
14418
+ optionalChain?: {
14419
+ before?: boolean;
14420
+ after?: boolean;
14421
+ };
14378
14422
  }]); // ----- vue/html-button-has-type -----
14379
14423
  type VueHtmlButtonHasType = [] | [{
14380
14424
  button?: boolean;
@@ -14446,6 +14490,7 @@ type VueKeySpacing = [] | [({
14446
14490
  mode?: ("strict" | "minimum");
14447
14491
  beforeColon?: boolean;
14448
14492
  afterColon?: boolean;
14493
+ ignoredNodes?: ("ObjectExpression" | "ObjectPattern" | "ImportDeclaration" | "ExportNamedDeclaration" | "ExportAllDeclaration" | "TSTypeLiteral" | "TSInterfaceBody" | "ClassBody")[];
14449
14494
  } | {
14450
14495
  singleLine?: {
14451
14496
  mode?: ("strict" | "minimum");
@@ -14489,18 +14534,6 @@ type VueKeywordSpacing = [] | [{
14489
14534
  before?: boolean;
14490
14535
  after?: boolean;
14491
14536
  };
14492
- as?: {
14493
- before?: boolean;
14494
- after?: boolean;
14495
- };
14496
- async?: {
14497
- before?: boolean;
14498
- after?: boolean;
14499
- };
14500
- await?: {
14501
- before?: boolean;
14502
- after?: boolean;
14503
- };
14504
14537
  boolean?: {
14505
14538
  before?: boolean;
14506
14539
  after?: boolean;
@@ -14593,18 +14626,10 @@ type VueKeywordSpacing = [] | [{
14593
14626
  before?: boolean;
14594
14627
  after?: boolean;
14595
14628
  };
14596
- from?: {
14597
- before?: boolean;
14598
- after?: boolean;
14599
- };
14600
14629
  function?: {
14601
14630
  before?: boolean;
14602
14631
  after?: boolean;
14603
14632
  };
14604
- get?: {
14605
- before?: boolean;
14606
- after?: boolean;
14607
- };
14608
14633
  goto?: {
14609
14634
  before?: boolean;
14610
14635
  after?: boolean;
@@ -14637,10 +14662,6 @@ type VueKeywordSpacing = [] | [{
14637
14662
  before?: boolean;
14638
14663
  after?: boolean;
14639
14664
  };
14640
- let?: {
14641
- before?: boolean;
14642
- after?: boolean;
14643
- };
14644
14665
  long?: {
14645
14666
  before?: boolean;
14646
14667
  after?: boolean;
@@ -14657,10 +14678,6 @@ type VueKeywordSpacing = [] | [{
14657
14678
  before?: boolean;
14658
14679
  after?: boolean;
14659
14680
  };
14660
- of?: {
14661
- before?: boolean;
14662
- after?: boolean;
14663
- };
14664
14681
  package?: {
14665
14682
  before?: boolean;
14666
14683
  after?: boolean;
@@ -14681,10 +14698,6 @@ type VueKeywordSpacing = [] | [{
14681
14698
  before?: boolean;
14682
14699
  after?: boolean;
14683
14700
  };
14684
- set?: {
14685
- before?: boolean;
14686
- after?: boolean;
14687
- };
14688
14701
  short?: {
14689
14702
  before?: boolean;
14690
14703
  after?: boolean;
@@ -14753,10 +14766,66 @@ type VueKeywordSpacing = [] | [{
14753
14766
  before?: boolean;
14754
14767
  after?: boolean;
14755
14768
  };
14769
+ arguments?: {
14770
+ before?: boolean;
14771
+ after?: boolean;
14772
+ };
14773
+ as?: {
14774
+ before?: boolean;
14775
+ after?: boolean;
14776
+ };
14777
+ async?: {
14778
+ before?: boolean;
14779
+ after?: boolean;
14780
+ };
14781
+ await?: {
14782
+ before?: boolean;
14783
+ after?: boolean;
14784
+ };
14785
+ eval?: {
14786
+ before?: boolean;
14787
+ after?: boolean;
14788
+ };
14789
+ from?: {
14790
+ before?: boolean;
14791
+ after?: boolean;
14792
+ };
14793
+ get?: {
14794
+ before?: boolean;
14795
+ after?: boolean;
14796
+ };
14797
+ let?: {
14798
+ before?: boolean;
14799
+ after?: boolean;
14800
+ };
14801
+ of?: {
14802
+ before?: boolean;
14803
+ after?: boolean;
14804
+ };
14805
+ set?: {
14806
+ before?: boolean;
14807
+ after?: boolean;
14808
+ };
14809
+ type?: {
14810
+ before?: boolean;
14811
+ after?: boolean;
14812
+ };
14813
+ using?: {
14814
+ before?: boolean;
14815
+ after?: boolean;
14816
+ };
14756
14817
  yield?: {
14757
14818
  before?: boolean;
14758
14819
  after?: boolean;
14759
14820
  };
14821
+ accessor?: {
14822
+ before?: boolean;
14823
+ after?: boolean;
14824
+ };
14825
+ satisfies?: {
14826
+ before?: boolean;
14827
+ after?: boolean;
14828
+ };
14760
14829
  };
14761
14830
  }]; // ----- vue/match-component-file-name -----
14762
14831
  type VueMatchComponentFileName = [] | [{
@@ -14876,7 +14945,9 @@ type VueMultilineHtmlElementContentNewline = [] | [{
14876
14945
  ignores?: string[];
14877
14946
  allowEmptyLines?: boolean;
14878
14947
  }]; // ----- vue/multiline-ternary -----
14879
- type VueMultilineTernary = [] | [("always" | "always-multiline" | "never")]; // ----- vue/mustache-interpolation-spacing -----
14948
+ type VueMultilineTernary = [] | [("always" | "always-multiline" | "never")] | [("always" | "always-multiline" | "never"), {
14949
+ ignoreJSX?: boolean;
14950
+ }]; // ----- vue/mustache-interpolation-spacing -----
14880
14951
  type VueMustacheInterpolationSpacing = [] | [("always" | "never")]; // ----- vue/new-line-between-multi-line-property -----
14881
14952
  type VueNewLineBetweenMultiLineProperty = [] | [{
14882
14953
  minLineOfMultilineProperty?: number;
@@ -14936,6 +15007,13 @@ type VueNoExtraParens = ([] | ["functions"] | [] | ["all"] | ["all", {
14936
15007
  enforceForNewInMemberExpressions?: boolean;
14937
15008
  enforceForFunctionPrototypeMethods?: boolean;
14938
15009
  allowParensAfterCommentPattern?: string;
15010
+ nestedConditionalExpressions?: boolean;
15011
+ allowNodesInSpreadElement?: {
15012
+ ConditionalExpression?: boolean;
15013
+ LogicalExpression?: boolean;
15014
+ AwaitExpression?: boolean;
15015
+ };
15016
+ ignoredNodes?: string[];
14939
15017
  }]); // ----- vue/no-implicit-coercion -----
14940
15018
  type VueNoImplicitCoercion = [] | [{
14941
15019
  boolean?: boolean;
@@ -15159,14 +15237,41 @@ type VueObjectCurlyNewline = [] | [((("always" | "never") | {
15159
15237
  minProperties?: number;
15160
15238
  consistent?: boolean;
15161
15239
  });
15240
+ TSTypeLiteral?: (("always" | "never") | {
15241
+ multiline?: boolean;
15242
+ minProperties?: number;
15243
+ consistent?: boolean;
15244
+ });
15245
+ TSInterfaceBody?: (("always" | "never") | {
15246
+ multiline?: boolean;
15247
+ minProperties?: number;
15248
+ consistent?: boolean;
15249
+ });
15250
+ TSEnumBody?: (("always" | "never") | {
15251
+ multiline?: boolean;
15252
+ minProperties?: number;
15253
+ consistent?: boolean;
15254
+ });
15162
15255
  })]; // ----- vue/object-curly-spacing -----
15163
15256
  type VueObjectCurlySpacing = [] | [("always" | "never")] | [("always" | "never"), {
15164
15257
  arraysInObjects?: boolean;
15165
15258
  objectsInObjects?: boolean;
15259
+ overrides?: {
15260
+ ObjectPattern?: ("always" | "never");
15261
+ ObjectExpression?: ("always" | "never");
15262
+ ImportDeclaration?: ("always" | "never");
15263
+ ImportAttributes?: ("always" | "never");
15264
+ ExportNamedDeclaration?: ("always" | "never");
15265
+ ExportAllDeclaration?: ("always" | "never");
15266
+ TSMappedType?: ("always" | "never");
15267
+ TSTypeLiteral?: ("always" | "never");
15268
+ TSInterfaceBody?: ("always" | "never");
15269
+ TSEnumBody?: ("always" | "never");
15270
+ };
15271
+ emptyObjects?: ("ignore" | "always" | "never");
15166
15272
  }]; // ----- vue/object-property-newline -----
15167
15273
  type VueObjectPropertyNewline = [] | [{
15168
15274
  allowAllPropertiesOnSameLine?: boolean;
15169
- allowMultiplePropertiesPerLine?: boolean;
15170
15275
  }]; // ----- vue/object-shorthand -----
15171
15276
  type VueObjectShorthand = ([] | [("always" | "methods" | "properties" | "never" | "consistent" | "consistent-as-needed")] | [] | [("always" | "methods" | "properties")] | [("always" | "methods" | "properties"), {
15172
15277
  avoidQuotes?: boolean;
@@ -15176,7 +15281,7 @@ type VueObjectShorthand = ([] | [("always" | "methods" | "properties" | "never"
15176
15281
  avoidQuotes?: boolean;
15177
15282
  avoidExplicitReturnArrows?: boolean;
15178
15283
  }]); // ----- vue/operator-linebreak -----
15179
- type VueOperatorLinebreak = [] | [("after" | "before" | "none" | null)] | [("after" | "before" | "none" | null), {
15284
+ type VueOperatorLinebreak = [] | [(("after" | "before" | "none") | null)] | [(("after" | "before" | "none") | null), {
15180
15285
  overrides?: {
15181
15286
  [k: string]: ("after" | "before" | "none" | "ignore") | undefined;
15182
15287
  };
@@ -15264,6 +15369,7 @@ type VueSpaceInParens = [] | [("always" | "never")] | [("always" | "never"), {
15264
15369
  }]; // ----- vue/space-infix-ops -----
15265
15370
  type VueSpaceInfixOps = [] | [{
15266
15371
  int32Hint?: boolean;
15372
+ ignoreTypes?: boolean;
15267
15373
  }]; // ----- vue/space-unary-ops -----
15268
15374
  type VueSpaceUnaryOps = [] | [{
15269
15375
  words?: boolean;