@vida0905/eslint-config 2.5.2 → 2.5.3

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/bin/index.js CHANGED
File without changes
package/dist/cli/index.js CHANGED
@@ -6,7 +6,7 @@ import path from "node:path";
6
6
  import { green } from "ansis";
7
7
 
8
8
  //#region package.json
9
- var version = "2.5.2";
9
+ var version = "2.5.3";
10
10
 
11
11
  //#endregion
12
12
  //#region src/cli/constants.ts
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@vida0905/eslint-config",
3
3
  "type": "module",
4
- "version": "2.5.2",
5
- "packageManager": "pnpm@10.14.0",
4
+ "version": "2.5.3",
6
5
  "description": "Vida Xie's ESLint Config",
7
6
  "author": "Vida Xie <vida_2020@163.com> (https://github.com/9romise/)",
8
7
  "license": "MIT",
@@ -27,19 +26,8 @@
27
26
  "bin",
28
27
  "dist"
29
28
  ],
30
- "scripts": {
31
- "dev": "tsdown --watch",
32
- "build": "tsdown",
33
- "typegen": "tsx scripts/typegen",
34
- "typecheck": "tsc --noEmit",
35
- "test": "vitest",
36
- "lint": "eslint .",
37
- "check": "npm run typecheck && npm run lint",
38
- "prepare": "npm run typegen && npm run build",
39
- "inspect": "npx @eslint/config-inspector"
40
- },
41
29
  "peerDependencies": {
42
- "@nuxt/eslint-plugin": "catalog:plugin",
30
+ "@nuxt/eslint-plugin": "*",
43
31
  "eslint": ">=9.10.0"
44
32
  },
45
33
  "peerDependenciesMeta": {
@@ -48,25 +36,35 @@
48
36
  }
49
37
  },
50
38
  "dependencies": {
51
- "@antfu/eslint-config": "catalog:main",
52
- "ansis": "catalog:cli",
53
- "cac": "catalog:cli",
54
- "eslint-flat-config-utils": "catalog:main",
55
- "eslint-plugin-de-morgan": "catalog:plugin",
56
- "local-pkg": "catalog:main"
39
+ "@antfu/eslint-config": "^5.2.0",
40
+ "ansis": "^4.1.0",
41
+ "cac": "^6.7.14",
42
+ "eslint-flat-config-utils": "^2.1.1",
43
+ "eslint-plugin-de-morgan": "^1.3.1",
44
+ "local-pkg": "^1.1.1"
57
45
  },
58
46
  "devDependencies": {
59
- "@types/node": "catalog:dev",
60
- "eslint": "catalog:dev",
61
- "eslint-typegen": "catalog:dev",
62
- "husky": "catalog:dev",
63
- "nano-staged": "catalog:dev",
64
- "tsdown": "catalog:dev",
65
- "tsx": "catalog:dev",
66
- "typescript": "catalog:dev",
67
- "vitest": "catalog:test"
47
+ "@types/node": "^24.2.0",
48
+ "eslint": "^9.32.0",
49
+ "eslint-typegen": "^2.3.0",
50
+ "husky": "^9.1.7",
51
+ "nano-staged": "^0.8.0",
52
+ "tsdown": "^0.13.1",
53
+ "tsx": "^4.20.3",
54
+ "typescript": "^5.9.2",
55
+ "vitest": "^3.2.4"
68
56
  },
69
57
  "nano-staged": {
70
58
  "*": "eslint --fix"
59
+ },
60
+ "scripts": {
61
+ "dev": "tsdown --watch",
62
+ "build": "tsdown",
63
+ "typegen": "tsx scripts/typegen",
64
+ "typecheck": "tsc --noEmit",
65
+ "test": "vitest",
66
+ "lint": "eslint .",
67
+ "check": "npm run typecheck && npm run lint",
68
+ "inspect": "npx @eslint/config-inspector"
71
69
  }
72
- }
70
+ }