@alexlit/lint-kit 185.2.0 → 185.3.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/lint-kit",
3
- "version": "185.2.0",
3
+ "version": "185.3.0",
4
4
  "private": false,
5
5
  "description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
6
6
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "138.2.0",
3
+ "version": "138.3.0",
4
4
  "private": false,
5
5
  "description": "Sharable ESLint configuration",
6
6
  "keywords": [
@@ -43,10 +43,10 @@
43
43
  "@eslint/json": "^1.2.0",
44
44
  "@intlify/eslint-plugin-vue-i18n": "^4.3.0",
45
45
  "@stylistic/eslint-plugin": "^5.10.0",
46
- "@tanstack/eslint-plugin-query": "^5.96.1",
46
+ "@tanstack/eslint-plugin-query": "^5.96.2",
47
47
  "@unocss/eslint-config": "^66.6.7",
48
48
  "@vitest/eslint-plugin": "^1.6.14",
49
- "eslint": "^10.1.0",
49
+ "eslint": "^10.2.0",
50
50
  "eslint-config-prettier": "^10.1.8",
51
51
  "eslint-plugin-jsdoc": "^62.9.0",
52
52
  "eslint-plugin-perfectionist": "^5.8.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-npmlint",
3
- "version": "9.0.0",
3
+ "version": "9.1.0",
4
4
  "private": false,
5
5
  "description": "npmlint config",
6
6
  "keywords": [
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "lockfile-lint": "^5.0.0",
42
- "npm-package-json-lint": "^10.0.0",
42
+ "npm-package-json-lint": "^10.2.0",
43
43
  "npm-package-json-lint-config-default": "^9.0.1"
44
44
  },
45
45
  "publishConfig": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-prettier",
3
- "version": "22.3.0",
3
+ "version": "22.3.1",
4
4
  "private": false,
5
5
  "description": "prettier config",
6
6
  "keywords": [
@@ -43,7 +43,7 @@
43
43
  "prettier-plugin-eruby": "^0.0.3",
44
44
  "prettier-plugin-jsdoc": "^1.8.0",
45
45
  "prettier-plugin-packagejson": "^3.0.2",
46
- "prettier-plugin-sh": "^0.18.0",
46
+ "prettier-plugin-sh": "^0.18.1",
47
47
  "prettier-plugin-solidity": "^2.3.1",
48
48
  "prettier-plugin-sort-json": "^4.2.0",
49
49
  "prettier-plugin-sql": "^0.20.0",
package/scripts/i.sh CHANGED
@@ -6,9 +6,9 @@ echo -e "${YELLOW}Устанавливаю зависимости...${WHITE}"
6
6
 
7
7
  find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
8
8
  rm -rf package-lock.json
9
- npm cache clean --force
9
+ # npm cache clean --force
10
10
  npm install \
11
- --legacy-peer-deps \
12
11
  --loglevel verbose
12
+ npm dedupe
13
13
 
14
14
  SAY_GOODBYE