@skilbjo/config-rc 1.0.23 → 1.0.26

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
 
@@ -9,17 +9,17 @@ defaults:
9
9
  run:
10
10
  shell: bash
11
11
 
12
- permissions:
13
- pull-requests: write
14
- contents: write
15
- id-token: write
16
-
17
12
  jobs:
18
13
  build-and-test:
19
14
  runs-on: ubuntu-latest
20
15
  timeout-minutes: 10
16
+ if: github.event.pull_request.head.repo.full_name == github.repository # Security: Only run on PRs from the same repository
17
+ permissions:
18
+ contents: read # Needed for checkout and npm install
19
+ pull-requests: read # Needed to read PR information
20
+
21
21
  steps:
22
- - uses: actions/checkout@v4
22
+ - uses: actions/checkout@v5
23
23
  with:
24
24
  ref: ${{ github.event.pull_request.head.sha }}
25
25
 
@@ -33,10 +33,6 @@ jobs:
33
33
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
34
 
35
35
  - run: make ci
36
- env:
37
- GITHUB_TOKEN: ${{ secrets.READ_ONLY_PAT }}
38
- NPM_TOKEN: ${{ secrets.READ_ONLY_PAT }}
39
- NODE_AUTH_TOKEN: ${{ secrets.READ_ONLY_PAT }}
40
36
 
41
37
  - name: Set up NPM authentication for dry release
42
38
  run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.ACTIONS_TOKEN }}" >> ~/.npmrc
@@ -59,9 +55,12 @@ jobs:
59
55
  runs-on: ubuntu-latest
60
56
  needs: build-and-test
61
57
  timeout-minutes: 2
58
+ permissions:
59
+ pull-requests: write
62
60
  if: ${{ github.actor == 'dependabot[bot]' }}
61
+
63
62
  steps:
64
- - uses: dependabot/fetch-metadata@v2.3.0
63
+ - uses: dependabot/fetch-metadata@v2.4.0
65
64
  with:
66
65
  github-token: ${{ secrets.GITHUB_TOKEN }}
67
66
  - name: Approve a PR
@@ -13,19 +13,19 @@ 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
+ if: github.repository == 'skilbjo/config-rc' # Security: Only run on pushes to the main repository
19
+ permissions:
20
+ packages: write
21
+ id-token: write # Required for npm provenance generation
22
22
 
23
23
  outputs:
24
24
  new_release_version: ${{ steps.semantic.outputs.new_release_version }}
25
25
  new_release_published: ${{ steps.semantic.outputs.new_release_published }}
26
26
 
27
27
  steps:
28
- - uses: actions/checkout@v4
28
+ - uses: actions/checkout@v5
29
29
  with:
30
30
  persist-credentials: false
31
31
  token: ${{ secrets.ACTIONS_TOKEN }}
@@ -35,10 +35,6 @@ jobs:
35
35
  node-version-file: .nvmrc
36
36
  cache: npm
37
37
 
38
- - run: npm ci
39
- env:
40
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
-
42
38
  - run: make ci
43
39
 
44
40
  - uses: cycjimmy/semantic-release-action@v4
@@ -64,11 +60,10 @@ jobs:
64
60
  if: steps.semantic.outputs.new_release_published == 'true'
65
61
  run: |
66
62
  # npm --no-git-tag-version version ${{ steps.semantic.outputs.new_release_version }}
67
- jq 'del(.publishConfig) | . + { publishConfig: { registry: "https://registry.npmjs.org/", "access": "public", "provenance": true } }' package.json >package2.json && mv package2.json package.json
63
+ npm run prepare-npm
68
64
 
69
65
  - name: Publish to NPM
70
66
  if: steps.semantic.outputs.new_release_published == 'true'
71
- uses: JS-DevTools/npm-publish@v3
72
- with:
73
- token: ${{ secrets.NPM_TOKEN }}
74
- access: public
67
+ run: |
68
+ npm install -g npm@latest # Ensure npm 11.5.1+ for trusted publishing
69
+ npm publish
package/CHANGELOG.md CHANGED
@@ -1,3 +1,89 @@
1
+ ## [1.0.26](https://github.com/skilbjo/config-rc/compare/v1.0.25...v1.0.26) (2025-08-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * trusted publishing with no token ([98bfa61](https://github.com/skilbjo/config-rc/commit/98bfa611e031e9fcf6c9a1b6363354552ddde513))
7
+
8
+ ## [1.0.25](https://github.com/skilbjo/config-rc/compare/v1.0.24...v1.0.25) (2025-08-29)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * enable provenance ([6062eb7](https://github.com/skilbjo/config-rc/commit/6062eb7c39a37873c824d33bc9d0232ee88c9d14))
14
+
15
+ ## [1.0.24](https://github.com/skilbjo/config-rc/compare/v1.0.23...v1.0.24) (2025-08-29)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **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))
21
+ * **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))
22
+ * **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))
23
+ * **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))
24
+ * **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))
25
+ * **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))
26
+ * **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))
27
+ * **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))
28
+ * **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))
29
+ * **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))
30
+ * **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))
31
+ * **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))
32
+ * **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))
33
+ * **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))
34
+ * **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))
35
+ * **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))
36
+ * **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))
37
+ * **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))
38
+ * **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))
39
+ * **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))
40
+ * **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))
41
+ * **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))
42
+ * **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))
43
+ * **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))
44
+ * **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))
45
+ * **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))
46
+ * **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))
47
+ * **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))
48
+ * **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))
49
+ * **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))
50
+ * **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))
51
+ * **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))
52
+ * **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))
53
+ * **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))
54
+ * **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))
55
+ * **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))
56
+ * **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))
57
+ * **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))
58
+ * **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))
59
+ * **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))
60
+ * **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))
61
+ * **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))
62
+ * **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))
63
+ * **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))
64
+ * **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))
65
+ * **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))
66
+ * **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))
67
+ * **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))
68
+ * **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))
69
+ * **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))
70
+ * **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))
71
+ * **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))
72
+ * **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))
73
+ * **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))
74
+ * **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))
75
+ * **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))
76
+ * **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))
77
+ * **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))
78
+ * **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))
79
+ * **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))
80
+ * **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))
81
+ * **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))
82
+ * **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))
83
+ * **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))
84
+ * **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))
85
+ * **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))
86
+
1
87
  ## [1.0.23](https://github.com/skilbjo/config-rc/compare/v1.0.22...v1.0.23) (2025-03-05)
2
88
 
3
89
 
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.26",
5
5
  "description": "eslint, prettier, & tsconfig config",
6
6
  "main": "index.js",
7
7
  "private": false,
@@ -10,11 +10,12 @@
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",
17
- "test": "echo \"Error: no test specified\" && exit 1"
17
+ "test": "echo \"Error: no test specified\" && exit 1",
18
+ "prepare-npm": "jq 'del(.publishConfig) | . + { publishConfig: { registry: \"https://registry.npmjs.org/\", access: \"public\", provenance: true } }' package.json >package2.json && mv package2.json package.json"
18
19
  },
19
20
  "keywords": [
20
21
  "eslint",
@@ -27,27 +28,27 @@
27
28
  },
28
29
  "homepage": "https://github.com/skilbjo/config-rc#readme",
29
30
  "dependencies": {
30
- "@tsconfig/node22": "22.0.0",
31
- "@types/jest": "29.5.14",
32
- "@typescript-eslint/eslint-plugin": "7.17.0",
31
+ "@tsconfig/node22": "22.0.2",
32
+ "@types/jest": "30.0.0",
33
+ "@typescript-eslint/eslint-plugin": "7.18.0",
33
34
  "@typescript-eslint/parser": "7.18.0",
34
35
  "eslint": "8.57.0",
35
36
  "eslint-config-prettier": "9.1.0",
36
37
  "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",
38
+ "eslint-import-resolver-typescript": "4.4.4",
39
+ "eslint-plugin-import": "2.32.0",
40
+ "eslint-plugin-jest": "28.14.0",
41
+ "eslint-plugin-n": "17.21.3",
42
+ "eslint-plugin-perfectionist": "4.15.0",
43
+ "eslint-plugin-prettier": "5.5.4",
43
44
  "eslint-plugin-security": "3.0.1",
44
- "prettier": "3.5.3",
45
- "typescript": "5.8.2"
45
+ "prettier": "3.6.2",
46
+ "typescript": "5.9.2"
46
47
  },
47
48
  "devDependencies": {
48
49
  "@commitlint/cli": "19.3.0",
49
50
  "@commitlint/config-angular": "16.2.4",
50
- "@types/node": "22.13.8",
51
+ "@types/node": "24.3.0",
51
52
  "depcheck": "1.4.7",
52
53
  "husky": "8.0.1"
53
54
  },