@storm-software/eslint 0.109.4 → 0.110.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.
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.109.3-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.110.1-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/dist/preset.cjs CHANGED
@@ -379,7 +379,8 @@ var CONSOLE_ICONS = {
379
379
  [LogLevelLabel.INFO]: useIcon("\u2139", "i"),
380
380
  [LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
381
381
  [LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
382
- [LogLevelLabel.TRACE]: useIcon("\u2709", "\u2192")
382
+ [LogLevelLabel.TRACE]: useIcon("\u{1F6E0}", "T"),
383
+ [LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
383
384
  };
384
385
 
385
386
  // ../config-tools/src/logger/format-timestamp.ts
@@ -423,48 +424,48 @@ var getLogFn = /* @__PURE__ */ _chunkUSNT2KNTcjs.__name.call(void 0, (logLevel =
423
424
  if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
424
425
  return (message) => {
425
426
  console.error(`
426
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(formatLogMessage(message))}
427
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
427
428
  `);
428
429
  };
429
430
  }
430
431
  if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
431
432
  return (message) => {
432
433
  console.error(`
433
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(formatLogMessage(message))}
434
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
434
435
  `);
435
436
  };
436
437
  }
437
438
  if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
438
439
  return (message) => {
439
440
  console.warn(`
440
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(formatLogMessage(message))}
441
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
441
442
  `);
442
443
  };
443
444
  }
444
445
  if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
445
446
  return (message) => {
446
447
  console.info(`
447
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(formatLogMessage(message))}
448
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
448
449
  `);
449
450
  };
450
451
  }
451
452
  if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
452
453
  return (message) => {
453
454
  console.info(`
454
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(formatLogMessage(message))}
455
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
455
456
  `);
456
457
  };
457
458
  }
458
459
  if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel || typeof logLevel === "string" && LogLevel.TRACE >= getLogLevel(logLevel)) {
459
460
  return (message) => {
460
461
  console.debug(`
461
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Debug]`)} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(formatLogMessage(message))}
462
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
462
463
  `);
463
464
  };
464
465
  }
465
466
  return (message) => {
466
467
  console.log(`
467
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(formatLogMessage(message))}
468
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
468
469
  `);
469
470
  };
470
471
  }, "getLogFn");
package/dist/preset.js CHANGED
@@ -379,7 +379,8 @@ var CONSOLE_ICONS = {
379
379
  [LogLevelLabel.INFO]: useIcon("\u2139", "i"),
380
380
  [LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
381
381
  [LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
382
- [LogLevelLabel.TRACE]: useIcon("\u2709", "\u2192")
382
+ [LogLevelLabel.TRACE]: useIcon("\u{1F6E0}", "T"),
383
+ [LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
383
384
  };
384
385
 
385
386
  // ../config-tools/src/logger/format-timestamp.ts
@@ -423,48 +424,48 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}) =>
423
424
  if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel || typeof logLevel === "string" && LogLevel.FATAL >= getLogLevel(logLevel)) {
424
425
  return (message) => {
425
426
  console.error(`
426
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(formatLogMessage(message))}
427
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
427
428
  `);
428
429
  };
429
430
  }
430
431
  if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel || typeof logLevel === "string" && LogLevel.ERROR >= getLogLevel(logLevel)) {
431
432
  return (message) => {
432
433
  console.error(`
433
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)} ${_chalk.hex(colors.danger ?? "#f85149")(formatLogMessage(message))}
434
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
434
435
  `);
435
436
  };
436
437
  }
437
438
  if (typeof logLevel === "number" && LogLevel.WARN >= logLevel || typeof logLevel === "string" && LogLevel.WARN >= getLogLevel(logLevel)) {
438
439
  return (message) => {
439
440
  console.warn(`
440
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}
441
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
441
442
  `);
442
443
  };
443
444
  }
444
445
  if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel || typeof logLevel === "string" && LogLevel.SUCCESS >= getLogLevel(logLevel)) {
445
446
  return (message) => {
446
447
  console.info(`
447
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)} ${_chalk.hex(colors.success ?? "#56d364")(formatLogMessage(message))}
448
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
448
449
  `);
449
450
  };
450
451
  }
451
452
  if (typeof logLevel === "number" && LogLevel.INFO >= logLevel || typeof logLevel === "string" && LogLevel.INFO >= getLogLevel(logLevel)) {
452
453
  return (message) => {
453
454
  console.info(`
454
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)} ${_chalk.hex(colors.info ?? "#58a6ff")(formatLogMessage(message))}
455
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
455
456
  `);
456
457
  };
457
458
  }
458
459
  if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel || typeof logLevel === "string" && LogLevel.TRACE >= getLogLevel(logLevel)) {
459
460
  return (message) => {
460
461
  console.debug(`
461
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Debug]`)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
462
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
462
463
  `);
463
464
  };
464
465
  }
465
466
  return (message) => {
466
467
  console.log(`
467
- ${_chalk.gray(formatTimestamp())} ${_chalk.bold.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)} ${_chalk.hex(colors.brand ?? "#1fb2a6")(formatLogMessage(message))}
468
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)} ${_chalk.bold.whiteBright(formatLogMessage(message))}
468
469
  `);
469
470
  };
470
471
  }, "getLogFn");
package/package.json CHANGED
@@ -1 +1,189 @@
1
- {"name":"@storm-software/eslint","version":"0.109.4","type":"module","description":"⚡ A package containing the base ESLint configuration used by Storm Software across many projects.","repository":{"type":"github","url":"https://github.com/storm-software/storm-ops","directory":"packages/eslint"},"homepage":"https://stormsoftware.com","bugs":"https://github.com/storm-software/storm-ops/issues","author":{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},"maintainers":[{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"},{"name":"Pat Sullivan","email":"admin@stormsoftware.com","url":"https://patsullivan.org"}],"contributors":[{"name":"Storm Software","email":"contact@stormsoftware.com","url":"https://stormsoftware.com"}],"funding":{"type":"github","url":"https://github.com/sponsors/storm-software"},"license":"Apache-2.0","private":false,"packageManager":"pnpm@9.15.2","engines":{"node":">=22.4.0","pnpm":">=9.15.2"},"main":"./dist/preset.cjs","module":"./dist/preset.js","exports":{"./package.json":"./package.json",".":{"import":{"types":"./dist/preset.d.ts","default":"./dist/preset.js"},"require":{"types":"./dist/preset.d.cts","default":"./dist/preset.cjs"},"default":{"types":"./dist/preset.d.ts","default":"./dist/preset.js"}},"./index":{"import":{"types":"./dist/preset.d.ts","default":"./dist/preset.js"},"require":{"types":"./dist/preset.d.cts","default":"./dist/preset.cjs"},"default":{"types":"./dist/preset.d.ts","default":"./dist/preset.js"}},"./preset":{"import":{"types":"./dist/preset.d.ts","default":"./dist/preset.js"},"require":{"types":"./dist/preset.d.cts","default":"./dist/preset.cjs"},"default":{"types":"./dist/preset.d.ts","default":"./dist/preset.js"}},"./rules/*":{"import":{"types":"./dist/rules/*.d.ts","default":"./dist/rules/*.js"},"require":{"types":"./dist/rules/*.d.cts","default":"./dist/rules/*.cjs"},"default":{"types":"./dist/rules/*.d.ts","default":"./dist/rules/*.js"}},"./utils/*":{"import":{"types":"./dist/utils/*.d.ts","default":"./dist/utils/*.js"},"require":{"types":"./dist/utils/*.d.cts","default":"./dist/utils/*.cjs"},"default":{"types":"./dist/utils/*.d.ts","default":"./dist/utils/*.js"}}},"types":"./dist/preset.d.ts","files":["dist/**/*"],"keywords":["eslint","eslint-config","eslintconfig","monorepo","storm","storm-ops","sullivanpj"],"peerDependencies":{"@nx/eslint":"^20.3.1","@nx/eslint-plugin":"^20.3.1","eslint":"^9.12.0","graphql":">=16.9.0"},"peerDependenciesMeta":{"@nx/eslint":{"optional":true},"@nx/eslint-plugin":{"optional":true},"eslint":{"optional":false},"graphql":{"optional":true}},"dependencies":{"@cspell/eslint-plugin":"8.13.1","@graphql-eslint/eslint-plugin":"3.20.1","@next/eslint-plugin-next":"14.2.4","defu":"6.1.4","eslint-plugin-es-x":"7.6.0","eslint-plugin-import":"^2.29.1","eslint-plugin-json":"4.0.0","eslint-plugin-jsonc":"2.16.0","eslint-plugin-jsx-a11y":"^6.8.0","eslint-plugin-markdown":"^5.1.0","eslint-plugin-markdownlint":"0.6.0","eslint-plugin-mdx":"3.1.5","eslint-plugin-n":"17.8.1","eslint-plugin-prettier":"^5.0.0","eslint-plugin-promise":"6.2.0","eslint-plugin-react":"^7.34.3","eslint-plugin-react-compiler":"0.0.0-experimental-b6997ec-20240909","eslint-plugin-react-hooks":"^5.1.0","eslint-plugin-relay":"1.8.3","eslint-plugin-sonarjs":"1.0.3","eslint-plugin-storybook":"0.11.0","eslint-plugin-tsdoc":"0.4.0","eslint-plugin-unicorn":"56.0.0","eslint-plugin-yml":"1.14.0","globals":"^15.8.0","jsonc-eslint-parser":"2.4.0","synckit":"0.9.0","typescript-eslint":"^8.13.0","ws":"8.17.1","yaml-eslint-parser":"1.2.3"},"devDependencies":{"@eslint/config-inspector":"^0.5.1","@nx/eslint":"^20.3.1","@nx/eslint-plugin":"^20.3.1","@types/eslint":"^9.6.1","@types/eslint__js":"^8.42.3","@types/node":"^22.10.2","eslint":"^9.12.0","eslint-typegen":"^1.0.0","graphql":">=16.9.0","tsup":"8.3.5","typescript":"^5.7.2"},"publishConfig":{"access":"public"}}
1
+ {
2
+ "name": "@storm-software/eslint",
3
+ "version": "0.110.1",
4
+ "type": "module",
5
+ "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
+ "repository": {
7
+ "type": "github",
8
+ "url": "https://github.com/storm-software/storm-ops",
9
+ "directory": "packages/eslint"
10
+ },
11
+ "homepage": "https://stormsoftware.com",
12
+ "bugs": "https://github.com/storm-software/storm-ops/issues",
13
+ "author": {
14
+ "name": "Storm Software",
15
+ "email": "contact@stormsoftware.com",
16
+ "url": "https://stormsoftware.com"
17
+ },
18
+ "maintainers": [
19
+ {
20
+ "name": "Storm Software",
21
+ "email": "contact@stormsoftware.com",
22
+ "url": "https://stormsoftware.com"
23
+ },
24
+ {
25
+ "name": "Pat Sullivan",
26
+ "email": "admin@stormsoftware.com",
27
+ "url": "https://patsullivan.org"
28
+ }
29
+ ],
30
+ "contributors": [
31
+ {
32
+ "name": "Storm Software",
33
+ "email": "contact@stormsoftware.com",
34
+ "url": "https://stormsoftware.com"
35
+ }
36
+ ],
37
+ "funding": {
38
+ "type": "github",
39
+ "url": "https://github.com/sponsors/storm-software"
40
+ },
41
+ "license": "Apache-2.0",
42
+ "private": false,
43
+ "packageManager": "pnpm@9.15.2",
44
+ "engines": { "node": ">=22.4.0", "pnpm": ">=9.15.2" },
45
+ "main": "./dist/preset.cjs",
46
+ "module": "./dist/preset.js",
47
+ "exports": {
48
+ "./package.json": "./package.json",
49
+ ".": {
50
+ "import": {
51
+ "types": "./dist/preset.d.ts",
52
+ "default": "./dist/preset.js"
53
+ },
54
+ "require": {
55
+ "types": "./dist/preset.d.cts",
56
+ "default": "./dist/preset.cjs"
57
+ },
58
+ "default": {
59
+ "types": "./dist/preset.d.ts",
60
+ "default": "./dist/preset.js"
61
+ }
62
+ },
63
+ "./index": {
64
+ "import": {
65
+ "types": "./dist/preset.d.ts",
66
+ "default": "./dist/preset.js"
67
+ },
68
+ "require": {
69
+ "types": "./dist/preset.d.cts",
70
+ "default": "./dist/preset.cjs"
71
+ },
72
+ "default": {
73
+ "types": "./dist/preset.d.ts",
74
+ "default": "./dist/preset.js"
75
+ }
76
+ },
77
+ "./preset": {
78
+ "import": {
79
+ "types": "./dist/preset.d.ts",
80
+ "default": "./dist/preset.js"
81
+ },
82
+ "require": {
83
+ "types": "./dist/preset.d.cts",
84
+ "default": "./dist/preset.cjs"
85
+ },
86
+ "default": {
87
+ "types": "./dist/preset.d.ts",
88
+ "default": "./dist/preset.js"
89
+ }
90
+ },
91
+ "./rules/*": {
92
+ "import": {
93
+ "types": "./dist/rules/*.d.ts",
94
+ "default": "./dist/rules/*.js"
95
+ },
96
+ "require": {
97
+ "types": "./dist/rules/*.d.cts",
98
+ "default": "./dist/rules/*.cjs"
99
+ },
100
+ "default": {
101
+ "types": "./dist/rules/*.d.ts",
102
+ "default": "./dist/rules/*.js"
103
+ }
104
+ },
105
+ "./utils/*": {
106
+ "import": {
107
+ "types": "./dist/utils/*.d.ts",
108
+ "default": "./dist/utils/*.js"
109
+ },
110
+ "require": {
111
+ "types": "./dist/utils/*.d.cts",
112
+ "default": "./dist/utils/*.cjs"
113
+ },
114
+ "default": {
115
+ "types": "./dist/utils/*.d.ts",
116
+ "default": "./dist/utils/*.js"
117
+ }
118
+ }
119
+ },
120
+ "types": "./dist/preset.d.ts",
121
+ "files": ["dist/**/*"],
122
+ "keywords": [
123
+ "eslint",
124
+ "eslint-config",
125
+ "eslintconfig",
126
+ "monorepo",
127
+ "storm",
128
+ "storm-ops",
129
+ "sullivanpj"
130
+ ],
131
+ "peerDependencies": {
132
+ "@nx/eslint": "^20.3.1",
133
+ "@nx/eslint-plugin": "^20.3.1",
134
+ "eslint": "^9.12.0",
135
+ "graphql": ">=16.9.0"
136
+ },
137
+ "peerDependenciesMeta": {
138
+ "@nx/eslint": { "optional": true },
139
+ "@nx/eslint-plugin": { "optional": true },
140
+ "eslint": { "optional": false },
141
+ "graphql": { "optional": true }
142
+ },
143
+ "dependencies": {
144
+ "@cspell/eslint-plugin": "8.13.1",
145
+ "@graphql-eslint/eslint-plugin": "3.20.1",
146
+ "@next/eslint-plugin-next": "14.2.4",
147
+ "defu": "6.1.4",
148
+ "eslint-plugin-es-x": "7.6.0",
149
+ "eslint-plugin-import": "^2.29.1",
150
+ "eslint-plugin-json": "4.0.0",
151
+ "eslint-plugin-jsonc": "2.16.0",
152
+ "eslint-plugin-jsx-a11y": "^6.8.0",
153
+ "eslint-plugin-markdown": "^5.1.0",
154
+ "eslint-plugin-markdownlint": "0.6.0",
155
+ "eslint-plugin-mdx": "3.1.5",
156
+ "eslint-plugin-n": "17.8.1",
157
+ "eslint-plugin-prettier": "^5.0.0",
158
+ "eslint-plugin-promise": "6.2.0",
159
+ "eslint-plugin-react": "^7.34.3",
160
+ "eslint-plugin-react-compiler": "0.0.0-experimental-b6997ec-20240909",
161
+ "eslint-plugin-react-hooks": "^5.1.0",
162
+ "eslint-plugin-relay": "1.8.3",
163
+ "eslint-plugin-sonarjs": "1.0.3",
164
+ "eslint-plugin-storybook": "0.11.0",
165
+ "eslint-plugin-tsdoc": "0.4.0",
166
+ "eslint-plugin-unicorn": "56.0.0",
167
+ "eslint-plugin-yml": "1.14.0",
168
+ "globals": "^15.8.0",
169
+ "jsonc-eslint-parser": "2.4.0",
170
+ "synckit": "0.9.0",
171
+ "typescript-eslint": "^8.13.0",
172
+ "ws": "8.17.1",
173
+ "yaml-eslint-parser": "1.2.3"
174
+ },
175
+ "devDependencies": {
176
+ "@eslint/config-inspector": "^0.5.1",
177
+ "@nx/eslint": "^20.3.1",
178
+ "@nx/eslint-plugin": "^20.3.1",
179
+ "@types/eslint": "^9.6.1",
180
+ "@types/eslint__js": "^8.42.3",
181
+ "@types/node": "^22.10.2",
182
+ "eslint": "^9.12.0",
183
+ "eslint-typegen": "^1.0.0",
184
+ "graphql": ">=16.9.0",
185
+ "tsup": "8.3.5",
186
+ "typescript": "^5.7.2"
187
+ },
188
+ "publishConfig": { "access": "public" }
189
+ }