├── .commitlintrc
├── .editorconfig
├── .eslintrc
├── .github
├── dependabot.yml
└── workflows
│ ├── check-linked-issues.yml
│ ├── ci.yml
│ ├── notify-release.yml
│ └── release.yml
├── .gitignore
├── .husky
├── commit-msg
└── pre-commit
├── .nvmrc
├── .prettierrc
├── LICENSE
├── README.md
├── docs
├── annotation.png
└── summary.png
├── index.js
├── package-lock.json
├── package.json
└── test
├── e2e
└── compare.sh
├── package-tests
└── path.test.js
└── resources
├── expected.md
└── sample-tests
├── broken.test.js
├── nested.test.js
└── skip.test.js
/.commitlintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "@commitlint/config-conventional"
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | [*]
2 | end_of_line = lf
3 | insert_final_newline = true
4 | charset = utf-8
5 | indent_style = space
6 | indent_size = 2
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["eslint:recommended", "plugin:prettier/recommended"],
3 | "env": {
4 | "node": true,
5 | "es2021": true
6 | },
7 | "parserOptions": {
8 | "ecmaVersion": 2021,
9 | "sourceType": "module"
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | version: 2
2 | updates:
3 | - package-ecosystem: npm
4 | directory: /
5 | schedule:
6 | interval: weekly
7 | - package-ecosystem: github-actions
8 | directory: /
9 | schedule:
10 | interval: weekly
11 |
--------------------------------------------------------------------------------
/.github/workflows/check-linked-issues.yml:
--------------------------------------------------------------------------------
1 | name: Check linked issues
2 | 'on':
3 | pull_request_target:
4 | types:
5 | - opened
6 | - edited
7 | - reopened
8 | - synchronize
9 | jobs:
10 | check_pull_requests:
11 | runs-on: ubuntu-latest
12 | name: Check linked issues
13 | steps:
14 | - uses: nearform-actions/github-action-check-linked-issues@v1
15 | id: check-linked-issues
16 | with:
17 | exclude-branches: release/**, dependabot/**
18 | permissions:
19 | issues: read
20 | pull-requests: write
21 |
--------------------------------------------------------------------------------
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
1 | name: Continuous Integration
2 |
3 | on:
4 | push:
5 | branches:
6 | - master
7 | pull_request:
8 |
9 | jobs:
10 | test:
11 | name: Lint and test
12 | runs-on: ubuntu-latest
13 | steps:
14 | - uses: actions/checkout@v4
15 | - uses: actions/setup-node@v4
16 | with:
17 | node-version-file: '.nvmrc'
18 | - run: |
19 | npm ci
20 | npm run lint
21 | npm test
22 |
23 | automerge:
24 | name: Merge dependabot's PRs
25 | needs: test
26 | runs-on: ubuntu-latest
27 | permissions:
28 | pull-requests: write
29 | contents: write
30 | steps:
31 | - uses: fastify/github-action-merge-dependabot@v3
32 |
--------------------------------------------------------------------------------
/.github/workflows/notify-release.yml:
--------------------------------------------------------------------------------
1 | name: Notify release
2 | 'on':
3 | workflow_dispatch:
4 | schedule:
5 | - cron: 30 8 * * *
6 | release:
7 | types:
8 | - published
9 | issues:
10 | types:
11 | - closed
12 | jobs:
13 | setup:
14 | runs-on: ubuntu-latest
15 | steps:
16 | - uses: nearform-actions/github-action-notify-release@v1
17 | permissions:
18 | issues: write
19 | contents: read
20 |
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | name: release
2 | on:
3 | workflow_dispatch:
4 | inputs:
5 | semver:
6 | description: The semver to use
7 | required: true
8 | default: patch
9 | type: choice
10 | options:
11 | - patch
12 | - minor
13 | - major
14 | pull_request:
15 | types: [closed]
16 |
17 | jobs:
18 | release:
19 | runs-on: ubuntu-latest
20 | permissions:
21 | contents: write
22 | issues: write
23 | pull-requests: write
24 | id-token: write
25 | steps:
26 | - uses: nearform-actions/optic-release-automation-action@v4
27 | with:
28 | semver: ${{ github.event.inputs.semver }}
29 | commit-message: 'chore: release {version}'
30 | npm-token: >-
31 | ${{ secrets[format('NPM_TOKEN_{0}', github.actor)] ||
32 | secrets.NPM_TOKEN }}
33 | optic-token: >-
34 | ${{ secrets[format('OPTIC_TOKEN_{0}', github.actor)] ||
35 | secrets.OPTIC_TOKEN }}
36 | build-command: npm ci
37 | provenance: true
38 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .eslintcache
3 |
4 | # JetBrains IDEs
5 | .idea
6 | # Visual Studio Code
7 | .vscode
8 |
9 | # OS X
10 | .DS_Store
11 |
--------------------------------------------------------------------------------
/.husky/commit-msg:
--------------------------------------------------------------------------------
1 | npx --no -- commitlint --edit $1
2 |
--------------------------------------------------------------------------------
/.husky/pre-commit:
--------------------------------------------------------------------------------
1 | npx lint-staged
2 |
--------------------------------------------------------------------------------
/.nvmrc:
--------------------------------------------------------------------------------
1 | 19
2 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": false,
3 | "singleQuote": true,
4 | "arrowParens": "avoid",
5 | "trailingComma": "none"
6 | }
7 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023 NearForm
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # node-test-github-reporter
2 |
3 | 
4 |
5 | A GitHub test reporter for the Node.js test runner
6 |
7 | 
8 |
9 | 
10 |
11 | ## Installation
12 |
13 | ```shell
14 | npm i -D node-test-github-reporter
15 | ```
16 |
17 | ## Usage
18 |
19 | ```shell
20 | node --test --test-reporter node-test-github-reporter
21 | ```
22 |
23 | You can use it in conjunction with another test report to also get the output in the logs:
24 |
25 | ```shell
26 | node --test --test-reporter spec --test-reporter-destination stdout --test-reporter node-test-github-reporter --test-reporter-destination stdout
27 | ```
28 |
29 | [](https://www.nearform.com/contact/?utm_source=open-source&utm_medium=banner&utm_campaign=os-project-pages)
30 |
--------------------------------------------------------------------------------
/docs/annotation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nearform/node-test-github-reporter/e6d18ec4b08c824387ef0fafbb55fffaf6902163/docs/annotation.png
--------------------------------------------------------------------------------
/docs/summary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nearform/node-test-github-reporter/e6d18ec4b08c824387ef0fafbb55fffaf6902163/docs/summary.png
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | import { summary, error as annotateError } from '@actions/core'
2 | import ErrorStackParser from 'error-stack-parser'
3 | import parseReport from 'node-test-parser'
4 | import url from 'url'
5 | import StackUtils from 'stack-utils'
6 |
7 | const workspace = process.env.GITHUB_WORKSPACE
8 | const workspacePrefixRegex = new RegExp(`^${workspace}`)
9 |
10 | const stackUtils = new StackUtils({
11 | cwd: process.cwd(),
12 | internals: StackUtils.nodeInternals()
13 | })
14 |
15 | export default async function* githubSummaryReporter(source) {
16 | const report = await parseReport(source)
17 | const tests = report.tests
18 |
19 | const testCounters = {
20 | passed: 0,
21 | failed: 0,
22 | skipped: 0
23 | }
24 |
25 | const tableHeader = [
26 | { data: 'Passed', header: true },
27 | { data: 'Failed', header: true },
28 | { data: 'Skipped', header: true },
29 | { data: 'Duration', header: true }
30 | ]
31 |
32 | const reportDetails = testDetails(testCounters, { tests: tests })
33 |
34 | const tableRow = [
35 | `${testCounters.passed}`,
36 | `${testCounters.failed}`,
37 | `${testCounters.skipped}`,
38 | `${parseInt(report.duration)}ms`
39 | ]
40 |
41 | summary
42 | .addHeading('Node.js Test Results', 2)
43 | .addTable([tableHeader, tableRow])
44 | .addHeading('Details', 3)
45 | .addRaw(reportDetails)
46 | .write()
47 |
48 | yield ''
49 | }
50 |
51 | function testDetails(testCounters, test) {
52 | if (!test.tests.length) {
53 | return formatMessage(testCounters, test)
54 | }
55 |
56 | return test.tests
57 | .map(test =>
58 | formatDetails(
59 | `${statusEmoji(test)} ${test.name}`,
60 | testDetails(testCounters, test)
61 | )
62 | )
63 | .join('\n')
64 | }
65 |
66 | function formatMessage(testCounters, test) {
67 | if (test.skip) {
68 | testCounters.skipped++
69 | return 'Test skipped'
70 | }
71 |
72 | const error = test.error || test.failure
73 | if (!error) {
74 | testCounters.passed++
75 | return 'Test passed'
76 | }
77 | testCounters.failed++
78 |
79 | let errorMessage = '\n\n```\n' + error.message + '\n```'
80 |
81 | if (test.diagnostic) {
82 | errorMessage += `\n\n${test.diagnostic}`
83 | }
84 |
85 | if (error.cause && error.cause.stack) {
86 | const cleanStack = stackUtils.clean(error.cause.stack)
87 | errorMessage += `\n\nStack:\n\`\`\`\n${cleanStack}\`\`\`\n`
88 |
89 | const errorLocation = findErrorLocation(error.cause)
90 | if (errorLocation) {
91 | annotateError(error, errorLocation)
92 | }
93 | }
94 |
95 | return errorMessage
96 | }
97 |
98 | function formatDetails(heading, content) {
99 | return `
100 | ${heading}
101 |
102 | ${content}
103 |
104 | `
105 | }
106 |
107 | function statusEmoji(test) {
108 | if (test.failure || test.error) {
109 | return ':x:'
110 | } else if (test.skip) {
111 | return ':leftwards_arrow_with_hook:'
112 | } else {
113 | return ':white_check_mark:'
114 | }
115 | }
116 |
117 | function findErrorLocation(error) {
118 | const [firstFrame] = ErrorStackParser.parse(error)
119 | if (!firstFrame) {
120 | return
121 | }
122 |
123 | return {
124 | file: getRelativeFilePath(firstFrame.fileName),
125 | startLine: firstFrame.lineNumber,
126 | startColumn: firstFrame.columnNumber
127 | }
128 | }
129 |
130 | export function getSafePath(path) {
131 | if (path.startsWith('file')) {
132 | return path
133 | }
134 | return url.pathToFileURL(path).href
135 | }
136 |
137 | export function getRelativeFilePath(path) {
138 | const filePath = getSafePath(path)
139 | return new URL(filePath).pathname
140 | .replace(workspacePrefixRegex, '')
141 | .replace(/^\//, '')
142 | }
143 |
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "node-test-github-reporter",
3 | "version": "1.3.1",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "node-test-github-reporter",
9 | "version": "1.3.1",
10 | "license": "MIT",
11 | "dependencies": {
12 | "@actions/core": "^1.10.0",
13 | "error-stack-parser": "^2.1.4",
14 | "node-test-parser": "^3.0.0",
15 | "stack-utils": "^2.0.6"
16 | },
17 | "devDependencies": {
18 | "@commitlint/cli": "^19.0.3",
19 | "@commitlint/config-conventional": "^19.0.3",
20 | "eslint": "^8.35.0",
21 | "eslint-config-prettier": "^10.0.1",
22 | "eslint-plugin-prettier": "5.4.0",
23 | "husky": "^9.0.11",
24 | "lint-staged": "^15.0.1",
25 | "prettier": "^3.0.3"
26 | }
27 | },
28 | "node_modules/@aashutoshrathi/word-wrap": {
29 | "version": "1.2.6",
30 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
31 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
32 | "dev": true,
33 | "engines": {
34 | "node": ">=0.10.0"
35 | }
36 | },
37 | "node_modules/@actions/core": {
38 | "version": "1.11.1",
39 | "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.11.1.tgz",
40 | "integrity": "sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==",
41 | "dependencies": {
42 | "@actions/exec": "^1.1.1",
43 | "@actions/http-client": "^2.0.1"
44 | }
45 | },
46 | "node_modules/@actions/exec": {
47 | "version": "1.1.1",
48 | "resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.1.1.tgz",
49 | "integrity": "sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==",
50 | "dependencies": {
51 | "@actions/io": "^1.0.1"
52 | }
53 | },
54 | "node_modules/@actions/http-client": {
55 | "version": "2.1.0",
56 | "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.1.0.tgz",
57 | "integrity": "sha512-BonhODnXr3amchh4qkmjPMUO8mFi/zLaaCeCAJZqch8iQqyDnVIkySjB38VHAC8IJ+bnlgfOqlhpyCUZHlQsqw==",
58 | "dependencies": {
59 | "tunnel": "^0.0.6"
60 | }
61 | },
62 | "node_modules/@actions/io": {
63 | "version": "1.1.3",
64 | "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.3.tgz",
65 | "integrity": "sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q=="
66 | },
67 | "node_modules/@babel/code-frame": {
68 | "version": "7.27.1",
69 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
70 | "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
71 | "dev": true,
72 | "license": "MIT",
73 | "dependencies": {
74 | "@babel/helper-validator-identifier": "^7.27.1",
75 | "js-tokens": "^4.0.0",
76 | "picocolors": "^1.1.1"
77 | },
78 | "engines": {
79 | "node": ">=6.9.0"
80 | }
81 | },
82 | "node_modules/@babel/helper-validator-identifier": {
83 | "version": "7.27.1",
84 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
85 | "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
86 | "dev": true,
87 | "license": "MIT",
88 | "engines": {
89 | "node": ">=6.9.0"
90 | }
91 | },
92 | "node_modules/@commitlint/cli": {
93 | "version": "19.8.1",
94 | "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.8.1.tgz",
95 | "integrity": "sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==",
96 | "dev": true,
97 | "license": "MIT",
98 | "dependencies": {
99 | "@commitlint/format": "^19.8.1",
100 | "@commitlint/lint": "^19.8.1",
101 | "@commitlint/load": "^19.8.1",
102 | "@commitlint/read": "^19.8.1",
103 | "@commitlint/types": "^19.8.1",
104 | "tinyexec": "^1.0.0",
105 | "yargs": "^17.0.0"
106 | },
107 | "bin": {
108 | "commitlint": "cli.js"
109 | },
110 | "engines": {
111 | "node": ">=v18"
112 | }
113 | },
114 | "node_modules/@commitlint/config-conventional": {
115 | "version": "19.8.0",
116 | "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.8.0.tgz",
117 | "integrity": "sha512-9I2kKJwcAPwMoAj38hwqFXG0CzS2Kj+SAByPUQ0SlHTfb7VUhYVmo7G2w2tBrqmOf7PFd6MpZ/a1GQJo8na8kw==",
118 | "dev": true,
119 | "license": "MIT",
120 | "dependencies": {
121 | "@commitlint/types": "^19.8.0",
122 | "conventional-changelog-conventionalcommits": "^7.0.2"
123 | },
124 | "engines": {
125 | "node": ">=v18"
126 | }
127 | },
128 | "node_modules/@commitlint/config-validator": {
129 | "version": "19.8.1",
130 | "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.8.1.tgz",
131 | "integrity": "sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ==",
132 | "dev": true,
133 | "license": "MIT",
134 | "dependencies": {
135 | "@commitlint/types": "^19.8.1",
136 | "ajv": "^8.11.0"
137 | },
138 | "engines": {
139 | "node": ">=v18"
140 | }
141 | },
142 | "node_modules/@commitlint/ensure": {
143 | "version": "19.8.1",
144 | "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.8.1.tgz",
145 | "integrity": "sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw==",
146 | "dev": true,
147 | "license": "MIT",
148 | "dependencies": {
149 | "@commitlint/types": "^19.8.1",
150 | "lodash.camelcase": "^4.3.0",
151 | "lodash.kebabcase": "^4.1.1",
152 | "lodash.snakecase": "^4.1.1",
153 | "lodash.startcase": "^4.4.0",
154 | "lodash.upperfirst": "^4.3.1"
155 | },
156 | "engines": {
157 | "node": ">=v18"
158 | }
159 | },
160 | "node_modules/@commitlint/execute-rule": {
161 | "version": "19.8.1",
162 | "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.8.1.tgz",
163 | "integrity": "sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA==",
164 | "dev": true,
165 | "license": "MIT",
166 | "engines": {
167 | "node": ">=v18"
168 | }
169 | },
170 | "node_modules/@commitlint/format": {
171 | "version": "19.8.1",
172 | "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.8.1.tgz",
173 | "integrity": "sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw==",
174 | "dev": true,
175 | "license": "MIT",
176 | "dependencies": {
177 | "@commitlint/types": "^19.8.1",
178 | "chalk": "^5.3.0"
179 | },
180 | "engines": {
181 | "node": ">=v18"
182 | }
183 | },
184 | "node_modules/@commitlint/format/node_modules/chalk": {
185 | "version": "5.4.1",
186 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
187 | "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
188 | "dev": true,
189 | "license": "MIT",
190 | "engines": {
191 | "node": "^12.17.0 || ^14.13 || >=16.0.0"
192 | },
193 | "funding": {
194 | "url": "https://github.com/chalk/chalk?sponsor=1"
195 | }
196 | },
197 | "node_modules/@commitlint/is-ignored": {
198 | "version": "19.8.1",
199 | "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.8.1.tgz",
200 | "integrity": "sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg==",
201 | "dev": true,
202 | "license": "MIT",
203 | "dependencies": {
204 | "@commitlint/types": "^19.8.1",
205 | "semver": "^7.6.0"
206 | },
207 | "engines": {
208 | "node": ">=v18"
209 | }
210 | },
211 | "node_modules/@commitlint/lint": {
212 | "version": "19.8.1",
213 | "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.8.1.tgz",
214 | "integrity": "sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw==",
215 | "dev": true,
216 | "license": "MIT",
217 | "dependencies": {
218 | "@commitlint/is-ignored": "^19.8.1",
219 | "@commitlint/parse": "^19.8.1",
220 | "@commitlint/rules": "^19.8.1",
221 | "@commitlint/types": "^19.8.1"
222 | },
223 | "engines": {
224 | "node": ">=v18"
225 | }
226 | },
227 | "node_modules/@commitlint/load": {
228 | "version": "19.8.1",
229 | "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.8.1.tgz",
230 | "integrity": "sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A==",
231 | "dev": true,
232 | "license": "MIT",
233 | "dependencies": {
234 | "@commitlint/config-validator": "^19.8.1",
235 | "@commitlint/execute-rule": "^19.8.1",
236 | "@commitlint/resolve-extends": "^19.8.1",
237 | "@commitlint/types": "^19.8.1",
238 | "chalk": "^5.3.0",
239 | "cosmiconfig": "^9.0.0",
240 | "cosmiconfig-typescript-loader": "^6.1.0",
241 | "lodash.isplainobject": "^4.0.6",
242 | "lodash.merge": "^4.6.2",
243 | "lodash.uniq": "^4.5.0"
244 | },
245 | "engines": {
246 | "node": ">=v18"
247 | }
248 | },
249 | "node_modules/@commitlint/load/node_modules/chalk": {
250 | "version": "5.4.1",
251 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
252 | "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
253 | "dev": true,
254 | "license": "MIT",
255 | "engines": {
256 | "node": "^12.17.0 || ^14.13 || >=16.0.0"
257 | },
258 | "funding": {
259 | "url": "https://github.com/chalk/chalk?sponsor=1"
260 | }
261 | },
262 | "node_modules/@commitlint/message": {
263 | "version": "19.8.1",
264 | "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.8.1.tgz",
265 | "integrity": "sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg==",
266 | "dev": true,
267 | "license": "MIT",
268 | "engines": {
269 | "node": ">=v18"
270 | }
271 | },
272 | "node_modules/@commitlint/parse": {
273 | "version": "19.8.1",
274 | "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.8.1.tgz",
275 | "integrity": "sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw==",
276 | "dev": true,
277 | "license": "MIT",
278 | "dependencies": {
279 | "@commitlint/types": "^19.8.1",
280 | "conventional-changelog-angular": "^7.0.0",
281 | "conventional-commits-parser": "^5.0.0"
282 | },
283 | "engines": {
284 | "node": ">=v18"
285 | }
286 | },
287 | "node_modules/@commitlint/read": {
288 | "version": "19.8.1",
289 | "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.8.1.tgz",
290 | "integrity": "sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ==",
291 | "dev": true,
292 | "license": "MIT",
293 | "dependencies": {
294 | "@commitlint/top-level": "^19.8.1",
295 | "@commitlint/types": "^19.8.1",
296 | "git-raw-commits": "^4.0.0",
297 | "minimist": "^1.2.8",
298 | "tinyexec": "^1.0.0"
299 | },
300 | "engines": {
301 | "node": ">=v18"
302 | }
303 | },
304 | "node_modules/@commitlint/resolve-extends": {
305 | "version": "19.8.1",
306 | "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.8.1.tgz",
307 | "integrity": "sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg==",
308 | "dev": true,
309 | "license": "MIT",
310 | "dependencies": {
311 | "@commitlint/config-validator": "^19.8.1",
312 | "@commitlint/types": "^19.8.1",
313 | "global-directory": "^4.0.1",
314 | "import-meta-resolve": "^4.0.0",
315 | "lodash.mergewith": "^4.6.2",
316 | "resolve-from": "^5.0.0"
317 | },
318 | "engines": {
319 | "node": ">=v18"
320 | }
321 | },
322 | "node_modules/@commitlint/rules": {
323 | "version": "19.8.1",
324 | "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.8.1.tgz",
325 | "integrity": "sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw==",
326 | "dev": true,
327 | "license": "MIT",
328 | "dependencies": {
329 | "@commitlint/ensure": "^19.8.1",
330 | "@commitlint/message": "^19.8.1",
331 | "@commitlint/to-lines": "^19.8.1",
332 | "@commitlint/types": "^19.8.1"
333 | },
334 | "engines": {
335 | "node": ">=v18"
336 | }
337 | },
338 | "node_modules/@commitlint/to-lines": {
339 | "version": "19.8.1",
340 | "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.8.1.tgz",
341 | "integrity": "sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg==",
342 | "dev": true,
343 | "license": "MIT",
344 | "engines": {
345 | "node": ">=v18"
346 | }
347 | },
348 | "node_modules/@commitlint/top-level": {
349 | "version": "19.8.1",
350 | "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.8.1.tgz",
351 | "integrity": "sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw==",
352 | "dev": true,
353 | "license": "MIT",
354 | "dependencies": {
355 | "find-up": "^7.0.0"
356 | },
357 | "engines": {
358 | "node": ">=v18"
359 | }
360 | },
361 | "node_modules/@commitlint/top-level/node_modules/find-up": {
362 | "version": "7.0.0",
363 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz",
364 | "integrity": "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==",
365 | "dev": true,
366 | "license": "MIT",
367 | "dependencies": {
368 | "locate-path": "^7.2.0",
369 | "path-exists": "^5.0.0",
370 | "unicorn-magic": "^0.1.0"
371 | },
372 | "engines": {
373 | "node": ">=18"
374 | },
375 | "funding": {
376 | "url": "https://github.com/sponsors/sindresorhus"
377 | }
378 | },
379 | "node_modules/@commitlint/top-level/node_modules/locate-path": {
380 | "version": "7.2.0",
381 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz",
382 | "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
383 | "dev": true,
384 | "license": "MIT",
385 | "dependencies": {
386 | "p-locate": "^6.0.0"
387 | },
388 | "engines": {
389 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
390 | },
391 | "funding": {
392 | "url": "https://github.com/sponsors/sindresorhus"
393 | }
394 | },
395 | "node_modules/@commitlint/top-level/node_modules/p-limit": {
396 | "version": "4.0.0",
397 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz",
398 | "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==",
399 | "dev": true,
400 | "license": "MIT",
401 | "dependencies": {
402 | "yocto-queue": "^1.0.0"
403 | },
404 | "engines": {
405 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
406 | },
407 | "funding": {
408 | "url": "https://github.com/sponsors/sindresorhus"
409 | }
410 | },
411 | "node_modules/@commitlint/top-level/node_modules/p-locate": {
412 | "version": "6.0.0",
413 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz",
414 | "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==",
415 | "dev": true,
416 | "license": "MIT",
417 | "dependencies": {
418 | "p-limit": "^4.0.0"
419 | },
420 | "engines": {
421 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
422 | },
423 | "funding": {
424 | "url": "https://github.com/sponsors/sindresorhus"
425 | }
426 | },
427 | "node_modules/@commitlint/top-level/node_modules/path-exists": {
428 | "version": "5.0.0",
429 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz",
430 | "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==",
431 | "dev": true,
432 | "license": "MIT",
433 | "engines": {
434 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
435 | }
436 | },
437 | "node_modules/@commitlint/top-level/node_modules/yocto-queue": {
438 | "version": "1.2.1",
439 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz",
440 | "integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==",
441 | "dev": true,
442 | "license": "MIT",
443 | "engines": {
444 | "node": ">=12.20"
445 | },
446 | "funding": {
447 | "url": "https://github.com/sponsors/sindresorhus"
448 | }
449 | },
450 | "node_modules/@commitlint/types": {
451 | "version": "19.8.1",
452 | "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.8.1.tgz",
453 | "integrity": "sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw==",
454 | "dev": true,
455 | "license": "MIT",
456 | "dependencies": {
457 | "@types/conventional-commits-parser": "^5.0.0",
458 | "chalk": "^5.3.0"
459 | },
460 | "engines": {
461 | "node": ">=v18"
462 | }
463 | },
464 | "node_modules/@commitlint/types/node_modules/chalk": {
465 | "version": "5.3.0",
466 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
467 | "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
468 | "dev": true,
469 | "engines": {
470 | "node": "^12.17.0 || ^14.13 || >=16.0.0"
471 | },
472 | "funding": {
473 | "url": "https://github.com/chalk/chalk?sponsor=1"
474 | }
475 | },
476 | "node_modules/@eslint-community/eslint-utils": {
477 | "version": "4.2.0",
478 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz",
479 | "integrity": "sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==",
480 | "dev": true,
481 | "dependencies": {
482 | "eslint-visitor-keys": "^3.3.0"
483 | },
484 | "engines": {
485 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
486 | },
487 | "peerDependencies": {
488 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
489 | }
490 | },
491 | "node_modules/@eslint-community/regexpp": {
492 | "version": "4.6.2",
493 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
494 | "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==",
495 | "dev": true,
496 | "engines": {
497 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
498 | }
499 | },
500 | "node_modules/@eslint/eslintrc": {
501 | "version": "2.1.4",
502 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
503 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
504 | "dev": true,
505 | "dependencies": {
506 | "ajv": "^6.12.4",
507 | "debug": "^4.3.2",
508 | "espree": "^9.6.0",
509 | "globals": "^13.19.0",
510 | "ignore": "^5.2.0",
511 | "import-fresh": "^3.2.1",
512 | "js-yaml": "^4.1.0",
513 | "minimatch": "^3.1.2",
514 | "strip-json-comments": "^3.1.1"
515 | },
516 | "engines": {
517 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
518 | },
519 | "funding": {
520 | "url": "https://opencollective.com/eslint"
521 | }
522 | },
523 | "node_modules/@eslint/eslintrc/node_modules/ajv": {
524 | "version": "6.12.6",
525 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
526 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
527 | "dev": true,
528 | "dependencies": {
529 | "fast-deep-equal": "^3.1.1",
530 | "fast-json-stable-stringify": "^2.0.0",
531 | "json-schema-traverse": "^0.4.1",
532 | "uri-js": "^4.2.2"
533 | },
534 | "funding": {
535 | "type": "github",
536 | "url": "https://github.com/sponsors/epoberezkin"
537 | }
538 | },
539 | "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": {
540 | "version": "0.4.1",
541 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
542 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
543 | "dev": true
544 | },
545 | "node_modules/@eslint/js": {
546 | "version": "8.57.0",
547 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
548 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
549 | "dev": true,
550 | "engines": {
551 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
552 | }
553 | },
554 | "node_modules/@humanwhocodes/config-array": {
555 | "version": "0.11.14",
556 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
557 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
558 | "dev": true,
559 | "dependencies": {
560 | "@humanwhocodes/object-schema": "^2.0.2",
561 | "debug": "^4.3.1",
562 | "minimatch": "^3.0.5"
563 | },
564 | "engines": {
565 | "node": ">=10.10.0"
566 | }
567 | },
568 | "node_modules/@humanwhocodes/module-importer": {
569 | "version": "1.0.1",
570 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
571 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
572 | "dev": true,
573 | "engines": {
574 | "node": ">=12.22"
575 | },
576 | "funding": {
577 | "type": "github",
578 | "url": "https://github.com/sponsors/nzakas"
579 | }
580 | },
581 | "node_modules/@humanwhocodes/object-schema": {
582 | "version": "2.0.2",
583 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz",
584 | "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
585 | "dev": true
586 | },
587 | "node_modules/@nodelib/fs.scandir": {
588 | "version": "2.1.5",
589 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
590 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
591 | "dev": true,
592 | "dependencies": {
593 | "@nodelib/fs.stat": "2.0.5",
594 | "run-parallel": "^1.1.9"
595 | },
596 | "engines": {
597 | "node": ">= 8"
598 | }
599 | },
600 | "node_modules/@nodelib/fs.stat": {
601 | "version": "2.0.5",
602 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
603 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
604 | "dev": true,
605 | "engines": {
606 | "node": ">= 8"
607 | }
608 | },
609 | "node_modules/@nodelib/fs.walk": {
610 | "version": "1.2.8",
611 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
612 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
613 | "dev": true,
614 | "dependencies": {
615 | "@nodelib/fs.scandir": "2.1.5",
616 | "fastq": "^1.6.0"
617 | },
618 | "engines": {
619 | "node": ">= 8"
620 | }
621 | },
622 | "node_modules/@pkgr/core": {
623 | "version": "0.2.1",
624 | "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.1.tgz",
625 | "integrity": "sha512-VzgHzGblFmUeBmmrk55zPyrQIArQN4vujc9shWytaPdB3P7qhi0cpaiKIr7tlCmFv2lYUwnLospIqjL9ZSAhhg==",
626 | "dev": true,
627 | "license": "MIT",
628 | "engines": {
629 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
630 | },
631 | "funding": {
632 | "url": "https://opencollective.com/unts"
633 | }
634 | },
635 | "node_modules/@types/conventional-commits-parser": {
636 | "version": "5.0.0",
637 | "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz",
638 | "integrity": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==",
639 | "dev": true,
640 | "dependencies": {
641 | "@types/node": "*"
642 | }
643 | },
644 | "node_modules/@types/node": {
645 | "version": "20.11.19",
646 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz",
647 | "integrity": "sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==",
648 | "dev": true,
649 | "dependencies": {
650 | "undici-types": "~5.26.4"
651 | }
652 | },
653 | "node_modules/@ungap/structured-clone": {
654 | "version": "1.2.0",
655 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
656 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
657 | "dev": true
658 | },
659 | "node_modules/acorn": {
660 | "version": "8.11.2",
661 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz",
662 | "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==",
663 | "dev": true,
664 | "bin": {
665 | "acorn": "bin/acorn"
666 | },
667 | "engines": {
668 | "node": ">=0.4.0"
669 | }
670 | },
671 | "node_modules/acorn-jsx": {
672 | "version": "5.3.2",
673 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
674 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
675 | "dev": true,
676 | "peerDependencies": {
677 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
678 | }
679 | },
680 | "node_modules/ajv": {
681 | "version": "8.17.1",
682 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
683 | "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
684 | "dev": true,
685 | "license": "MIT",
686 | "dependencies": {
687 | "fast-deep-equal": "^3.1.3",
688 | "fast-uri": "^3.0.1",
689 | "json-schema-traverse": "^1.0.0",
690 | "require-from-string": "^2.0.2"
691 | },
692 | "funding": {
693 | "type": "github",
694 | "url": "https://github.com/sponsors/epoberezkin"
695 | }
696 | },
697 | "node_modules/ansi-escapes": {
698 | "version": "7.0.0",
699 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz",
700 | "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==",
701 | "dev": true,
702 | "dependencies": {
703 | "environment": "^1.0.0"
704 | },
705 | "engines": {
706 | "node": ">=18"
707 | },
708 | "funding": {
709 | "url": "https://github.com/sponsors/sindresorhus"
710 | }
711 | },
712 | "node_modules/ansi-regex": {
713 | "version": "5.0.1",
714 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
715 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
716 | "dev": true,
717 | "engines": {
718 | "node": ">=8"
719 | }
720 | },
721 | "node_modules/ansi-styles": {
722 | "version": "4.3.0",
723 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
724 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
725 | "dev": true,
726 | "dependencies": {
727 | "color-convert": "^2.0.1"
728 | },
729 | "engines": {
730 | "node": ">=8"
731 | },
732 | "funding": {
733 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
734 | }
735 | },
736 | "node_modules/argparse": {
737 | "version": "2.0.1",
738 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
739 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
740 | "dev": true
741 | },
742 | "node_modules/array-ify": {
743 | "version": "1.0.0",
744 | "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz",
745 | "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==",
746 | "dev": true
747 | },
748 | "node_modules/balanced-match": {
749 | "version": "1.0.2",
750 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
751 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
752 | "dev": true
753 | },
754 | "node_modules/brace-expansion": {
755 | "version": "1.1.11",
756 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
757 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
758 | "dev": true,
759 | "dependencies": {
760 | "balanced-match": "^1.0.0",
761 | "concat-map": "0.0.1"
762 | }
763 | },
764 | "node_modules/braces": {
765 | "version": "3.0.3",
766 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
767 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
768 | "dev": true,
769 | "dependencies": {
770 | "fill-range": "^7.1.1"
771 | },
772 | "engines": {
773 | "node": ">=8"
774 | }
775 | },
776 | "node_modules/callsites": {
777 | "version": "3.1.0",
778 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
779 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
780 | "dev": true,
781 | "engines": {
782 | "node": ">=6"
783 | }
784 | },
785 | "node_modules/chalk": {
786 | "version": "4.1.2",
787 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
788 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
789 | "dev": true,
790 | "dependencies": {
791 | "ansi-styles": "^4.1.0",
792 | "supports-color": "^7.1.0"
793 | },
794 | "engines": {
795 | "node": ">=10"
796 | },
797 | "funding": {
798 | "url": "https://github.com/chalk/chalk?sponsor=1"
799 | }
800 | },
801 | "node_modules/cli-cursor": {
802 | "version": "5.0.0",
803 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz",
804 | "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
805 | "dev": true,
806 | "dependencies": {
807 | "restore-cursor": "^5.0.0"
808 | },
809 | "engines": {
810 | "node": ">=18"
811 | },
812 | "funding": {
813 | "url": "https://github.com/sponsors/sindresorhus"
814 | }
815 | },
816 | "node_modules/cli-truncate": {
817 | "version": "4.0.0",
818 | "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz",
819 | "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==",
820 | "dev": true,
821 | "dependencies": {
822 | "slice-ansi": "^5.0.0",
823 | "string-width": "^7.0.0"
824 | },
825 | "engines": {
826 | "node": ">=18"
827 | },
828 | "funding": {
829 | "url": "https://github.com/sponsors/sindresorhus"
830 | }
831 | },
832 | "node_modules/cliui": {
833 | "version": "8.0.1",
834 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
835 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
836 | "dev": true,
837 | "dependencies": {
838 | "string-width": "^4.2.0",
839 | "strip-ansi": "^6.0.1",
840 | "wrap-ansi": "^7.0.0"
841 | },
842 | "engines": {
843 | "node": ">=12"
844 | }
845 | },
846 | "node_modules/cliui/node_modules/emoji-regex": {
847 | "version": "8.0.0",
848 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
849 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
850 | "dev": true
851 | },
852 | "node_modules/cliui/node_modules/is-fullwidth-code-point": {
853 | "version": "3.0.0",
854 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
855 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
856 | "dev": true,
857 | "engines": {
858 | "node": ">=8"
859 | }
860 | },
861 | "node_modules/cliui/node_modules/string-width": {
862 | "version": "4.2.3",
863 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
864 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
865 | "dev": true,
866 | "dependencies": {
867 | "emoji-regex": "^8.0.0",
868 | "is-fullwidth-code-point": "^3.0.0",
869 | "strip-ansi": "^6.0.1"
870 | },
871 | "engines": {
872 | "node": ">=8"
873 | }
874 | },
875 | "node_modules/color-convert": {
876 | "version": "2.0.1",
877 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
878 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
879 | "dev": true,
880 | "dependencies": {
881 | "color-name": "~1.1.4"
882 | },
883 | "engines": {
884 | "node": ">=7.0.0"
885 | }
886 | },
887 | "node_modules/color-name": {
888 | "version": "1.1.4",
889 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
890 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
891 | "dev": true
892 | },
893 | "node_modules/colorette": {
894 | "version": "2.0.20",
895 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
896 | "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
897 | "dev": true
898 | },
899 | "node_modules/commander": {
900 | "version": "13.1.0",
901 | "resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
902 | "integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==",
903 | "dev": true,
904 | "license": "MIT",
905 | "engines": {
906 | "node": ">=18"
907 | }
908 | },
909 | "node_modules/compare-func": {
910 | "version": "2.0.0",
911 | "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz",
912 | "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==",
913 | "dev": true,
914 | "dependencies": {
915 | "array-ify": "^1.0.0",
916 | "dot-prop": "^5.1.0"
917 | }
918 | },
919 | "node_modules/concat-map": {
920 | "version": "0.0.1",
921 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
922 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
923 | "dev": true
924 | },
925 | "node_modules/conventional-changelog-angular": {
926 | "version": "7.0.0",
927 | "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz",
928 | "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==",
929 | "dev": true,
930 | "license": "ISC",
931 | "dependencies": {
932 | "compare-func": "^2.0.0"
933 | },
934 | "engines": {
935 | "node": ">=16"
936 | }
937 | },
938 | "node_modules/conventional-changelog-conventionalcommits": {
939 | "version": "7.0.2",
940 | "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz",
941 | "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==",
942 | "dev": true,
943 | "dependencies": {
944 | "compare-func": "^2.0.0"
945 | },
946 | "engines": {
947 | "node": ">=16"
948 | }
949 | },
950 | "node_modules/conventional-commits-parser": {
951 | "version": "5.0.0",
952 | "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz",
953 | "integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==",
954 | "dev": true,
955 | "license": "MIT",
956 | "dependencies": {
957 | "is-text-path": "^2.0.0",
958 | "JSONStream": "^1.3.5",
959 | "meow": "^12.0.1",
960 | "split2": "^4.0.0"
961 | },
962 | "bin": {
963 | "conventional-commits-parser": "cli.mjs"
964 | },
965 | "engines": {
966 | "node": ">=16"
967 | }
968 | },
969 | "node_modules/cosmiconfig": {
970 | "version": "9.0.0",
971 | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz",
972 | "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
973 | "dev": true,
974 | "license": "MIT",
975 | "dependencies": {
976 | "env-paths": "^2.2.1",
977 | "import-fresh": "^3.3.0",
978 | "js-yaml": "^4.1.0",
979 | "parse-json": "^5.2.0"
980 | },
981 | "engines": {
982 | "node": ">=14"
983 | },
984 | "funding": {
985 | "url": "https://github.com/sponsors/d-fischer"
986 | },
987 | "peerDependencies": {
988 | "typescript": ">=4.9.5"
989 | },
990 | "peerDependenciesMeta": {
991 | "typescript": {
992 | "optional": true
993 | }
994 | }
995 | },
996 | "node_modules/cosmiconfig-typescript-loader": {
997 | "version": "6.1.0",
998 | "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-6.1.0.tgz",
999 | "integrity": "sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==",
1000 | "dev": true,
1001 | "license": "MIT",
1002 | "dependencies": {
1003 | "jiti": "^2.4.1"
1004 | },
1005 | "engines": {
1006 | "node": ">=v18"
1007 | },
1008 | "peerDependencies": {
1009 | "@types/node": "*",
1010 | "cosmiconfig": ">=9",
1011 | "typescript": ">=5"
1012 | }
1013 | },
1014 | "node_modules/cross-spawn": {
1015 | "version": "7.0.3",
1016 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1017 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1018 | "dev": true,
1019 | "dependencies": {
1020 | "path-key": "^3.1.0",
1021 | "shebang-command": "^2.0.0",
1022 | "which": "^2.0.1"
1023 | },
1024 | "engines": {
1025 | "node": ">= 8"
1026 | }
1027 | },
1028 | "node_modules/dargs": {
1029 | "version": "8.1.0",
1030 | "resolved": "https://registry.npmjs.org/dargs/-/dargs-8.1.0.tgz",
1031 | "integrity": "sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==",
1032 | "dev": true,
1033 | "license": "MIT",
1034 | "engines": {
1035 | "node": ">=12"
1036 | },
1037 | "funding": {
1038 | "url": "https://github.com/sponsors/sindresorhus"
1039 | }
1040 | },
1041 | "node_modules/debug": {
1042 | "version": "4.4.0",
1043 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
1044 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
1045 | "dev": true,
1046 | "dependencies": {
1047 | "ms": "^2.1.3"
1048 | },
1049 | "engines": {
1050 | "node": ">=6.0"
1051 | },
1052 | "peerDependenciesMeta": {
1053 | "supports-color": {
1054 | "optional": true
1055 | }
1056 | }
1057 | },
1058 | "node_modules/deep-is": {
1059 | "version": "0.1.4",
1060 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1061 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1062 | "dev": true
1063 | },
1064 | "node_modules/doctrine": {
1065 | "version": "3.0.0",
1066 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
1067 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
1068 | "dev": true,
1069 | "dependencies": {
1070 | "esutils": "^2.0.2"
1071 | },
1072 | "engines": {
1073 | "node": ">=6.0.0"
1074 | }
1075 | },
1076 | "node_modules/dot-prop": {
1077 | "version": "5.3.0",
1078 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
1079 | "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
1080 | "dev": true,
1081 | "dependencies": {
1082 | "is-obj": "^2.0.0"
1083 | },
1084 | "engines": {
1085 | "node": ">=8"
1086 | }
1087 | },
1088 | "node_modules/emoji-regex": {
1089 | "version": "10.4.0",
1090 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz",
1091 | "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==",
1092 | "dev": true
1093 | },
1094 | "node_modules/env-paths": {
1095 | "version": "2.2.1",
1096 | "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
1097 | "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
1098 | "dev": true,
1099 | "license": "MIT",
1100 | "engines": {
1101 | "node": ">=6"
1102 | }
1103 | },
1104 | "node_modules/environment": {
1105 | "version": "1.1.0",
1106 | "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz",
1107 | "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==",
1108 | "dev": true,
1109 | "engines": {
1110 | "node": ">=18"
1111 | },
1112 | "funding": {
1113 | "url": "https://github.com/sponsors/sindresorhus"
1114 | }
1115 | },
1116 | "node_modules/error-ex": {
1117 | "version": "1.3.2",
1118 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
1119 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
1120 | "dev": true,
1121 | "license": "MIT",
1122 | "dependencies": {
1123 | "is-arrayish": "^0.2.1"
1124 | }
1125 | },
1126 | "node_modules/error-stack-parser": {
1127 | "version": "2.1.4",
1128 | "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
1129 | "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
1130 | "dependencies": {
1131 | "stackframe": "^1.3.4"
1132 | }
1133 | },
1134 | "node_modules/escalade": {
1135 | "version": "3.1.1",
1136 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
1137 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
1138 | "dev": true,
1139 | "engines": {
1140 | "node": ">=6"
1141 | }
1142 | },
1143 | "node_modules/escape-string-regexp": {
1144 | "version": "4.0.0",
1145 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1146 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1147 | "dev": true,
1148 | "engines": {
1149 | "node": ">=10"
1150 | },
1151 | "funding": {
1152 | "url": "https://github.com/sponsors/sindresorhus"
1153 | }
1154 | },
1155 | "node_modules/eslint": {
1156 | "version": "8.57.0",
1157 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz",
1158 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==",
1159 | "dev": true,
1160 | "dependencies": {
1161 | "@eslint-community/eslint-utils": "^4.2.0",
1162 | "@eslint-community/regexpp": "^4.6.1",
1163 | "@eslint/eslintrc": "^2.1.4",
1164 | "@eslint/js": "8.57.0",
1165 | "@humanwhocodes/config-array": "^0.11.14",
1166 | "@humanwhocodes/module-importer": "^1.0.1",
1167 | "@nodelib/fs.walk": "^1.2.8",
1168 | "@ungap/structured-clone": "^1.2.0",
1169 | "ajv": "^6.12.4",
1170 | "chalk": "^4.0.0",
1171 | "cross-spawn": "^7.0.2",
1172 | "debug": "^4.3.2",
1173 | "doctrine": "^3.0.0",
1174 | "escape-string-regexp": "^4.0.0",
1175 | "eslint-scope": "^7.2.2",
1176 | "eslint-visitor-keys": "^3.4.3",
1177 | "espree": "^9.6.1",
1178 | "esquery": "^1.4.2",
1179 | "esutils": "^2.0.2",
1180 | "fast-deep-equal": "^3.1.3",
1181 | "file-entry-cache": "^6.0.1",
1182 | "find-up": "^5.0.0",
1183 | "glob-parent": "^6.0.2",
1184 | "globals": "^13.19.0",
1185 | "graphemer": "^1.4.0",
1186 | "ignore": "^5.2.0",
1187 | "imurmurhash": "^0.1.4",
1188 | "is-glob": "^4.0.0",
1189 | "is-path-inside": "^3.0.3",
1190 | "js-yaml": "^4.1.0",
1191 | "json-stable-stringify-without-jsonify": "^1.0.1",
1192 | "levn": "^0.4.1",
1193 | "lodash.merge": "^4.6.2",
1194 | "minimatch": "^3.1.2",
1195 | "natural-compare": "^1.4.0",
1196 | "optionator": "^0.9.3",
1197 | "strip-ansi": "^6.0.1",
1198 | "text-table": "^0.2.0"
1199 | },
1200 | "bin": {
1201 | "eslint": "bin/eslint.js"
1202 | },
1203 | "engines": {
1204 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1205 | },
1206 | "funding": {
1207 | "url": "https://opencollective.com/eslint"
1208 | }
1209 | },
1210 | "node_modules/eslint-config-prettier": {
1211 | "version": "10.1.5",
1212 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.5.tgz",
1213 | "integrity": "sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==",
1214 | "dev": true,
1215 | "license": "MIT",
1216 | "bin": {
1217 | "eslint-config-prettier": "bin/cli.js"
1218 | },
1219 | "funding": {
1220 | "url": "https://opencollective.com/eslint-config-prettier"
1221 | },
1222 | "peerDependencies": {
1223 | "eslint": ">=7.0.0"
1224 | }
1225 | },
1226 | "node_modules/eslint-plugin-prettier": {
1227 | "version": "5.4.0",
1228 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.4.0.tgz",
1229 | "integrity": "sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA==",
1230 | "dev": true,
1231 | "license": "MIT",
1232 | "dependencies": {
1233 | "prettier-linter-helpers": "^1.0.0",
1234 | "synckit": "^0.11.0"
1235 | },
1236 | "engines": {
1237 | "node": "^14.18.0 || >=16.0.0"
1238 | },
1239 | "funding": {
1240 | "url": "https://opencollective.com/eslint-plugin-prettier"
1241 | },
1242 | "peerDependencies": {
1243 | "@types/eslint": ">=8.0.0",
1244 | "eslint": ">=8.0.0",
1245 | "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0",
1246 | "prettier": ">=3.0.0"
1247 | },
1248 | "peerDependenciesMeta": {
1249 | "@types/eslint": {
1250 | "optional": true
1251 | },
1252 | "eslint-config-prettier": {
1253 | "optional": true
1254 | }
1255 | }
1256 | },
1257 | "node_modules/eslint-scope": {
1258 | "version": "7.2.2",
1259 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
1260 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
1261 | "dev": true,
1262 | "dependencies": {
1263 | "esrecurse": "^4.3.0",
1264 | "estraverse": "^5.2.0"
1265 | },
1266 | "engines": {
1267 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1268 | },
1269 | "funding": {
1270 | "url": "https://opencollective.com/eslint"
1271 | }
1272 | },
1273 | "node_modules/eslint-visitor-keys": {
1274 | "version": "3.4.3",
1275 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
1276 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
1277 | "dev": true,
1278 | "engines": {
1279 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1280 | },
1281 | "funding": {
1282 | "url": "https://opencollective.com/eslint"
1283 | }
1284 | },
1285 | "node_modules/eslint/node_modules/ajv": {
1286 | "version": "6.12.6",
1287 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
1288 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
1289 | "dev": true,
1290 | "dependencies": {
1291 | "fast-deep-equal": "^3.1.1",
1292 | "fast-json-stable-stringify": "^2.0.0",
1293 | "json-schema-traverse": "^0.4.1",
1294 | "uri-js": "^4.2.2"
1295 | },
1296 | "funding": {
1297 | "type": "github",
1298 | "url": "https://github.com/sponsors/epoberezkin"
1299 | }
1300 | },
1301 | "node_modules/eslint/node_modules/json-schema-traverse": {
1302 | "version": "0.4.1",
1303 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1304 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1305 | "dev": true
1306 | },
1307 | "node_modules/espree": {
1308 | "version": "9.6.1",
1309 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
1310 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
1311 | "dev": true,
1312 | "dependencies": {
1313 | "acorn": "^8.9.0",
1314 | "acorn-jsx": "^5.3.2",
1315 | "eslint-visitor-keys": "^3.4.1"
1316 | },
1317 | "engines": {
1318 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1319 | },
1320 | "funding": {
1321 | "url": "https://opencollective.com/eslint"
1322 | }
1323 | },
1324 | "node_modules/esquery": {
1325 | "version": "1.5.0",
1326 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
1327 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
1328 | "dev": true,
1329 | "dependencies": {
1330 | "estraverse": "^5.1.0"
1331 | },
1332 | "engines": {
1333 | "node": ">=0.10"
1334 | }
1335 | },
1336 | "node_modules/esrecurse": {
1337 | "version": "4.3.0",
1338 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1339 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1340 | "dev": true,
1341 | "dependencies": {
1342 | "estraverse": "^5.2.0"
1343 | },
1344 | "engines": {
1345 | "node": ">=4.0"
1346 | }
1347 | },
1348 | "node_modules/estraverse": {
1349 | "version": "5.3.0",
1350 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1351 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1352 | "dev": true,
1353 | "engines": {
1354 | "node": ">=4.0"
1355 | }
1356 | },
1357 | "node_modules/esutils": {
1358 | "version": "2.0.3",
1359 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1360 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1361 | "dev": true,
1362 | "engines": {
1363 | "node": ">=0.10.0"
1364 | }
1365 | },
1366 | "node_modules/eventemitter3": {
1367 | "version": "5.0.1",
1368 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
1369 | "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
1370 | "dev": true
1371 | },
1372 | "node_modules/execa": {
1373 | "version": "8.0.1",
1374 | "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
1375 | "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
1376 | "dev": true,
1377 | "dependencies": {
1378 | "cross-spawn": "^7.0.3",
1379 | "get-stream": "^8.0.1",
1380 | "human-signals": "^5.0.0",
1381 | "is-stream": "^3.0.0",
1382 | "merge-stream": "^2.0.0",
1383 | "npm-run-path": "^5.1.0",
1384 | "onetime": "^6.0.0",
1385 | "signal-exit": "^4.1.0",
1386 | "strip-final-newline": "^3.0.0"
1387 | },
1388 | "engines": {
1389 | "node": ">=16.17"
1390 | },
1391 | "funding": {
1392 | "url": "https://github.com/sindresorhus/execa?sponsor=1"
1393 | }
1394 | },
1395 | "node_modules/execa/node_modules/onetime": {
1396 | "version": "6.0.0",
1397 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
1398 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
1399 | "dev": true,
1400 | "dependencies": {
1401 | "mimic-fn": "^4.0.0"
1402 | },
1403 | "engines": {
1404 | "node": ">=12"
1405 | },
1406 | "funding": {
1407 | "url": "https://github.com/sponsors/sindresorhus"
1408 | }
1409 | },
1410 | "node_modules/fast-deep-equal": {
1411 | "version": "3.1.3",
1412 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1413 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1414 | "dev": true
1415 | },
1416 | "node_modules/fast-diff": {
1417 | "version": "1.2.0",
1418 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
1419 | "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
1420 | "dev": true
1421 | },
1422 | "node_modules/fast-json-stable-stringify": {
1423 | "version": "2.1.0",
1424 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1425 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1426 | "dev": true
1427 | },
1428 | "node_modules/fast-levenshtein": {
1429 | "version": "2.0.6",
1430 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1431 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1432 | "dev": true
1433 | },
1434 | "node_modules/fast-uri": {
1435 | "version": "3.0.6",
1436 | "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz",
1437 | "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==",
1438 | "dev": true,
1439 | "funding": [
1440 | {
1441 | "type": "github",
1442 | "url": "https://github.com/sponsors/fastify"
1443 | },
1444 | {
1445 | "type": "opencollective",
1446 | "url": "https://opencollective.com/fastify"
1447 | }
1448 | ],
1449 | "license": "BSD-3-Clause"
1450 | },
1451 | "node_modules/fastq": {
1452 | "version": "1.15.0",
1453 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
1454 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
1455 | "dev": true,
1456 | "dependencies": {
1457 | "reusify": "^1.0.4"
1458 | }
1459 | },
1460 | "node_modules/file-entry-cache": {
1461 | "version": "6.0.1",
1462 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
1463 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
1464 | "dev": true,
1465 | "dependencies": {
1466 | "flat-cache": "^3.0.4"
1467 | },
1468 | "engines": {
1469 | "node": "^10.12.0 || >=12.0.0"
1470 | }
1471 | },
1472 | "node_modules/fill-range": {
1473 | "version": "7.1.1",
1474 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
1475 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
1476 | "dev": true,
1477 | "dependencies": {
1478 | "to-regex-range": "^5.0.1"
1479 | },
1480 | "engines": {
1481 | "node": ">=8"
1482 | }
1483 | },
1484 | "node_modules/find-up": {
1485 | "version": "5.0.0",
1486 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1487 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1488 | "dev": true,
1489 | "dependencies": {
1490 | "locate-path": "^6.0.0",
1491 | "path-exists": "^4.0.0"
1492 | },
1493 | "engines": {
1494 | "node": ">=10"
1495 | },
1496 | "funding": {
1497 | "url": "https://github.com/sponsors/sindresorhus"
1498 | }
1499 | },
1500 | "node_modules/flat-cache": {
1501 | "version": "3.0.4",
1502 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
1503 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
1504 | "dev": true,
1505 | "dependencies": {
1506 | "flatted": "^3.1.0",
1507 | "rimraf": "^3.0.2"
1508 | },
1509 | "engines": {
1510 | "node": "^10.12.0 || >=12.0.0"
1511 | }
1512 | },
1513 | "node_modules/flatted": {
1514 | "version": "3.2.7",
1515 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
1516 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
1517 | "dev": true
1518 | },
1519 | "node_modules/fs.realpath": {
1520 | "version": "1.0.0",
1521 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1522 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
1523 | "dev": true
1524 | },
1525 | "node_modules/get-caller-file": {
1526 | "version": "2.0.5",
1527 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
1528 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
1529 | "dev": true,
1530 | "engines": {
1531 | "node": "6.* || 8.* || >= 10.*"
1532 | }
1533 | },
1534 | "node_modules/get-east-asian-width": {
1535 | "version": "1.3.0",
1536 | "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz",
1537 | "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==",
1538 | "dev": true,
1539 | "engines": {
1540 | "node": ">=18"
1541 | },
1542 | "funding": {
1543 | "url": "https://github.com/sponsors/sindresorhus"
1544 | }
1545 | },
1546 | "node_modules/get-stream": {
1547 | "version": "8.0.1",
1548 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
1549 | "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
1550 | "dev": true,
1551 | "engines": {
1552 | "node": ">=16"
1553 | },
1554 | "funding": {
1555 | "url": "https://github.com/sponsors/sindresorhus"
1556 | }
1557 | },
1558 | "node_modules/git-raw-commits": {
1559 | "version": "4.0.0",
1560 | "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-4.0.0.tgz",
1561 | "integrity": "sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==",
1562 | "dev": true,
1563 | "license": "MIT",
1564 | "dependencies": {
1565 | "dargs": "^8.0.0",
1566 | "meow": "^12.0.1",
1567 | "split2": "^4.0.0"
1568 | },
1569 | "bin": {
1570 | "git-raw-commits": "cli.mjs"
1571 | },
1572 | "engines": {
1573 | "node": ">=16"
1574 | }
1575 | },
1576 | "node_modules/glob": {
1577 | "version": "7.2.3",
1578 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
1579 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
1580 | "dev": true,
1581 | "dependencies": {
1582 | "fs.realpath": "^1.0.0",
1583 | "inflight": "^1.0.4",
1584 | "inherits": "2",
1585 | "minimatch": "^3.1.1",
1586 | "once": "^1.3.0",
1587 | "path-is-absolute": "^1.0.0"
1588 | },
1589 | "engines": {
1590 | "node": "*"
1591 | },
1592 | "funding": {
1593 | "url": "https://github.com/sponsors/isaacs"
1594 | }
1595 | },
1596 | "node_modules/glob-parent": {
1597 | "version": "6.0.2",
1598 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1599 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1600 | "dev": true,
1601 | "dependencies": {
1602 | "is-glob": "^4.0.3"
1603 | },
1604 | "engines": {
1605 | "node": ">=10.13.0"
1606 | }
1607 | },
1608 | "node_modules/global-directory": {
1609 | "version": "4.0.1",
1610 | "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz",
1611 | "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==",
1612 | "dev": true,
1613 | "license": "MIT",
1614 | "dependencies": {
1615 | "ini": "4.1.1"
1616 | },
1617 | "engines": {
1618 | "node": ">=18"
1619 | },
1620 | "funding": {
1621 | "url": "https://github.com/sponsors/sindresorhus"
1622 | }
1623 | },
1624 | "node_modules/globals": {
1625 | "version": "13.23.0",
1626 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz",
1627 | "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==",
1628 | "dev": true,
1629 | "dependencies": {
1630 | "type-fest": "^0.20.2"
1631 | },
1632 | "engines": {
1633 | "node": ">=8"
1634 | },
1635 | "funding": {
1636 | "url": "https://github.com/sponsors/sindresorhus"
1637 | }
1638 | },
1639 | "node_modules/graphemer": {
1640 | "version": "1.4.0",
1641 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
1642 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
1643 | "dev": true
1644 | },
1645 | "node_modules/has-flag": {
1646 | "version": "4.0.0",
1647 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1648 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1649 | "dev": true,
1650 | "engines": {
1651 | "node": ">=8"
1652 | }
1653 | },
1654 | "node_modules/human-signals": {
1655 | "version": "5.0.0",
1656 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
1657 | "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
1658 | "dev": true,
1659 | "engines": {
1660 | "node": ">=16.17.0"
1661 | }
1662 | },
1663 | "node_modules/husky": {
1664 | "version": "9.1.7",
1665 | "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz",
1666 | "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==",
1667 | "dev": true,
1668 | "bin": {
1669 | "husky": "bin.js"
1670 | },
1671 | "engines": {
1672 | "node": ">=18"
1673 | },
1674 | "funding": {
1675 | "url": "https://github.com/sponsors/typicode"
1676 | }
1677 | },
1678 | "node_modules/ignore": {
1679 | "version": "5.3.0",
1680 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz",
1681 | "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==",
1682 | "dev": true,
1683 | "engines": {
1684 | "node": ">= 4"
1685 | }
1686 | },
1687 | "node_modules/import-fresh": {
1688 | "version": "3.3.0",
1689 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
1690 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
1691 | "dev": true,
1692 | "dependencies": {
1693 | "parent-module": "^1.0.0",
1694 | "resolve-from": "^4.0.0"
1695 | },
1696 | "engines": {
1697 | "node": ">=6"
1698 | },
1699 | "funding": {
1700 | "url": "https://github.com/sponsors/sindresorhus"
1701 | }
1702 | },
1703 | "node_modules/import-fresh/node_modules/resolve-from": {
1704 | "version": "4.0.0",
1705 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
1706 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
1707 | "dev": true,
1708 | "engines": {
1709 | "node": ">=4"
1710 | }
1711 | },
1712 | "node_modules/import-meta-resolve": {
1713 | "version": "4.1.0",
1714 | "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz",
1715 | "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==",
1716 | "dev": true,
1717 | "license": "MIT",
1718 | "funding": {
1719 | "type": "github",
1720 | "url": "https://github.com/sponsors/wooorm"
1721 | }
1722 | },
1723 | "node_modules/imurmurhash": {
1724 | "version": "0.1.4",
1725 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
1726 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
1727 | "dev": true,
1728 | "engines": {
1729 | "node": ">=0.8.19"
1730 | }
1731 | },
1732 | "node_modules/inflight": {
1733 | "version": "1.0.6",
1734 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
1735 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
1736 | "dev": true,
1737 | "dependencies": {
1738 | "once": "^1.3.0",
1739 | "wrappy": "1"
1740 | }
1741 | },
1742 | "node_modules/inherits": {
1743 | "version": "2.0.4",
1744 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1745 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1746 | "dev": true
1747 | },
1748 | "node_modules/ini": {
1749 | "version": "4.1.1",
1750 | "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz",
1751 | "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==",
1752 | "dev": true,
1753 | "license": "ISC",
1754 | "engines": {
1755 | "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1756 | }
1757 | },
1758 | "node_modules/is-arrayish": {
1759 | "version": "0.2.1",
1760 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
1761 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
1762 | "dev": true,
1763 | "license": "MIT"
1764 | },
1765 | "node_modules/is-extglob": {
1766 | "version": "2.1.1",
1767 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1768 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1769 | "dev": true,
1770 | "engines": {
1771 | "node": ">=0.10.0"
1772 | }
1773 | },
1774 | "node_modules/is-fullwidth-code-point": {
1775 | "version": "4.0.0",
1776 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz",
1777 | "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==",
1778 | "dev": true,
1779 | "engines": {
1780 | "node": ">=12"
1781 | },
1782 | "funding": {
1783 | "url": "https://github.com/sponsors/sindresorhus"
1784 | }
1785 | },
1786 | "node_modules/is-glob": {
1787 | "version": "4.0.3",
1788 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1789 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1790 | "dev": true,
1791 | "dependencies": {
1792 | "is-extglob": "^2.1.1"
1793 | },
1794 | "engines": {
1795 | "node": ">=0.10.0"
1796 | }
1797 | },
1798 | "node_modules/is-number": {
1799 | "version": "7.0.0",
1800 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1801 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1802 | "dev": true,
1803 | "engines": {
1804 | "node": ">=0.12.0"
1805 | }
1806 | },
1807 | "node_modules/is-obj": {
1808 | "version": "2.0.0",
1809 | "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
1810 | "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
1811 | "dev": true,
1812 | "engines": {
1813 | "node": ">=8"
1814 | }
1815 | },
1816 | "node_modules/is-path-inside": {
1817 | "version": "3.0.3",
1818 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
1819 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
1820 | "dev": true,
1821 | "engines": {
1822 | "node": ">=8"
1823 | }
1824 | },
1825 | "node_modules/is-stream": {
1826 | "version": "3.0.0",
1827 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
1828 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
1829 | "dev": true,
1830 | "engines": {
1831 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1832 | },
1833 | "funding": {
1834 | "url": "https://github.com/sponsors/sindresorhus"
1835 | }
1836 | },
1837 | "node_modules/is-text-path": {
1838 | "version": "2.0.0",
1839 | "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz",
1840 | "integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==",
1841 | "dev": true,
1842 | "license": "MIT",
1843 | "dependencies": {
1844 | "text-extensions": "^2.0.0"
1845 | },
1846 | "engines": {
1847 | "node": ">=8"
1848 | }
1849 | },
1850 | "node_modules/isexe": {
1851 | "version": "2.0.0",
1852 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1853 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1854 | "dev": true
1855 | },
1856 | "node_modules/jiti": {
1857 | "version": "2.4.2",
1858 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
1859 | "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
1860 | "dev": true,
1861 | "license": "MIT",
1862 | "bin": {
1863 | "jiti": "lib/jiti-cli.mjs"
1864 | }
1865 | },
1866 | "node_modules/js-tokens": {
1867 | "version": "4.0.0",
1868 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
1869 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
1870 | "dev": true,
1871 | "license": "MIT"
1872 | },
1873 | "node_modules/js-yaml": {
1874 | "version": "4.1.0",
1875 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
1876 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
1877 | "dev": true,
1878 | "dependencies": {
1879 | "argparse": "^2.0.1"
1880 | },
1881 | "bin": {
1882 | "js-yaml": "bin/js-yaml.js"
1883 | }
1884 | },
1885 | "node_modules/json-parse-even-better-errors": {
1886 | "version": "2.3.1",
1887 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
1888 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
1889 | "dev": true,
1890 | "license": "MIT"
1891 | },
1892 | "node_modules/json-schema-traverse": {
1893 | "version": "1.0.0",
1894 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
1895 | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
1896 | "dev": true,
1897 | "license": "MIT"
1898 | },
1899 | "node_modules/json-stable-stringify-without-jsonify": {
1900 | "version": "1.0.1",
1901 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
1902 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
1903 | "dev": true
1904 | },
1905 | "node_modules/jsonparse": {
1906 | "version": "1.3.1",
1907 | "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
1908 | "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==",
1909 | "dev": true,
1910 | "engines": [
1911 | "node >= 0.2.0"
1912 | ],
1913 | "license": "MIT"
1914 | },
1915 | "node_modules/JSONStream": {
1916 | "version": "1.3.5",
1917 | "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
1918 | "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==",
1919 | "dev": true,
1920 | "license": "(MIT OR Apache-2.0)",
1921 | "dependencies": {
1922 | "jsonparse": "^1.2.0",
1923 | "through": ">=2.2.7 <3"
1924 | },
1925 | "bin": {
1926 | "JSONStream": "bin.js"
1927 | },
1928 | "engines": {
1929 | "node": "*"
1930 | }
1931 | },
1932 | "node_modules/levn": {
1933 | "version": "0.4.1",
1934 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
1935 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
1936 | "dev": true,
1937 | "dependencies": {
1938 | "prelude-ls": "^1.2.1",
1939 | "type-check": "~0.4.0"
1940 | },
1941 | "engines": {
1942 | "node": ">= 0.8.0"
1943 | }
1944 | },
1945 | "node_modules/lilconfig": {
1946 | "version": "3.1.3",
1947 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
1948 | "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
1949 | "dev": true,
1950 | "engines": {
1951 | "node": ">=14"
1952 | },
1953 | "funding": {
1954 | "url": "https://github.com/sponsors/antonk52"
1955 | }
1956 | },
1957 | "node_modules/lines-and-columns": {
1958 | "version": "1.2.4",
1959 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
1960 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
1961 | "dev": true,
1962 | "license": "MIT"
1963 | },
1964 | "node_modules/lint-staged": {
1965 | "version": "15.5.1",
1966 | "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.5.1.tgz",
1967 | "integrity": "sha512-6m7u8mue4Xn6wK6gZvSCQwBvMBR36xfY24nF5bMTf2MHDYG6S3yhJuOgdYVw99hsjyDt2d4z168b3naI8+NWtQ==",
1968 | "dev": true,
1969 | "license": "MIT",
1970 | "dependencies": {
1971 | "chalk": "^5.4.1",
1972 | "commander": "^13.1.0",
1973 | "debug": "^4.4.0",
1974 | "execa": "^8.0.1",
1975 | "lilconfig": "^3.1.3",
1976 | "listr2": "^8.2.5",
1977 | "micromatch": "^4.0.8",
1978 | "pidtree": "^0.6.0",
1979 | "string-argv": "^0.3.2",
1980 | "yaml": "^2.7.0"
1981 | },
1982 | "bin": {
1983 | "lint-staged": "bin/lint-staged.js"
1984 | },
1985 | "engines": {
1986 | "node": ">=18.12.0"
1987 | },
1988 | "funding": {
1989 | "url": "https://opencollective.com/lint-staged"
1990 | }
1991 | },
1992 | "node_modules/lint-staged/node_modules/chalk": {
1993 | "version": "5.4.1",
1994 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz",
1995 | "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==",
1996 | "dev": true,
1997 | "engines": {
1998 | "node": "^12.17.0 || ^14.13 || >=16.0.0"
1999 | },
2000 | "funding": {
2001 | "url": "https://github.com/chalk/chalk?sponsor=1"
2002 | }
2003 | },
2004 | "node_modules/listr2": {
2005 | "version": "8.2.5",
2006 | "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.2.5.tgz",
2007 | "integrity": "sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==",
2008 | "dev": true,
2009 | "dependencies": {
2010 | "cli-truncate": "^4.0.0",
2011 | "colorette": "^2.0.20",
2012 | "eventemitter3": "^5.0.1",
2013 | "log-update": "^6.1.0",
2014 | "rfdc": "^1.4.1",
2015 | "wrap-ansi": "^9.0.0"
2016 | },
2017 | "engines": {
2018 | "node": ">=18.0.0"
2019 | }
2020 | },
2021 | "node_modules/listr2/node_modules/ansi-regex": {
2022 | "version": "6.1.0",
2023 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
2024 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
2025 | "dev": true,
2026 | "engines": {
2027 | "node": ">=12"
2028 | },
2029 | "funding": {
2030 | "url": "https://github.com/chalk/ansi-regex?sponsor=1"
2031 | }
2032 | },
2033 | "node_modules/listr2/node_modules/ansi-styles": {
2034 | "version": "6.2.1",
2035 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
2036 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
2037 | "dev": true,
2038 | "engines": {
2039 | "node": ">=12"
2040 | },
2041 | "funding": {
2042 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2043 | }
2044 | },
2045 | "node_modules/listr2/node_modules/strip-ansi": {
2046 | "version": "7.1.0",
2047 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
2048 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
2049 | "dev": true,
2050 | "dependencies": {
2051 | "ansi-regex": "^6.0.1"
2052 | },
2053 | "engines": {
2054 | "node": ">=12"
2055 | },
2056 | "funding": {
2057 | "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2058 | }
2059 | },
2060 | "node_modules/listr2/node_modules/wrap-ansi": {
2061 | "version": "9.0.0",
2062 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
2063 | "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
2064 | "dev": true,
2065 | "dependencies": {
2066 | "ansi-styles": "^6.2.1",
2067 | "string-width": "^7.0.0",
2068 | "strip-ansi": "^7.1.0"
2069 | },
2070 | "engines": {
2071 | "node": ">=18"
2072 | },
2073 | "funding": {
2074 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2075 | }
2076 | },
2077 | "node_modules/locate-path": {
2078 | "version": "6.0.0",
2079 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2080 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2081 | "dev": true,
2082 | "dependencies": {
2083 | "p-locate": "^5.0.0"
2084 | },
2085 | "engines": {
2086 | "node": ">=10"
2087 | },
2088 | "funding": {
2089 | "url": "https://github.com/sponsors/sindresorhus"
2090 | }
2091 | },
2092 | "node_modules/lodash.camelcase": {
2093 | "version": "4.3.0",
2094 | "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
2095 | "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==",
2096 | "dev": true,
2097 | "license": "MIT"
2098 | },
2099 | "node_modules/lodash.isplainobject": {
2100 | "version": "4.0.6",
2101 | "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
2102 | "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
2103 | "dev": true,
2104 | "license": "MIT"
2105 | },
2106 | "node_modules/lodash.kebabcase": {
2107 | "version": "4.1.1",
2108 | "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz",
2109 | "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==",
2110 | "dev": true,
2111 | "license": "MIT"
2112 | },
2113 | "node_modules/lodash.merge": {
2114 | "version": "4.6.2",
2115 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
2116 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
2117 | "dev": true
2118 | },
2119 | "node_modules/lodash.mergewith": {
2120 | "version": "4.6.2",
2121 | "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz",
2122 | "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==",
2123 | "dev": true,
2124 | "license": "MIT"
2125 | },
2126 | "node_modules/lodash.snakecase": {
2127 | "version": "4.1.1",
2128 | "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz",
2129 | "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==",
2130 | "dev": true,
2131 | "license": "MIT"
2132 | },
2133 | "node_modules/lodash.startcase": {
2134 | "version": "4.4.0",
2135 | "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz",
2136 | "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==",
2137 | "dev": true,
2138 | "license": "MIT"
2139 | },
2140 | "node_modules/lodash.uniq": {
2141 | "version": "4.5.0",
2142 | "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
2143 | "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==",
2144 | "dev": true,
2145 | "license": "MIT"
2146 | },
2147 | "node_modules/lodash.upperfirst": {
2148 | "version": "4.3.1",
2149 | "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz",
2150 | "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==",
2151 | "dev": true,
2152 | "license": "MIT"
2153 | },
2154 | "node_modules/log-update": {
2155 | "version": "6.1.0",
2156 | "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz",
2157 | "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==",
2158 | "dev": true,
2159 | "dependencies": {
2160 | "ansi-escapes": "^7.0.0",
2161 | "cli-cursor": "^5.0.0",
2162 | "slice-ansi": "^7.1.0",
2163 | "strip-ansi": "^7.1.0",
2164 | "wrap-ansi": "^9.0.0"
2165 | },
2166 | "engines": {
2167 | "node": ">=18"
2168 | },
2169 | "funding": {
2170 | "url": "https://github.com/sponsors/sindresorhus"
2171 | }
2172 | },
2173 | "node_modules/log-update/node_modules/ansi-regex": {
2174 | "version": "6.1.0",
2175 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
2176 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
2177 | "dev": true,
2178 | "engines": {
2179 | "node": ">=12"
2180 | },
2181 | "funding": {
2182 | "url": "https://github.com/chalk/ansi-regex?sponsor=1"
2183 | }
2184 | },
2185 | "node_modules/log-update/node_modules/ansi-styles": {
2186 | "version": "6.2.1",
2187 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
2188 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
2189 | "dev": true,
2190 | "engines": {
2191 | "node": ">=12"
2192 | },
2193 | "funding": {
2194 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2195 | }
2196 | },
2197 | "node_modules/log-update/node_modules/is-fullwidth-code-point": {
2198 | "version": "5.0.0",
2199 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz",
2200 | "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==",
2201 | "dev": true,
2202 | "dependencies": {
2203 | "get-east-asian-width": "^1.0.0"
2204 | },
2205 | "engines": {
2206 | "node": ">=18"
2207 | },
2208 | "funding": {
2209 | "url": "https://github.com/sponsors/sindresorhus"
2210 | }
2211 | },
2212 | "node_modules/log-update/node_modules/slice-ansi": {
2213 | "version": "7.1.0",
2214 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz",
2215 | "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==",
2216 | "dev": true,
2217 | "dependencies": {
2218 | "ansi-styles": "^6.2.1",
2219 | "is-fullwidth-code-point": "^5.0.0"
2220 | },
2221 | "engines": {
2222 | "node": ">=18"
2223 | },
2224 | "funding": {
2225 | "url": "https://github.com/chalk/slice-ansi?sponsor=1"
2226 | }
2227 | },
2228 | "node_modules/log-update/node_modules/strip-ansi": {
2229 | "version": "7.1.0",
2230 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
2231 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
2232 | "dev": true,
2233 | "dependencies": {
2234 | "ansi-regex": "^6.0.1"
2235 | },
2236 | "engines": {
2237 | "node": ">=12"
2238 | },
2239 | "funding": {
2240 | "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2241 | }
2242 | },
2243 | "node_modules/log-update/node_modules/wrap-ansi": {
2244 | "version": "9.0.0",
2245 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
2246 | "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
2247 | "dev": true,
2248 | "dependencies": {
2249 | "ansi-styles": "^6.2.1",
2250 | "string-width": "^7.0.0",
2251 | "strip-ansi": "^7.1.0"
2252 | },
2253 | "engines": {
2254 | "node": ">=18"
2255 | },
2256 | "funding": {
2257 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2258 | }
2259 | },
2260 | "node_modules/meow": {
2261 | "version": "12.1.1",
2262 | "resolved": "https://registry.npmjs.org/meow/-/meow-12.1.1.tgz",
2263 | "integrity": "sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==",
2264 | "dev": true,
2265 | "license": "MIT",
2266 | "engines": {
2267 | "node": ">=16.10"
2268 | },
2269 | "funding": {
2270 | "url": "https://github.com/sponsors/sindresorhus"
2271 | }
2272 | },
2273 | "node_modules/merge-stream": {
2274 | "version": "2.0.0",
2275 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
2276 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
2277 | "dev": true
2278 | },
2279 | "node_modules/micromatch": {
2280 | "version": "4.0.8",
2281 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
2282 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
2283 | "dev": true,
2284 | "dependencies": {
2285 | "braces": "^3.0.3",
2286 | "picomatch": "^2.3.1"
2287 | },
2288 | "engines": {
2289 | "node": ">=8.6"
2290 | }
2291 | },
2292 | "node_modules/mimic-fn": {
2293 | "version": "4.0.0",
2294 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
2295 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
2296 | "dev": true,
2297 | "engines": {
2298 | "node": ">=12"
2299 | },
2300 | "funding": {
2301 | "url": "https://github.com/sponsors/sindresorhus"
2302 | }
2303 | },
2304 | "node_modules/mimic-function": {
2305 | "version": "5.0.1",
2306 | "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz",
2307 | "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==",
2308 | "dev": true,
2309 | "engines": {
2310 | "node": ">=18"
2311 | },
2312 | "funding": {
2313 | "url": "https://github.com/sponsors/sindresorhus"
2314 | }
2315 | },
2316 | "node_modules/minimatch": {
2317 | "version": "3.1.2",
2318 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2319 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2320 | "dev": true,
2321 | "dependencies": {
2322 | "brace-expansion": "^1.1.7"
2323 | },
2324 | "engines": {
2325 | "node": "*"
2326 | }
2327 | },
2328 | "node_modules/minimist": {
2329 | "version": "1.2.8",
2330 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
2331 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
2332 | "dev": true,
2333 | "license": "MIT",
2334 | "funding": {
2335 | "url": "https://github.com/sponsors/ljharb"
2336 | }
2337 | },
2338 | "node_modules/ms": {
2339 | "version": "2.1.3",
2340 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2341 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2342 | "dev": true
2343 | },
2344 | "node_modules/natural-compare": {
2345 | "version": "1.4.0",
2346 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2347 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2348 | "dev": true
2349 | },
2350 | "node_modules/node-test-parser": {
2351 | "version": "3.0.0",
2352 | "resolved": "https://registry.npmjs.org/node-test-parser/-/node-test-parser-3.0.0.tgz",
2353 | "integrity": "sha512-pwDMKdB82pTALRuA4MCuFr+QMr7bjb64cR8gKKxdnWYNCfZeKsKBEM4gZTf01Na9z8Iu2Slgu2PhBqmf1ukVgg=="
2354 | },
2355 | "node_modules/npm-run-path": {
2356 | "version": "5.3.0",
2357 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
2358 | "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
2359 | "dev": true,
2360 | "dependencies": {
2361 | "path-key": "^4.0.0"
2362 | },
2363 | "engines": {
2364 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2365 | },
2366 | "funding": {
2367 | "url": "https://github.com/sponsors/sindresorhus"
2368 | }
2369 | },
2370 | "node_modules/npm-run-path/node_modules/path-key": {
2371 | "version": "4.0.0",
2372 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
2373 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
2374 | "dev": true,
2375 | "engines": {
2376 | "node": ">=12"
2377 | },
2378 | "funding": {
2379 | "url": "https://github.com/sponsors/sindresorhus"
2380 | }
2381 | },
2382 | "node_modules/once": {
2383 | "version": "1.4.0",
2384 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2385 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
2386 | "dev": true,
2387 | "dependencies": {
2388 | "wrappy": "1"
2389 | }
2390 | },
2391 | "node_modules/onetime": {
2392 | "version": "7.0.0",
2393 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz",
2394 | "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==",
2395 | "dev": true,
2396 | "dependencies": {
2397 | "mimic-function": "^5.0.0"
2398 | },
2399 | "engines": {
2400 | "node": ">=18"
2401 | },
2402 | "funding": {
2403 | "url": "https://github.com/sponsors/sindresorhus"
2404 | }
2405 | },
2406 | "node_modules/optionator": {
2407 | "version": "0.9.3",
2408 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
2409 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
2410 | "dev": true,
2411 | "dependencies": {
2412 | "@aashutoshrathi/word-wrap": "^1.2.3",
2413 | "deep-is": "^0.1.3",
2414 | "fast-levenshtein": "^2.0.6",
2415 | "levn": "^0.4.1",
2416 | "prelude-ls": "^1.2.1",
2417 | "type-check": "^0.4.0"
2418 | },
2419 | "engines": {
2420 | "node": ">= 0.8.0"
2421 | }
2422 | },
2423 | "node_modules/p-limit": {
2424 | "version": "3.1.0",
2425 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2426 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2427 | "dev": true,
2428 | "dependencies": {
2429 | "yocto-queue": "^0.1.0"
2430 | },
2431 | "engines": {
2432 | "node": ">=10"
2433 | },
2434 | "funding": {
2435 | "url": "https://github.com/sponsors/sindresorhus"
2436 | }
2437 | },
2438 | "node_modules/p-locate": {
2439 | "version": "5.0.0",
2440 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2441 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2442 | "dev": true,
2443 | "dependencies": {
2444 | "p-limit": "^3.0.2"
2445 | },
2446 | "engines": {
2447 | "node": ">=10"
2448 | },
2449 | "funding": {
2450 | "url": "https://github.com/sponsors/sindresorhus"
2451 | }
2452 | },
2453 | "node_modules/parent-module": {
2454 | "version": "1.0.1",
2455 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2456 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2457 | "dev": true,
2458 | "dependencies": {
2459 | "callsites": "^3.0.0"
2460 | },
2461 | "engines": {
2462 | "node": ">=6"
2463 | }
2464 | },
2465 | "node_modules/parse-json": {
2466 | "version": "5.2.0",
2467 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
2468 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
2469 | "dev": true,
2470 | "license": "MIT",
2471 | "dependencies": {
2472 | "@babel/code-frame": "^7.0.0",
2473 | "error-ex": "^1.3.1",
2474 | "json-parse-even-better-errors": "^2.3.0",
2475 | "lines-and-columns": "^1.1.6"
2476 | },
2477 | "engines": {
2478 | "node": ">=8"
2479 | },
2480 | "funding": {
2481 | "url": "https://github.com/sponsors/sindresorhus"
2482 | }
2483 | },
2484 | "node_modules/path-exists": {
2485 | "version": "4.0.0",
2486 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2487 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2488 | "dev": true,
2489 | "engines": {
2490 | "node": ">=8"
2491 | }
2492 | },
2493 | "node_modules/path-is-absolute": {
2494 | "version": "1.0.1",
2495 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
2496 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
2497 | "dev": true,
2498 | "engines": {
2499 | "node": ">=0.10.0"
2500 | }
2501 | },
2502 | "node_modules/path-key": {
2503 | "version": "3.1.1",
2504 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2505 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2506 | "dev": true,
2507 | "engines": {
2508 | "node": ">=8"
2509 | }
2510 | },
2511 | "node_modules/picocolors": {
2512 | "version": "1.1.1",
2513 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2514 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2515 | "dev": true,
2516 | "license": "ISC"
2517 | },
2518 | "node_modules/picomatch": {
2519 | "version": "2.3.1",
2520 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2521 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2522 | "dev": true,
2523 | "engines": {
2524 | "node": ">=8.6"
2525 | },
2526 | "funding": {
2527 | "url": "https://github.com/sponsors/jonschlinkert"
2528 | }
2529 | },
2530 | "node_modules/pidtree": {
2531 | "version": "0.6.0",
2532 | "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz",
2533 | "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==",
2534 | "dev": true,
2535 | "bin": {
2536 | "pidtree": "bin/pidtree.js"
2537 | },
2538 | "engines": {
2539 | "node": ">=0.10"
2540 | }
2541 | },
2542 | "node_modules/prelude-ls": {
2543 | "version": "1.2.1",
2544 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2545 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2546 | "dev": true,
2547 | "engines": {
2548 | "node": ">= 0.8.0"
2549 | }
2550 | },
2551 | "node_modules/prettier": {
2552 | "version": "3.5.3",
2553 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
2554 | "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
2555 | "dev": true,
2556 | "license": "MIT",
2557 | "bin": {
2558 | "prettier": "bin/prettier.cjs"
2559 | },
2560 | "engines": {
2561 | "node": ">=14"
2562 | },
2563 | "funding": {
2564 | "url": "https://github.com/prettier/prettier?sponsor=1"
2565 | }
2566 | },
2567 | "node_modules/prettier-linter-helpers": {
2568 | "version": "1.0.0",
2569 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
2570 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
2571 | "dev": true,
2572 | "dependencies": {
2573 | "fast-diff": "^1.1.2"
2574 | },
2575 | "engines": {
2576 | "node": ">=6.0.0"
2577 | }
2578 | },
2579 | "node_modules/punycode": {
2580 | "version": "2.3.0",
2581 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
2582 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
2583 | "dev": true,
2584 | "engines": {
2585 | "node": ">=6"
2586 | }
2587 | },
2588 | "node_modules/queue-microtask": {
2589 | "version": "1.2.3",
2590 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
2591 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
2592 | "dev": true,
2593 | "funding": [
2594 | {
2595 | "type": "github",
2596 | "url": "https://github.com/sponsors/feross"
2597 | },
2598 | {
2599 | "type": "patreon",
2600 | "url": "https://www.patreon.com/feross"
2601 | },
2602 | {
2603 | "type": "consulting",
2604 | "url": "https://feross.org/support"
2605 | }
2606 | ]
2607 | },
2608 | "node_modules/require-directory": {
2609 | "version": "2.1.1",
2610 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
2611 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
2612 | "dev": true,
2613 | "engines": {
2614 | "node": ">=0.10.0"
2615 | }
2616 | },
2617 | "node_modules/require-from-string": {
2618 | "version": "2.0.2",
2619 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
2620 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
2621 | "dev": true,
2622 | "license": "MIT",
2623 | "engines": {
2624 | "node": ">=0.10.0"
2625 | }
2626 | },
2627 | "node_modules/resolve-from": {
2628 | "version": "5.0.0",
2629 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
2630 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
2631 | "dev": true,
2632 | "license": "MIT",
2633 | "engines": {
2634 | "node": ">=8"
2635 | }
2636 | },
2637 | "node_modules/restore-cursor": {
2638 | "version": "5.1.0",
2639 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz",
2640 | "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==",
2641 | "dev": true,
2642 | "dependencies": {
2643 | "onetime": "^7.0.0",
2644 | "signal-exit": "^4.1.0"
2645 | },
2646 | "engines": {
2647 | "node": ">=18"
2648 | },
2649 | "funding": {
2650 | "url": "https://github.com/sponsors/sindresorhus"
2651 | }
2652 | },
2653 | "node_modules/reusify": {
2654 | "version": "1.0.4",
2655 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
2656 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
2657 | "dev": true,
2658 | "engines": {
2659 | "iojs": ">=1.0.0",
2660 | "node": ">=0.10.0"
2661 | }
2662 | },
2663 | "node_modules/rfdc": {
2664 | "version": "1.4.1",
2665 | "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
2666 | "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
2667 | "dev": true
2668 | },
2669 | "node_modules/rimraf": {
2670 | "version": "3.0.2",
2671 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
2672 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
2673 | "dev": true,
2674 | "dependencies": {
2675 | "glob": "^7.1.3"
2676 | },
2677 | "bin": {
2678 | "rimraf": "bin.js"
2679 | },
2680 | "funding": {
2681 | "url": "https://github.com/sponsors/isaacs"
2682 | }
2683 | },
2684 | "node_modules/run-parallel": {
2685 | "version": "1.2.0",
2686 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
2687 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
2688 | "dev": true,
2689 | "funding": [
2690 | {
2691 | "type": "github",
2692 | "url": "https://github.com/sponsors/feross"
2693 | },
2694 | {
2695 | "type": "patreon",
2696 | "url": "https://www.patreon.com/feross"
2697 | },
2698 | {
2699 | "type": "consulting",
2700 | "url": "https://feross.org/support"
2701 | }
2702 | ],
2703 | "dependencies": {
2704 | "queue-microtask": "^1.2.2"
2705 | }
2706 | },
2707 | "node_modules/semver": {
2708 | "version": "7.7.1",
2709 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
2710 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
2711 | "dev": true,
2712 | "license": "ISC",
2713 | "bin": {
2714 | "semver": "bin/semver.js"
2715 | },
2716 | "engines": {
2717 | "node": ">=10"
2718 | }
2719 | },
2720 | "node_modules/shebang-command": {
2721 | "version": "2.0.0",
2722 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2723 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2724 | "dev": true,
2725 | "dependencies": {
2726 | "shebang-regex": "^3.0.0"
2727 | },
2728 | "engines": {
2729 | "node": ">=8"
2730 | }
2731 | },
2732 | "node_modules/shebang-regex": {
2733 | "version": "3.0.0",
2734 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2735 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2736 | "dev": true,
2737 | "engines": {
2738 | "node": ">=8"
2739 | }
2740 | },
2741 | "node_modules/signal-exit": {
2742 | "version": "4.1.0",
2743 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
2744 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
2745 | "dev": true,
2746 | "engines": {
2747 | "node": ">=14"
2748 | },
2749 | "funding": {
2750 | "url": "https://github.com/sponsors/isaacs"
2751 | }
2752 | },
2753 | "node_modules/slice-ansi": {
2754 | "version": "5.0.0",
2755 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz",
2756 | "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==",
2757 | "dev": true,
2758 | "dependencies": {
2759 | "ansi-styles": "^6.0.0",
2760 | "is-fullwidth-code-point": "^4.0.0"
2761 | },
2762 | "engines": {
2763 | "node": ">=12"
2764 | },
2765 | "funding": {
2766 | "url": "https://github.com/chalk/slice-ansi?sponsor=1"
2767 | }
2768 | },
2769 | "node_modules/slice-ansi/node_modules/ansi-styles": {
2770 | "version": "6.2.1",
2771 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
2772 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
2773 | "dev": true,
2774 | "engines": {
2775 | "node": ">=12"
2776 | },
2777 | "funding": {
2778 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2779 | }
2780 | },
2781 | "node_modules/split2": {
2782 | "version": "4.2.0",
2783 | "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
2784 | "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
2785 | "dev": true,
2786 | "license": "ISC",
2787 | "engines": {
2788 | "node": ">= 10.x"
2789 | }
2790 | },
2791 | "node_modules/stack-utils": {
2792 | "version": "2.0.6",
2793 | "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
2794 | "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
2795 | "dependencies": {
2796 | "escape-string-regexp": "^2.0.0"
2797 | },
2798 | "engines": {
2799 | "node": ">=10"
2800 | }
2801 | },
2802 | "node_modules/stack-utils/node_modules/escape-string-regexp": {
2803 | "version": "2.0.0",
2804 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
2805 | "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
2806 | "engines": {
2807 | "node": ">=8"
2808 | }
2809 | },
2810 | "node_modules/stackframe": {
2811 | "version": "1.3.4",
2812 | "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz",
2813 | "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw=="
2814 | },
2815 | "node_modules/string-argv": {
2816 | "version": "0.3.2",
2817 | "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz",
2818 | "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==",
2819 | "dev": true,
2820 | "engines": {
2821 | "node": ">=0.6.19"
2822 | }
2823 | },
2824 | "node_modules/string-width": {
2825 | "version": "7.2.0",
2826 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
2827 | "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
2828 | "dev": true,
2829 | "dependencies": {
2830 | "emoji-regex": "^10.3.0",
2831 | "get-east-asian-width": "^1.0.0",
2832 | "strip-ansi": "^7.1.0"
2833 | },
2834 | "engines": {
2835 | "node": ">=18"
2836 | },
2837 | "funding": {
2838 | "url": "https://github.com/sponsors/sindresorhus"
2839 | }
2840 | },
2841 | "node_modules/string-width/node_modules/ansi-regex": {
2842 | "version": "6.1.0",
2843 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
2844 | "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
2845 | "dev": true,
2846 | "engines": {
2847 | "node": ">=12"
2848 | },
2849 | "funding": {
2850 | "url": "https://github.com/chalk/ansi-regex?sponsor=1"
2851 | }
2852 | },
2853 | "node_modules/string-width/node_modules/strip-ansi": {
2854 | "version": "7.1.0",
2855 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
2856 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
2857 | "dev": true,
2858 | "dependencies": {
2859 | "ansi-regex": "^6.0.1"
2860 | },
2861 | "engines": {
2862 | "node": ">=12"
2863 | },
2864 | "funding": {
2865 | "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2866 | }
2867 | },
2868 | "node_modules/strip-ansi": {
2869 | "version": "6.0.1",
2870 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2871 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2872 | "dev": true,
2873 | "dependencies": {
2874 | "ansi-regex": "^5.0.1"
2875 | },
2876 | "engines": {
2877 | "node": ">=8"
2878 | }
2879 | },
2880 | "node_modules/strip-final-newline": {
2881 | "version": "3.0.0",
2882 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
2883 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
2884 | "dev": true,
2885 | "engines": {
2886 | "node": ">=12"
2887 | },
2888 | "funding": {
2889 | "url": "https://github.com/sponsors/sindresorhus"
2890 | }
2891 | },
2892 | "node_modules/strip-json-comments": {
2893 | "version": "3.1.1",
2894 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
2895 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
2896 | "dev": true,
2897 | "engines": {
2898 | "node": ">=8"
2899 | },
2900 | "funding": {
2901 | "url": "https://github.com/sponsors/sindresorhus"
2902 | }
2903 | },
2904 | "node_modules/supports-color": {
2905 | "version": "7.2.0",
2906 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2907 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2908 | "dev": true,
2909 | "dependencies": {
2910 | "has-flag": "^4.0.0"
2911 | },
2912 | "engines": {
2913 | "node": ">=8"
2914 | }
2915 | },
2916 | "node_modules/synckit": {
2917 | "version": "0.11.3",
2918 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.3.tgz",
2919 | "integrity": "sha512-szhWDqNNI9etJUvbZ1/cx1StnZx8yMmFxme48SwR4dty4ioSY50KEZlpv0qAfgc1fpRzuh9hBXEzoCpJ779dLg==",
2920 | "dev": true,
2921 | "license": "MIT",
2922 | "dependencies": {
2923 | "@pkgr/core": "^0.2.1",
2924 | "tslib": "^2.8.1"
2925 | },
2926 | "engines": {
2927 | "node": "^14.18.0 || >=16.0.0"
2928 | },
2929 | "funding": {
2930 | "url": "https://opencollective.com/synckit"
2931 | }
2932 | },
2933 | "node_modules/text-extensions": {
2934 | "version": "2.4.0",
2935 | "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz",
2936 | "integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==",
2937 | "dev": true,
2938 | "license": "MIT",
2939 | "engines": {
2940 | "node": ">=8"
2941 | },
2942 | "funding": {
2943 | "url": "https://github.com/sponsors/sindresorhus"
2944 | }
2945 | },
2946 | "node_modules/text-table": {
2947 | "version": "0.2.0",
2948 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
2949 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
2950 | "dev": true
2951 | },
2952 | "node_modules/through": {
2953 | "version": "2.3.8",
2954 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
2955 | "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
2956 | "dev": true,
2957 | "license": "MIT"
2958 | },
2959 | "node_modules/tinyexec": {
2960 | "version": "1.0.1",
2961 | "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.0.1.tgz",
2962 | "integrity": "sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==",
2963 | "dev": true,
2964 | "license": "MIT"
2965 | },
2966 | "node_modules/to-regex-range": {
2967 | "version": "5.0.1",
2968 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2969 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2970 | "dev": true,
2971 | "dependencies": {
2972 | "is-number": "^7.0.0"
2973 | },
2974 | "engines": {
2975 | "node": ">=8.0"
2976 | }
2977 | },
2978 | "node_modules/tslib": {
2979 | "version": "2.8.1",
2980 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
2981 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2982 | "dev": true,
2983 | "license": "0BSD"
2984 | },
2985 | "node_modules/tunnel": {
2986 | "version": "0.0.6",
2987 | "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
2988 | "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
2989 | "engines": {
2990 | "node": ">=0.6.11 <=0.7.0 || >=0.7.3"
2991 | }
2992 | },
2993 | "node_modules/type-check": {
2994 | "version": "0.4.0",
2995 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2996 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2997 | "dev": true,
2998 | "dependencies": {
2999 | "prelude-ls": "^1.2.1"
3000 | },
3001 | "engines": {
3002 | "node": ">= 0.8.0"
3003 | }
3004 | },
3005 | "node_modules/type-fest": {
3006 | "version": "0.20.2",
3007 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
3008 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
3009 | "dev": true,
3010 | "engines": {
3011 | "node": ">=10"
3012 | },
3013 | "funding": {
3014 | "url": "https://github.com/sponsors/sindresorhus"
3015 | }
3016 | },
3017 | "node_modules/typescript": {
3018 | "version": "5.8.3",
3019 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
3020 | "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
3021 | "dev": true,
3022 | "license": "Apache-2.0",
3023 | "peer": true,
3024 | "bin": {
3025 | "tsc": "bin/tsc",
3026 | "tsserver": "bin/tsserver"
3027 | },
3028 | "engines": {
3029 | "node": ">=14.17"
3030 | }
3031 | },
3032 | "node_modules/undici-types": {
3033 | "version": "5.26.5",
3034 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
3035 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
3036 | "dev": true
3037 | },
3038 | "node_modules/unicorn-magic": {
3039 | "version": "0.1.0",
3040 | "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
3041 | "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
3042 | "dev": true,
3043 | "license": "MIT",
3044 | "engines": {
3045 | "node": ">=18"
3046 | },
3047 | "funding": {
3048 | "url": "https://github.com/sponsors/sindresorhus"
3049 | }
3050 | },
3051 | "node_modules/uri-js": {
3052 | "version": "4.4.1",
3053 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
3054 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
3055 | "dev": true,
3056 | "dependencies": {
3057 | "punycode": "^2.1.0"
3058 | }
3059 | },
3060 | "node_modules/which": {
3061 | "version": "2.0.2",
3062 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
3063 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
3064 | "dev": true,
3065 | "dependencies": {
3066 | "isexe": "^2.0.0"
3067 | },
3068 | "bin": {
3069 | "node-which": "bin/node-which"
3070 | },
3071 | "engines": {
3072 | "node": ">= 8"
3073 | }
3074 | },
3075 | "node_modules/wrap-ansi": {
3076 | "version": "7.0.0",
3077 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
3078 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
3079 | "dev": true,
3080 | "dependencies": {
3081 | "ansi-styles": "^4.0.0",
3082 | "string-width": "^4.1.0",
3083 | "strip-ansi": "^6.0.0"
3084 | },
3085 | "engines": {
3086 | "node": ">=10"
3087 | },
3088 | "funding": {
3089 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3090 | }
3091 | },
3092 | "node_modules/wrap-ansi/node_modules/emoji-regex": {
3093 | "version": "8.0.0",
3094 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
3095 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
3096 | "dev": true
3097 | },
3098 | "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": {
3099 | "version": "3.0.0",
3100 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
3101 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
3102 | "dev": true,
3103 | "engines": {
3104 | "node": ">=8"
3105 | }
3106 | },
3107 | "node_modules/wrap-ansi/node_modules/string-width": {
3108 | "version": "4.2.3",
3109 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3110 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3111 | "dev": true,
3112 | "dependencies": {
3113 | "emoji-regex": "^8.0.0",
3114 | "is-fullwidth-code-point": "^3.0.0",
3115 | "strip-ansi": "^6.0.1"
3116 | },
3117 | "engines": {
3118 | "node": ">=8"
3119 | }
3120 | },
3121 | "node_modules/wrappy": {
3122 | "version": "1.0.2",
3123 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
3124 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
3125 | "dev": true
3126 | },
3127 | "node_modules/y18n": {
3128 | "version": "5.0.8",
3129 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
3130 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
3131 | "dev": true,
3132 | "engines": {
3133 | "node": ">=10"
3134 | }
3135 | },
3136 | "node_modules/yaml": {
3137 | "version": "2.7.0",
3138 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
3139 | "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
3140 | "dev": true,
3141 | "license": "ISC",
3142 | "bin": {
3143 | "yaml": "bin.mjs"
3144 | },
3145 | "engines": {
3146 | "node": ">= 14"
3147 | }
3148 | },
3149 | "node_modules/yargs": {
3150 | "version": "17.7.1",
3151 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz",
3152 | "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==",
3153 | "dev": true,
3154 | "dependencies": {
3155 | "cliui": "^8.0.1",
3156 | "escalade": "^3.1.1",
3157 | "get-caller-file": "^2.0.5",
3158 | "require-directory": "^2.1.1",
3159 | "string-width": "^4.2.3",
3160 | "y18n": "^5.0.5",
3161 | "yargs-parser": "^21.1.1"
3162 | },
3163 | "engines": {
3164 | "node": ">=12"
3165 | }
3166 | },
3167 | "node_modules/yargs/node_modules/emoji-regex": {
3168 | "version": "8.0.0",
3169 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
3170 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
3171 | "dev": true
3172 | },
3173 | "node_modules/yargs/node_modules/is-fullwidth-code-point": {
3174 | "version": "3.0.0",
3175 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
3176 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
3177 | "dev": true,
3178 | "engines": {
3179 | "node": ">=8"
3180 | }
3181 | },
3182 | "node_modules/yargs/node_modules/string-width": {
3183 | "version": "4.2.3",
3184 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
3185 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
3186 | "dev": true,
3187 | "dependencies": {
3188 | "emoji-regex": "^8.0.0",
3189 | "is-fullwidth-code-point": "^3.0.0",
3190 | "strip-ansi": "^6.0.1"
3191 | },
3192 | "engines": {
3193 | "node": ">=8"
3194 | }
3195 | },
3196 | "node_modules/yargs/node_modules/yargs-parser": {
3197 | "version": "21.1.1",
3198 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
3199 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
3200 | "dev": true,
3201 | "engines": {
3202 | "node": ">=12"
3203 | }
3204 | },
3205 | "node_modules/yocto-queue": {
3206 | "version": "0.1.0",
3207 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
3208 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
3209 | "dev": true,
3210 | "engines": {
3211 | "node": ">=10"
3212 | },
3213 | "funding": {
3214 | "url": "https://github.com/sponsors/sindresorhus"
3215 | }
3216 | }
3217 | }
3218 | }
3219 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "node-test-github-reporter",
3 | "version": "1.3.1",
4 | "description": "A GitHub test reporter for the Node.js test runner",
5 | "main": "index.js",
6 | "type": "module",
7 | "scripts": {
8 | "lint": "eslint .",
9 | "test": "npm run test:compare && npm run test:package",
10 | "test:compare": "./test/e2e/compare.sh",
11 | "test:package": "node --test ./test/package-tests/**.test.js",
12 | "prepare": "husky"
13 | },
14 | "repository": {
15 | "type": "git",
16 | "url": "git+https://github.com/nearform/node-test-github-reporter.git"
17 | },
18 | "keywords": [
19 | "test",
20 | "reporter",
21 | "github"
22 | ],
23 | "author": {
24 | "name": "Romulo Vitoi",
25 | "email": "romulo.vitoi@nearform.com"
26 | },
27 | "license": "MIT",
28 | "bugs": {
29 | "url": "https://github.com/nearform/node-test-github-reporter/issues"
30 | },
31 | "homepage": "https://github.com/nearform/node-test-github-reporter#readme",
32 | "dependencies": {
33 | "@actions/core": "^1.10.0",
34 | "error-stack-parser": "^2.1.4",
35 | "node-test-parser": "^3.0.0",
36 | "stack-utils": "^2.0.6"
37 | },
38 | "devDependencies": {
39 | "@commitlint/cli": "^19.0.3",
40 | "@commitlint/config-conventional": "^19.0.3",
41 | "eslint": "^8.35.0",
42 | "eslint-config-prettier": "^10.0.1",
43 | "eslint-plugin-prettier": "5.4.0",
44 | "husky": "^9.0.11",
45 | "lint-staged": "^15.0.1",
46 | "prettier": "^3.0.3"
47 | },
48 | "lint-staged": {
49 | "*.{js,jsx}": "eslint --cache --fix"
50 | }
51 | }
52 |
--------------------------------------------------------------------------------
/test/e2e/compare.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | set -e
3 |
4 | # Function to replace test duration with 0
5 | remove_variables() {
6 | echo "$1" | sed -E 's/[0-9]+ms/0ms/g'
7 | }
8 |
9 | # Create temporary file to hold test summary
10 | export GITHUB_STEP_SUMMARY=$(mktemp)
11 |
12 | # Run sample tests and generate the report, ignoring errors
13 | node --test --test-reporter ./index.js ./test/resources/sample-tests || true
14 |
15 | # Compare with expected results
16 | report=$(cat $GITHUB_STEP_SUMMARY)
17 | expected=$(cat ./test/resources/expected.md)
18 | diff <(remove_variables "$report") <(remove_variables "$expected")
19 |
--------------------------------------------------------------------------------
/test/package-tests/path.test.js:
--------------------------------------------------------------------------------
1 | import assert from 'node:assert'
2 | import { describe, it } from 'node:test'
3 | import { getRelativeFilePath, getSafePath } from '../../index.js'
4 |
5 | describe('File Path', () => {
6 | it('should prefix file:// to file path', () => {
7 | const expected = 'file:///path/to/file.js'
8 | const actual = getSafePath('/path/to/file.js')
9 | assert.equal(expected, actual)
10 | })
11 |
12 | it('should not modify correctly constructed path', () => {
13 | const expected = 'file:///path/to/file.js'
14 | const actual = getSafePath('file:///path/to/file.js')
15 | assert.equal(expected, actual)
16 | })
17 |
18 | it('should not error with file path without file:// prefix', () => {
19 | const expected = 'path/to/file.js'
20 | const actualUrl = getRelativeFilePath('/path/to/file.js')
21 | assert.equal(actualUrl, expected)
22 | })
23 | })
24 |
--------------------------------------------------------------------------------
/test/resources/expected.md:
--------------------------------------------------------------------------------
1 |
Node.js Test Results
2 | Passed | Failed | Skipped | Duration |
---|
1 | 2 | 1 | 161ms |
3 | Details
4 |
5 | :x: calls a nonexistent method
6 |
7 |
8 |
9 | ```
10 | nonexistentMethod is not defined
11 | ```
12 |
13 | Stack:
14 | ```
15 | TestContext. (file://test/resources/sample-tests/broken.test.js:5:3)
16 | ```
17 |
18 |
19 |
20 |
21 | :x: module
22 |
23 |
24 | :x: function
25 |
26 |
27 | :x: behavior
28 |
29 |
30 | :white_check_mark: asserts 1 === 1
31 |
32 | Test passed
33 |
34 |
35 |
36 | :x: fails
37 |
38 |
39 |
40 | ```
41 | Expected values to be strictly equal:
42 |
43 | 1 !== 2
44 |
45 | ```
46 |
47 | Stack:
48 | ```
49 | 1 !== 2
50 | TestContext. (file://test/resources/sample-tests/nested.test.js:12:16)
51 | async Promise.all (index 0)
52 | async Promise.all (index 0)
53 | ```
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 | :white_check_mark: behavior
65 |
66 |
67 | :leftwards_arrow_with_hook: skipped test
68 |
69 | Test skipped
70 |
71 |
72 |
73 |
74 |
--------------------------------------------------------------------------------
/test/resources/sample-tests/broken.test.js:
--------------------------------------------------------------------------------
1 | import { it } from 'node:test'
2 |
3 | it('calls a nonexistent method', () => {
4 | // eslint-disable-next-line no-undef
5 | nonexistentMethod()
6 | })
7 |
--------------------------------------------------------------------------------
/test/resources/sample-tests/nested.test.js:
--------------------------------------------------------------------------------
1 | import assert from 'node:assert'
2 | import { describe, it } from 'node:test'
3 |
4 | describe('module', () => {
5 | describe('function', () => {
6 | describe('behavior', () => {
7 | it('asserts 1 === 1', () => {
8 | assert.strictEqual(1, 1)
9 | })
10 |
11 | it('fails', () => {
12 | assert.strictEqual(1, 2)
13 | })
14 | })
15 | })
16 | })
17 |
--------------------------------------------------------------------------------
/test/resources/sample-tests/skip.test.js:
--------------------------------------------------------------------------------
1 | import { describe, it } from 'node:test'
2 | import assert from 'node:assert'
3 |
4 | describe('behavior', () => {
5 | it.skip('skipped test', () => {
6 | assert.strictEqual(1, 2)
7 | })
8 | })
9 |
--------------------------------------------------------------------------------