@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.
- package/README.md +1 -1
- 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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
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.
|
|
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
|
-
"
|
|
44
|
-
|
|
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": {
|
|
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": {
|
|
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": [
|
|
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": {
|
|
246
|
+
"publishConfig": {
|
|
247
|
+
"access": "public"
|
|
248
|
+
},
|
|
237
249
|
"sideEffects": false
|
|
238
|
-
}
|
|
250
|
+
}
|