neatlint 1.1.20 → 1.1.22

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 +5 -5
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  [Promise]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
10
10
  [Void]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Undefined
11
11
  [NeatlintOptionsDefault]: ./src/defaults/NeatlintOptions.default.ts
12
- [ESLintConfig]: https://github.com/eslint/eslint/blob/main/lib/types/index.d.ts#L1768
12
+ [ESLintConfig]: ./src/types/ESLintConfig.type.ts
13
13
  [NeatlintOptions]: ./src/types/NeatlintOptions.type.ts
14
14
 
15
15
  <div align="center">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neatlint",
3
- "version": "1.1.20",
3
+ "version": "1.1.22",
4
4
  "description": "Strict ESLint presets for modern TypeScript projects.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/keift/neatlint",
@@ -15,15 +15,15 @@
15
15
  "lint": "eslint ./"
16
16
  },
17
17
  "dependencies": {
18
- "@eslint/js": "^9.37.0",
19
- "@types/lodash.merge": "^4.6.9",
20
- "eslint": "^9.37.0",
18
+ "@eslint/js": "^9.38.0",
19
+ "eslint": "^9.38.0",
21
20
  "jiti": "^2.6.1",
22
21
  "lodash.merge": "^4.6.2",
23
22
  "typescript": "^5.9.3",
24
- "typescript-eslint": "^8.46.1"
23
+ "typescript-eslint": "^8.46.2"
25
24
  },
26
25
  "devDependencies": {
26
+ "@types/lodash.merge": "^4.6.9",
27
27
  "prettier": "^3.6.2",
28
28
  "tsup": "^8.5.0"
29
29
  },