@pawover/eslint-rules 0.0.0-alpha.8 → 0.0.0-beta.10

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
@@ -4,10 +4,10 @@
4
4
  "description": "pawover's esLint rules",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "version": "0.0.0-alpha.8",
8
- "packageManager": "pnpm@10.20.0",
7
+ "version": "0.0.0-beta.10",
8
+ "packageManager": "pnpm@10.28.2",
9
9
  "engines": {
10
- "node": ">=22.20.0"
10
+ "node": ">=22.22.0"
11
11
  },
12
12
  "keywords": [
13
13
  "pawover",
@@ -38,11 +38,11 @@
38
38
  }
39
39
  },
40
40
  "scripts": {
41
- "build": "tsc",
41
+ "build": "pnpm clean:output && tsc -p tsconfig.build.json",
42
42
  "public": "pnpm build && npm publish --access public",
43
43
  "check": "pnpm check:types & pnpm check:eslint & pnpm check:format",
44
44
  "check:types": "tsc --noEmit",
45
- "check:eslint": "eslint --fix \"**/*.{js,cjs,mjs,ts,cts,mts,jsx,tsx,vue}\" --cache-location=.cache/eslint.cache.json --cache",
45
+ "check:eslint": "pnpm build && pnpm eslint --fix \"**/*.{js,cjs,mjs,ts,cts,mts,jsx,tsx,vue}\" --cache-location=.cache/eslint.cache.json --cache",
46
46
  "check:format": "prettier --write \"**/*.{html,json}\" !.vscode/settings.json --cache-location=.cache/prettier.cache.json --cache",
47
47
  "check:pack": "attw --pack .",
48
48
  "clean": "pnpm clean:cache & pnpm clean:lib & pnpm clean:output",
@@ -52,29 +52,30 @@
52
52
  "lib:up": "taze -I -r --exclude pnpm"
53
53
  },
54
54
  "devDependencies": {
55
- "@eslint-react/eslint-plugin": "^2.3.5",
56
- "@stylistic/eslint-plugin": "^5.5.0",
57
- "eslint": "^9.39.1",
58
- "eslint-plugin-antfu": "^3.1.1",
55
+ "@eslint-react/eslint-plugin": "^3.0.0",
56
+ "@stylistic/eslint-plugin": "^5.10.0",
57
+ "eslint": "^10.0.3",
58
+ "eslint-plugin-antfu": "^3.2.2",
59
+ "eslint-plugin-import-lite": "^0.5.2",
59
60
  "eslint-plugin-react-hooks": "^7.0.1",
60
- "eslint-plugin-vue": "^10.5.1",
61
- "globals": "^16.5.0",
62
- "prettier": "^3.6.2",
63
- "rimraf": "^6.1.0",
64
- "taze": "^19.9.0",
61
+ "eslint-plugin-vue": "^10.8.0",
62
+ "prettier": "^3.8.1",
63
+ "rimraf": "^6.1.3",
64
+ "taze": "^19.10.0",
65
65
  "typescript": "^5.9.3",
66
- "typescript-eslint": "^8.46.4"
66
+ "typescript-eslint": "^8.57.0"
67
67
  },
68
68
  "peerDependencies": {
69
- "@eslint-react/eslint-plugin": "^2.3.5",
70
- "@stylistic/eslint-plugin": "^5.5.0",
71
- "eslint": "^9.39.1",
72
- "eslint-plugin-antfu": "^3.1.1",
73
- "eslint-plugin-react-hooks": "^7.0.1",
74
- "eslint-plugin-vue": "^10.5.1",
75
- "globals": "^16.5.0",
76
- "typescript": "^5.9.3",
77
- "typescript-eslint": "^8.46.4"
69
+ "@eslint-react/eslint-plugin": ">=2.13.0",
70
+ "@stylistic/eslint-plugin": ">=5.9.0",
71
+ "eslint": "^9.0.0 || ^10.0.0",
72
+ "eslint-plugin-antfu": ">=3.2.2",
73
+ "eslint-plugin-import-lite": ">=0.5.2",
74
+ "eslint-plugin-react-hooks": ">=7.0.1",
75
+ "eslint-plugin-vue": ">=10.8.0",
76
+ "react": ">=19.2.0",
77
+ "typescript": ">=5.9.3",
78
+ "typescript-eslint": ">=8.46.4"
78
79
  },
79
80
  "peerDependenciesMeta": {
80
81
  "@eslint-react/eslint-plugin": {
@@ -86,13 +87,16 @@
86
87
  "eslint-plugin-antfu": {
87
88
  "optional": true
88
89
  },
90
+ "eslint-plugin-import-lite": {
91
+ "optional": true
92
+ },
89
93
  "eslint-plugin-react-hooks": {
90
94
  "optional": true
91
95
  },
92
96
  "eslint-plugin-vue": {
93
97
  "optional": true
94
98
  },
95
- "globals": {
99
+ "react": {
96
100
  "optional": true
97
101
  },
98
102
  "typescript": {