@lntvow/eslint-config 9.23.2 → 9.24.1

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 +13 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lntvow/eslint-config",
3
- "version": "9.23.2",
3
+ "version": "9.24.1",
4
4
  "description": "eslint-config",
5
5
  "keywords": [
6
6
  "eslint",
@@ -26,7 +26,7 @@
26
26
  }
27
27
  },
28
28
  "devDependencies": {
29
- "@lntvow/dev": "^4.0.1",
29
+ "@lntvow/dev": "^4.4.2",
30
30
  "@types/node": "^22.9.0",
31
31
  "axios": "^1.7.7",
32
32
  "cheerio": "1.0.0",
@@ -45,7 +45,7 @@
45
45
  "@lntvow/utils": "^3.2.6",
46
46
  "@stylistic/eslint-plugin": "^2.10.1",
47
47
  "eslint": "^9.23.0",
48
- "eslint-config-prettier": "^9.1.0",
48
+ "eslint-config-prettier": "^10.1.1",
49
49
  "eslint-flat-config-utils": "^0.4.0",
50
50
  "eslint-plugin-import-x": "^4.6.1",
51
51
  "eslint-plugin-prettier": "^5.2.1",
@@ -59,18 +59,20 @@
59
59
  "typescript": "^5.8.2",
60
60
  "typescript-eslint": "^8.28.0",
61
61
  "vue-eslint-parser": "^9.4.3",
62
- "@lntvow/eslint-plugin": "^9.23.2"
62
+ "@lntvow/eslint-plugin": "^9.24.1"
63
63
  },
64
64
  "scripts": {
65
- "dev": "pnpm -r dev && tsup --config tsup.dev.config.ts",
66
- "typegen": "pnpm -r build && tsx scripts/typegen.ts",
67
- "build": "pnpm typegen && tsup",
68
- "inspect": "pnpm eslint --inspect-config",
69
65
  "postinstall": "simple-git-hooks",
70
- "check": "tsc --noEmit",
71
- "lint": "eslint \"src/**/*.{js,jsx,ts,tsx,vue}\"",
72
66
  "rimraf": "rimraf ./node_modules/ && pnpm -r rimraf",
73
67
  "commit": "git add . && git-cz",
74
- "release": "git add . && bumpp package.json packages/*/package.json --all --no-tag"
68
+ "release": "git add . && bumpp package.json packages/*/package.json --all --no-tag",
69
+ "lint:eslint": "eslint \"src/**/*.{js,jsx,ts,tsx,vue}\" --fix",
70
+ "lint:tsc": "tsc --noEmit",
71
+ "lint": "eslint \"src/**/*.{js,jsx,ts,tsx,vue}\"",
72
+ "ncu": "ncu -u && pnpm install",
73
+ "dev": "pnpm -r dev && tsup --config tsup.dev.config.ts",
74
+ "typegen": "pnpm -r build && tsx scripts/typegen.ts",
75
+ "build": "pnpm typegen && tsup",
76
+ "inspect": "pnpm eslint --inspect-config"
75
77
  }
76
78
  }