diff --git a/.changeset/package-entrypoints.md b/.changeset/package-entrypoints.md new file mode 100644 index 0000000000..b509b34f22 --- /dev/null +++ b/.changeset/package-entrypoints.md @@ -0,0 +1,5 @@ +--- +"@patternfly/elements": patch +--- + +Added element entrypoints to package.json diff --git a/docs/_plugins/pfe-assets.cjs b/docs/_plugins/pfe-assets.cjs index 480c2d22f5..049b5e0f32 100644 --- a/docs/_plugins/pfe-assets.cjs +++ b/docs/_plugins/pfe-assets.cjs @@ -66,41 +66,8 @@ function demoPaths(content) { /** Generate a single-file bundle of all the repo's components and their dependencies */ async function bundle() { - const { build } = await import('esbuild'); - const { default: CleanCSS } = await import('clean-css'); - const { litCssPlugin } = await import('esbuild-plugin-lit-css'); - - const cleanCSS = new CleanCSS({ - sourceMap: true, - returnPromise: true, - }); - - await build({ - entryPoints: ['elements/pfe.ts'], - format: 'esm', - outfile: '_site/pfe.min.js', - allowOverwrite: true, - treeShaking: true, - legalComments: 'linked', - logLevel: 'info', - sourcemap: true, - bundle: true, - minify: true, - minifyWhitespace: true, - - external: [ - 'lit', - 'tslib', - '@floating-ui*' - ], - - plugins: [ - litCssPlugin({ - filter: /\.css$/, - transform: source => cleanCSS.minify(source).then(x => x.styles) - }), - ], - }); + const { bundle } = await import('../../scripts/bundle.js'); + await bundle(); } module.exports = { diff --git a/elements/package.json b/elements/package.json index 1f512e595e..9b36a4aa73 100644 --- a/elements/package.json +++ b/elements/package.json @@ -10,7 +10,50 @@ "types": "./pfe.d.ts", "exports": { ".": "./pfe.js", - "./*": "./*" + "./pf-accordion/BaseAccordion.js": "./pf-accordion/BaseAccordion.js", + "./pf-accordion/BaseAccordionHeader.js": "./pf-accordion/BaseAccordionHeader.js", + "./pf-accordion/BaseAccordionPanel.js": "./pf-accordion/BaseAccordionPanel.js", + "./pf-accordion/pf-accordion-header.js": "./pf-accordion/pf-accordion-header.js", + "./pf-accordion/pf-accordion-panel.js": "./pf-accordion/pf-accordion-panel.js", + "./pf-accordion/pf-accordion.js": "./pf-accordion/pf-accordion.js", + "./pf-avatar/BaseAvatar.js": "./pf-avatar/BaseAvatar.js", + "./pf-avatar/pf-avatar.js": "./pf-avatar/pf-avatar.js", + "./pf-badge/BaseBadge.js": "./pf-badge/BaseBadge.js", + "./pf-badge/pf-badge.js": "./pf-badge/pf-badge.js", + "./pf-button/BaseButton.js": "./pf-button/BaseButton.js", + "./pf-button/pf-button.js": "./pf-button/pf-button.js", + "./pf-card/BaseCard.js": "./pf-card/BaseCard.js", + "./pf-card/pf-card.js": "./pf-card/pf-card.js", + "./pf-clipboard-copy/BaseClipboardCopy.js": "./pf-clipboard-copy/BaseClipboardCopy.js", + "./pf-clipboard-copy/pf-clipboard-copy.js": "./pf-clipboard-copy/pf-clipboard-copy.js", + "./pf-code-block/BaseCodeBlock.js": "./pf-code-block/BaseCodeBlock.js", + "./pf-code-block/pf-code-block.js": "./pf-code-block/pf-code-block.js", + "./pf-icon/BaseIcon.js": "./pf-icon/BaseIcon.js", + "./pf-icon/pf-icon.js": "./pf-icon/pf-icon.js", + "./pf-jump-links/pf-jump-links-item.js": "./pf-jump-links/pf-jump-links-item.js", + "./pf-jump-links/pf-jump-links-list.js": "./pf-jump-links/pf-jump-links-list.js", + "./pf-jump-links/pf-jump-links.js": "./pf-jump-links/pf-jump-links.js", + "./pf-label/BaseLabel.js": "./pf-label/BaseLabel.js", + "./pf-label/pf-label.js": "./pf-label/pf-label.js", + "./pf-modal/pf-modal.js": "./pf-modal/pf-modal.js", + "./pf-panel/pf-panel.js": "./pf-panel/pf-panel.js", + "./pf-progress-stepper/pf-progress-step.js": "./pf-progress-stepper/pf-progress-step.js", + "./pf-progress-stepper/pf-progress-stepper.js": "./pf-progress-stepper/pf-progress-stepper.js", + "./pf-spinner/BaseSpinner.js": "./pf-spinner/BaseSpinner.js", + "./pf-spinner/pf-spinner.js": "./pf-spinner/pf-spinner.js", + "./pf-switch/BaseSwitch.js": "./pf-switch/BaseSwitch.js", + "./pf-switch/pf-switch.js": "./pf-switch/pf-switch.js", + "./pf-tabs/BaseTab.js": "./pf-tabs/BaseTab.js", + "./pf-tabs/BaseTabPanel.js": "./pf-tabs/BaseTabPanel.js", + "./pf-tabs/BaseTabs.js": "./pf-tabs/BaseTabs.js", + "./pf-tabs/pf-tab-panel.js": "./pf-tabs/pf-tab-panel.js", + "./pf-tabs/pf-tab.js": "./pf-tabs/pf-tab.js", + "./pf-tabs/pf-tabs.js": "./pf-tabs/pf-tabs.js", + "./pf-tile/BaseTile.js": "./pf-tile/BaseTile.js", + "./pf-tile/pf-tile.js": "./pf-tile/pf-tile.js", + "./pf-timestamp/pf-timestamp.js": "./pf-timestamp/pf-timestamp.js", + "./pf-tooltip/BaseTooltip.js": "./pf-tooltip/BaseTooltip.js", + "./pf-tooltip/pf-tooltip.js": "./pf-tooltip/pf-tooltip.js" }, "publishConfig": { "access": "public", diff --git a/elements/pf-accordion/pf-accordion.ts b/elements/pf-accordion/pf-accordion.ts index 759cc67052..bc7f21335b 100644 --- a/elements/pf-accordion/pf-accordion.ts +++ b/elements/pf-accordion/pf-accordion.ts @@ -1,4 +1,3 @@ -import { Logger } from '@patternfly/pfe-core/controllers/logger.js'; import { observed } from '@patternfly/pfe-core/decorators.js'; import { property } from 'lit/decorators.js'; import { customElement } from 'lit/decorators.js'; diff --git a/elements/pfe.ts b/elements/pfe.ts deleted file mode 100644 index 988d191a95..0000000000 --- a/elements/pfe.ts +++ /dev/null @@ -1,19 +0,0 @@ -export * from './pf-accordion/pf-accordion.js'; -export * from './pf-avatar/pf-avatar.js'; -export * from './pf-badge/pf-badge.js'; -export * from './pf-button/pf-button.js'; -export * from './pf-card/pf-card.js'; -export * from './pf-clipboard-copy/pf-clipboard-copy.js'; -export * from './pf-code-block/pf-code-block.js'; -export * from './pf-icon/pf-icon.js'; -export * from './pf-jump-links/pf-jump-links.js'; -export * from './pf-label/pf-label.js'; -export * from './pf-modal/pf-modal.js'; -export * from './pf-panel/pf-panel.js'; -export * from './pf-progress-stepper/pf-progress-stepper.js'; -export * from './pf-spinner/pf-spinner.js'; -export * from './pf-switch/pf-switch.js'; -export * from './pf-tabs/pf-tabs.js'; -export * from './pf-tile/pf-tile.js'; -export * from './pf-timestamp/pf-timestamp.js'; -export * from './pf-tooltip/pf-tooltip.js'; diff --git a/package-lock.json b/package-lock.json index 96894558c6..5159248838 100644 --- a/package-lock.json +++ b/package-lock.json @@ -87,11 +87,11 @@ "license": "MIT" }, "node_modules/@11ty/eleventy": { - "version": "2.0.0-canary.33", + "version": "2.0.0-canary.35", "license": "MIT", "dependencies": { "@11ty/dependency-tree": "^2.0.1", - "@11ty/eleventy-dev-server": "^1.0.1", + "@11ty/eleventy-dev-server": "^1.0.3", "@11ty/eleventy-utils": "^1.0.1", "@iarna/toml": "^2.2.5", "@sindresorhus/slugify": "^1.1.2", @@ -143,7 +143,7 @@ } }, "node_modules/@11ty/eleventy-dev-server": { - "version": "1.0.1", + "version": "1.0.3", "license": "MIT", "dependencies": { "@11ty/eleventy-utils": "^1.0.1", @@ -169,16 +169,6 @@ "url": "https://opencollective.com/11ty" } }, - "node_modules/@11ty/eleventy-dev-server/node_modules/ssri": { - "version": "8.0.1", - "license": "ISC", - "dependencies": { - "minipass": "^3.1.1" - }, - "engines": { - "node": ">= 8" - } - }, "node_modules/@11ty/eleventy-plugin-directory-output": { "version": "1.0.1", "license": "MIT", @@ -236,9 +226,8 @@ }, "node_modules/@actions/glob": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@actions/glob/-/glob-0.4.0.tgz", - "integrity": "sha512-+eKIGFhsFa4EBwaf/GMyzCdWrXWymGXfFmZU3FHQvYS8mPcHtTtZONbkcqqUMzw9mJ/pImEBFET1JNifhqGsAQ==", "dev": true, + "license": "MIT", "dependencies": { "@actions/core": "^1.9.1", "minimatch": "^3.0.4" @@ -280,7 +269,7 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.20.5", + "version": "7.20.14", "dev": true, "license": "MIT", "engines": { @@ -288,24 +277,24 @@ } }, "node_modules/@babel/core": { - "version": "7.20.5", + "version": "7.20.12", "dev": true, "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.5", - "@babel/parser": "^7.20.5", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5", + "@babel/generator": "^7.20.7", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helpers": "^7.20.7", + "@babel/parser": "^7.20.7", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.12", + "@babel/types": "^7.20.7", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", + "json5": "^2.2.2", "semver": "^6.3.0" }, "engines": { @@ -325,11 +314,11 @@ } }, "node_modules/@babel/generator": { - "version": "7.20.5", + "version": "7.20.14", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.20.5", + "@babel/types": "^7.20.7", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -362,13 +351,14 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.20.0", + "version": "7.20.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.20.0", + "@babel/compat-data": "^7.20.5", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", "semver": "^6.3.0" }, "engines": { @@ -387,16 +377,17 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.20.5", + "version": "7.20.12", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.19.1", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/helper-split-export-declaration": "^7.18.6" }, "engines": { @@ -438,11 +429,11 @@ } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.18.9", + "version": "7.20.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.7" }, "engines": { "node": ">=6.9.0" @@ -460,7 +451,7 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.20.2", + "version": "7.20.11", "dev": true, "license": "MIT", "dependencies": { @@ -469,9 +460,9 @@ "@babel/helper-simple-access": "^7.20.2", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.10", + "@babel/types": "^7.20.7" }, "engines": { "node": ">=6.9.0" @@ -497,15 +488,16 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.19.1", + "version": "7.20.7", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" }, "engines": { "node": ">=6.9.0" @@ -522,6 +514,17 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-split-export-declaration": { "version": "7.18.6", "dev": true, @@ -556,13 +559,13 @@ } }, "node_modules/@babel/helpers": { - "version": "7.20.6", + "version": "7.20.13", "dev": true, "license": "MIT", "dependencies": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7" }, "engines": { "node": ">=6.9.0" @@ -638,7 +641,7 @@ } }, "node_modules/@babel/parser": { - "version": "7.20.5", + "version": "7.20.13", "license": "MIT", "bin": { "parser": "bin/babel-parser.js" @@ -676,11 +679,11 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.20.2", + "version": "7.20.13", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.20.2", + "@babel/helper-create-class-features-plugin": "^7.20.12", "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-typescript": "^7.20.0" }, @@ -708,7 +711,7 @@ } }, "node_modules/@babel/runtime": { - "version": "7.20.6", + "version": "7.20.13", "license": "MIT", "dependencies": { "regenerator-runtime": "^0.13.11" @@ -718,31 +721,31 @@ } }, "node_modules/@babel/template": { - "version": "7.18.10", + "version": "7.20.7", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.20.5", + "version": "7.20.13", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.5", + "@babel/generator": "^7.20.7", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.5", - "@babel/types": "^7.20.5", + "@babel/parser": "^7.20.13", + "@babel/types": "^7.20.7", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -751,7 +754,7 @@ } }, "node_modules/@babel/types": { - "version": "7.20.5", + "version": "7.20.7", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.19.4", @@ -762,6 +765,11 @@ "node": ">=6.9.0" } }, + "node_modules/@chainsafe/is-ip": { + "version": "2.0.1", + "dev": true, + "license": "MIT" + }, "node_modules/@changesets/apply-release-plan": { "version": "6.1.3", "license": "MIT", @@ -1296,6 +1304,21 @@ "node": ">=v14" } }, + "node_modules/@commitlint/format/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/@commitlint/is-ignored": { "version": "17.4.2", "dev": true, @@ -1346,34 +1369,19 @@ "node": ">=v14" } }, - "node_modules/@commitlint/load/node_modules/argparse": { - "version": "2.0.1", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/@commitlint/load/node_modules/cosmiconfig": { - "version": "8.0.0", + "node_modules/@commitlint/load/node_modules/chalk": { + "version": "4.1.2", "dev": true, "license": "MIT", "dependencies": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=14" - } - }, - "node_modules/@commitlint/load/node_modules/js-yaml": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" + "node": ">=10" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/@commitlint/message": { @@ -1505,6 +1513,21 @@ "node": ">=v14" } }, + "node_modules/@commitlint/types/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "license": "MIT", @@ -1524,10 +1547,9 @@ } }, "node_modules/@csstools/selector-specificity": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.0.tgz", - "integrity": "sha512-zJ6hb3FDgBbO8d2e83vg6zq7tNvDqSq9RwdwfzJ8tdm9JHNvANq2fqwyRn6mlpUb7CwTs5ILdUrGwi9Gk4vY5w==", + "version": "2.1.1", "dev": true, + "license": "CC0-1.0", "engines": { "node": "^14 || ^16 || >=18" }, @@ -1581,24 +1603,6 @@ "version": "1.0.0", "license": "BSD-3-Clause" }, - "node_modules/@custom-elements-manifest/analyzer/node_modules/globby": { - "version": "11.0.4", - "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@custom-elements-manifest/analyzer/node_modules/typescript": { "version": "4.3.5", "license": "Apache-2.0", @@ -1611,7 +1615,7 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.17.4", + "version": "0.16.17", "cpu": [ "x64" ], @@ -1620,6 +1624,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -1638,7 +1643,7 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "dependencies": { "ajv": "^6.12.4", @@ -1677,7 +1682,7 @@ "license": "Python-2.0" }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.19.0", + "version": "13.20.0", "license": "MIT", "dependencies": { "type-fest": "^0.20.2" @@ -1721,14 +1726,14 @@ } }, "node_modules/@floating-ui/core": { - "version": "1.1.0", + "version": "1.1.1", "license": "MIT" }, "node_modules/@floating-ui/dom": { - "version": "1.1.0", + "version": "1.1.1", "license": "MIT", "dependencies": { - "@floating-ui/core": "^1.0.5" + "@floating-ui/core": "^1.1.0" } }, "node_modules/@fortawesome/fontawesome-common-types": { @@ -1817,7 +1822,7 @@ "license": "MIT" }, "node_modules/@improbable-eng/grpc-web": { - "version": "0.14.1", + "version": "0.15.0", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -1828,29 +1833,68 @@ } }, "node_modules/@ipld/dag-cbor": { - "version": "7.0.3", + "version": "8.0.1", "dev": true, - "license": "(Apache-2.0 AND MIT)", + "license": "Apache-2.0 OR MIT", "dependencies": { "cborg": "^1.6.0", - "multiformats": "^9.5.4" + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/dag-cbor/node_modules/multiformats": { + "version": "11.0.1", + "dev": true, + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/@ipld/dag-json": { - "version": "8.0.11", + "version": "9.1.1", "dev": true, - "license": "(Apache-2.0 AND MIT)", + "license": "Apache-2.0 OR MIT", "dependencies": { "cborg": "^1.5.4", - "multiformats": "^9.5.4" + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/dag-json/node_modules/multiformats": { + "version": "11.0.1", + "dev": true, + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/@ipld/dag-pb": { - "version": "2.1.18", + "version": "3.0.2", "dev": true, - "license": "(Apache-2.0 AND MIT)", + "license": "Apache-2.0 OR MIT", "dependencies": { - "multiformats": "^9.5.4" + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@ipld/dag-pb/node_modules/multiformats": { + "version": "11.0.1", + "dev": true, + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/@jridgewell/gen-mapping": { @@ -1893,11 +1937,11 @@ } }, "node_modules/@jspm/core": { - "version": "2.0.0-beta.27", + "version": "2.0.0", "dev": true }, "node_modules/@jspm/generator": { - "version": "1.0.0-beta.38", + "version": "1.0.2", "dev": true, "license": "MIT", "dependencies": { @@ -1906,8 +1950,9 @@ "@babel/preset-typescript": "^7.17.2", "@jspm/core": "^2.0.0-beta.8", "@jspm/import-map": "^1.0.4", + "abort-controller": "^3.0.0", "es-module-lexer": "^1.0.3", - "ipfs-client": "^0.7.1", + "ipfs-client": "^0.9.2", "make-fetch-happen": "^8.0.3", "sver": "^1.8.3" } @@ -1930,93 +1975,238 @@ "node": ">= 12" } }, - "node_modules/@lit/reactive-element": { - "version": "1.5.0", - "license": "BSD-3-Clause" - }, - "node_modules/@manypkg/find-root": { - "version": "1.1.0", - "license": "MIT", + "node_modules/@libp2p/interface-connection": { + "version": "3.0.8", + "dev": true, + "license": "Apache-2.0 OR MIT", "dependencies": { - "@babel/runtime": "^7.5.5", - "@types/node": "^12.7.1", - "find-up": "^4.1.0", - "fs-extra": "^8.1.0" + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@manypkg/find-root/node_modules/@types/node": { - "version": "12.20.55", - "license": "MIT" - }, - "node_modules/@manypkg/find-root/node_modules/find-up": { - "version": "4.1.0", - "license": "MIT", + "node_modules/@libp2p/interface-keychain": { + "version": "1.0.8", + "dev": true, + "license": "Apache-2.0 OR MIT", "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "multiformats": "^10.0.0" }, "engines": { - "node": ">=8" + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@manypkg/find-root/node_modules/fs-extra": { - "version": "8.1.0", - "license": "MIT", + "node_modules/@libp2p/interface-peer-id": { + "version": "2.0.1", + "dev": true, + "license": "Apache-2.0 OR MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "multiformats": "^11.0.0" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@manypkg/find-root/node_modules/locate-path": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, + "node_modules/@libp2p/interface-peer-id/node_modules/multiformats": { + "version": "11.0.1", + "dev": true, + "license": "Apache-2.0 OR MIT", "engines": { - "node": ">=8" + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@manypkg/find-root/node_modules/p-locate": { - "version": "4.1.0", - "license": "MIT", + "node_modules/@libp2p/interface-peer-info": { + "version": "1.0.8", + "dev": true, + "license": "Apache-2.0 OR MIT", "dependencies": { - "p-limit": "^2.2.0" + "@libp2p/interface-peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0" }, "engines": { - "node": ">=8" + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@manypkg/get-packages": { - "version": "1.1.3", - "license": "MIT", + "node_modules/@libp2p/interface-pubsub": { + "version": "3.0.6", + "dev": true, + "license": "Apache-2.0 OR MIT", "dependencies": { - "@babel/runtime": "^7.5.5", - "@changesets/types": "^4.0.1", - "@manypkg/find-root": "^1.1.0", - "fs-extra": "^8.1.0", - "globby": "^11.0.0", - "read-yaml-file": "^1.1.0" + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-pushable": "^3.0.0", + "uint8arraylist": "^2.1.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/@manypkg/get-packages/node_modules/@changesets/types": { - "version": "4.1.0", - "license": "MIT" + "node_modules/@libp2p/interfaces": { + "version": "3.3.1", + "dev": true, + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, - "node_modules/@manypkg/get-packages/node_modules/fs-extra": { - "version": "8.1.0", - "license": "MIT", + "node_modules/@libp2p/logger": { + "version": "2.0.5", + "dev": true, + "license": "Apache-2.0 OR MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "@libp2p/interface-peer-id": "^2.0.0", + "debug": "^4.3.3", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/logger/node_modules/multiformats": { + "version": "11.0.1", + "dev": true, + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id": { + "version": "1.1.18", + "dev": true, + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@libp2p/interface-peer-id": "^1.0.0", + "err-code": "^3.0.1", + "multiformats": "^10.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@libp2p/peer-id/node_modules/@libp2p/interface-peer-id": { + "version": "1.1.2", + "dev": true, + "license": "Apache-2.0 OR MIT", + "dependencies": { + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@lit-labs/ssr-dom-shim": { + "version": "1.0.0", + "license": "BSD-3-Clause" + }, + "node_modules/@lit/reactive-element": { + "version": "1.6.1", + "license": "BSD-3-Clause", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.0.0" + } + }, + "node_modules/@manypkg/find-root": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@types/node": "^12.7.1", + "find-up": "^4.1.0", + "fs-extra": "^8.1.0" + } + }, + "node_modules/@manypkg/find-root/node_modules/@types/node": { + "version": "12.20.55", + "license": "MIT" + }, + "node_modules/@manypkg/find-root/node_modules/find-up": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@manypkg/find-root/node_modules/fs-extra": { + "version": "8.1.0", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@manypkg/find-root/node_modules/locate-path": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@manypkg/find-root/node_modules/p-locate": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@manypkg/get-packages": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5", + "@changesets/types": "^4.0.1", + "@manypkg/find-root": "^1.1.0", + "fs-extra": "^8.1.0", + "globby": "^11.0.0", + "read-yaml-file": "^1.1.0" + } + }, + "node_modules/@manypkg/get-packages/node_modules/@changesets/types": { + "version": "4.1.0", + "license": "MIT" + }, + "node_modules/@manypkg/get-packages/node_modules/fs-extra": { + "version": "8.1.0", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" } }, "node_modules/@mdn/browser-compat-data": { @@ -2034,6 +2224,44 @@ "node": ">=4" } }, + "node_modules/@multiformats/multiaddr": { + "version": "11.4.0", + "dev": true, + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@chainsafe/is-ip": "^2.0.1", + "dns-over-http-resolver": "^2.1.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr-to-uri": { + "version": "9.0.2", + "dev": true, + "license": "Apache-2.0 OR MIT", + "dependencies": { + "@multiformats/multiaddr": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/@multiformats/multiaddr/node_modules/multiformats": { + "version": "11.0.1", + "dev": true, + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "license": "MIT", @@ -2063,11 +2291,32 @@ "node": ">= 8" } }, + "node_modules/@npmcli/fs": { + "version": "1.1.1", + "dev": true, + "license": "ISC", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@octokit/auth-token": { - "version": "3.0.2", + "version": "3.0.3", "license": "MIT", "dependencies": { - "@octokit/types": "^8.0.0" + "@octokit/types": "^9.0.0" }, "engines": { "node": ">= 14" @@ -2090,24 +2339,11 @@ "node": ">= 14" } }, - "node_modules/@octokit/core/node_modules/@octokit/openapi-types": { - "version": "16.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@octokit/core/node_modules/@octokit/types": { - "version": "9.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^16.0.0" - } - }, "node_modules/@octokit/endpoint": { - "version": "7.0.3", + "version": "7.0.5", "license": "MIT", "dependencies": { - "@octokit/types": "^8.0.0", + "@octokit/types": "^9.0.0", "is-plain-object": "^5.0.0", "universal-user-agent": "^6.0.0" }, @@ -2116,11 +2352,11 @@ } }, "node_modules/@octokit/graphql": { - "version": "5.0.4", + "version": "5.0.5", "license": "MIT", "dependencies": { "@octokit/request": "^6.0.0", - "@octokit/types": "^8.0.0", + "@octokit/types": "^9.0.0", "universal-user-agent": "^6.0.0" }, "engines": { @@ -2128,16 +2364,16 @@ } }, "node_modules/@octokit/openapi-types": { - "version": "14.0.0", + "version": "16.0.0", "license": "MIT" }, "node_modules/@octokit/request": { - "version": "6.2.2", + "version": "6.2.3", "license": "MIT", "dependencies": { "@octokit/endpoint": "^7.0.0", "@octokit/request-error": "^3.0.0", - "@octokit/types": "^8.0.0", + "@octokit/types": "^9.0.0", "is-plain-object": "^5.0.0", "node-fetch": "^2.6.7", "universal-user-agent": "^6.0.0" @@ -2147,10 +2383,10 @@ } }, "node_modules/@octokit/request-error": { - "version": "3.0.2", + "version": "3.0.3", "license": "MIT", "dependencies": { - "@octokit/types": "^8.0.0", + "@octokit/types": "^9.0.0", "deprecation": "^2.0.0", "once": "^1.4.0" }, @@ -2159,10 +2395,10 @@ } }, "node_modules/@octokit/types": { - "version": "8.0.0", + "version": "9.0.0", "license": "MIT", "dependencies": { - "@octokit/openapi-types": "^14.0.0" + "@octokit/openapi-types": "^16.0.0" } }, "node_modules/@open-wc/chai-dom-equals": { @@ -2246,9 +2482,8 @@ }, "node_modules/@patternfly/pfe-accordion": { "version": "2.0.0-next.12", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-accordion/-/pfe-accordion-2.0.0-next.12.tgz", - "integrity": "sha512-ZhzgtPSxTsogs0Rl0MsA/XjKWIFKfoK3vrWCmIEx2r4/ExnppJitvi7zmHwq2YRXqHzruK/cFz5FuyotDKH+Sw==", "dev": true, + "license": "MIT", "dependencies": { "@patternfly/pfe-core": "^2.0.0-next.14", "@patternfly/pfe-icon": "^2.0.0-next.5", @@ -2257,9 +2492,8 @@ }, "node_modules/@patternfly/pfe-accordion/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2280,9 +2514,8 @@ }, "node_modules/@patternfly/pfe-autocomplete/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2301,9 +2534,8 @@ }, "node_modules/@patternfly/pfe-avatar/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2322,9 +2554,8 @@ }, "node_modules/@patternfly/pfe-badge/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2333,9 +2564,8 @@ }, "node_modules/@patternfly/pfe-button": { "version": "2.0.0-next.9", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-button/-/pfe-button-2.0.0-next.9.tgz", - "integrity": "sha512-v4CkhFhS0fT9mUA4H1JUol4ZpyooXIUaOvoufGor3H39kyM4MQTQrbFP59ym7miL4rsJH2lAoWjxnA1WwiWZFw==", "dev": true, + "license": "MIT", "dependencies": { "@patternfly/pfe-core": "^2.0.0-next.13", "@patternfly/pfe-icon": "^2.0.0-next.5", @@ -2345,9 +2575,8 @@ }, "node_modules/@patternfly/pfe-button/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2366,9 +2595,8 @@ }, "node_modules/@patternfly/pfe-card/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2387,9 +2615,8 @@ }, "node_modules/@patternfly/pfe-collapse/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2412,9 +2639,8 @@ }, "node_modules/@patternfly/pfe-cta/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2433,9 +2659,8 @@ }, "node_modules/@patternfly/pfe-datetime/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2454,9 +2679,8 @@ }, "node_modules/@patternfly/pfe-dropdown/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2475,9 +2699,8 @@ }, "node_modules/@patternfly/pfe-health-index/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2507,9 +2730,8 @@ }, "node_modules/@patternfly/pfe-icon-panel/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2518,9 +2740,8 @@ }, "node_modules/@patternfly/pfe-icon/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2539,9 +2760,8 @@ }, "node_modules/@patternfly/pfe-jump-links/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2550,9 +2770,8 @@ }, "node_modules/@patternfly/pfe-label": { "version": "1.0.0-next.7", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-label/-/pfe-label-1.0.0-next.7.tgz", - "integrity": "sha512-qfG5y89LiUZG/rukXXq8ZrUJb769oc7czUk3rxp+8OXlDn5XvnQ+LQkFU/OlH1t5XIXr/hSvqAstDbwktO3kpA==", "dev": true, + "license": "MIT", "dependencies": { "@patternfly/pfe-button": "^2.0.0-next.9", "@patternfly/pfe-core": "^2.0.0-next.13", @@ -2562,9 +2781,8 @@ }, "node_modules/@patternfly/pfe-label/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2584,9 +2802,8 @@ }, "node_modules/@patternfly/pfe-markdown/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2605,9 +2822,8 @@ }, "node_modules/@patternfly/pfe-modal/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2627,9 +2843,8 @@ }, "node_modules/@patternfly/pfe-number/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2648,9 +2863,8 @@ }, "node_modules/@patternfly/pfe-page-status/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2659,9 +2873,8 @@ }, "node_modules/@patternfly/pfe-sass": { "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-sass/-/pfe-sass-2.0.0-next.5.tgz", - "integrity": "sha512-CL71AG2vFK6s8Pk4nZ4KDjzG7kU+XE980tM9Keul0kgi3B8Bg7Km+LPBb7qUm/TR4xRqll63uqvHT27hA3uCBw==", "dev": true, + "license": "MIT", "dependencies": { "@patternfly/patternfly": "^4.183.1" } @@ -2678,9 +2891,8 @@ }, "node_modules/@patternfly/pfe-select/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2689,9 +2901,8 @@ }, "node_modules/@patternfly/pfe-spinner": { "version": "2.0.0-next.6", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-spinner/-/pfe-spinner-2.0.0-next.6.tgz", - "integrity": "sha512-2pvFHvED7UCKan8cQFWlHtL3foiO1BNeAaFtx1BMME0Qx938gDi4/xYlvmjfmDYRqnv45utS/F4Wa7E2mniELA==", "dev": true, + "license": "MIT", "dependencies": { "@patternfly/pfe-core": "^2.0.0-next.10", "lit": "2.3.0" @@ -2699,9 +2910,8 @@ }, "node_modules/@patternfly/pfe-spinner/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2726,9 +2936,8 @@ }, "node_modules/@patternfly/pfe-tabs/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2747,9 +2956,8 @@ }, "node_modules/@patternfly/pfe-toast/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2762,9 +2970,8 @@ }, "node_modules/@patternfly/pfe-tooltip": { "version": "2.0.0-next.9", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-tooltip/-/pfe-tooltip-2.0.0-next.9.tgz", - "integrity": "sha512-JHY70PnMrIKCxEzdiahJzmiBZmEpng7Nchai76rZsRmUg/v38/RnBSJ9KnJBKMeJXCxRF755jLy1lSFCprIzwA==", "dev": true, + "license": "MIT", "dependencies": { "@patternfly/pfe-core": "^2.0.0-next.14", "lit": "2.3.0" @@ -2772,9 +2979,8 @@ }, "node_modules/@patternfly/pfe-tooltip/node_modules/lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@lit/reactive-element": "^1.4.0", "lit-element": "^3.2.0", @@ -2800,11 +3006,11 @@ } }, "node_modules/@playwright/test": { - "version": "1.29.0", + "version": "1.30.0", "license": "Apache-2.0", "dependencies": { "@types/node": "*", - "playwright-core": "1.29.0" + "playwright-core": "1.30.0" }, "bin": { "playwright": "cli.js" @@ -2877,9 +3083,8 @@ }, "node_modules/@rhds/elements": { "version": "1.0.0-beta.28", - "resolved": "https://registry.npmjs.org/@rhds/elements/-/elements-1.0.0-beta.28.tgz", - "integrity": "sha512-Xr4e1zsQvK2H3zCtYu1oEpXXE/8UgYfvM7Nijywap3By+S+whWIGXoEtzNbZ3Y/X3gb3yb5ca10AmgBTCi8cUg==", "dev": true, + "license": "MIT", "dependencies": { "@patternfly/pfe-accordion": "^2.0.0-next.7", "@patternfly/pfe-autocomplete": "next", @@ -2911,13 +3116,13 @@ } }, "node_modules/@rhds/tokens": { - "version": "1.0.0-beta.11", - "resolved": "https://registry.npmjs.org/@rhds/tokens/-/tokens-1.0.0-beta.11.tgz", - "integrity": "sha512-rtLpotUGeo/4nQpAt8z3C3pUC8lpUOL72XEG3dC52LYE6AHSkHKBPOZxM8WItUDwHVq3pL4UCNpljFy783y66w==", + "version": "1.0.0-beta.16", "dev": true, "dependencies": { + "@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0", + "highlight.js": "^11.7.0", "postcss-value-parser": "^4.2.0", - "stylelint": "^14.11.0" + "stylelint": "^14.16.1" } }, "node_modules/@rollup/plugin-node-resolve": { @@ -2938,6 +3143,29 @@ "rollup": "^2.42.0" } }, + "node_modules/@rollup/plugin-node-resolve/node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-node-resolve/node_modules/@types/estree": { + "version": "0.0.39", + "license": "MIT" + }, + "node_modules/@rollup/plugin-node-resolve/node_modules/estree-walker": { + "version": "1.0.1", + "license": "MIT" + }, "node_modules/@rollup/plugin-replace": { "version": "5.0.2", "license": "MIT", @@ -2957,7 +3185,7 @@ } } }, - "node_modules/@rollup/plugin-replace/node_modules/@rollup/pluginutils": { + "node_modules/@rollup/pluginutils": { "version": "5.0.2", "license": "MIT", "dependencies": { @@ -2977,39 +3205,6 @@ } } }, - "node_modules/@rollup/plugin-replace/node_modules/estree-walker": { - "version": "2.0.2", - "license": "MIT" - }, - "node_modules/@rollup/plugin-replace/node_modules/magic-string": { - "version": "0.27.0", - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@rollup/pluginutils": { - "version": "3.1.0", - "license": "MIT", - "dependencies": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" - } - }, - "node_modules/@rollup/pluginutils/node_modules/@types/estree": { - "version": "0.0.39", - "license": "MIT" - }, "node_modules/@sindresorhus/slugify": { "version": "1.1.2", "license": "MIT", @@ -3186,7 +3381,7 @@ "license": "MIT" }, "node_modules/@types/eslint": { - "version": "8.4.10", + "version": "8.21.0", "license": "MIT", "dependencies": { "@types/estree": "*", @@ -3198,7 +3393,7 @@ "license": "MIT" }, "node_modules/@types/express": { - "version": "4.17.15", + "version": "4.17.16", "license": "MIT", "dependencies": { "@types/body-parser": "*", @@ -3208,7 +3403,7 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.31", + "version": "4.17.33", "license": "MIT", "dependencies": { "@types/node": "*", @@ -3218,8 +3413,7 @@ }, "node_modules/@types/glob": { "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.0.1.tgz", - "integrity": "sha512-8bVUjXZvJacUFkJXHdyZ9iH1Eaj5V7I8c4NdH5sQJsdXkqT4CA5Dhb4yb4VE/3asyx4L9ayZr1NIhTsWHczmMw==", + "license": "MIT", "dependencies": { "@types/minimatch": "^5.1.2", "@types/node": "*" @@ -3316,11 +3510,6 @@ "license": "MIT", "peer": true }, - "node_modules/@types/long": { - "version": "4.0.2", - "dev": true, - "license": "MIT" - }, "node_modules/@types/markdown-it": { "version": "12.2.3", "license": "MIT", @@ -3359,13 +3548,12 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "14.18.35", + "version": "18.11.18", "license": "MIT" }, "node_modules/@types/normalize-package-data": { "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" + "license": "MIT" }, "node_modules/@types/numeral": { "version": "2.0.2", @@ -3487,7 +3675,7 @@ } }, "node_modules/@types/yargs": { - "version": "17.0.17", + "version": "17.0.22", "license": "MIT", "dependencies": { "@types/yargs-parser": "*" @@ -3506,13 +3694,14 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.46.1", + "version": "5.50.0", "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/type-utils": "5.46.1", - "@typescript-eslint/utils": "5.46.1", + "@typescript-eslint/scope-manager": "5.50.0", + "@typescript-eslint/type-utils": "5.50.0", + "@typescript-eslint/utils": "5.50.0", "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "natural-compare-lite": "^1.4.0", "regexpp": "^3.2.0", @@ -3537,12 +3726,12 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "5.46.1", + "version": "5.50.0", "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/typescript-estree": "5.46.1", + "@typescript-eslint/scope-manager": "5.50.0", + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/typescript-estree": "5.50.0", "debug": "^4.3.4" }, "engines": { @@ -3562,11 +3751,11 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.46.1", + "version": "5.50.0", "license": "MIT", "dependencies": { - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/visitor-keys": "5.46.1" + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/visitor-keys": "5.50.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3577,11 +3766,11 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.46.1", + "version": "5.50.0", "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "5.46.1", - "@typescript-eslint/utils": "5.46.1", + "@typescript-eslint/typescript-estree": "5.50.0", + "@typescript-eslint/utils": "5.50.0", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -3602,7 +3791,7 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.46.1", + "version": "5.50.0", "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3613,11 +3802,11 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.46.1", + "version": "5.50.0", "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/visitor-keys": "5.46.1", + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/visitor-keys": "5.50.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -3637,15 +3826,33 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/globby": { + "version": "11.1.0", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@typescript-eslint/utils": { - "version": "5.46.1", + "version": "5.50.0", "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/typescript-estree": "5.46.1", + "@typescript-eslint/scope-manager": "5.50.0", + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/typescript-estree": "5.50.0", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0", "semver": "^7.3.7" @@ -3684,10 +3891,10 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.46.1", + "version": "5.50.0", "license": "MIT", "dependencies": { - "@typescript-eslint/types": "5.46.1", + "@typescript-eslint/types": "5.50.0", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -3772,6 +3979,16 @@ "node": ">=10.0.0" } }, + "node_modules/@web/dev-server-core/node_modules/lru-cache": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@web/dev-server-core/node_modules/ws": { "version": "7.5.9", "license": "MIT", @@ -3791,6 +4008,10 @@ } } }, + "node_modules/@web/dev-server-core/node_modules/yallist": { + "version": "4.0.0", + "license": "ISC" + }, "node_modules/@web/dev-server-esbuild": { "version": "0.3.3", "license": "MIT", @@ -3839,20 +4060,6 @@ "esbuild-windows-arm64": "0.14.54" } }, - "node_modules/@web/dev-server-esbuild/node_modules/esbuild-linux-64": { - "version": "0.14.54", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/@web/dev-server-import-maps": { "version": "0.0.7", "license": "MIT", @@ -3869,7 +4076,7 @@ } }, "node_modules/@web/dev-server-rollup": { - "version": "0.3.19", + "version": "0.3.21", "license": "MIT", "dependencies": { "@rollup/plugin-node-resolve": "^13.0.4", @@ -4047,6 +4254,17 @@ "version": "2.0.6", "license": "BSD-3-Clause" }, + "node_modules/abort-controller": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, "node_modules/accepts": { "version": "1.3.8", "license": "MIT", @@ -4059,7 +4277,7 @@ } }, "node_modules/acorn": { - "version": "8.8.1", + "version": "8.8.2", "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -4144,7 +4362,7 @@ } }, "node_modules/ajv": { - "version": "8.11.2", + "version": "8.12.0", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -4236,15 +4454,17 @@ } }, "node_modules/aria-query/node_modules/deep-equal": { - "version": "2.1.0", + "version": "2.2.0", "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "es-get-iterator": "^1.1.2", "get-intrinsic": "^1.1.3", "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.1", "is-date-object": "^1.0.5", "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", "isarray": "^2.0.5", "object-is": "^1.1.5", "object-keys": "^1.1.1", @@ -4253,7 +4473,7 @@ "side-channel": "^1.0.4", "which-boxed-primitive": "^1.0.2", "which-collection": "^1.0.1", - "which-typed-array": "^1.1.8" + "which-typed-array": "^1.1.9" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -4386,14 +4606,27 @@ "license": "MIT" }, "node_modules/async-each": { - "version": "1.0.3", + "version": "1.0.5", "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], "license": "MIT" }, "node_modules/asynckit": { "version": "0.4.0", "license": "MIT" }, + "node_modules/at-least-node": { + "version": "1.0.0", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/atob": { "version": "2.1.2", "license": "(MIT OR Apache-2.0)", @@ -4415,7 +4648,7 @@ } }, "node_modules/axe-core": { - "version": "4.6.1", + "version": "4.6.3", "license": "MPL-2.0", "engines": { "node": ">=4" @@ -4479,6 +4712,13 @@ "node": ">=0.10.0" } }, + "node_modules/base/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/base64-js": { "version": "1.5.1", "funding": [ @@ -4583,11 +4823,15 @@ } }, "node_modules/blob-to-it": { - "version": "1.0.4", + "version": "2.0.0", "dev": true, - "license": "ISC", + "license": "Apache-2.0 OR MIT", "dependencies": { - "browser-readablestream-to-it": "^1.0.3" + "browser-readablestream-to-it": "^2.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/boolbase": { @@ -4629,12 +4873,16 @@ "license": "BSD-2-Clause" }, "node_modules/browser-readablestream-to-it": { - "version": "1.0.3", + "version": "2.0.0", "dev": true, - "license": "ISC" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/browserslist": { - "version": "4.21.4", + "version": "4.21.5", "dev": true, "funding": [ { @@ -4648,10 +4896,10 @@ ], "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" }, "bin": { "browserslist": "cli.js" @@ -4700,6 +4948,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/busboy": { + "version": "1.6.0", + "dev": true, + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, "node_modules/bytes": { "version": "3.0.0", "license": "MIT", @@ -4707,6 +4965,69 @@ "node": ">= 0.8" } }, + "node_modules/cacache": { + "version": "15.3.0", + "dev": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "7.2.3", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacache/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, "node_modules/cache-base": { "version": "1.0.1", "license": "MIT", @@ -4725,6 +5046,13 @@ "node": ">=0.10.0" } }, + "node_modules/cache-base/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/cache-content-type": { "version": "1.0.1", "license": "MIT", @@ -4800,7 +5128,7 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001439", + "version": "1.0.30001450", "dev": true, "funding": [ { @@ -4832,7 +5160,7 @@ } }, "node_modules/cborg": { - "version": "1.9.6", + "version": "1.10.0", "dev": true, "license": "Apache-2.0", "bin": { @@ -4861,14 +5189,10 @@ } }, "node_modules/chalk": { - "version": "4.1.2", + "version": "5.0.1", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" @@ -4998,7 +5322,13 @@ } }, "node_modules/ci-info": { - "version": "3.7.0", + "version": "3.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], "license": "MIT", "engines": { "node": ">=8" @@ -5079,6 +5409,13 @@ "node": ">=0.10.0" } }, + "node_modules/class-utils/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/class-utils/node_modules/kind-of": { "version": "5.1.0", "license": "MIT", @@ -5139,12 +5476,30 @@ } }, "node_modules/cliui": { - "version": "7.0.4", + "version": "8.0.1", "license": "ISC", "dependencies": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/clone": { @@ -5172,19 +5527,6 @@ "type-is": "^1.6.16" } }, - "node_modules/co-body/node_modules/qs": { - "version": "6.11.0", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/collection-visit": { "version": "1.0.0", "license": "MIT", @@ -5212,12 +5554,11 @@ }, "node_modules/colord": { "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/colorjs.io": { - "version": "0.4.2", + "version": "0.4.3", "license": "MIT" }, "node_modules/combined-stream": { @@ -5328,7 +5669,7 @@ } }, "node_modules/commander": { - "version": "9.4.1", + "version": "9.5.0", "dev": true, "license": "MIT", "engines": { @@ -5462,7 +5803,7 @@ "license": "MIT" }, "node_modules/content-type": { - "version": "1.0.4", + "version": "1.0.5", "license": "MIT", "engines": { "node": ">= 0.6" @@ -5512,6 +5853,28 @@ "node": ">=10" } }, + "node_modules/conventional-commits-parser/node_modules/hosted-git-info": { + "version": "4.1.0", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-commits-parser/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/conventional-commits-parser/node_modules/meow": { "version": "8.1.2", "dev": true, @@ -5536,6 +5899,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/conventional-commits-parser/node_modules/normalize-package-data": { + "version": "3.0.3", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/conventional-commits-parser/node_modules/type-fest": { "version": "0.18.1", "dev": true, @@ -5547,6 +5924,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/conventional-commits-parser/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/conventional-commits-parser/node_modules/yargs-parser": { + "version": "20.2.9", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, "node_modules/convert-source-map": { "version": "1.9.0", "license": "MIT" @@ -5581,18 +5971,17 @@ "license": "MIT" }, "node_modules/cosmiconfig": { - "version": "7.1.0", + "version": "8.0.0", "dev": true, "license": "MIT", "dependencies": { - "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "path-type": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=14" } }, "node_modules/cosmiconfig-typescript-loader": { @@ -5610,12 +5999,20 @@ "typescript": ">=3" } }, - "node_modules/cosmiconfig/node_modules/yaml": { - "version": "1.10.2", + "node_modules/cosmiconfig/node_modules/argparse": { + "version": "2.0.1", "dev": true, - "license": "ISC", - "engines": { - "node": ">= 6" + "license": "Python-2.0" + }, + "node_modules/cosmiconfig/node_modules/js-yaml": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, "node_modules/cpx": { @@ -5821,6 +6218,14 @@ "node": ">=0.10.0" } }, + "node_modules/cpx/node_modules/isobject": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/cpx/node_modules/kind-of": { "version": "3.2.2", "dev": true, @@ -6083,18 +6488,52 @@ "repeat-string": "^1.6.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.10.0" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "license": "MIT" + }, + "node_modules/cross-fetch": { + "version": "3.1.5", + "license": "MIT", + "dependencies": { + "node-fetch": "2.6.7" + } + }, + "node_modules/cross-fetch/node_modules/node-fetch": { + "version": "2.6.7", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/create-require": { - "version": "1.1.1", + "node_modules/cross-fetch/node_modules/tr46": { + "version": "0.0.3", "license": "MIT" }, - "node_modules/cross-fetch": { - "version": "3.1.5", + "node_modules/cross-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "node_modules/cross-fetch/node_modules/whatwg-url": { + "version": "5.0.0", "license": "MIT", "dependencies": { - "node-fetch": "2.6.7" + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, "node_modules/cross-spawn": { @@ -6111,9 +6550,8 @@ }, "node_modules/css-functions-list": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.1.0.tgz", - "integrity": "sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==", "dev": true, + "license": "MIT", "engines": { "node": ">=12.22" } @@ -6144,9 +6582,8 @@ }, "node_modules/cssesc": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, + "license": "MIT", "bin": { "cssesc": "bin/cssesc" }, @@ -6210,21 +6647,12 @@ "license": "BSD-3-Clause" }, "node_modules/dag-jose": { - "version": "1.0.0", + "version": "3.0.1", "dev": true, "license": "(Apache-2.0 OR MIT)", "dependencies": { - "@ipld/dag-cbor": "^6.0.3", - "multiformats": "^9.0.2" - } - }, - "node_modules/dag-jose/node_modules/@ipld/dag-cbor": { - "version": "6.0.15", - "dev": true, - "license": "(Apache-2.0 AND MIT)", - "dependencies": { - "cborg": "^1.5.4", - "multiformats": "^9.5.4" + "@ipld/dag-cbor": "^8.0.0", + "multiformats": "^10.0.1" } }, "node_modules/dargs": { @@ -6325,7 +6753,7 @@ "license": "MIT" }, "node_modules/deepmerge": { - "version": "4.2.2", + "version": "4.3.0", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -6380,6 +6808,13 @@ "node": ">=0.10.0" } }, + "node_modules/define-property/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/delayed-stream": { "version": "1.0.0", "license": "MIT", @@ -6475,13 +6910,18 @@ } }, "node_modules/dns-over-http-resolver": { - "version": "1.2.3", + "version": "2.1.1", "dev": true, - "license": "MIT", + "license": "Apache-2.0 OR MIT", "dependencies": { "debug": "^4.3.1", - "native-fetch": "^3.0.0", - "receptacle": "^1.3.2" + "native-fetch": "^4.0.2", + "receptacle": "^1.3.2", + "undici": "^5.12.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/doctrine": { @@ -6641,7 +7081,7 @@ "license": "ISC" }, "node_modules/element-internals-polyfill": { - "version": "1.1.20", + "version": "1.2.2", "license": "MIT" }, "node_modules/eleventy-plugin-toc": { @@ -6740,25 +7180,31 @@ "license": "MIT" }, "node_modules/es-abstract": { - "version": "1.20.5", + "version": "1.21.1", "license": "MIT", "dependencies": { + "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "function.prototype.name": "^1.1.5", "get-intrinsic": "^1.1.3", "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", "gopd": "^1.0.1", "has": "^1.0.3", "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", + "internal-slot": "^1.0.4", + "is-array-buffer": "^3.0.1", "is-callable": "^1.2.7", "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", "is-weakref": "^1.0.2", "object-inspect": "^1.12.2", "object-keys": "^1.1.1", @@ -6767,7 +7213,9 @@ "safe-regex-test": "^1.0.0", "string.prototype.trimend": "^1.0.6", "string.prototype.trimstart": "^1.0.6", - "unbox-primitive": "^1.0.2" + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" }, "engines": { "node": ">= 0.4" @@ -6777,17 +7225,18 @@ } }, "node_modules/es-get-iterator": { - "version": "1.1.2", + "version": "1.1.3", "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.0", - "has-symbols": "^1.0.1", - "is-arguments": "^1.1.0", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", "is-map": "^2.0.2", "is-set": "^2.0.2", - "is-string": "^1.0.5", - "isarray": "^2.0.5" + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -6801,6 +7250,18 @@ "version": "1.1.0", "license": "MIT" }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-shim-unscopables": { "version": "1.0.0", "license": "MIT", @@ -6824,7 +7285,7 @@ } }, "node_modules/esbuild": { - "version": "0.15.18", + "version": "0.16.17", "hasInstallScript": true, "license": "MIT", "peer": true, @@ -6835,32 +7296,32 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.15.18", - "@esbuild/linux-loong64": "0.15.18", - "esbuild-android-64": "0.15.18", - "esbuild-android-arm64": "0.15.18", - "esbuild-darwin-64": "0.15.18", - "esbuild-darwin-arm64": "0.15.18", - "esbuild-freebsd-64": "0.15.18", - "esbuild-freebsd-arm64": "0.15.18", - "esbuild-linux-32": "0.15.18", - "esbuild-linux-64": "0.15.18", - "esbuild-linux-arm": "0.15.18", - "esbuild-linux-arm64": "0.15.18", - "esbuild-linux-mips64le": "0.15.18", - "esbuild-linux-ppc64le": "0.15.18", - "esbuild-linux-riscv64": "0.15.18", - "esbuild-linux-s390x": "0.15.18", - "esbuild-netbsd-64": "0.15.18", - "esbuild-openbsd-64": "0.15.18", - "esbuild-sunos-64": "0.15.18", - "esbuild-windows-32": "0.15.18", - "esbuild-windows-64": "0.15.18", - "esbuild-windows-arm64": "0.15.18" + "@esbuild/android-arm": "0.16.17", + "@esbuild/android-arm64": "0.16.17", + "@esbuild/android-x64": "0.16.17", + "@esbuild/darwin-arm64": "0.16.17", + "@esbuild/darwin-x64": "0.16.17", + "@esbuild/freebsd-arm64": "0.16.17", + "@esbuild/freebsd-x64": "0.16.17", + "@esbuild/linux-arm": "0.16.17", + "@esbuild/linux-arm64": "0.16.17", + "@esbuild/linux-ia32": "0.16.17", + "@esbuild/linux-loong64": "0.16.17", + "@esbuild/linux-mips64el": "0.16.17", + "@esbuild/linux-ppc64": "0.16.17", + "@esbuild/linux-riscv64": "0.16.17", + "@esbuild/linux-s390x": "0.16.17", + "@esbuild/linux-x64": "0.16.17", + "@esbuild/netbsd-x64": "0.16.17", + "@esbuild/openbsd-x64": "0.16.17", + "@esbuild/sunos-x64": "0.16.17", + "@esbuild/win32-arm64": "0.16.17", + "@esbuild/win32-ia32": "0.16.17", + "@esbuild/win32-x64": "0.16.17" } }, "node_modules/esbuild-linux-64": { - "version": "0.15.18", + "version": "0.14.54", "cpu": [ "x64" ], @@ -6869,7 +7330,6 @@ "os": [ "linux" ], - "peer": true, "engines": { "node": ">=12" } @@ -6889,7 +7349,7 @@ } }, "node_modules/esbuild-plugin-lit-css": { - "version": "2.0.0", + "version": "2.0.1", "license": "ISC", "dependencies": { "@pwrs/lit-css": "^2.0.0" @@ -6899,7 +7359,7 @@ } }, "node_modules/esbuild-plugin-minify-html-literals": { - "version": "1.0.1", + "version": "1.0.2", "license": "ISC", "dependencies": { "minify-html-literals": "^1.3.5" @@ -7000,10 +7460,10 @@ } }, "node_modules/eslint": { - "version": "8.30.0", + "version": "8.33.0", "license": "MIT", "dependencies": { - "@eslint/eslintrc": "^1.4.0", + "@eslint/eslintrc": "^1.4.1", "@humanwhocodes/config-array": "^0.11.8", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -7103,7 +7563,7 @@ } }, "node_modules/eslint-plugin-json-schema-validator/node_modules/minimatch": { - "version": "5.1.1", + "version": "5.1.6", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -7113,7 +7573,7 @@ } }, "node_modules/eslint-plugin-jsonc": { - "version": "2.5.0", + "version": "2.6.0", "license": "MIT", "dependencies": { "eslint-utils": "^3.0.0", @@ -7131,7 +7591,7 @@ } }, "node_modules/eslint-plugin-lit": { - "version": "1.7.2", + "version": "1.8.2", "license": "MIT", "dependencies": { "parse5": "^6.0.1", @@ -7316,6 +7776,20 @@ "version": "2.0.1", "license": "Python-2.0" }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/eslint/node_modules/glob-parent": { "version": "6.0.2", "license": "ISC", @@ -7327,7 +7801,7 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.19.0", + "version": "13.20.0", "license": "MIT", "dependencies": { "type-fest": "^0.20.2" @@ -7417,7 +7891,7 @@ } }, "node_modules/estree-walker": { - "version": "1.0.1", + "version": "2.0.2", "license": "MIT" }, "node_modules/esutils": { @@ -7434,6 +7908,14 @@ "node": ">= 0.6" } }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/execa": { "version": "5.1.1", "dev": true, @@ -7504,17 +7986,6 @@ "node": ">=0.10.0" } }, - "node_modules/expand-range/node_modules/isobject": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/expand-range/node_modules/kind-of": { "version": "3.2.2", "dev": true, @@ -7651,15 +8122,14 @@ }, "node_modules/fastest-levenshtein": { "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4.9.1" } }, "node_modules/fastq": { - "version": "1.14.0", + "version": "1.15.0", "license": "ISC", "dependencies": { "reusify": "^1.0.4" @@ -7728,7 +8198,7 @@ } }, "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.1", + "version": "5.1.6", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -8082,6 +8552,14 @@ "node": ">=0.10.0" } }, + "node_modules/findup-sync/node_modules/isobject": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/findup-sync/node_modules/micromatch": { "version": "3.1.10", "dev": true, @@ -8285,7 +8763,7 @@ } }, "node_modules/get-intrinsic": { - "version": "1.1.3", + "version": "1.2.0", "license": "MIT", "dependencies": { "function-bind": "^1.1.1", @@ -8372,6 +8850,28 @@ "node": ">=10" } }, + "node_modules/git-raw-commits/node_modules/hosted-git-info": { + "version": "4.1.0", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/git-raw-commits/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/git-raw-commits/node_modules/meow": { "version": "8.1.2", "dev": true, @@ -8396,6 +8896,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/git-raw-commits/node_modules/normalize-package-data": { + "version": "3.0.3", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/git-raw-commits/node_modules/type-fest": { "version": "0.18.1", "dev": true, @@ -8407,6 +8921,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/git-raw-commits/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/git-raw-commits/node_modules/yargs-parser": { + "version": "20.2.9", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, "node_modules/glob": { "version": "8.1.0", "license": "ISC", @@ -8485,7 +9012,7 @@ } }, "node_modules/glob/node_modules/minimatch": { - "version": "5.1.1", + "version": "5.1.6", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -8518,14 +9045,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, "node_modules/global-modules": { "version": "1.0.0", "dev": true, @@ -8554,6 +9073,11 @@ "node": ">=0.10.0" } }, + "node_modules/global-prefix/node_modules/ini": { + "version": "1.3.8", + "dev": true, + "license": "ISC" + }, "node_modules/global-prefix/node_modules/which": { "version": "1.3.1", "dev": true, @@ -8573,19 +9097,32 @@ "node": ">=4" } }, + "node_modules/globalthis": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/globalyzer": { "version": "0.1.0", "license": "MIT" }, "node_modules/globby": { - "version": "11.1.0", + "version": "11.0.4", "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", "slash": "^3.0.0" }, "engines": { @@ -8597,9 +9134,8 @@ }, "node_modules/globjoin": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", - "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/globrex": { "version": "0.1.2", @@ -8712,6 +9248,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-proto": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-symbols": { "version": "1.0.3", "license": "MIT", @@ -8747,6 +9293,13 @@ "node": ">=0.10.0" } }, + "node_modules/has-value/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/has-values": { "version": "1.0.0", "license": "MIT", @@ -8804,6 +9357,14 @@ "tslib": "^2.0.3" } }, + "node_modules/highlight.js": { + "version": "11.7.0", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/homedir-polyfill": { "version": "1.0.3", "dev": true, @@ -8816,15 +9377,8 @@ } }, "node_modules/hosted-git-info": { - "version": "4.1.0", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } + "version": "2.8.9", + "license": "ISC" }, "node_modules/html-encoding-sniffer": { "version": "3.0.0", @@ -8916,9 +9470,8 @@ }, "node_modules/html-tags": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", - "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -8983,7 +9536,7 @@ } }, "node_modules/http-cache-semantics": { - "version": "4.1.0", + "version": "4.1.1", "dev": true, "license": "BSD-2-Clause" }, @@ -9094,7 +9647,7 @@ "license": "BSD-3-Clause" }, "node_modules/ignore": { - "version": "5.2.2", + "version": "5.2.4", "license": "MIT", "engines": { "node": ">= 4" @@ -9123,9 +9676,8 @@ }, "node_modules/import-lazy": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -9169,24 +9721,46 @@ "license": "ISC" }, "node_modules/ini": { - "version": "1.3.8", + "version": "2.0.0", "dev": true, - "license": "ISC" + "license": "ISC", + "engines": { + "node": ">=10" + } }, "node_modules/interface-datastore": { - "version": "6.1.1", + "version": "7.0.4", "dev": true, - "license": "MIT", + "license": "Apache-2.0 OR MIT", "dependencies": { - "interface-store": "^2.0.2", - "nanoid": "^3.0.2", - "uint8arrays": "^3.0.0" + "interface-store": "^3.0.0", + "nanoid": "^4.0.0", + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/interface-datastore/node_modules/nanoid": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" } }, "node_modules/interface-store": { - "version": "2.0.2", + "version": "3.0.4", "dev": true, - "license": "(Apache-2.0 OR MIT)" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/internal-slot": { "version": "1.0.4", @@ -9204,147 +9778,170 @@ "version": "1.1.8", "license": "MIT" }, - "node_modules/ip-regex": { - "version": "4.3.0", + "node_modules/ipfs-client": { + "version": "0.9.2", "dev": true, - "license": "MIT", + "license": "Apache-2.0 OR MIT", + "dependencies": { + "ipfs-grpc-client": "^0.12.0", + "ipfs-http-client": "^59.0.0", + "merge-options": "^3.0.4" + }, "engines": { - "node": ">=8" + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/ipfs-client": { - "version": "0.7.9", + "node_modules/ipfs-core-types": { + "version": "0.13.0", "dev": true, - "license": "(Apache-2.0 OR MIT)", + "license": "Apache-2.0 OR MIT", "dependencies": { - "ipfs-grpc-client": "^0.9.4", - "ipfs-http-client": "^56.0.3", - "merge-options": "^3.0.4" + "@ipld/dag-pb": "^3.0.0", + "@libp2p/interface-keychain": "^1.0.3", + "@libp2p/interface-peer-id": "^1.0.4", + "@libp2p/interface-peer-info": "^1.0.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/node": "^18.0.0", + "interface-datastore": "^7.0.0", + "ipfs-unixfs": "^8.0.0", + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/ipfs-core-types": { - "version": "0.10.3", + "node_modules/ipfs-core-types/node_modules/@libp2p/interface-peer-id": { + "version": "1.1.2", "dev": true, - "license": "(Apache-2.0 OR MIT)", + "license": "Apache-2.0 OR MIT", "dependencies": { - "@ipld/dag-pb": "^2.1.3", - "interface-datastore": "^6.0.2", - "ipfs-unixfs": "^6.0.3", - "multiaddr": "^10.0.0", - "multiformats": "^9.5.1" + "multiformats": "^10.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/ipfs-core-utils": { - "version": "0.14.3", + "version": "0.17.0", "dev": true, - "license": "MIT", + "license": "Apache-2.0 OR MIT", "dependencies": { + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", "any-signal": "^3.0.0", - "blob-to-it": "^1.0.1", - "browser-readablestream-to-it": "^1.0.1", - "debug": "^4.1.1", + "blob-to-it": "^2.0.0", + "browser-readablestream-to-it": "^2.0.0", "err-code": "^3.0.1", - "ipfs-core-types": "^0.10.3", - "ipfs-unixfs": "^6.0.3", + "ipfs-core-types": "^0.13.0", + "ipfs-unixfs": "^8.0.0", "ipfs-utils": "^9.0.6", - "it-all": "^1.0.4", - "it-map": "^1.0.4", - "it-peekable": "^1.0.2", + "it-all": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", "it-to-stream": "^1.0.0", "merge-options": "^3.0.4", - "multiaddr": "^10.0.0", - "multiaddr-to-uri": "^8.0.0", - "multiformats": "^9.5.1", - "nanoid": "^3.1.23", + "multiformats": "^10.0.0", + "nanoid": "^4.0.0", "parse-duration": "^1.0.0", "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^3.0.0" + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/ipfs-core-utils/node_modules/nanoid": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" } }, "node_modules/ipfs-grpc-client": { - "version": "0.9.4", + "version": "0.12.0", "dev": true, - "license": "(Apache-2.0 OR MIT)", + "license": "Apache-2.0 OR MIT", "dependencies": { - "@improbable-eng/grpc-web": "^0.14.0", + "@improbable-eng/grpc-web": "^0.15.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^1.1.10", + "@multiformats/multiaddr": "^11.0.0", "change-case": "^4.1.1", - "debug": "^4.1.1", "err-code": "^3.0.1", - "ipfs-core-types": "^0.10.3", - "ipfs-core-utils": "^0.14.3", - "ipfs-grpc-protocol": "^0.5.5", - "ipfs-unixfs": "^6.0.3", - "it-first": "^1.0.4", - "it-pushable": "^1.4.2", - "multiaddr": "^10.0.0", - "multiformats": "^9.5.1", - "p-defer": "^3.0.0", - "protobufjs": "^6.10.2", - "wherearewe": "^1.0.0", - "ws": "^7.3.1" - } - }, - "node_modules/ipfs-grpc-client/node_modules/ws": { - "version": "7.5.9", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "ipfs-core-types": "^0.13.0", + "ipfs-core-utils": "^0.17.0", + "ipfs-grpc-protocol": "^0.7.0", + "ipfs-unixfs": "^8.0.0", + "it-first": "^2.0.0", + "it-pushable": "^3.0.0", + "multiformats": "^10.0.0", + "p-defer": "^4.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "wherearewe": "^2.0.1", + "ws": "^8.5.0" }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/ipfs-grpc-protocol": { - "version": "0.5.5", + "version": "0.7.0", "dev": true, - "license": "(Apache-2.0 OR MIT)" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/ipfs-http-client": { - "version": "56.0.3", + "version": "59.0.0", "dev": true, - "license": "(Apache-2.0 OR MIT)", + "license": "Apache-2.0 OR MIT", "dependencies": { - "@ipld/dag-cbor": "^7.0.0", - "@ipld/dag-json": "^8.0.1", - "@ipld/dag-pb": "^2.1.3", + "@ipld/dag-cbor": "^8.0.0", + "@ipld/dag-json": "^9.0.0", + "@ipld/dag-pb": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^1.1.10", + "@multiformats/multiaddr": "^11.0.0", "any-signal": "^3.0.0", - "dag-jose": "^1.0.0", - "debug": "^4.1.1", + "dag-jose": "^3.0.1", "err-code": "^3.0.1", - "ipfs-core-types": "^0.10.3", - "ipfs-core-utils": "^0.14.3", + "ipfs-core-types": "^0.13.0", + "ipfs-core-utils": "^0.17.0", "ipfs-utils": "^9.0.6", - "it-first": "^1.0.6", - "it-last": "^1.0.4", + "it-first": "^2.0.0", + "it-last": "^2.0.0", "merge-options": "^3.0.4", - "multiaddr": "^10.0.0", - "multiformats": "^9.5.1", + "multiformats": "^10.0.0", "parse-duration": "^1.0.0", "stream-to-it": "^0.2.2", - "uint8arrays": "^3.0.0" + "uint8arrays": "^4.0.2" }, "engines": { - "node": ">=15.0.0", - "npm": ">=3.0.0" + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/ipfs-unixfs": { - "version": "6.0.9", + "version": "8.0.0", "dev": true, "license": "Apache-2.0 OR MIT", "dependencies": { "err-code": "^3.0.1", - "protobufjs": "^6.10.2" + "protobufjs": "^7.0.0" }, "engines": { "node": ">=16.0.0", @@ -9352,35 +9949,48 @@ } }, "node_modules/ipfs-utils": { - "version": "9.0.9", + "version": "9.0.14", "dev": true, - "license": "MIT", + "license": "Apache-2.0 OR MIT", "dependencies": { "any-signal": "^3.0.0", + "browser-readablestream-to-it": "^1.0.0", "buffer": "^6.0.1", "electron-fetch": "^1.7.2", "err-code": "^3.0.1", "is-electron": "^2.2.0", "iso-url": "^1.1.5", + "it-all": "^1.0.4", "it-glob": "^1.0.1", "it-to-stream": "^1.0.0", "merge-options": "^3.0.4", "nanoid": "^3.1.20", "native-fetch": "^3.0.0", - "node-fetch": "https://registry.npmjs.org/@achingbrain/node-fetch/-/node-fetch-2.6.7.tgz", - "react-native-fetch-api": "^2.0.0", + "node-fetch": "^2.6.8", + "react-native-fetch-api": "^3.0.0", "stream-to-it": "^0.2.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, - "node_modules/ipfs-utils/node_modules/node-fetch": { - "name": "@achingbrain/node-fetch", - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/@achingbrain/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-iTASGs+HTFK5E4ZqcMsHmeJ4zodyq8L38lZV33jwqcBJYoUt3HjN4+ot+O9/0b+ke8ddE7UgOtVuZN/OkV19/g==", + "node_modules/ipfs-utils/node_modules/browser-readablestream-to-it": { + "version": "1.0.3", + "dev": true, + "license": "ISC" + }, + "node_modules/ipfs-utils/node_modules/it-all": { + "version": "1.0.6", + "dev": true, + "license": "ISC" + }, + "node_modules/ipfs-utils/node_modules/native-fetch": { + "version": "3.0.0", "dev": true, "license": "MIT", - "engines": { - "node": "4.x || >=6.0.0" + "peerDependencies": { + "node-fetch": "*" } }, "node_modules/is-accessor-descriptor": { @@ -9427,6 +10037,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-array-buffer": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-arrayish": { "version": "0.2.1", "license": "MIT" @@ -9470,7 +10092,7 @@ "license": "MIT" }, "node_modules/is-builtin-module": { - "version": "3.2.0", + "version": "3.2.1", "license": "MIT", "dependencies": { "builtin-modules": "^3.3.0" @@ -9654,17 +10276,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-ip": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ip-regex": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/is-json": { "version": "2.0.1", "license": "ISC" @@ -9964,8 +10575,12 @@ } }, "node_modules/isobject": { - "version": "3.0.1", + "version": "2.1.0", + "dev": true, "license": "MIT", + "dependencies": { + "isarray": "1.0.0" + }, "engines": { "node": ">=0.10.0" } @@ -10001,14 +10616,22 @@ } }, "node_modules/it-all": { - "version": "1.0.6", + "version": "2.0.0", "dev": true, - "license": "ISC" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/it-first": { - "version": "1.0.7", + "version": "2.0.0", "dev": true, - "license": "ISC" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/it-glob": { "version": "1.0.2", @@ -10025,26 +10648,48 @@ "license": "MIT" }, "node_modules/it-last": { - "version": "1.0.6", + "version": "2.0.0", "dev": true, - "license": "ISC" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/it-map": { - "version": "1.0.6", + "version": "2.0.0", "dev": true, - "license": "ISC" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/it-peekable": { - "version": "1.0.3", + "version": "2.0.0", "dev": true, - "license": "ISC" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/it-pushable": { - "version": "1.4.2", + "version": "3.1.2", "dev": true, - "license": "MIT", - "dependencies": { - "fast-fifo": "^1.0.0" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/it-stream-types": { + "version": "1.0.5", + "dev": true, + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/it-to-stream": { @@ -10060,6 +10705,14 @@ "readable-stream": "^3.6.0" } }, + "node_modules/it-to-stream/node_modules/p-defer": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/jake": { "version": "10.8.5", "license": "Apache-2.0", @@ -10076,8 +10729,22 @@ "node": ">=10" } }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/js-sdsl": { - "version": "4.2.0", + "version": "4.3.0", "license": "MIT", "funding": { "type": "opencollective", @@ -10309,9 +10976,8 @@ }, "node_modules/known-css-properties": { "version": "0.26.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", - "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/koa": { "version": "2.14.1", @@ -10500,17 +11166,6 @@ "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/leasot/node_modules/chalk": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/leasot/node_modules/globby": { "version": "13.1.3", "dev": true, @@ -10637,12 +11292,12 @@ "license": "MIT" }, "node_modules/lit": { - "version": "2.5.0", + "version": "2.6.1", "license": "BSD-3-Clause", "dependencies": { - "@lit/reactive-element": "^1.5.0", + "@lit/reactive-element": "^1.6.0", "lit-element": "^3.2.0", - "lit-html": "^2.5.0" + "lit-html": "^2.6.0" } }, "node_modules/lit-analyzer": { @@ -10954,6 +11609,13 @@ "node": ">=0.10.0" } }, + "node_modules/lit-analyzer/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/lit-analyzer/node_modules/micromatch": { "version": "3.1.10", "license": "MIT", @@ -11025,7 +11687,7 @@ } }, "node_modules/lit-html": { - "version": "2.5.0", + "version": "2.6.1", "license": "BSD-3-Clause", "dependencies": { "@types/trusted-types": "^2.0.2" @@ -11055,20 +11717,6 @@ "node": ">=6" } }, - "node_modules/load-yaml-file/node_modules/pify": { - "version": "4.0.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/load-yaml-file/node_modules/strip-bom": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/locate-path": { "version": "6.0.0", "license": "MIT", @@ -11141,9 +11789,8 @@ }, "node_modules/lodash.truncate": { "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.uniq": { "version": "4.5.0", @@ -11170,17 +11817,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/log-update": { "version": "4.0.0", "license": "MIT", @@ -11197,20 +11833,8 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/long": { - "version": "4.0.0", + "version": "5.2.1", "dev": true, "license": "Apache-2.0" }, @@ -11223,13 +11847,11 @@ } }, "node_modules/lru-cache": { - "version": "6.0.0", + "version": "5.1.1", + "dev": true, "license": "ISC", "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "yallist": "^3.0.2" } }, "node_modules/luxon": { @@ -11240,10 +11862,13 @@ } }, "node_modules/magic-string": { - "version": "0.25.9", + "version": "0.27.0", "license": "MIT", "dependencies": { - "sourcemap-codec": "^1.4.8" + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" } }, "node_modules/make-dir": { @@ -11295,27 +11920,6 @@ "node": ">= 10" } }, - "node_modules/make-fetch-happen/node_modules/@npmcli/fs": { - "version": "1.1.1", - "dev": true, - "license": "ISC", - "dependencies": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "node_modules/make-fetch-happen/node_modules/@npmcli/move-file": { - "version": "1.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/make-fetch-happen/node_modules/@tootallnate/once": { "version": "1.1.2", "dev": true, @@ -11324,53 +11928,6 @@ "node": ">= 6" } }, - "node_modules/make-fetch-happen/node_modules/cacache": { - "version": "15.3.0", - "dev": true, - "license": "ISC", - "dependencies": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/make-fetch-happen/node_modules/glob": { - "version": "7.2.3", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/make-fetch-happen/node_modules/http-proxy-agent": { "version": "4.0.1", "dev": true, @@ -11384,32 +11941,21 @@ "node": ">= 6" } }, - "node_modules/make-fetch-happen/node_modules/ssri": { - "version": "8.0.1", + "node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "6.0.0", "dev": true, "license": "ISC", "dependencies": { - "minipass": "^3.1.1" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/make-fetch-happen/node_modules/unique-filename": { - "version": "1.1.1", - "dev": true, - "license": "ISC", - "dependencies": { - "unique-slug": "^2.0.0" + "node": ">=10" } }, - "node_modules/make-fetch-happen/node_modules/unique-slug": { - "version": "2.0.2", + "node_modules/make-fetch-happen/node_modules/yallist": { + "version": "4.0.0", "dev": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4" - } + "license": "ISC" }, "node_modules/map-cache": { "version": "0.2.2", @@ -11476,9 +12022,8 @@ }, "node_modules/marked": { "version": "4.0.18", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.0.18.tgz", - "integrity": "sha512-wbLDJ7Zh0sqA0Vdg6aqlbT+yPxqLblpAZh1mK2+AO2twQkPywvvqQNfEPVwSSRjZ7dZcdeVBIAgiO7MMp3Dszw==", "dev": true, + "license": "MIT", "bin": { "marked": "bin/marked.js" }, @@ -11497,9 +12042,8 @@ }, "node_modules/mathml-tag-names": { "version": "2.1.3", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", - "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -11569,34 +12113,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/meow/node_modules/camelcase": { - "version": "5.3.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/meow/node_modules/hosted-git-info": { - "version": "2.8.9", - "license": "ISC" - }, - "node_modules/meow/node_modules/normalize-package-data": { - "version": "2.5.0", - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/meow/node_modules/semver": { - "version": "5.7.1", - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, "node_modules/meow/node_modules/type-fest": { "version": "0.13.1", "license": "(MIT OR CC0-1.0)", @@ -11607,17 +12123,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/meow/node_modules/yargs-parser": { - "version": "18.1.3", - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/merge-options": { "version": "3.0.4", "dev": true, @@ -11720,6 +12225,13 @@ "node": ">= 4.0" } }, + "node_modules/minify-html-literals/node_modules/magic-string": { + "version": "0.25.9", + "license": "MIT", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, "node_modules/minify-html-literals/node_modules/source-map": { "version": "0.6.1", "license": "BSD-3-Clause", @@ -11833,6 +12345,10 @@ "node": ">=8" } }, + "node_modules/minipass/node_modules/yallist": { + "version": "4.0.0", + "license": "ISC" + }, "node_modules/minizlib": { "version": "2.1.2", "dev": true, @@ -11845,6 +12361,11 @@ "node": ">= 8" } }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, "node_modules/mixin-deep": { "version": "1.3.2", "license": "MIT", @@ -11876,8 +12397,15 @@ "node": ">=0.10.0" } }, + "node_modules/mixin-deep/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/mixme": { - "version": "0.5.4", + "version": "0.5.5", "license": "MIT", "engines": { "node": ">= 8.0.0" @@ -11902,38 +12430,21 @@ "license": "BSD-3-Clause" }, "node_modules/morphdom": { - "version": "2.6.1", + "version": "2.7.0", "license": "MIT" }, "node_modules/ms": { "version": "2.1.2", "license": "MIT" }, - "node_modules/multiaddr": { - "version": "10.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "dns-over-http-resolver": "^1.2.3", - "err-code": "^3.0.1", - "is-ip": "^3.1.0", - "multiformats": "^9.4.5", - "uint8arrays": "^3.0.0", - "varint": "^6.0.0" - } - }, - "node_modules/multiaddr-to-uri": { - "version": "8.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "multiaddr": "^10.0.0" - } - }, "node_modules/multiformats": { - "version": "9.9.0", + "version": "10.0.3", "dev": true, - "license": "(Apache-2.0 AND MIT)" + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } }, "node_modules/multimatch": { "version": "5.0.0", @@ -12049,12 +12560,19 @@ "node": ">=0.10.0" } }, + "node_modules/nanomatch/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/native-fetch": { - "version": "3.0.0", + "version": "4.0.2", "dev": true, "license": "MIT", "peerDependencies": { - "node-fetch": "*" + "undici": "*" } }, "node_modules/natural-compare": { @@ -12092,30 +12610,16 @@ "license": "MIT" }, "node_modules/nise": { - "version": "5.1.3", + "version": "5.1.4", "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^2.0.0", - "@sinonjs/fake-timers": "^7.0.4", + "@sinonjs/fake-timers": "^10.0.2", "@sinonjs/text-encoding": "^0.7.1", "just-extend": "^4.0.2", "path-to-regexp": "^1.7.0" } }, - "node_modules/nise/node_modules/@sinonjs/fake-timers": { - "version": "7.1.2", - "license": "BSD-3-Clause", - "dependencies": { - "@sinonjs/commons": "^1.7.0" - } - }, - "node_modules/nise/node_modules/@sinonjs/fake-timers/node_modules/@sinonjs/commons": { - "version": "1.8.6", - "license": "BSD-3-Clause", - "dependencies": { - "type-detect": "4.0.8" - } - }, "node_modules/nise/node_modules/isarray": { "version": "0.0.1", "license": "MIT" @@ -12137,7 +12641,7 @@ } }, "node_modules/node-fetch": { - "version": "2.6.7", + "version": "2.6.9", "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" @@ -12171,22 +12675,25 @@ } }, "node_modules/node-releases": { - "version": "2.0.8", + "version": "2.0.9", "dev": true, "license": "MIT" }, "node_modules/normalize-package-data": { - "version": "3.0.3", - "dev": true, + "version": "2.5.0", "license": "BSD-2-Clause", "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "license": "ISC", + "bin": { + "semver": "bin/semver" } }, "node_modules/normalize-path": { @@ -12749,9 +13256,8 @@ }, "node_modules/numeral": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz", - "integrity": "sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -12869,7 +13375,7 @@ } }, "node_modules/object-inspect": { - "version": "1.12.2", + "version": "1.12.3", "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -12906,6 +13412,13 @@ "node": ">=0.10.0" } }, + "node_modules/object-visit/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/object.assign": { "version": "4.1.4", "license": "MIT", @@ -12937,9 +13450,16 @@ "node_modules/object.pick": { "version": "1.3.0", "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13026,11 +13546,14 @@ "license": "MIT" }, "node_modules/p-defer": { - "version": "3.0.0", + "version": "4.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-fifo": { @@ -13042,6 +13565,14 @@ "p-defer": "^3.0.0" } }, + "node_modules/p-fifo/node_modules/p-defer": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/p-filter": { "version": "2.1.0", "license": "MIT", @@ -13260,14 +13791,14 @@ } }, "node_modules/patch-package": { - "version": "6.5.0", + "version": "6.5.1", "license": "MIT", "dependencies": { "@yarnpkg/lockfile": "^1.1.0", "chalk": "^4.1.2", "cross-spawn": "^6.0.5", "find-yarn-workspace-root": "^2.0.0", - "fs-extra": "^7.0.1", + "fs-extra": "^9.0.0", "is-ci": "^2.0.0", "klaw-sync": "^6.0.0", "minimist": "^1.2.6", @@ -13286,6 +13817,20 @@ "npm": ">5" } }, + "node_modules/patch-package/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/patch-package/node_modules/ci-info": { "version": "2.0.0", "license": "MIT" @@ -13304,6 +13849,19 @@ "node": ">=4.8" } }, + "node_modules/patch-package/node_modules/fs-extra": { + "version": "9.1.0", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/patch-package/node_modules/glob": { "version": "7.2.3", "license": "ISC", @@ -13332,6 +13890,16 @@ "is-ci": "bin.js" } }, + "node_modules/patch-package/node_modules/jsonfile": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, "node_modules/patch-package/node_modules/open": { "version": "7.4.2", "license": "MIT", @@ -13394,6 +13962,13 @@ "node": ">=6" } }, + "node_modules/patch-package/node_modules/universalify": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/patch-package/node_modules/which": { "version": "1.3.1", "license": "ISC", @@ -13404,13 +13979,6 @@ "which": "bin/which" } }, - "node_modules/patch-package/node_modules/yaml": { - "version": "1.10.2", - "license": "ISC", - "engines": { - "node": ">= 6" - } - }, "node_modules/path-case": { "version": "3.0.4", "dev": true, @@ -13478,6 +14046,13 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/pify": { + "version": "4.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/pkg-dir": { "version": "4.2.0", "license": "MIT", @@ -13520,11 +14095,11 @@ } }, "node_modules/playwright": { - "version": "1.29.0", + "version": "1.30.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.29.0" + "playwright-core": "1.30.0" }, "bin": { "playwright": "cli.js" @@ -13534,7 +14109,7 @@ } }, "node_modules/playwright-core": { - "version": "1.29.0", + "version": "1.30.0", "license": "Apache-2.0", "bin": { "playwright": "cli.js" @@ -13554,6 +14129,20 @@ "node": ">=10.x" } }, + "node_modules/playwright-lighthouse/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/please-upgrade-node": { "version": "3.2.0", "license": "MIT", @@ -13613,8 +14202,6 @@ }, "node_modules/postcss": { "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", "dev": true, "funding": [ { @@ -13626,6 +14213,7 @@ "url": "https://tidelift.com/funding/github/npm/postcss" } ], + "license": "MIT", "dependencies": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -13637,21 +14225,18 @@ }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", - "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", - "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", - "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/postcss-safe-parser": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=12.0" }, @@ -13665,9 +14250,8 @@ }, "node_modules/postcss-selector-parser": { "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", "dev": true, + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -13678,9 +14262,8 @@ }, "node_modules/postcss-value-parser": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/posthtml": { "version": "0.16.6", @@ -13826,7 +14409,7 @@ } }, "node_modules/prettier": { - "version": "2.8.1", + "version": "2.8.3", "license": "MIT", "bin": { "prettier": "bin-prettier.js" @@ -13933,7 +14516,7 @@ } }, "node_modules/protobufjs": { - "version": "6.11.3", + "version": "7.2.0", "dev": true, "hasInstallScript": true, "license": "BSD-3-Clause", @@ -13948,13 +14531,11 @@ "@protobufjs/path": "^1.1.2", "@protobufjs/pool": "^1.1.0", "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", "@types/node": ">=13.7.0", - "long": "^4.0.0" + "long": "^5.0.0" }, - "bin": { - "pbjs": "bin/pbjs", - "pbts": "bin/pbts" + "engines": { + "node": ">=12.0.0" } }, "node_modules/proxy-from-env": { @@ -14082,7 +14663,7 @@ } }, "node_modules/punycode": { - "version": "2.1.1", + "version": "2.3.0", "license": "MIT", "engines": { "node": ">=6" @@ -14141,6 +14722,19 @@ "teleport": ">=0.2.0" } }, + "node_modules/qs": { + "version": "6.11.0", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/querystringify": { "version": "2.2.0", "license": "MIT" @@ -14212,17 +14806,24 @@ } }, "node_modules/react-native-fetch-api": { - "version": "2.0.0", + "version": "3.0.0", "dev": true, "license": "MIT", "dependencies": { "p-defer": "^3.0.0" } }, + "node_modules/react-native-fetch-api/node_modules/p-defer": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/read-pkg": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", @@ -14235,8 +14836,7 @@ }, "node_modules/read-pkg-up": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "license": "MIT", "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", @@ -14251,8 +14851,7 @@ }, "node_modules/read-pkg-up/node_modules/find-up": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -14263,8 +14862,7 @@ }, "node_modules/read-pkg-up/node_modules/locate-path": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -14274,8 +14872,7 @@ }, "node_modules/read-pkg-up/node_modules/p-locate": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -14285,40 +14882,14 @@ }, "node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, "node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } @@ -14336,20 +14907,6 @@ "node": ">=6" } }, - "node_modules/read-yaml-file/node_modules/pify": { - "version": "4.0.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/read-yaml-file/node_modules/strip-bom": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/readable-stream": { "version": "3.6.0", "license": "MIT", @@ -14522,6 +15079,13 @@ "node": ">=0.10.0" } }, + "node_modules/regex-not/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/regexp-tree": { "version": "0.1.24", "license": "MIT", @@ -14607,6 +15171,21 @@ "node": ">=12.17" } }, + "node_modules/renamer/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/renamer/node_modules/command-line-args": { "version": "5.2.1", "dev": true, @@ -14744,6 +15323,11 @@ "node": ">=4" } }, + "node_modules/resolve-global/node_modules/ini": { + "version": "1.3.8", + "dev": true, + "license": "ISC" + }, "node_modules/resolve-path": { "version": "1.4.0", "license": "MIT", @@ -14885,30 +15469,6 @@ "@rollup/pluginutils": "^5.0.2" } }, - "node_modules/rollup-plugin-lit-css/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/rollup-plugin-lit-css/node_modules/estree-walker": { - "version": "2.0.2", - "license": "MIT" - }, "node_modules/run-parallel": { "version": "1.2.0", "funding": [ @@ -14995,6 +15555,20 @@ "version": "1.0.0", "license": "MIT" }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "license": "ISC" + }, "node_modules/sentence-case": { "version": "3.0.4", "dev": true, @@ -15032,6 +15606,13 @@ "node": ">=0.10.0" } }, + "node_modules/set-value/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/setprototypeof": { "version": "1.2.0", "license": "ISC" @@ -15054,7 +15635,7 @@ } }, "node_modules/shell-quote": { - "version": "1.7.4", + "version": "1.8.0", "dev": true, "license": "MIT", "funding": { @@ -15153,13 +15734,6 @@ "node": ">=6" } }, - "node_modules/smartwrap/node_modules/camelcase": { - "version": "5.3.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/smartwrap/node_modules/cliui": { "version": "6.0.0", "license": "ISC", @@ -15200,18 +15774,6 @@ "node": ">=8" } }, - "node_modules/smartwrap/node_modules/wrap-ansi": { - "version": "6.2.0", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/smartwrap/node_modules/y18n": { "version": "4.0.3", "license": "ISC" @@ -15226,25 +15788,14 @@ "get-caller-file": "^2.0.1", "require-directory": "^2.1.1", "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/smartwrap/node_modules/yargs-parser": { - "version": "18.1.3", - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" }, "engines": { - "node": ">=6" + "node": ">=8" } }, "node_modules/snake-case": { @@ -15295,6 +15846,13 @@ "node": ">=0.10.0" } }, + "node_modules/snapdragon-node/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/snapdragon-util": { "version": "3.0.1", "license": "MIT", @@ -15442,9 +16000,8 @@ }, "node_modules/source-map-js": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -15589,6 +16146,13 @@ "node": ">=0.10.0" } }, + "node_modules/split-string/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/split2": { "version": "3.2.2", "dev": true, @@ -15601,6 +16165,16 @@ "version": "1.0.3", "license": "BSD-3-Clause" }, + "node_modules/ssri": { + "version": "8.0.1", + "license": "ISC", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/static-extend": { "version": "0.1.2", "license": "MIT", @@ -15688,6 +16262,16 @@ "node": ">= 0.8" } }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/stream-read-all": { "version": "3.0.1", "dev": true, @@ -15711,6 +16295,13 @@ "mixme": "^0.5.1" } }, + "node_modules/streamsearch": { + "version": "1.1.0", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/string_decoder": { "version": "1.3.0", "license": "MIT", @@ -15789,6 +16380,13 @@ "node": ">=8" } }, + "node_modules/strip-bom": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/strip-bom-string": { "version": "1.0.0", "license": "MIT", @@ -15833,15 +16431,13 @@ }, "node_modules/style-search": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/stylelint": { "version": "14.16.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", - "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", "dev": true, + "license": "MIT", "dependencies": { "@csstools/selector-specificity": "^2.0.2", "balanced-match": "^2.0.0", @@ -15895,15 +16491,28 @@ }, "node_modules/stylelint/node_modules/balanced-match": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/stylelint/node_modules/cosmiconfig": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } }, "node_modules/stylelint/node_modules/global-modules": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, + "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" }, @@ -15913,9 +16522,8 @@ }, "node_modules/stylelint/node_modules/global-prefix": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, + "license": "MIT", "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", @@ -15925,11 +16533,56 @@ "node": ">=6" } }, + "node_modules/stylelint/node_modules/globby": { + "version": "11.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stylelint/node_modules/hosted-git-info": { + "version": "4.1.0", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stylelint/node_modules/ini": { + "version": "1.3.8", + "dev": true, + "license": "ISC" + }, + "node_modules/stylelint/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/stylelint/node_modules/meow": { "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", @@ -15951,11 +16604,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/stylelint/node_modules/normalize-package-data": { + "version": "3.0.3", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/stylelint/node_modules/type-fest": { "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -15965,9 +16631,8 @@ }, "node_modules/stylelint/node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -15975,6 +16640,19 @@ "which": "bin/which" } }, + "node_modules/stylelint/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/stylelint/node_modules/yargs-parser": { + "version": "20.2.9", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, "node_modules/subarg": { "version": "1.0.0", "dev": true, @@ -15995,9 +16673,8 @@ }, "node_modules/supports-hyperlinks": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" @@ -16035,8 +16712,6 @@ }, "node_modules/svg-tags": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", "dev": true }, "node_modules/symbol-tree": { @@ -16044,11 +16719,11 @@ "license": "MIT" }, "node_modules/synckit": { - "version": "0.8.4", + "version": "0.8.5", "license": "MIT", "dependencies": { "@pkgr/utils": "^2.3.1", - "tslib": "^2.4.0" + "tslib": "^2.5.0" }, "engines": { "node": "^14.18.0 || >=16.0.0" @@ -16059,9 +16734,8 @@ }, "node_modules/table": { "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", @@ -16145,16 +16819,18 @@ } }, "node_modules/tar/node_modules/minipass": { - "version": "4.0.0", + "version": "4.0.1", "dev": true, "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, "engines": { "node": ">=8" } }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, "node_modules/term-size": { "version": "2.2.1", "license": "MIT", @@ -16296,6 +16972,13 @@ "node": ">=0.10.0" } }, + "node_modules/to-regex/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/toidentifier": { "version": "1.0.1", "license": "MIT", @@ -16425,8 +17108,7 @@ }, "node_modules/tslib": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "license": "0BSD" }, "node_modules/tsscmp": { "version": "1.0.6", @@ -16471,6 +17153,20 @@ "node": ">=8.0.0" } }, + "node_modules/tty-table/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/ttypescript": { "version": "1.5.15", "license": "MIT", @@ -16542,6 +17238,18 @@ "node": ">= 0.6" } }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/typescript": { "version": "4.9.4", "license": "Apache-2.0", @@ -16562,8 +17270,6 @@ }, "node_modules/ua-parser-js": { "version": "1.0.33", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.33.tgz", - "integrity": "sha512-RqshF7TPTE0XLYAqmjlu5cLLuGdKrNu9O1KLA/qp39QtbZwuzwv1dT46DZSopoUMsYgXpB3Cv8a03FI8b74oFQ==", "funding": [ { "type": "opencollective", @@ -16574,6 +17280,7 @@ "url": "https://paypal.me/faisalman" } ], + "license": "MIT", "engines": { "node": "*" } @@ -16606,12 +17313,37 @@ "version": "0.1.0", "license": "ISC" }, + "node_modules/uint8arraylist": { + "version": "2.4.3", + "dev": true, + "license": "Apache-2.0 OR MIT", + "dependencies": { + "uint8arrays": "^4.0.2" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, "node_modules/uint8arrays": { - "version": "3.1.1", + "version": "4.0.3", "dev": true, - "license": "MIT", + "license": "Apache-2.0 OR MIT", "dependencies": { - "multiformats": "^9.4.2" + "multiformats": "^11.0.0" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/uint8arrays/node_modules/multiformats": { + "version": "11.0.1", + "dev": true, + "license": "Apache-2.0 OR MIT", + "engines": { + "node": ">=16.0.0", + "npm": ">=7.0.0" } }, "node_modules/unbox-primitive": { @@ -16657,6 +17389,17 @@ "ieee754": "^1.1.13" } }, + "node_modules/undici": { + "version": "5.16.0", + "dev": true, + "license": "MIT", + "dependencies": { + "busboy": "^1.6.0" + }, + "engines": { + "node": ">=12.18" + } + }, "node_modules/union-value": { "version": "1.0.1", "license": "MIT", @@ -16670,6 +17413,22 @@ "node": ">=0.10.0" } }, + "node_modules/unique-filename": { + "version": "1.1.1", + "dev": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, "node_modules/universal-user-agent": { "version": "6.0.0", "license": "ISC" @@ -16728,6 +17487,13 @@ "node": ">=0.10.0" } }, + "node_modules/unset-value/node_modules/isobject": { + "version": "3.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/update-browserslist-db": { "version": "1.0.10", "dev": true, @@ -16816,9 +17582,8 @@ }, "node_modules/v8-compile-cache": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", @@ -16937,13 +17702,6 @@ "web-component-analyzer": "cli.js" } }, - "node_modules/web-component-analyzer/node_modules/camelcase": { - "version": "5.3.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/web-component-analyzer/node_modules/cliui": { "version": "6.0.0", "license": "ISC", @@ -16988,23 +17746,11 @@ "version": "3.9.10", "license": "Apache-2.0", "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/web-component-analyzer/node_modules/wrap-ansi": { - "version": "6.2.0", - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, "engines": { - "node": ">=8" + "node": ">=4.2.0" } }, "node_modules/web-component-analyzer/node_modules/y18n": { @@ -17031,17 +17777,6 @@ "node": ">=8" } }, - "node_modules/web-component-analyzer/node_modules/yargs-parser": { - "version": "18.1.3", - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/web-dev-server-plugin-lit-css": { "version": "2.0.2", "license": "ISC", @@ -17051,30 +17786,6 @@ "rollup-plugin-lit-css": "^4.0.1" } }, - "node_modules/web-dev-server-plugin-lit-css/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/web-dev-server-plugin-lit-css/node_modules/estree-walker": { - "version": "2.0.2", - "license": "MIT" - }, "node_modules/webidl-conversions": { "version": "7.0.0", "license": "BSD-2-Clause", @@ -17121,7 +17832,7 @@ } }, "node_modules/wherearewe": { - "version": "1.0.2", + "version": "2.0.1", "dev": true, "license": "Apache-2.0 OR MIT", "dependencies": { @@ -17207,9 +17918,12 @@ }, "node_modules/wireit": { "version": "0.9.4", - "resolved": "https://registry.npmjs.org/wireit/-/wireit-0.9.4.tgz", - "integrity": "sha512-QGDxePp956+tBXFAKt/1+cBwfUdCQ23+AcGnjmdTN/9GfkNqiHwfq6n7HyoYEx08tmN6K/faEozkLcMIllhVVg==", "dev": true, + "license": "Apache-2.0", + "workspaces": [ + "vscode-extension", + "website" + ], "dependencies": { "braces": "^3.0.2", "chokidar": "^3.5.3", @@ -17267,7 +17981,7 @@ } }, "node_modules/wrap-ansi": { - "version": "7.0.0", + "version": "6.2.0", "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", @@ -17275,10 +17989,7 @@ "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": ">=8" } }, "node_modules/wrappy": { @@ -17287,9 +17998,8 @@ }, "node_modules/write-file-atomic": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, + "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^3.0.7" @@ -17340,14 +18050,15 @@ } }, "node_modules/yallist": { - "version": "4.0.0", + "version": "3.1.1", + "dev": true, "license": "ISC" }, "node_modules/yaml": { - "version": "2.1.3", + "version": "1.10.2", "license": "ISC", "engines": { - "node": ">= 14" + "node": ">= 6" } }, "node_modules/yaml-eslint-parser": { @@ -17365,6 +18076,13 @@ "url": "https://github.com/sponsors/ota-meshi" } }, + "node_modules/yaml-eslint-parser/node_modules/yaml": { + "version": "2.2.1", + "license": "ISC", + "engines": { + "node": ">= 14" + } + }, "node_modules/yargs": { "version": "17.6.2", "license": "MIT", @@ -17382,23 +18100,21 @@ } }, "node_modules/yargs-parser": { - "version": "20.2.4", - "dev": true, + "version": "18.1.3", "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/yargs/node_modules/cliui": { - "version": "8.0.1", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "5.3.1", + "license": "MIT", "engines": { - "node": ">=12" + "node": ">=6" } }, "node_modules/yargs/node_modules/yargs-parser": { @@ -17457,14 +18173,13 @@ "create-app": "bin/main.js" } }, - "tools/create-element/node_modules/chalk": { - "version": "5.0.1", - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "tools/create-element/node_modules/cliui": { + "version": "7.0.4", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, "tools/create-element/node_modules/execa": { @@ -17561,6 +18276,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "tools/create-element/node_modules/wrap-ansi": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "tools/create-element/node_modules/yargs": { "version": "17.5.1", "license": "MIT", @@ -17708,8 +18438,22 @@ "node": ">=14" } }, + "tools/pfe-tools/node_modules/@esbuild/linux-x64": { + "version": "0.17.5", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, "tools/pfe-tools/node_modules/esbuild": { - "version": "0.17.4", + "version": "0.17.5", "hasInstallScript": true, "license": "MIT", "bin": { @@ -17719,28 +18463,28 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.17.4", - "@esbuild/android-arm64": "0.17.4", - "@esbuild/android-x64": "0.17.4", - "@esbuild/darwin-arm64": "0.17.4", - "@esbuild/darwin-x64": "0.17.4", - "@esbuild/freebsd-arm64": "0.17.4", - "@esbuild/freebsd-x64": "0.17.4", - "@esbuild/linux-arm": "0.17.4", - "@esbuild/linux-arm64": "0.17.4", - "@esbuild/linux-ia32": "0.17.4", - "@esbuild/linux-loong64": "0.17.4", - "@esbuild/linux-mips64el": "0.17.4", - "@esbuild/linux-ppc64": "0.17.4", - "@esbuild/linux-riscv64": "0.17.4", - "@esbuild/linux-s390x": "0.17.4", - "@esbuild/linux-x64": "0.17.4", - "@esbuild/netbsd-x64": "0.17.4", - "@esbuild/openbsd-x64": "0.17.4", - "@esbuild/sunos-x64": "0.17.4", - "@esbuild/win32-arm64": "0.17.4", - "@esbuild/win32-ia32": "0.17.4", - "@esbuild/win32-x64": "0.17.4" + "@esbuild/android-arm": "0.17.5", + "@esbuild/android-arm64": "0.17.5", + "@esbuild/android-x64": "0.17.5", + "@esbuild/darwin-arm64": "0.17.5", + "@esbuild/darwin-x64": "0.17.5", + "@esbuild/freebsd-arm64": "0.17.5", + "@esbuild/freebsd-x64": "0.17.5", + "@esbuild/linux-arm": "0.17.5", + "@esbuild/linux-arm64": "0.17.5", + "@esbuild/linux-ia32": "0.17.5", + "@esbuild/linux-loong64": "0.17.5", + "@esbuild/linux-mips64el": "0.17.5", + "@esbuild/linux-ppc64": "0.17.5", + "@esbuild/linux-riscv64": "0.17.5", + "@esbuild/linux-s390x": "0.17.5", + "@esbuild/linux-x64": "0.17.5", + "@esbuild/netbsd-x64": "0.17.5", + "@esbuild/openbsd-x64": "0.17.5", + "@esbuild/sunos-x64": "0.17.5", + "@esbuild/win32-arm64": "0.17.5", + "@esbuild/win32-ia32": "0.17.5", + "@esbuild/win32-x64": "0.17.5" } }, "tools/pfe-tools/node_modules/execa": { @@ -17843,10 +18587,10 @@ "version": "2.0.1" }, "@11ty/eleventy": { - "version": "2.0.0-canary.33", + "version": "2.0.0-canary.35", "requires": { "@11ty/dependency-tree": "^2.0.1", - "@11ty/eleventy-dev-server": "^1.0.1", + "@11ty/eleventy-dev-server": "^1.0.3", "@11ty/eleventy-utils": "^1.0.1", "@iarna/toml": "^2.2.5", "@sindresorhus/slugify": "^1.1.2", @@ -17888,7 +18632,7 @@ } }, "@11ty/eleventy-dev-server": { - "version": "1.0.1", + "version": "1.0.3", "requires": { "@11ty/eleventy-utils": "^1.0.1", "chokidar": "^3.5.3", @@ -17901,14 +18645,6 @@ "please-upgrade-node": "^3.2.0", "ssri": "^8.0.1", "ws": "^8.12.0" - }, - "dependencies": { - "ssri": { - "version": "8.0.1", - "requires": { - "minipass": "^3.1.1" - } - } } }, "@11ty/eleventy-plugin-directory-output": { @@ -17948,8 +18684,6 @@ }, "@actions/glob": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@actions/glob/-/glob-0.4.0.tgz", - "integrity": "sha512-+eKIGFhsFa4EBwaf/GMyzCdWrXWymGXfFmZU3FHQvYS8mPcHtTtZONbkcqqUMzw9mJ/pImEBFET1JNifhqGsAQ==", "dev": true, "requires": { "@actions/core": "^1.9.1", @@ -17982,27 +18716,27 @@ } }, "@babel/compat-data": { - "version": "7.20.5", + "version": "7.20.14", "dev": true }, "@babel/core": { - "version": "7.20.5", + "version": "7.20.12", "dev": true, "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.5", - "@babel/parser": "^7.20.5", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5", + "@babel/generator": "^7.20.7", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.20.11", + "@babel/helpers": "^7.20.7", + "@babel/parser": "^7.20.7", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.12", + "@babel/types": "^7.20.7", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", + "json5": "^2.2.2", "semver": "^6.3.0" }, "dependencies": { @@ -18013,10 +18747,10 @@ } }, "@babel/generator": { - "version": "7.20.5", + "version": "7.20.14", "dev": true, "requires": { - "@babel/types": "^7.20.5", + "@babel/types": "^7.20.7", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, @@ -18040,12 +18774,13 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.20.0", + "version": "7.20.7", "dev": true, "requires": { - "@babel/compat-data": "^7.20.0", + "@babel/compat-data": "^7.20.5", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", "semver": "^6.3.0" }, "dependencies": { @@ -18056,15 +18791,16 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.20.5", + "version": "7.20.12", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.19.1", + "@babel/helper-replace-supers": "^7.20.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/helper-split-export-declaration": "^7.18.6" } }, @@ -18088,10 +18824,10 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.18.9", + "version": "7.20.7", "dev": true, "requires": { - "@babel/types": "^7.18.9" + "@babel/types": "^7.20.7" } }, "@babel/helper-module-imports": { @@ -18102,7 +18838,7 @@ } }, "@babel/helper-module-transforms": { - "version": "7.20.2", + "version": "7.20.11", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", @@ -18110,9 +18846,9 @@ "@babel/helper-simple-access": "^7.20.2", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.10", + "@babel/types": "^7.20.7" } }, "@babel/helper-optimise-call-expression": { @@ -18127,14 +18863,15 @@ "dev": true }, "@babel/helper-replace-supers": { - "version": "7.19.1", + "version": "7.20.7", "dev": true, "requires": { "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.20.7", "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.7", + "@babel/types": "^7.20.7" } }, "@babel/helper-simple-access": { @@ -18144,6 +18881,13 @@ "@babel/types": "^7.20.2" } }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.20.0", + "dev": true, + "requires": { + "@babel/types": "^7.20.0" + } + }, "@babel/helper-split-export-declaration": { "version": "7.18.6", "dev": true, @@ -18162,12 +18906,12 @@ "dev": true }, "@babel/helpers": { - "version": "7.20.6", + "version": "7.20.13", "dev": true, "requires": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.20.13", + "@babel/types": "^7.20.7" } }, "@babel/highlight": { @@ -18216,7 +18960,7 @@ } }, "@babel/parser": { - "version": "7.20.5" + "version": "7.20.13" }, "@babel/plugin-syntax-import-assertions": { "version": "7.20.0", @@ -18233,10 +18977,10 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.20.2", + "version": "7.20.13", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.20.2", + "@babel/helper-create-class-features-plugin": "^7.20.12", "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-typescript": "^7.20.0" } @@ -18251,44 +18995,48 @@ } }, "@babel/runtime": { - "version": "7.20.6", + "version": "7.20.13", "requires": { "regenerator-runtime": "^0.13.11" } }, "@babel/template": { - "version": "7.18.10", + "version": "7.20.7", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" } }, "@babel/traverse": { - "version": "7.20.5", + "version": "7.20.13", "dev": true, "requires": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.5", + "@babel/generator": "^7.20.7", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.5", - "@babel/types": "^7.20.5", + "@babel/parser": "^7.20.13", + "@babel/types": "^7.20.7", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.20.5", + "version": "7.20.7", "requires": { "@babel/helper-string-parser": "^7.19.4", "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" } }, + "@chainsafe/is-ip": { + "version": "2.0.1", + "dev": true + }, "@changesets/apply-release-plan": { "version": "6.1.3", "requires": { @@ -18683,6 +19431,16 @@ "requires": { "@commitlint/types": "^17.4.0", "chalk": "^4.1.0" + }, + "dependencies": { + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } } }, "@commitlint/is-ignored": { @@ -18723,25 +19481,12 @@ "typescript": "^4.6.4" }, "dependencies": { - "argparse": { - "version": "2.0.1", - "dev": true - }, - "cosmiconfig": { - "version": "8.0.0", - "dev": true, - "requires": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" - } - }, - "js-yaml": { - "version": "4.1.0", + "chalk": { + "version": "4.1.2", "dev": true, "requires": { - "argparse": "^2.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } } } @@ -18832,6 +19577,16 @@ "dev": true, "requires": { "chalk": "^4.1.0" + }, + "dependencies": { + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } } }, "@cspotcode/source-map-support": { @@ -18850,9 +19605,7 @@ } }, "@csstools/selector-specificity": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.0.tgz", - "integrity": "sha512-zJ6hb3FDgBbO8d2e83vg6zq7tNvDqSq9RwdwfzJ8tdm9JHNvANq2fqwyRn6mlpUb7CwTs5ILdUrGwi9Gk4vY5w==", + "version": "2.1.1", "dev": true, "requires": {} }, @@ -18885,25 +19638,15 @@ "custom-elements-manifest": { "version": "1.0.0" }, - "globby": { - "version": "11.0.4", - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - } - }, "typescript": { "version": "4.3.5" } } }, "@esbuild/linux-x64": { - "version": "0.17.4", - "optional": true + "version": "0.16.17", + "optional": true, + "peer": true }, "@eslint-community/eslint-utils": { "version": "4.1.2", @@ -18912,7 +19655,7 @@ } }, "@eslint/eslintrc": { - "version": "1.4.0", + "version": "1.4.1", "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -18938,7 +19681,7 @@ "version": "2.0.1" }, "globals": { - "version": "13.19.0", + "version": "13.20.0", "requires": { "type-fest": "^0.20.2" } @@ -18964,12 +19707,12 @@ } }, "@floating-ui/core": { - "version": "1.1.0" + "version": "1.1.1" }, "@floating-ui/dom": { - "version": "1.1.0", + "version": "1.1.1", "requires": { - "@floating-ui/core": "^1.0.5" + "@floating-ui/core": "^1.1.0" } }, "@fortawesome/fontawesome-common-types": { @@ -19022,33 +19765,51 @@ "version": "1.0.1" }, "@improbable-eng/grpc-web": { - "version": "0.14.1", + "version": "0.15.0", "dev": true, "requires": { "browser-headers": "^0.4.1" } }, "@ipld/dag-cbor": { - "version": "7.0.3", + "version": "8.0.1", "dev": true, "requires": { "cborg": "^1.6.0", - "multiformats": "^9.5.4" + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1", + "dev": true + } } }, "@ipld/dag-json": { - "version": "8.0.11", + "version": "9.1.1", "dev": true, "requires": { "cborg": "^1.5.4", - "multiformats": "^9.5.4" + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1", + "dev": true + } } }, "@ipld/dag-pb": { - "version": "2.1.18", + "version": "3.0.2", "dev": true, "requires": { - "multiformats": "^9.5.4" + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1", + "dev": true + } } }, "@jridgewell/gen-mapping": { @@ -19077,11 +19838,11 @@ } }, "@jspm/core": { - "version": "2.0.0-beta.27", + "version": "2.0.0", "dev": true }, "@jspm/generator": { - "version": "1.0.0-beta.38", + "version": "1.0.2", "dev": true, "requires": { "@babel/core": "^7.18.2", @@ -19089,8 +19850,9 @@ "@babel/preset-typescript": "^7.17.2", "@jspm/core": "^2.0.0-beta.8", "@jspm/import-map": "^1.0.4", + "abort-controller": "^3.0.0", "es-module-lexer": "^1.0.3", - "ipfs-client": "^0.7.1", + "ipfs-client": "^0.9.2", "make-fetch-happen": "^8.0.3", "sver": "^1.8.3" } @@ -19108,8 +19870,103 @@ "path-to-regexp": "^6.2.1" } }, + "@libp2p/interface-connection": { + "version": "3.0.8", + "dev": true, + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "it-stream-types": "^1.0.4", + "uint8arraylist": "^2.1.2" + } + }, + "@libp2p/interface-keychain": { + "version": "1.0.8", + "dev": true, + "requires": { + "multiformats": "^10.0.0" + } + }, + "@libp2p/interface-peer-id": { + "version": "2.0.1", + "dev": true, + "requires": { + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1", + "dev": true + } + } + }, + "@libp2p/interface-peer-info": { + "version": "1.0.8", + "dev": true, + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0" + } + }, + "@libp2p/interface-pubsub": { + "version": "3.0.6", + "dev": true, + "requires": { + "@libp2p/interface-connection": "^3.0.0", + "@libp2p/interface-peer-id": "^2.0.0", + "@libp2p/interfaces": "^3.0.0", + "it-pushable": "^3.0.0", + "uint8arraylist": "^2.1.2" + } + }, + "@libp2p/interfaces": { + "version": "3.3.1", + "dev": true + }, + "@libp2p/logger": { + "version": "2.0.5", + "dev": true, + "requires": { + "@libp2p/interface-peer-id": "^2.0.0", + "debug": "^4.3.3", + "interface-datastore": "^7.0.0", + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1", + "dev": true + } + } + }, + "@libp2p/peer-id": { + "version": "1.1.18", + "dev": true, + "requires": { + "@libp2p/interface-peer-id": "^1.0.0", + "err-code": "^3.0.1", + "multiformats": "^10.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "1.1.2", + "dev": true, + "requires": { + "multiformats": "^10.0.0" + } + } + } + }, + "@lit-labs/ssr-dom-shim": { + "version": "1.0.0" + }, "@lit/reactive-element": { - "version": "1.5.0" + "version": "1.6.1", + "requires": { + "@lit-labs/ssr-dom-shim": "^1.0.0" + } }, "@manypkg/find-root": { "version": "1.1.0", @@ -19186,6 +20043,31 @@ "glob-to-regexp": "^0.3.0" } }, + "@multiformats/multiaddr": { + "version": "11.4.0", + "dev": true, + "requires": { + "@chainsafe/is-ip": "^2.0.1", + "dns-over-http-resolver": "^2.1.0", + "err-code": "^3.0.1", + "multiformats": "^11.0.0", + "uint8arrays": "^4.0.2", + "varint": "^6.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1", + "dev": true + } + } + }, + "@multiformats/multiaddr-to-uri": { + "version": "9.0.2", + "dev": true, + "requires": { + "@multiformats/multiaddr": "^11.0.0" + } + }, "@nodelib/fs.scandir": { "version": "2.1.5", "requires": { @@ -19203,10 +20085,26 @@ "fastq": "^1.6.0" } }, + "@npmcli/fs": { + "version": "1.1.1", + "dev": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "dev": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, "@octokit/auth-token": { - "version": "3.0.2", + "version": "3.0.3", "requires": { - "@octokit/types": "^8.0.0" + "@octokit/types": "^9.0.0" } }, "@octokit/core": { @@ -19220,63 +20118,50 @@ "@octokit/types": "^9.0.0", "before-after-hook": "^2.2.0", "universal-user-agent": "^6.0.0" - }, - "dependencies": { - "@octokit/openapi-types": { - "version": "16.0.0", - "dev": true - }, - "@octokit/types": { - "version": "9.0.0", - "dev": true, - "requires": { - "@octokit/openapi-types": "^16.0.0" - } - } } }, "@octokit/endpoint": { - "version": "7.0.3", + "version": "7.0.5", "requires": { - "@octokit/types": "^8.0.0", + "@octokit/types": "^9.0.0", "is-plain-object": "^5.0.0", "universal-user-agent": "^6.0.0" } }, "@octokit/graphql": { - "version": "5.0.4", + "version": "5.0.5", "requires": { "@octokit/request": "^6.0.0", - "@octokit/types": "^8.0.0", + "@octokit/types": "^9.0.0", "universal-user-agent": "^6.0.0" } }, "@octokit/openapi-types": { - "version": "14.0.0" + "version": "16.0.0" }, "@octokit/request": { - "version": "6.2.2", + "version": "6.2.3", "requires": { "@octokit/endpoint": "^7.0.0", "@octokit/request-error": "^3.0.0", - "@octokit/types": "^8.0.0", + "@octokit/types": "^9.0.0", "is-plain-object": "^5.0.0", "node-fetch": "^2.6.7", "universal-user-agent": "^6.0.0" } }, "@octokit/request-error": { - "version": "3.0.2", + "version": "3.0.3", "requires": { - "@octokit/types": "^8.0.0", + "@octokit/types": "^9.0.0", "deprecation": "^2.0.0", "once": "^1.4.0" } }, "@octokit/types": { - "version": "8.0.0", + "version": "9.0.0", "requires": { - "@octokit/openapi-types": "^14.0.0" + "@octokit/openapi-types": "^16.0.0" } }, "@open-wc/chai-dom-equals": { @@ -19347,8 +20232,13 @@ "yargs": "17.5.1" }, "dependencies": { - "chalk": { - "version": "5.0.1" + "cliui": { + "version": "7.0.4", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } }, "execa": { "version": "6.1.0", @@ -19391,6 +20281,14 @@ "strip-final-newline": { "version": "3.0.0" }, + "wrap-ansi": { + "version": "7.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, "yargs": { "version": "17.5.1", "requires": { @@ -19448,8 +20346,6 @@ }, "@patternfly/pfe-accordion": { "version": "2.0.0-next.12", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-accordion/-/pfe-accordion-2.0.0-next.12.tgz", - "integrity": "sha512-ZhzgtPSxTsogs0Rl0MsA/XjKWIFKfoK3vrWCmIEx2r4/ExnppJitvi7zmHwq2YRXqHzruK/cFz5FuyotDKH+Sw==", "dev": true, "requires": { "@patternfly/pfe-core": "^2.0.0-next.14", @@ -19459,8 +20355,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19484,8 +20378,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19507,8 +20399,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19530,8 +20420,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19543,8 +20431,6 @@ }, "@patternfly/pfe-button": { "version": "2.0.0-next.9", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-button/-/pfe-button-2.0.0-next.9.tgz", - "integrity": "sha512-v4CkhFhS0fT9mUA4H1JUol4ZpyooXIUaOvoufGor3H39kyM4MQTQrbFP59ym7miL4rsJH2lAoWjxnA1WwiWZFw==", "dev": true, "requires": { "@patternfly/pfe-core": "^2.0.0-next.13", @@ -19555,8 +20441,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19578,8 +20462,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19601,8 +20483,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19641,8 +20521,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19664,8 +20542,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19687,8 +20563,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19710,8 +20584,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19733,8 +20605,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19757,8 +20627,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19780,8 +20648,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19793,8 +20659,6 @@ }, "@patternfly/pfe-label": { "version": "1.0.0-next.7", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-label/-/pfe-label-1.0.0-next.7.tgz", - "integrity": "sha512-qfG5y89LiUZG/rukXXq8ZrUJb769oc7czUk3rxp+8OXlDn5XvnQ+LQkFU/OlH1t5XIXr/hSvqAstDbwktO3kpA==", "dev": true, "requires": { "@patternfly/pfe-button": "^2.0.0-next.9", @@ -19805,8 +20669,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19829,8 +20691,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19852,8 +20712,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19876,8 +20734,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19899,8 +20755,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19912,8 +20766,6 @@ }, "@patternfly/pfe-sass": { "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-sass/-/pfe-sass-2.0.0-next.5.tgz", - "integrity": "sha512-CL71AG2vFK6s8Pk4nZ4KDjzG7kU+XE980tM9Keul0kgi3B8Bg7Km+LPBb7qUm/TR4xRqll63uqvHT27hA3uCBw==", "dev": true, "requires": { "@patternfly/patternfly": "^4.183.1" @@ -19931,8 +20783,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19944,8 +20794,6 @@ }, "@patternfly/pfe-spinner": { "version": "2.0.0-next.6", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-spinner/-/pfe-spinner-2.0.0-next.6.tgz", - "integrity": "sha512-2pvFHvED7UCKan8cQFWlHtL3foiO1BNeAaFtx1BMME0Qx938gDi4/xYlvmjfmDYRqnv45utS/F4Wa7E2mniELA==", "dev": true, "requires": { "@patternfly/pfe-core": "^2.0.0-next.10", @@ -19954,8 +20802,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -19983,8 +20829,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -20006,8 +20850,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -20085,31 +20927,35 @@ "web-dev-server-plugin-lit-css": "^2.0.0" }, "dependencies": { + "@esbuild/linux-x64": { + "version": "0.17.5", + "optional": true + }, "esbuild": { - "version": "0.17.4", - "requires": { - "@esbuild/android-arm": "0.17.4", - "@esbuild/android-arm64": "0.17.4", - "@esbuild/android-x64": "0.17.4", - "@esbuild/darwin-arm64": "0.17.4", - "@esbuild/darwin-x64": "0.17.4", - "@esbuild/freebsd-arm64": "0.17.4", - "@esbuild/freebsd-x64": "0.17.4", - "@esbuild/linux-arm": "0.17.4", - "@esbuild/linux-arm64": "0.17.4", - "@esbuild/linux-ia32": "0.17.4", - "@esbuild/linux-loong64": "0.17.4", - "@esbuild/linux-mips64el": "0.17.4", - "@esbuild/linux-ppc64": "0.17.4", - "@esbuild/linux-riscv64": "0.17.4", - "@esbuild/linux-s390x": "0.17.4", - "@esbuild/linux-x64": "0.17.4", - "@esbuild/netbsd-x64": "0.17.4", - "@esbuild/openbsd-x64": "0.17.4", - "@esbuild/sunos-x64": "0.17.4", - "@esbuild/win32-arm64": "0.17.4", - "@esbuild/win32-ia32": "0.17.4", - "@esbuild/win32-x64": "0.17.4" + "version": "0.17.5", + "requires": { + "@esbuild/android-arm": "0.17.5", + "@esbuild/android-arm64": "0.17.5", + "@esbuild/android-x64": "0.17.5", + "@esbuild/darwin-arm64": "0.17.5", + "@esbuild/darwin-x64": "0.17.5", + "@esbuild/freebsd-arm64": "0.17.5", + "@esbuild/freebsd-x64": "0.17.5", + "@esbuild/linux-arm": "0.17.5", + "@esbuild/linux-arm64": "0.17.5", + "@esbuild/linux-ia32": "0.17.5", + "@esbuild/linux-loong64": "0.17.5", + "@esbuild/linux-mips64el": "0.17.5", + "@esbuild/linux-ppc64": "0.17.5", + "@esbuild/linux-riscv64": "0.17.5", + "@esbuild/linux-s390x": "0.17.5", + "@esbuild/linux-x64": "0.17.5", + "@esbuild/netbsd-x64": "0.17.5", + "@esbuild/openbsd-x64": "0.17.5", + "@esbuild/sunos-x64": "0.17.5", + "@esbuild/win32-arm64": "0.17.5", + "@esbuild/win32-ia32": "0.17.5", + "@esbuild/win32-x64": "0.17.5" } }, "execa": { @@ -20157,8 +21003,6 @@ }, "@patternfly/pfe-tooltip": { "version": "2.0.0-next.9", - "resolved": "https://registry.npmjs.org/@patternfly/pfe-tooltip/-/pfe-tooltip-2.0.0-next.9.tgz", - "integrity": "sha512-JHY70PnMrIKCxEzdiahJzmiBZmEpng7Nchai76rZsRmUg/v38/RnBSJ9KnJBKMeJXCxRF755jLy1lSFCprIzwA==", "dev": true, "requires": { "@patternfly/pfe-core": "^2.0.0-next.14", @@ -20167,8 +21011,6 @@ "dependencies": { "lit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.0.tgz", - "integrity": "sha512-ynSGsUYKSGN2weFQ1F3SZq0Ihlj+vr/3KAET//Yf8Tz86L7lZizlw9Px+ab5iN8Si4RkVoLqd9YtKQmjdyKHNg==", "dev": true, "requires": { "@lit/reactive-element": "^1.4.0", @@ -20190,10 +21032,10 @@ } }, "@playwright/test": { - "version": "1.29.0", + "version": "1.30.0", "requires": { "@types/node": "*", - "playwright-core": "1.29.0" + "playwright-core": "1.30.0" } }, "@protobufjs/aspromise": { @@ -20249,8 +21091,6 @@ }, "@rhds/elements": { "version": "1.0.0-beta.28", - "resolved": "https://registry.npmjs.org/@rhds/elements/-/elements-1.0.0-beta.28.tgz", - "integrity": "sha512-Xr4e1zsQvK2H3zCtYu1oEpXXE/8UgYfvM7Nijywap3By+S+whWIGXoEtzNbZ3Y/X3gb3yb5ca10AmgBTCi8cUg==", "dev": true, "requires": { "@patternfly/pfe-accordion": "^2.0.0-next.7", @@ -20283,13 +21123,13 @@ } }, "@rhds/tokens": { - "version": "1.0.0-beta.11", - "resolved": "https://registry.npmjs.org/@rhds/tokens/-/tokens-1.0.0-beta.11.tgz", - "integrity": "sha512-rtLpotUGeo/4nQpAt8z3C3pUC8lpUOL72XEG3dC52LYE6AHSkHKBPOZxM8WItUDwHVq3pL4UCNpljFy783y66w==", + "version": "1.0.0-beta.16", "dev": true, "requires": { + "@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0", + "highlight.js": "^11.7.0", "postcss-value-parser": "^4.2.0", - "stylelint": "^14.11.0" + "stylelint": "^14.16.1" } }, "@rollup/plugin-node-resolve": { @@ -20301,45 +21141,37 @@ "is-builtin-module": "^3.1.0", "is-module": "^1.0.0", "resolve": "^1.19.0" - } - }, - "@rollup/plugin-replace": { - "version": "5.0.2", - "requires": { - "@rollup/pluginutils": "^5.0.1", - "magic-string": "^0.27.0" }, "dependencies": { "@rollup/pluginutils": { - "version": "5.0.2", + "version": "3.1.0", "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" } }, - "estree-walker": { - "version": "2.0.2" + "@types/estree": { + "version": "0.0.39" }, - "magic-string": { - "version": "0.27.0", - "requires": { - "@jridgewell/sourcemap-codec": "^1.4.13" - } + "estree-walker": { + "version": "1.0.1" } } }, + "@rollup/plugin-replace": { + "version": "5.0.2", + "requires": { + "@rollup/pluginutils": "^5.0.1", + "magic-string": "^0.27.0" + } + }, "@rollup/pluginutils": { - "version": "3.1.0", + "version": "5.0.2", "requires": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" - }, - "dependencies": { - "@types/estree": { - "version": "0.0.39" - } + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" } }, "@sindresorhus/slugify": { @@ -20474,7 +21306,7 @@ "version": "0.7.0" }, "@types/eslint": { - "version": "8.4.10", + "version": "8.21.0", "requires": { "@types/estree": "*", "@types/json-schema": "*" @@ -20484,7 +21316,7 @@ "version": "1.0.0" }, "@types/express": { - "version": "4.17.15", + "version": "4.17.16", "requires": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.31", @@ -20493,7 +21325,7 @@ } }, "@types/express-serve-static-core": { - "version": "4.17.31", + "version": "4.17.33", "requires": { "@types/node": "*", "@types/qs": "*", @@ -20502,8 +21334,6 @@ }, "@types/glob": { "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.0.1.tgz", - "integrity": "sha512-8bVUjXZvJacUFkJXHdyZ9iH1Eaj5V7I8c4NdH5sQJsdXkqT4CA5Dhb4yb4VE/3asyx4L9ayZr1NIhTsWHczmMw==", "requires": { "@types/minimatch": "^5.1.2", "@types/node": "*" @@ -20586,10 +21416,6 @@ "version": "3.0.2", "peer": true }, - "@types/long": { - "version": "4.0.2", - "dev": true - }, "@types/markdown-it": { "version": "12.2.3", "peer": true, @@ -20621,12 +21447,10 @@ "version": "10.0.1" }, "@types/node": { - "version": "14.18.35" + "version": "18.11.18" }, "@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" + "version": "2.4.1" }, "@types/numeral": { "version": "2.0.2", @@ -20725,7 +21549,7 @@ } }, "@types/yargs": { - "version": "17.0.17", + "version": "17.0.22", "requires": { "@types/yargs-parser": "*" } @@ -20741,12 +21565,13 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "5.46.1", + "version": "5.50.0", "requires": { - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/type-utils": "5.46.1", - "@typescript-eslint/utils": "5.46.1", + "@typescript-eslint/scope-manager": "5.50.0", + "@typescript-eslint/type-utils": "5.50.0", + "@typescript-eslint/utils": "5.50.0", "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "natural-compare-lite": "^1.4.0", "regexpp": "^3.2.0", @@ -20755,53 +21580,66 @@ } }, "@typescript-eslint/parser": { - "version": "5.46.1", + "version": "5.50.0", "requires": { - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/typescript-estree": "5.46.1", + "@typescript-eslint/scope-manager": "5.50.0", + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/typescript-estree": "5.50.0", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.46.1", + "version": "5.50.0", "requires": { - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/visitor-keys": "5.46.1" + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/visitor-keys": "5.50.0" } }, "@typescript-eslint/type-utils": { - "version": "5.46.1", + "version": "5.50.0", "requires": { - "@typescript-eslint/typescript-estree": "5.46.1", - "@typescript-eslint/utils": "5.46.1", + "@typescript-eslint/typescript-estree": "5.50.0", + "@typescript-eslint/utils": "5.50.0", "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/types": { - "version": "5.46.1" + "version": "5.50.0" }, "@typescript-eslint/typescript-estree": { - "version": "5.46.1", + "version": "5.50.0", "requires": { - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/visitor-keys": "5.46.1", + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/visitor-keys": "5.50.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", "semver": "^7.3.7", "tsutils": "^3.21.0" + }, + "dependencies": { + "globby": { + "version": "11.1.0", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + } } }, "@typescript-eslint/utils": { - "version": "5.46.1", + "version": "5.50.0", "requires": { "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/typescript-estree": "5.46.1", + "@typescript-eslint/scope-manager": "5.50.0", + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/typescript-estree": "5.50.0", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0", "semver": "^7.3.7" @@ -20823,9 +21661,9 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.46.1", + "version": "5.50.0", "requires": { - "@typescript-eslint/types": "5.46.1", + "@typescript-eslint/types": "5.50.0", "eslint-visitor-keys": "^3.3.0" } }, @@ -20883,9 +21721,18 @@ "ws": "^7.4.2" }, "dependencies": { + "lru-cache": { + "version": "6.0.0", + "requires": { + "yallist": "^4.0.0" + } + }, "ws": { "version": "7.5.9", "requires": {} + }, + "yallist": { + "version": "4.0.0" } } }, @@ -20924,10 +21771,6 @@ "esbuild-windows-64": "0.14.54", "esbuild-windows-arm64": "0.14.54" } - }, - "esbuild-linux-64": { - "version": "0.14.54", - "optional": true } } }, @@ -20943,7 +21786,7 @@ } }, "@web/dev-server-rollup": { - "version": "0.3.19", + "version": "0.3.21", "requires": { "@rollup/plugin-node-resolve": "^13.0.4", "@web/dev-server-core": "^0.3.19", @@ -21075,6 +21918,13 @@ "abab": { "version": "2.0.6" }, + "abort-controller": { + "version": "3.0.0", + "dev": true, + "requires": { + "event-target-shim": "^5.0.0" + } + }, "accepts": { "version": "1.3.8", "requires": { @@ -21083,7 +21933,7 @@ } }, "acorn": { - "version": "8.8.1" + "version": "8.8.2" }, "acorn-globals": { "version": "6.0.0", @@ -21134,7 +21984,7 @@ } }, "ajv": { - "version": "8.11.2", + "version": "8.12.0", "requires": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -21190,14 +22040,16 @@ }, "dependencies": { "deep-equal": { - "version": "2.1.0", + "version": "2.2.0", "requires": { "call-bind": "^1.0.2", "es-get-iterator": "^1.1.2", "get-intrinsic": "^1.1.3", "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.1", "is-date-object": "^1.0.5", "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", "isarray": "^2.0.5", "object-is": "^1.1.5", "object-keys": "^1.1.1", @@ -21206,7 +22058,7 @@ "side-channel": "^1.0.4", "which-boxed-primitive": "^1.0.2", "which-collection": "^1.0.1", - "which-typed-array": "^1.1.8" + "which-typed-array": "^1.1.9" } }, "isarray": { @@ -21278,12 +22130,15 @@ "version": "3.2.4" }, "async-each": { - "version": "1.0.3", + "version": "1.0.5", "dev": true }, "asynckit": { "version": "0.4.0" }, + "at-least-node": { + "version": "1.0.0" + }, "atob": { "version": "2.1.2" }, @@ -21291,7 +22146,7 @@ "version": "1.0.5" }, "axe-core": { - "version": "4.6.1" + "version": "4.6.3" }, "axobject-query": { "version": "2.2.0" @@ -21336,6 +22191,9 @@ "requires": { "is-descriptor": "^1.0.0" } + }, + "isobject": { + "version": "3.0.1" } } }, @@ -21390,10 +22248,10 @@ } }, "blob-to-it": { - "version": "1.0.4", + "version": "2.0.0", "dev": true, "requires": { - "browser-readablestream-to-it": "^1.0.3" + "browser-readablestream-to-it": "^2.0.0" } }, "boolbase": { @@ -21426,17 +22284,17 @@ "version": "1.0.0" }, "browser-readablestream-to-it": { - "version": "1.0.3", + "version": "2.0.0", "dev": true }, "browserslist": { - "version": "4.21.4", + "version": "4.21.5", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" } }, "buffer": { @@ -21453,9 +22311,65 @@ "builtin-modules": { "version": "3.3.0" }, + "busboy": { + "version": "1.6.0", + "dev": true, + "requires": { + "streamsearch": "^1.1.0" + } + }, "bytes": { "version": "3.0.0" }, + "cacache": { + "version": "15.3.0", + "dev": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "glob": { + "version": "7.2.3", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "dev": true + } + } + }, "cache-base": { "version": "1.0.1", "requires": { @@ -21468,6 +22382,11 @@ "to-object-path": "^0.3.0", "union-value": "^1.0.0", "unset-value": "^1.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1" + } } }, "cache-content-type": { @@ -21515,7 +22434,7 @@ } }, "caniuse-lite": { - "version": "1.0.30001439", + "version": "1.0.30001450", "dev": true }, "capital-case": { @@ -21531,7 +22450,7 @@ "version": "1.6.3" }, "cborg": { - "version": "1.9.6", + "version": "1.10.0", "dev": true }, "cem-plugin-module-file-extensions": { @@ -21549,11 +22468,7 @@ } }, "chalk": { - "version": "4.1.2", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } + "version": "5.0.1" }, "change-case": { "version": "4.1.2", @@ -21640,7 +22555,7 @@ } }, "ci-info": { - "version": "3.7.0" + "version": "3.7.1" }, "class-utils": { "version": "0.3.6", @@ -21693,6 +22608,9 @@ "kind-of": "^5.0.0" } }, + "isobject": { + "version": "3.0.1" + }, "kind-of": { "version": "5.1.0" } @@ -21731,11 +22649,21 @@ } }, "cliui": { - "version": "7.0.4", + "version": "8.0.1", "requires": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", + "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "wrap-ansi": { + "version": "7.0.0", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } } }, "clone": { @@ -21751,14 +22679,6 @@ "qs": "^6.5.2", "raw-body": "^2.3.3", "type-is": "^1.6.16" - }, - "dependencies": { - "qs": { - "version": "6.11.0", - "requires": { - "side-channel": "^1.0.4" - } - } } }, "collection-visit": { @@ -21779,12 +22699,10 @@ }, "colord": { "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true }, "colorjs.io": { - "version": "0.4.2" + "version": "0.4.3" }, "combined-stream": { "version": "1.0.8", @@ -21854,7 +22772,7 @@ } }, "commander": { - "version": "9.4.1", + "version": "9.5.0", "dev": true }, "comment-parser": { @@ -21942,7 +22860,7 @@ } }, "content-type": { - "version": "1.0.4" + "version": "1.0.5" }, "conventional-changelog-angular": { "version": "5.0.13", @@ -21973,6 +22891,20 @@ "through2": "^4.0.0" }, "dependencies": { + "hosted-git-info": { + "version": "4.1.0", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "meow": { "version": "8.1.2", "dev": true, @@ -21990,9 +22922,27 @@ "yargs-parser": "^20.2.3" } }, + "normalize-package-data": { + "version": "3.0.3", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, "type-fest": { "version": "0.18.1", "dev": true + }, + "yallist": { + "version": "4.0.0", + "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "dev": true } } }, @@ -22018,19 +22968,25 @@ "dev": true }, "cosmiconfig": { - "version": "7.1.0", + "version": "8.0.0", "dev": true, "requires": { - "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "path-type": "^4.0.0" }, "dependencies": { - "yaml": { - "version": "1.10.2", + "argparse": { + "version": "2.0.1", "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } } } }, @@ -22181,6 +23137,10 @@ "isobject": "^3.0.1" } }, + "isobject": { + "version": "3.0.1", + "dev": true + }, "kind-of": { "version": "3.2.2", "dev": true, @@ -22388,6 +23348,27 @@ "version": "3.1.5", "requires": { "node-fetch": "2.6.7" + }, + "dependencies": { + "node-fetch": { + "version": "2.6.7", + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "tr46": { + "version": "0.0.3" + }, + "webidl-conversions": { + "version": "3.0.1" + }, + "whatwg-url": { + "version": "5.0.0", + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } } }, "cross-spawn": { @@ -22400,8 +23381,6 @@ }, "css-functions-list": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.1.0.tgz", - "integrity": "sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==", "dev": true }, "css-select": { @@ -22419,8 +23398,6 @@ }, "cssesc": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true }, "cssom": { @@ -22463,21 +23440,11 @@ "version": "2.0.0" }, "dag-jose": { - "version": "1.0.0", + "version": "3.0.1", "dev": true, "requires": { - "@ipld/dag-cbor": "^6.0.3", - "multiformats": "^9.0.2" - }, - "dependencies": { - "@ipld/dag-cbor": { - "version": "6.0.15", - "dev": true, - "requires": { - "cborg": "^1.5.4", - "multiformats": "^9.5.4" - } - } + "@ipld/dag-cbor": "^8.0.0", + "multiformats": "^10.0.1" } }, "dargs": { @@ -22535,7 +23502,7 @@ "version": "0.1.4" }, "deepmerge": { - "version": "4.2.2" + "version": "4.3.0" }, "defaults": { "version": "1.0.4", @@ -22563,6 +23530,11 @@ "requires": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1" + } } }, "delayed-stream": { @@ -22614,12 +23586,13 @@ } }, "dns-over-http-resolver": { - "version": "1.2.3", + "version": "2.1.1", "dev": true, "requires": { "debug": "^4.3.1", - "native-fetch": "^3.0.0", - "receptacle": "^1.3.2" + "native-fetch": "^4.0.2", + "receptacle": "^1.3.2", + "undici": "^5.12.0" } }, "doctrine": { @@ -22724,7 +23697,7 @@ "dev": true }, "element-internals-polyfill": { - "version": "1.1.20" + "version": "1.2.2" }, "eleventy-plugin-toc": { "version": "1.1.5", @@ -22793,24 +23766,30 @@ "version": "2.4.0" }, "es-abstract": { - "version": "1.20.5", + "version": "1.21.1", "requires": { + "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "function.prototype.name": "^1.1.5", "get-intrinsic": "^1.1.3", "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", "gopd": "^1.0.1", "has": "^1.0.3", "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", + "internal-slot": "^1.0.4", + "is-array-buffer": "^3.0.1", "is-callable": "^1.2.7", "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", "is-weakref": "^1.0.2", "object-inspect": "^1.12.2", "object-keys": "^1.1.1", @@ -22819,20 +23798,23 @@ "safe-regex-test": "^1.0.0", "string.prototype.trimend": "^1.0.6", "string.prototype.trimstart": "^1.0.6", - "unbox-primitive": "^1.0.2" + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" } }, "es-get-iterator": { - "version": "1.1.2", + "version": "1.1.3", "requires": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.0", - "has-symbols": "^1.0.1", - "is-arguments": "^1.1.0", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", "is-map": "^2.0.2", "is-set": "^2.0.2", - "is-string": "^1.0.5", - "isarray": "^2.0.5" + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" }, "dependencies": { "isarray": { @@ -22843,6 +23825,14 @@ "es-module-lexer": { "version": "1.1.0" }, + "es-set-tostringtag": { + "version": "2.0.1", + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } + }, "es-shim-unscopables": { "version": "1.0.0", "requires": { @@ -22858,37 +23848,36 @@ } }, "esbuild": { - "version": "0.15.18", + "version": "0.16.17", "peer": true, "requires": { - "@esbuild/android-arm": "0.15.18", - "@esbuild/linux-loong64": "0.15.18", - "esbuild-android-64": "0.15.18", - "esbuild-android-arm64": "0.15.18", - "esbuild-darwin-64": "0.15.18", - "esbuild-darwin-arm64": "0.15.18", - "esbuild-freebsd-64": "0.15.18", - "esbuild-freebsd-arm64": "0.15.18", - "esbuild-linux-32": "0.15.18", - "esbuild-linux-64": "0.15.18", - "esbuild-linux-arm": "0.15.18", - "esbuild-linux-arm64": "0.15.18", - "esbuild-linux-mips64le": "0.15.18", - "esbuild-linux-ppc64le": "0.15.18", - "esbuild-linux-riscv64": "0.15.18", - "esbuild-linux-s390x": "0.15.18", - "esbuild-netbsd-64": "0.15.18", - "esbuild-openbsd-64": "0.15.18", - "esbuild-sunos-64": "0.15.18", - "esbuild-windows-32": "0.15.18", - "esbuild-windows-64": "0.15.18", - "esbuild-windows-arm64": "0.15.18" + "@esbuild/android-arm": "0.16.17", + "@esbuild/android-arm64": "0.16.17", + "@esbuild/android-x64": "0.16.17", + "@esbuild/darwin-arm64": "0.16.17", + "@esbuild/darwin-x64": "0.16.17", + "@esbuild/freebsd-arm64": "0.16.17", + "@esbuild/freebsd-x64": "0.16.17", + "@esbuild/linux-arm": "0.16.17", + "@esbuild/linux-arm64": "0.16.17", + "@esbuild/linux-ia32": "0.16.17", + "@esbuild/linux-loong64": "0.16.17", + "@esbuild/linux-mips64el": "0.16.17", + "@esbuild/linux-ppc64": "0.16.17", + "@esbuild/linux-riscv64": "0.16.17", + "@esbuild/linux-s390x": "0.16.17", + "@esbuild/linux-x64": "0.16.17", + "@esbuild/netbsd-x64": "0.16.17", + "@esbuild/openbsd-x64": "0.16.17", + "@esbuild/sunos-x64": "0.16.17", + "@esbuild/win32-arm64": "0.16.17", + "@esbuild/win32-ia32": "0.16.17", + "@esbuild/win32-x64": "0.16.17" } }, "esbuild-linux-64": { - "version": "0.15.18", - "optional": true, - "peer": true + "version": "0.14.54", + "optional": true }, "esbuild-node-externals": { "version": "1.6.0", @@ -22898,13 +23887,13 @@ } }, "esbuild-plugin-lit-css": { - "version": "2.0.0", + "version": "2.0.1", "requires": { "@pwrs/lit-css": "^2.0.0" } }, "esbuild-plugin-minify-html-literals": { - "version": "1.0.1", + "version": "1.0.2", "requires": { "minify-html-literals": "^1.3.5" } @@ -22962,9 +23951,9 @@ } }, "eslint": { - "version": "8.30.0", + "version": "8.33.0", "requires": { - "@eslint/eslintrc": "^1.4.0", + "@eslint/eslintrc": "^1.4.1", "@humanwhocodes/config-array": "^0.11.8", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -23017,6 +24006,13 @@ "argparse": { "version": "2.0.1" }, + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, "glob-parent": { "version": "6.0.2", "requires": { @@ -23024,7 +24020,7 @@ } }, "globals": { - "version": "13.19.0", + "version": "13.20.0", "requires": { "type-fest": "^0.20.2" } @@ -23075,7 +24071,7 @@ } }, "minimatch": { - "version": "5.1.1", + "version": "5.1.6", "requires": { "brace-expansion": "^2.0.1" } @@ -23083,7 +24079,7 @@ } }, "eslint-plugin-jsonc": { - "version": "2.5.0", + "version": "2.6.0", "requires": { "eslint-utils": "^3.0.0", "jsonc-eslint-parser": "^2.0.4", @@ -23091,7 +24087,7 @@ } }, "eslint-plugin-lit": { - "version": "1.7.2", + "version": "1.8.2", "requires": { "parse5": "^6.0.1", "parse5-htmlparser2-tree-adapter": "^6.0.1", @@ -23227,7 +24223,7 @@ "version": "5.3.0" }, "estree-walker": { - "version": "1.0.1" + "version": "2.0.2" }, "esutils": { "version": "2.0.3" @@ -23235,6 +24231,10 @@ "etag": { "version": "1.8.1" }, + "event-target-shim": { + "version": "5.0.1", + "dev": true + }, "execa": { "version": "5.1.1", "dev": true, @@ -23282,13 +24282,6 @@ "kind-of": "^3.0.2" } }, - "isobject": { - "version": "2.1.0", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - }, "kind-of": { "version": "3.2.2", "dev": true, @@ -23381,12 +24374,10 @@ }, "fastest-levenshtein": { "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true }, "fastq": { - "version": "1.14.0", + "version": "1.15.0", "requires": { "reusify": "^1.0.4" } @@ -23438,7 +24429,7 @@ } }, "minimatch": { - "version": "5.1.1", + "version": "5.1.6", "requires": { "brace-expansion": "^2.0.1" } @@ -23691,6 +24682,10 @@ "isobject": "^3.0.1" } }, + "isobject": { + "version": "3.0.1", + "dev": true + }, "micromatch": { "version": "3.1.10", "dev": true, @@ -23825,7 +24820,7 @@ "version": "2.0.5" }, "get-intrinsic": { - "version": "1.1.3", + "version": "1.2.0", "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -23871,6 +24866,20 @@ "through2": "^4.0.0" }, "dependencies": { + "hosted-git-info": { + "version": "4.1.0", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "meow": { "version": "8.1.2", "dev": true, @@ -23888,9 +24897,27 @@ "yargs-parser": "^20.2.3" } }, + "normalize-package-data": { + "version": "3.0.3", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, "type-fest": { "version": "0.18.1", "dev": true + }, + "yallist": { + "version": "4.0.0", + "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "dev": true } } }, @@ -23911,7 +24938,7 @@ } }, "minimatch": { - "version": "5.1.1", + "version": "5.1.6", "requires": { "brace-expansion": "^2.0.1" } @@ -23967,12 +24994,6 @@ "dev": true, "requires": { "ini": "2.0.0" - }, - "dependencies": { - "ini": { - "version": "2.0.0", - "dev": true - } } }, "global-modules": { @@ -23995,6 +25016,10 @@ "which": "^1.2.14" }, "dependencies": { + "ini": { + "version": "1.3.8", + "dev": true + }, "which": { "version": "1.3.1", "dev": true, @@ -24008,24 +25033,28 @@ "version": "11.12.0", "dev": true }, + "globalthis": { + "version": "1.0.3", + "requires": { + "define-properties": "^1.1.3" + } + }, "globalyzer": { "version": "0.1.0" }, "globby": { - "version": "11.1.0", + "version": "11.0.4", "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", "slash": "^3.0.0" } }, "globjoin": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", - "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", "dev": true }, "globrex": { @@ -24096,6 +25125,9 @@ "get-intrinsic": "^1.1.1" } }, + "has-proto": { + "version": "1.0.1" + }, "has-symbols": { "version": "1.0.3" }, @@ -24111,6 +25143,11 @@ "get-value": "^2.0.6", "has-values": "^1.0.0", "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1" + } } }, "has-values": { @@ -24153,6 +25190,10 @@ "tslib": "^2.0.3" } }, + "highlight.js": { + "version": "11.7.0", + "dev": true + }, "homedir-polyfill": { "version": "1.0.3", "dev": true, @@ -24161,11 +25202,7 @@ } }, "hosted-git-info": { - "version": "4.1.0", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "version": "2.8.9" }, "html-encoding-sniffer": { "version": "3.0.0", @@ -24232,8 +25269,6 @@ }, "html-tags": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", - "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", "dev": true }, "htmlparser2": { @@ -24271,7 +25306,7 @@ } }, "http-cache-semantics": { - "version": "4.1.0", + "version": "4.1.1", "dev": true }, "http-equiv-refresh": { @@ -24330,7 +25365,7 @@ "version": "1.2.1" }, "ignore": { - "version": "5.2.2" + "version": "5.2.4" }, "import-fresh": { "version": "3.3.0", @@ -24346,8 +25381,6 @@ }, "import-lazy": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", "dev": true }, "imurmurhash": { @@ -24374,20 +25407,26 @@ "version": "2.0.4" }, "ini": { - "version": "1.3.8", + "version": "2.0.0", "dev": true }, "interface-datastore": { - "version": "6.1.1", + "version": "7.0.4", "dev": true, "requires": { - "interface-store": "^2.0.2", - "nanoid": "^3.0.2", - "uint8arrays": "^3.0.0" + "interface-store": "^3.0.0", + "nanoid": "^4.0.0", + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "nanoid": { + "version": "4.0.0", + "dev": true + } } }, "interface-store": { - "version": "2.0.2", + "version": "3.0.4", "dev": true }, "internal-slot": { @@ -24401,145 +25440,167 @@ "ip": { "version": "1.1.8" }, - "ip-regex": { - "version": "4.3.0", - "dev": true - }, "ipfs-client": { - "version": "0.7.9", + "version": "0.9.2", "dev": true, "requires": { - "ipfs-grpc-client": "^0.9.4", - "ipfs-http-client": "^56.0.3", + "ipfs-grpc-client": "^0.12.0", + "ipfs-http-client": "^59.0.0", "merge-options": "^3.0.4" } }, "ipfs-core-types": { - "version": "0.10.3", + "version": "0.13.0", "dev": true, "requires": { - "@ipld/dag-pb": "^2.1.3", - "interface-datastore": "^6.0.2", - "ipfs-unixfs": "^6.0.3", - "multiaddr": "^10.0.0", - "multiformats": "^9.5.1" + "@ipld/dag-pb": "^3.0.0", + "@libp2p/interface-keychain": "^1.0.3", + "@libp2p/interface-peer-id": "^1.0.4", + "@libp2p/interface-peer-info": "^1.0.2", + "@libp2p/interface-pubsub": "^3.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@types/node": "^18.0.0", + "interface-datastore": "^7.0.0", + "ipfs-unixfs": "^8.0.0", + "multiformats": "^10.0.0" + }, + "dependencies": { + "@libp2p/interface-peer-id": { + "version": "1.1.2", + "dev": true, + "requires": { + "multiformats": "^10.0.0" + } + } } }, "ipfs-core-utils": { - "version": "0.14.3", + "version": "0.17.0", "dev": true, "requires": { + "@libp2p/logger": "^2.0.0", + "@multiformats/multiaddr": "^11.0.0", + "@multiformats/multiaddr-to-uri": "^9.0.1", "any-signal": "^3.0.0", - "blob-to-it": "^1.0.1", - "browser-readablestream-to-it": "^1.0.1", - "debug": "^4.1.1", + "blob-to-it": "^2.0.0", + "browser-readablestream-to-it": "^2.0.0", "err-code": "^3.0.1", - "ipfs-core-types": "^0.10.3", - "ipfs-unixfs": "^6.0.3", + "ipfs-core-types": "^0.13.0", + "ipfs-unixfs": "^8.0.0", "ipfs-utils": "^9.0.6", - "it-all": "^1.0.4", - "it-map": "^1.0.4", - "it-peekable": "^1.0.2", + "it-all": "^2.0.0", + "it-map": "^2.0.0", + "it-peekable": "^2.0.0", "it-to-stream": "^1.0.0", "merge-options": "^3.0.4", - "multiaddr": "^10.0.0", - "multiaddr-to-uri": "^8.0.0", - "multiformats": "^9.5.1", - "nanoid": "^3.1.23", + "multiformats": "^10.0.0", + "nanoid": "^4.0.0", "parse-duration": "^1.0.0", "timeout-abort-controller": "^3.0.0", - "uint8arrays": "^3.0.0" + "uint8arrays": "^4.0.2" + }, + "dependencies": { + "nanoid": { + "version": "4.0.0", + "dev": true + } } }, "ipfs-grpc-client": { - "version": "0.9.4", + "version": "0.12.0", "dev": true, "requires": { - "@improbable-eng/grpc-web": "^0.14.0", + "@improbable-eng/grpc-web": "^0.15.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^1.1.10", + "@multiformats/multiaddr": "^11.0.0", "change-case": "^4.1.1", - "debug": "^4.1.1", "err-code": "^3.0.1", - "ipfs-core-types": "^0.10.3", - "ipfs-core-utils": "^0.14.3", - "ipfs-grpc-protocol": "^0.5.5", - "ipfs-unixfs": "^6.0.3", - "it-first": "^1.0.4", - "it-pushable": "^1.4.2", - "multiaddr": "^10.0.0", - "multiformats": "^9.5.1", - "p-defer": "^3.0.0", - "protobufjs": "^6.10.2", - "wherearewe": "^1.0.0", - "ws": "^7.3.1" - }, - "dependencies": { - "ws": { - "version": "7.5.9", - "dev": true, - "requires": {} - } + "ipfs-core-types": "^0.13.0", + "ipfs-core-utils": "^0.17.0", + "ipfs-grpc-protocol": "^0.7.0", + "ipfs-unixfs": "^8.0.0", + "it-first": "^2.0.0", + "it-pushable": "^3.0.0", + "multiformats": "^10.0.0", + "p-defer": "^4.0.0", + "protobufjs": "^7.0.0", + "uint8arrays": "^4.0.2", + "wherearewe": "^2.0.1", + "ws": "^8.5.0" } }, "ipfs-grpc-protocol": { - "version": "0.5.5", + "version": "0.7.0", "dev": true }, "ipfs-http-client": { - "version": "56.0.3", + "version": "59.0.0", "dev": true, "requires": { - "@ipld/dag-cbor": "^7.0.0", - "@ipld/dag-json": "^8.0.1", - "@ipld/dag-pb": "^2.1.3", + "@ipld/dag-cbor": "^8.0.0", + "@ipld/dag-json": "^9.0.0", + "@ipld/dag-pb": "^3.0.0", + "@libp2p/logger": "^2.0.0", + "@libp2p/peer-id": "^1.1.10", + "@multiformats/multiaddr": "^11.0.0", "any-signal": "^3.0.0", - "dag-jose": "^1.0.0", - "debug": "^4.1.1", + "dag-jose": "^3.0.1", "err-code": "^3.0.1", - "ipfs-core-types": "^0.10.3", - "ipfs-core-utils": "^0.14.3", + "ipfs-core-types": "^0.13.0", + "ipfs-core-utils": "^0.17.0", "ipfs-utils": "^9.0.6", - "it-first": "^1.0.6", - "it-last": "^1.0.4", + "it-first": "^2.0.0", + "it-last": "^2.0.0", "merge-options": "^3.0.4", - "multiaddr": "^10.0.0", - "multiformats": "^9.5.1", + "multiformats": "^10.0.0", "parse-duration": "^1.0.0", "stream-to-it": "^0.2.2", - "uint8arrays": "^3.0.0" + "uint8arrays": "^4.0.2" } }, "ipfs-unixfs": { - "version": "6.0.9", + "version": "8.0.0", "dev": true, "requires": { "err-code": "^3.0.1", - "protobufjs": "^6.10.2" + "protobufjs": "^7.0.0" } }, "ipfs-utils": { - "version": "9.0.9", + "version": "9.0.14", "dev": true, "requires": { "any-signal": "^3.0.0", + "browser-readablestream-to-it": "^1.0.0", "buffer": "^6.0.1", "electron-fetch": "^1.7.2", "err-code": "^3.0.1", "is-electron": "^2.2.0", "iso-url": "^1.1.5", + "it-all": "^1.0.4", "it-glob": "^1.0.1", "it-to-stream": "^1.0.0", "merge-options": "^3.0.4", "nanoid": "^3.1.20", "native-fetch": "^3.0.0", - "node-fetch": "https://registry.npmjs.org/@achingbrain/node-fetch/-/node-fetch-2.6.7.tgz", - "react-native-fetch-api": "^2.0.0", + "node-fetch": "^2.6.8", + "react-native-fetch-api": "^3.0.0", "stream-to-it": "^0.2.2" }, "dependencies": { - "node-fetch": { - "version": "https://registry.npmjs.org/@achingbrain/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-iTASGs+HTFK5E4ZqcMsHmeJ4zodyq8L38lZV33jwqcBJYoUt3HjN4+ot+O9/0b+ke8ddE7UgOtVuZN/OkV19/g==", + "browser-readablestream-to-it": { + "version": "1.0.3", + "dev": true + }, + "it-all": { + "version": "1.0.6", "dev": true + }, + "native-fetch": { + "version": "3.0.0", + "dev": true, + "requires": {} } } }, @@ -24566,6 +25627,14 @@ "has-tostringtag": "^1.0.0" } }, + "is-array-buffer": { + "version": "3.0.1", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-typed-array": "^1.1.10" + } + }, "is-arrayish": { "version": "0.2.1" }, @@ -24592,7 +25661,7 @@ "version": "1.1.6" }, "is-builtin-module": { - "version": "3.2.0", + "version": "3.2.1", "requires": { "builtin-modules": "^3.3.0" } @@ -24686,13 +25755,6 @@ "is-extglob": "^2.1.1" } }, - "is-ip": { - "version": "3.1.0", - "dev": true, - "requires": { - "ip-regex": "^4.0.0" - } - }, "is-json": { "version": "2.0.1" }, @@ -24846,7 +25908,11 @@ "dev": true }, "isobject": { - "version": "3.0.1" + "version": "2.1.0", + "dev": true, + "requires": { + "isarray": "1.0.0" + } }, "istanbul-lib-coverage": { "version": "3.2.0" @@ -24867,11 +25933,11 @@ } }, "it-all": { - "version": "1.0.6", + "version": "2.0.0", "dev": true }, "it-first": { - "version": "1.0.7", + "version": "2.0.0", "dev": true }, "it-glob": { @@ -24889,23 +25955,24 @@ } }, "it-last": { - "version": "1.0.6", + "version": "2.0.0", "dev": true }, "it-map": { - "version": "1.0.6", + "version": "2.0.0", "dev": true }, "it-peekable": { - "version": "1.0.3", + "version": "2.0.0", "dev": true }, "it-pushable": { - "version": "1.4.2", - "dev": true, - "requires": { - "fast-fifo": "^1.0.0" - } + "version": "3.1.2", + "dev": true + }, + "it-stream-types": { + "version": "1.0.5", + "dev": true }, "it-to-stream": { "version": "1.0.0", @@ -24917,6 +25984,12 @@ "p-defer": "^3.0.0", "p-fifo": "^1.0.0", "readable-stream": "^3.6.0" + }, + "dependencies": { + "p-defer": { + "version": "3.0.0", + "dev": true + } } }, "jake": { @@ -24926,10 +25999,19 @@ "chalk": "^4.0.2", "filelist": "^1.0.1", "minimatch": "^3.0.4" + }, + "dependencies": { + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } } }, "js-sdsl": { - "version": "4.2.0" + "version": "4.3.0" }, "js-stringify": { "version": "1.0.2" @@ -25076,8 +26158,6 @@ }, "known-css-properties": { "version": "0.26.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", - "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", "dev": true }, "koa": { @@ -25215,10 +26295,6 @@ "version": "6.0.1", "dev": true }, - "chalk": { - "version": "5.2.0", - "dev": true - }, "globby": { "version": "13.1.3", "dev": true, @@ -25302,11 +26378,11 @@ "version": "1.1.0" }, "lit": { - "version": "2.5.0", + "version": "2.6.1", "requires": { - "@lit/reactive-element": "^1.5.0", + "@lit/reactive-element": "^1.6.0", "lit-element": "^3.2.0", - "lit-html": "^2.5.0" + "lit-html": "^2.6.0" } }, "lit-analyzer": { @@ -25522,6 +26598,9 @@ "isobject": "^3.0.1" } }, + "isobject": { + "version": "3.0.1" + }, "micromatch": { "version": "3.1.10", "requires": { @@ -25578,7 +26657,7 @@ } }, "lit-html": { - "version": "2.5.0", + "version": "2.6.1", "requires": { "@types/trusted-types": "^2.0.2" } @@ -25597,14 +26676,6 @@ "js-yaml": "^3.13.0", "pify": "^4.0.1", "strip-bom": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "4.0.1" - }, - "strip-bom": { - "version": "3.0.0" - } } }, "locate-path": { @@ -25659,8 +26730,6 @@ }, "lodash.truncate": { "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, "lodash.uniq": { @@ -25677,12 +26746,6 @@ "requires": { "chalk": "^5.0.0", "is-unicode-supported": "^1.1.0" - }, - "dependencies": { - "chalk": { - "version": "5.2.0", - "dev": true - } } }, "log-update": { @@ -25692,20 +26755,10 @@ "cli-cursor": "^3.1.0", "slice-ansi": "^4.0.0", "wrap-ansi": "^6.2.0" - }, - "dependencies": { - "wrap-ansi": { - "version": "6.2.0", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - } } }, "long": { - "version": "4.0.0", + "version": "5.2.1", "dev": true }, "lower-case": { @@ -25716,18 +26769,19 @@ } }, "lru-cache": { - "version": "6.0.0", + "version": "5.1.1", + "dev": true, "requires": { - "yallist": "^4.0.0" + "yallist": "^3.0.2" } }, "luxon": { "version": "3.2.1" }, "magic-string": { - "version": "0.25.9", + "version": "0.27.0", "requires": { - "sourcemap-codec": "^1.4.8" + "@jridgewell/sourcemap-codec": "^1.4.13" } }, "make-dir": { @@ -25765,62 +26819,10 @@ "ssri": "^8.0.0" }, "dependencies": { - "@npmcli/fs": { - "version": "1.1.1", - "dev": true, - "requires": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "@npmcli/move-file": { - "version": "1.1.2", - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - } - }, "@tootallnate/once": { "version": "1.1.2", "dev": true }, - "cacache": { - "version": "15.3.0", - "dev": true, - "requires": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - } - }, - "glob": { - "version": "7.2.3", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, "http-proxy-agent": { "version": "4.0.1", "dev": true, @@ -25830,26 +26832,16 @@ "debug": "4" } }, - "ssri": { - "version": "8.0.1", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "unique-filename": { - "version": "1.1.1", + "lru-cache": { + "version": "6.0.0", "dev": true, "requires": { - "unique-slug": "^2.0.0" + "yallist": "^4.0.0" } }, - "unique-slug": { - "version": "2.0.2", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } + "yallist": { + "version": "4.0.0", + "dev": true } } }, @@ -25889,8 +26881,6 @@ }, "marked": { "version": "4.0.18", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.0.18.tgz", - "integrity": "sha512-wbLDJ7Zh0sqA0Vdg6aqlbT+yPxqLblpAZh1mK2+AO2twQkPywvvqQNfEPVwSSRjZ7dZcdeVBIAgiO7MMp3Dszw==", "dev": true }, "marky": { @@ -25902,8 +26892,6 @@ }, "mathml-tag-names": { "version": "2.1.3", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", - "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", "dev": true }, "maximatch": { @@ -25948,33 +26936,8 @@ "yargs-parser": "^18.1.3" }, "dependencies": { - "camelcase": { - "version": "5.3.1" - }, - "hosted-git-info": { - "version": "2.8.9" - }, - "normalize-package-data": { - "version": "2.5.0", - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "semver": { - "version": "5.7.1" - }, "type-fest": { "version": "0.13.1" - }, - "yargs-parser": { - "version": "18.1.3", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } } } }, @@ -26035,6 +26998,12 @@ "source-map": "~0.6.0" } }, + "magic-string": { + "version": "0.25.9", + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, "source-map": { "version": "0.6.1" } @@ -26066,6 +27035,11 @@ "version": "3.3.6", "requires": { "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0" + } } }, "minipass-collect": { @@ -26112,6 +27086,12 @@ "requires": { "minipass": "^3.0.0", "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "dev": true + } } }, "mixin-deep": { @@ -26132,11 +27112,14 @@ "requires": { "isobject": "^3.0.1" } + }, + "isobject": { + "version": "3.0.1" } } }, "mixme": { - "version": "0.5.4" + "version": "0.5.5" }, "mkdirp": { "version": "1.0.4" @@ -26148,32 +27131,13 @@ "version": "0.5.2" }, "morphdom": { - "version": "2.6.1" + "version": "2.7.0" }, "ms": { "version": "2.1.2" }, - "multiaddr": { - "version": "10.0.1", - "dev": true, - "requires": { - "dns-over-http-resolver": "^1.2.3", - "err-code": "^3.0.1", - "is-ip": "^3.1.0", - "multiformats": "^9.4.5", - "uint8arrays": "^3.0.0", - "varint": "^6.0.0" - } - }, - "multiaddr-to-uri": { - "version": "8.0.0", - "dev": true, - "requires": { - "multiaddr": "^10.0.0" - } - }, "multiformats": { - "version": "9.9.0", + "version": "10.0.3", "dev": true }, "multimatch": { @@ -26243,11 +27207,14 @@ "requires": { "isobject": "^3.0.1" } + }, + "isobject": { + "version": "3.0.1" } } }, "native-fetch": { - "version": "3.0.0", + "version": "4.0.2", "dev": true, "requires": {} }, @@ -26299,29 +27266,15 @@ "version": "1.0.5" }, "nise": { - "version": "5.1.3", + "version": "5.1.4", "requires": { "@sinonjs/commons": "^2.0.0", - "@sinonjs/fake-timers": "^7.0.4", + "@sinonjs/fake-timers": "^10.0.2", "@sinonjs/text-encoding": "^0.7.1", "just-extend": "^4.0.2", "path-to-regexp": "^1.7.0" }, "dependencies": { - "@sinonjs/fake-timers": { - "version": "7.1.2", - "requires": { - "@sinonjs/commons": "^1.7.0" - }, - "dependencies": { - "@sinonjs/commons": { - "version": "1.8.6", - "requires": { - "type-detect": "4.0.8" - } - } - } - }, "isarray": { "version": "0.0.1" }, @@ -26342,7 +27295,7 @@ } }, "node-fetch": { - "version": "2.6.7", + "version": "2.6.9", "requires": { "whatwg-url": "^5.0.0" }, @@ -26363,17 +27316,21 @@ } }, "node-releases": { - "version": "2.0.8", + "version": "2.0.9", "dev": true }, "normalize-package-data": { - "version": "3.0.3", - "dev": true, + "version": "2.5.0", "requires": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1" + } } }, "normalize-path": { @@ -26767,8 +27724,6 @@ }, "numeral": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz", - "integrity": "sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==", "dev": true }, "nunjucks": { @@ -26838,7 +27793,7 @@ } }, "object-inspect": { - "version": "1.12.2" + "version": "1.12.3" }, "object-is": { "version": "1.1.5", @@ -26854,6 +27809,11 @@ "version": "1.0.1", "requires": { "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1" + } } }, "object.assign": { @@ -26877,6 +27837,11 @@ "version": "1.3.0", "requires": { "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1" + } } }, "on-finished": { @@ -26929,7 +27894,7 @@ "version": "0.5.0" }, "p-defer": { - "version": "3.0.0", + "version": "4.0.0", "dev": true }, "p-fifo": { @@ -26938,6 +27903,12 @@ "requires": { "fast-fifo": "^1.0.0", "p-defer": "^3.0.0" + }, + "dependencies": { + "p-defer": { + "version": "3.0.0", + "dev": true + } } }, "p-filter": { @@ -27077,13 +28048,13 @@ "version": "0.1.1" }, "patch-package": { - "version": "6.5.0", + "version": "6.5.1", "requires": { "@yarnpkg/lockfile": "^1.1.0", "chalk": "^4.1.2", "cross-spawn": "^6.0.5", "find-yarn-workspace-root": "^2.0.0", - "fs-extra": "^7.0.1", + "fs-extra": "^9.0.0", "is-ci": "^2.0.0", "klaw-sync": "^6.0.0", "minimist": "^1.2.6", @@ -27095,6 +28066,13 @@ "yaml": "^1.10.2" }, "dependencies": { + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, "ci-info": { "version": "2.0.0" }, @@ -27108,6 +28086,15 @@ "which": "^1.2.9" } }, + "fs-extra": { + "version": "9.1.0", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, "glob": { "version": "7.2.3", "requires": { @@ -27125,6 +28112,13 @@ "ci-info": "^2.0.0" } }, + "jsonfile": { + "version": "6.1.0", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, "open": { "version": "7.4.2", "requires": { @@ -27156,14 +28150,14 @@ "slash": { "version": "2.0.0" }, + "universalify": { + "version": "2.0.0" + }, "which": { "version": "1.3.1", "requires": { "isexe": "^2.0.0" } - }, - "yaml": { - "version": "1.10.2" } } }, @@ -27205,6 +28199,9 @@ "picomatch": { "version": "2.3.1" }, + "pify": { + "version": "4.0.1" + }, "pkg-dir": { "version": "4.2.0", "requires": { @@ -27233,19 +28230,28 @@ } }, "playwright": { - "version": "1.29.0", + "version": "1.30.0", "requires": { - "playwright-core": "1.29.0" + "playwright-core": "1.30.0" } }, "playwright-core": { - "version": "1.29.0" + "version": "1.30.0" }, "playwright-lighthouse": { "version": "2.2.2", "requires": { "chalk": "^4.1.2", "ua-parser-js": "^1.0.2" + }, + "dependencies": { + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } } }, "please-upgrade-node": { @@ -27290,8 +28296,6 @@ }, "postcss": { "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", "dev": true, "requires": { "nanoid": "^3.3.4", @@ -27301,27 +28305,19 @@ }, "postcss-media-query-parser": { "version": "0.2.3", - "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", - "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", "dev": true }, "postcss-resolve-nested-selector": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", - "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", "dev": true }, "postcss-safe-parser": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", - "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", "dev": true, "requires": {} }, "postcss-selector-parser": { "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", "dev": true, "requires": { "cssesc": "^3.0.0", @@ -27330,8 +28326,6 @@ }, "postcss-value-parser": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, "posthtml": { @@ -27420,7 +28414,7 @@ "dev": true }, "prettier": { - "version": "2.8.1" + "version": "2.8.3" }, "printj": { "version": "1.3.1", @@ -27488,7 +28482,7 @@ } }, "protobufjs": { - "version": "6.11.3", + "version": "7.2.0", "dev": true, "requires": { "@protobufjs/aspromise": "^1.1.2", @@ -27501,9 +28495,8 @@ "@protobufjs/path": "^1.1.2", "@protobufjs/pool": "^1.1.0", "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", "@types/node": ">=13.7.0", - "long": "^4.0.0" + "long": "^5.0.0" } }, "proxy-from-env": { @@ -27614,7 +28607,7 @@ } }, "punycode": { - "version": "2.1.1" + "version": "2.3.0" }, "puppeteer-core": { "version": "13.7.0", @@ -27646,6 +28639,12 @@ "version": "1.5.1", "dev": true }, + "qs": { + "version": "6.11.0", + "requires": { + "side-channel": "^1.0.4" + } + }, "querystringify": { "version": "2.2.0" }, @@ -27685,16 +28684,20 @@ } }, "react-native-fetch-api": { - "version": "2.0.0", + "version": "3.0.0", "dev": true, "requires": { "p-defer": "^3.0.0" + }, + "dependencies": { + "p-defer": { + "version": "3.0.0", + "dev": true + } } }, "read-pkg": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "requires": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", @@ -27702,38 +28705,13 @@ "type-fest": "^0.6.0" }, "dependencies": { - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, "type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + "version": "0.6.0" } } }, "read-pkg-up": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "requires": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", @@ -27742,8 +28720,6 @@ "dependencies": { "find-up": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "requires": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -27751,24 +28727,18 @@ }, "locate-path": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "requires": { "p-locate": "^4.1.0" } }, "p-locate": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "requires": { "p-limit": "^2.2.0" } }, "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + "version": "0.8.1" } } }, @@ -27779,14 +28749,6 @@ "js-yaml": "^3.6.1", "pify": "^4.0.1", "strip-bom": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "4.0.1" - }, - "strip-bom": { - "version": "3.0.0" - } } }, "readable-stream": { @@ -27900,6 +28862,9 @@ "requires": { "isobject": "^3.0.1" } + }, + "isobject": { + "version": "3.0.1" } } }, @@ -27953,6 +28918,14 @@ "typical": "^7.1.1" }, "dependencies": { + "chalk": { + "version": "4.1.2", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, "command-line-args": { "version": "5.2.1", "dev": true, @@ -28032,6 +29005,10 @@ "requires": { "ini": "^1.3.4" } + }, + "ini": { + "version": "1.3.8", + "dev": true } } }, @@ -28119,19 +29096,6 @@ "requires": { "@pwrs/lit-css": "^2.0.0", "@rollup/pluginutils": "^5.0.2" - }, - "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "estree-walker": { - "version": "2.0.2" - } } }, "run-parallel": { @@ -28177,6 +29141,17 @@ "version": "7.3.8", "requires": { "lru-cache": "^6.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0" + } } }, "semver-compare": { @@ -28208,6 +29183,9 @@ "requires": { "isobject": "^3.0.1" } + }, + "isobject": { + "version": "3.0.1" } } }, @@ -28224,7 +29202,7 @@ "version": "3.0.0" }, "shell-quote": { - "version": "1.7.4", + "version": "1.8.0", "dev": true }, "side-channel": { @@ -28281,9 +29259,6 @@ "yargs": "^15.1.0" }, "dependencies": { - "camelcase": { - "version": "5.3.1" - }, "cliui": { "version": "6.0.0", "requires": { @@ -28311,14 +29286,6 @@ "p-limit": "^2.2.0" } }, - "wrap-ansi": { - "version": "6.2.0", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, "y18n": { "version": "4.0.3" }, @@ -28337,13 +29304,6 @@ "y18n": "^4.0.0", "yargs-parser": "^18.1.2" } - }, - "yargs-parser": { - "version": "18.1.3", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } } } }, @@ -28440,6 +29400,9 @@ "requires": { "is-descriptor": "^1.0.0" } + }, + "isobject": { + "version": "3.0.1" } } }, @@ -28485,8 +29448,6 @@ }, "source-map-js": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true }, "source-map-resolve": { @@ -28591,6 +29552,9 @@ "requires": { "isobject": "^3.0.1" } + }, + "isobject": { + "version": "3.0.1" } } }, @@ -28604,6 +29568,12 @@ "sprintf-js": { "version": "1.0.3" }, + "ssri": { + "version": "8.0.1", + "requires": { + "minipass": "^3.1.1" + } + }, "static-extend": { "version": "0.1.2", "requires": { @@ -28661,6 +29631,12 @@ "statuses": { "version": "2.0.1" }, + "stop-iteration-iterator": { + "version": "1.0.0", + "requires": { + "internal-slot": "^1.0.4" + } + }, "stream-read-all": { "version": "3.0.1", "dev": true @@ -28678,6 +29654,10 @@ "mixme": "^0.5.1" } }, + "streamsearch": { + "version": "1.1.0", + "dev": true + }, "string_decoder": { "version": "1.3.0", "requires": { @@ -28722,6 +29702,9 @@ "ansi-regex": "^5.0.1" } }, + "strip-bom": { + "version": "3.0.0" + }, "strip-bom-string": { "version": "1.0.0" }, @@ -28743,14 +29726,10 @@ }, "style-search": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", "dev": true }, "stylelint": { "version": "14.16.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", - "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", "dev": true, "requires": { "@csstools/selector-specificity": "^2.0.2", @@ -28795,14 +29774,21 @@ "dependencies": { "balanced-match": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", "dev": true }, + "cosmiconfig": { + "version": "7.1.0", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, "global-modules": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "requires": { "global-prefix": "^3.0.0" @@ -28810,8 +29796,6 @@ }, "global-prefix": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, "requires": { "ini": "^1.3.5", @@ -28819,10 +29803,38 @@ "which": "^1.3.1" } }, + "globby": { + "version": "11.1.0", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "hosted-git-info": { + "version": "4.1.0", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "ini": { + "version": "1.3.8", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "meow": { "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, "requires": { "@types/minimist": "^1.2.0", @@ -28839,20 +29851,34 @@ "yargs-parser": "^20.2.3" } }, + "normalize-package-data": { + "version": "3.0.3", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, "type-fest": { "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true }, "which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" } + }, + "yallist": { + "version": "4.0.0", + "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "dev": true } } }, @@ -28871,8 +29897,6 @@ }, "supports-hyperlinks": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, "requires": { "has-flag": "^4.0.0", @@ -28898,24 +29922,20 @@ }, "svg-tags": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", "dev": true }, "symbol-tree": { "version": "3.2.4" }, "synckit": { - "version": "0.8.4", + "version": "0.8.5", "requires": { "@pkgr/utils": "^2.3.1", - "tslib": "^2.4.0" + "tslib": "^2.5.0" } }, "table": { "version": "6.8.1", - "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", - "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", "dev": true, "requires": { "ajv": "^8.0.1", @@ -28955,11 +29975,12 @@ }, "dependencies": { "minipass": { + "version": "4.0.1", + "dev": true + }, + "yallist": { "version": "4.0.0", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } + "dev": true } } }, @@ -29071,6 +30092,9 @@ "requires": { "isobject": "^3.0.1" } + }, + "isobject": { + "version": "3.0.1" } } }, @@ -29151,9 +30175,7 @@ "version": "1.0.7" }, "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.5.0" }, "tsscmp": { "version": "1.0.6" @@ -29179,6 +30201,15 @@ "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1", "yargs": "^17.1.1" + }, + "dependencies": { + "chalk": { + "version": "4.1.2", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } } }, "ttypescript": { @@ -29216,6 +30247,14 @@ "mime-types": "~2.1.24" } }, + "typed-array-length": { + "version": "1.0.4", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, "typescript": { "version": "4.9.4" }, @@ -29223,9 +30262,7 @@ "version": "4.0.0" }, "ua-parser-js": { - "version": "1.0.33", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.33.tgz", - "integrity": "sha512-RqshF7TPTE0XLYAqmjlu5cLLuGdKrNu9O1KLA/qp39QtbZwuzwv1dT46DZSopoUMsYgXpB3Cv8a03FI8b74oFQ==" + "version": "1.0.33" }, "uc.micro": { "version": "1.0.6" @@ -29239,11 +30276,24 @@ "uhyphen": { "version": "0.1.0" }, + "uint8arraylist": { + "version": "2.4.3", + "dev": true, + "requires": { + "uint8arrays": "^4.0.2" + } + }, "uint8arrays": { - "version": "3.1.1", + "version": "4.0.3", "dev": true, "requires": { - "multiformats": "^9.4.2" + "multiformats": "^11.0.0" + }, + "dependencies": { + "multiformats": { + "version": "11.0.1", + "dev": true + } } }, "unbox-primitive": { @@ -29271,6 +30321,13 @@ } } }, + "undici": { + "version": "5.16.0", + "dev": true, + "requires": { + "busboy": "^1.6.0" + } + }, "union-value": { "version": "1.0.1", "requires": { @@ -29280,6 +30337,20 @@ "set-value": "^2.0.1" } }, + "unique-filename": { + "version": "1.1.1", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, "universal-user-agent": { "version": "6.0.0" }, @@ -29314,6 +30385,9 @@ }, "has-values": { "version": "0.1.4" + }, + "isobject": { + "version": "3.0.1" } } }, @@ -29373,8 +30447,6 @@ }, "v8-compile-cache": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", "dev": true }, "v8-compile-cache-lib": { @@ -29462,9 +30534,6 @@ "yargs": "^15.3.1" }, "dependencies": { - "camelcase": { - "version": "5.3.1" - }, "cliui": { "version": "6.0.0", "requires": { @@ -29495,14 +30564,6 @@ "typescript": { "version": "3.9.10" }, - "wrap-ansi": { - "version": "6.2.0", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, "y18n": { "version": "4.0.3" }, @@ -29521,13 +30582,6 @@ "y18n": "^4.0.0", "yargs-parser": "^18.1.2" } - }, - "yargs-parser": { - "version": "18.1.3", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } } } }, @@ -29537,19 +30591,6 @@ "@rollup/pluginutils": "^5.0.2", "@web/dev-server-rollup": "^0.3.17", "rollup-plugin-lit-css": "^4.0.1" - }, - "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "estree-walker": { - "version": "2.0.2" - } } }, "webidl-conversions": { @@ -29580,7 +30621,7 @@ } }, "wherearewe": { - "version": "1.0.2", + "version": "2.0.1", "dev": true, "requires": { "is-electron": "^2.2.0" @@ -29634,8 +30675,6 @@ }, "wireit": { "version": "0.9.4", - "resolved": "https://registry.npmjs.org/wireit/-/wireit-0.9.4.tgz", - "integrity": "sha512-QGDxePp956+tBXFAKt/1+cBwfUdCQ23+AcGnjmdTN/9GfkNqiHwfq6n7HyoYEx08tmN6K/faEozkLcMIllhVVg==", "dev": true, "requires": { "braces": "^3.0.2", @@ -29673,7 +30712,7 @@ } }, "wrap-ansi": { - "version": "7.0.0", + "version": "6.2.0", "requires": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -29685,8 +30724,6 @@ }, "write-file-atomic": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, "requires": { "imurmurhash": "^0.1.4", @@ -29710,10 +30747,11 @@ "version": "5.0.8" }, "yallist": { - "version": "4.0.0" + "version": "3.1.1", + "dev": true }, "yaml": { - "version": "2.1.3" + "version": "1.10.2" }, "yaml-eslint-parser": { "version": "1.1.0", @@ -29721,6 +30759,11 @@ "eslint-visitor-keys": "^3.0.0", "lodash": "^4.17.21", "yaml": "^2.0.0" + }, + "dependencies": { + "yaml": { + "version": "2.2.1" + } } }, "yargs": { @@ -29735,22 +30778,22 @@ "yargs-parser": "^21.1.1" }, "dependencies": { - "cliui": { - "version": "8.0.1", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, "yargs-parser": { "version": "21.1.1" } } }, "yargs-parser": { - "version": "20.2.4", - "dev": true + "version": "18.1.3", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1" + } + } }, "yauzl": { "version": "2.10.0", diff --git a/scripts/bundle.js b/scripts/bundle.js index a4e68a4d50..91a62c7595 100755 --- a/scripts/bundle.js +++ b/scripts/bundle.js @@ -1,41 +1,62 @@ #!/usr/bin/env node +/* eslint-env node */ import { build } from 'esbuild'; - +import { promisify } from 'node:util'; +import { join } from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { litCssPlugin } from 'esbuild-plugin-lit-css'; +import Glob from 'glob'; import CleanCSS from 'clean-css'; -import { litCssPlugin } from 'esbuild-plugin-lit-css'; +const glob = promisify(Glob); + +const resolveDir = join(fileURLToPath(import.meta.url), '../../elements'); +const entryPoints = (await glob('./pf-*/pf-*.ts', { cwd: resolveDir })).map(x => x.replace('.ts', '.js')); +const contents = entryPoints.map(x => `export * from '${x}';`).join('\n'); const cleanCSS = new CleanCSS({ sourceMap: true, returnPromise: true, }); -await build({ - entryPoints: ['elements/pfe.ts'], - format: 'esm', - outfile: 'elements/pfe.min.js', - allowOverwrite: true, - treeShaking: true, - legalComments: 'linked', - logLevel: 'info', - sourcemap: true, - bundle: true, - minify: true, - minifyWhitespace: true, - - external: [ - '@patternfly*', - 'lit', - 'tslib', - '@floating-ui*' - ], - - plugins: [ - litCssPlugin({ - filter: /\.css$/, - transform: source => cleanCSS.minify(source).then(x => x.styles) - }), - ], -}); - - +export async function bundle() { + await build({ + stdin: { + contents, + loader: 'ts', + resolveDir, + }, + format: 'esm', + outfile: 'elements/pfe.min.js', + allowOverwrite: true, + treeShaking: true, + legalComments: 'linked', + logLevel: 'info', + sourcemap: true, + bundle: true, + minify: true, + minifyWhitespace: true, + + external: [ + '@patternfly*', + 'lit', + 'tslib', + '@floating-ui*' + ], + + plugins: [ + litCssPlugin({ + filter: /\.css$/, + transform: source => cleanCSS.minify(source).then(x => x.styles) + }), + ], + }); +} + +if (process.argv.at(1) === import.meta.url) { + try { + await bundle(); + } catch { + process.exit(1); + } +}