@dartess/eslint-plugin 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +21 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  [//]: # (https://keepachangelog.com/en/1.1.0/)
4
4
 
5
+ ## [0.0.2] - 2025-12-20
6
+
7
+ - mark optional deps as "optional" in "peerDependenciesMeta"
8
+
5
9
  ## [0.0.1] - 2025-12-16
6
10
 
7
11
  - initial version
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dartess/eslint-plugin",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "description": "A set of rules and configs for various react projects",
6
6
  "keywords": [
7
7
  "eslint",
@@ -56,6 +56,26 @@
56
56
  "eslint-plugin-unicorn": ">=58.0.0",
57
57
  "typescript-eslint": "^8.15.0"
58
58
  },
59
+ "peerDependenciesMeta": {
60
+ "@next/eslint-plugin-next": {
61
+ "optional": true
62
+ },
63
+ "eslint-plugin-jsx-a11y": {
64
+ "optional": true
65
+ },
66
+ "eslint-plugin-mobx": {
67
+ "optional": true
68
+ },
69
+ "eslint-plugin-react": {
70
+ "optional": true
71
+ },
72
+ "eslint-plugin-react-hooks": {
73
+ "optional": true
74
+ },
75
+ "eslint-plugin-storybook": {
76
+ "optional": true
77
+ }
78
+ },
59
79
  "devDependencies": {
60
80
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
61
81
  "@eslint/js": "^9.39.2",