@jarsec/eslint-config 7.1.0 → 7.2.0

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/CHANGELOG.md +10 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @jarsec/eslint-config
2
2
 
3
+ ## 7.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 057c130: Update to TypeScript 6
8
+
9
+ ### Patch Changes
10
+
11
+ - 921b6c9: fix(deps): update eslint ecosystem (major)
12
+
3
13
  ## 7.1.0
4
14
 
5
15
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jarsec/eslint-config",
3
- "version": "7.1.0",
3
+ "version": "7.2.0",
4
4
  "type": "module",
5
5
  "description": "jsec's eslint configurations",
6
6
  "author": "Jarrod Seccombe <jarrod.seccombe@icloud.com>",
@@ -19,7 +19,7 @@
19
19
  "./react": "./configs/react.js"
20
20
  },
21
21
  "dependencies": {
22
- "@eslint-react/eslint-plugin": "^2.13.0",
22
+ "@eslint-react/eslint-plugin": "^4.0.0",
23
23
  "@eslint/js": "^10.0.1",
24
24
  "@stylistic/eslint-plugin": "^5.9.0",
25
25
  "@tanstack/eslint-plugin-query": "^5.91.4",
@@ -27,19 +27,19 @@
27
27
  "eslint": "^10.0.2",
28
28
  "eslint-plugin-n": "^17.24.0",
29
29
  "eslint-plugin-perfectionist": "^5.6.0",
30
- "eslint-plugin-unicorn": "^62.0.0",
30
+ "eslint-plugin-unicorn": "^64.0.0",
31
31
  "globals": "^17.3.0",
32
32
  "typescript-eslint": "^8.56.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "^24.10.15",
36
- "typescript": "^5.9.3"
36
+ "typescript": "^6.0.3"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "eslint": "^10.0.2",
40
- "typescript": "^5.9.3"
40
+ "typescript": "^6.0.3"
41
41
  },
42
42
  "scripts": {
43
- "lint": "eslint --fix ."
43
+ "lint": "oxlint --fix ."
44
44
  }
45
45
  }