eslint-plugin-package-json 1.0.0-beta.1 → 1.0.0-beta.3

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 +403 -0
  2. package/README.md +28 -139
  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 +6 -7
  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 +22 -22
package/CHANGELOG.md CHANGED
@@ -1,5 +1,111 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.0-beta.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2026-04-05)
4
+
5
+
6
+ ### 🩹 Bug Fixes
7
+
8
+ * **no-empty-fields:** Allow `files` to be an empty list ([#1682](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1682)) ([4311f74](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4311f743a79b6fc792822680720106a2a84953d4))
9
+
10
+ ## [0.91.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.91.0...v0.91.1) (2026-03-27)
11
+
12
+
13
+ ### 🩹 Bug Fixes
14
+
15
+ * **no-empty-fields:** Allow `files` to be an empty list ([#1682](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1682)) ([4311f74](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4311f743a79b6fc792822680720106a2a84953d4))
16
+
17
+ ## [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)
18
+
19
+
20
+ ### ⚠ BREAKING CHANGES
21
+
22
+ * add `valid-devEngines` rule ([#1663](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1663))
23
+ * add `valid-funding` rule ([#1643](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1643))
24
+ * add `valid-bugs` rule ([#1644](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1644))
25
+ * add `valid-packageManager` rule ([#1640](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1640))
26
+
27
+ * merge `main` into `beta` ([4c41fc1](https://github.com/michaelfaith/eslint-plugin-package-json/commit/4c41fc192b4371c1000ad482f5f817cce3599666))
28
+
29
+
30
+ ### 🚀 Features
31
+
32
+ * 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))
33
+ * 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))
34
+ * 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))
35
+ * 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))
36
+ * 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))
37
+ * 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))
38
+ * 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))
39
+ * 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))
40
+ * 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))
41
+ * 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))
42
+ * 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))
43
+ * 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))
44
+ * 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))
45
+ * 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))
46
+ * 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))
47
+ * 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))
48
+
49
+
50
+ ### 🩹 Bug Fixes
51
+
52
+ * **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))
53
+
54
+ ## [0.91.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.90.1...v0.91.0) (2026-03-13)
55
+
56
+
57
+ ### ⚠ BREAKING CHANGES
58
+
59
+ * add `valid-devEngines` rule ([#1663](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1663))
60
+
61
+ ### 🚀 Features
62
+
63
+ * 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))
64
+ * 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))
65
+ * 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))
66
+
67
+
68
+ ### 🩹 Bug Fixes
69
+
70
+ * **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))
71
+
72
+ ## [0.90.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.90.0...v0.90.1) (2026-03-10)
73
+
74
+
75
+ ### 🚀 Features
76
+
77
+ * 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))
78
+ * 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))
79
+ * 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))
80
+ * 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))
81
+ * 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))
82
+ * 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))
83
+
84
+ ## [0.90.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.89.4...v0.90.0) (2026-03-10)
85
+
86
+
87
+ ### ⚠ BREAKING CHANGES
88
+
89
+ * add `valid-funding` rule ([#1643](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1643))
90
+ * add `valid-bugs` rule ([#1644](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1644))
91
+ * add `valid-packageManager` rule ([#1640](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1640))
92
+
93
+ ### 🚀 Features
94
+
95
+ * 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))
96
+ * 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))
97
+ * 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))
98
+
99
+ ## [0.89.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.89.3...v0.89.4) (2026-03-07)
100
+
101
+
102
+ ### 🚀 Features
103
+
104
+ * 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))
105
+ * 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))
106
+ * 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))
107
+ * 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))
108
+
3
109
  ## [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
110
 
5
111
 
@@ -12,6 +118,18 @@
12
118
 
13
119
  * 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
120
 
121
+ ## [0.89.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.89.2...v0.89.3) (2026-03-04)
122
+
123
+
124
+ ### 🚀 Features
125
+
126
+ * 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))
127
+
128
+
129
+ ### 🩹 Bug Fixes
130
+
131
+ * 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))
132
+
15
133
  ## [0.89.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.89.1...v0.89.2) (2026-02-27)
16
134
 
17
135
 
@@ -72,856 +190,1140 @@
72
190
  * **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
191
 
74
192
  ## [0.88.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.88.1...v0.88.2) (2026-01-23)
193
+ ## [0.88.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.88.1...v0.88.2) (2026-01-23)
75
194
 
76
195
 
77
196
  ### Features
78
197
 
79
198
  * **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))
199
+ * **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
200
 
81
201
 
82
202
  ### Bug Fixes
83
203
 
204
+ * **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
205
  * **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
206
 
86
207
  ## [0.88.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.88.0...v0.88.1) (2026-01-07)
208
+ ## [0.88.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.88.0...v0.88.1) (2026-01-07)
87
209
 
88
210
 
89
211
  ### Features
90
212
 
213
+ * 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
214
  * 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
215
 
93
216
  ## [0.88.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.87.1...v0.88.0) (2026-01-04)
217
+ ## [0.88.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.87.1...v0.88.0) (2026-01-04)
94
218
 
95
219
 
96
220
  ### ⚠ BREAKING CHANGES
97
221
 
222
+ * add require-repository rule ([#1491](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1491))
98
223
  * add require-repository rule ([#1491](https://github.com/michaelfaith/eslint-plugin-package-json/issues/1491))
99
224
 
100
225
  ### Features
101
226
 
102
227
  * 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))
228
+ * 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
229
 
104
230
 
105
231
  ### Bug Fixes
106
232
 
233
+ * **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))
234
+ * **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
235
  * **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
236
  * **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
237
 
110
238
  ## [0.87.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.87.0...v0.87.1) (2025-12-31)
239
+ ## [0.87.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.87.0...v0.87.1) (2025-12-31)
111
240
 
112
241
 
113
242
  ### Features
114
243
 
244
+ * 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
245
  * 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
246
 
117
247
  ## [0.87.0](///compare/v0.86.0...v0.87.0) (2025-12-30)
118
248
 
119
249
  ### Features
120
250
 
251
+ - 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
252
  - 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
253
 
123
254
  ## [0.86.0](///compare/v0.85.0...v0.86.0) (2025-12-30)
124
255
 
125
256
  ### Features
126
257
 
258
+ - 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)
259
+ - **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
260
  - 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
261
  - **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
262
 
263
+ ## [0.85.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.84.0...v0.85.0) (2025-11-18)
130
264
  ## [0.85.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.84.0...v0.85.0) (2025-11-18)
131
265
 
132
266
  ### Features
133
267
 
268
+ - **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
269
  - **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
270
 
271
+ ## [0.84.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.83.0...v0.84.0) (2025-11-18)
136
272
  ## [0.84.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.83.0...v0.84.0) (2025-11-18)
137
273
 
138
274
  ### Features
139
275
 
276
+ - 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
277
  - 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
278
 
279
+ ## [0.83.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.82.0...v0.83.0) (2025-11-17)
142
280
  ## [0.83.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.82.0...v0.83.0) (2025-11-17)
143
281
 
144
282
  ### Features
145
283
 
284
+ - **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
285
  - **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
286
 
287
+ ## [0.82.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.81.0...v0.82.0) (2025-11-17)
148
288
  ## [0.82.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.81.0...v0.82.0) (2025-11-17)
149
289
 
150
290
  ### Features
151
291
 
292
+ - **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
293
  - **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
294
 
295
+ ## [0.81.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.80.0...v0.81.0) (2025-11-17)
154
296
  ## [0.81.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.80.0...v0.81.0) (2025-11-17)
155
297
 
156
298
  ### Features
157
299
 
300
+ - **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
301
  - **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
302
 
303
+ ## [0.80.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.79.0...v0.80.0) (2025-11-17)
160
304
  ## [0.80.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.79.0...v0.80.0) (2025-11-17)
161
305
 
162
306
  ### Features
163
307
 
308
+ - **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
309
  - **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
310
 
311
+ ## [0.79.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.78.0...v0.79.0) (2025-11-15)
166
312
  ## [0.79.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.78.0...v0.79.0) (2025-11-15)
167
313
 
168
314
  ### Features
169
315
 
316
+ - 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
317
  - 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
318
 
319
+ ## [0.78.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.77.0...v0.78.0) (2025-11-15)
172
320
  ## [0.78.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.77.0...v0.78.0) (2025-11-15)
173
321
 
174
322
  ### Features
175
323
 
324
+ - **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
325
  - **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
326
 
327
+ ## [0.77.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.76.0...v0.77.0) (2025-11-15)
178
328
  ## [0.77.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.76.0...v0.77.0) (2025-11-15)
179
329
 
180
330
  ### Features
181
331
 
332
+ - **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
333
  - **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
334
 
335
+ ## [0.76.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.75.0...v0.76.0) (2025-11-15)
184
336
  ## [0.76.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.75.0...v0.76.0) (2025-11-15)
185
337
 
186
338
  ### Features
187
339
 
340
+ - **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
341
  - **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
342
 
343
+ ## [0.75.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.73.0...v0.75.0) (2025-11-15)
190
344
  ## [0.75.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.73.0...v0.75.0) (2025-11-15)
191
345
 
192
346
  ### Features
193
347
 
348
+ - **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)
349
+ - **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)
350
+ - **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
351
  - **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
352
  - **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
353
  - **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
354
 
355
+ ## [0.74.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.73.0...v0.74.0) (2025-11-14)
198
356
  ## [0.74.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.73.0...v0.74.0) (2025-11-14)
199
357
 
200
358
  ### Features
201
359
 
360
+ - **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
361
  - **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
362
 
363
+ ## [0.73.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.72.0...v0.73.0) (2025-11-13)
204
364
  ## [0.73.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.72.0...v0.73.0) (2025-11-13)
205
365
 
206
366
  ### Features
207
367
 
368
+ - **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
369
  - **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
370
 
371
+ ## [0.72.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.71.0...v0.72.0) (2025-11-13)
210
372
  ## [0.72.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.71.0...v0.72.0) (2025-11-13)
211
373
 
212
374
  ### Features
213
375
 
376
+ - **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
377
  - **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
378
 
379
+ ## [0.71.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.70.0...v0.71.0) (2025-11-13)
216
380
  ## [0.71.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.70.0...v0.71.0) (2025-11-13)
217
381
 
218
382
  ### Features
219
383
 
384
+ - **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
385
  - **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
386
 
387
+ ## [0.70.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.69.0...v0.70.0) (2025-11-13)
222
388
  ## [0.70.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.69.0...v0.70.0) (2025-11-13)
223
389
 
224
390
  ### Features
225
391
 
392
+ - **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
393
  - **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
394
 
395
+ ## [0.69.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.68.0...v0.69.0) (2025-11-12)
228
396
  ## [0.69.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.68.0...v0.69.0) (2025-11-12)
229
397
 
230
398
  ### Features
231
399
 
400
+ - **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
401
  - **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
402
 
403
+ ## [0.68.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.67.0...v0.68.0) (2025-11-12)
234
404
  ## [0.68.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.67.0...v0.68.0) (2025-11-12)
235
405
 
236
406
  ### Features
237
407
 
408
+ - **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
409
  - **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
410
 
411
+ ## [0.67.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.66.0...v0.67.0) (2025-11-12)
240
412
  ## [0.67.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.66.0...v0.67.0) (2025-11-12)
241
413
 
242
414
  ### Features
243
415
 
416
+ - **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
417
  - **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
418
 
419
+ ## [0.66.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.3...v0.66.0) (2025-11-11)
246
420
  ## [0.66.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.3...v0.66.0) (2025-11-11)
247
421
 
248
422
  ### Features
249
423
 
424
+ - **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
425
  - **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
426
 
427
+ ## [0.65.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.2...v0.65.3) (2025-11-10)
252
428
  ## [0.65.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.2...v0.65.3) (2025-11-10)
253
429
 
254
430
  ### Bug Fixes
255
431
 
432
+ - **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
433
  - **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
434
 
435
+ ## [0.65.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.1...v0.65.2) (2025-11-10)
258
436
  ## [0.65.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.1...v0.65.2) (2025-11-10)
259
437
 
260
438
  ### Bug Fixes
261
439
 
440
+ - **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
441
  - **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
442
 
443
+ ## [0.65.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.0...v0.65.1) (2025-11-09)
264
444
  ## [0.65.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.65.0...v0.65.1) (2025-11-09)
265
445
 
266
446
  ### Bug Fixes
267
447
 
448
+ - **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
449
  - **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
450
 
451
+ ## [0.65.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.64.0...v0.65.0) (2025-11-08)
270
452
  ## [0.65.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.64.0...v0.65.0) (2025-11-08)
271
453
 
272
454
  ### Bug Fixes
273
455
 
456
+ - **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
457
  - **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
458
 
276
459
  ### Features
277
460
 
461
+ - **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
462
  - **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
463
 
464
+ ## [0.64.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.63.0...v0.64.0) (2025-11-04)
280
465
  ## [0.64.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.63.0...v0.64.0) (2025-11-04)
281
466
 
282
467
  ### Features
283
468
 
469
+ - **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
470
  - **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
471
 
472
+ ## [0.63.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.62.0...v0.63.0) (2025-11-04)
286
473
  ## [0.63.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.62.0...v0.63.0) (2025-11-04)
287
474
 
288
475
  ### Features
289
476
 
477
+ - **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
478
  - **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
479
 
480
+ ## [0.62.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.61.0...v0.62.0) (2025-11-03)
292
481
  ## [0.62.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.61.0...v0.62.0) (2025-11-03)
293
482
 
294
483
  ### Features
295
484
 
485
+ - **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
486
  - **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
487
 
488
+ ## [0.61.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.60.0...v0.61.0) (2025-11-03)
298
489
  ## [0.61.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.60.0...v0.61.0) (2025-11-03)
299
490
 
300
491
  ### Features
301
492
 
493
+ - 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
494
  - 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
495
 
496
+ ## [0.60.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.59.1...v0.60.0) (2025-11-03)
304
497
  ## [0.60.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.59.1...v0.60.0) (2025-11-03)
305
498
 
306
499
  ### Features
307
500
 
501
+ - **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
502
  - **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
503
 
504
+ ## [0.59.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.59.0...v0.59.1) (2025-10-30)
310
505
  ## [0.59.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.59.0...v0.59.1) (2025-10-30)
311
506
 
312
507
  ### Bug Fixes
313
508
 
509
+ - **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
510
  - **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
511
 
512
+ ## [0.59.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.58.0...v0.59.0) (2025-10-25)
316
513
  ## [0.59.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.58.0...v0.59.0) (2025-10-25)
317
514
 
318
515
  ### Features
319
516
 
517
+ - **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
518
  - **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
519
 
520
+ ## [0.58.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.57.0...v0.58.0) (2025-10-22)
322
521
  ## [0.58.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.57.0...v0.58.0) (2025-10-22)
323
522
 
324
523
  ### Features
325
524
 
525
+ - 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
526
  - 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
527
 
528
+ ## [0.57.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.4...v0.57.0) (2025-10-16)
328
529
  ## [0.57.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.4...v0.57.0) (2025-10-16)
329
530
 
330
531
  ### Features
331
532
 
533
+ - 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
534
  - 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
535
 
536
+ ## [0.56.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.3...v0.56.4) (2025-10-14)
334
537
  ## [0.56.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.3...v0.56.4) (2025-10-14)
335
538
 
336
539
  ### Bug Fixes
337
540
 
541
+ - 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
542
  - 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
543
 
544
+ ## [0.56.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.2...v0.56.3) (2025-09-15)
340
545
  ## [0.56.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.2...v0.56.3) (2025-09-15)
341
546
 
342
547
  ### Bug Fixes
343
548
 
549
+ - **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
550
  - **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
551
 
552
+ ## [0.56.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.1...v0.56.2) (2025-09-04)
346
553
  ## [0.56.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.1...v0.56.2) (2025-09-04)
347
554
 
348
555
  ### Bug Fixes
349
556
 
557
+ - 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
558
  - 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
559
 
560
+ ## [0.56.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.0...v0.56.1) (2025-08-31)
352
561
  ## [0.56.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.56.0...v0.56.1) (2025-08-31)
353
562
 
354
563
  ### Bug Fixes
355
564
 
565
+ - **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
566
  - **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
567
 
568
+ ## [0.56.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.55.0...v0.56.0) (2025-08-25)
358
569
  ## [0.56.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.55.0...v0.56.0) (2025-08-25)
359
570
 
360
571
  ### Features
361
572
 
573
+ - **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
574
  - **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
575
 
576
+ ## [0.55.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.54.0...v0.55.0) (2025-08-22)
364
577
  ## [0.55.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.54.0...v0.55.0) (2025-08-22)
365
578
 
366
579
  ### Features
367
580
 
581
+ - 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
582
  - 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
583
 
584
+ ## [0.54.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.53.0...v0.54.0) (2025-08-15)
370
585
  ## [0.54.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.53.0...v0.54.0) (2025-08-15)
371
586
 
372
587
  ### Features
373
588
 
589
+ - **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
590
  - **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
591
 
592
+ ## [0.53.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.52.1...v0.53.0) (2025-08-13)
376
593
  ## [0.53.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.52.1...v0.53.0) (2025-08-13)
377
594
 
378
595
  ### Features
379
596
 
597
+ - 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
598
  - 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
599
 
600
+ ## [0.52.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.52.0...v0.52.1) (2025-08-07)
382
601
  ## [0.52.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.52.0...v0.52.1) (2025-08-07)
383
602
 
384
603
  ### Bug Fixes
385
604
 
605
+ - **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
606
  - **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
607
 
608
+ ## [0.52.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.51.0...v0.52.0) (2025-08-07)
388
609
  ## [0.52.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.51.0...v0.52.0) (2025-08-07)
389
610
 
390
611
  ### Features
391
612
 
613
+ - **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
614
  - **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
615
 
616
+ ## [0.51.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.50.0...v0.51.0) (2025-08-05)
394
617
  ## [0.51.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.50.0...v0.51.0) (2025-08-05)
395
618
 
396
619
  ### Features
397
620
 
621
+ - 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
622
  - 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
623
 
624
+ ## [0.50.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.49.0...v0.50.0) (2025-08-05)
400
625
  ## [0.50.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.49.0...v0.50.0) (2025-08-05)
401
626
 
402
627
  ### Features
403
628
 
629
+ - 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
630
  - 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
631
 
632
+ ## [0.49.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.48.0...v0.49.0) (2025-08-05)
406
633
  ## [0.49.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.48.0...v0.49.0) (2025-08-05)
407
634
 
408
635
  ### Features
409
636
 
637
+ - **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
638
  - **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
639
 
640
+ ## [0.48.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.47.1...v0.48.0) (2025-07-31)
412
641
  ## [0.48.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.47.1...v0.48.0) (2025-07-31)
413
642
 
414
643
  ### Features
415
644
 
645
+ - **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
646
  - **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
647
 
648
+ ## [0.47.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.47.0...v0.47.1) (2025-07-30)
418
649
  ## [0.47.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.47.0...v0.47.1) (2025-07-30)
419
650
 
420
651
  ### Bug Fixes
421
652
 
653
+ - **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
654
  - **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
655
 
656
+ ## [0.47.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.46.0...v0.47.0) (2025-07-25)
424
657
  ## [0.47.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.46.0...v0.47.0) (2025-07-25)
425
658
 
426
659
  ### Features
427
660
 
661
+ - **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
662
  - **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
663
 
664
+ ## [0.46.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.2...v0.46.0) (2025-07-24)
430
665
  ## [0.46.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.2...v0.46.0) (2025-07-24)
431
666
 
432
667
  ### Features
433
668
 
669
+ - **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
670
  - **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
671
 
672
+ ## [0.45.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.1...v0.45.2) (2025-07-24)
436
673
  ## [0.45.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.1...v0.45.2) (2025-07-24)
437
674
 
438
675
  ### Bug Fixes
439
676
 
677
+ - **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
678
  - **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
679
 
680
+ ## [0.45.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.0...v0.45.1) (2025-07-18)
442
681
  ## [0.45.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.45.0...v0.45.1) (2025-07-18)
443
682
 
444
683
  ### Bug Fixes
445
684
 
685
+ - **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
686
  - **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
687
 
688
+ ## [0.45.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.44.1...v0.45.0) (2025-07-17)
448
689
  ## [0.45.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.44.1...v0.45.0) (2025-07-17)
449
690
 
450
691
  ### Features
451
692
 
693
+ - **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
694
  - **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
695
 
696
+ ## [0.44.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.44.0...v0.44.1) (2025-07-10)
454
697
  ## [0.44.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.44.0...v0.44.1) (2025-07-10)
455
698
 
456
699
  ### Bug Fixes
457
700
 
701
+ - **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
702
  - **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
703
 
704
+ ## [0.44.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.4...v0.44.0) (2025-07-09)
460
705
  ## [0.44.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.4...v0.44.0) (2025-07-09)
461
706
 
462
707
  ### Features
463
708
 
709
+ - **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
710
  - **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
711
 
712
+ ## [0.43.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.3...v0.43.4) (2025-07-09)
466
713
  ## [0.43.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.3...v0.43.4) (2025-07-09)
467
714
 
468
715
  ### Bug Fixes
469
716
 
717
+ - **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
718
  - **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
719
 
720
+ ## [0.43.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.2...v0.43.3) (2025-07-08)
472
721
  ## [0.43.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.2...v0.43.3) (2025-07-08)
473
722
 
474
723
  ### Bug Fixes
475
724
 
725
+ - **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
726
  - **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
727
 
728
+ ## [0.43.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.1...v0.43.2) (2025-07-04)
478
729
  ## [0.43.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.1...v0.43.2) (2025-07-04)
479
730
 
480
731
  ### Bug Fixes
481
732
 
733
+ - **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
734
  - **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
735
 
736
+ ## [0.43.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.0...v0.43.1) (2025-07-03)
484
737
  ## [0.43.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.43.0...v0.43.1) (2025-07-03)
485
738
 
486
739
  ### Bug Fixes
487
740
 
741
+ - 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
742
  - 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
743
 
744
+ ## [0.43.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.42.1...v0.43.0) (2025-07-02)
490
745
  ## [0.43.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.42.1...v0.43.0) (2025-07-02)
491
746
 
492
747
  ### Features
493
748
 
749
+ - **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
750
  - **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
751
 
752
+ ## [0.42.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.42.0...v0.42.1) (2025-07-01)
496
753
  ## [0.42.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.42.0...v0.42.1) (2025-07-01)
497
754
 
498
755
  ### Bug Fixes
499
756
 
757
+ - **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
758
  - **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
759
 
760
+ ## [0.42.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.41.0...v0.42.0) (2025-06-25)
502
761
  ## [0.42.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.41.0...v0.42.0) (2025-06-25)
503
762
 
504
763
  ### Features
505
764
 
765
+ - 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
766
  - 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
767
 
768
+ ## [0.41.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.5...v0.41.0) (2025-06-24)
508
769
  ## [0.41.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.5...v0.41.0) (2025-06-24)
509
770
 
510
771
  ### Features
511
772
 
773
+ - **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
774
  - **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
775
 
776
+ ## [0.40.5](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.4...v0.40.5) (2025-06-23)
514
777
  ## [0.40.5](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.4...v0.40.5) (2025-06-23)
515
778
 
516
779
  ### Bug Fixes
517
780
 
781
+ - **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
782
  - **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
783
 
784
+ ## [0.40.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.3...v0.40.4) (2025-06-20)
520
785
  ## [0.40.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.3...v0.40.4) (2025-06-20)
521
786
 
522
787
  ### Bug Fixes
523
788
 
789
+ - **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
790
  - **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
791
 
792
+ ## [0.40.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.2...v0.40.3) (2025-06-19)
526
793
  ## [0.40.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.2...v0.40.3) (2025-06-19)
527
794
 
528
795
  ### Bug Fixes
529
796
 
797
+ - **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
798
  - **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
799
 
800
+ ## [0.40.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.1...v0.40.2) (2025-06-19)
532
801
  ## [0.40.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.1...v0.40.2) (2025-06-19)
533
802
 
534
803
  ### Bug Fixes
535
804
 
805
+ - **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
806
  - **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
807
 
808
+ ## [0.40.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.0...v0.40.1) (2025-06-18)
538
809
  ## [0.40.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.40.0...v0.40.1) (2025-06-18)
539
810
 
540
811
  ### Bug Fixes
541
812
 
813
+ - **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
814
  - **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
815
 
816
+ ## [0.40.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.2...v0.40.0) (2025-06-16)
544
817
  ## [0.40.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.2...v0.40.0) (2025-06-16)
545
818
 
546
819
  ### Features
547
820
 
821
+ - **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
822
  - **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
823
 
824
+ ## [0.39.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.1...v0.39.2) (2025-06-15)
550
825
  ## [0.39.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.1...v0.39.2) (2025-06-15)
551
826
 
552
827
  ### Bug Fixes
553
828
 
829
+ - **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
830
  - **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
831
 
832
+ ## [0.39.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.0...v0.39.1) (2025-06-15)
556
833
  ## [0.39.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.39.0...v0.39.1) (2025-06-15)
557
834
 
558
835
  ### Bug Fixes
559
836
 
837
+ - **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
838
  - **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
839
 
840
+ ## [0.39.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.38.1...v0.39.0) (2025-06-13)
562
841
  ## [0.39.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.38.1...v0.39.0) (2025-06-13)
563
842
 
564
843
  ### Features
565
844
 
845
+ - 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
846
  - 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
847
 
848
+ ## [0.38.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.38.0...v0.38.1) (2025-06-13)
568
849
  ## [0.38.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.38.0...v0.38.1) (2025-06-13)
569
850
 
570
851
  ### Bug Fixes
571
852
 
853
+ - **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
854
  - **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
855
 
856
+ ## [0.38.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.37.0...v0.38.0) (2025-06-13)
574
857
  ## [0.38.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.37.0...v0.38.0) (2025-06-13)
575
858
 
576
859
  ### Features
577
860
 
861
+ - 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
862
  - 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
863
 
864
+ ## [0.37.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.36.0...v0.37.0) (2025-06-12)
580
865
  ## [0.37.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.36.0...v0.37.0) (2025-06-12)
581
866
 
582
867
  ### Features
583
868
 
869
+ - **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
870
  - **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
871
 
872
+ ## [0.36.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.35.1...v0.36.0) (2025-06-11)
586
873
  ## [0.36.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.35.1...v0.36.0) (2025-06-11)
587
874
 
588
875
  ### Features
589
876
 
877
+ - 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
878
  - 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
879
 
880
+ ## [0.35.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.35.0...v0.35.1) (2025-06-10)
592
881
  ## [0.35.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.35.0...v0.35.1) (2025-06-10)
593
882
 
594
883
  ### Bug Fixes
595
884
 
885
+ - **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
886
  - **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
887
 
888
+ ## [0.35.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.34.0...v0.35.0) (2025-06-10)
598
889
  ## [0.35.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.34.0...v0.35.0) (2025-06-10)
599
890
 
600
891
  ### Features
601
892
 
893
+ - 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
894
  - 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
895
 
896
+ ## [0.34.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.2...v0.34.0) (2025-06-10)
604
897
  ## [0.34.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.2...v0.34.0) (2025-06-10)
605
898
 
606
899
  ### Features
607
900
 
901
+ - **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
902
  - **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
903
 
904
+ ## [0.33.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.1...v0.33.2) (2025-06-01)
610
905
  ## [0.33.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.1...v0.33.2) (2025-06-01)
611
906
 
612
907
  ### Bug Fixes
613
908
 
909
+ - 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
910
  - 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
911
 
912
+ ## [0.33.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.0...v0.33.1) (2025-06-01)
616
913
  ## [0.33.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.33.0...v0.33.1) (2025-06-01)
617
914
 
618
915
  ### Bug Fixes
619
916
 
917
+ - 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
918
  - 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
919
 
920
+ ## [0.33.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.32.0...v0.33.0) (2025-05-31)
622
921
  ## [0.33.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.32.0...v0.33.0) (2025-05-31)
623
922
 
624
923
  ### Features
625
924
 
925
+ - 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
926
  - 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
927
 
928
+ ## [0.32.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.31.0...v0.32.0) (2025-05-31)
628
929
  ## [0.32.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.31.0...v0.32.0) (2025-05-31)
629
930
 
630
931
  No meaningful change.
631
932
  CI error.
632
933
 
934
+ ## [0.31.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.30.0...v0.31.0) (2025-04-26)
633
935
  ## [0.31.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.30.0...v0.31.0) (2025-04-26)
634
936
 
635
937
  ### Features
636
938
 
939
+ - 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
940
  - 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
941
 
942
+ ## [0.30.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.29.1...v0.30.0) (2025-04-22)
639
943
  ## [0.30.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.29.1...v0.30.0) (2025-04-22)
640
944
 
641
945
  ### Features
642
946
 
947
+ - 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
948
  - 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
949
 
950
+ ## [0.29.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.29.0...v0.29.1) (2025-04-09)
645
951
  ## [0.29.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.29.0...v0.29.1) (2025-04-09)
646
952
 
647
953
  ### Bug Fixes
648
954
 
955
+ - 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
956
  - 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
957
 
958
+ ## [0.29.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.28.0...v0.29.0) (2025-03-17)
651
959
  ## [0.29.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.28.0...v0.29.0) (2025-03-17)
652
960
 
653
961
  ### Features
654
962
 
963
+ - **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
964
  - **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
965
 
966
+ ## [0.28.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.27.0...v0.28.0) (2025-03-17)
657
967
  ## [0.28.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.27.0...v0.28.0) (2025-03-17)
658
968
 
659
969
  ### Features
660
970
 
971
+ - **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
972
  - **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
973
 
974
+ ## [0.27.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.4...v0.27.0) (2025-03-17)
663
975
  ## [0.27.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.4...v0.27.0) (2025-03-17)
664
976
 
665
977
  ### Features
666
978
 
979
+ - empty feature commit to trigger new minor version ([b6b58d4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b6b58d46da07dd5f1a51e5b2c71a10803863b113))
667
980
  - empty feature commit to trigger new minor version ([b6b58d4](https://github.com/michaelfaith/eslint-plugin-package-json/commit/b6b58d46da07dd5f1a51e5b2c71a10803863b113))
668
981
 
982
+ ## [0.26.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.3...v0.26.4) (2025-03-17)
669
983
  ## [0.26.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.3...v0.26.4) (2025-03-17)
670
984
 
985
+ ## [0.26.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.2...v0.26.3) (2025-03-07)
671
986
  ## [0.26.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.2...v0.26.3) (2025-03-07)
672
987
 
673
988
  ### Bug Fixes
674
989
 
990
+ - **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
991
  - **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
992
 
993
+ ## [0.26.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.1...v0.26.2) (2025-03-04)
677
994
  ## [0.26.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.1...v0.26.2) (2025-03-04)
678
995
 
679
996
  ### Bug Fixes
680
997
 
998
+ - **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
999
  - **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
1000
 
1001
+ ## [0.26.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.0...v0.26.1) (2025-03-02)
683
1002
  ## [0.26.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.26.0...v0.26.1) (2025-03-02)
684
1003
 
685
1004
  ### Bug Fixes
686
1005
 
1006
+ - **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
1007
  - **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
1008
 
1009
+ ## [0.26.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.25.0...v0.26.0) (2025-02-10)
689
1010
  ## [0.26.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.25.0...v0.26.0) (2025-02-10)
690
1011
 
691
1012
  ### Features
692
1013
 
1014
+ - **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
1015
  - **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
1016
 
1017
+ ## [0.25.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.24.0...v0.25.0) (2025-02-09)
695
1018
  ## [0.25.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.24.0...v0.25.0) (2025-02-09)
696
1019
 
697
1020
  ### Features
698
1021
 
1022
+ - **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
1023
  - **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
1024
 
1025
+ ## [0.24.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.23.1...v0.24.0) (2025-02-08)
701
1026
  ## [0.24.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.23.1...v0.24.0) (2025-02-08)
702
1027
 
703
1028
  ### Features
704
1029
 
1030
+ - **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
1031
  - **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
1032
 
1033
+ ## [0.23.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.23.0...v0.23.1) (2025-02-07)
707
1034
  ## [0.23.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.23.0...v0.23.1) (2025-02-07)
708
1035
 
709
1036
  ### Bug Fixes
710
1037
 
1038
+ - **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
1039
  - **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
1040
 
1041
+ ## [0.23.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.22.0...v0.23.0) (2025-02-04)
713
1042
  ## [0.23.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.22.0...v0.23.0) (2025-02-04)
714
1043
 
715
1044
  ### Features
716
1045
 
1046
+ - **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
1047
  - **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
1048
 
1049
+ ## [0.22.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.21.1...v0.22.0) (2025-02-03)
719
1050
  ## [0.22.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.21.1...v0.22.0) (2025-02-03)
720
1051
 
721
1052
  ### Features
722
1053
 
1054
+ - **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
1055
  - **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
1056
 
1057
+ ## [0.21.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.21.0...v0.21.1) (2025-01-24)
725
1058
  ## [0.21.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.21.0...v0.21.1) (2025-01-24)
726
1059
 
727
1060
  ### Bug Fixes
728
1061
 
1062
+ - **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
1063
  - **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
1064
 
1065
+ ## [0.21.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.20.1...v0.21.0) (2025-01-23)
731
1066
  ## [0.21.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.20.1...v0.21.0) (2025-01-23)
732
1067
 
733
1068
  ### Features
734
1069
 
1070
+ - 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
1071
  - 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
1072
 
1073
+ ## [0.20.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.20.0...v0.20.1) (2025-01-19)
737
1074
  ## [0.20.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.20.0...v0.20.1) (2025-01-19)
738
1075
 
739
1076
  ### Bug Fixes
740
1077
 
1078
+ - 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
1079
  - 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
1080
 
1081
+ ## [0.20.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.19.0...v0.20.0) (2025-01-17)
743
1082
  ## [0.20.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.19.0...v0.20.0) (2025-01-17)
744
1083
 
745
1084
  ### Features
746
1085
 
1086
+ - **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
1087
  - **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
1088
 
1089
+ ## [0.19.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.18.0...v0.19.0) (2024-12-31)
749
1090
  ## [0.19.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.18.0...v0.19.0) (2024-12-31)
750
1091
 
751
1092
  ### Features
752
1093
 
1094
+ - **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
1095
  - **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
1096
 
1097
+ ## [0.18.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.17.0...v0.18.0) (2024-12-05)
755
1098
  ## [0.18.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.17.0...v0.18.0) (2024-12-05)
756
1099
 
757
1100
  ### Features
758
1101
 
1102
+ - 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
1103
  - 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
1104
 
1105
+ ## [0.17.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.16.0...v0.17.0) (2024-11-30)
761
1106
  ## [0.17.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.16.0...v0.17.0) (2024-11-30)
762
1107
 
763
1108
  ### Features
764
1109
 
1110
+ - 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
1111
  - 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
1112
 
1113
+ ## [0.16.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.6...v0.16.0) (2024-11-30)
767
1114
  ## [0.16.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.6...v0.16.0) (2024-11-30)
768
1115
 
769
1116
  ### Features
770
1117
 
1118
+ - **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
1119
  - **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
1120
 
1121
+ ## [0.15.6](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.5...v0.15.6) (2024-11-09)
773
1122
  ## [0.15.6](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.5...v0.15.6) (2024-11-09)
774
1123
 
775
1124
  ### Bug Fixes
776
1125
 
1126
+ - 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
1127
  - 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
1128
 
1129
+ ## [0.15.5](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.4...v0.15.5) (2024-11-06)
779
1130
  ## [0.15.5](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.4...v0.15.5) (2024-11-06)
780
1131
 
781
1132
  ### Bug Fixes
782
1133
 
1134
+ - 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
1135
  - 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
1136
 
1137
+ ## [0.15.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.3...v0.15.4) (2024-10-18)
785
1138
  ## [0.15.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.3...v0.15.4) (2024-10-18)
786
1139
 
787
1140
  ### Bug Fixes
788
1141
 
1142
+ - 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
1143
  - 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
1144
 
1145
+ ## [0.15.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.2...v0.15.3) (2024-09-12)
791
1146
  ## [0.15.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.2...v0.15.3) (2024-09-12)
792
1147
 
793
1148
  ### Bug Fixes
794
1149
 
1150
+ - **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
1151
  - **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
1152
 
1153
+ ## [0.15.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.1...v0.15.2) (2024-07-10)
797
1154
  ## [0.15.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.1...v0.15.2) (2024-07-10)
798
1155
 
799
1156
  ### Bug Fixes
800
1157
 
1158
+ - 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
1159
  - 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
1160
 
1161
+ ## [0.15.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.0...v0.15.1) (2024-07-10)
803
1162
  ## [0.15.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.15.0...v0.15.1) (2024-07-10)
804
1163
 
805
1164
  ### Bug Fixes
806
1165
 
1166
+ - 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
1167
  - 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
1168
 
1169
+ ## [0.15.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.14.0...v0.15.0) (2024-06-17)
809
1170
  ## [0.15.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.14.0...v0.15.0) (2024-06-17)
810
1171
 
811
1172
  ### Features
812
1173
 
1174
+ - **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
1175
  - **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
1176
 
1177
+ ## [0.14.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.13.1...v0.14.0) (2024-05-31)
815
1178
  ## [0.14.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.13.1...v0.14.0) (2024-05-31)
816
1179
 
817
1180
  ### Features
818
1181
 
1182
+ - 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
1183
  - 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
1184
 
1185
+ ## [0.13.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.13.0...v0.13.1) (2024-04-29)
821
1186
  ## [0.13.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.13.0...v0.13.1) (2024-04-29)
822
1187
 
823
1188
  ### Bug Fixes
824
1189
 
1190
+ - 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
1191
  - 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
1192
 
1193
+ ## [0.13.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.12.1...v0.13.0) (2024-04-29)
827
1194
  ## [0.13.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.12.1...v0.13.0) (2024-04-29)
828
1195
 
829
1196
  ### Bug Fixes
830
1197
 
1198
+ - 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
1199
  - 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
1200
 
833
1201
  ### Features
834
1202
 
1203
+ - 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
1204
  - 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
1205
 
1206
+ ## [0.12.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.12.0...v0.12.1) (2024-03-28)
837
1207
  ## [0.12.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.12.0...v0.12.1) (2024-03-28)
838
1208
 
839
1209
  ### Bug Fixes
840
1210
 
1211
+ - **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
1212
  - **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
1213
 
1214
+ ## [0.12.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.11.0...v0.12.0) (2024-03-25)
843
1215
  ## [0.12.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.11.0...v0.12.0) (2024-03-25)
844
1216
 
845
1217
  ### Features
846
1218
 
1219
+ - 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
1220
  - 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
1221
 
1222
+ ## [0.11.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.4...v0.11.0) (2024-03-24)
849
1223
  ## [0.11.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.4...v0.11.0) (2024-03-24)
850
1224
 
851
1225
  ### Features
852
1226
 
1227
+ - 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
1228
  - 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
1229
 
1230
+ ## [0.10.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.3...v0.10.4) (2024-02-20)
855
1231
  ## [0.10.4](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.3...v0.10.4) (2024-02-20)
856
1232
 
857
1233
  ### Bug Fixes
858
1234
 
1235
+ - 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
1236
  - 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
1237
 
1238
+ ## [0.10.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.2...v0.10.3) (2024-02-20)
861
1239
  ## [0.10.3](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.2...v0.10.3) (2024-02-20)
862
1240
 
863
1241
  ### Bug Fixes
864
1242
 
1243
+ - 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
1244
  - 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
1245
 
1246
+ ## [0.10.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.1...v0.10.2) (2024-02-01)
867
1247
  ## [0.10.2](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.1...v0.10.2) (2024-02-01)
868
1248
 
869
1249
  ### Bug Fixes
870
1250
 
1251
+ - 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
1252
  - 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
1253
 
1254
+ ## [0.10.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.0...v0.10.1) (2024-01-25)
873
1255
  ## [0.10.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.10.0...v0.10.1) (2024-01-25)
874
1256
 
875
1257
  ### Bug Fixes
876
1258
 
1259
+ - 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
1260
  - 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
1261
 
1262
+ ## [0.10.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.9.0...v0.10.0) (2024-01-20)
879
1263
  ## [0.10.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.9.0...v0.10.0) (2024-01-20)
880
1264
 
881
1265
  ### Features
882
1266
 
1267
+ - 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
1268
  - 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
1269
 
1270
+ ## [0.9.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.8.1...v0.9.0) (2024-01-20)
885
1271
  ## [0.9.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.8.1...v0.9.0) (2024-01-20)
886
1272
 
887
1273
  ### Features
888
1274
 
1275
+ - 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
1276
  - 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
1277
 
1278
+ ## [0.8.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.8.0...v0.8.1) (2024-01-20)
891
1279
  ## [0.8.1](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.8.0...v0.8.1) (2024-01-20)
892
1280
 
893
1281
  ### Bug Fixes
894
1282
 
1283
+ - 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
1284
  - 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
1285
 
1286
+ ## [0.8.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.7.0...v0.8.0) (2024-01-20)
897
1287
  ## [0.8.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.7.0...v0.8.0) (2024-01-20)
898
1288
 
899
1289
  ### Features
900
1290
 
1291
+ - 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
1292
  - 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
1293
 
1294
+ ## [0.7.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.6.0...v0.7.0) (2024-01-20)
903
1295
  ## [0.7.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.6.0...v0.7.0) (2024-01-20)
904
1296
 
905
1297
  ### Features
906
1298
 
1299
+ - 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
1300
  - 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
1301
 
1302
+ ## [0.6.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.5.0...v0.6.0) (2024-01-20)
909
1303
  ## [0.6.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.5.0...v0.6.0) (2024-01-20)
910
1304
 
911
1305
  ### Features
912
1306
 
1307
+ - 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
1308
  - 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
1309
 
1310
+ ## [0.5.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.4.0...v0.5.0) (2024-01-20)
915
1311
  ## [0.5.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.4.0...v0.5.0) (2024-01-20)
916
1312
 
917
1313
  ### Features
918
1314
 
1315
+ - 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
1316
  - 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
1317
 
1318
+ ## [0.4.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.1.3...v0.4.0) (2024-01-20)
921
1319
  ## [0.4.0](https://github.com/michaelfaith/eslint-plugin-package-json/compare/v0.1.3...v0.4.0) (2024-01-20)
922
1320
 
923
1321
  ### Bug Fixes
924
1322
 
1323
+ - detect package.json in Windows ([eb90172](https://github.com/michaelfaith/eslint-plugin-package-json/commit/eb901727c12fdd4f7a5d734c9e98f3123059bee8))
1324
+ - Missing extension in valid-package-def link ([0cd9b6b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0cd9b6bd462b9b801cf69b1a09d8c23d4afcedf0))
1325
+ - 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)
1326
+ - typo ([#63](https://github.com/michaelfaith/eslint-plugin-package-json/issues/63)) ([3e6f6bc](https://github.com/michaelfaith/eslint-plugin-package-json/commit/3e6f6bc40ed8a856199082429e66c77c099210f5))
925
1327
  - detect package.json in Windows ([eb90172](https://github.com/michaelfaith/eslint-plugin-package-json/commit/eb901727c12fdd4f7a5d734c9e98f3123059bee8))
926
1328
  - Missing extension in valid-package-def link ([0cd9b6b](https://github.com/michaelfaith/eslint-plugin-package-json/commit/0cd9b6bd462b9b801cf69b1a09d8c23d4afcedf0))
927
1329
  - 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 +1332,4 @@ CI error.
930
1332
  ### Features
931
1333
 
932
1334
  - 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)
1335
+ - 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)