@lzear/eslint-config 2.1.0 → 3.0.1

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.
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const ignores = [
4
+ "**/.eslint-config-inspector/**",
5
+ "**/vite.config.*.timestamp-*",
6
+ "**/.vitepress/cache/**",
7
+ "**/node_modules/**",
8
+ "**/coverage/**",
9
+ "**/.history/**",
10
+ "**/.netlify/**",
11
+ "**/.vercel/**",
12
+ "**/.output/**",
13
+ "**/output/**",
14
+ "**/.cache/**",
15
+ "**/.temp/**",
16
+ "**/build/**",
17
+ "**/.nuxt/**",
18
+ "**/.next/**",
19
+ "**/dist/**",
20
+ "**/temp/**",
21
+ "**/.tmp/**",
22
+ "**/tmp/**"
23
+ ];
24
+ exports.ignores = ignores;
@@ -0,0 +1,24 @@
1
+ const ignores = [
2
+ "**/.eslint-config-inspector/**",
3
+ "**/vite.config.*.timestamp-*",
4
+ "**/.vitepress/cache/**",
5
+ "**/node_modules/**",
6
+ "**/coverage/**",
7
+ "**/.history/**",
8
+ "**/.netlify/**",
9
+ "**/.vercel/**",
10
+ "**/.output/**",
11
+ "**/output/**",
12
+ "**/.cache/**",
13
+ "**/.temp/**",
14
+ "**/build/**",
15
+ "**/.nuxt/**",
16
+ "**/.next/**",
17
+ "**/dist/**",
18
+ "**/temp/**",
19
+ "**/.tmp/**",
20
+ "**/tmp/**"
21
+ ];
22
+ export {
23
+ ignores
24
+ };
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") {
10
+ for (let key of __getOwnPropNames(from))
11
+ if (!__hasOwnProp.call(to, key) && key !== except)
12
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ }
14
+ return to;
15
+ };
16
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
18
+ mod
19
+ ));
20
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
21
+ const js = require("@eslint/js");
22
+ const tseslint = require("typescript-eslint");
23
+ const utils = require("../../utils.cjs");
24
+ const typescript = async (config) => {
25
+ if (!config.typescript) {
26
+ return [];
27
+ }
28
+ const { parser: typescriptParser } = await utils.interopDefault(
29
+ import("typescript-eslint")
30
+ );
31
+ const files = ["**/*.ts", "**/*.tsx", "**/*.cts", "**/*.mts"];
32
+ return tseslint.config({
33
+ name: "lzear/typescript",
34
+ extends: [
35
+ js.configs.recommended,
36
+ tseslint.configs.recommendedTypeChecked,
37
+ tseslint.configs.stylisticTypeChecked
38
+ ],
39
+ files,
40
+ languageOptions: {
41
+ parser: typescriptParser,
42
+ parserOptions: {
43
+ ecmaFeatures: { jsx: config.react },
44
+ ecmaVersion: "latest",
45
+ project: true,
46
+ projectService: true,
47
+ sourceType: "module",
48
+ tsconfigRootDir: process.cwd()
49
+ }
50
+ }
51
+ });
52
+ };
53
+ exports.typescript = typescript;
@@ -0,0 +1,35 @@
1
+ import js from "@eslint/js";
2
+ import tseslint from "typescript-eslint";
3
+ import { interopDefault } from "../../utils.mjs";
4
+ const typescript = async (config) => {
5
+ if (!config.typescript) {
6
+ return [];
7
+ }
8
+ const { parser: typescriptParser } = await interopDefault(
9
+ import("typescript-eslint")
10
+ );
11
+ const files = ["**/*.ts", "**/*.tsx", "**/*.cts", "**/*.mts"];
12
+ return tseslint.config({
13
+ name: "lzear/typescript",
14
+ extends: [
15
+ js.configs.recommended,
16
+ tseslint.configs.recommendedTypeChecked,
17
+ tseslint.configs.stylisticTypeChecked
18
+ ],
19
+ files,
20
+ languageOptions: {
21
+ parser: typescriptParser,
22
+ parserOptions: {
23
+ ecmaFeatures: { jsx: config.react },
24
+ ecmaVersion: "latest",
25
+ project: true,
26
+ projectService: true,
27
+ sourceType: "module",
28
+ tsconfigRootDir: process.cwd()
29
+ }
30
+ }
31
+ });
32
+ };
33
+ export {
34
+ typescript
35
+ };
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") {
10
+ for (let key of __getOwnPropNames(from))
11
+ if (!__hasOwnProp.call(to, key) && key !== except)
12
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ }
14
+ return to;
15
+ };
16
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
18
+ mod
19
+ ));
20
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
21
+ const utils = require("../../utils.cjs");
22
+ const vitest = async (config) => {
23
+ if (!config.vitest) {
24
+ return {};
25
+ }
26
+ const vitestPlugin = await utils.interopDefault(import("@vitest/eslint-plugin"));
27
+ const files = [
28
+ "**/test/*.js",
29
+ "**/test/*.cjs",
30
+ "**/test/*.mjs",
31
+ "**/*.test.js",
32
+ "**/*.test.cjs",
33
+ "**/*.test.mjs"
34
+ ];
35
+ if (config.typescript) {
36
+ files.push(
37
+ "**/test/*.ts",
38
+ "**/test/*.cts",
39
+ "**/test/*.mts",
40
+ "**/*.test.ts",
41
+ "**/*.test.cts",
42
+ "**/*.test.mts"
43
+ );
44
+ }
45
+ if (config.react) {
46
+ files.push("**/test/*.jsx", "**/*.test.jsx");
47
+ if (config.typescript) {
48
+ files.push("**/test/*.tsx", "**/*.test.tsx");
49
+ }
50
+ }
51
+ return {
52
+ name: "lzear/vitest",
53
+ files,
54
+ plugins: {
55
+ vitest: vitestPlugin
56
+ },
57
+ rules: { ...vitestPlugin.configs.recommended.rules },
58
+ settings: {
59
+ vitest: {
60
+ typecheck: true
61
+ }
62
+ }
63
+ };
64
+ };
65
+ exports.vitest = vitest;
@@ -0,0 +1,47 @@
1
+ import { interopDefault } from "../../utils.mjs";
2
+ const vitest = async (config) => {
3
+ if (!config.vitest) {
4
+ return {};
5
+ }
6
+ const vitestPlugin = await interopDefault(import("@vitest/eslint-plugin"));
7
+ const files = [
8
+ "**/test/*.js",
9
+ "**/test/*.cjs",
10
+ "**/test/*.mjs",
11
+ "**/*.test.js",
12
+ "**/*.test.cjs",
13
+ "**/*.test.mjs"
14
+ ];
15
+ if (config.typescript) {
16
+ files.push(
17
+ "**/test/*.ts",
18
+ "**/test/*.cts",
19
+ "**/test/*.mts",
20
+ "**/*.test.ts",
21
+ "**/*.test.cts",
22
+ "**/*.test.mts"
23
+ );
24
+ }
25
+ if (config.react) {
26
+ files.push("**/test/*.jsx", "**/*.test.jsx");
27
+ if (config.typescript) {
28
+ files.push("**/test/*.tsx", "**/*.test.tsx");
29
+ }
30
+ }
31
+ return {
32
+ name: "lzear/vitest",
33
+ files,
34
+ plugins: {
35
+ vitest: vitestPlugin
36
+ },
37
+ rules: { ...vitestPlugin.configs.recommended.rules },
38
+ settings: {
39
+ vitest: {
40
+ typecheck: true
41
+ }
42
+ }
43
+ };
44
+ };
45
+ export {
46
+ vitest
47
+ };
package/dist/index.cjs ADDED
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
+ const index$1 = require("./configs/a11y/index.cjs");
4
+ const index = require("./configs/core/index.cjs");
5
+ const index$3 = require("./configs/node/index.cjs");
6
+ const index$6 = require("./configs/package-json/index.cjs");
7
+ const index$7 = require("./configs/perfectionist/index.cjs");
8
+ const index$2 = require("./configs/react/index.cjs");
9
+ const files = require("./configs/src/files.cjs");
10
+ const index$4 = require("./configs/typescript/index.cjs");
11
+ const index$5 = require("./configs/vitest/index.cjs");
12
+ const CONFIG_OPTIONS = [
13
+ "perfectionist",
14
+ "typescript",
15
+ "vitest",
16
+ "react",
17
+ "node"
18
+ ];
19
+ const configGenerator = async ({
20
+ extends: customExtends = {},
21
+ ...rawConfig
22
+ } = {}) => {
23
+ const config = {};
24
+ for (const configName of CONFIG_OPTIONS) {
25
+ config[configName] = rawConfig[configName] ?? false;
26
+ }
27
+ const configFunctions = [
28
+ index.core,
29
+ index$1.a11y,
30
+ index$2.react,
31
+ index$3.node,
32
+ index$4.typescript,
33
+ index$5.vitest,
34
+ index$6.packageJson,
35
+ index$7.perfectionist
36
+ ];
37
+ const configs = await Promise.all(
38
+ configFunctions.map((createConfigFunction) => createConfigFunction(config))
39
+ );
40
+ return [
41
+ { name: "lzear/core/ignores", ignores: files.ignores },
42
+ ...configs.flat(),
43
+ ...Array.isArray(customExtends) ? customExtends : [
44
+ {
45
+ name: "lzear/custom-extends",
46
+ ...customExtends
47
+ }
48
+ ]
49
+ ];
50
+ };
51
+ const defaultOptions = {
52
+ perfectionist: true,
53
+ typescript: true,
54
+ vitest: true,
55
+ react: true,
56
+ node: true
57
+ };
58
+ exports.default = configGenerator;
59
+ exports.defaultOptions = defaultOptions;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,17 @@
1
- import { FlatESLintConfig } from 'eslint-define-config';
2
-
3
- declare const config: FlatESLintConfig[];
4
- export default config;
1
+ import { Linter } from 'eslint';
2
+ declare const CONFIG_OPTIONS: readonly ["perfectionist", "typescript", "vitest", "react", "node"];
3
+ type ConfigOptionKeys = (typeof CONFIG_OPTIONS)[number];
4
+ type ConfigOptionFlags = Record<ConfigOptionKeys, boolean>;
5
+ export type ConfigOptions = Required<ConfigOptionFlags>;
6
+ type RawConfigOptions = {
7
+ extends?: Linter.Config[] | Linter.Config;
8
+ } & Partial<ConfigOptionFlags>;
9
+ declare const configGenerator: ({ extends: customExtends, ...rawConfig }?: RawConfigOptions) => Promise<Linter.Config[]>;
10
+ export default configGenerator;
11
+ export declare const defaultOptions: {
12
+ perfectionist: boolean;
13
+ typescript: boolean;
14
+ vitest: boolean;
15
+ react: boolean;
16
+ node: boolean;
17
+ };
package/dist/index.mjs CHANGED
@@ -1,71 +1,59 @@
1
- import n from "@eslint/js";
2
- import o from "eslint-plugin-n";
3
- import i from "eslint-plugin-node-import";
4
- import t from "eslint-plugin-prefer-arrow";
5
- import e from "eslint-plugin-prettier";
6
- import m from "eslint-plugin-simple-import-sort";
7
- import s from "eslint-plugin-unicorn";
8
- import r from "globals";
9
- const p = [
10
- {
11
- ignores: ["**/node_modules/**", "**/dist/**", ".git/**"]
12
- },
13
- n.configs.recommended,
14
- {
15
- languageOptions: {
16
- ecmaVersion: 2023,
17
- sourceType: "module",
18
- globals: {
19
- ...r.browser,
20
- ...r.es2021,
21
- ...r.node
22
- }
23
- },
24
- plugins: {
25
- "prefer-arrow": t,
26
- "node-import": i,
27
- // import: eslintImport,
28
- // promise,
29
- // sonarjs,
30
- unicorn: s,
31
- n: o,
32
- "simple-import-sort": m
33
- },
34
- rules: {
35
- // ...eslintImport.configs.recommended.rules,
36
- ...o.configs.recommended.rules,
37
- "node-import/prefer-node-protocol": 2,
38
- "prefer-arrow/prefer-arrow-functions": [
39
- 2,
40
- {
41
- disallowPrototype: !0,
42
- singleReturnOnly: !1,
43
- classPropertiesAllowed: !1
44
- }
45
- ],
46
- // ...promise.configs.recommended.rules,
47
- "simple-import-sort/imports": 2,
48
- "simple-import-sort/exports": 2,
49
- // ...sonarjs.configs.recommended.rules,
50
- ...s.configs.recommended.rules
51
- }
52
- },
53
- {
54
- rules: {
55
- "n/no-missing-import": 0,
56
- // false positives
57
- "prefer-const": 2,
58
- "unicorn/no-abusive-eslint-disable": 0,
59
- "unicorn/no-null": 0,
60
- "unicorn/prevent-abbreviations": [0, { checkProperties: !0 }]
61
- }
62
- },
63
- {
64
- plugins: { prettier: e },
65
- // @ts-expect-error - no types
66
- rules: e.configs.recommended.rules
1
+ import { a11y } from "./configs/a11y/index.mjs";
2
+ import { core } from "./configs/core/index.mjs";
3
+ import { node } from "./configs/node/index.mjs";
4
+ import { packageJson } from "./configs/package-json/index.mjs";
5
+ import { perfectionist } from "./configs/perfectionist/index.mjs";
6
+ import { react } from "./configs/react/index.mjs";
7
+ import { ignores } from "./configs/src/files.mjs";
8
+ import { typescript } from "./configs/typescript/index.mjs";
9
+ import { vitest } from "./configs/vitest/index.mjs";
10
+ const CONFIG_OPTIONS = [
11
+ "perfectionist",
12
+ "typescript",
13
+ "vitest",
14
+ "react",
15
+ "node"
16
+ ];
17
+ const configGenerator = async ({
18
+ extends: customExtends = {},
19
+ ...rawConfig
20
+ } = {}) => {
21
+ const config = {};
22
+ for (const configName of CONFIG_OPTIONS) {
23
+ config[configName] = rawConfig[configName] ?? false;
67
24
  }
68
- ], w = p;
25
+ const configFunctions = [
26
+ core,
27
+ a11y,
28
+ react,
29
+ node,
30
+ typescript,
31
+ vitest,
32
+ packageJson,
33
+ perfectionist
34
+ ];
35
+ const configs = await Promise.all(
36
+ configFunctions.map((createConfigFunction) => createConfigFunction(config))
37
+ );
38
+ return [
39
+ { name: "lzear/core/ignores", ignores },
40
+ ...configs.flat(),
41
+ ...Array.isArray(customExtends) ? customExtends : [
42
+ {
43
+ name: "lzear/custom-extends",
44
+ ...customExtends
45
+ }
46
+ ]
47
+ ];
48
+ };
49
+ const defaultOptions = {
50
+ perfectionist: true,
51
+ typescript: true,
52
+ vitest: true,
53
+ react: true,
54
+ node: true
55
+ };
69
56
  export {
70
- w as default
57
+ configGenerator as default,
58
+ defaultOptions
71
59
  };
package/dist/utils.cjs ADDED
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const interopDefault = async (module2) => {
4
+ try {
5
+ const resolved = await module2;
6
+ if (typeof resolved === "object" && resolved) {
7
+ if ("default" in resolved && Object.keys(resolved).length === 1) {
8
+ const defaultExport = resolved.default;
9
+ if (!defaultExport) {
10
+ return defaultExport;
11
+ }
12
+ return defaultExport;
13
+ }
14
+ return resolved;
15
+ }
16
+ return resolved;
17
+ } catch (error) {
18
+ throw new Error(`Cannot import module: ${String(error)}`);
19
+ }
20
+ };
21
+ exports.interopDefault = interopDefault;
package/dist/utils.mjs ADDED
@@ -0,0 +1,21 @@
1
+ const interopDefault = async (module) => {
2
+ try {
3
+ const resolved = await module;
4
+ if (typeof resolved === "object" && resolved) {
5
+ if ("default" in resolved && Object.keys(resolved).length === 1) {
6
+ const defaultExport = resolved.default;
7
+ if (!defaultExport) {
8
+ return defaultExport;
9
+ }
10
+ return defaultExport;
11
+ }
12
+ return resolved;
13
+ }
14
+ return resolved;
15
+ } catch (error) {
16
+ throw new Error(`Cannot import module: ${String(error)}`);
17
+ }
18
+ };
19
+ export {
20
+ interopDefault
21
+ };
package/license.md ADDED
@@ -0,0 +1,20 @@
1
+ # The MIT License (MIT)
2
+
3
+ Copyright 2023 Azat S. <to@azat.io>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json CHANGED
@@ -1,68 +1,63 @@
1
1
  {
2
2
  "name": "@lzear/eslint-config",
3
+ "version": "3.0.1",
3
4
  "description": "ESLint shareable config",
4
- "version": "2.1.0",
5
- "repository": "lzear/eslint-config",
6
- "author": "lzear",
7
- "license": "MIT",
8
5
  "keywords": [
9
6
  "eslint",
10
7
  "eslint-config",
11
8
  "config",
12
9
  "code-styles",
13
10
  "linter",
14
- "javascript"
11
+ "javascript",
12
+ "typescript"
15
13
  ],
16
- "scripts": {
17
- "build": "vite build"
18
- },
19
- "publishConfig": {
20
- "access": "public"
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/lzear/eslint-config.git"
21
17
  },
22
- "files": [
23
- "./dist"
24
- ],
18
+ "license": "MIT",
19
+ "author": "lzear",
20
+ "type": "module",
25
21
  "exports": {
26
22
  ".": {
27
- "require": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
28
24
  "import": "./dist/index.mjs",
29
- "types": "./dist/index.d.ts"
25
+ "require": "./dist/index.cjs"
30
26
  },
31
27
  "./package.json": "./package.json"
32
28
  },
33
- "peerDependencies": {
34
- "eslint": "^8.50.0",
35
- "eslint-plugin-import": "^2.28.1",
36
- "eslint-plugin-n": "^16.1.0",
37
- "eslint-plugin-node-import": "^1.0.4",
38
- "eslint-plugin-prefer-arrow": "^1.2.3",
39
- "eslint-plugin-prettier": "^5.0.1",
40
- "eslint-plugin-promise": "^6.1.1",
41
- "eslint-plugin-sonarjs": "^0.21.0",
42
- "eslint-plugin-unicorn": "^48.0.1"
43
- },
29
+ "files": [
30
+ "./dist"
31
+ ],
44
32
  "dependencies": {
45
- "globals": "^15.0.0"
46
- },
47
- "devDependencies": {
48
- "@eslint/js": "^9.1.1",
49
- "@types/eslint__js": "^8.42.3",
50
- "eslint": "^9.1.0",
51
- "eslint-define-config": "^2.1.0",
52
- "eslint-plugin-import": "^2.29.1",
53
- "eslint-plugin-n": "^17.2.1",
54
- "eslint-plugin-node-import": "^1.0.4",
33
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
34
+ "@eslint/js": "^9.20.0",
35
+ "@next/eslint-plugin-next": "^15.1.7",
36
+ "@vitest/eslint-plugin": "^1.1.31",
37
+ "eslint-import-resolver-typescript": "^3.8.0",
38
+ "eslint-plugin-de-morgan": "^1.0.1",
39
+ "eslint-plugin-import-x": "^4.6.1",
40
+ "eslint-plugin-jsx-a11y": "^6.10.2",
41
+ "eslint-plugin-n": "^17.15.1",
42
+ "eslint-plugin-package-json": "^0.26.0",
43
+ "eslint-plugin-perfectionist": "^4.9.0",
55
44
  "eslint-plugin-prefer-arrow": "^1.2.3",
56
- "eslint-plugin-prettier": "^5.1.3",
57
- "eslint-plugin-promise": "^6.1.1",
58
- "eslint-plugin-simple-import-sort": "^12.1.0",
59
- "eslint-plugin-sonarjs": "^0.25.1",
60
- "eslint-plugin-unicorn": "^52.0.0",
61
- "vite": "^5.2.10",
62
- "vite-plugin-dts": "^3.8.3",
63
- "vitest": "^1.5.0"
45
+ "eslint-plugin-promise": "^7.2.1",
46
+ "eslint-plugin-react": "^7.37.4",
47
+ "eslint-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
48
+ "eslint-plugin-react-hooks": "^5.1.0",
49
+ "eslint-plugin-react-perf": "^3.3.3",
50
+ "eslint-plugin-regexp": "^2.7.0",
51
+ "eslint-plugin-sonarjs": "^3.0.2",
52
+ "eslint-plugin-unicorn": "^56.0.1",
53
+ "globals": "^15.15.0",
54
+ "jsonc-eslint-parser": "^2.4.0",
55
+ "typescript-eslint": "^8.24.0"
56
+ },
57
+ "peerDependencies": {
58
+ "eslint": ">=9.14.0"
64
59
  },
65
- "volta": {
66
- "extends": "../package.json"
60
+ "publishConfig": {
61
+ "access": "public"
67
62
  }
68
63
  }