eslint-plugin-oxfmt 0.0.6 → 0.0.8

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.
package/README.md CHANGED
@@ -19,9 +19,7 @@
19
19
  ## Requirements
20
20
 
21
21
  - **ESLint**: `>= 9.0.0` (Only supports ESLint flat config)
22
- - **Node.js**: `>= 18.0.0`
23
-
24
- ## Installation
22
+ - **Node.js**: `^20.19.0 || >=22.12.0`
25
23
 
26
24
  ## Installation
27
25
 
package/dist/index.mjs CHANGED
@@ -67,7 +67,7 @@ const configs = { recommended };
67
67
  //#endregion
68
68
  //#region package.json
69
69
  var name = "eslint-plugin-oxfmt";
70
- var version = "0.0.6";
70
+ var version = "0.0.8";
71
71
 
72
72
  //#endregion
73
73
  //#region src/meta.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eslint-plugin-oxfmt",
3
3
  "type": "module",
4
- "version": "0.0.6",
4
+ "version": "0.0.8",
5
5
  "description": "An ESLint plugin for formatting code with oxfmt.",
6
6
  "keywords": [
7
7
  "eslint",
@@ -44,18 +44,18 @@
44
44
  "sideEffects": false,
45
45
  "peerDependencies": {
46
46
  "eslint": "^9.5.0",
47
- "oxfmt": "^0.22.0"
47
+ "oxfmt": "^0.24.0"
48
48
  },
49
49
  "dependencies": {
50
50
  "generate-differences": "^0.1.1",
51
- "load-oxfmt-config": "^0.0.4",
51
+ "load-oxfmt-config": "^0.0.6",
52
52
  "synckit": "^0.11.11"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@ntnyq/eslint-config": "^5.9.0",
56
56
  "@ntnyq/prettier-config": "^3.0.1",
57
- "@types/node": "^25.0.3",
58
- "@typescript/native-preview": "^7.0.0-dev.20260105.1",
57
+ "@types/node": "^25.0.6",
58
+ "@typescript/native-preview": "^7.0.0-dev.20260112.1",
59
59
  "bumpp": "^10.3.2",
60
60
  "eslint": "^9.39.2",
61
61
  "eslint-parser-plain": "^0.1.1",
@@ -64,15 +64,18 @@
64
64
  "husky": "^9.1.7",
65
65
  "nano-staged": "^0.9.0",
66
66
  "npm-run-all2": "^8.0.4",
67
- "oxfmt": "^0.22.0",
67
+ "oxfmt": "^0.24.0",
68
68
  "prettier": "^3.7.4",
69
69
  "show-invisibles": "^0.0.2",
70
70
  "tinyglobby": "^0.2.15",
71
- "tsdown": "^0.19.0-beta.3",
71
+ "tsdown": "^0.19.0",
72
72
  "tsx": "^4.21.0",
73
73
  "typescript": "^5.9.3",
74
74
  "vitest": "^4.0.16"
75
75
  },
76
+ "engines": {
77
+ "node": "^20.19.0 || >=22.12.0"
78
+ },
76
79
  "nano-staged": {
77
80
  "*.{js,ts,mjs,cjs,md,vue,yml,yaml,toml,json}": "eslint --fix",
78
81
  "*.{css,scss,html}": "prettier -uw"