chore(deps-dev): Bump the dev-dependencies group with 13 updates (#11908)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
This commit is contained in:
dependabot[bot] 2024-02-14 18:20:12 +00:00 committed by GitHub
parent 72726e6e11
commit 634d5b805d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
27 changed files with 299 additions and 198 deletions

View File

@ -61,8 +61,13 @@ sidebar_label: API
| Function | Description | | Function | Description |
| -------------------------------------------------------------------------------------- | ----------- | | -------------------------------------------------------------------------------------- | ----------- |
| [clearCustomQueryHandlers()](./puppeteer.clearcustomqueryhandlers.md) | | | [clearCustomQueryHandlers()](./puppeteer.clearcustomqueryhandlers.md) | |
| [connect(options)](./puppeteer.connect.md) | |
| [customQueryHandlerNames()](./puppeteer.customqueryhandlernames.md) | | | [customQueryHandlerNames()](./puppeteer.customqueryhandlernames.md) | |
| [defaultArgs(options)](./puppeteer.defaultargs.md) | |
| [executablePath(channel)](./puppeteer.executablepath.md) | |
| [launch(options)](./puppeteer.launch.md) | |
| [registerCustomQueryHandler(name, handler)](./puppeteer.registercustomqueryhandler.md) | | | [registerCustomQueryHandler(name, handler)](./puppeteer.registercustomqueryhandler.md) | |
| [trimCache()](./puppeteer.trimcache.md) | |
| [unregisterCustomQueryHandler(name)](./puppeteer.unregistercustomqueryhandler.md) | | | [unregisterCustomQueryHandler(name)](./puppeteer.unregistercustomqueryhandler.md) | |
## Interfaces ## Interfaces
@ -153,16 +158,11 @@ sidebar_label: API
| Variable | Description | | Variable | Description |
| --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | | --------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| [connect](./puppeteer.connect.md) | |
| [DEFAULT_INTERCEPT_RESOLUTION_PRIORITY](./puppeteer.default_intercept_resolution_priority.md) | The default cooperative request interception resolution priority | | [DEFAULT_INTERCEPT_RESOLUTION_PRIORITY](./puppeteer.default_intercept_resolution_priority.md) | The default cooperative request interception resolution priority |
| [defaultArgs](./puppeteer.defaultargs.md) | |
| [executablePath](./puppeteer.executablepath.md) | |
| [KnownDevices](./puppeteer.knowndevices.md) | A list of devices to be used with [Page.emulate()](./puppeteer.page.emulate.md). | | [KnownDevices](./puppeteer.knowndevices.md) | A list of devices to be used with [Page.emulate()](./puppeteer.page.emulate.md). |
| [launch](./puppeteer.launch.md) | |
| [MouseButton](./puppeteer.mousebutton.md) | Enum of valid mouse buttons. | | [MouseButton](./puppeteer.mousebutton.md) | Enum of valid mouse buttons. |
| [PredefinedNetworkConditions](./puppeteer.predefinednetworkconditions.md) | A list of network conditions to be used with [Page.emulateNetworkConditions()](./puppeteer.page.emulatenetworkconditions.md). | | [PredefinedNetworkConditions](./puppeteer.predefinednetworkconditions.md) | A list of network conditions to be used with [Page.emulateNetworkConditions()](./puppeteer.page.emulatenetworkconditions.md). |
| [puppeteer](./puppeteer.puppeteer.md) | | | [puppeteer](./puppeteer.puppeteer.md) | |
| [trimCache](./puppeteer.trimcache.md) | |
## Type Aliases ## Type Aliases

View File

@ -2,7 +2,7 @@
sidebar_label: connect sidebar_label: connect
--- ---
# connect variable # connect() function
#### Signature: #### Signature:
@ -11,3 +11,13 @@ connect: (
options: import('puppeteer-core/internal/puppeteer-core.js').ConnectOptions options: import('puppeteer-core/internal/puppeteer-core.js').ConnectOptions
) => Promise<import('puppeteer-core/internal/puppeteer-core.js').Browser>; ) => Promise<import('puppeteer-core/internal/puppeteer-core.js').Browser>;
``` ```
## Parameters
| Parameter | Type | Description |
| --------- | --------------------------------------------------------------------------------------------------- | ----------- |
| options | import("puppeteer-core/internal/puppeteer-core.js").[ConnectOptions](./puppeteer.connectoptions.md) | |
**Returns:**
Promise&lt;import("puppeteer-core/internal/puppeteer-core.js").[Browser](./puppeteer.browser.md)&gt;

View File

@ -2,10 +2,20 @@
sidebar_label: defaultArgs sidebar_label: defaultArgs
--- ---
# defaultArgs variable # defaultArgs() function
#### Signature: #### Signature:
```typescript ```typescript
defaultArgs: (options?: import("puppeteer-core/internal/puppeteer-core.js").BrowserLaunchArgumentOptions | undefined) => string[] defaultArgs: (options?: import("puppeteer-core/internal/puppeteer-core.js").BrowserLaunchArgumentOptions | undefined) => string[]
``` ```
## Parameters
| Parameter | Type | Description |
| --------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------ |
| options | import("puppeteer-core/internal/puppeteer-core.js").[BrowserLaunchArgumentOptions](./puppeteer.browserlaunchargumentoptions.md) \| undefined | _(Optional)_ |
**Returns:**
string\[\]

View File

@ -2,7 +2,7 @@
sidebar_label: executablePath sidebar_label: executablePath
--- ---
# executablePath variable # executablePath() function
#### Signature: #### Signature:
@ -13,3 +13,13 @@ executablePath: (
| undefined | undefined
) => string; ) => string;
``` ```
## Parameters
| Parameter | Type | Description |
| --------- | ---------------------------------------------------------------------------------------------------------------------------- | ------------ |
| channel | import("puppeteer-core/internal/puppeteer-core.js").[ChromeReleaseChannel](./puppeteer.chromereleasechannel.md) \| undefined | _(Optional)_ |
**Returns:**
string

View File

@ -2,7 +2,7 @@
sidebar_label: launch sidebar_label: launch
--- ---
# launch variable # launch() function
#### Signature: #### Signature:
@ -13,3 +13,13 @@ launch: (
| undefined | undefined
) => Promise<import('puppeteer-core/internal/puppeteer-core.js').Browser>; ) => Promise<import('puppeteer-core/internal/puppeteer-core.js').Browser>;
``` ```
## Parameters
| Parameter | Type | Description |
| --------- | -------------------------------------------------------------------------------------------------------------------------------- | ------------ |
| options | import("puppeteer-core/internal/puppeteer-core.js").[PuppeteerLaunchOptions](./puppeteer.puppeteerlaunchoptions.md) \| undefined | _(Optional)_ |
**Returns:**
Promise&lt;import("puppeteer-core/internal/puppeteer-core.js").[Browser](./puppeteer.browser.md)&gt;

View File

@ -2,10 +2,14 @@
sidebar_label: trimCache sidebar_label: trimCache
--- ---
# trimCache variable # trimCache() function
#### Signature: #### Signature:
```typescript ```typescript
trimCache: () => Promise<void>; trimCache: () => Promise<void>;
``` ```
**Returns:**
Promise&lt;void&gt;

341
package-lock.json generated
View File

@ -19,10 +19,10 @@
"@actions/core": "1.10.1", "@actions/core": "1.10.1",
"@types/mocha": "10.0.6", "@types/mocha": "10.0.6",
"@types/node": "20.8.4", "@types/node": "20.8.4",
"@types/semver": "7.5.6", "@types/semver": "7.5.7",
"@types/sinon": "17.0.3", "@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "6.20.0", "@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "6.20.0", "@typescript-eslint/parser": "7.0.1",
"esbuild": "0.20.0", "esbuild": "0.20.0",
"eslint": "8.56.0", "eslint": "8.56.0",
"eslint-config-prettier": "9.1.0", "eslint-config-prettier": "9.1.0",
@ -32,7 +32,7 @@
"eslint-plugin-prettier": "5.1.3", "eslint-plugin-prettier": "5.1.3",
"eslint-plugin-rulesdir": "0.2.2", "eslint-plugin-rulesdir": "0.2.2",
"eslint-plugin-tsdoc": "0.2.17", "eslint-plugin-tsdoc": "0.2.17",
"eslint-plugin-unused-imports": "3.0.0", "eslint-plugin-unused-imports": "3.1.0",
"execa": "8.0.1", "execa": "8.0.1",
"expect": "29.7.0", "expect": "29.7.0",
"gts": "5.2.0", "gts": "5.2.0",
@ -40,13 +40,13 @@
"license-checker": "25.0.1", "license-checker": "25.0.1",
"mocha": "10.3.0", "mocha": "10.3.0",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"prettier": "3.2.4", "prettier": "3.2.5",
"semver": "7.5.4", "semver": "7.6.0",
"sinon": "17.0.1", "sinon": "17.0.1",
"source-map-support": "0.5.21", "source-map-support": "0.5.21",
"spdx-satisfies": "5.0.1", "spdx-satisfies": "5.0.1",
"tsd": "0.30.4", "tsd": "0.30.4",
"tsx": "4.7.0", "tsx": "4.7.1",
"typescript": "5.3.3", "typescript": "5.3.3",
"wireit": "0.14.4" "wireit": "0.14.4"
} }
@ -933,14 +933,14 @@
} }
}, },
"node_modules/@microsoft/api-documenter": { "node_modules/@microsoft/api-documenter": {
"version": "7.23.20", "version": "7.23.23",
"resolved": "https://registry.npmjs.org/@microsoft/api-documenter/-/api-documenter-7.23.20.tgz", "resolved": "https://registry.npmjs.org/@microsoft/api-documenter/-/api-documenter-7.23.23.tgz",
"integrity": "sha512-61V6sukyYZ5jQEdyvDFzInaIRTd0wgT2ECKPanr2ba0fc+Mien+KIr5shz9EAqJMZz0GifTnw9HmJqsfR688xA==", "integrity": "sha512-77upYNmm6h9+8hdNWL7R1+vW1QaExkwKuOuSWR2v3Tdk2JHCVf+s341jybgYEnxRhIQIIxtLeiwQ/xzMFOizwQ==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@microsoft/api-extractor-model": "7.28.7", "@microsoft/api-extractor-model": "7.28.9",
"@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc": "0.14.2",
"@rushstack/node-core-library": "3.64.2", "@rushstack/node-core-library": "3.66.0",
"@rushstack/ts-command-line": "4.17.1", "@rushstack/ts-command-line": "4.17.1",
"colors": "~1.2.1", "colors": "~1.2.1",
"js-yaml": "~3.13.1", "js-yaml": "~3.13.1",
@ -979,15 +979,15 @@
"dev": true "dev": true
}, },
"node_modules/@microsoft/api-extractor": { "node_modules/@microsoft/api-extractor": {
"version": "7.39.4", "version": "7.40.1",
"resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.39.4.tgz", "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.40.1.tgz",
"integrity": "sha512-6YvfkpbEqRQ0UPdVBc+lOiq7VlXi9kw8U3w+RcXCFDVc/UljlXU5l9fHEyuBAW1GGO2opUe+yf9OscWhoHANhg==", "integrity": "sha512-xHn2Zkh6s5JIjP94SG6VtIlIeRJcASgfZpDKV+bgoddMt1X4ujSZFOz7uEGNYNO7mEtdVOvpNKBpC4CDytD8KQ==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@microsoft/api-extractor-model": "7.28.7", "@microsoft/api-extractor-model": "7.28.9",
"@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc": "0.14.2",
"@microsoft/tsdoc-config": "~0.16.1", "@microsoft/tsdoc-config": "~0.16.1",
"@rushstack/node-core-library": "3.64.2", "@rushstack/node-core-library": "3.66.0",
"@rushstack/rig-package": "0.5.1", "@rushstack/rig-package": "0.5.1",
"@rushstack/ts-command-line": "4.17.1", "@rushstack/ts-command-line": "4.17.1",
"colors": "~1.2.1", "colors": "~1.2.1",
@ -1002,14 +1002,29 @@
} }
}, },
"node_modules/@microsoft/api-extractor-model": { "node_modules/@microsoft/api-extractor-model": {
"version": "7.28.7", "version": "7.28.9",
"resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.28.7.tgz", "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.28.9.tgz",
"integrity": "sha512-4gCGGEQGHmbQmarnDcEWS2cjj0LtNuD3D6rh3ZcAyAYTkceAugAk2eyQHGdTcGX8w3qMjWCTU1TPb8xHnMM+Kg==", "integrity": "sha512-lM77dV+VO46MGp5lu4stUBnO3jyr+CrDzU+DtapcOQEZUqJxPYUoK5zjeD+gRZ9ckgGMZC94ch6FBkpmsjwQgw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc": "0.14.2",
"@microsoft/tsdoc-config": "~0.16.1", "@microsoft/tsdoc-config": "~0.16.1",
"@rushstack/node-core-library": "3.64.2" "@rushstack/node-core-library": "3.66.0"
}
},
"node_modules/@microsoft/api-extractor/node_modules/semver": {
"version": "7.5.4",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
"integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
},
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
} }
}, },
"node_modules/@microsoft/tsdoc": { "node_modules/@microsoft/tsdoc": {
@ -1388,12 +1403,12 @@
"link": true "link": true
}, },
"node_modules/@prettier/sync": { "node_modules/@prettier/sync": {
"version": "0.5.0", "version": "0.5.1",
"resolved": "https://registry.npmjs.org/@prettier/sync/-/sync-0.5.0.tgz", "resolved": "https://registry.npmjs.org/@prettier/sync/-/sync-0.5.1.tgz",
"integrity": "sha512-1a6veNypZYkSbU33anha4Pdna9Jz3HXUc0aru7sgN7HuyJHPIVNdCTfjhm1S+mG9yXmWuAO+a6I+Cznp9Ogt3A==", "integrity": "sha512-tpF+A1e4ynO2U4fTH21Sjgm9EYENmqg4zmJCMLrmLVfzIzuDc1cKGXyxrxbFgcH8qQRfowyDCZFAUukwhiZlsw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"make-synchronized": "^0.2.5" "make-synchronized": "^0.2.8"
}, },
"funding": { "funding": {
"url": "https://github.com/prettier/prettier-synchronized?sponsor=1" "url": "https://github.com/prettier/prettier-synchronized?sponsor=1"
@ -1435,9 +1450,9 @@
"link": true "link": true
}, },
"node_modules/@rushstack/node-core-library": { "node_modules/@rushstack/node-core-library": {
"version": "3.64.2", "version": "3.66.0",
"resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.64.2.tgz", "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.66.0.tgz",
"integrity": "sha512-n1S2VYEklONiwKpUyBq/Fym6yAsfsCXrqFabuOMcCuj4C+zW+HyaspSHXJCKqkMxfjviwe/c9+DUqvRWIvSN9Q==", "integrity": "sha512-nXyddNe3T9Ph14TrIfjtLZ+GDzC7HL/wF+ZKC18qmRVtz2xXLd1ZzreVgiAgGDwn8ZUWZ/7q//gQJk96iWjSrg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"colors": "~1.2.1", "colors": "~1.2.1",
@ -1457,6 +1472,21 @@
} }
} }
}, },
"node_modules/@rushstack/node-core-library/node_modules/semver": {
"version": "7.5.4",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
"integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
},
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@rushstack/rig-package": { "node_modules/@rushstack/rig-package": {
"version": "0.5.1", "version": "0.5.1",
"resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.1.tgz", "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.1.tgz",
@ -1617,13 +1647,13 @@
"dev": true "dev": true
}, },
"node_modules/@swc/core": { "node_modules/@swc/core": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.4.1.tgz",
"integrity": "sha512-zKhqDyFcTsyLIYK1iEmavljZnf4CCor5pF52UzLAz4B6Nu/4GLU+2LQVAf+oRHjusG39PTPjd2AlRT3f3QWfsQ==", "integrity": "sha512-3y+Y8js+e7BbM16iND+6Rcs3jdiL28q3iVtYsCviYSSpP2uUVKkp5sJnCY4pg8AaVvyN7CGQHO7gLEZQ5ByozQ==",
"dev": true, "dev": true,
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"@swc/counter": "^0.1.1", "@swc/counter": "^0.1.2",
"@swc/types": "^0.1.5" "@swc/types": "^0.1.5"
}, },
"engines": { "engines": {
@ -1634,16 +1664,16 @@
"url": "https://opencollective.com/swc" "url": "https://opencollective.com/swc"
}, },
"optionalDependencies": { "optionalDependencies": {
"@swc/core-darwin-arm64": "1.3.107", "@swc/core-darwin-arm64": "1.4.1",
"@swc/core-darwin-x64": "1.3.107", "@swc/core-darwin-x64": "1.4.1",
"@swc/core-linux-arm-gnueabihf": "1.3.107", "@swc/core-linux-arm-gnueabihf": "1.4.1",
"@swc/core-linux-arm64-gnu": "1.3.107", "@swc/core-linux-arm64-gnu": "1.4.1",
"@swc/core-linux-arm64-musl": "1.3.107", "@swc/core-linux-arm64-musl": "1.4.1",
"@swc/core-linux-x64-gnu": "1.3.107", "@swc/core-linux-x64-gnu": "1.4.1",
"@swc/core-linux-x64-musl": "1.3.107", "@swc/core-linux-x64-musl": "1.4.1",
"@swc/core-win32-arm64-msvc": "1.3.107", "@swc/core-win32-arm64-msvc": "1.4.1",
"@swc/core-win32-ia32-msvc": "1.3.107", "@swc/core-win32-ia32-msvc": "1.4.1",
"@swc/core-win32-x64-msvc": "1.3.107" "@swc/core-win32-x64-msvc": "1.4.1"
}, },
"peerDependencies": { "peerDependencies": {
"@swc/helpers": "^0.5.0" "@swc/helpers": "^0.5.0"
@ -1655,9 +1685,9 @@
} }
}, },
"node_modules/@swc/core-darwin-arm64": { "node_modules/@swc/core-darwin-arm64": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.4.1.tgz",
"integrity": "sha512-47tD/5vSXWxPd0j/ZllyQUg4bqalbQTsmqSw0J4dDdS82MWqCAwUErUrAZPRjBkjNQ6Kmrf5rpCWaGTtPw+ngw==", "integrity": "sha512-ePyfx0348UbR4DOAW24TedeJbafnzha8liXFGuQ4bdXtEVXhLfPngprrxKrAddCuv42F9aTxydlF6+adD3FBhA==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@ -1671,9 +1701,9 @@
} }
}, },
"node_modules/@swc/core-darwin-x64": { "node_modules/@swc/core-darwin-x64": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.4.1.tgz",
"integrity": "sha512-hwiLJ2ulNkBGAh1m1eTfeY1417OAYbRGcb/iGsJ+LuVLvKAhU/itzsl535CvcwAlt2LayeCFfcI8gdeOLeZa9A==", "integrity": "sha512-eLf4JSe6VkCMdDowjM8XNC5rO+BrgfbluEzAVtKR8L2HacNYukieumN7EzpYCi0uF1BYwu1ku6tLyG2r0VcGxA==",
"cpu": [ "cpu": [
"x64" "x64"
], ],
@ -1687,9 +1717,9 @@
} }
}, },
"node_modules/@swc/core-linux-arm-gnueabihf": { "node_modules/@swc/core-linux-arm-gnueabihf": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.4.1.tgz",
"integrity": "sha512-I2wzcC0KXqh0OwymCmYwNRgZ9nxX7DWnOOStJXV3pS0uB83TXAkmqd7wvMBuIl9qu4Hfomi9aDM7IlEEn9tumQ==", "integrity": "sha512-K8VtTLWMw+rkN/jDC9o/Q9SMmzdiHwYo2CfgkwVT29NsGccwmNhCQx6XoYiPKyKGIFKt4tdQnJHKUFzxUqQVtQ==",
"cpu": [ "cpu": [
"arm" "arm"
], ],
@ -1703,9 +1733,9 @@
} }
}, },
"node_modules/@swc/core-linux-arm64-gnu": { "node_modules/@swc/core-linux-arm64-gnu": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.4.1.tgz",
"integrity": "sha512-HWgnn7JORYlOYnGsdunpSF8A+BCZKPLzLtEUA27/M/ZuANcMZabKL9Zurt7XQXq888uJFAt98Gy+59PU90aHKg==", "integrity": "sha512-0e8p4g0Bfkt8lkiWgcdiENH3RzkcqKtpRXIVNGOmVc0OBkvc2tpm2WTx/eoCnes2HpTT4CTtR3Zljj4knQ4Fvw==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@ -1719,9 +1749,9 @@
} }
}, },
"node_modules/@swc/core-linux-arm64-musl": { "node_modules/@swc/core-linux-arm64-musl": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.4.1.tgz",
"integrity": "sha512-vfPF74cWfAm8hyhS8yvYI94ucMHIo8xIYU+oFOW9uvDlGQRgnUf/6DEVbLyt/3yfX5723Ln57U8uiMALbX5Pyw==", "integrity": "sha512-b/vWGQo2n7lZVUnSQ7NBq3Qrj85GrAPPiRbpqaIGwOytiFSk8VULFihbEUwDe0rXgY4LDm8z8wkgADZcLnmdUA==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@ -1735,9 +1765,9 @@
} }
}, },
"node_modules/@swc/core-linux-x64-gnu": { "node_modules/@swc/core-linux-x64-gnu": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.4.1.tgz",
"integrity": "sha512-uBVNhIg0ip8rH9OnOsCARUFZ3Mq3tbPHxtmWk9uAa5u8jQwGWeBx5+nTHpDOVd3YxKb6+5xDEI/edeeLpha/9g==", "integrity": "sha512-AFMQlvkKEdNi1Vk2GFTxxJzbICttBsOQaXa98kFTeWTnFFIyiIj2w7Sk8XRTEJ/AjF8ia8JPKb1zddBWr9+bEQ==",
"cpu": [ "cpu": [
"x64" "x64"
], ],
@ -1751,9 +1781,9 @@
} }
}, },
"node_modules/@swc/core-linux-x64-musl": { "node_modules/@swc/core-linux-x64-musl": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.4.1.tgz",
"integrity": "sha512-mvACkUvzSIB12q1H5JtabWATbk3AG+pQgXEN95AmEX2ZA5gbP9+B+mijsg7Sd/3tboHr7ZHLz/q3SHTvdFJrEw==", "integrity": "sha512-QX2MxIECX1gfvUVZY+jk528/oFkS9MAl76e3ZRvG2KC/aKlCQL0KSzcTSm13mOxkDKS30EaGRDRQWNukGpMeRg==",
"cpu": [ "cpu": [
"x64" "x64"
], ],
@ -1767,9 +1797,9 @@
} }
}, },
"node_modules/@swc/core-win32-arm64-msvc": { "node_modules/@swc/core-win32-arm64-msvc": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.4.1.tgz",
"integrity": "sha512-J3P14Ngy/1qtapzbguEH41kY109t6DFxfbK4Ntz9dOWNuVY3o9/RTB841ctnJk0ZHEG+BjfCJjsD2n8H5HcaOA==", "integrity": "sha512-OklkJYXXI/tntD2zaY8i3iZldpyDw5q+NAP3k9OlQ7wXXf37djRsHLV0NW4+ZNHBjE9xp2RsXJ0jlOJhfgGoFA==",
"cpu": [ "cpu": [
"arm64" "arm64"
], ],
@ -1783,9 +1813,9 @@
} }
}, },
"node_modules/@swc/core-win32-ia32-msvc": { "node_modules/@swc/core-win32-ia32-msvc": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.4.1.tgz",
"integrity": "sha512-ZBUtgyjTHlz8TPJh7kfwwwFma+ktr6OccB1oXC8fMSopD0AxVnQasgun3l3099wIsAB9eEsJDQ/3lDkOLs1gBA==", "integrity": "sha512-MBuc3/QfKX9FnLOU7iGN+6yHRTQaPQ9WskiC8s8JFiKQ+7I2p25tay2RplR9dIEEGgVAu6L7auv96LbNTh+FaA==",
"cpu": [ "cpu": [
"ia32" "ia32"
], ],
@ -1799,9 +1829,9 @@
} }
}, },
"node_modules/@swc/core-win32-x64-msvc": { "node_modules/@swc/core-win32-x64-msvc": {
"version": "1.3.107", "version": "1.4.1",
"resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.107.tgz", "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.4.1.tgz",
"integrity": "sha512-Eyzo2XRqWOxqhE1gk9h7LWmUf4Bp4Xn2Ttb0ayAXFp6YSTxQIThXcT9kipXZqcpxcmDwoq8iWbbf2P8XL743EA==", "integrity": "sha512-lu4h4wFBb/bOK6N2MuZwg7TrEpwYXgpQf5R7ObNSXL65BwZ9BG8XRzD+dLJmALu8l5N08rP/TrpoKRoGT4WSxw==",
"cpu": [ "cpu": [
"x64" "x64"
], ],
@ -2010,9 +2040,9 @@
} }
}, },
"node_modules/@types/semver": { "node_modules/@types/semver": {
"version": "7.5.6", "version": "7.5.7",
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz",
"integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", "integrity": "sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==",
"dev": true "dev": true
}, },
"node_modules/@types/sinon": { "node_modules/@types/sinon": {
@ -2116,16 +2146,16 @@
} }
}, },
"node_modules/@typescript-eslint/eslint-plugin": { "node_modules/@typescript-eslint/eslint-plugin": {
"version": "6.20.0", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.20.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.0.1.tgz",
"integrity": "sha512-fTwGQUnjhoYHeSF6m5pWNkzmDDdsKELYrOBxhjMrofPqCkoC2k3B2wvGHFxa1CTIqkEn88nlW1HVMztjo2K8Hg==", "integrity": "sha512-OLvgeBv3vXlnnJGIAgCLYKjgMEU+wBGj07MQ/nxAaON+3mLzX7mJbhRYrVGiVvFiXtwFlkcBa/TtmglHy0UbzQ==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@eslint-community/regexpp": "^4.5.1", "@eslint-community/regexpp": "^4.5.1",
"@typescript-eslint/scope-manager": "6.20.0", "@typescript-eslint/scope-manager": "7.0.1",
"@typescript-eslint/type-utils": "6.20.0", "@typescript-eslint/type-utils": "7.0.1",
"@typescript-eslint/utils": "6.20.0", "@typescript-eslint/utils": "7.0.1",
"@typescript-eslint/visitor-keys": "6.20.0", "@typescript-eslint/visitor-keys": "7.0.1",
"debug": "^4.3.4", "debug": "^4.3.4",
"graphemer": "^1.4.0", "graphemer": "^1.4.0",
"ignore": "^5.2.4", "ignore": "^5.2.4",
@ -2141,8 +2171,8 @@
"url": "https://opencollective.com/typescript-eslint" "url": "https://opencollective.com/typescript-eslint"
}, },
"peerDependencies": { "peerDependencies": {
"@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", "@typescript-eslint/parser": "^7.0.0",
"eslint": "^7.0.0 || ^8.0.0" "eslint": "^8.56.0"
}, },
"peerDependenciesMeta": { "peerDependenciesMeta": {
"typescript": { "typescript": {
@ -2151,15 +2181,15 @@
} }
}, },
"node_modules/@typescript-eslint/parser": { "node_modules/@typescript-eslint/parser": {
"version": "6.20.0", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.20.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.0.1.tgz",
"integrity": "sha512-bYerPDF/H5v6V76MdMYhjwmwgMA+jlPVqjSDq2cRqMi8bP5sR3Z+RLOiOMad3nsnmDVmn2gAFCyNgh/dIrfP/w==", "integrity": "sha512-8GcRRZNzaHxKzBPU3tKtFNing571/GwPBeCvmAUw0yBtfE2XVd0zFKJIMSWkHJcPQi0ekxjIts6L/rrZq5cxGQ==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/scope-manager": "6.20.0", "@typescript-eslint/scope-manager": "7.0.1",
"@typescript-eslint/types": "6.20.0", "@typescript-eslint/types": "7.0.1",
"@typescript-eslint/typescript-estree": "6.20.0", "@typescript-eslint/typescript-estree": "7.0.1",
"@typescript-eslint/visitor-keys": "6.20.0", "@typescript-eslint/visitor-keys": "7.0.1",
"debug": "^4.3.4" "debug": "^4.3.4"
}, },
"engines": { "engines": {
@ -2170,7 +2200,7 @@
"url": "https://opencollective.com/typescript-eslint" "url": "https://opencollective.com/typescript-eslint"
}, },
"peerDependencies": { "peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0" "eslint": "^8.56.0"
}, },
"peerDependenciesMeta": { "peerDependenciesMeta": {
"typescript": { "typescript": {
@ -2179,13 +2209,13 @@
} }
}, },
"node_modules/@typescript-eslint/scope-manager": { "node_modules/@typescript-eslint/scope-manager": {
"version": "6.20.0", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.20.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.0.1.tgz",
"integrity": "sha512-p4rvHQRDTI1tGGMDFQm+GtxP1ZHyAh64WANVoyEcNMpaTFn3ox/3CcgtIlELnRfKzSs/DwYlDccJEtr3O6qBvA==", "integrity": "sha512-v7/T7As10g3bcWOOPAcbnMDuvctHzCFYCG/8R4bK4iYzdFqsZTbXGln0cZNVcwQcwewsYU2BJLay8j0/4zOk4w==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/types": "6.20.0", "@typescript-eslint/types": "7.0.1",
"@typescript-eslint/visitor-keys": "6.20.0" "@typescript-eslint/visitor-keys": "7.0.1"
}, },
"engines": { "engines": {
"node": "^16.0.0 || >=18.0.0" "node": "^16.0.0 || >=18.0.0"
@ -2196,13 +2226,13 @@
} }
}, },
"node_modules/@typescript-eslint/type-utils": { "node_modules/@typescript-eslint/type-utils": {
"version": "6.20.0", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.20.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.0.1.tgz",
"integrity": "sha512-qnSobiJQb1F5JjN0YDRPHruQTrX7ICsmltXhkV536mp4idGAYrIyr47zF/JmkJtEcAVnIz4gUYJ7gOZa6SmN4g==", "integrity": "sha512-YtT9UcstTG5Yqy4xtLiClm1ZpM/pWVGFnkAa90UfdkkZsR1eP2mR/1jbHeYp8Ay1l1JHPyGvoUYR6o3On5Nhmw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/typescript-estree": "6.20.0", "@typescript-eslint/typescript-estree": "7.0.1",
"@typescript-eslint/utils": "6.20.0", "@typescript-eslint/utils": "7.0.1",
"debug": "^4.3.4", "debug": "^4.3.4",
"ts-api-utils": "^1.0.1" "ts-api-utils": "^1.0.1"
}, },
@ -2214,7 +2244,7 @@
"url": "https://opencollective.com/typescript-eslint" "url": "https://opencollective.com/typescript-eslint"
}, },
"peerDependencies": { "peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0" "eslint": "^8.56.0"
}, },
"peerDependenciesMeta": { "peerDependenciesMeta": {
"typescript": { "typescript": {
@ -2223,9 +2253,9 @@
} }
}, },
"node_modules/@typescript-eslint/types": { "node_modules/@typescript-eslint/types": {
"version": "6.20.0", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.20.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.0.1.tgz",
"integrity": "sha512-MM9mfZMAhiN4cOEcUOEx+0HmuaW3WBfukBZPCfwSqFnQy0grXYtngKCqpQN339X3RrwtzspWJrpbrupKYUSBXQ==", "integrity": "sha512-uJDfmirz4FHib6ENju/7cz9SdMSkeVvJDK3VcMFvf/hAShg8C74FW+06MaQPODHfDJp/z/zHfgawIJRjlu0RLg==",
"dev": true, "dev": true,
"engines": { "engines": {
"node": "^16.0.0 || >=18.0.0" "node": "^16.0.0 || >=18.0.0"
@ -2236,13 +2266,13 @@
} }
}, },
"node_modules/@typescript-eslint/typescript-estree": { "node_modules/@typescript-eslint/typescript-estree": {
"version": "6.20.0", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.20.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.0.1.tgz",
"integrity": "sha512-RnRya9q5m6YYSpBN7IzKu9FmLcYtErkDkc8/dKv81I9QiLLtVBHrjz+Ev/crAqgMNW2FCsoZF4g2QUylMnJz+g==", "integrity": "sha512-SO9wHb6ph0/FN5OJxH4MiPscGah5wjOd0RRpaLvuBv9g8565Fgu0uMySFEPqwPHiQU90yzJ2FjRYKGrAhS1xig==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/types": "6.20.0", "@typescript-eslint/types": "7.0.1",
"@typescript-eslint/visitor-keys": "6.20.0", "@typescript-eslint/visitor-keys": "7.0.1",
"debug": "^4.3.4", "debug": "^4.3.4",
"globby": "^11.1.0", "globby": "^11.1.0",
"is-glob": "^4.0.3", "is-glob": "^4.0.3",
@ -2264,17 +2294,17 @@
} }
}, },
"node_modules/@typescript-eslint/utils": { "node_modules/@typescript-eslint/utils": {
"version": "6.20.0", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.20.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.0.1.tgz",
"integrity": "sha512-/EKuw+kRu2vAqCoDwDCBtDRU6CTKbUmwwI7SH7AashZ+W+7o8eiyy6V2cdOqN49KsTcASWsC5QeghYuRDTyOOg==", "integrity": "sha512-oe4his30JgPbnv+9Vef1h48jm0S6ft4mNwi9wj7bX10joGn07QRfqIqFHoMiajrtoU88cIhXf8ahwgrcbNLgPA==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@eslint-community/eslint-utils": "^4.4.0", "@eslint-community/eslint-utils": "^4.4.0",
"@types/json-schema": "^7.0.12", "@types/json-schema": "^7.0.12",
"@types/semver": "^7.5.0", "@types/semver": "^7.5.0",
"@typescript-eslint/scope-manager": "6.20.0", "@typescript-eslint/scope-manager": "7.0.1",
"@typescript-eslint/types": "6.20.0", "@typescript-eslint/types": "7.0.1",
"@typescript-eslint/typescript-estree": "6.20.0", "@typescript-eslint/typescript-estree": "7.0.1",
"semver": "^7.5.4" "semver": "^7.5.4"
}, },
"engines": { "engines": {
@ -2285,16 +2315,16 @@
"url": "https://opencollective.com/typescript-eslint" "url": "https://opencollective.com/typescript-eslint"
}, },
"peerDependencies": { "peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0" "eslint": "^8.56.0"
} }
}, },
"node_modules/@typescript-eslint/visitor-keys": { "node_modules/@typescript-eslint/visitor-keys": {
"version": "6.20.0", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.20.0.tgz", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.0.1.tgz",
"integrity": "sha512-E8Cp98kRe4gKHjJD4NExXKz/zOJ1A2hhZc+IMVD6i7w4yjIvh6VyuRI0gRtxAsXtoC35uGMaQ9rjI2zJaXDEAw==", "integrity": "sha512-hwAgrOyk++RTXrP4KzCg7zB2U0xt7RUU0ZdMSCsqF3eKUwkdXUMyTb0qdCuji7VIbcpG62kKTU9M1J1c9UpFBw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@typescript-eslint/types": "6.20.0", "@typescript-eslint/types": "7.0.1",
"eslint-visitor-keys": "^3.4.1" "eslint-visitor-keys": "^3.4.1"
}, },
"engines": { "engines": {
@ -4247,9 +4277,9 @@
} }
}, },
"node_modules/eslint-plugin-unused-imports": { "node_modules/eslint-plugin-unused-imports": {
"version": "3.0.0", "version": "3.1.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-3.0.0.tgz", "resolved": "https://registry.npmjs.org/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-3.1.0.tgz",
"integrity": "sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw==", "integrity": "sha512-9l1YFCzXKkw1qtAru1RWUtG2EVDZY0a0eChKXcL+EZ5jitG7qxdctu4RnvhOJHv4xfmUf7h+JJPINlVpGhZMrw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"eslint-rule-composer": "^0.3.0" "eslint-rule-composer": "^0.3.0"
@ -4258,8 +4288,8 @@
"node": "^12.22.0 || ^14.17.0 || >=16.0.0" "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}, },
"peerDependencies": { "peerDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/eslint-plugin": "6 - 7",
"eslint": "^8.0.0" "eslint": "8"
}, },
"peerDependenciesMeta": { "peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": { "@typescript-eslint/eslint-plugin": {
@ -8203,9 +8233,9 @@
} }
}, },
"node_modules/prettier": { "node_modules/prettier": {
"version": "3.2.4", "version": "3.2.5",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.4.tgz", "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz",
"integrity": "sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==", "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==",
"dev": true, "dev": true,
"bin": { "bin": {
"prettier": "bin/prettier.cjs" "prettier": "bin/prettier.cjs"
@ -9130,9 +9160,9 @@
"devOptional": true "devOptional": true
}, },
"node_modules/semver": { "node_modules/semver": {
"version": "7.5.4", "version": "7.6.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
"integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"lru-cache": "^6.0.0" "lru-cache": "^6.0.0"
@ -10007,9 +10037,9 @@
} }
}, },
"node_modules/tsx": { "node_modules/tsx": {
"version": "4.7.0", "version": "4.7.1",
"resolved": "https://registry.npmjs.org/tsx/-/tsx-4.7.0.tgz", "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.7.1.tgz",
"integrity": "sha512-I+t79RYPlEYlHn9a+KzwrvEwhJg35h/1zHsLC2JXvhC2mdynMv6Zxzvhv5EMV6VF5qJlLlkSnMVvdZV3PSIGcg==", "integrity": "sha512-8d6VuibXHtlN5E3zFkgY8u4DX7Y3Z27zvvPKVmLon/D4AjuKzarkUBTLDBgj9iTQ0hg5xM7c/mYiRVM+HETf0g==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"esbuild": "~0.19.10", "esbuild": "~0.19.10",
@ -11514,6 +11544,33 @@
"tslib": "^2.1.0" "tslib": "^2.1.0"
} }
}, },
"packages/ng-schematics/node_modules/semver": {
"version": "7.5.4",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
"integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
"dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
},
"bin": {
"semver": "bin/semver.js"
},
"engines": {
"node": ">=10"
}
},
"packages/ng-schematics/node_modules/semver/node_modules/lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
"dev": true,
"dependencies": {
"yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
}
},
"packages/ng-schematics/node_modules/source-map": { "packages/ng-schematics/node_modules/source-map": {
"version": "0.7.4", "version": "0.7.4",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
@ -11737,11 +11794,11 @@
"version": "0.1.0", "version": "0.1.0",
"license": "Apache-2.0", "license": "Apache-2.0",
"devDependencies": { "devDependencies": {
"@microsoft/api-documenter": "7.23.20", "@microsoft/api-documenter": "7.23.23",
"@microsoft/api-extractor": "7.39.4", "@microsoft/api-extractor": "7.40.1",
"@microsoft/api-extractor-model": "7.28.7", "@microsoft/api-extractor-model": "7.28.9",
"@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc": "0.14.2",
"@rushstack/node-core-library": "3.64.2" "@rushstack/node-core-library": "3.66.0"
} }
}, },
"tools/doctest": { "tools/doctest": {
@ -11752,7 +11809,7 @@
"doctest": "bin/doctest.js" "doctest": "bin/doctest.js"
}, },
"devDependencies": { "devDependencies": {
"@swc/core": "1.3.107", "@swc/core": "1.4.1",
"@types/doctrine": "0.0.9", "@types/doctrine": "0.0.9",
"@types/source-map-support": "0.5.10", "@types/source-map-support": "0.5.10",
"@types/yargs": "17.0.32", "@types/yargs": "17.0.32",
@ -11838,7 +11895,7 @@
"version": "0.1.0", "version": "0.1.0",
"license": "Apache-2.0", "license": "Apache-2.0",
"devDependencies": { "devDependencies": {
"@prettier/sync": "0.5.0" "@prettier/sync": "0.5.1"
} }
}, },
"tools/mocha-runner": { "tools/mocha-runner": {

View File

@ -140,10 +140,10 @@
"@actions/core": "1.10.1", "@actions/core": "1.10.1",
"@types/mocha": "10.0.6", "@types/mocha": "10.0.6",
"@types/node": "20.8.4", "@types/node": "20.8.4",
"@types/semver": "7.5.6", "@types/semver": "7.5.7",
"@types/sinon": "17.0.3", "@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "6.20.0", "@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "6.20.0", "@typescript-eslint/parser": "7.0.1",
"esbuild": "0.20.0", "esbuild": "0.20.0",
"eslint-config-prettier": "9.1.0", "eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1", "eslint-import-resolver-typescript": "3.6.1",
@ -152,7 +152,7 @@
"eslint-plugin-prettier": "5.1.3", "eslint-plugin-prettier": "5.1.3",
"eslint-plugin-rulesdir": "0.2.2", "eslint-plugin-rulesdir": "0.2.2",
"eslint-plugin-tsdoc": "0.2.17", "eslint-plugin-tsdoc": "0.2.17",
"eslint-plugin-unused-imports": "3.0.0", "eslint-plugin-unused-imports": "3.1.0",
"eslint": "8.56.0", "eslint": "8.56.0",
"execa": "8.0.1", "execa": "8.0.1",
"expect": "29.7.0", "expect": "29.7.0",
@ -161,13 +161,13 @@
"license-checker": "25.0.1", "license-checker": "25.0.1",
"mocha": "10.3.0", "mocha": "10.3.0",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"prettier": "3.2.4", "prettier": "3.2.5",
"semver": "7.5.4", "semver": "7.6.0",
"sinon": "17.0.1", "sinon": "17.0.1",
"source-map-support": "0.5.21", "source-map-support": "0.5.21",
"spdx-satisfies": "5.0.1", "spdx-satisfies": "5.0.1",
"tsd": "0.30.4", "tsd": "0.30.4",
"tsx": "4.7.0", "tsx": "4.7.1",
"typescript": "5.3.3", "typescript": "5.3.3",
"wireit": "0.14.4" "wireit": "0.14.4"
}, },

View File

@ -3,7 +3,7 @@
"compilerOptions": { "compilerOptions": {
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",
"outDir": "../build", "outDir": "../build"
}, },
"references": [{"path": "../../tsconfig.json"}], "references": [{"path": "../../tsconfig.json"}]
} }

View File

@ -3,6 +3,6 @@
"files": [], "files": [],
"references": [ "references": [
{"path": "src/tsconfig.esm.json"}, {"path": "src/tsconfig.esm.json"},
{"path": "src/tsconfig.cjs.json"}, {"path": "src/tsconfig.cjs.json"}
], ]
} }

View File

@ -3,8 +3,8 @@
"compilerOptions": { "compilerOptions": {
"rootDir": "src/", "rootDir": "src/",
"outDir": "build/", "outDir": "build/",
"types": ["node"], "types": ["node"]
}, },
"include": ["src/**/*"], "include": ["src/**/*"],
"references": [{"path": "../tsconfig.json"}], "references": [{"path": "../tsconfig.json"}]
} }

View File

@ -10,8 +10,8 @@
"skipDefaultLibCheck": true, "skipDefaultLibCheck": true,
"skipLibCheck": true, "skipLibCheck": true,
"sourceMap": true, "sourceMap": true,
"types": ["node"], "types": ["node"]
}, },
"include": ["src/**/*"], "include": ["src/**/*"],
"exclude": ["src/**/files/**/*"], "exclude": ["src/**/files/**/*"]
} }

View File

@ -3,6 +3,6 @@
"compilerOptions": { "compilerOptions": {
"declarationMap": false, "declarationMap": false,
"outDir": "../lib/esm/third_party", "outDir": "../lib/esm/third_party",
"sourceMap": false, "sourceMap": false
}, }
} }

View File

@ -3,6 +3,6 @@
"files": [], "files": [],
"references": [ "references": [
{"path": "src/tsconfig.esm.json"}, {"path": "src/tsconfig.esm.json"},
{"path": "src/tsconfig.cjs.json"}, {"path": "src/tsconfig.cjs.json"}
], ]
} }

View File

@ -6,11 +6,11 @@
// just stick with ol'fashion path resolution. // just stick with ol'fashion path resolution.
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"puppeteer-core/internal/*": ["../puppeteer-core/lib/esm/puppeteer/*"], "puppeteer-core/internal/*": ["../puppeteer-core/lib/esm/puppeteer/*"]
}, }
}, },
"references": [ "references": [
{"path": "src/tsconfig.esm.json"}, {"path": "src/tsconfig.esm.json"},
{"path": "src/tsconfig.cjs.json"}, {"path": "src/tsconfig.cjs.json"}
], ]
} }

View File

@ -6,7 +6,7 @@
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",
"outDir": "lib", "outDir": "lib",
"rootDir": "src", "rootDir": "src"
}, },
"include": ["src"], "include": ["src"]
} }

View File

@ -2,6 +2,6 @@
"compilerOptions": { "compilerOptions": {
"target": "ES2022", "target": "ES2022",
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext"
}, }
} }

View File

@ -4,7 +4,7 @@
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",
"outDir": "build", "outDir": "build",
"rootDir": "src", "rootDir": "src"
}, },
"include": ["src"], "include": ["src"]
} }

View File

@ -4,7 +4,7 @@
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",
"outDir": "build", "outDir": "build",
"rootDir": "src", "rootDir": "src"
}, },
"include": ["src"], "include": ["src"]
} }

View File

@ -24,10 +24,10 @@
} }
}, },
"devDependencies": { "devDependencies": {
"@microsoft/api-extractor": "7.39.4", "@microsoft/api-extractor": "7.40.1",
"@microsoft/api-documenter": "7.23.20", "@microsoft/api-documenter": "7.23.23",
"@microsoft/api-extractor-model": "7.28.7", "@microsoft/api-extractor-model": "7.28.9",
"@microsoft/tsdoc": "0.14.2", "@microsoft/tsdoc": "0.14.2",
"@rushstack/node-core-library": "3.64.2" "@rushstack/node-core-library": "3.66.0"
} }
} }

View File

@ -6,6 +6,6 @@
"sourceMap": true, "sourceMap": true,
"declaration": false, "declaration": false,
"declarationMap": false, "declarationMap": false,
"composite": false, "composite": false
}, }
} }

View File

@ -24,7 +24,7 @@
} }
}, },
"devDependencies": { "devDependencies": {
"@swc/core": "1.3.107", "@swc/core": "1.4.1",
"@types/doctrine": "0.0.9", "@types/doctrine": "0.0.9",
"@types/source-map-support": "0.5.10", "@types/source-map-support": "0.5.10",
"@types/yargs": "17.0.32", "@types/yargs": "17.0.32",

View File

@ -6,6 +6,6 @@
"sourceMap": true, "sourceMap": true,
"declaration": false, "declaration": false,
"declarationMap": false, "declarationMap": false,
"composite": false, "composite": false
}, }
} }

View File

@ -32,6 +32,6 @@
"author": "The Chromium Authors", "author": "The Chromium Authors",
"license": "Apache-2.0", "license": "Apache-2.0",
"devDependencies": { "devDependencies": {
"@prettier/sync": "0.5.0" "@prettier/sync": "0.5.1"
} }
} }

View File

@ -8,6 +8,6 @@
"declaration": false, "declaration": false,
"declarationMap": false, "declarationMap": false,
"composite": false, "composite": false,
"removeComments": true, "removeComments": true
}, }
} }

View File

@ -8,6 +8,6 @@
"sourceMap": true, "sourceMap": true,
"declaration": false, "declaration": false,
"declarationMap": false, "declarationMap": false,
"composite": false, "composite": false
}, }
} }

View File

@ -1,4 +1,4 @@
{ {
"extends": "../tsconfig.base.json", "extends": "../tsconfig.base.json",
"files": ["../package.json"], "files": ["../package.json"]
} }