@planfredapp/eslint-config 1.2.1 → 1.2.12

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 (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +23 -26
package/README.md CHANGED
@@ -16,6 +16,8 @@ The package ships its plugins and parsers as dependencies. In consuming projects
16
16
  ## Installation
17
17
 
18
18
  ```bash
19
+ pnpm add -D eslint @planfredapp/eslint-config
20
+ # or
19
21
  npm install --save-dev eslint @planfredapp/eslint-config
20
22
  ```
21
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planfredapp/eslint-config",
3
- "version": "1.2.1",
3
+ "version": "1.2.12",
4
4
  "description": "Shared ESLint 10 configurations for Planfred monorepo",
5
5
  "keywords": [
6
6
  "eslint",
@@ -34,41 +34,38 @@
34
34
  "*.js"
35
35
  ],
36
36
  "engines": {
37
- "node": "^20.19.0 || ^22.13.0 || >=24"
38
- },
39
- "scripts": {
40
- "lint": "eslint .",
41
- "lint:fix": "eslint . --fix",
42
- "release": "npm publish --access public",
43
- "test": "vitest",
44
- "test:run": "vitest run",
45
- "upgrade": "./scripts/upgrade.sh",
46
- "version:major": "./scripts/version.sh major",
47
- "version:minor": "./scripts/version.sh minor",
48
- "version:patch": "./scripts/version.sh patch"
37
+ "node": ">=26"
49
38
  },
50
39
  "dependencies": {
51
40
  "@eslint/js": "10.0.1",
52
41
  "@stylistic/eslint-plugin": "5.10.0",
53
- "@vitest/eslint-plugin": "1.6.15",
54
- "eslint-plugin-cypress": "6.3.0",
42
+ "@vitest/eslint-plugin": "1.6.17",
43
+ "eslint-plugin-cypress": "6.4.1",
55
44
  "eslint-plugin-import-x": "4.16.2",
56
- "eslint-plugin-n": "17.24.0",
57
- "eslint-plugin-no-only-tests": "3.3.0",
58
- "eslint-plugin-vue": "10.8.0",
59
- "globals": "17.4.0",
60
- "typescript-eslint": "8.58.1",
45
+ "eslint-plugin-n": "18.0.1",
46
+ "eslint-plugin-no-only-tests": "3.4.0",
47
+ "eslint-plugin-vue": "10.9.1",
48
+ "globals": "17.6.0",
49
+ "typescript-eslint": "8.59.3",
61
50
  "vue-eslint-parser": "10.4.0"
62
51
  },
63
52
  "devDependencies": {
64
- "eslint": "10.2.0",
65
- "typescript": "6.0.2",
66
- "vitest": "4.1.4"
53
+ "eslint": "10.4.0",
54
+ "typescript": "6.0.3",
55
+ "vitest": "4.1.6"
67
56
  },
68
57
  "peerDependencies": {
69
58
  "eslint": ">=10.0.0"
70
59
  },
71
- "overrides": {
72
- "js-yaml": "4.1.1"
60
+ "scripts": {
61
+ "lint": "eslint .",
62
+ "lint:fix": "eslint . --fix",
63
+ "release": "pnpm publish --access public --no-git-checks",
64
+ "test": "vitest",
65
+ "test:run": "vitest run",
66
+ "deps:upgrade": "./scripts/upgrade.sh",
67
+ "version:major": "./scripts/version.sh major",
68
+ "version:minor": "./scripts/version.sh minor",
69
+ "version:patch": "./scripts/version.sh patch"
73
70
  }
74
- }
71
+ }