eslint-plugin-package-json 1.0.0-beta.1 → 1.0.0-beta.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +389 -0
  2. package/README.md +21 -3
  3. package/lib/createRule.mjs +1 -3
  4. package/lib/index.d.mts +4 -4
  5. package/lib/index.mjs +1 -3
  6. package/lib/plugin.mjs +1 -3
  7. package/lib/rules/bin-name-casing.mjs +1 -3
  8. package/lib/rules/exports-subpaths-style.mjs +1 -3
  9. package/lib/rules/no-empty-fields.mjs +1 -3
  10. package/lib/rules/no-redundant-files.mjs +1 -3
  11. package/lib/rules/no-redundant-publishConfig.mjs +1 -3
  12. package/lib/rules/order-properties.mjs +1 -3
  13. package/lib/rules/repository-shorthand.mjs +1 -3
  14. package/lib/rules/require-attribution.mjs +1 -3
  15. package/lib/rules/require-properties.d.mts +2 -2
  16. package/lib/rules/require-properties.mjs +14 -3
  17. package/lib/rules/restrict-dependency-ranges.mjs +1 -3
  18. package/lib/rules/restrict-private-properties.mjs +1 -3
  19. package/lib/rules/scripts-name-casing.mjs +1 -3
  20. package/lib/rules/sort-collections.mjs +1 -3
  21. package/lib/rules/specify-peers-locally.mjs +1 -3
  22. package/lib/rules/unique-dependencies.mjs +1 -3
  23. package/lib/rules/valid-name.mjs +1 -3
  24. package/lib/rules/valid-package-definition.mjs +1 -3
  25. package/lib/rules/valid-properties.mjs +6 -4
  26. package/lib/rules/valid-repository-directory.mjs +1 -3
  27. package/lib/rules/valid-version.mjs +1 -3
  28. package/lib/utils/createSimpleRequirePropertyRule.d.mts +2 -2
  29. package/lib/utils/createSimpleRequirePropertyRule.mjs +2 -4
  30. package/lib/utils/createSimpleValidPropertyRule.mjs +2 -4
  31. package/lib/utils/findPropertyWithKeyValue.mjs +1 -2
  32. package/lib/utils/formatErrors.mjs +1 -2
  33. package/lib/utils/isPackageJson.mjs +1 -2
  34. package/lib/utils/predicates.mjs +1 -2
  35. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,97 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.0-beta.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2026-03-13)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * add `valid-devEngines` rule ([#1663](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1663))
9
+ * add `valid-funding` rule ([#1643](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1643))
10
+ * add `valid-bugs` rule ([#1644](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1644))
11
+ * add `valid-packageManager` rule ([#1640](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1640))
12
+
13
+ * merge `main` into `beta` ([4c41fc1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4c41fc192b4371c1000ad482f5f817cce3599666))
14
+
15
+
16
+ ### 🚀 Features
17
+
18
+ * add `require-bin` rule ([#1652](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1652)) ([434e605](https://github.com/michaelfaith/eslint-plugin-package-json/commit/434e60523a067128e92baa8debf0362ef06c89c6))
19
+ * add `require-contributors` rule ([#1648](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1648)) ([4a666ea](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4a666ea9487c4afcc9a0ca0e730d51368266c06a))
20
+ * add `require-cpu` rule ([#1659](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1659)) ([40ed2f6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/40ed2f6a97040bcf5d516bcf1ac3e1a3a580c5ee))
21
+ * add `require-devEngines` rule ([#1649](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1649)) ([608744c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/608744c3cb29f2dd9808a91cfb99def404a9bdf2))
22
+ * add `require-directories` rule ([#1654](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1654)) ([91369d6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/91369d614c72707eeb9f42d73e971645e3ab590f))
23
+ * add `require-funding` rule ([#1647](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1647)) ([d2405a1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d2405a1e6e05ef27bcca850ff5cc034c78c51780))
24
+ * add `require-main` rule ([#1631](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1631)) ([f3ea3e6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f3ea3e6ad7de445449ccfab8fb2472b382b600d5))
25
+ * add `require-man` rule ([#1653](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1653)) ([e1cdd8a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e1cdd8ae35e768772fba92e0188798ac4870099d))
26
+ * add `require-os` rule ([#1632](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1632)) ([9b5e25d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9b5e25dad3d2e5af5882d706d52bce99de0f63b5))
27
+ * add `require-private` rule ([#1630](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1630)) ([770cc51](https://github.com/michaelfaith/eslint-plugin-package-json/commit/770cc51bdfe93782ae67ddb3183250c0afe33a3d))
28
+ * add `require-publishConfig` rule ([#1629](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1629)) ([ebc187a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ebc187ae5bde43c7b1f3f27eadfdeea2e67917a9))
29
+ * add `valid-bugs` rule ([#1644](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1644)) ([f981fa3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f981fa38ab4f1630c6db0933d859974d0a6ec0b3))
30
+ * add `valid-devEngines` rule ([#1663](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1663)) ([7325be2](https://github.com/michaelfaith/eslint-plugin-package-json/commit/7325be2c6d3bc77467e8da7019ac24861261e27a))
31
+ * add `valid-funding` rule ([#1643](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1643)) ([5b3c77d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5b3c77da9b8edcd659a1fd9b3e51d1e43803aa5e))
32
+ * add `valid-packageManager` rule ([#1640](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1640)) ([9a65480](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9a65480cb55a4d03043916def549cfd7fc4b604b))
33
+ * add require-module rule ([#1656](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1656)) ([557254c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/557254cac267d1f37fe019662f8293d123aa0e60))
34
+
35
+
36
+ ### 🩹 Bug Fixes
37
+
38
+ * **valid-publishConfig:** rule not reporting violations for deeply nested objects ([#1662](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1662)) ([4c78698](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4c786980b3efc2c25bc9a767a826ec43c3912c2e))
39
+
40
+ ## [0.91.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.90.1...v0.91.0) (2026-03-13)
41
+
42
+
43
+ ### ⚠ BREAKING CHANGES
44
+
45
+ * add `valid-devEngines` rule ([#1663](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1663))
46
+
47
+ ### 🚀 Features
48
+
49
+ * add `require-cpu` rule ([#1659](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1659)) ([40ed2f6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/40ed2f6a97040bcf5d516bcf1ac3e1a3a580c5ee))
50
+ * add `valid-devEngines` rule ([#1663](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1663)) ([7325be2](https://github.com/michaelfaith/eslint-plugin-package-json/commit/7325be2c6d3bc77467e8da7019ac24861261e27a))
51
+ * add require-module rule ([#1656](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1656)) ([557254c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/557254cac267d1f37fe019662f8293d123aa0e60))
52
+
53
+
54
+ ### 🩹 Bug Fixes
55
+
56
+ * **valid-publishConfig:** rule not reporting violations for deeply nested objects ([#1662](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1662)) ([4c78698](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4c786980b3efc2c25bc9a767a826ec43c3912c2e))
57
+
58
+ ## [0.90.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.90.0...v0.90.1) (2026-03-10)
59
+
60
+
61
+ ### 🚀 Features
62
+
63
+ * add `require-bin` rule ([#1652](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1652)) ([434e605](https://github.com/michaelfaith/eslint-plugin-package-json/commit/434e60523a067128e92baa8debf0362ef06c89c6))
64
+ * add `require-contributors` rule ([#1648](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1648)) ([4a666ea](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4a666ea9487c4afcc9a0ca0e730d51368266c06a))
65
+ * add `require-devEngines` rule ([#1649](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1649)) ([608744c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/608744c3cb29f2dd9808a91cfb99def404a9bdf2))
66
+ * add `require-directories` rule ([#1654](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1654)) ([91369d6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/91369d614c72707eeb9f42d73e971645e3ab590f))
67
+ * add `require-funding` rule ([#1647](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1647)) ([d2405a1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d2405a1e6e05ef27bcca850ff5cc034c78c51780))
68
+ * add `require-man` rule ([#1653](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1653)) ([e1cdd8a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e1cdd8ae35e768772fba92e0188798ac4870099d))
69
+
70
+ ## [0.90.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.89.4...v0.90.0) (2026-03-10)
71
+
72
+
73
+ ### ⚠ BREAKING CHANGES
74
+
75
+ * add `valid-funding` rule ([#1643](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1643))
76
+ * add `valid-bugs` rule ([#1644](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1644))
77
+ * add `valid-packageManager` rule ([#1640](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1640))
78
+
79
+ ### 🚀 Features
80
+
81
+ * add `valid-bugs` rule ([#1644](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1644)) ([f981fa3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f981fa38ab4f1630c6db0933d859974d0a6ec0b3))
82
+ * add `valid-funding` rule ([#1643](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1643)) ([5b3c77d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5b3c77da9b8edcd659a1fd9b3e51d1e43803aa5e))
83
+ * add `valid-packageManager` rule ([#1640](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1640)) ([9a65480](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9a65480cb55a4d03043916def549cfd7fc4b604b))
84
+
85
+ ## [0.89.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.89.3...v0.89.4) (2026-03-07)
86
+
87
+
88
+ ### 🚀 Features
89
+
90
+ * add `require-main` rule ([#1631](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1631)) ([f3ea3e6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f3ea3e6ad7de445449ccfab8fb2472b382b600d5))
91
+ * add `require-os` rule ([#1632](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1632)) ([9b5e25d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9b5e25dad3d2e5af5882d706d52bce99de0f63b5))
92
+ * add `require-private` rule ([#1630](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1630)) ([770cc51](https://github.com/michaelfaith/eslint-plugin-package-json/commit/770cc51bdfe93782ae67ddb3183250c0afe33a3d))
93
+ * add `require-publishConfig` rule ([#1629](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1629)) ([ebc187a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ebc187ae5bde43c7b1f3f27eadfdeea2e67917a9))
94
+
3
95
  ## [1.0.0-beta.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v1.0.0-beta.0...v1.0.0-beta.1) (2026-03-04)
4
96
 
5
97
 
@@ -12,6 +104,18 @@
12
104
 
13
105
  * update repo references ([#1613](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1613)) ([079d3af](https://github.com/michaelfaith/eslint-plugin-package-json/commit/079d3af2c67a38ef476121158047e42d9c7ae4c7))
14
106
 
107
+ ## [0.89.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.89.2...v0.89.3) (2026-03-04)
108
+
109
+
110
+ ### 🚀 Features
111
+
112
+ * add `require-packageManager` rule ([#1620](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1620)) ([7626cd9](https://github.com/michaelfaith/eslint-plugin-package-json/commit/7626cd9814cad3bcb1285e37e83af05fb0c067e5))
113
+
114
+
115
+ ### 🩹 Bug Fixes
116
+
117
+ * update repo references ([#1613](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1613)) ([b382fc1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b382fc11eef19cddc4e1f46861752cc831cd29b8))
118
+
15
119
  ## [0.89.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.89.1...v0.89.2) (2026-02-27)
16
120
 
17
121
 
@@ -72,856 +176,1140 @@
72
176
  * **require-attribution:** add `ignorePrivate` option ([#1566](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1566)) ([629a8ab](https://github.com/michaelfaith/eslint-plugin-package-json/commit/629a8abf2a51eb9d2dc4e6204c9159a8c8c23675))
73
177
 
74
178
  ## [0.88.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.88.1...v0.88.2) (2026-01-23)
179
+ ## [0.88.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.88.1...v0.88.2) (2026-01-23)
75
180
 
76
181
 
77
182
  ### Features
78
183
 
79
184
  * **require-type:** add auto-fix ([#1534](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1534)) ([c8e44e4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/c8e44e472ac94fc61e0f79e00e4ac2f371718d38))
185
+ * **require-type:** add auto-fix ([#1534](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1534)) ([c8e44e4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/c8e44e472ac94fc61e0f79e00e4ac2f371718d38))
80
186
 
81
187
 
82
188
  ### Bug Fixes
83
189
 
190
+ * **deps:** update dependency package-json-validator to ~0.60.0 ([#1513](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1513)) ([5b300b6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5b300b64c52c233b5835b1fda1815551ac0f77b6))
84
191
  * **deps:** update dependency package-json-validator to ~0.60.0 ([#1513](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1513)) ([5b300b6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5b300b64c52c233b5835b1fda1815551ac0f77b6))
85
192
 
86
193
  ## [0.88.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.88.0...v0.88.1) (2026-01-07)
194
+ ## [0.88.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.88.0...v0.88.1) (2026-01-07)
87
195
 
88
196
 
89
197
  ### Features
90
198
 
199
+ * add require-scripts rule ([#1505](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1505)) ([f326161](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f326161f63a812c5a3c92a914d17d9ef6fc5dbd2))
91
200
  * add require-scripts rule ([#1505](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1505)) ([f326161](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f326161f63a812c5a3c92a914d17d9ef6fc5dbd2))
92
201
 
93
202
  ## [0.88.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.87.1...v0.88.0) (2026-01-04)
203
+ ## [0.88.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.87.1...v0.88.0) (2026-01-04)
94
204
 
95
205
 
96
206
  ### ⚠ BREAKING CHANGES
97
207
 
208
+ * add require-repository rule ([#1491](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1491))
98
209
  * add require-repository rule ([#1491](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1491))
99
210
 
100
211
  ### Features
101
212
 
102
213
  * add require-repository rule ([#1491](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1491)) ([4d802c5](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4d802c577713a8056c02543faa902b49b3a4950a))
214
+ * add require-repository rule ([#1491](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1491)) ([4d802c5](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4d802c577713a8056c02543faa902b49b3a4950a))
103
215
 
104
216
 
105
217
  ### Bug Fixes
106
218
 
219
+ * **repository-shorthand:** support repo provider prefix ([#1472](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1472)) ([fb5f10a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/fb5f10a55078eb9aaeefca690275f67ab136592e))
220
+ * **valid-repository:** support dashes and dots in repo shorthand ([#1468](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1468)) ([8b83678](https://github.com/michaelfaith/eslint-plugin-package-json/commit/8b83678666f3a0303ac40fadd916faf1ba94020b))
107
221
  * **repository-shorthand:** support repo provider prefix ([#1472](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1472)) ([fb5f10a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/fb5f10a55078eb9aaeefca690275f67ab136592e))
108
222
  * **valid-repository:** support dashes and dots in repo shorthand ([#1468](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1468)) ([8b83678](https://github.com/michaelfaith/eslint-plugin-package-json/commit/8b83678666f3a0303ac40fadd916faf1ba94020b))
109
223
 
110
224
  ## [0.87.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.87.0...v0.87.1) (2025-12-31)
225
+ ## [0.87.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.87.0...v0.87.1) (2025-12-31)
111
226
 
112
227
 
113
228
  ### Features
114
229
 
230
+ * add require-homepage rule ([#1480](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1480)) ([0d895ff](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0d895ff8b5c800df07bdf2ed2bc99e1ad16649ad))
115
231
  * add require-homepage rule ([#1480](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1480)) ([0d895ff](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0d895ff8b5c800df07bdf2ed2bc99e1ad16649ad))
116
232
 
117
233
  ## [0.87.0](///compare/v0.86.0...v0.87.0) (2025-12-30)
118
234
 
119
235
  ### Features
120
236
 
237
+ - move `order-properties` from `recommended` to `stylistic` config ([#1475](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1475)) ([b9a9978](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b9a9978ed22b2c8184d10dc63da4435fb0864f29)), closes [#1471](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1471)
121
238
  - move `order-properties` from `recommended` to `stylistic` config ([#1475](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1475)) ([b9a9978](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b9a9978ed22b2c8184d10dc63da4435fb0864f29)), closes [#1471](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1471)
122
239
 
123
240
  ## [0.86.0](///compare/v0.85.0...v0.86.0) (2025-12-30)
124
241
 
125
242
  ### Features
126
243
 
244
+ - remove deprecated valid-local-dependency rule ([#1450](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1450)) ([3e36e30](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3e36e30efef51ed010480e43373e9ac20c9b2014)), closes [#1168](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1168)
245
+ - **valid-module:** add rule to validate `module` ([#1462](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1462)) ([ee376e0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ee376e05fad0ba3f137047124a1975893ecc4ca6)), closes [#1034](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1034)
127
246
  - remove deprecated valid-local-dependency rule ([#1450](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1450)) ([3e36e30](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3e36e30efef51ed010480e43373e9ac20c9b2014)), closes [#1168](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1168)
128
247
  - **valid-module:** add rule to validate `module` ([#1462](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1462)) ([ee376e0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ee376e05fad0ba3f137047124a1975893ecc4ca6)), closes [#1034](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1034)
129
248
 
249
+ ## [0.85.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.84.0...v0.85.0) (2025-11-18)
130
250
  ## [0.85.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.84.0...v0.85.0) (2025-11-18)
131
251
 
132
252
  ### Features
133
253
 
254
+ - **valid-sideEffects:** add new rule for validating `sideEffects` ([#1414](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1414)) ([04b86b1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/04b86b1a5e86cae4187ca1629ba916066d49b086))
134
255
  - **valid-sideEffects:** add new rule for validating `sideEffects` ([#1414](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1414)) ([04b86b1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/04b86b1a5e86cae4187ca1629ba916066d49b086))
135
256
 
257
+ ## [0.84.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.83.0...v0.84.0) (2025-11-18)
136
258
  ## [0.84.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.83.0...v0.84.0) (2025-11-18)
137
259
 
138
260
  ### Features
139
261
 
262
+ - add new `recommended-publishable` config ([#1413](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1413)) ([ba313a6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ba313a6ca0b701c152986a83a377b9541c2b20c8)), closes [#1403](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1403)
140
263
  - add new `recommended-publishable` config ([#1413](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1413)) ([ba313a6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ba313a6ca0b701c152986a83a377b9541c2b20c8)), closes [#1403](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1403)
141
264
 
265
+ ## [0.83.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.82.0...v0.83.0) (2025-11-17)
142
266
  ## [0.83.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.82.0...v0.83.0) (2025-11-17)
143
267
 
144
268
  ### Features
145
269
 
270
+ - **specify-peers-locally:** add rule to require all peers are declared as dev dependencies ([#1407](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1407)) ([5a102ec](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5a102ecd0f6fb025f42e838492844e2fa32ba786)), closes [#1053](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1053)
146
271
  - **specify-peers-locally:** add rule to require all peers are declared as dev dependencies ([#1407](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1407)) ([5a102ec](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5a102ecd0f6fb025f42e838492844e2fa32ba786)), closes [#1053](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1053)
147
272
 
273
+ ## [0.82.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.81.0...v0.82.0) (2025-11-17)
148
274
  ## [0.82.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.81.0...v0.82.0) (2025-11-17)
149
275
 
150
276
  ### Features
151
277
 
278
+ - **require-sideEffects:** add new rule for requiring `sideEffects` ([#1406](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1406)) ([0a8388d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0a8388d6be21e6d4d7c0203fd65be96751ca5f29)), closes [#1405](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1405)
152
279
  - **require-sideEffects:** add new rule for requiring `sideEffects` ([#1406](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1406)) ([0a8388d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0a8388d6be21e6d4d7c0203fd65be96751ca5f29)), closes [#1405](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1405)
153
280
 
281
+ ## [0.81.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.80.0...v0.81.0) (2025-11-17)
154
282
  ## [0.81.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.80.0...v0.81.0) (2025-11-17)
155
283
 
156
284
  ### Features
157
285
 
286
+ - **require-attribution:** add new rule to require proper attribution ([#1408](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1408)) ([e646f94](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e646f941bfc8ac2e4cb7c28509a8bd800b912442)), closes [#1404](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1404)
158
287
  - **require-attribution:** add new rule to require proper attribution ([#1408](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1408)) ([e646f94](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e646f941bfc8ac2e4cb7c28509a8bd800b912442)), closes [#1404](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1404)
159
288
 
289
+ ## [0.80.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.79.0...v0.80.0) (2025-11-17)
160
290
  ## [0.80.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.79.0...v0.80.0) (2025-11-17)
161
291
 
162
292
  ### Features
163
293
 
294
+ - **require-exports:** add new rule to require `exports` ([#1410](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1410)) ([c8fd152](https://github.com/michaelfaith/eslint-plugin-package-json/commit/c8fd1525b4d25c4d1fbdb488a7a604037e352361)), closes [#1409](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1409)
164
295
  - **require-exports:** add new rule to require `exports` ([#1410](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1410)) ([c8fd152](https://github.com/michaelfaith/eslint-plugin-package-json/commit/c8fd1525b4d25c4d1fbdb488a7a604037e352361)), closes [#1409](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1409)
165
296
 
297
+ ## [0.79.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.78.0...v0.79.0) (2025-11-15)
166
298
  ## [0.79.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.78.0...v0.79.0) (2025-11-15)
167
299
 
168
300
  ### Features
169
301
 
302
+ - deprecate `valid-package-definition` ([#1400](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1400)) ([dca815a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/dca815ae441d7d0667fcd54933eee868197b31d7)), closes [#1399](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1399)
170
303
  - deprecate `valid-package-definition` ([#1400](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1400)) ([dca815a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/dca815ae441d7d0667fcd54933eee868197b31d7)), closes [#1399](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1399)
171
304
 
305
+ ## [0.78.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.77.0...v0.78.0) (2025-11-15)
172
306
  ## [0.78.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.77.0...v0.78.0) (2025-11-15)
173
307
 
174
308
  ### Features
175
309
 
310
+ - **valid-repository:** add new rule for validating `repository` ([#1393](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1393)) ([2b38e88](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2b38e881f60d357f9f73ad7a1aff159682542c42)), closes [#838](https://github.com/michaelfaith/eslint-plugin-package-json/issues/838)
176
311
  - **valid-repository:** add new rule for validating `repository` ([#1393](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1393)) ([2b38e88](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2b38e881f60d357f9f73ad7a1aff159682542c42)), closes [#838](https://github.com/michaelfaith/eslint-plugin-package-json/issues/838)
177
312
 
313
+ ## [0.77.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.76.0...v0.77.0) (2025-11-15)
178
314
  ## [0.77.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.76.0...v0.77.0) (2025-11-15)
179
315
 
180
316
  ### Features
181
317
 
318
+ - **unique-dependencies:** report cross-group duplicates ([#1398](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1398)) ([94b690e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/94b690e1996ec271ba743225ccecf66691f97e01)), closes [#1007](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1007)
182
319
  - **unique-dependencies:** report cross-group duplicates ([#1398](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1398)) ([94b690e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/94b690e1996ec271ba743225ccecf66691f97e01)), closes [#1007](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1007)
183
320
 
321
+ ## [0.76.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.75.0...v0.76.0) (2025-11-15)
184
322
  ## [0.76.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.75.0...v0.76.0) (2025-11-15)
185
323
 
186
324
  ### Features
187
325
 
326
+ - **valid-engines:** add new rule for validating `engines` ([#1397](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1397)) ([ba834f0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ba834f00651b64f2bc0cf58cf41d768bd6cee5eb)), closes [#826](https://github.com/michaelfaith/eslint-plugin-package-json/issues/826)
188
327
  - **valid-engines:** add new rule for validating `engines` ([#1397](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1397)) ([ba834f0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ba834f00651b64f2bc0cf58cf41d768bd6cee5eb)), closes [#826](https://github.com/michaelfaith/eslint-plugin-package-json/issues/826)
189
328
 
329
+ ## [0.75.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.73.0...v0.75.0) (2025-11-15)
190
330
  ## [0.75.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.73.0...v0.75.0) (2025-11-15)
191
331
 
192
332
  ### Features
193
333
 
334
+ - **valid-man:** add new rule for validating `man` ([#1392](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1392)) ([3f1ffc5](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3f1ffc57a924c080892dd66bc5ce7a011ca70451)), closes [#832](https://github.com/michaelfaith/eslint-plugin-package-json/issues/832)
335
+ - **valid-publishConfig:** add new rule for validating `publishConfig` ([#1388](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1388)) ([6d1fab4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/6d1fab4e4b6c59e7bcfc582ef75a0e07a5c8ea08)), closes [#841](https://github.com/michaelfaith/eslint-plugin-package-json/issues/841)
336
+ - **valid-workspaces:** add new rule for validating `workspaces` ([#1396](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1396)) ([2eeca42](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2eeca42701a8636704e3d6b896cf3eec21531779)), closes [#843](https://github.com/michaelfaith/eslint-plugin-package-json/issues/843)
194
337
  - **valid-man:** add new rule for validating `man` ([#1392](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1392)) ([3f1ffc5](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3f1ffc57a924c080892dd66bc5ce7a011ca70451)), closes [#832](https://github.com/michaelfaith/eslint-plugin-package-json/issues/832)
195
338
  - **valid-publishConfig:** add new rule for validating `publishConfig` ([#1388](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1388)) ([6d1fab4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/6d1fab4e4b6c59e7bcfc582ef75a0e07a5c8ea08)), closes [#841](https://github.com/michaelfaith/eslint-plugin-package-json/issues/841)
196
339
  - **valid-workspaces:** add new rule for validating `workspaces` ([#1396](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1396)) ([2eeca42](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2eeca42701a8636704e3d6b896cf3eec21531779)), closes [#843](https://github.com/michaelfaith/eslint-plugin-package-json/issues/843)
197
340
 
341
+ ## [0.74.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.73.0...v0.74.0) (2025-11-14)
198
342
  ## [0.74.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.73.0...v0.74.0) (2025-11-14)
199
343
 
200
344
  ### Features
201
345
 
346
+ - **valid-publishConfig:** add new rule for validating `publishConfig` ([#1388](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1388)) ([6d1fab4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/6d1fab4e4b6c59e7bcfc582ef75a0e07a5c8ea08)), closes [#841](https://github.com/michaelfaith/eslint-plugin-package-json/issues/841)
202
347
  - **valid-publishConfig:** add new rule for validating `publishConfig` ([#1388](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1388)) ([6d1fab4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/6d1fab4e4b6c59e7bcfc582ef75a0e07a5c8ea08)), closes [#841](https://github.com/michaelfaith/eslint-plugin-package-json/issues/841)
203
348
 
349
+ ## [0.73.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.72.0...v0.73.0) (2025-11-13)
204
350
  ## [0.73.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.72.0...v0.73.0) (2025-11-13)
205
351
 
206
352
  ### Features
207
353
 
354
+ - **order-properties:** lexicographically sort non-standard properties ([#1375](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1375)) ([f7c0d01](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f7c0d019b91aab831f7506e213cc1176bd5dac75)), closes [#1374](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1374)
208
355
  - **order-properties:** lexicographically sort non-standard properties ([#1375](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1375)) ([f7c0d01](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f7c0d019b91aab831f7506e213cc1176bd5dac75)), closes [#1374](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1374)
209
356
 
357
+ ## [0.72.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.71.0...v0.72.0) (2025-11-13)
210
358
  ## [0.72.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.71.0...v0.72.0) (2025-11-13)
211
359
 
212
360
  ### Features
213
361
 
362
+ - **valid-contributors:** add new rule for validating `contributors` ([#1387](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1387)) ([82a844c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/82a844cf472a06f2da036a39137f79f3ca1e6c5d)), closes [#1372](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1372)
214
363
  - **valid-contributors:** add new rule for validating `contributors` ([#1387](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1387)) ([82a844c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/82a844cf472a06f2da036a39137f79f3ca1e6c5d)), closes [#1372](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1372)
215
364
 
365
+ ## [0.71.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.70.0...v0.71.0) (2025-11-13)
216
366
  ## [0.71.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.70.0...v0.71.0) (2025-11-13)
217
367
 
218
368
  ### Features
219
369
 
370
+ - **valid-os:** add new rule for validating `os` ([#1383](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1383)) ([896cd53](https://github.com/michaelfaith/eslint-plugin-package-json/commit/896cd53fee7b1c881102de62f9f7e032a3673ea8)), closes [#834](https://github.com/michaelfaith/eslint-plugin-package-json/issues/834)
220
371
  - **valid-os:** add new rule for validating `os` ([#1383](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1383)) ([896cd53](https://github.com/michaelfaith/eslint-plugin-package-json/commit/896cd53fee7b1c881102de62f9f7e032a3673ea8)), closes [#834](https://github.com/michaelfaith/eslint-plugin-package-json/issues/834)
221
372
 
373
+ ## [0.70.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.69.0...v0.70.0) (2025-11-13)
222
374
  ## [0.70.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.69.0...v0.70.0) (2025-11-13)
223
375
 
224
376
  ### Features
225
377
 
378
+ - **valid-private:** add new rule for validating `private` ([#1384](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1384)) ([9a9b3d2](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9a9b3d27c5553088cdb224861f122a341acd01bf)), closes [#837](https://github.com/michaelfaith/eslint-plugin-package-json/issues/837)
226
379
  - **valid-private:** add new rule for validating `private` ([#1384](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1384)) ([9a9b3d2](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9a9b3d27c5553088cdb224861f122a341acd01bf)), closes [#837](https://github.com/michaelfaith/eslint-plugin-package-json/issues/837)
227
380
 
381
+ ## [0.69.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.68.0...v0.69.0) (2025-11-12)
228
382
  ## [0.69.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.68.0...v0.69.0) (2025-11-12)
229
383
 
230
384
  ### Features
231
385
 
386
+ - **valid-main:** add new rule for validating `main` ([#1382](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1382)) ([bc54025](https://github.com/michaelfaith/eslint-plugin-package-json/commit/bc54025bda030013b9129dfb31332327369ad6e7)), closes [#831](https://github.com/michaelfaith/eslint-plugin-package-json/issues/831)
232
387
  - **valid-main:** add new rule for validating `main` ([#1382](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1382)) ([bc54025](https://github.com/michaelfaith/eslint-plugin-package-json/commit/bc54025bda030013b9129dfb31332327369ad6e7)), closes [#831](https://github.com/michaelfaith/eslint-plugin-package-json/issues/831)
233
388
 
389
+ ## [0.68.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.67.0...v0.68.0) (2025-11-12)
234
390
  ## [0.68.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.67.0...v0.68.0) (2025-11-12)
235
391
 
236
392
  ### Features
237
393
 
394
+ - **valid-keywords:** add new rule for validating `keywords` ([#1381](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1381)) ([a227184](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a2271843a104288376da9b1fbc89e1de33444a38)), closes [#829](https://github.com/michaelfaith/eslint-plugin-package-json/issues/829)
238
395
  - **valid-keywords:** add new rule for validating `keywords` ([#1381](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1381)) ([a227184](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a2271843a104288376da9b1fbc89e1de33444a38)), closes [#829](https://github.com/michaelfaith/eslint-plugin-package-json/issues/829)
239
396
 
397
+ ## [0.67.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.66.0...v0.67.0) (2025-11-12)
240
398
  ## [0.67.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.66.0...v0.67.0) (2025-11-12)
241
399
 
242
400
  ### Features
243
401
 
402
+ - **valid-files:** add new rule for validating `files` ([#1380](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1380)) ([d2a81d3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d2a81d3c1c86a24c675fb2ff8483a7e01400b294)), closes [#827](https://github.com/michaelfaith/eslint-plugin-package-json/issues/827)
244
403
  - **valid-files:** add new rule for validating `files` ([#1380](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1380)) ([d2a81d3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d2a81d3c1c86a24c675fb2ff8483a7e01400b294)), closes [#827](https://github.com/michaelfaith/eslint-plugin-package-json/issues/827)
245
404
 
405
+ ## [0.66.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.3...v0.66.0) (2025-11-11)
246
406
  ## [0.66.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.3...v0.66.0) (2025-11-11)
247
407
 
248
408
  ### Features
249
409
 
410
+ - **valid-homepage:** add new rule for validating `homepage` ([#1376](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1376)) ([34ad9b8](https://github.com/michaelfaith/eslint-plugin-package-json/commit/34ad9b8dda81601e9f710dc66c61a02fe7ecfa0e)), closes [#828](https://github.com/michaelfaith/eslint-plugin-package-json/issues/828)
250
411
  - **valid-homepage:** add new rule for validating `homepage` ([#1376](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1376)) ([34ad9b8](https://github.com/michaelfaith/eslint-plugin-package-json/commit/34ad9b8dda81601e9f710dc66c61a02fe7ecfa0e)), closes [#828](https://github.com/michaelfaith/eslint-plugin-package-json/issues/828)
251
412
 
413
+ ## [0.65.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.2...v0.65.3) (2025-11-10)
252
414
  ## [0.65.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.2...v0.65.3) (2025-11-10)
253
415
 
254
416
  ### Bug Fixes
255
417
 
418
+ - **valid-dependencies:** improve report precision ([#1363](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1363)) ([336677a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/336677af4b94834e729b21a450992ca998d42099)), closes [#1213](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1213)
256
419
  - **valid-dependencies:** improve report precision ([#1363](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1363)) ([336677a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/336677af4b94834e729b21a450992ca998d42099)), closes [#1213](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1213)
257
420
 
421
+ ## [0.65.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.1...v0.65.2) (2025-11-10)
258
422
  ## [0.65.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.1...v0.65.2) (2025-11-10)
259
423
 
260
424
  ### Bug Fixes
261
425
 
426
+ - **valid-exports:** improve report precision ([#1361](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1361)) ([5d7bd4a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5d7bd4affb93c3eb22576062c963599b6e56bdd1)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
262
427
  - **valid-exports:** improve report precision ([#1361](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1361)) ([5d7bd4a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5d7bd4affb93c3eb22576062c963599b6e56bdd1)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
263
428
 
429
+ ## [0.65.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.0...v0.65.1) (2025-11-09)
264
430
  ## [0.65.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.0...v0.65.1) (2025-11-09)
265
431
 
266
432
  ### Bug Fixes
267
433
 
434
+ - **scripts-name-casing:** ignore `prepublishOnly` built-in script ([#1369](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1369)) ([b672551](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b67255122ac753d1c3f9d7ef310a72dca029f2a3)), closes [#1368](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1368)
268
435
  - **scripts-name-casing:** ignore `prepublishOnly` built-in script ([#1369](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1369)) ([b672551](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b67255122ac753d1c3f9d7ef310a72dca029f2a3)), closes [#1368](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1368)
269
436
 
437
+ ## [0.65.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.64.0...v0.65.0) (2025-11-08)
270
438
  ## [0.65.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.64.0...v0.65.0) (2025-11-08)
271
439
 
272
440
  ### Bug Fixes
273
441
 
442
+ - **valid-bin, valid-bundleDependencies:** improve report precision ([#1360](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1360)) ([3d0bd1e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3d0bd1e04b935d30e85823dcf8c8d682ea4ab8d2)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
274
443
  - **valid-bin, valid-bundleDependencies:** improve report precision ([#1360](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1360)) ([3d0bd1e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3d0bd1e04b935d30e85823dcf8c8d682ea4ab8d2)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
275
444
 
276
445
  ### Features
277
446
 
447
+ - **no-redundant-publishConfig:** add new rule ([#1366](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1366)) ([8d3680c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/8d3680c5fb0df0af37744cf86201163aee372bab)), closes [#1365](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1365)
278
448
  - **no-redundant-publishConfig:** add new rule ([#1366](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1366)) ([8d3680c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/8d3680c5fb0df0af37744cf86201163aee372bab)), closes [#1365](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1365)
279
449
 
450
+ ## [0.64.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.63.0...v0.64.0) (2025-11-04)
280
451
  ## [0.64.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.63.0...v0.64.0) (2025-11-04)
281
452
 
282
453
  ### Features
283
454
 
455
+ - **bin-name-casing:** add new rule ([#1343](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1343)) ([0e10e87](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0e10e875eb4cc5f680e154e6ea2333e5902d4c4c)), closes [#1346](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1346)
284
456
  - **bin-name-casing:** add new rule ([#1343](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1343)) ([0e10e87](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0e10e875eb4cc5f680e154e6ea2333e5902d4c4c)), closes [#1346](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1346)
285
457
 
458
+ ## [0.63.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.62.0...v0.63.0) (2025-11-04)
286
459
  ## [0.63.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.62.0...v0.63.0) (2025-11-04)
287
460
 
288
461
  ### Features
289
462
 
463
+ - **restrict-private-properties:** add new rule ([#1336](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1336)) ([e1225cf](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e1225cf991be2f3829cdddcae8b06cef8196f070)), closes [#1323](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1323)
290
464
  - **restrict-private-properties:** add new rule ([#1336](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1336)) ([e1225cf](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e1225cf991be2f3829cdddcae8b06cef8196f070)), closes [#1323](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1323)
291
465
 
466
+ ## [0.62.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.61.0...v0.62.0) (2025-11-03)
292
467
  ## [0.62.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.61.0...v0.62.0) (2025-11-03)
293
468
 
294
469
  ### Features
295
470
 
471
+ - **scripts-name-casing:** add new rule ([#1344](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1344)) ([e735595](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e735595537e6857c771eac12a1efcd55cb2d3564)), closes [#61](https://github.com/michaelfaith/eslint-plugin-package-json/issues/61)
296
472
  - **scripts-name-casing:** add new rule ([#1344](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1344)) ([e735595](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e735595537e6857c771eac12a1efcd55cb2d3564)), closes [#61](https://github.com/michaelfaith/eslint-plugin-package-json/issues/61)
297
473
 
474
+ ## [0.61.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.60.0...v0.61.0) (2025-11-03)
298
475
  ## [0.61.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.60.0...v0.61.0) (2025-11-03)
299
476
 
300
477
  ### Features
301
478
 
479
+ - add new stylistic config ([#1342](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1342)) ([3d01cce](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3d01cce99a1718a7485669c7b8cf6143a255b094)), closes [#1341](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1341)
302
480
  - add new stylistic config ([#1342](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1342)) ([3d01cce](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3d01cce99a1718a7485669c7b8cf6143a255b094)), closes [#1341](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1341)
303
481
 
482
+ ## [0.60.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.59.1...v0.60.0) (2025-11-03)
304
483
  ## [0.60.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.59.1...v0.60.0) (2025-11-03)
305
484
 
306
485
  ### Features
307
486
 
487
+ - **valid-author:** create more precise reports ([#1337](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1337)) ([e79ff9a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e79ff9ac602d85bf999686b018de6ace3a7bee36)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
308
488
  - **valid-author:** create more precise reports ([#1337](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1337)) ([e79ff9a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e79ff9ac602d85bf999686b018de6ace3a7bee36)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
309
489
 
490
+ ## [0.59.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.59.0...v0.59.1) (2025-10-30)
310
491
  ## [0.59.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.59.0...v0.59.1) (2025-10-30)
311
492
 
312
493
  ### Bug Fixes
313
494
 
495
+ - **deps:** update dependency validate-npm-package-name to v7 ([#1353](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1353)) ([be9970a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/be9970a18c73521906d1564ca461d94159e88807))
314
496
  - **deps:** update dependency validate-npm-package-name to v7 ([#1353](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1353)) ([be9970a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/be9970a18c73521906d1564ca461d94159e88807))
315
497
 
498
+ ## [0.59.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.58.0...v0.59.0) (2025-10-25)
316
499
  ## [0.59.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.58.0...v0.59.0) (2025-10-25)
317
500
 
318
501
  ### Features
319
502
 
503
+ - **exports-subpaths-style:** add new rule ([#1328](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1328)) ([d1a82ed](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d1a82edf78b7b4bd446018f1ea3bb77e1bc9c772)), closes [#1322](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1322)
320
504
  - **exports-subpaths-style:** add new rule ([#1328](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1328)) ([d1a82ed](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d1a82edf78b7b4bd446018f1ea3bb77e1bc9c772)), closes [#1322](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1322)
321
505
 
506
+ ## [0.58.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.57.0...v0.58.0) (2025-10-22)
322
507
  ## [0.58.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.57.0...v0.58.0) (2025-10-22)
323
508
 
324
509
  ### Features
325
510
 
511
+ - mark `legacy-recommended` config deprecated ([#1331](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1331)) ([5e20411](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5e204118f4b6ae4a50f9a50a1c2a64a5bf84a5a7)), closes [#1329](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1329) [#1253](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1253)
326
512
  - mark `legacy-recommended` config deprecated ([#1331](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1331)) ([5e20411](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5e204118f4b6ae4a50f9a50a1c2a64a5bf84a5a7)), closes [#1329](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1329) [#1253](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1253)
327
513
 
514
+ ## [0.57.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.4...v0.57.0) (2025-10-16)
328
515
  ## [0.57.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.4...v0.57.0) (2025-10-16)
329
516
 
330
517
  ### Features
331
518
 
519
+ - add require-license rule ([#1302](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1302)) ([6d41e06](https://github.com/michaelfaith/eslint-plugin-package-json/commit/6d41e06dfd2eb89b026229d4045dcdae2cc29e70)), closes [#846](https://github.com/michaelfaith/eslint-plugin-package-json/issues/846)
332
520
  - add require-license rule ([#1302](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1302)) ([6d41e06](https://github.com/michaelfaith/eslint-plugin-package-json/commit/6d41e06dfd2eb89b026229d4045dcdae2cc29e70)), closes [#846](https://github.com/michaelfaith/eslint-plugin-package-json/issues/846)
333
521
 
522
+ ## [0.56.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.3...v0.56.4) (2025-10-14)
334
523
  ## [0.56.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.3...v0.56.4) (2025-10-14)
335
524
 
336
525
  ### Bug Fixes
337
526
 
527
+ - re-adopt jsonc-eslint-parser's RuleListener type ([#1319](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1319)) ([2c4c7c2](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2c4c7c2591732f1b298e5e6eb279afe5f7d52cab)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
338
528
  - re-adopt jsonc-eslint-parser's RuleListener type ([#1319](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1319)) ([2c4c7c2](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2c4c7c2591732f1b298e5e6eb279afe5f7d52cab)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
339
529
 
530
+ ## [0.56.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.2...v0.56.3) (2025-09-15)
340
531
  ## [0.56.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.2...v0.56.3) (2025-09-15)
341
532
 
342
533
  ### Bug Fixes
343
534
 
535
+ - **plugin:** update types to be compatible with `defineConfig` ([#1245](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1245)) ([861e5e1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/861e5e129b3a5e3455b6b2a2a26d453086f20c14)), closes [#1242](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1242)
344
536
  - **plugin:** update types to be compatible with `defineConfig` ([#1245](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1245)) ([861e5e1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/861e5e129b3a5e3455b6b2a2a26d453086f20c14)), closes [#1242](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1242)
345
537
 
538
+ ## [0.56.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.1...v0.56.2) (2025-09-04)
346
539
  ## [0.56.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.1...v0.56.2) (2025-09-04)
347
540
 
348
541
  ### Bug Fixes
349
542
 
543
+ - improve sort-collections docs and error messages ([#1250](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1250)) ([1864376](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1864376039db3db690423051b0dd8a2104395aa4)), closes [#1243](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1243) [#1243](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1243)
350
544
  - improve sort-collections docs and error messages ([#1250](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1250)) ([1864376](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1864376039db3db690423051b0dd8a2104395aa4)), closes [#1243](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1243) [#1243](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1243)
351
545
 
546
+ ## [0.56.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.0...v0.56.1) (2025-08-31)
352
547
  ## [0.56.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.0...v0.56.1) (2025-08-31)
353
548
 
354
549
  ### Bug Fixes
355
550
 
551
+ - **deps:** update dependency package-json-validator to ~0.30.0 ([#1241](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1241)) ([c3d247c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/c3d247cc416d4bb0eee629fde3440224fe39eb59))
356
552
  - **deps:** update dependency package-json-validator to ~0.30.0 ([#1241](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1241)) ([c3d247c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/c3d247cc416d4bb0eee629fde3440224fe39eb59))
357
553
 
554
+ ## [0.56.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.55.0...v0.56.0) (2025-08-25)
358
555
  ## [0.56.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.55.0...v0.56.0) (2025-08-25)
359
556
 
360
557
  ### Features
361
558
 
559
+ - **valid-directories:** add new rule for validating `directories` ([#1224](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1224)) ([b1cc676](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b1cc6762f7e46162e4a6bf067dd29af2983462c8)), closes [#825](https://github.com/michaelfaith/eslint-plugin-package-json/issues/825)
362
560
  - **valid-directories:** add new rule for validating `directories` ([#1224](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1224)) ([b1cc676](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b1cc6762f7e46162e4a6bf067dd29af2983462c8)), closes [#825](https://github.com/michaelfaith/eslint-plugin-package-json/issues/825)
363
561
 
562
+ ## [0.55.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.54.0...v0.55.0) (2025-08-22)
364
563
  ## [0.55.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.54.0...v0.55.0) (2025-08-22)
365
564
 
366
565
  ### Features
367
566
 
567
+ - add no-redundant-files to recommended ([#1232](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1232)) ([2a52f87](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2a52f8797bff236f88232d139e2a9526c24e4b4c)), closes [#1231](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1231)
368
568
  - add no-redundant-files to recommended ([#1232](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1232)) ([2a52f87](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2a52f8797bff236f88232d139e2a9526c24e4b4c)), closes [#1231](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1231)
369
569
 
570
+ ## [0.54.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.53.0...v0.54.0) (2025-08-15)
370
571
  ## [0.54.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.53.0...v0.54.0) (2025-08-15)
371
572
 
372
573
  ### Features
373
574
 
575
+ - **valid-exports:** add new rule for validating `exports` ([#1220](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1220)) ([2af10da](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2af10dae3398832819c6dd37730ffef5ee3329b7)), closes [#1033](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1033)
374
576
  - **valid-exports:** add new rule for validating `exports` ([#1220](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1220)) ([2af10da](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2af10dae3398832819c6dd37730ffef5ee3329b7)), closes [#1033](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1033)
375
577
 
578
+ ## [0.53.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.52.1...v0.53.0) (2025-08-13)
376
579
  ## [0.53.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.52.1...v0.53.0) (2025-08-13)
377
580
 
378
581
  ### Features
379
582
 
583
+ - add docs url to all rules ([#1218](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1218)) ([d456b13](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d456b13d2c30e71d11294a315282859c66a4b1b7)), closes [#1217](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1217)
380
584
  - add docs url to all rules ([#1218](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1218)) ([d456b13](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d456b13d2c30e71d11294a315282859c66a4b1b7)), closes [#1217](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1217)
381
585
 
586
+ ## [0.52.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.52.0...v0.52.1) (2025-08-07)
382
587
  ## [0.52.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.52.0...v0.52.1) (2025-08-07)
383
588
 
384
589
  ### Bug Fixes
385
590
 
591
+ - **sort-collections:** align sorting of scripts with `prettier-plugin-packagejson` ([#1203](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1203)) ([1f5c590](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1f5c590adc846194766127ab962f8efa72942d06)), closes [#753](https://github.com/michaelfaith/eslint-plugin-package-json/issues/753)
386
592
  - **sort-collections:** align sorting of scripts with `prettier-plugin-packagejson` ([#1203](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1203)) ([1f5c590](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1f5c590adc846194766127ab962f8efa72942d06)), closes [#753](https://github.com/michaelfaith/eslint-plugin-package-json/issues/753)
387
593
 
594
+ ## [0.52.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.51.0...v0.52.0) (2025-08-07)
388
595
  ## [0.52.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.51.0...v0.52.0) (2025-08-07)
389
596
 
390
597
  ### Features
391
598
 
599
+ - **valid-description:** add new rule for validating `description` ([#1204](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1204)) ([4acb265](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4acb26563c0cacb5834c8b53dae68fb291c0ffd1)), closes [#823](https://github.com/michaelfaith/eslint-plugin-package-json/issues/823)
392
600
  - **valid-description:** add new rule for validating `description` ([#1204](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1204)) ([4acb265](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4acb26563c0cacb5834c8b53dae68fb291c0ffd1)), closes [#823](https://github.com/michaelfaith/eslint-plugin-package-json/issues/823)
393
601
 
602
+ ## [0.51.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.50.0...v0.51.0) (2025-08-05)
394
603
  ## [0.51.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.50.0...v0.51.0) (2025-08-05)
395
604
 
396
605
  ### Features
397
606
 
607
+ - add `ignorePrivate` option to all `require-*` rules ([#1158](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1158)) ([055009b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/055009bf864c9f8db153bf0c5bb9568d023abe12)), closes [#1092](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1092)
398
608
  - add `ignorePrivate` option to all `require-*` rules ([#1158](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1158)) ([055009b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/055009bf864c9f8db153bf0c5bb9568d023abe12)), closes [#1092](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1092)
399
609
 
610
+ ## [0.50.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.49.0...v0.50.0) (2025-08-05)
400
611
  ## [0.50.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.49.0...v0.50.0) (2025-08-05)
401
612
 
402
613
  ### Features
403
614
 
615
+ - add new `require-` rules for `bugs`, `bundleDependencies`, `dependencies`, and more ([#1197](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1197)) ([0a06664](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0a0666404d5659ea8eb8717516aa3c3b6374af26)), closes [#862](https://github.com/michaelfaith/eslint-plugin-package-json/issues/862) [#863](https://github.com/michaelfaith/eslint-plugin-package-json/issues/863) [#811](https://github.com/michaelfaith/eslint-plugin-package-json/issues/811) [#809](https://github.com/michaelfaith/eslint-plugin-package-json/issues/809) [#801](https://github.com/michaelfaith/eslint-plugin-package-json/issues/801) [#797](https://github.com/michaelfaith/eslint-plugin-package-json/issues/797)
404
616
  - add new `require-` rules for `bugs`, `bundleDependencies`, `dependencies`, and more ([#1197](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1197)) ([0a06664](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0a0666404d5659ea8eb8717516aa3c3b6374af26)), closes [#862](https://github.com/michaelfaith/eslint-plugin-package-json/issues/862) [#863](https://github.com/michaelfaith/eslint-plugin-package-json/issues/863) [#811](https://github.com/michaelfaith/eslint-plugin-package-json/issues/811) [#809](https://github.com/michaelfaith/eslint-plugin-package-json/issues/809) [#801](https://github.com/michaelfaith/eslint-plugin-package-json/issues/801) [#797](https://github.com/michaelfaith/eslint-plugin-package-json/issues/797)
405
617
 
618
+ ## [0.49.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.48.0...v0.49.0) (2025-08-05)
406
619
  ## [0.49.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.48.0...v0.49.0) (2025-08-05)
407
620
 
408
621
  ### Features
409
622
 
623
+ - **valid-dependencies:** add new rule for validating dependencies ([#1196](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1196)) ([73af8e2](https://github.com/michaelfaith/eslint-plugin-package-json/commit/73af8e214d99df618d5d8c4eb9bfdfefc062ef84)), closes [#822](https://github.com/michaelfaith/eslint-plugin-package-json/issues/822) [#824](https://github.com/michaelfaith/eslint-plugin-package-json/issues/824) [#833](https://github.com/michaelfaith/eslint-plugin-package-json/issues/833) [#835](https://github.com/michaelfaith/eslint-plugin-package-json/issues/835)
410
624
  - **valid-dependencies:** add new rule for validating dependencies ([#1196](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1196)) ([73af8e2](https://github.com/michaelfaith/eslint-plugin-package-json/commit/73af8e214d99df618d5d8c4eb9bfdfefc062ef84)), closes [#822](https://github.com/michaelfaith/eslint-plugin-package-json/issues/822) [#824](https://github.com/michaelfaith/eslint-plugin-package-json/issues/824) [#833](https://github.com/michaelfaith/eslint-plugin-package-json/issues/833) [#835](https://github.com/michaelfaith/eslint-plugin-package-json/issues/835)
411
625
 
626
+ ## [0.48.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.47.1...v0.48.0) (2025-07-31)
412
627
  ## [0.48.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.47.1...v0.48.0) (2025-07-31)
413
628
 
414
629
  ### Features
415
630
 
631
+ - **valid-cpu:** add new rule for validating `cpu` ([#1192](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1192)) ([b52cd7c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b52cd7c3d4808d49ad99e0b8a82763e608f03550)), closes [#821](https://github.com/michaelfaith/eslint-plugin-package-json/issues/821)
416
632
  - **valid-cpu:** add new rule for validating `cpu` ([#1192](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1192)) ([b52cd7c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b52cd7c3d4808d49ad99e0b8a82763e608f03550)), closes [#821](https://github.com/michaelfaith/eslint-plugin-package-json/issues/821)
417
633
 
634
+ ## [0.47.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.47.0...v0.47.1) (2025-07-30)
418
635
  ## [0.47.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.47.0...v0.47.1) (2025-07-30)
419
636
 
420
637
  ### Bug Fixes
421
638
 
639
+ - **no-empty-fields:** don't throw error on empty object ([#1190](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1190)) ([8a9ba8a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/8a9ba8acb1d68fd1040a008dfdb185b6908284a2)), closes [#1188](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1188)
422
640
  - **no-empty-fields:** don't throw error on empty object ([#1190](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1190)) ([8a9ba8a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/8a9ba8acb1d68fd1040a008dfdb185b6908284a2)), closes [#1188](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1188)
423
641
 
642
+ ## [0.47.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.46.0...v0.47.0) (2025-07-25)
424
643
  ## [0.47.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.46.0...v0.47.0) (2025-07-25)
425
644
 
426
645
  ### Features
427
646
 
647
+ - **no-empty-fields:** Add `ignoreProperties` option ([#1186](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1186)) ([91e7156](https://github.com/michaelfaith/eslint-plugin-package-json/commit/91e7156d9f4569e8fee6f1124c4c1bb18ffdfbe0)), closes [#1182](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1182)
428
648
  - **no-empty-fields:** Add `ignoreProperties` option ([#1186](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1186)) ([91e7156](https://github.com/michaelfaith/eslint-plugin-package-json/commit/91e7156d9f4569e8fee6f1124c4c1bb18ffdfbe0)), closes [#1182](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1182)
429
649
 
650
+ ## [0.46.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.2...v0.46.0) (2025-07-24)
430
651
  ## [0.46.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.2...v0.46.0) (2025-07-24)
431
652
 
432
653
  ### Features
433
654
 
655
+ - **valid-config:** add new rule for validating `config` ([#1179](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1179)) ([b71de96](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b71de96a2a79a91d177ee0d734dc5f5d1d8e5b3b)), closes [#820](https://github.com/michaelfaith/eslint-plugin-package-json/issues/820)
434
656
  - **valid-config:** add new rule for validating `config` ([#1179](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1179)) ([b71de96](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b71de96a2a79a91d177ee0d734dc5f5d1d8e5b3b)), closes [#820](https://github.com/michaelfaith/eslint-plugin-package-json/issues/820)
435
657
 
658
+ ## [0.45.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.1...v0.45.2) (2025-07-24)
436
659
  ## [0.45.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.1...v0.45.2) (2025-07-24)
437
660
 
438
661
  ### Bug Fixes
439
662
 
663
+ - **deps:** update dependency package-json-validator to ~0.23.0 ([#1183](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1183)) ([fbc5f29](https://github.com/michaelfaith/eslint-plugin-package-json/commit/fbc5f298a63a4ce58d1311502bbea9a0593173d1))
440
664
  - **deps:** update dependency package-json-validator to ~0.23.0 ([#1183](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1183)) ([fbc5f29](https://github.com/michaelfaith/eslint-plugin-package-json/commit/fbc5f298a63a4ce58d1311502bbea9a0593173d1))
441
665
 
666
+ ## [0.45.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.0...v0.45.1) (2025-07-18)
442
667
  ## [0.45.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.0...v0.45.1) (2025-07-18)
443
668
 
444
669
  ### Bug Fixes
445
670
 
671
+ - **valid-repository-directory:** use correct path separator when on windows ([#1177](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1177)) ([0688419](https://github.com/michaelfaith/eslint-plugin-package-json/commit/06884197a028a258c31db0104d8db1dc86f53345)), closes [#1175](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1175)
446
672
  - **valid-repository-directory:** use correct path separator when on windows ([#1177](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1177)) ([0688419](https://github.com/michaelfaith/eslint-plugin-package-json/commit/06884197a028a258c31db0104d8db1dc86f53345)), closes [#1175](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1175)
447
673
 
674
+ ## [0.45.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.44.1...v0.45.0) (2025-07-17)
448
675
  ## [0.45.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.44.1...v0.45.0) (2025-07-17)
449
676
 
450
677
  ### Features
451
678
 
679
+ - **valid-license:** add new rule for validating `license` ([#1174](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1174)) ([df450a1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/df450a121067793af25890eb15e4120911a8cfa7)), closes [#830](https://github.com/michaelfaith/eslint-plugin-package-json/issues/830)
452
680
  - **valid-license:** add new rule for validating `license` ([#1174](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1174)) ([df450a1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/df450a121067793af25890eb15e4120911a8cfa7)), closes [#830](https://github.com/michaelfaith/eslint-plugin-package-json/issues/830)
453
681
 
682
+ ## [0.44.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.44.0...v0.44.1) (2025-07-10)
454
683
  ## [0.44.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.44.0...v0.44.1) (2025-07-10)
455
684
 
456
685
  ### Bug Fixes
457
686
 
687
+ - **deps:** update dependency package-json-validator to ~0.20.0 ([#1170](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1170)) ([941cf73](https://github.com/michaelfaith/eslint-plugin-package-json/commit/941cf734557db103da915d36de5adc18083a22a1))
458
688
  - **deps:** update dependency package-json-validator to ~0.20.0 ([#1170](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1170)) ([941cf73](https://github.com/michaelfaith/eslint-plugin-package-json/commit/941cf734557db103da915d36de5adc18083a22a1))
459
689
 
690
+ ## [0.44.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.4...v0.44.0) (2025-07-09)
460
691
  ## [0.44.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.4...v0.44.0) (2025-07-09)
461
692
 
462
693
  ### Features
463
694
 
695
+ - **valid-bundleDependencies:** add new rule for validating `bundleDependencies` ([#1148](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1148)) ([ee44973](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ee449730ece778037a4d1ea7aa2d2ec83081a1cb)), closes [#819](https://github.com/michaelfaith/eslint-plugin-package-json/issues/819)
464
696
  - **valid-bundleDependencies:** add new rule for validating `bundleDependencies` ([#1148](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1148)) ([ee44973](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ee449730ece778037a4d1ea7aa2d2ec83081a1cb)), closes [#819](https://github.com/michaelfaith/eslint-plugin-package-json/issues/819)
465
697
 
698
+ ## [0.43.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.3...v0.43.4) (2025-07-09)
466
699
  ## [0.43.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.3...v0.43.4) (2025-07-09)
467
700
 
468
701
  ### Bug Fixes
469
702
 
703
+ - **deps:** update dependency package-json-validator to ~0.19.0 ([#1167](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1167)) ([9c72efd](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9c72efd89801c61c22b92834fa3bbac0119a0fd4))
470
704
  - **deps:** update dependency package-json-validator to ~0.19.0 ([#1167](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1167)) ([9c72efd](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9c72efd89801c61c22b92834fa3bbac0119a0fd4))
471
705
 
706
+ ## [0.43.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.2...v0.43.3) (2025-07-08)
472
707
  ## [0.43.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.2...v0.43.3) (2025-07-08)
473
708
 
474
709
  ### Bug Fixes
475
710
 
711
+ - **deps:** update dependency @altano/repository-tools to v2 ([#1164](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1164)) ([0c54bc9](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0c54bc913a92c22dcfa43626e4c8ee44b527af51))
476
712
  - **deps:** update dependency @altano/repository-tools to v2 ([#1164](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1164)) ([0c54bc9](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0c54bc913a92c22dcfa43626e4c8ee44b527af51))
477
713
 
714
+ ## [0.43.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.1...v0.43.2) (2025-07-04)
478
715
  ## [0.43.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.1...v0.43.2) (2025-07-04)
479
716
 
480
717
  ### Bug Fixes
481
718
 
719
+ - **deps:** update dependency package-json-validator to ~0.18.0 ([#1160](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1160)) ([dfebe75](https://github.com/michaelfaith/eslint-plugin-package-json/commit/dfebe75f2fa7778ba188580a0d33ce0d8e151413))
482
720
  - **deps:** update dependency package-json-validator to ~0.18.0 ([#1160](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1160)) ([dfebe75](https://github.com/michaelfaith/eslint-plugin-package-json/commit/dfebe75f2fa7778ba188580a0d33ce0d8e151413))
483
721
 
722
+ ## [0.43.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.0...v0.43.1) (2025-07-03)
484
723
  ## [0.43.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.0...v0.43.1) (2025-07-03)
485
724
 
486
725
  ### Bug Fixes
487
726
 
727
+ - disallow extra properties in rule options ([#1156](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1156)) ([4186e96](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4186e960c17a5397ac916184fc4341f9b26fc3d0))
488
728
  - disallow extra properties in rule options ([#1156](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1156)) ([4186e96](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4186e960c17a5397ac916184fc4341f9b26fc3d0))
489
729
 
730
+ ## [0.43.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.42.1...v0.43.0) (2025-07-02)
490
731
  ## [0.43.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.42.1...v0.43.0) (2025-07-02)
491
732
 
492
733
  ### Features
493
734
 
735
+ - **valid-scripts:** add new rule for validating scripts ([#1138](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1138)) ([99cc2a5](https://github.com/michaelfaith/eslint-plugin-package-json/commit/99cc2a5d069bfff53885f0717b8a635767cb2c19)), closes [#839](https://github.com/michaelfaith/eslint-plugin-package-json/issues/839)
494
736
  - **valid-scripts:** add new rule for validating scripts ([#1138](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1138)) ([99cc2a5](https://github.com/michaelfaith/eslint-plugin-package-json/commit/99cc2a5d069bfff53885f0717b8a635767cb2c19)), closes [#839](https://github.com/michaelfaith/eslint-plugin-package-json/issues/839)
495
737
 
738
+ ## [0.42.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.42.0...v0.42.1) (2025-07-01)
496
739
  ## [0.42.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.42.0...v0.42.1) (2025-07-01)
497
740
 
498
741
  ### Bug Fixes
499
742
 
743
+ - **deps:** update dependency package-json-validator to ~0.17.0 ([#1152](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1152)) ([16239d0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/16239d084c245836549071a4e8ac2879b4f53f3e))
500
744
  - **deps:** update dependency package-json-validator to ~0.17.0 ([#1152](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1152)) ([16239d0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/16239d084c245836549071a4e8ac2879b4f53f3e))
501
745
 
746
+ ## [0.42.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.41.0...v0.42.0) (2025-06-25)
502
747
  ## [0.42.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.41.0...v0.42.0) (2025-06-25)
503
748
 
504
749
  ### Features
505
750
 
751
+ - remove deprecated `valid-package-def` rule ([#1111](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1111)) ([946a585](https://github.com/michaelfaith/eslint-plugin-package-json/commit/946a585c2c9344ac227463cf234714fc204f1746)), closes [#1110](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1110) [#711](https://github.com/michaelfaith/eslint-plugin-package-json/issues/711)
506
752
  - remove deprecated `valid-package-def` rule ([#1111](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1111)) ([946a585](https://github.com/michaelfaith/eslint-plugin-package-json/commit/946a585c2c9344ac227463cf234714fc204f1746)), closes [#1110](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1110) [#711](https://github.com/michaelfaith/eslint-plugin-package-json/issues/711)
507
753
 
754
+ ## [0.41.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.5...v0.41.0) (2025-06-24)
508
755
  ## [0.41.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.5...v0.41.0) (2025-06-24)
509
756
 
510
757
  ### Features
511
758
 
759
+ - **valid-type:** add new rule ([#1120](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1120)) ([7425f27](https://github.com/michaelfaith/eslint-plugin-package-json/commit/7425f2796560e94420a85fa6494996cb052c06c4)), closes [#842](https://github.com/michaelfaith/eslint-plugin-package-json/issues/842)
512
760
  - **valid-type:** add new rule ([#1120](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1120)) ([7425f27](https://github.com/michaelfaith/eslint-plugin-package-json/commit/7425f2796560e94420a85fa6494996cb052c06c4)), closes [#842](https://github.com/michaelfaith/eslint-plugin-package-json/issues/842)
513
761
 
762
+ ## [0.40.5](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.4...v0.40.5) (2025-06-23)
514
763
  ## [0.40.5](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.4...v0.40.5) (2025-06-23)
515
764
 
516
765
  ### Bug Fixes
517
766
 
767
+ - **deps:** update dependency package-json-validator to ~0.16.0 ([#1135](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1135)) ([4a4a2a0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4a4a2a07fdfef6b1869a51824a6697bbb2c34ecb))
518
768
  - **deps:** update dependency package-json-validator to ~0.16.0 ([#1135](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1135)) ([4a4a2a0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4a4a2a07fdfef6b1869a51824a6697bbb2c34ecb))
519
769
 
770
+ ## [0.40.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.3...v0.40.4) (2025-06-20)
520
771
  ## [0.40.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.3...v0.40.4) (2025-06-20)
521
772
 
522
773
  ### Bug Fixes
523
774
 
775
+ - **deps:** update dependency package-json-validator to ~0.15.0 ([#1131](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1131)) ([4bf7d9c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4bf7d9cd091faf9ac0fb286b5968d6417328c79c))
524
776
  - **deps:** update dependency package-json-validator to ~0.15.0 ([#1131](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1131)) ([4bf7d9c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4bf7d9cd091faf9ac0fb286b5968d6417328c79c))
525
777
 
778
+ ## [0.40.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.2...v0.40.3) (2025-06-19)
526
779
  ## [0.40.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.2...v0.40.3) (2025-06-19)
527
780
 
528
781
  ### Bug Fixes
529
782
 
783
+ - **deps:** update dependency eslint-fix-utils to ^0.4.0 ([#1130](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1130)) ([b66db8c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b66db8c584f2b90677505c99840b91918e785ae8))
530
784
  - **deps:** update dependency eslint-fix-utils to ^0.4.0 ([#1130](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1130)) ([b66db8c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b66db8c584f2b90677505c99840b91918e785ae8))
531
785
 
786
+ ## [0.40.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.1...v0.40.2) (2025-06-19)
532
787
  ## [0.40.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.1...v0.40.2) (2025-06-19)
533
788
 
534
789
  ### Bug Fixes
535
790
 
791
+ - **deps:** update dependency package-json-validator to ~0.14.0 ([#1125](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1125)) ([5f61f89](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5f61f8951ec3a8697f9a17a722da3d8bae499a09))
536
792
  - **deps:** update dependency package-json-validator to ~0.14.0 ([#1125](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1125)) ([5f61f89](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5f61f8951ec3a8697f9a17a722da3d8bae499a09))
537
793
 
794
+ ## [0.40.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.0...v0.40.1) (2025-06-18)
538
795
  ## [0.40.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.0...v0.40.1) (2025-06-18)
539
796
 
540
797
  ### Bug Fixes
541
798
 
799
+ - **deps:** update dependency eslint-fix-utils to ^0.3.0 ([#1124](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1124)) ([1e30861](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1e3086136f2449e0be6c4397af2de15287899da0))
542
800
  - **deps:** update dependency eslint-fix-utils to ^0.3.0 ([#1124](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1124)) ([1e30861](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1e3086136f2449e0be6c4397af2de15287899da0))
543
801
 
802
+ ## [0.40.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.2...v0.40.0) (2025-06-16)
544
803
  ## [0.40.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.2...v0.40.0) (2025-06-16)
545
804
 
546
805
  ### Features
547
806
 
807
+ - **valid-bin:** add option for enforcing kebab-case ([#1113](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1113)) ([0024a4e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0024a4e42c70684b81e942a9aaeace0322c02fef)), closes [#1081](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1081)
548
808
  - **valid-bin:** add option for enforcing kebab-case ([#1113](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1113)) ([0024a4e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0024a4e42c70684b81e942a9aaeace0322c02fef)), closes [#1081](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1081)
549
809
 
810
+ ## [0.39.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.1...v0.39.2) (2025-06-15)
550
811
  ## [0.39.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.1...v0.39.2) (2025-06-15)
551
812
 
552
813
  ### Bug Fixes
553
814
 
815
+ - **deps:** update dependency detect-newline to v4 ([#875](https://github.com/michaelfaith/eslint-plugin-package-json/issues/875)) ([26c08d9](https://github.com/michaelfaith/eslint-plugin-package-json/commit/26c08d905a90729c011f3ff77d9e3784ad41cb7b))
554
816
  - **deps:** update dependency detect-newline to v4 ([#875](https://github.com/michaelfaith/eslint-plugin-package-json/issues/875)) ([26c08d9](https://github.com/michaelfaith/eslint-plugin-package-json/commit/26c08d905a90729c011f3ff77d9e3784ad41cb7b))
555
817
 
818
+ ## [0.39.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.0...v0.39.1) (2025-06-15)
556
819
  ## [0.39.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.0...v0.39.1) (2025-06-15)
557
820
 
558
821
  ### Bug Fixes
559
822
 
823
+ - **deps:** update dependency @altano/repository-tools to v1 ([#1006](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1006)) ([da63ce3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/da63ce37654652690aa2bc3ea2a042a3ac7ff465))
560
824
  - **deps:** update dependency @altano/repository-tools to v1 ([#1006](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1006)) ([da63ce3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/da63ce37654652690aa2bc3ea2a042a3ac7ff465))
561
825
 
826
+ ## [0.39.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.38.1...v0.39.0) (2025-06-13)
562
827
  ## [0.39.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.38.1...v0.39.0) (2025-06-13)
563
828
 
564
829
  ### Features
565
830
 
831
+ - deprecate `valid-local-dependency` ([#1107](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1107)) ([4efea70](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4efea705124a31a35ba9e10e3bb0ef79bf442fab)), closes [#1096](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1096)
566
832
  - deprecate `valid-local-dependency` ([#1107](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1107)) ([4efea70](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4efea705124a31a35ba9e10e3bb0ef79bf442fab)), closes [#1096](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1096)
567
833
 
834
+ ## [0.38.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.38.0...v0.38.1) (2025-06-13)
568
835
  ## [0.38.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.38.0...v0.38.1) (2025-06-13)
569
836
 
570
837
  ### Bug Fixes
571
838
 
839
+ - **valid-local-dependency:** don't flag archives as invalid ([#1109](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1109)) ([3d89865](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3d89865bba6e3ecab02576cde131336a7dc8c169)), closes [#1086](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1086)
572
840
  - **valid-local-dependency:** don't flag archives as invalid ([#1109](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1109)) ([3d89865](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3d89865bba6e3ecab02576cde131336a7dc8c169)), closes [#1086](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1086)
573
841
 
842
+ ## [0.38.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.37.0...v0.38.0) (2025-06-13)
574
843
  ## [0.38.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.37.0...v0.38.0) (2025-06-13)
575
844
 
576
845
  ### Features
577
846
 
847
+ - add `valid-author` rule ([#1079](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1079)) ([b8e8b40](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b8e8b40065a0aa0bfa9e38697ab5fe3241b7d6d7)), closes [#840](https://github.com/michaelfaith/eslint-plugin-package-json/issues/840)
578
848
  - add `valid-author` rule ([#1079](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1079)) ([b8e8b40](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b8e8b40065a0aa0bfa9e38697ab5fe3241b7d6d7)), closes [#840](https://github.com/michaelfaith/eslint-plugin-package-json/issues/840)
579
849
 
850
+ ## [0.37.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.36.0...v0.37.0) (2025-06-12)
580
851
  ## [0.37.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.36.0...v0.37.0) (2025-06-12)
581
852
 
582
853
  ### Features
583
854
 
855
+ - **valid-bin:** add new rule for validating bin ([#1082](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1082)) ([e9cc86e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e9cc86ec5827a4374f81886865b578f40823c5b8)), closes [#818](https://github.com/michaelfaith/eslint-plugin-package-json/issues/818) [#1077](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1077)
584
856
  - **valid-bin:** add new rule for validating bin ([#1082](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1082)) ([e9cc86e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e9cc86ec5827a4374f81886865b578f40823c5b8)), closes [#818](https://github.com/michaelfaith/eslint-plugin-package-json/issues/818) [#1077](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1077)
585
857
 
858
+ ## [0.36.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.35.1...v0.36.0) (2025-06-11)
586
859
  ## [0.36.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.35.1...v0.36.0) (2025-06-11)
587
860
 
588
861
  ### Features
589
862
 
863
+ - migrate to ESM-only ([#1100](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1100)) ([623f162](https://github.com/michaelfaith/eslint-plugin-package-json/commit/623f162daa726a717c3ad48c1a777c3be7c404b0)), closes [#1080](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1080)
590
864
  - migrate to ESM-only ([#1100](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1100)) ([623f162](https://github.com/michaelfaith/eslint-plugin-package-json/commit/623f162daa726a717c3ad48c1a777c3be7c404b0)), closes [#1080](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1080)
591
865
 
866
+ ## [0.35.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.35.0...v0.35.1) (2025-06-10)
592
867
  ## [0.35.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.35.0...v0.35.1) (2025-06-10)
593
868
 
594
869
  ### Bug Fixes
595
870
 
871
+ - **deps:** update dependency detect-indent to v7 ([#874](https://github.com/michaelfaith/eslint-plugin-package-json/issues/874)) ([65300dc](https://github.com/michaelfaith/eslint-plugin-package-json/commit/65300dc30dfdc79ab789a144f251f0b8ba96ea22))
596
872
  - **deps:** update dependency detect-indent to v7 ([#874](https://github.com/michaelfaith/eslint-plugin-package-json/issues/874)) ([65300dc](https://github.com/michaelfaith/eslint-plugin-package-json/commit/65300dc30dfdc79ab789a144f251f0b8ba96ea22))
597
873
 
874
+ ## [0.35.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.34.0...v0.35.0) (2025-06-10)
598
875
  ## [0.35.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.34.0...v0.35.0) (2025-06-10)
599
876
 
600
877
  ### Features
601
878
 
879
+ - remove support for node 18 ([#1097](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1097)) ([257659a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/257659af4fda63e2143d1ab250546dd3cb0932e7)), closes [#1074](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1074)
602
880
  - remove support for node 18 ([#1097](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1097)) ([257659a](https://github.com/michaelfaith/eslint-plugin-package-json/commit/257659af4fda63e2143d1ab250546dd3cb0932e7)), closes [#1074](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1074)
603
881
 
882
+ ## [0.34.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.2...v0.34.0) (2025-06-10)
604
883
  ## [0.34.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.2...v0.34.0) (2025-06-10)
605
884
 
606
885
  ### Features
607
886
 
887
+ - **valid-package-definition:** add ignoreProperties option ([#1077](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1077)) ([530e343](https://github.com/michaelfaith/eslint-plugin-package-json/commit/530e3430f87f21c9fadd4d511097d20e26f7190f)), closes [#1076](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1076)
608
888
  - **valid-package-definition:** add ignoreProperties option ([#1077](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1077)) ([530e343](https://github.com/michaelfaith/eslint-plugin-package-json/commit/530e3430f87f21c9fadd4d511097d20e26f7190f)), closes [#1076](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1076)
609
889
 
890
+ ## [0.33.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.1...v0.33.2) (2025-06-01)
610
891
  ## [0.33.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.1...v0.33.2) (2025-06-01)
611
892
 
612
893
  ### Bug Fixes
613
894
 
895
+ - prevent `no-redundant-files` crash with wildcard and `main` field ([#1078](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1078)) ([ad4f95f](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ad4f95f382bce8d5d0ecc79e4242596dc3eec771)), closes [#1066](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1066)
614
896
  - prevent `no-redundant-files` crash with wildcard and `main` field ([#1078](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1078)) ([ad4f95f](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ad4f95f382bce8d5d0ecc79e4242596dc3eec771)), closes [#1066](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1066)
615
897
 
898
+ ## [0.33.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.0...v0.33.1) (2025-06-01)
616
899
  ## [0.33.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.0...v0.33.1) (2025-06-01)
617
900
 
618
901
  ### Bug Fixes
619
902
 
903
+ - add CHANGELOG to package ([#1075](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1075)) ([eb13030](https://github.com/michaelfaith/eslint-plugin-package-json/commit/eb130302b6dfcc456dfeaf49fdfd61bd4fa495d1)), closes [#1070](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1070)
620
904
  - add CHANGELOG to package ([#1075](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1075)) ([eb13030](https://github.com/michaelfaith/eslint-plugin-package-json/commit/eb130302b6dfcc456dfeaf49fdfd61bd4fa495d1)), closes [#1070](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1070)
621
905
 
906
+ ## [0.33.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.32.0...v0.33.0) (2025-05-31)
622
907
  ## [0.33.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.32.0...v0.33.0) (2025-05-31)
623
908
 
624
909
  ### Features
625
910
 
911
+ - add `require-type` rule ([#1065](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1065)) ([9c092be](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9c092beb546407c4b8b43426058c56696a88b7c3)), closes [#1032](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1032)
626
912
  - add `require-type` rule ([#1065](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1065)) ([9c092be](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9c092beb546407c4b8b43426058c56696a88b7c3)), closes [#1032](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1032)
627
913
 
914
+ ## [0.32.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.31.0...v0.32.0) (2025-05-31)
628
915
  ## [0.32.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.31.0...v0.32.0) (2025-05-31)
629
916
 
630
917
  No meaningful change.
631
918
  CI error.
632
919
 
920
+ ## [0.31.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.30.0...v0.31.0) (2025-04-26)
633
921
  ## [0.31.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.30.0...v0.31.0) (2025-04-26)
634
922
 
635
923
  ### Features
636
924
 
925
+ - add require-description rule ([#1024](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1024)) ([0c00c62](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0c00c62cc3b68ff9eae8d3f3bf20d8b4fbbb3926)), closes [#864](https://github.com/michaelfaith/eslint-plugin-package-json/issues/864)
637
926
  - add require-description rule ([#1024](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1024)) ([0c00c62](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0c00c62cc3b68ff9eae8d3f3bf20d8b4fbbb3926)), closes [#864](https://github.com/michaelfaith/eslint-plugin-package-json/issues/864)
638
927
 
928
+ ## [0.30.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.29.1...v0.30.0) (2025-04-22)
639
929
  ## [0.30.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.29.1...v0.30.0) (2025-04-22)
640
930
 
641
931
  ### Features
642
932
 
933
+ - new `restrict-dependency-ranges` rule ([#998](https://github.com/michaelfaith/eslint-plugin-package-json/issues/998)) ([f2d1070](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f2d1070433a488a8bd34ad2a40a3337b218bc358)), closes [#959](https://github.com/michaelfaith/eslint-plugin-package-json/issues/959) [#959](https://github.com/michaelfaith/eslint-plugin-package-json/issues/959)
643
934
  - new `restrict-dependency-ranges` rule ([#998](https://github.com/michaelfaith/eslint-plugin-package-json/issues/998)) ([f2d1070](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f2d1070433a488a8bd34ad2a40a3337b218bc358)), closes [#959](https://github.com/michaelfaith/eslint-plugin-package-json/issues/959) [#959](https://github.com/michaelfaith/eslint-plugin-package-json/issues/959)
644
935
 
936
+ ## [0.29.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.29.0...v0.29.1) (2025-04-09)
645
937
  ## [0.29.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.29.0...v0.29.1) (2025-04-09)
646
938
 
647
939
  ### Bug Fixes
648
940
 
941
+ - bump to create-typescript-app@2 with transitions action ([#993](https://github.com/michaelfaith/eslint-plugin-package-json/issues/993)) ([5b5c298](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5b5c2989dda36b43e85a14056120e863ef4fec3f)), closes [#969](https://github.com/michaelfaith/eslint-plugin-package-json/issues/969)
649
942
  - bump to create-typescript-app@2 with transitions action ([#993](https://github.com/michaelfaith/eslint-plugin-package-json/issues/993)) ([5b5c298](https://github.com/michaelfaith/eslint-plugin-package-json/commit/5b5c2989dda36b43e85a14056120e863ef4fec3f)), closes [#969](https://github.com/michaelfaith/eslint-plugin-package-json/issues/969)
650
943
 
944
+ ## [0.29.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.28.0...v0.29.0) (2025-03-17)
651
945
  ## [0.29.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.28.0...v0.29.0) (2025-03-17)
652
946
 
653
947
  ### Features
654
948
 
949
+ - **require-types:** add new rule ([#958](https://github.com/michaelfaith/eslint-plugin-package-json/issues/958)) ([63305af](https://github.com/michaelfaith/eslint-plugin-package-json/commit/63305afcac6fa57030b13de2ae9f26c108c979c0)), closes [#816](https://github.com/michaelfaith/eslint-plugin-package-json/issues/816) [#816](https://github.com/michaelfaith/eslint-plugin-package-json/issues/816)
655
950
  - **require-types:** add new rule ([#958](https://github.com/michaelfaith/eslint-plugin-package-json/issues/958)) ([63305af](https://github.com/michaelfaith/eslint-plugin-package-json/commit/63305afcac6fa57030b13de2ae9f26c108c979c0)), closes [#816](https://github.com/michaelfaith/eslint-plugin-package-json/issues/816) [#816](https://github.com/michaelfaith/eslint-plugin-package-json/issues/816)
656
951
 
952
+ ## [0.28.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.27.0...v0.28.0) (2025-03-17)
657
953
  ## [0.28.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.27.0...v0.28.0) (2025-03-17)
658
954
 
659
955
  ### Features
660
956
 
957
+ - **require-engines:** add new rule ([#954](https://github.com/michaelfaith/eslint-plugin-package-json/issues/954)) ([9093b28](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9093b280c77770512ac88631e4903e17d5275bec)), closes [#868](https://github.com/michaelfaith/eslint-plugin-package-json/issues/868)
661
958
  - **require-engines:** add new rule ([#954](https://github.com/michaelfaith/eslint-plugin-package-json/issues/954)) ([9093b28](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9093b280c77770512ac88631e4903e17d5275bec)), closes [#868](https://github.com/michaelfaith/eslint-plugin-package-json/issues/868)
662
959
 
960
+ ## [0.27.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.4...v0.27.0) (2025-03-17)
663
961
  ## [0.27.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.4...v0.27.0) (2025-03-17)
664
962
 
665
963
  ### Features
666
964
 
965
+ - empty feature commit to trigger new minor version ([b6b58d4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b6b58d46da07dd5f1a51e5b2c71a10803863b113))
667
966
  - empty feature commit to trigger new minor version ([b6b58d4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b6b58d46da07dd5f1a51e5b2c71a10803863b113))
668
967
 
968
+ ## [0.26.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.3...v0.26.4) (2025-03-17)
669
969
  ## [0.26.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.3...v0.26.4) (2025-03-17)
670
970
 
971
+ ## [0.26.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.2...v0.26.3) (2025-03-07)
671
972
  ## [0.26.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.2...v0.26.3) (2025-03-07)
672
973
 
673
974
  ### Bug Fixes
674
975
 
976
+ - **deps:** update dependency sort-package-json to v3 ([#939](https://github.com/michaelfaith/eslint-plugin-package-json/issues/939)) ([a61e725](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a61e7255f5f0fe70b2c190b38f76d684a9d3e37c))
675
977
  - **deps:** update dependency sort-package-json to v3 ([#939](https://github.com/michaelfaith/eslint-plugin-package-json/issues/939)) ([a61e725](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a61e7255f5f0fe70b2c190b38f76d684a9d3e37c))
676
978
 
979
+ ## [0.26.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.1...v0.26.2) (2025-03-04)
677
980
  ## [0.26.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.1...v0.26.2) (2025-03-04)
678
981
 
679
982
  ### Bug Fixes
680
983
 
984
+ - **deps:** update dependency sort-package-json to v2.15.1 ([#933](https://github.com/michaelfaith/eslint-plugin-package-json/issues/933)) ([f3a8169](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f3a8169113d25f3be69be2a6a027bd74ea3c8022))
681
985
  - **deps:** update dependency sort-package-json to v2.15.1 ([#933](https://github.com/michaelfaith/eslint-plugin-package-json/issues/933)) ([f3a8169](https://github.com/michaelfaith/eslint-plugin-package-json/commit/f3a8169113d25f3be69be2a6a027bd74ea3c8022))
682
986
 
987
+ ## [0.26.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.0...v0.26.1) (2025-03-02)
683
988
  ## [0.26.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.0...v0.26.1) (2025-03-02)
684
989
 
685
990
  ### Bug Fixes
686
991
 
992
+ - **deps:** update dependency sort-package-json to v2.15.0 ([#925](https://github.com/michaelfaith/eslint-plugin-package-json/issues/925)) ([3ce4286](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3ce4286442f45c74d09dcc60e040bafb879a75f2))
687
993
  - **deps:** update dependency sort-package-json to v2.15.0 ([#925](https://github.com/michaelfaith/eslint-plugin-package-json/issues/925)) ([3ce4286](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3ce4286442f45c74d09dcc60e040bafb879a75f2))
688
994
 
995
+ ## [0.26.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.25.0...v0.26.0) (2025-02-10)
689
996
  ## [0.26.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.25.0...v0.26.0) (2025-02-10)
690
997
 
691
998
  ### Features
692
999
 
1000
+ - **require-files:** add require-files rule ([#887](https://github.com/michaelfaith/eslint-plugin-package-json/issues/887)) ([4de33de](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4de33de2715579c0d217609cd576d1b3b843d457)), closes [#803](https://github.com/michaelfaith/eslint-plugin-package-json/issues/803)
693
1001
  - **require-files:** add require-files rule ([#887](https://github.com/michaelfaith/eslint-plugin-package-json/issues/887)) ([4de33de](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4de33de2715579c0d217609cd576d1b3b843d457)), closes [#803](https://github.com/michaelfaith/eslint-plugin-package-json/issues/803)
694
1002
 
1003
+ ## [0.25.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.24.0...v0.25.0) (2025-02-09)
695
1004
  ## [0.25.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.24.0...v0.25.0) (2025-02-09)
696
1005
 
697
1006
  ### Features
698
1007
 
1008
+ - **require-keywords:** add require-keywords rule ([#884](https://github.com/michaelfaith/eslint-plugin-package-json/issues/884)) ([99237f0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/99237f0dc5902bda417345cba681f23a328c5bbe)), closes [#866](https://github.com/michaelfaith/eslint-plugin-package-json/issues/866)
699
1009
  - **require-keywords:** add require-keywords rule ([#884](https://github.com/michaelfaith/eslint-plugin-package-json/issues/884)) ([99237f0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/99237f0dc5902bda417345cba681f23a328c5bbe)), closes [#866](https://github.com/michaelfaith/eslint-plugin-package-json/issues/866)
700
1010
 
1011
+ ## [0.24.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.23.1...v0.24.0) (2025-02-08)
701
1012
  ## [0.24.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.23.1...v0.24.0) (2025-02-08)
702
1013
 
703
1014
  ### Features
704
1015
 
1016
+ - **require-name:** add require-name rule ([#883](https://github.com/michaelfaith/eslint-plugin-package-json/issues/883)) ([3a82dd8](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3a82dd82d14b6bc1aaa72cfbc2e68aeb282ce18a)), closes [#808](https://github.com/michaelfaith/eslint-plugin-package-json/issues/808)
705
1017
  - **require-name:** add require-name rule ([#883](https://github.com/michaelfaith/eslint-plugin-package-json/issues/883)) ([3a82dd8](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3a82dd82d14b6bc1aaa72cfbc2e68aeb282ce18a)), closes [#808](https://github.com/michaelfaith/eslint-plugin-package-json/issues/808)
706
1018
 
1019
+ ## [0.23.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.23.0...v0.23.1) (2025-02-07)
707
1020
  ## [0.23.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.23.0...v0.23.1) (2025-02-07)
708
1021
 
709
1022
  ### Bug Fixes
710
1023
 
1024
+ - **deps:** update dependency semver to v7.7.1 ([#880](https://github.com/michaelfaith/eslint-plugin-package-json/issues/880)) ([152cfc1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/152cfc10e9cc9e34803e609ec3b12855395093c6))
711
1025
  - **deps:** update dependency semver to v7.7.1 ([#880](https://github.com/michaelfaith/eslint-plugin-package-json/issues/880)) ([152cfc1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/152cfc10e9cc9e34803e609ec3b12855395093c6))
712
1026
 
1027
+ ## [0.23.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.22.0...v0.23.0) (2025-02-04)
713
1028
  ## [0.23.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.22.0...v0.23.0) (2025-02-04)
714
1029
 
715
1030
  ### Features
716
1031
 
1032
+ - **require-version:** add require-version rule ([#861](https://github.com/michaelfaith/eslint-plugin-package-json/issues/861)) ([848377d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/848377dea379ed23d22d8fc5acd2e84c472ebb1b))
717
1033
  - **require-version:** add require-version rule ([#861](https://github.com/michaelfaith/eslint-plugin-package-json/issues/861)) ([848377d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/848377dea379ed23d22d8fc5acd2e84c472ebb1b))
718
1034
 
1035
+ ## [0.22.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.21.1...v0.22.0) (2025-02-03)
719
1036
  ## [0.22.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.21.1...v0.22.0) (2025-02-03)
720
1037
 
721
1038
  ### Features
722
1039
 
1040
+ - **require-author:** add new `require-author` rule ([#851](https://github.com/michaelfaith/eslint-plugin-package-json/issues/851)) ([cde68da](https://github.com/michaelfaith/eslint-plugin-package-json/commit/cde68da27bf87d711a8fb6f90df9f99f7bdb1512)), closes [#795](https://github.com/michaelfaith/eslint-plugin-package-json/issues/795)
723
1041
  - **require-author:** add new `require-author` rule ([#851](https://github.com/michaelfaith/eslint-plugin-package-json/issues/851)) ([cde68da](https://github.com/michaelfaith/eslint-plugin-package-json/commit/cde68da27bf87d711a8fb6f90df9f99f7bdb1512)), closes [#795](https://github.com/michaelfaith/eslint-plugin-package-json/issues/795)
724
1042
 
1043
+ ## [0.21.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.21.0...v0.21.1) (2025-01-24)
725
1044
  ## [0.21.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.21.0...v0.21.1) (2025-01-24)
726
1045
 
727
1046
  ### Bug Fixes
728
1047
 
1048
+ - **no-redundant-files:** detect variations of README.md as redundant ([#765](https://github.com/michaelfaith/eslint-plugin-package-json/issues/765)) ([7453095](https://github.com/michaelfaith/eslint-plugin-package-json/commit/745309536c3d2c175591582147028754f9287b1d)), closes [#763](https://github.com/michaelfaith/eslint-plugin-package-json/issues/763) [#763](https://github.com/michaelfaith/eslint-plugin-package-json/issues/763)
729
1049
  - **no-redundant-files:** detect variations of README.md as redundant ([#765](https://github.com/michaelfaith/eslint-plugin-package-json/issues/765)) ([7453095](https://github.com/michaelfaith/eslint-plugin-package-json/commit/745309536c3d2c175591582147028754f9287b1d)), closes [#763](https://github.com/michaelfaith/eslint-plugin-package-json/issues/763) [#763](https://github.com/michaelfaith/eslint-plugin-package-json/issues/763)
730
1050
 
1051
+ ## [0.21.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.20.1...v0.21.0) (2025-01-23)
731
1052
  ## [0.21.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.20.1...v0.21.0) (2025-01-23)
732
1053
 
733
1054
  ### Features
734
1055
 
1056
+ - add no-empty-fields rule ([#741](https://github.com/michaelfaith/eslint-plugin-package-json/issues/741)) ([e57765b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e57765b3de7c4703f1c697d54758e5789494281a)), closes [#683](https://github.com/michaelfaith/eslint-plugin-package-json/issues/683)
735
1057
  - add no-empty-fields rule ([#741](https://github.com/michaelfaith/eslint-plugin-package-json/issues/741)) ([e57765b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/e57765b3de7c4703f1c697d54758e5789494281a)), closes [#683](https://github.com/michaelfaith/eslint-plugin-package-json/issues/683)
736
1058
 
1059
+ ## [0.20.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.20.0...v0.20.1) (2025-01-19)
737
1060
  ## [0.20.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.20.0...v0.20.1) (2025-01-19)
738
1061
 
739
1062
  ### Bug Fixes
740
1063
 
1064
+ - bump package-json-validator dep to 0.8 ([#735](https://github.com/michaelfaith/eslint-plugin-package-json/issues/735)) ([29a9722](https://github.com/michaelfaith/eslint-plugin-package-json/commit/29a9722c15d39984ea99c2be346e20c2f4f9c76e)), closes [#734](https://github.com/michaelfaith/eslint-plugin-package-json/issues/734)
741
1065
  - bump package-json-validator dep to 0.8 ([#735](https://github.com/michaelfaith/eslint-plugin-package-json/issues/735)) ([29a9722](https://github.com/michaelfaith/eslint-plugin-package-json/commit/29a9722c15d39984ea99c2be346e20c2f4f9c76e)), closes [#734](https://github.com/michaelfaith/eslint-plugin-package-json/issues/734)
742
1066
 
1067
+ ## [0.20.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.19.0...v0.20.0) (2025-01-17)
743
1068
  ## [0.20.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.19.0...v0.20.0) (2025-01-17)
744
1069
 
745
1070
  ### Features
746
1071
 
1072
+ - **no-redundant-files:** add new rule ([#721](https://github.com/michaelfaith/eslint-plugin-package-json/issues/721)) ([1167f5e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1167f5ea698bf09e2dfe77147464cc3a3d5ee6e7)), closes [#686](https://github.com/michaelfaith/eslint-plugin-package-json/issues/686) [#686](https://github.com/michaelfaith/eslint-plugin-package-json/issues/686)
747
1073
  - **no-redundant-files:** add new rule ([#721](https://github.com/michaelfaith/eslint-plugin-package-json/issues/721)) ([1167f5e](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1167f5ea698bf09e2dfe77147464cc3a3d5ee6e7)), closes [#686](https://github.com/michaelfaith/eslint-plugin-package-json/issues/686) [#686](https://github.com/michaelfaith/eslint-plugin-package-json/issues/686)
748
1074
 
1075
+ ## [0.19.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.18.0...v0.19.0) (2024-12-31)
749
1076
  ## [0.19.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.18.0...v0.19.0) (2024-12-31)
750
1077
 
751
1078
  ### Features
752
1079
 
1080
+ - **valid-package-definition:** rename rule from valid-package-def ([#711](https://github.com/michaelfaith/eslint-plugin-package-json/issues/711)) ([4f3907b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4f3907b83ce1ddadcfbb572e70559e22b9c4a917)), closes [#132](https://github.com/michaelfaith/eslint-plugin-package-json/issues/132) [#132](https://github.com/michaelfaith/eslint-plugin-package-json/issues/132)
753
1081
  - **valid-package-definition:** rename rule from valid-package-def ([#711](https://github.com/michaelfaith/eslint-plugin-package-json/issues/711)) ([4f3907b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4f3907b83ce1ddadcfbb572e70559e22b9c4a917)), closes [#132](https://github.com/michaelfaith/eslint-plugin-package-json/issues/132) [#132](https://github.com/michaelfaith/eslint-plugin-package-json/issues/132)
754
1082
 
1083
+ ## [0.18.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.17.0...v0.18.0) (2024-12-05)
755
1084
  ## [0.18.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.17.0...v0.18.0) (2024-12-05)
756
1085
 
757
1086
  ### Features
758
1087
 
1088
+ - update sort-package-json to 12 ([#680](https://github.com/michaelfaith/eslint-plugin-package-json/issues/680)) ([566e85b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/566e85b27ecff4997cd08e1fa00611b1b0e61db0)), closes [#679](https://github.com/michaelfaith/eslint-plugin-package-json/issues/679)
759
1089
  - update sort-package-json to 12 ([#680](https://github.com/michaelfaith/eslint-plugin-package-json/issues/680)) ([566e85b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/566e85b27ecff4997cd08e1fa00611b1b0e61db0)), closes [#679](https://github.com/michaelfaith/eslint-plugin-package-json/issues/679)
760
1090
 
1091
+ ## [0.17.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.16.0...v0.17.0) (2024-11-30)
761
1092
  ## [0.17.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.16.0...v0.17.0) (2024-11-30)
762
1093
 
763
1094
  ### Features
764
1095
 
1096
+ - sort alphabetically with co-located hooks for `scripts` ([#632](https://github.com/michaelfaith/eslint-plugin-package-json/issues/632)) ([4ccae4f](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4ccae4f58e1695b792dd3d0daf46cedc134d9541)), closes [#499](https://github.com/michaelfaith/eslint-plugin-package-json/issues/499) [#499](https://github.com/michaelfaith/eslint-plugin-package-json/issues/499)
765
1097
  - sort alphabetically with co-located hooks for `scripts` ([#632](https://github.com/michaelfaith/eslint-plugin-package-json/issues/632)) ([4ccae4f](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4ccae4f58e1695b792dd3d0daf46cedc134d9541)), closes [#499](https://github.com/michaelfaith/eslint-plugin-package-json/issues/499) [#499](https://github.com/michaelfaith/eslint-plugin-package-json/issues/499)
766
1098
 
1099
+ ## [0.16.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.6...v0.16.0) (2024-11-30)
767
1100
  ## [0.16.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.6...v0.16.0) (2024-11-30)
768
1101
 
769
1102
  ### Features
770
1103
 
1104
+ - **sort-collections:** should sort `overrides` ([#668](https://github.com/michaelfaith/eslint-plugin-package-json/issues/668)) ([18129cd](https://github.com/michaelfaith/eslint-plugin-package-json/commit/18129cd5c4a0bf45709ea7fcb9fb316c2a639a71)), closes [#619](https://github.com/michaelfaith/eslint-plugin-package-json/issues/619)
771
1105
  - **sort-collections:** should sort `overrides` ([#668](https://github.com/michaelfaith/eslint-plugin-package-json/issues/668)) ([18129cd](https://github.com/michaelfaith/eslint-plugin-package-json/commit/18129cd5c4a0bf45709ea7fcb9fb316c2a639a71)), closes [#619](https://github.com/michaelfaith/eslint-plugin-package-json/issues/619)
772
1106
 
1107
+ ## [0.15.6](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.5...v0.15.6) (2024-11-09)
773
1108
  ## [0.15.6](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.5...v0.15.6) (2024-11-09)
774
1109
 
775
1110
  ### Bug Fixes
776
1111
 
1112
+ - add sorting exports field ([#615](https://github.com/michaelfaith/eslint-plugin-package-json/issues/615)) ([116c74b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/116c74be65089d7cfb39f3dae2fcae18fe19a263)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
777
1113
  - add sorting exports field ([#615](https://github.com/michaelfaith/eslint-plugin-package-json/issues/615)) ([116c74b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/116c74be65089d7cfb39f3dae2fcae18fe19a263)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
778
1114
 
1115
+ ## [0.15.5](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.4...v0.15.5) (2024-11-06)
779
1116
  ## [0.15.5](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.4...v0.15.5) (2024-11-06)
780
1117
 
781
1118
  ### Bug Fixes
782
1119
 
1120
+ - add plugin export ([#609](https://github.com/michaelfaith/eslint-plugin-package-json/issues/609)) ([a2c83b4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a2c83b42c231129efb97ec29a29f6ae361adcc26)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
783
1121
  - add plugin export ([#609](https://github.com/michaelfaith/eslint-plugin-package-json/issues/609)) ([a2c83b4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a2c83b42c231129efb97ec29a29f6ae361adcc26)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
784
1122
 
1123
+ ## [0.15.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.3...v0.15.4) (2024-10-18)
785
1124
  ## [0.15.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.3...v0.15.4) (2024-10-18)
786
1125
 
787
1126
  ### Bug Fixes
788
1127
 
1128
+ - update dependency package-json-validator to v0.7.0 ([#569](https://github.com/michaelfaith/eslint-plugin-package-json/issues/569)) ([9d44862](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9d44862f29cef1e6e8d71facf55ac5cf907d979e)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
789
1129
  - update dependency package-json-validator to v0.7.0 ([#569](https://github.com/michaelfaith/eslint-plugin-package-json/issues/569)) ([9d44862](https://github.com/michaelfaith/eslint-plugin-package-json/commit/9d44862f29cef1e6e8d71facf55ac5cf907d979e)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
790
1130
 
1131
+ ## [0.15.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.2...v0.15.3) (2024-09-12)
791
1132
  ## [0.15.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.2...v0.15.3) (2024-09-12)
792
1133
 
793
1134
  ### Bug Fixes
794
1135
 
1136
+ - **valid-repository-directory:** use repository root for more accurate linting ([#498](https://github.com/michaelfaith/eslint-plugin-package-json/issues/498)) ([d149400](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d1494001a7cbf3fa95041179004fa8ad03ef0d34)), closes [#252](https://github.com/michaelfaith/eslint-plugin-package-json/issues/252)
795
1137
  - **valid-repository-directory:** use repository root for more accurate linting ([#498](https://github.com/michaelfaith/eslint-plugin-package-json/issues/498)) ([d149400](https://github.com/michaelfaith/eslint-plugin-package-json/commit/d1494001a7cbf3fa95041179004fa8ad03ef0d34)), closes [#252](https://github.com/michaelfaith/eslint-plugin-package-json/issues/252)
796
1138
 
1139
+ ## [0.15.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.1...v0.15.2) (2024-07-10)
797
1140
  ## [0.15.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.1...v0.15.2) (2024-07-10)
798
1141
 
799
1142
  ### Bug Fixes
800
1143
 
1144
+ - skip check for name to match npm package when private is true ([#455](https://github.com/michaelfaith/eslint-plugin-package-json/issues/455)) ([cc10e05](https://github.com/michaelfaith/eslint-plugin-package-json/commit/cc10e052911688ca7cacb9761c2db7c24c826d3e)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
801
1145
  - skip check for name to match npm package when private is true ([#455](https://github.com/michaelfaith/eslint-plugin-package-json/issues/455)) ([cc10e05](https://github.com/michaelfaith/eslint-plugin-package-json/commit/cc10e052911688ca7cacb9761c2db7c24c826d3e)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
802
1146
 
1147
+ ## [0.15.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.0...v0.15.1) (2024-07-10)
803
1148
  ## [0.15.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.0...v0.15.1) (2024-07-10)
804
1149
 
805
1150
  ### Bug Fixes
806
1151
 
1152
+ - update package-json-validator ([#456](https://github.com/michaelfaith/eslint-plugin-package-json/issues/456)) ([1a8bda4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1a8bda47891c14c7434ad6242f33f9ad7c2e940f)), closes [#250](https://github.com/michaelfaith/eslint-plugin-package-json/issues/250)
807
1153
  - update package-json-validator ([#456](https://github.com/michaelfaith/eslint-plugin-package-json/issues/456)) ([1a8bda4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/1a8bda47891c14c7434ad6242f33f9ad7c2e940f)), closes [#250](https://github.com/michaelfaith/eslint-plugin-package-json/issues/250)
808
1154
 
1155
+ ## [0.15.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.14.0...v0.15.0) (2024-06-17)
809
1156
  ## [0.15.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.14.0...v0.15.0) (2024-06-17)
810
1157
 
811
1158
  ### Features
812
1159
 
1160
+ - **order-properties:** more precise error reporting ([#328](https://github.com/michaelfaith/eslint-plugin-package-json/issues/328)) ([4a3fbc8](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4a3fbc8046d4286ca950b1de9000f12bdadfa961)), closes [#320](https://github.com/michaelfaith/eslint-plugin-package-json/issues/320)
813
1161
  - **order-properties:** more precise error reporting ([#328](https://github.com/michaelfaith/eslint-plugin-package-json/issues/328)) ([4a3fbc8](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4a3fbc8046d4286ca950b1de9000f12bdadfa961)), closes [#320](https://github.com/michaelfaith/eslint-plugin-package-json/issues/320)
814
1162
 
1163
+ ## [0.14.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.13.1...v0.14.0) (2024-05-31)
815
1164
  ## [0.14.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.13.1...v0.14.0) (2024-05-31)
816
1165
 
817
1166
  ### Features
818
1167
 
1168
+ - add name field to recommended config ([#329](https://github.com/michaelfaith/eslint-plugin-package-json/issues/329)) ([b7a1a37](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b7a1a37afb35c8040fa77abaaeb669d3935e5e14)), closes [#308](https://github.com/michaelfaith/eslint-plugin-package-json/issues/308)
819
1169
  - add name field to recommended config ([#329](https://github.com/michaelfaith/eslint-plugin-package-json/issues/329)) ([b7a1a37](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b7a1a37afb35c8040fa77abaaeb669d3935e5e14)), closes [#308](https://github.com/michaelfaith/eslint-plugin-package-json/issues/308)
820
1170
 
1171
+ ## [0.13.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.13.0...v0.13.1) (2024-04-29)
821
1172
  ## [0.13.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.13.0...v0.13.1) (2024-04-29)
822
1173
 
823
1174
  ### Bug Fixes
824
1175
 
1176
+ - rule order-properties not work ([#315](https://github.com/michaelfaith/eslint-plugin-package-json/issues/315)) ([3a477f5](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3a477f5f9e6223bff49d0a3b3cb33633bed7b76e)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
825
1177
  - rule order-properties not work ([#315](https://github.com/michaelfaith/eslint-plugin-package-json/issues/315)) ([3a477f5](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3a477f5f9e6223bff49d0a3b3cb33633bed7b76e)), closes [#000](https://github.com/michaelfaith/eslint-plugin-package-json/issues/000)
826
1178
 
1179
+ ## [0.13.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.12.1...v0.13.0) (2024-04-29)
827
1180
  ## [0.13.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.12.1...v0.13.0) (2024-04-29)
828
1181
 
829
1182
  ### Bug Fixes
830
1183
 
1184
+ - correct suggestion status ([#299](https://github.com/michaelfaith/eslint-plugin-package-json/issues/299)) ([146e25d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/146e25dc1f837eb3cd64d4862bf5e035dbb250e2)), closes [#255](https://github.com/michaelfaith/eslint-plugin-package-json/issues/255)
831
1185
  - correct suggestion status ([#299](https://github.com/michaelfaith/eslint-plugin-package-json/issues/299)) ([146e25d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/146e25dc1f837eb3cd64d4862bf5e035dbb250e2)), closes [#255](https://github.com/michaelfaith/eslint-plugin-package-json/issues/255)
832
1186
 
833
1187
  ### Features
834
1188
 
1189
+ - sort-order rule shouldn't change sub-keys, better auto-fix ([#312](https://github.com/michaelfaith/eslint-plugin-package-json/issues/312)) ([a894550](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a89455019be1a41309c7b3cab0a9acefbd7abeb2)), closes [#80](https://github.com/michaelfaith/eslint-plugin-package-json/issues/80)
835
1190
  - sort-order rule shouldn't change sub-keys, better auto-fix ([#312](https://github.com/michaelfaith/eslint-plugin-package-json/issues/312)) ([a894550](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a89455019be1a41309c7b3cab0a9acefbd7abeb2)), closes [#80](https://github.com/michaelfaith/eslint-plugin-package-json/issues/80)
836
1191
 
1192
+ ## [0.12.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.12.0...v0.12.1) (2024-03-28)
837
1193
  ## [0.12.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.12.0...v0.12.1) (2024-03-28)
838
1194
 
839
1195
  ### Bug Fixes
840
1196
 
1197
+ - **valid-package-def:** ignore pnpm workspace protocol ([#258](https://github.com/michaelfaith/eslint-plugin-package-json/issues/258)) ([4b061e6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4b061e6540fb914d004337bb89a90fedfb94b0f7)), closes [#251](https://github.com/michaelfaith/eslint-plugin-package-json/issues/251)
841
1198
  - **valid-package-def:** ignore pnpm workspace protocol ([#258](https://github.com/michaelfaith/eslint-plugin-package-json/issues/258)) ([4b061e6](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4b061e6540fb914d004337bb89a90fedfb94b0f7)), closes [#251](https://github.com/michaelfaith/eslint-plugin-package-json/issues/251)
842
1199
 
1200
+ ## [0.12.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.11.0...v0.12.0) (2024-03-25)
843
1201
  ## [0.12.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.11.0...v0.12.0) (2024-03-25)
844
1202
 
845
1203
  ### Features
846
1204
 
1205
+ - switch prefer-repository-shorthand to repository-shorthand ([#248](https://github.com/michaelfaith/eslint-plugin-package-json/issues/248)) ([580edb3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/580edb3957cd4d8229bf73c10b1f7f65f79dc53f)), closes [#223](https://github.com/michaelfaith/eslint-plugin-package-json/issues/223)
847
1206
  - switch prefer-repository-shorthand to repository-shorthand ([#248](https://github.com/michaelfaith/eslint-plugin-package-json/issues/248)) ([580edb3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/580edb3957cd4d8229bf73c10b1f7f65f79dc53f)), closes [#223](https://github.com/michaelfaith/eslint-plugin-package-json/issues/223)
848
1207
 
1208
+ ## [0.11.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.4...v0.11.0) (2024-03-24)
849
1209
  ## [0.11.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.4...v0.11.0) (2024-03-24)
850
1210
 
851
1211
  ### Features
852
1212
 
1213
+ - support flat config ([#161](https://github.com/michaelfaith/eslint-plugin-package-json/issues/161)) ([bf31a6c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/bf31a6cb491afe0d43b29bc830d3b4c24bd1cf6d)), closes [#91](https://github.com/michaelfaith/eslint-plugin-package-json/issues/91)
853
1214
  - support flat config ([#161](https://github.com/michaelfaith/eslint-plugin-package-json/issues/161)) ([bf31a6c](https://github.com/michaelfaith/eslint-plugin-package-json/commit/bf31a6cb491afe0d43b29bc830d3b4c24bd1cf6d)), closes [#91](https://github.com/michaelfaith/eslint-plugin-package-json/issues/91)
854
1215
 
1216
+ ## [0.10.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.3...v0.10.4) (2024-02-20)
855
1217
  ## [0.10.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.3...v0.10.4) (2024-02-20)
856
1218
 
857
1219
  ### Bug Fixes
858
1220
 
1221
+ - can not import in ESM package ([#159](https://github.com/michaelfaith/eslint-plugin-package-json/issues/159)) ([2ce1881](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2ce188156d0b91fdcb9606e069a45148c673e6c0)), closes [#152](https://github.com/michaelfaith/eslint-plugin-package-json/issues/152) [#157](https://github.com/michaelfaith/eslint-plugin-package-json/issues/157)
859
1222
  - can not import in ESM package ([#159](https://github.com/michaelfaith/eslint-plugin-package-json/issues/159)) ([2ce1881](https://github.com/michaelfaith/eslint-plugin-package-json/commit/2ce188156d0b91fdcb9606e069a45148c673e6c0)), closes [#152](https://github.com/michaelfaith/eslint-plugin-package-json/issues/152) [#157](https://github.com/michaelfaith/eslint-plugin-package-json/issues/157)
860
1223
 
1224
+ ## [0.10.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.2...v0.10.3) (2024-02-20)
861
1225
  ## [0.10.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.2...v0.10.3) (2024-02-20)
862
1226
 
863
1227
  ### Bug Fixes
864
1228
 
1229
+ - ignore npm alias version range error ([#156](https://github.com/michaelfaith/eslint-plugin-package-json/issues/156)) ([4436638](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4436638aba4eb727d4d09cc3e33bca04faf18620)), closes [#153](https://github.com/michaelfaith/eslint-plugin-package-json/issues/153)
865
1230
  - ignore npm alias version range error ([#156](https://github.com/michaelfaith/eslint-plugin-package-json/issues/156)) ([4436638](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4436638aba4eb727d4d09cc3e33bca04faf18620)), closes [#153](https://github.com/michaelfaith/eslint-plugin-package-json/issues/153)
866
1231
 
1232
+ ## [0.10.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.1...v0.10.2) (2024-02-01)
867
1233
  ## [0.10.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.1...v0.10.2) (2024-02-01)
868
1234
 
869
1235
  ### Bug Fixes
870
1236
 
1237
+ - support Windows paths, again ([#144](https://github.com/michaelfaith/eslint-plugin-package-json/issues/144)) ([27243fa](https://github.com/michaelfaith/eslint-plugin-package-json/commit/27243fa5e6d0d59362e19f49135f69300949d282)), closes [#142](https://github.com/michaelfaith/eslint-plugin-package-json/issues/142) [#30](https://github.com/michaelfaith/eslint-plugin-package-json/issues/30)
871
1238
  - support Windows paths, again ([#144](https://github.com/michaelfaith/eslint-plugin-package-json/issues/144)) ([27243fa](https://github.com/michaelfaith/eslint-plugin-package-json/commit/27243fa5e6d0d59362e19f49135f69300949d282)), closes [#142](https://github.com/michaelfaith/eslint-plugin-package-json/issues/142) [#30](https://github.com/michaelfaith/eslint-plugin-package-json/issues/30)
872
1239
 
1240
+ ## [0.10.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.0...v0.10.1) (2024-01-25)
873
1241
  ## [0.10.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.0...v0.10.1) (2024-01-25)
874
1242
 
875
1243
  ### Bug Fixes
876
1244
 
1245
+ - incorrect example in 'sort-collections' ([#137](https://github.com/michaelfaith/eslint-plugin-package-json/issues/137)) ([88a94a0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/88a94a06e0db5624f83fab22144d7096a0cd1a3a)), closes [#136](https://github.com/michaelfaith/eslint-plugin-package-json/issues/136)
877
1246
  - incorrect example in 'sort-collections' ([#137](https://github.com/michaelfaith/eslint-plugin-package-json/issues/137)) ([88a94a0](https://github.com/michaelfaith/eslint-plugin-package-json/commit/88a94a06e0db5624f83fab22144d7096a0cd1a3a)), closes [#136](https://github.com/michaelfaith/eslint-plugin-package-json/issues/136)
878
1247
 
1248
+ ## [0.10.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.9.0...v0.10.0) (2024-01-20)
879
1249
  ## [0.10.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.9.0...v0.10.0) (2024-01-20)
880
1250
 
881
1251
  ### Features
882
1252
 
1253
+ - added valid-version rule ([#135](https://github.com/michaelfaith/eslint-plugin-package-json/issues/135)) ([6e8b6fb](https://github.com/michaelfaith/eslint-plugin-package-json/commit/6e8b6fbe777d03731f5552c980eaad4e5f8d4dad)), closes [#130](https://github.com/michaelfaith/eslint-plugin-package-json/issues/130)
883
1254
  - added valid-version rule ([#135](https://github.com/michaelfaith/eslint-plugin-package-json/issues/135)) ([6e8b6fb](https://github.com/michaelfaith/eslint-plugin-package-json/commit/6e8b6fbe777d03731f5552c980eaad4e5f8d4dad)), closes [#130](https://github.com/michaelfaith/eslint-plugin-package-json/issues/130)
884
1255
 
1256
+ ## [0.9.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.8.1...v0.9.0) (2024-01-20)
885
1257
  ## [0.9.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.8.1...v0.9.0) (2024-01-20)
886
1258
 
887
1259
  ### Features
888
1260
 
1261
+ - added valid-name rule ([#134](https://github.com/michaelfaith/eslint-plugin-package-json/issues/134)) ([ecf9266](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ecf926602f760c3edf1a832615624210a90ed3ed)), closes [#131](https://github.com/michaelfaith/eslint-plugin-package-json/issues/131)
889
1262
  - added valid-name rule ([#134](https://github.com/michaelfaith/eslint-plugin-package-json/issues/134)) ([ecf9266](https://github.com/michaelfaith/eslint-plugin-package-json/commit/ecf926602f760c3edf1a832615624210a90ed3ed)), closes [#131](https://github.com/michaelfaith/eslint-plugin-package-json/issues/131)
890
1263
 
1264
+ ## [0.8.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.8.0...v0.8.1) (2024-01-20)
891
1265
  ## [0.8.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.8.0...v0.8.1) (2024-01-20)
892
1266
 
893
1267
  ### Bug Fixes
894
1268
 
1269
+ - correct order-properties key checks ([#129](https://github.com/michaelfaith/eslint-plugin-package-json/issues/129)) ([a635c27](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a635c279552beea4b0e5a611321d9f92083416e4)), closes [#127](https://github.com/michaelfaith/eslint-plugin-package-json/issues/127) [#128](https://github.com/michaelfaith/eslint-plugin-package-json/issues/128) [#127](https://github.com/michaelfaith/eslint-plugin-package-json/issues/127) [#128](https://github.com/michaelfaith/eslint-plugin-package-json/issues/128)
895
1270
  - correct order-properties key checks ([#129](https://github.com/michaelfaith/eslint-plugin-package-json/issues/129)) ([a635c27](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a635c279552beea4b0e5a611321d9f92083416e4)), closes [#127](https://github.com/michaelfaith/eslint-plugin-package-json/issues/127) [#128](https://github.com/michaelfaith/eslint-plugin-package-json/issues/128) [#127](https://github.com/michaelfaith/eslint-plugin-package-json/issues/127) [#128](https://github.com/michaelfaith/eslint-plugin-package-json/issues/128)
896
1271
 
1272
+ ## [0.8.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.7.0...v0.8.0) (2024-01-20)
897
1273
  ## [0.8.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.7.0...v0.8.0) (2024-01-20)
898
1274
 
899
1275
  ### Features
900
1276
 
1277
+ - added unique-dependencies rule ([#126](https://github.com/michaelfaith/eslint-plugin-package-json/issues/126)) ([a9417d1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a9417d1685808dd8e4c27eff9e3b9c7399be6e1b)), closes [#50](https://github.com/michaelfaith/eslint-plugin-package-json/issues/50)
901
1278
  - added unique-dependencies rule ([#126](https://github.com/michaelfaith/eslint-plugin-package-json/issues/126)) ([a9417d1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/a9417d1685808dd8e4c27eff9e3b9c7399be6e1b)), closes [#50](https://github.com/michaelfaith/eslint-plugin-package-json/issues/50)
902
1279
 
1280
+ ## [0.7.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.6.0...v0.7.0) (2024-01-20)
903
1281
  ## [0.7.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.6.0...v0.7.0) (2024-01-20)
904
1282
 
905
1283
  ### Features
906
1284
 
1285
+ - added valid-repository-directory rule ([#123](https://github.com/michaelfaith/eslint-plugin-package-json/issues/123)) ([84035c3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/84035c3f2bac376567eef767ba21f354a0d93f54)), closes [#53](https://github.com/michaelfaith/eslint-plugin-package-json/issues/53)
907
1286
  - added valid-repository-directory rule ([#123](https://github.com/michaelfaith/eslint-plugin-package-json/issues/123)) ([84035c3](https://github.com/michaelfaith/eslint-plugin-package-json/commit/84035c3f2bac376567eef767ba21f354a0d93f54)), closes [#53](https://github.com/michaelfaith/eslint-plugin-package-json/issues/53)
908
1287
 
1288
+ ## [0.6.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.5.0...v0.6.0) (2024-01-20)
909
1289
  ## [0.6.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.5.0...v0.6.0) (2024-01-20)
910
1290
 
911
1291
  ### Features
912
1292
 
1293
+ - change order-properties order default to sort-package-json ([#122](https://github.com/michaelfaith/eslint-plugin-package-json/issues/122)) ([246261d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/246261dff5838c42add53fd45c03a5eadc495d83)), closes [#58](https://github.com/michaelfaith/eslint-plugin-package-json/issues/58)
913
1294
  - change order-properties order default to sort-package-json ([#122](https://github.com/michaelfaith/eslint-plugin-package-json/issues/122)) ([246261d](https://github.com/michaelfaith/eslint-plugin-package-json/commit/246261dff5838c42add53fd45c03a5eadc495d83)), closes [#58](https://github.com/michaelfaith/eslint-plugin-package-json/issues/58)
914
1295
 
1296
+ ## [0.5.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.4.0...v0.5.0) (2024-01-20)
915
1297
  ## [0.5.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.4.0...v0.5.0) (2024-01-20)
916
1298
 
917
1299
  ### Features
918
1300
 
1301
+ - add prefer-repository-shorthand rule ([#70](https://github.com/michaelfaith/eslint-plugin-package-json/issues/70)) ([0c7fb19](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0c7fb199cdf0ba001bd996f6da2c4ba8cbbc7d0f)), closes [#71](https://github.com/michaelfaith/eslint-plugin-package-json/issues/71)
919
1302
  - add prefer-repository-shorthand rule ([#70](https://github.com/michaelfaith/eslint-plugin-package-json/issues/70)) ([0c7fb19](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0c7fb199cdf0ba001bd996f6da2c4ba8cbbc7d0f)), closes [#71](https://github.com/michaelfaith/eslint-plugin-package-json/issues/71)
920
1303
 
1304
+ ## [0.4.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.1.3...v0.4.0) (2024-01-20)
921
1305
  ## [0.4.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.1.3...v0.4.0) (2024-01-20)
922
1306
 
923
1307
  ### Bug Fixes
924
1308
 
1309
+ - detect package.json in Windows ([eb90172](https://github.com/michaelfaith/eslint-plugin-package-json/commit/eb901727c12fdd4f7a5d734c9e98f3123059bee8))
1310
+ - Missing extension in valid-package-def link ([0cd9b6b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0cd9b6bd462b9b801cf69b1a09d8c23d4afcedf0))
1311
+ - recommended config ([#103](https://github.com/michaelfaith/eslint-plugin-package-json/issues/103)) ([77dc134](https://github.com/michaelfaith/eslint-plugin-package-json/commit/77dc1344ea7a34abcb6c0e87d61b65149b4fe2ca)), closes [#102](https://github.com/michaelfaith/eslint-plugin-package-json/issues/102)
1312
+ - typo ([#63](https://github.com/michaelfaith/eslint-plugin-package-json/issues/63)) ([3e6f6bc](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3e6f6bc40ed8a856199082429e66c77c099210f5))
925
1313
  - detect package.json in Windows ([eb90172](https://github.com/michaelfaith/eslint-plugin-package-json/commit/eb901727c12fdd4f7a5d734c9e98f3123059bee8))
926
1314
  - Missing extension in valid-package-def link ([0cd9b6b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0cd9b6bd462b9b801cf69b1a09d8c23d4afcedf0))
927
1315
  - recommended config ([#103](https://github.com/michaelfaith/eslint-plugin-package-json/issues/103)) ([77dc134](https://github.com/michaelfaith/eslint-plugin-package-json/commit/77dc1344ea7a34abcb6c0e87d61b65149b4fe2ca)), closes [#102](https://github.com/michaelfaith/eslint-plugin-package-json/issues/102)
@@ -930,3 +1318,4 @@ CI error.
930
1318
  ### Features
931
1319
 
932
1320
  - converted to TypeScript ([#59](https://github.com/michaelfaith/eslint-plugin-package-json/issues/59)) ([c328633](https://github.com/michaelfaith/eslint-plugin-package-json/commit/c3286338cb98a3d5570ff95424057317a2881fa1)), closes [#60](https://github.com/michaelfaith/eslint-plugin-package-json/issues/60) [#35](https://github.com/michaelfaith/eslint-plugin-package-json/issues/35)
1321
+ - converted to TypeScript ([#59](https://github.com/michaelfaith/eslint-plugin-package-json/issues/59)) ([c328633](https://github.com/michaelfaith/eslint-plugin-package-json/commit/c3286338cb98a3d5570ff95424057317a2881fa1)), closes [#60](https://github.com/michaelfaith/eslint-plugin-package-json/issues/60) [#35](https://github.com/michaelfaith/eslint-plugin-package-json/issues/35)