@storm-software/eslint 0.148.21 → 0.148.23

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +20 -8
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.148.20-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.148.22-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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.148.21",
3
+ "version": "0.148.23",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {
@@ -40,8 +40,10 @@
40
40
  },
41
41
  "license": "Apache-2.0",
42
42
  "private": false,
43
- "packageManager": "pnpm@10.3.0",
44
- "engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
43
+ "engines": {
44
+ "node": ">=22.4.0",
45
+ "pnpm": ">=10.3.0"
46
+ },
45
47
  "main": "./dist/index.js",
46
48
  "exports": {
47
49
  "./package.json": "./package.json",
@@ -88,12 +90,18 @@
88
90
  }
89
91
  },
90
92
  "./types": {
91
- "import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
93
+ "import": {
94
+ "types": "./dist/types.d.ts",
95
+ "default": "./dist/types.js"
96
+ },
92
97
  "require": {
93
98
  "types": "./dist/types.d.cts",
94
99
  "default": "./dist/types.cjs"
95
100
  },
96
- "default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
101
+ "default": {
102
+ "types": "./dist/types.d.ts",
103
+ "default": "./dist/types.js"
104
+ }
97
105
  },
98
106
  "./rules/*": {
99
107
  "import": {
@@ -125,7 +133,9 @@
125
133
  }
126
134
  },
127
135
  "types": "./dist/index.d.ts",
128
- "files": ["dist/**/*"],
136
+ "files": [
137
+ "dist/**/*"
138
+ ],
129
139
  "keywords": [
130
140
  "eslint",
131
141
  "eslint-config",
@@ -233,6 +243,8 @@
233
243
  "tsx": "^4.19.2",
234
244
  "typescript": "^5.8.3"
235
245
  },
236
- "publishConfig": { "access": "public" },
246
+ "publishConfig": {
247
+ "access": "public"
248
+ },
237
249
  "sideEffects": false
238
- }
250
+ }