@jiakun-zhao/eslint-config 4.1.7 → 4.2.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jiakun-zhao/eslint-config",
3
3
  "type": "module",
4
- "version": "4.1.7",
4
+ "version": "4.2.0",
5
5
  "description": "Jiakun Zhao's ESLint config.",
6
6
  "author": "Jiakun Zhao <hi@zhaojiakun.com>",
7
7
  "license": "MIT",
@@ -35,44 +35,42 @@
35
35
  }
36
36
  },
37
37
  "dependencies": {
38
- "@stylistic/eslint-plugin": "^4.4.1",
39
- "@typescript-eslint/eslint-plugin": "^8.34.1",
38
+ "@stylistic/eslint-plugin": "^5.6.1",
39
+ "@typescript-eslint/eslint-plugin": "^8.51.0",
40
40
  "@unocss/eslint-plugin": "66.1.0-beta.12",
41
41
  "eslint-config-flat-gitignore": "^2.1.0",
42
- "eslint-flat-config-utils": "^2.1.0",
42
+ "eslint-flat-config-utils": "^2.1.4",
43
43
  "eslint-plugin-antfu": "^3.1.1",
44
- "eslint-plugin-command": "^3.2.1",
45
- "eslint-plugin-import-x": "^4.15.2",
46
- "eslint-plugin-jsonc": "^2.20.1",
47
- "eslint-plugin-oxlint": "^1.1.0",
48
- "eslint-plugin-perfectionist": "^4.15.0",
49
- "eslint-plugin-regexp": "^2.9.0",
50
- "eslint-plugin-unicorn": "^59.0.1",
51
- "eslint-plugin-unused-imports": "^4.1.4",
52
- "globals": "^16.2.0"
44
+ "eslint-plugin-command": "^3.4.0",
45
+ "eslint-plugin-import-x": "^4.16.1",
46
+ "eslint-plugin-jsonc": "^2.21.0",
47
+ "eslint-plugin-perfectionist": "^5.2.0",
48
+ "eslint-plugin-regexp": "^2.10.0",
49
+ "eslint-plugin-unicorn": "^62.0.0",
50
+ "eslint-plugin-unused-imports": "^4.3.0",
51
+ "globals": "^17.0.0"
53
52
  },
54
53
  "devDependencies": {
55
- "@eslint/config-inspector": "^1.1.0",
56
- "@eslint/core": "^0.15.0",
57
- "@jiakun-zhao/utils": "^1.3.2",
58
- "@types/node": "^24.0.3",
59
- "@typescript-eslint/types": "^8.34.1",
60
- "bumpp": "^10.1.1",
61
- "eslint": "^9.29.0",
62
- "eslint-plugin-astro": "^1.3.1",
63
- "eslint-plugin-vue": "^10.2.0",
64
- "eslint-typegen": "^2.2.0",
65
- "eslint-vitest-rule-tester": "^2.2.0",
66
- "tsx": "^4.20.3",
67
- "typescript": "^5.8.3",
68
- "unbuild": "^3.5.0",
69
- "vitest": "^3.2.4"
54
+ "@eslint/config-inspector": "^1.4.2",
55
+ "@eslint/core": "^1.0.0",
56
+ "@jiakun-zhao/utils": "^1.4.2",
57
+ "@types/node": "^25.0.3",
58
+ "@typescript-eslint/types": "^8.51.0",
59
+ "bumpp": "^10.3.2",
60
+ "eslint": "^9.39.2",
61
+ "eslint-plugin-astro": "^1.5.0",
62
+ "eslint-plugin-vue": "^10.6.2",
63
+ "eslint-typegen": "^2.3.0",
64
+ "eslint-vitest-rule-tester": "^3.0.1",
65
+ "tsdown": "^0.18.4",
66
+ "tsx": "^4.21.0",
67
+ "typescript": "^5.9.3",
68
+ "vitest": "^4.0.16"
70
69
  },
71
70
  "scripts": {
72
- "build": "unbuild",
71
+ "build": "tsdown",
73
72
  "dev": "config-inspector --open=false",
74
73
  "release": "bumpp && pnpm publish && npx cnpm sync @jiakun-zhao/eslint-config",
75
- "stub": "unbuild --stub",
76
74
  "test": "vitest",
77
75
  "typegen": "tsx ./scripts/typegen.ts"
78
76
  }
package/dist/index.d.ts DELETED
@@ -1,14 +0,0 @@
1
- import { FlatConfigComposer } from 'eslint-flat-config-utils';
2
- import { FlatGitignoreOptions } from 'eslint-config-flat-gitignore';
3
-
4
- interface Options {
5
- ignores?: string[];
6
- gitignore?: FlatGitignoreOptions;
7
- oxlint?: {
8
- enable?: boolean;
9
- };
10
- }
11
-
12
- declare function export_default(options?: Options): FlatConfigComposer;
13
-
14
- export { export_default as default };