@nihalgonsalves/esconfig 0.13.5 → 0.13.6

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 +1 -1
  2. package/package.json +20 -18
package/README.md CHANGED
@@ -7,7 +7,7 @@ Shared ECMAScript Config (TS, Lint, Prettier)
7
7
  1. Install
8
8
 
9
9
  ```sh
10
- yarn add -D @nihalgonsalves/esconfig typescript typescript-eslint eslint prettier
10
+ pnpm add -D @nihalgonsalves/esconfig typescript typescript-eslint eslint prettier
11
11
  ```
12
12
 
13
13
  2. `tsconfig.json`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nihalgonsalves/esconfig",
3
- "version": "0.13.5",
3
+ "version": "0.13.6",
4
4
  "description": "Shared ECMAScript Config (TS, Lint, Prettier)",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -10,7 +10,9 @@
10
10
  "author": "Nihal Gonsalves <nihal@nihalgonsalves.com>",
11
11
  "license": "MIT",
12
12
  "type": "module",
13
- "packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f",
13
+ "publishConfig": {
14
+ "provenance": true
15
+ },
14
16
  "files": [
15
17
  "eslint.config.shared.js",
16
18
  "eslint.config.shared.d.ts",
@@ -18,15 +20,9 @@
18
20
  "eslint.config.react-shared.d.ts",
19
21
  "tsconfig.shared.json"
20
22
  ],
21
- "scripts": {
22
- "typecheck": "tsc --noEmit",
23
- "lint": "eslint .",
24
- "format": "prettier . --write",
25
- "format:check": "prettier . --check"
26
- },
27
23
  "dependencies": {
28
24
  "@eslint/js": "^9.39.2",
29
- "@vitest/eslint-plugin": "^1.6.6",
25
+ "@vitest/eslint-plugin": "^1.6.9",
30
26
  "eslint-config-prettier": "^10.1.8",
31
27
  "eslint-plugin-import": "^2.32.0",
32
28
  "eslint-plugin-jest-dom": "^5.5.0",
@@ -34,23 +30,29 @@
34
30
  "eslint-plugin-react": "^7.37.5",
35
31
  "eslint-plugin-react-compiler": "19.1.0-rc.2",
36
32
  "eslint-plugin-react-hooks": "^7.0.1",
37
- "eslint-plugin-storybook": "^10.2.3",
33
+ "eslint-plugin-storybook": "^10.2.8",
38
34
  "eslint-plugin-testing-library": "^7.15.4",
39
- "typescript-eslint": "^8.54.0"
35
+ "typescript-eslint": "^8.55.0"
40
36
  },
41
37
  "devDependencies": {
42
38
  "@commitlint/cli": "^20.4.1",
43
39
  "@commitlint/config-conventional": "^20.4.1",
44
- "@types/node": "^22.19.7",
40
+ "@types/node": "^24.10.13",
45
41
  "eslint": "^9.39.2",
46
- "knip": "^5.82.1",
47
- "lefthook": "^2.0.16",
42
+ "knip": "^5.83.1",
43
+ "lefthook": "^2.1.1",
48
44
  "prettier": "^3.8.1",
49
45
  "typescript": "^5.9.3"
50
46
  },
51
47
  "peerDependencies": {
52
- "eslint": "^9.17.0",
53
- "typescript": "^5.5.4",
54
- "typescript-eslint": "^8.4.0"
48
+ "eslint": "^9.39.2",
49
+ "typescript": "^5.9.3",
50
+ "typescript-eslint": "^8.55.0"
51
+ },
52
+ "scripts": {
53
+ "typecheck": "tsc --noEmit",
54
+ "lint": "eslint . && knip",
55
+ "format": "prettier . --write",
56
+ "format:check": "prettier . --check"
55
57
  }
56
- }
58
+ }