eslint-plugin-package-json 0.89.0 → 0.89.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.89.2](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/compare/v0.89.1...v0.89.2) (2026-02-27)
4
+
5
+
6
+ ### 🚀 Features
7
+
8
+ * enable `ignorePrivate` on more `require-` rules ([#1607](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/issues/1607)) ([4004220](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/commit/40042206b40315bdc5b893755d28834a3247db16))
9
+
10
+
11
+ ### 🩹 Bug Fixes
12
+
13
+ * **deps:** update `package-json-validator` to 1.0.1 ([#1599](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/issues/1599)) ([8550731](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/commit/85507312bd6fe0d8a62f1e978bb27cac9abf8489))
14
+
15
+ ## [0.89.1](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/compare/v0.89.0...v0.89.1) (2026-02-22)
16
+
17
+
18
+ ### 🚀 Features
19
+
20
+ * add support for jsonc-eslint-parser v3 ([#1590](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/issues/1590)) ([dd1b959](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/commit/dd1b9598d2c94f79a8d5404afda6e565869fe8f0))
21
+
3
22
  ## [0.89.0](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json/compare/v0.88.3...v0.89.0) (2026-02-20)
4
23
 
5
24
 
@@ -3,7 +3,7 @@ import { createSimpleRequirePropertyRule } from "../utils/createSimpleRequirePro
3
3
  //#region src/rules/require-properties.ts
4
4
  const propertyConfig = [
5
5
  ["author"],
6
- ["bugs"],
6
+ ["bugs", { ignorePrivateDefault: true }],
7
7
  ["bundleDependencies"],
8
8
  ["dependencies"],
9
9
  ["description", { isRecommended: true }],
@@ -17,8 +17,8 @@ const propertyConfig = [
17
17
  ignorePrivateDefault: true,
18
18
  isRecommended: true
19
19
  }],
20
- ["homepage"],
21
- ["keywords"],
20
+ ["homepage", { ignorePrivateDefault: true }],
21
+ ["keywords", { ignorePrivateDefault: true }],
22
22
  ["license", {
23
23
  ignorePrivateDefault: true,
24
24
  isRecommended: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-package-json",
3
- "version": "0.89.0",
3
+ "version": "0.89.2",
4
4
  "description": "Rules for consistent, readable, and valid package.json files. 🗂️",
5
5
  "homepage": "https://github.com/JoshuaKGoldberg/eslint-plugin-package-json#readme",
6
6
  "bugs": {
@@ -48,8 +48,8 @@
48
48
  "change-case": "^5.4.4",
49
49
  "detect-indent": "^7.0.2",
50
50
  "detect-newline": "^4.0.1",
51
- "eslint-fix-utils": "~0.4.0",
52
- "package-json-validator": "~0.60.0",
51
+ "eslint-fix-utils": "~0.4.1",
52
+ "package-json-validator": "^1.0.1",
53
53
  "semver": "^7.7.3",
54
54
  "sort-object-keys": "^2.0.0",
55
55
  "sort-package-json": "^3.4.0",
@@ -67,22 +67,21 @@
67
67
  "@vitest/eslint-plugin": "1.6.1",
68
68
  "console-fail-test": "0.6.0",
69
69
  "eslint": "10.0.0",
70
- "eslint-doc-generator": "3.1.0",
70
+ "eslint-doc-generator": "3.2.0",
71
71
  "eslint-plugin-eslint-plugin": "7.3.1",
72
- "eslint-plugin-jsdoc": "62.5.5",
73
- "eslint-plugin-jsonc": "2.21.1",
74
- "eslint-plugin-markdown-links": "0.7.1",
72
+ "eslint-plugin-jsdoc": "62.7.0",
73
+ "eslint-plugin-jsonc": "3.1.0",
75
74
  "eslint-plugin-n": "17.24.0",
76
- "eslint-plugin-node-dependencies": "1.3.0",
77
- "eslint-plugin-perfectionist": "5.5.0",
75
+ "eslint-plugin-node-dependencies": "2.1.0",
76
+ "eslint-plugin-perfectionist": "5.6.0",
78
77
  "eslint-plugin-regexp": "3.0.0",
79
78
  "eslint-plugin-unicorn": "63.0.0",
80
- "eslint-plugin-yml": "3.2.0",
79
+ "eslint-plugin-yml": "3.3.0",
81
80
  "husky": "9.1.7",
82
81
  "jiti": "2.6.1",
83
82
  "json-schema-to-ts": "3.1.1",
84
- "jsonc-eslint-parser": "2.4.1",
85
- "knip": "5.83.0",
83
+ "jsonc-eslint-parser": "3.1.0",
84
+ "knip": "5.85.0",
86
85
  "lint-staged": "16.2.7",
87
86
  "prettier": "3.8.0",
88
87
  "prettier-plugin-curly": "0.4.0",
@@ -95,7 +94,7 @@
95
94
  },
96
95
  "peerDependencies": {
97
96
  "eslint": ">=8.0.0",
98
- "jsonc-eslint-parser": "^2.0.0"
97
+ "jsonc-eslint-parser": ">=2.0.0"
99
98
  },
100
99
  "engines": {
101
100
  "node": "^20.19.0 || >=22.12.0"