@will-stone/prettier-config 10.0.0 → 11.0.1

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 (3) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/index.js +0 -1
  3. package/package.json +4 -6
package/CHANGELOG.md CHANGED
@@ -1,10 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [11.0.1](https://github.com/will-stone/prettier-config/compare/v11.0.0...v11.0.1) (2025-04-19)
4
+
5
+ ### Patches
6
+
7
+ * Add repo type ([60b8bca](https://github.com/will-stone/prettier-config/commit/60b8bca84ffe6b37b3273195dca4a47ef58f05a2))
8
+
9
+ ## [11.0.0](https://github.com/will-stone/prettier-config/compare/v10.0.0...v11.0.0) (2025-04-19)
10
+
11
+ ### Major changes
12
+
13
+ - Remove eslint-plugin-package-json
14
+ ([1892b84](https://github.com/will-stone/prettier-config/commit/1892b84faf8a7b497867efeaac2236d615e22568))
15
+
3
16
  ## [10.0.0](https://github.com/will-stone/prettier-config/compare/v9.0.5...v10.0.0) (2025-04-19)
4
17
 
5
18
  ### Major changes
6
19
 
7
- * Convert package to ESM ([f296e88](https://github.com/will-stone/prettier-config/commit/f296e883d43ea2b331a29f7109dde45d27fad993))
20
+ - Convert package to ESM
21
+ ([f296e88](https://github.com/will-stone/prettier-config/commit/f296e883d43ea2b331a29f7109dde45d27fad993))
8
22
 
9
23
  ## [9.0.5](https://github.com/will-stone/prettier-config/compare/v9.0.3...v9.0.5) (2025-04-19)
10
24
 
package/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  export default {
2
- plugins: [import.meta.resolve('prettier-plugin-packagejson')],
3
2
  proseWrap: 'always',
4
3
  semi: false,
5
4
  singleQuote: true,
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@will-stone/prettier-config",
3
- "version": "10.0.0",
3
+ "version": "11.0.1",
4
4
  "description": "My personal Prettier config",
5
5
  "repository": {
6
- "url": "https://github.com/will-stone/prettier-config"
6
+ "type": "git",
7
+ "url": "git+https://github.com/will-stone/prettier-config.git"
7
8
  },
8
9
  "license": "MIT",
9
10
  "author": "Will Stone",
@@ -22,13 +23,10 @@
22
23
  "prettier --write"
23
24
  ]
24
25
  },
25
- "dependencies": {
26
- "prettier-plugin-packagejson": "^2.5.0"
27
- },
28
26
  "devDependencies": {
29
27
  "@commits-with-character/conventional-changelog-preset": "^4.0.0",
30
28
  "@release-it/conventional-changelog": "^10.0.1",
31
- "@will-stone/eslint-config": "^15.1.0",
29
+ "@will-stone/eslint-config": "^16.0.0",
32
30
  "eslint": "^9.25.0",
33
31
  "husky": "^9.1.7",
34
32
  "lint-staged": "^15.5.1",