@skilbjo/config-rc 1.0.23 → 1.0.25

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.
@@ -1,7 +1,7 @@
1
1
  name: pr
2
2
 
3
3
  on:
4
- pull_request_target: # https://github.com/dependabot/dependabot-core/issues/3253
4
+ pull_request:
5
5
  branches:
6
6
  - master
7
7
 
@@ -11,15 +11,13 @@ defaults:
11
11
 
12
12
  permissions:
13
13
  pull-requests: write
14
- contents: write
15
- id-token: write
16
14
 
17
15
  jobs:
18
16
  build-and-test:
19
17
  runs-on: ubuntu-latest
20
18
  timeout-minutes: 10
21
19
  steps:
22
- - uses: actions/checkout@v4
20
+ - uses: actions/checkout@v5
23
21
  with:
24
22
  ref: ${{ github.event.pull_request.head.sha }}
25
23
 
@@ -61,7 +59,7 @@ jobs:
61
59
  timeout-minutes: 2
62
60
  if: ${{ github.actor == 'dependabot[bot]' }}
63
61
  steps:
64
- - uses: dependabot/fetch-metadata@v2.3.0
62
+ - uses: dependabot/fetch-metadata@v2.4.0
65
63
  with:
66
64
  github-token: ${{ secrets.GITHUB_TOKEN }}
67
65
  - name: Approve a PR
@@ -13,19 +13,18 @@ defaults:
13
13
 
14
14
  jobs:
15
15
  publish-artifact:
16
- permissions:
17
- issues: write
18
- packages: write
19
- id-token: write
20
16
  runs-on: ubuntu-latest
21
17
  timeout-minutes: 10
18
+ permissions:
19
+ packages: write
20
+ id-token: write # Required for npm provenance generation
22
21
 
23
22
  outputs:
24
23
  new_release_version: ${{ steps.semantic.outputs.new_release_version }}
25
24
  new_release_published: ${{ steps.semantic.outputs.new_release_published }}
26
25
 
27
26
  steps:
28
- - uses: actions/checkout@v4
27
+ - uses: actions/checkout@v5
29
28
  with:
30
29
  persist-credentials: false
31
30
  token: ${{ secrets.ACTIONS_TOKEN }}
@@ -65,6 +64,8 @@ jobs:
65
64
  run: |
66
65
  # npm --no-git-tag-version version ${{ steps.semantic.outputs.new_release_version }}
67
66
  jq 'del(.publishConfig) | . + { publishConfig: { registry: "https://registry.npmjs.org/", "access": "public", "provenance": true } }' package.json >package2.json && mv package2.json package.json
67
+ # Ensure npm provenance is enabled
68
+ npm config set provenance true
68
69
 
69
70
  - name: Publish to NPM
70
71
  if: steps.semantic.outputs.new_release_published == 'true'
package/CHANGELOG.md CHANGED
@@ -1,3 +1,82 @@
1
+ ## [1.0.25](https://github.com/skilbjo/config-rc/compare/v1.0.24...v1.0.25) (2025-08-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * enable provenance ([6062eb7](https://github.com/skilbjo/config-rc/commit/6062eb7c39a37873c824d33bc9d0232ee88c9d14))
7
+
8
+ ## [1.0.24](https://github.com/skilbjo/config-rc/compare/v1.0.23...v1.0.24) (2025-08-29)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps-dev:** bump @types/node from 22.13.10 to 22.13.12 ([#271](https://github.com/skilbjo/config-rc/issues/271)) ([e870cd9](https://github.com/skilbjo/config-rc/commit/e870cd914dc8106eac107743c1c9fa6724567932))
14
+ * **deps-dev:** bump @types/node from 22.13.12 to 22.13.14 ([#273](https://github.com/skilbjo/config-rc/issues/273)) ([d222deb](https://github.com/skilbjo/config-rc/commit/d222deb574bdcbe9c3798163e99167fa29e0c289))
15
+ * **deps-dev:** bump @types/node from 22.13.14 to 22.14.0 ([#283](https://github.com/skilbjo/config-rc/issues/283)) ([05094bf](https://github.com/skilbjo/config-rc/commit/05094bf74b320ae93d067cdd2b7ae7e22ca6ef56))
16
+ * **deps-dev:** bump @types/node from 22.13.8 to 22.13.10 ([#262](https://github.com/skilbjo/config-rc/issues/262)) ([90dc3e4](https://github.com/skilbjo/config-rc/commit/90dc3e4037c7ada7eac241396b480e8108780f05))
17
+ * **deps-dev:** bump @types/node from 22.14.0 to 22.14.1 ([#291](https://github.com/skilbjo/config-rc/issues/291)) ([04929d1](https://github.com/skilbjo/config-rc/commit/04929d190829bc10b7317a62561e53426b9283d7))
18
+ * **deps-dev:** bump @types/node from 22.14.1 to 22.15.3 ([#299](https://github.com/skilbjo/config-rc/issues/299)) ([f6aee64](https://github.com/skilbjo/config-rc/commit/f6aee6436ed30a69990a340666f0d94c1c374ef6))
19
+ * **deps-dev:** bump @types/node from 22.15.17 to 22.15.19 ([#312](https://github.com/skilbjo/config-rc/issues/312)) ([fb6e3c4](https://github.com/skilbjo/config-rc/commit/fb6e3c4614b0334a627dfbf9844b1535020be77b))
20
+ * **deps-dev:** bump @types/node from 22.15.19 to 22.15.21 ([#316](https://github.com/skilbjo/config-rc/issues/316)) ([79bd27c](https://github.com/skilbjo/config-rc/commit/79bd27c1c27c80a399e2bbc3957fb04e20637618))
21
+ * **deps-dev:** bump @types/node from 22.15.21 to 22.15.29 ([#324](https://github.com/skilbjo/config-rc/issues/324)) ([ce851cc](https://github.com/skilbjo/config-rc/commit/ce851cc9ab5c83945a05d63454fae3348595a070))
22
+ * **deps-dev:** bump @types/node from 22.15.29 to 22.15.30 ([#332](https://github.com/skilbjo/config-rc/issues/332)) ([b299ddd](https://github.com/skilbjo/config-rc/commit/b299ddd34e9a068d5472f74fec069474c050db9b))
23
+ * **deps-dev:** bump @types/node from 22.15.3 to 22.15.17 ([#307](https://github.com/skilbjo/config-rc/issues/307)) ([f567a6f](https://github.com/skilbjo/config-rc/commit/f567a6f614956c60c777cbc009f9ccec977284a5))
24
+ * **deps-dev:** bump @types/node from 22.15.30 to 24.0.1 ([#338](https://github.com/skilbjo/config-rc/issues/338)) ([063ea34](https://github.com/skilbjo/config-rc/commit/063ea344a3fa9171003b46278a94420394c51e99))
25
+ * **deps-dev:** bump @types/node from 24.0.1 to 24.0.3 ([#341](https://github.com/skilbjo/config-rc/issues/341)) ([9c9ecfa](https://github.com/skilbjo/config-rc/commit/9c9ecfa220b6480c221a502d6c16dd0c8d755337))
26
+ * **deps-dev:** bump @types/node from 24.0.10 to 24.0.13 ([#355](https://github.com/skilbjo/config-rc/issues/355)) ([6286ea1](https://github.com/skilbjo/config-rc/commit/6286ea180333df38046e65be88678c7faab09fae))
27
+ * **deps-dev:** bump @types/node from 24.0.13 to 24.1.0 ([#361](https://github.com/skilbjo/config-rc/issues/361)) ([9e3b47c](https://github.com/skilbjo/config-rc/commit/9e3b47cfe2c1e26dbdfd0578b40c78d908c2bd1f))
28
+ * **deps-dev:** bump @types/node from 24.0.3 to 24.0.7 ([#349](https://github.com/skilbjo/config-rc/issues/349)) ([8730379](https://github.com/skilbjo/config-rc/commit/8730379b1beb0179a8f4ff0a5b5c9967c9b8ce9c))
29
+ * **deps-dev:** bump @types/node from 24.0.7 to 24.0.10 ([#354](https://github.com/skilbjo/config-rc/issues/354)) ([d5c9fb6](https://github.com/skilbjo/config-rc/commit/d5c9fb63cdc8c8173aa1570f342cc1c35f4819ac))
30
+ * **deps-dev:** bump @types/node from 24.1.0 to 24.2.1 ([#368](https://github.com/skilbjo/config-rc/issues/368)) ([d2e165c](https://github.com/skilbjo/config-rc/commit/d2e165cf18cd300ff4d21e718f42184f19fd0df5))
31
+ * **deps-dev:** bump @types/node from 24.2.1 to 24.3.0 ([#370](https://github.com/skilbjo/config-rc/issues/370)) ([8596497](https://github.com/skilbjo/config-rc/commit/859649751798f245ec8d5edd0dd86701d0bdb83f))
32
+ * **deps:** bump @tsconfig/node22 from 22.0.0 to 22.0.1 ([#268](https://github.com/skilbjo/config-rc/issues/268)) ([1758888](https://github.com/skilbjo/config-rc/commit/17588889150aaae633eb5c37cf6a0aa10303d8a7))
33
+ * **deps:** bump @tsconfig/node22 from 22.0.1 to 22.0.2 ([#317](https://github.com/skilbjo/config-rc/issues/317)) ([2aa1a04](https://github.com/skilbjo/config-rc/commit/2aa1a046635eff8f953b0fcd3c7474c9aa490fdd))
34
+ * **deps:** bump @types/jest from 29.5.14 to 30.0.0 ([#339](https://github.com/skilbjo/config-rc/issues/339)) ([d1bf6a4](https://github.com/skilbjo/config-rc/commit/d1bf6a48e51294746f267e9528e9081006920970))
35
+ * **deps:** bump @typescript-eslint/eslint-plugin from 7.17.0 to 7.18.0 ([#351](https://github.com/skilbjo/config-rc/issues/351)) ([3c5d77c](https://github.com/skilbjo/config-rc/commit/3c5d77c0fb8b4c83ab34475da013c3a427c95a65))
36
+ * **deps:** bump actions/checkout from 4 to 5 ([#369](https://github.com/skilbjo/config-rc/issues/369)) ([4bc2d7d](https://github.com/skilbjo/config-rc/commit/4bc2d7df154654df5c9ddaa8fc6bbb39121116cf))
37
+ * **deps:** bump brace-expansion from 1.1.11 to 1.1.12 ([#373](https://github.com/skilbjo/config-rc/issues/373)) ([47486a3](https://github.com/skilbjo/config-rc/commit/47486a330c857778458b95cea18a5c462215d91e))
38
+ * **deps:** bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 ([#310](https://github.com/skilbjo/config-rc/issues/310)) ([75d8e96](https://github.com/skilbjo/config-rc/commit/75d8e96e2e42e65bb7a939acfdcde03c85fa38f2))
39
+ * **deps:** bump eslint-import-resolver-typescript from 3.8.3 to 4.0.0 ([#263](https://github.com/skilbjo/config-rc/issues/263)) ([f55d490](https://github.com/skilbjo/config-rc/commit/f55d4908bd5430a115e22f8f59b3494b8cb9f8b2))
40
+ * **deps:** bump eslint-import-resolver-typescript from 4.0.0 to 4.2.2 ([#267](https://github.com/skilbjo/config-rc/issues/267)) ([724d545](https://github.com/skilbjo/config-rc/commit/724d545c22d3614f5ad62639b27efc88914b3013))
41
+ * **deps:** bump eslint-import-resolver-typescript from 4.2.2 to 4.3.1 ([#276](https://github.com/skilbjo/config-rc/issues/276)) ([1e41a51](https://github.com/skilbjo/config-rc/commit/1e41a512de190a31e5a819fdfbb40c83b421bcfd))
42
+ * **deps:** bump eslint-import-resolver-typescript from 4.3.1 to 4.3.2 ([#285](https://github.com/skilbjo/config-rc/issues/285)) ([c092757](https://github.com/skilbjo/config-rc/commit/c092757a7944ad53400a2e503b71155c2b088d41))
43
+ * **deps:** bump eslint-import-resolver-typescript from 4.3.2 to 4.3.3 ([#294](https://github.com/skilbjo/config-rc/issues/294)) ([afd253e](https://github.com/skilbjo/config-rc/commit/afd253e90f80c567a92b6b676f86f9b712325781))
44
+ * **deps:** bump eslint-import-resolver-typescript from 4.3.3 to 4.3.4 ([#296](https://github.com/skilbjo/config-rc/issues/296)) ([49f0322](https://github.com/skilbjo/config-rc/commit/49f0322c78ebd8b4e19dd1cf03c843a24e723454))
45
+ * **deps:** bump eslint-import-resolver-typescript from 4.3.4 to 4.4.1 ([#318](https://github.com/skilbjo/config-rc/issues/318)) ([42a098a](https://github.com/skilbjo/config-rc/commit/42a098a666143ff183bae0e5a0e1733ef3a2e592))
46
+ * **deps:** bump eslint-import-resolver-typescript from 4.4.1 to 4.4.2 ([#321](https://github.com/skilbjo/config-rc/issues/321)) ([86c03e6](https://github.com/skilbjo/config-rc/commit/86c03e6f2c77fc1b3088dfef8249d6cd16a5feaf))
47
+ * **deps:** bump eslint-import-resolver-typescript from 4.4.2 to 4.4.3 ([#330](https://github.com/skilbjo/config-rc/issues/330)) ([76348e7](https://github.com/skilbjo/config-rc/commit/76348e7ea3df98ca9e530a6b66f1ae070b195348))
48
+ * **deps:** bump eslint-import-resolver-typescript from 4.4.3 to 4.4.4 ([#348](https://github.com/skilbjo/config-rc/issues/348)) ([5a796b6](https://github.com/skilbjo/config-rc/commit/5a796b69242ab9165b5f0c3215ac5f6a7e947b97))
49
+ * **deps:** bump eslint-plugin-import from 2.31.0 to 2.32.0 ([#344](https://github.com/skilbjo/config-rc/issues/344)) ([dc0f9cf](https://github.com/skilbjo/config-rc/commit/dc0f9cfbea620afad9b634e6e107fc34ea17d94a))
50
+ * **deps:** bump eslint-plugin-jest from 28.11.0 to 28.12.0 ([#323](https://github.com/skilbjo/config-rc/issues/323)) ([f396b9d](https://github.com/skilbjo/config-rc/commit/f396b9d667b973e3c40dd8bb257b7be7e85fa1df))
51
+ * **deps:** bump eslint-plugin-jest from 28.12.0 to 28.13.0 ([#333](https://github.com/skilbjo/config-rc/issues/333)) ([c08bd38](https://github.com/skilbjo/config-rc/commit/c08bd38ff233ad9eb82f4c534a907b2acedb3a31))
52
+ * **deps:** bump eslint-plugin-jest from 28.13.0 to 28.14.0 ([#336](https://github.com/skilbjo/config-rc/issues/336)) ([fa8cfb7](https://github.com/skilbjo/config-rc/commit/fa8cfb793f3fd120a82a93fd1963867383bb5a90))
53
+ * **deps:** bump eslint-plugin-n from 17.15.1 to 17.16.2 ([#259](https://github.com/skilbjo/config-rc/issues/259)) ([a94e801](https://github.com/skilbjo/config-rc/commit/a94e80167dea03adb493f485ae3501f6b61a5496))
54
+ * **deps:** bump eslint-plugin-n from 17.16.2 to 17.17.0 ([#277](https://github.com/skilbjo/config-rc/issues/277)) ([02bc0f2](https://github.com/skilbjo/config-rc/commit/02bc0f2a1c43099885041015c743cd6b9b9cf3c5))
55
+ * **deps:** bump eslint-plugin-n from 17.17.0 to 17.18.0 ([#306](https://github.com/skilbjo/config-rc/issues/306)) ([fbe407b](https://github.com/skilbjo/config-rc/commit/fbe407b915183fa29ec3f210d75b672f74502ab3))
56
+ * **deps:** bump eslint-plugin-n from 17.18.0 to 17.19.0 ([#331](https://github.com/skilbjo/config-rc/issues/331)) ([73b5178](https://github.com/skilbjo/config-rc/commit/73b51780775fda76af0d47e1add4f2048ee52e00))
57
+ * **deps:** bump eslint-plugin-n from 17.19.0 to 17.20.0 ([#334](https://github.com/skilbjo/config-rc/issues/334)) ([96c4317](https://github.com/skilbjo/config-rc/commit/96c431767d35d40abb708b3d7c0d3a662faf3dae))
58
+ * **deps:** bump eslint-plugin-n from 17.20.0 to 17.21.0 ([#353](https://github.com/skilbjo/config-rc/issues/353)) ([a3009ba](https://github.com/skilbjo/config-rc/commit/a3009ba6007f14d765c34438f24b48e418b31723))
59
+ * **deps:** bump eslint-plugin-n from 17.21.0 to 17.21.3 ([#360](https://github.com/skilbjo/config-rc/issues/360)) ([5d89254](https://github.com/skilbjo/config-rc/commit/5d89254914b1c8c78f84c16c6cf15178a1b680e6))
60
+ * **deps:** bump eslint-plugin-perfectionist from 4.10.1 to 4.11.0 ([#286](https://github.com/skilbjo/config-rc/issues/286)) ([fc7a7f0](https://github.com/skilbjo/config-rc/commit/fc7a7f03bc367c4d8578087b6e8cb3f471b5e0d9))
61
+ * **deps:** bump eslint-plugin-perfectionist from 4.11.0 to 4.12.3 ([#295](https://github.com/skilbjo/config-rc/issues/295)) ([26f6fa5](https://github.com/skilbjo/config-rc/commit/26f6fa5469220ad0e5d73c8e2b7f0dfffef89e5f))
62
+ * **deps:** bump eslint-plugin-perfectionist from 4.12.3 to 4.13.0 ([#315](https://github.com/skilbjo/config-rc/issues/315)) ([5935b02](https://github.com/skilbjo/config-rc/commit/5935b021e2586f3f651cfd07252c4799fd5d3429))
63
+ * **deps:** bump eslint-plugin-perfectionist from 4.13.0 to 4.14.0 ([#327](https://github.com/skilbjo/config-rc/issues/327)) ([b10123e](https://github.com/skilbjo/config-rc/commit/b10123e9fdebfe279430f19be48e90868600a244))
64
+ * **deps:** bump eslint-plugin-perfectionist from 4.14.0 to 4.15.0 ([#346](https://github.com/skilbjo/config-rc/issues/346)) ([6fcb486](https://github.com/skilbjo/config-rc/commit/6fcb48635477e2db84922ba2bfe897efa54de48f))
65
+ * **deps:** bump eslint-plugin-perfectionist from 4.9.0 to 4.10.1 ([#258](https://github.com/skilbjo/config-rc/issues/258)) ([776d4a3](https://github.com/skilbjo/config-rc/commit/776d4a3d3a69ead4677586125dfa49848c891122))
66
+ * **deps:** bump eslint-plugin-prettier from 5.2.3 to 5.2.5 ([#275](https://github.com/skilbjo/config-rc/issues/275)) ([8b4acba](https://github.com/skilbjo/config-rc/commit/8b4acbaa519a47ecd4ebc253a74ff9435a13696b))
67
+ * **deps:** bump eslint-plugin-prettier from 5.2.5 to 5.2.6 ([#282](https://github.com/skilbjo/config-rc/issues/282)) ([3623f35](https://github.com/skilbjo/config-rc/commit/3623f3559775e6102fbc14b67621fe81e02e1294))
68
+ * **deps:** bump eslint-plugin-prettier from 5.2.6 to 5.3.1 ([#302](https://github.com/skilbjo/config-rc/issues/302)) ([7e8d144](https://github.com/skilbjo/config-rc/commit/7e8d144bf468876124f8ce453648ef88c1e501f8))
69
+ * **deps:** bump eslint-plugin-prettier from 5.3.1 to 5.4.0 ([#308](https://github.com/skilbjo/config-rc/issues/308)) ([e96d306](https://github.com/skilbjo/config-rc/commit/e96d30656398d24d3941f9005edbd5e2ab23b9ea))
70
+ * **deps:** bump eslint-plugin-prettier from 5.4.0 to 5.4.1 ([#322](https://github.com/skilbjo/config-rc/issues/322)) ([eb8b2d8](https://github.com/skilbjo/config-rc/commit/eb8b2d8f985848e76dca05d7a2ceff7e5c3be4f3))
71
+ * **deps:** bump eslint-plugin-prettier from 5.4.1 to 5.5.0 ([#342](https://github.com/skilbjo/config-rc/issues/342)) ([676a147](https://github.com/skilbjo/config-rc/commit/676a1473fd62f0760c3890c02ed2ac305373d192))
72
+ * **deps:** bump eslint-plugin-prettier from 5.5.0 to 5.5.1 ([#352](https://github.com/skilbjo/config-rc/issues/352)) ([44428ad](https://github.com/skilbjo/config-rc/commit/44428ad196d00089d644e6d1439daca5f7cfa030))
73
+ * **deps:** bump eslint-plugin-prettier from 5.5.1 to 5.5.3 ([#359](https://github.com/skilbjo/config-rc/issues/359)) ([06c5391](https://github.com/skilbjo/config-rc/commit/06c5391df7defb777dfcd798d6ba0d84b50c10a0))
74
+ * **deps:** bump eslint-plugin-prettier from 5.5.3 to 5.5.4 ([#366](https://github.com/skilbjo/config-rc/issues/366)) ([bd67abd](https://github.com/skilbjo/config-rc/commit/bd67abd97d133baabb9c733a0f8a8bf66cd93ffd))
75
+ * **deps:** bump prettier from 3.5.3 to 3.6.0 ([#347](https://github.com/skilbjo/config-rc/issues/347)) ([76513c0](https://github.com/skilbjo/config-rc/commit/76513c0cf212cf9433a1449142058aab39b6acb5))
76
+ * **deps:** bump prettier from 3.6.0 to 3.6.2 ([#350](https://github.com/skilbjo/config-rc/issues/350)) ([2b3ba34](https://github.com/skilbjo/config-rc/commit/2b3ba34a00bda6bf3d816604be3b10c02af43757))
77
+ * **deps:** bump typescript from 5.8.2 to 5.8.3 ([#280](https://github.com/skilbjo/config-rc/issues/280)) ([1e90aee](https://github.com/skilbjo/config-rc/commit/1e90aee1996ff989607774349058e4c3ed2a6aa6))
78
+ * **deps:** bump typescript from 5.8.3 to 5.9.2 ([#363](https://github.com/skilbjo/config-rc/issues/363)) ([8e59532](https://github.com/skilbjo/config-rc/commit/8e59532954541e99576821b2faf26d3667eb1b8d))
79
+
1
80
  ## [1.0.23](https://github.com/skilbjo/config-rc/compare/v1.0.22...v1.0.23) (2025-03-05)
2
81
 
3
82
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@skilbjo/config-rc",
4
- "version": "1.0.23",
4
+ "version": "1.0.25",
5
5
  "description": "eslint, prettier, & tsconfig config",
6
6
  "main": "index.js",
7
7
  "private": false,
@@ -10,7 +10,7 @@
10
10
  "url": "git+https://github.com/skilbjo/config-rc.git"
11
11
  },
12
12
  "scripts": {
13
- "prepare": "if [[ -z $GITHUB_ACTIONS ]]; then npx husky install; fi",
13
+ "prepare": "if [ -z \"$GITHUB_ACTIONS\" ]; then npx husky install; fi",
14
14
  "eslint": "eslint .",
15
15
  "lint": "npm run eslint",
16
16
  "depcheck": "depcheck",
@@ -27,27 +27,27 @@
27
27
  },
28
28
  "homepage": "https://github.com/skilbjo/config-rc#readme",
29
29
  "dependencies": {
30
- "@tsconfig/node22": "22.0.0",
31
- "@types/jest": "29.5.14",
32
- "@typescript-eslint/eslint-plugin": "7.17.0",
30
+ "@tsconfig/node22": "22.0.2",
31
+ "@types/jest": "30.0.0",
32
+ "@typescript-eslint/eslint-plugin": "7.18.0",
33
33
  "@typescript-eslint/parser": "7.18.0",
34
34
  "eslint": "8.57.0",
35
35
  "eslint-config-prettier": "9.1.0",
36
36
  "eslint-config-typescript": "3.0.0",
37
- "eslint-import-resolver-typescript": "3.8.3",
38
- "eslint-plugin-import": "2.31.0",
39
- "eslint-plugin-jest": "28.11.0",
40
- "eslint-plugin-n": "17.15.1",
41
- "eslint-plugin-perfectionist": "4.9.0",
42
- "eslint-plugin-prettier": "5.2.3",
37
+ "eslint-import-resolver-typescript": "4.4.4",
38
+ "eslint-plugin-import": "2.32.0",
39
+ "eslint-plugin-jest": "28.14.0",
40
+ "eslint-plugin-n": "17.21.3",
41
+ "eslint-plugin-perfectionist": "4.15.0",
42
+ "eslint-plugin-prettier": "5.5.4",
43
43
  "eslint-plugin-security": "3.0.1",
44
- "prettier": "3.5.3",
45
- "typescript": "5.8.2"
44
+ "prettier": "3.6.2",
45
+ "typescript": "5.9.2"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@commitlint/cli": "19.3.0",
49
49
  "@commitlint/config-angular": "16.2.4",
50
- "@types/node": "22.13.8",
50
+ "@types/node": "24.3.0",
51
51
  "depcheck": "1.4.7",
52
52
  "husky": "8.0.1"
53
53
  },