eslint-config-decent 2.6.3 → 2.6.5

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 (1) hide show
  1. package/package.json +29 -28
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-decent",
3
- "version": "2.6.3",
3
+ "version": "2.6.5",
4
4
  "description": "A decent ESLint configuration",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -31,7 +31,7 @@
31
31
  "lint": "run-p lint:*",
32
32
  "lint-staged": "lint-staged",
33
33
  "beta": "npm publish --tag beta",
34
- "prepublishOnly": "npm run lint && npm run test && npm run build && pinst --disable",
34
+ "prepublishOnly": "pinst --disable",
35
35
  "postpublish": "pinst --enable",
36
36
  "prepare": "husky"
37
37
  },
@@ -40,16 +40,10 @@
40
40
  "prettier --write --cache",
41
41
  "markdownlint --config=.github/linters/.markdown-lint.yml --fix"
42
42
  ],
43
- "*.js": [
44
- "eslint --fix"
45
- ],
46
- "*.cjs": [
47
- "eslint --fix"
48
- ],
49
- "*.mjs": [
50
- "eslint --fix"
43
+ "*.{json5,yml}": [
44
+ "prettier --write"
51
45
  ],
52
- "*.ts": [
46
+ "*.{js,cjs,mjs,ts}": [
53
47
  "eslint --fix"
54
48
  ]
55
49
  },
@@ -72,39 +66,46 @@
72
66
  "node": ">=20.11.0"
73
67
  },
74
68
  "dependencies": {
75
- "@eslint/compat": "1.2.7",
76
- "@eslint/js": "9.23.0",
77
- "@next/eslint-plugin-next": "^15.2.4",
78
- "@stylistic/eslint-plugin": "^4.2.0",
79
- "@typescript-eslint/utils": "8.28.0",
69
+ "@eslint/compat": "1.2.8",
70
+ "@eslint/js": "9.24.0",
71
+ "@next/eslint-plugin-next": "15.2.4",
72
+ "@stylistic/eslint-plugin": "4.2.0",
73
+ "@typescript-eslint/utils": "8.29.1",
80
74
  "eslint-config-prettier": "10.1.1",
81
- "eslint-plugin-import-x": "4.9.4",
75
+ "eslint-plugin-import-x": "4.10.2",
82
76
  "eslint-plugin-jest": "28.11.0",
83
77
  "eslint-plugin-jest-dom": "5.5.0",
84
78
  "eslint-plugin-jsdoc": "50.6.9",
85
79
  "eslint-plugin-jsx-a11y": "6.10.2",
86
80
  "eslint-plugin-mocha": "10.5.0",
87
- "eslint-plugin-prettier": "5.2.5",
81
+ "eslint-plugin-prettier": "5.2.6",
88
82
  "eslint-plugin-promise": "7.2.1",
89
- "eslint-plugin-react": "7.37.4",
83
+ "eslint-plugin-react": "7.37.5",
90
84
  "eslint-plugin-react-hooks": "5.2.0",
91
85
  "eslint-plugin-security": "3.0.1",
92
86
  "eslint-plugin-testing-library": "7.1.1",
93
87
  "eslint-plugin-unicorn": "58.0.0",
94
88
  "globals": "16.0.0",
95
- "typescript-eslint": "8.28.0"
89
+ "typescript-eslint": "8.29.1"
96
90
  },
97
91
  "devDependencies": {
98
- "@swc/core": "^1.11.13",
92
+ "@semantic-release/changelog": "6.0.3",
93
+ "@semantic-release/commit-analyzer": "13.0.1",
94
+ "@semantic-release/git": "10.0.1",
95
+ "@semantic-release/github": "11.0.1",
96
+ "@semantic-release/npm": "12.0.1",
97
+ "@semantic-release/release-notes-generator": "14.0.3",
98
+ "@swc/core": "1.11.18",
99
99
  "@types/node": ">=22",
100
- "eslint": "^9.23.0",
101
- "husky": "^9.1.7",
102
- "lint-staged": "^15.5.0",
103
- "markdownlint-cli": "^0.44.0",
104
- "npm-run-all": "^4.1.5",
105
- "pinst": "^3.0.0",
100
+ "eslint": "9.24.0",
101
+ "husky": "9.1.7",
102
+ "lint-staged": "15.5.0",
103
+ "markdownlint-cli": "0.44.0",
104
+ "npm-run-all2": "7.0.2",
105
+ "pinst": "3.0.0",
106
106
  "prettier": "3.5.3",
107
- "typescript": "^5.8.2",
107
+ "semantic-release": "24.2.3",
108
+ "typescript": "5.8.3",
108
109
  "unbuild": "3.5.0"
109
110
  },
110
111
  "overrides": {