From b3ff1bd671584770bd3493956123bb8884674378 Mon Sep 17 00:00:00 2001 From: biodiscus Date: Tue, 3 Dec 2024 14:52:04 +0100 Subject: [PATCH] feat: add support the Markdown `*.md` files in the template --- CHANGELOG.md | 24 +- README.md | 2 + examples/markdown-to-html/README.md | 29 + examples/markdown-to-html/package-lock.json | 4875 +++++++++++++++++ examples/markdown-to-html/package.json | 28 + .../markdown-to-html/src/images/favicon.ico | Bin 0 -> 959 bytes .../markdown-to-html/src/images/plumber.webp | Bin 0 -> 6692 bytes .../markdown-to-html/src/styles/style.css | 15 + examples/markdown-to-html/src/views/index.hbs | 20 + .../src/views/markdown/code.md | 145 + .../src/views/markdown/demo.md | 214 + examples/markdown-to-html/webpack.config.js | 104 + package-lock.json | 18 +- package.json | 7 +- src/Common/FileUtils.js | 4 + src/Common/Helpers.js | 18 + src/Loader/PreprocessorFilters/Exeptions.js | 85 + .../highlight/adapter.js | 22 +- .../PreprocessorFilters/highlight/index.js | 70 + .../highlight/parser.js | 0 .../highlight/prismjs.js | 8 +- .../extensions/GitHubAlertsExtension.js | 57 + .../PreprocessorFilters/markdown/index.js | 119 + src/Loader/Preprocessors/Ejs/index.js | 25 + src/Loader/Preprocessors/Eta/index.js | 31 +- .../Handlebars/filters/markdown/index.js | 13 + .../Handlebars/helpers/include.js | 29 +- src/Loader/Preprocessors/Pug/Utils.js | 13 +- .../Preprocessors/Pug/filters/highlight.js | 97 +- .../Preprocessors/Pug/filters/markdown.js | 108 +- src/Loader/Utils.js | 8 + src/Loader/config.js | 2 +- .../ejs-include-md/expected/code.html | 30 + .../ejs-include-md/expected/demo.html | 172 + .../expected/img/plumber.6c89dfc3.webp | Bin 0 -> 6692 bytes .../ejs-include-md/expected/style.css | 17 + .../ejs-include-md/src/footer.html | 1 + .../ejs-include-md/src/index.ejs | 17 + .../ejs-include-md/src/markdown/code.md | 17 + .../ejs-include-md/src/markdown/demo.md | 171 + .../ejs-include-md/src/style.css | 17 + .../ejs-include-md/webpack.config.js | 56 + .../eta-include-md/expected/code.html | 28 + .../eta-include-md/expected/demo.html | 170 + .../expected/img/plumber.6c89dfc3.webp | Bin 0 -> 6692 bytes .../eta-include-md/expected/style.css | 17 + .../eta-include-md/src/footer.html | 1 + .../eta-include-md/src/index.html | 17 + .../eta-include-md/src/markdown/code.md | 17 + .../eta-include-md/src/markdown/demo.md | 171 + .../eta-include-md/src/style.css | 17 + .../eta-include-md/webpack.config.js | 55 + .../handlebars-include-md/expected/code.html | 29 + .../handlebars-include-md/expected/demo.html | 171 + .../expected/img/plumber.6c89dfc3.webp | Bin 0 -> 6692 bytes .../handlebars-include-md/expected/style.css | 17 + .../handlebars-include-md/src/index.hbs | 16 + .../src/markdown/code.md | 17 + .../src/markdown/demo.md | 171 + .../handlebars-include-md/src/style.css | 17 + .../handlebars-include-md/webpack.config.js | 63 + .../_pug/filter-highlight/webpack.config.js | 11 +- .../expected/output1/index.html | 43 +- .../expected/output2/index.html | 33 +- test/cases/_pug/filter-markdown/src/index.pug | 23 +- test/cases/_pug/filter-markdown/src/readme.md | 33 +- .../_pug/filter-markdown/webpack.config.js | 21 +- .../webpack.config.js | 10 +- .../fixtures/images/octocats/baracktocat.webp | Bin 0 -> 6244 bytes .../images/octocats/constructocat2.webp | Bin 0 -> 5090 bytes test/fixtures/images/octocats/filmtocat.png | Bin 0 -> 9899 bytes test/fixtures/images/octocats/hubot.webp | Bin 0 -> 4872 bytes .../fixtures/images/octocats/inspectocat.webp | Bin 0 -> 4884 bytes test/fixtures/images/octocats/labtocat.webp | Bin 0 -> 5614 bytes test/fixtures/images/octocats/megacat.webp | Bin 0 -> 6680 bytes test/fixtures/images/octocats/original.png | Bin 0 -> 6220 bytes test/fixtures/images/octocats/plumber.webp | Bin 0 -> 6692 bytes test/fixtures/images/octocats/robotocat.webp | Bin 0 -> 3524 bytes test/fixtures/images/octocats/setuptocat.webp | Bin 0 -> 4410 bytes test/fixtures/images/octocats/socialite.webp | Bin 0 -> 5222 bytes test/integration-pug.test.js | 20 +- test/preprocessor.test.js | 4 + 82 files changed, 7606 insertions(+), 274 deletions(-) create mode 100644 examples/markdown-to-html/README.md create mode 100644 examples/markdown-to-html/package-lock.json create mode 100644 examples/markdown-to-html/package.json create mode 100644 examples/markdown-to-html/src/images/favicon.ico create mode 100644 examples/markdown-to-html/src/images/plumber.webp create mode 100644 examples/markdown-to-html/src/styles/style.css create mode 100644 examples/markdown-to-html/src/views/index.hbs create mode 100644 examples/markdown-to-html/src/views/markdown/code.md create mode 100644 examples/markdown-to-html/src/views/markdown/demo.md create mode 100644 examples/markdown-to-html/webpack.config.js create mode 100644 src/Loader/PreprocessorFilters/Exeptions.js rename src/Loader/{Preprocessors/Pug/filters => PreprocessorFilters}/highlight/adapter.js (82%) create mode 100644 src/Loader/PreprocessorFilters/highlight/index.js rename src/Loader/{Preprocessors/Pug/filters => PreprocessorFilters}/highlight/parser.js (100%) rename src/Loader/{Preprocessors/Pug/filters => PreprocessorFilters}/highlight/prismjs.js (94%) create mode 100644 src/Loader/PreprocessorFilters/markdown/extensions/GitHubAlertsExtension.js create mode 100644 src/Loader/PreprocessorFilters/markdown/index.js create mode 100644 src/Loader/Preprocessors/Handlebars/filters/markdown/index.js create mode 100644 test/cases/_preprocessor/ejs-include-md/expected/code.html create mode 100644 test/cases/_preprocessor/ejs-include-md/expected/demo.html create mode 100644 test/cases/_preprocessor/ejs-include-md/expected/img/plumber.6c89dfc3.webp create mode 100644 test/cases/_preprocessor/ejs-include-md/expected/style.css create mode 100644 test/cases/_preprocessor/ejs-include-md/src/footer.html create mode 100644 test/cases/_preprocessor/ejs-include-md/src/index.ejs create mode 100644 test/cases/_preprocessor/ejs-include-md/src/markdown/code.md create mode 100644 test/cases/_preprocessor/ejs-include-md/src/markdown/demo.md create mode 100644 test/cases/_preprocessor/ejs-include-md/src/style.css create mode 100644 test/cases/_preprocessor/ejs-include-md/webpack.config.js create mode 100644 test/cases/_preprocessor/eta-include-md/expected/code.html create mode 100644 test/cases/_preprocessor/eta-include-md/expected/demo.html create mode 100644 test/cases/_preprocessor/eta-include-md/expected/img/plumber.6c89dfc3.webp create mode 100644 test/cases/_preprocessor/eta-include-md/expected/style.css create mode 100644 test/cases/_preprocessor/eta-include-md/src/footer.html create mode 100644 test/cases/_preprocessor/eta-include-md/src/index.html create mode 100644 test/cases/_preprocessor/eta-include-md/src/markdown/code.md create mode 100644 test/cases/_preprocessor/eta-include-md/src/markdown/demo.md create mode 100644 test/cases/_preprocessor/eta-include-md/src/style.css create mode 100644 test/cases/_preprocessor/eta-include-md/webpack.config.js create mode 100644 test/cases/_preprocessor/handlebars-include-md/expected/code.html create mode 100644 test/cases/_preprocessor/handlebars-include-md/expected/demo.html create mode 100644 test/cases/_preprocessor/handlebars-include-md/expected/img/plumber.6c89dfc3.webp create mode 100644 test/cases/_preprocessor/handlebars-include-md/expected/style.css create mode 100644 test/cases/_preprocessor/handlebars-include-md/src/index.hbs create mode 100644 test/cases/_preprocessor/handlebars-include-md/src/markdown/code.md create mode 100644 test/cases/_preprocessor/handlebars-include-md/src/markdown/demo.md create mode 100644 test/cases/_preprocessor/handlebars-include-md/src/style.css create mode 100644 test/cases/_preprocessor/handlebars-include-md/webpack.config.js create mode 100644 test/fixtures/images/octocats/baracktocat.webp create mode 100644 test/fixtures/images/octocats/constructocat2.webp create mode 100644 test/fixtures/images/octocats/filmtocat.png create mode 100644 test/fixtures/images/octocats/hubot.webp create mode 100644 test/fixtures/images/octocats/inspectocat.webp create mode 100644 test/fixtures/images/octocats/labtocat.webp create mode 100644 test/fixtures/images/octocats/megacat.webp create mode 100644 test/fixtures/images/octocats/original.png create mode 100644 test/fixtures/images/octocats/plumber.webp create mode 100644 test/fixtures/images/octocats/robotocat.webp create mode 100644 test/fixtures/images/octocats/setuptocat.webp create mode 100644 test/fixtures/images/octocats/socialite.webp diff --git a/CHANGELOG.md b/CHANGELOG.md index 955b0541..26331ff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Change log +## 4.6.0 (2024-12-03) + +- feat: add support the Markdown `*.md` files in the template engines: `eta`, `ejs`, `handlebars`, `pug`. + The markdown file can be included in the HTML template, e.g. `Eta`: + ```html + + + + + + + + + <%~ include('readme.md') %> + + + ``` + ## 4.5.3 (2024-11-28) - fix: issue by HMR when CSS contains Tailwind-like style names with backslashes @@ -12,12 +30,12 @@ ## 4.5.1 (2024-11-28) - fix: if used `splitChunks.chunks` option then this options will be removed and will be displayed a warning - This option make no sense, because we will split only scripts. + This option makes no sense, because we will split only scripts. - docs: update readme ## 4.5.0 (2024-11-25) -- feat: add limited support the HMR for styles imported in JavaScript files +- feat: add support the HMR for styles imported in JavaScript files - feat: add new `css.hot` option to enable HMR for styles ## 4.4.3 (2024-11-23) @@ -26,7 +44,7 @@ ## 4.4.2 (2024-11-18) -- fix: add Exception when used `splitChunks` and occurs the error: Can't resolve a CSS file in template. +- fix: add Exception when used `splitChunks` and occurs the error: Can't resolve a CSS file in template - fix: correct Exception message when a source CSS file is not found ## 4.4.1 (2024-11-05) diff --git a/README.md b/README.md index 5722289b..5447c795 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Advanced alternative to [html-webpack-plugin](https://github.com/jantimon/html-w - **Renders** the [template engines](#template-engine) "out of the box": [Eta](#using-template-eta), [EJS](#using-template-ejs), [Handlebars](#using-template-handlebars), [Nunjucks](#using-template-nunjucks), [Pug](#using-template-pug), [Tempura](#using-template-tempura), [TwigJS](#using-template-twig), [LiquidJS](#using-template-liquidjs). It is very easy to add support for any template engine. +- Supports including of Markdown `*.md` files in the template. - **Source files** of [`script`](#option-js) and [`style`](#option-css) can be specified directly in HTML: - ``\ No longer need to define source style files in Webpack entry or import styles in JavaScript. @@ -209,6 +210,7 @@ If you have discovered a bug or have a feature suggestion, feel free to create a ## 🔆 What's New in v4 +- **NEW** including of Markdown `*.md` files in the template. (since `v4.6.0`). - **NEW** added supports the [HMR for CSS](#option-css-hot) (since `v4.5.0`). - **NEW** added supports the [multiple configurations](https://webpack.js.org/configuration/configuration-types/#exporting-multiple-configurations). - **SUPPORTS** Webpack version `5.96+` (since `v4.2.0`). diff --git a/examples/markdown-to-html/README.md b/examples/markdown-to-html/README.md new file mode 100644 index 00000000..a884031d --- /dev/null +++ b/examples/markdown-to-html/README.md @@ -0,0 +1,29 @@ +# Markdown to HTML + +Use the [HTML Builder Plugin](https://github.com/webdiscus/html-bundler-webpack-plugin) for Webpack to render Markdown files `*.md` to HTML. + +Required to install additional dependencies: + +- markdown-it (render Markdown) +- prismjs (highlighting) +- parse5 (highlighting dependency) +- github-markdown-css (GitHub styles) +- handlebars (optional, if not used default template engine `eta`) + +> **Note** +> +> The template engines supports Markdown: `eta`, `ejs`, `handlebars`, `pug`. +> This example uses the `handlebars` template engine to load the markdown file. + +## View and edit in browser + +[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/edit/markdown-to-html?file=webpack.config.js) + +## How to use + +```sh +git clone https://github.com/webdiscus/html-bundler-webpack-plugin.git +cd examples/markdown-to-html/ +npm install +npm run view +``` diff --git a/examples/markdown-to-html/package-lock.json b/examples/markdown-to-html/package-lock.json new file mode 100644 index 00000000..5692340a --- /dev/null +++ b/examples/markdown-to-html/package-lock.json @@ -0,0 +1,4875 @@ +{ + "name": "markdown-to-html", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "markdown-to-html", + "version": "0.0.1", + "license": "ISC", + "devDependencies": { + "css-loader": "^7.1.2", + "handlebars": "^4.7.8", + "html-bundler-webpack-plugin": "file:../../", + "http-server": "^14.1.1", + "markdown-it": "^14.1.0", + "parse5": "^7.2.1", + "prismjs": "^1.29.0", + "sass": "^1.81.0", + "sass-loader": "^16.0.3", + "webpack-dev-server": "5.1.0" + } + }, + "..": { + "extraneous": true + }, + "../..": { + "version": "4.6.0", + "dev": true, + "license": "ISC", + "dependencies": { + "@types/html-minifier-terser": "^7.0.2", + "ansis": "3.3.2", + "enhanced-resolve": ">=5.7.0", + "eta": "^3.5.0", + "html-minifier-terser": "^7.2.0" + }, + "devDependencies": { + "@babel/core": "^7.26.0", + "@babel/preset-env": "^7.26.0", + "@emotion/react": "11.13.0", + "@emotion/styled": "11.13.0", + "@mui/material": "5.16.7", + "@test-fixtures/dius": "file:./test/fixtures/node_modules/dius/", + "@test-fixtures/js": "0.0.2", + "@test-fixtures/lorem": "file:./test/fixtures/node_modules/lorem/", + "@test-fixtures/scss": "0.0.7", + "@test/html-bundler-webpack-plugin": "file:./", + "@test/import-css": "file:./test/fixtures/node_modules/import-css/", + "@types/jest": "^29.5.14", + "@types/react-dom": "^18.3.1", + "copy-webpack-plugin": "9.1.0", + "css-loader": "^7.1.2", + "css-minimizer-webpack-plugin": "^7.0.0", + "cssnano": "^7.0.6", + "ejs": "^3.1.10", + "favicons": "7.2.0", + "github-markdown-css": "^5.8.1", + "handlebars": "^4.7.8", + "handlebars-layouts": "^3.1.4", + "jest": "^29.7.0", + "liquidjs": "^10.18.0", + "markdown-it": "^14.1.0", + "mustache": "^4.2.0", + "normalize.css": "^8.0.1", + "nunjucks": "^3.2.4", + "parse5": "^7.2.1", + "postcss": "^8.4.49", + "postcss-loader": "^8.1.1", + "postcss-preset-env": "^10.1.1", + "prettier": "^3.3.3", + "prismjs": "^1.29.0", + "pug": "^3.0.3", + "react": "18.3.1", + "react-dom": "18.3.1", + "responsive-loader": "^3.1.2", + "rtlcss": "^4.3.0", + "sass": "1.80.6", + "sass-loader": "16.0.3", + "sharp": "^0.33.5", + "svgo-loader": "^4.0.0", + "tailwindcss": "^3.4.15", + "tempura": "^0.4.1", + "ts-loader": "9.5.1", + "tsconfig-paths-webpack-plugin": "^4.1.0", + "twig": "^1.17.1", + "typescript": "5.6.3", + "vue": "3.5.12", + "vue-loader": "^17.4.2", + "webpack": "5.96.1", + "webpack-cli": "5.1.4", + "webpack-dev-server": "^5.1.0" + }, + "engines": { + "node": ">=16.20.0" + }, + "funding": { + "type": "patreon", + "url": "https://patreon.com/biodiscus" + }, + "peerDependencies": { + "ejs": ">=3.1.10", + "favicons": ">=7.2.0", + "handlebars": ">=4.7.8", + "liquidjs": ">=10.17.0", + "markdown-it": ">=12", + "mustache": ">=4.2.0", + "nunjucks": ">=3.2.3", + "parse5": ">=7.1.2", + "prismjs": ">=1.29.0", + "pug": ">=3.0.3", + "twig": ">=1.17.1", + "webpack": ">=5.81.0" + }, + "peerDependenciesMeta": { + "ejs": { + "optional": true + }, + "favicons": { + "optional": true + }, + "handlebars": { + "optional": true + }, + "liquidjs": { + "optional": true + }, + "markdown-it": { + "optional": true + }, + "mustache": { + "optional": true + }, + "nunjucks": { + "optional": true + }, + "parse5": { + "optional": true + }, + "prismjs": { + "optional": true + }, + "pug": { + "optional": true + }, + "twig": { + "optional": true + } + } + }, + "../../src/index.js": { + "extraneous": true + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@jsonjoy.com/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/json-pack": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz", + "integrity": "sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/base64": "^1.1.1", + "@jsonjoy.com/util": "^1.1.2", + "hyperdyperid": "^1.2.0", + "thingies": "^1.20.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/util": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.5.0.tgz", + "integrity": "sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@parcel/watcher": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz", + "integrity": "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.0", + "@parcel/watcher-darwin-arm64": "2.5.0", + "@parcel/watcher-darwin-x64": "2.5.0", + "@parcel/watcher-freebsd-x64": "2.5.0", + "@parcel/watcher-linux-arm-glibc": "2.5.0", + "@parcel/watcher-linux-arm-musl": "2.5.0", + "@parcel/watcher-linux-arm64-glibc": "2.5.0", + "@parcel/watcher-linux-arm64-musl": "2.5.0", + "@parcel/watcher-linux-x64-glibc": "2.5.0", + "@parcel/watcher-linux-x64-musl": "2.5.0", + "@parcel/watcher-win32-arm64": "2.5.0", + "@parcel/watcher-win32-ia32": "2.5.0", + "@parcel/watcher-win32-x64": "2.5.0" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz", + "integrity": "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz", + "integrity": "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz", + "integrity": "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz", + "integrity": "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz", + "integrity": "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz", + "integrity": "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz", + "integrity": "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz", + "integrity": "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz", + "integrity": "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz", + "integrity": "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz", + "integrity": "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz", + "integrity": "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz", + "integrity": "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.2.tgz", + "integrity": "sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.15", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.10.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", + "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.20.0" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/qs": { + "version": "6.9.17", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz", + "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/retry": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", + "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ws": { + "version": "8.5.13", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz", + "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "peer": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "peer": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "peer": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true, + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "dev": true, + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/bonjour-service": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", + "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001684", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz", + "integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0", + "optional": true, + "peer": true + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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/chokidar": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", + "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", + "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.0.2", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/corser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz", + "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/css-loader": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz", + "integrity": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==", + "dev": true, + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.27.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "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" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "dev": true, + "license": "MIT", + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true, + "license": "MIT" + }, + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.67", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.67.tgz", + "integrity": "sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==", + "dev": true, + "license": "ISC", + "optional": true, + "peer": true + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true, + "license": "MIT" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/express": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", + "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.10", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/express/node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/fast-uri": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", + "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true + }, + "node_modules/gopd": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.1.0.tgz", + "integrity": "sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true, + "license": "MIT" + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.1.0.tgz", + "integrity": "sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-bundler-webpack-plugin": { + "resolved": "../..", + "link": true + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "license": "MIT" + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true, + "license": "MIT" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz", + "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/http-server": { + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/http-server/-/http-server-14.1.1.tgz", + "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "basic-auth": "^2.0.1", + "chalk": "^4.1.2", + "corser": "^2.0.1", + "he": "^1.2.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy": "^1.18.1", + "mime": "^1.6.0", + "minimist": "^1.2.6", + "opener": "^1.5.1", + "portfinder": "^1.0.28", + "secure-compare": "3.0.1", + "union": "~0.5.0", + "url-join": "^4.0.1" + }, + "bin": { + "http-server": "bin/http-server" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/hyperdyperid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", + "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.18" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/immutable": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz", + "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/ipaddr.js": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-network-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.1.0.tgz", + "integrity": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/launch-editor": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz", + "integrity": "sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "uc.micro": "^2.0.0" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" + }, + "node_modules/markdown-it": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" + }, + "bin": { + "markdown-it": "bin/markdown-it.mjs" + } + }, + "node_modules/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dev": true, + "license": "MIT" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.14.0.tgz", + "integrity": "sha512-JUeY0F/fQZgIod31Ja1eJgiSxLn7BfQlCnqhwXFBzFHEw63OdLK7VJUJ7bnzNsWgCyoUP5tEp1VRY8rDaYzqOA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/json-pack": "^1.0.3", + "@jsonjoy.com/util": "^1.3.0", + "tree-dump": "^1.0.1", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">= 4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true, + "license": "ISC" + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true, + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/open": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true, + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/p-retry": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.1.tgz", + "integrity": "sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/retry": "0.12.2", + "is-network-error": "^1.0.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz", + "integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^4.5.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/portfinder": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", + "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/postcss": { + "version": "8.4.49", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz", + "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.1.0.tgz", + "integrity": "sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", + "dev": true, + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", + "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "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, + "license": "MIT" + }, + "node_modules/prismjs": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", + "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.13.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.1.tgz", + "integrity": "sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", + "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/run-applescript": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/sass": { + "version": "1.81.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.81.0.tgz", + "integrity": "sha512-Q4fOxRfhmv3sqCLoGfvrC9pRV8btc0UtqL9mN6Yrv6Qi9ScL55CVH1vlPP863ISLEEMNLLuu9P+enCeGHlnzhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" + } + }, + "node_modules/sass-loader": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.3.tgz", + "integrity": "sha512-gosNorT1RCkuCMyihv6FBRR7BMV06oKRAs+l4UMp1mlcVg9rWN6KMmUj3igjQwmYys4mDP3etEYJgiHRbgHCHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/secure-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz", + "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==", + "dev": true, + "license": "MIT" + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true, + "license": "MIT" + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "peer": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true, + "license": "ISC" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true, + "license": "ISC" + }, + "node_modules/shell-quote": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", + "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/spdy/node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.36.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.36.0.tgz", + "integrity": "sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/thingies": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz", + "integrity": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==", + "dev": true, + "license": "Unlicense", + "engines": { + "node": ">=10.18" + }, + "peerDependencies": { + "tslib": "^2" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true, + "license": "MIT" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tree-dump": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.2.tgz", + "integrity": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true, + "license": "MIT" + }, + "node_modules/uglify-js": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "dev": true, + "license": "MIT" + }, + "node_modules/union": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/union/-/union-0.5.0.tgz", + "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "dev": true, + "dependencies": { + "qs": "^6.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "peer": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "dev": true, + "license": "MIT" + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/watchpack": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webpack": { + "version": "5.96.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.96.1.tgz", + "integrity": "sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.2.tgz", + "integrity": "sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^4.6.0", + "mime-types": "^2.1.31", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.1.0.tgz", + "integrity": "sha512-aQpaN81X6tXie1FoOB7xlMfCsN19pSvRAeYUHOdFWOlhpQ/LlbfTqYwwmEDFV0h8GGuqmCmKmT+pxcUV/Nt2gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.13", + "@types/connect-history-api-fallback": "^1.5.4", + "@types/express": "^4.17.21", + "@types/serve-index": "^1.9.4", + "@types/serve-static": "^1.15.5", + "@types/sockjs": "^0.3.36", + "@types/ws": "^8.5.10", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.2.1", + "chokidar": "^3.6.0", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "express": "^4.19.2", + "graceful-fs": "^4.2.6", + "html-entities": "^2.4.0", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.1.0", + "launch-editor": "^2.6.1", + "open": "^10.0.3", + "p-retry": "^6.2.0", + "schema-utils": "^4.2.0", + "selfsigned": "^2.4.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^7.4.2", + "ws": "^8.18.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT" + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + } + } +} diff --git a/examples/markdown-to-html/package.json b/examples/markdown-to-html/package.json new file mode 100644 index 00000000..71dbdc52 --- /dev/null +++ b/examples/markdown-to-html/package.json @@ -0,0 +1,28 @@ +{ + "name": "markdown-to-html", + "description": "Markdown to HTML with Webpack", + "version": "0.0.1", + "repository": "webdiscus/html-bundler-webpack-plugin", + "license": "ISC", + "stackblitz": { + "startCommand": "npm run view" + }, + "scripts": { + "start": "webpack serve", + "build": "webpack build --mode=production", + "view": "npm run build && http-server dist -og" + }, + "devDependencies": { + "css-loader": "^7.1.2", + "handlebars": "^4.7.8", + "http-server": "^14.1.1", + "html-bundler-webpack-plugin": "file:../../", + "github-markdown-css": "^5.8.1", + "markdown-it": "^14.1.0", + "parse5": "^7.2.1", + "prismjs": "^1.29.0", + "sass": "^1.81.0", + "sass-loader": "^16.0.3", + "webpack-dev-server": "5.1.0" + } +} diff --git a/examples/markdown-to-html/src/images/favicon.ico b/examples/markdown-to-html/src/images/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..0eb281642cfd2e3e3802827e2dcfa46468d50f87 GIT binary patch literal 959 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 + + {{title}} + + + + + + + + + + + + + + + {{include file}} + + diff --git a/examples/markdown-to-html/src/views/markdown/code.md b/examples/markdown-to-html/src/views/markdown/code.md new file mode 100644 index 00000000..abeefc0b --- /dev/null +++ b/examples/markdown-to-html/src/views/markdown/code.md @@ -0,0 +1,145 @@ +

Highlighting code blocks

+

Theme: dark | light

+ +[<< back to home](index.html) + +--- + +You can add an optional language identifier to enable syntax highlighting in your code block. + +For example, to syntax highlight Ruby code: +```` +```ruby +require 'redcarpet' +markdown = Redcarpet.new("Hello World!") +puts markdown.to_html +``` +```` + +This will display the code block with syntax highlighting: +```ruby +require 'redcarpet' +markdown = Redcarpet.new("Hello World!") +puts markdown.to_html +``` + +Highlighting Markdown: +```md +# h1 Heading +## h2 Heading + +**This is bold text** +_This is italic text_ + +## List + +1. Lorem ipsum dolor sit amet +2. Consectetur adipiscing elit +3. Integer molestie lorem at massa + +## Tables + +| First Header | Second Header | +| ------------- | ------------- | +| Content Cell | Content Cell | +| Content Cell | Content Cell | + +## Images + +External image URL: +![Octocat](https://octodex.github.com/images/original.png "Octocat original") + +Local image path using Webpack alias: +![Image](@images/octocats/constructocat2.webp "Octocat constructor") +``` + +Highlighting HTML, for example, there is a template `handlebars` that includes a markdown file `demo.md`: + +```html + + + + Markdown to HTML + + + + + + + + + + + + + + <%~ include(file) %> + + +``` + +Highlighting JavaScript, for example, there is Webpack configuration file: + +```js +const path = require('path'); +const HtmlBundlerPlugin = require('@test/html-bundler-webpack-plugin'); + +module.exports = { + mode: 'production', + output: { + path: path.join(__dirname, 'dist/'), + }, + resolve: { + alias: { + // the aliases will be resolved in Markdown file + // for example: ![Image](@images/picture.png) + '@images': path.join(__dirname, 'path/to/images'), + }, + }, + plugins: [ + new HtmlBundlerPlugin({ + entry: [ + { + import: 'src/views/index.hbs', // HTML template where are loaded CSS styles for markdown and highlighting + filename: 'index.html', // output HTML file containing rendered Markdown + data: { + file: 'src/views/markdown/demo.md', // path to markdown file relative to the project directory + }, + }, + ], + }), + ], + module: { + rules: [ + { + test: /\.s?css$/, + use: ['css-loader', 'sass-loader'], + }, + { + test: /\.(ico|png|svg|jpe?g|webp)$/i, + type: 'asset/resource', + }, + ], + }, +}; +``` + +Highlighting CSS: + +```css +/* The container styles of your rendered Markdown */ + +.markdown-body { + box-sizing: border-box; + min-width: 200px; + max-width: 980px; + margin: 0 auto; + padding: 45px; +} + +@media (max-width: 767px) { + .markdown-body { + padding: 15px; + } +} +``` diff --git a/examples/markdown-to-html/src/views/markdown/demo.md b/examples/markdown-to-html/src/views/markdown/demo.md new file mode 100644 index 00000000..b5ac56f9 --- /dev/null +++ b/examples/markdown-to-html/src/views/markdown/demo.md @@ -0,0 +1,214 @@ +

Markdown demo

+

Theme: dark | light

+ +[>> Highlighting code blocks](code-light.html) + +--- + +# Advertisement + +- __[ansis](https://github.com/webdiscus/ansis/)__ - Small and fast Node.js lib to colorize terminal output. +- __[HTML Bundler Plugin for Webpack](https://github.com/webdiscus/html-bundler-webpack-plugin)__ - Generates HTML with JS and CSS from various templates.\ + Supports Eta, EJS, Handlebars, Nunjucks, Pug, Twig templates "out of the box". + +You will like those projects! + +--- + +# Headings + +``` +# A first-level heading +## A second-level heading +### A third-level heading +``` + +# A first-level heading +## A second-level heading +### A third-level heading + + +## Horizontal Rule + +``` +--- +``` +--- + +## Styling text + +``` +**This is bold text** +``` +**This is bold text** + +``` +_This is italic text_ +``` +_This is italic text_ + +``` +~~Strikethrough~~ +``` +~~Strikethrough~~ + +``` +This is an <ins>underlined</ins> text +``` +This is an underlined text + +``` +This is a <sub>subscript</sub> text +``` +This is a subscript text + +``` +This is a <sup>superscript</sup> text +``` +This is a superscript text + + +## Quoting text + +``` +Text that is not a quote + +> Text that is a quote +>> Nested quoted text +``` + +Text that is not a quote + +> Text that is a quote +>> Nested quoted text + + +## GitHub Alerts + +Alerts are a Markdown extension based on the blockquote syntax. + +Five types of alerts are available: +``` +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. +``` + +Here are the rendered alerts: + +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. + + +## Lists + +### Unordered + +Create a list by starting a line with `+`, `-`, or `*` + +- First list item + - First nested list item + - Second nested list item + +### Ordered + +1. James Madison +2. James Monroe +3. John Quincy Adams + +### Start numbering with offset + +100. First list item +101. Second list item + + +## Code + +Inline `code` + +Indented code + + // Some comments + line 1 of code + line 2 of code + line 3 of code + + +Block code "fences" + +``` +Sample text here... +``` + +Syntax highlighting + +```js +var foo = function (bar) { + return bar++; +}; + +console.log(foo(5)); +``` + +To display triple backticks in a fenced code block, wrap them inside quadruple backticks +```` +``` +Look! You can see my backticks. +``` +```` + +## Tables + +| Left-aligned | Center-aligned | Right-aligned | +| :--- | :---: | ---: | +| git status | git status | git status | +| git diff | git diff | git diff | + +## Links + +[link with title](ttps://github.com/webdiscus "title text!") + +```md +[link with title](ttps://github.com/webdiscus "title text!") +``` + + +## Images + +External image URL + +```md +![Octocat](https://octodex.github.com/images/original.png "The Octocat original") +``` +![Octocat](https://octodex.github.com/images/original.png "The Octocat original") + +Local image path using Webpack alias + +```md +![Image](@images/plumber.webp "The plumber") +``` + +![Image](@images/plumber.webp "The plumber") diff --git a/examples/markdown-to-html/webpack.config.js b/examples/markdown-to-html/webpack.config.js new file mode 100644 index 00000000..eb4b805e --- /dev/null +++ b/examples/markdown-to-html/webpack.config.js @@ -0,0 +1,104 @@ +const path = require('path'); +const HtmlBundlerPlugin = require('@test/html-bundler-webpack-plugin'); + +module.exports = { + mode: 'production', + + output: { + path: path.join(__dirname, 'dist/'), + clean: true, + }, + + resolve: { + alias: { + // the aliases will be resolved in Markdown file + // for example: ![Image](@images/picture.png) + '@images': path.join(__dirname, 'src/images'), + }, + }, + + plugins: [ + new HtmlBundlerPlugin({ + entry: [ + { + import: 'src/views/index.hbs', // HTML template where are loaded CSS styles for markdown and highlighting + filename: 'index.html', // output HTML file containing rendered Markdown + data: { + file: 'src/views/markdown/demo.md', // <= path to markdown file relative to the project directory + title: 'Markdown', // HTML title, displayed in the browser tab + markdownTheme: 'light', // theme to load markdown CSS in HTML + highlightingTheme: 'prism', // theme to load highlighting CSS in HTML + }, + }, + { + import: 'src/views/index.hbs', + filename: 'index-dark.html', + data: { + file: 'demo.md', // <= path to the markdown file relative to one of the paths specified in the `preprocessorOptions.views` option + title: 'Markdown', + markdownTheme: 'dark', + highlightingTheme: 'prism-dark', + }, + }, + { + import: 'src/views/index.hbs', + filename: 'code-light.html', + data: { + file: 'code.md', + title: 'Highlighting code', + markdownTheme: 'light', + highlightingTheme: 'prism', + }, + }, + { + import: 'src/views/index.hbs', + filename: 'code-dark.html', + data: { + file: 'code.md', + title: 'Highlighting code', + markdownTheme: 'dark', + highlightingTheme: 'prism-dark', + }, + }, + ], + + hotUpdate: true, // use it only if you don't have a script file + preprocessor: 'handlebars', // use one of the template engines that supports Markdown: `eta`, `ejs`, `handlebars`, `pug` + preprocessorOptions: { + views: [ + // path to the directory where *.md files will be searched + path.join(__dirname, 'src/views/markdown/'), + ], + }, + watchFiles: { + includes: /\.md/, // watch changes in *.md files, needed for live reload + }, + }), + ], + + module: { + rules: [ + { + test: /\.s?css$/, + use: ['css-loader', 'sass-loader'], + }, + { + test: /\.(ico|png|svg|jpe?g|webp)$/i, + type: 'asset/resource', + generator: { + filename: 'img/[name].[hash:8][ext]', + }, + }, + ], + }, + + devServer: { + static: path.join(__dirname, 'dist'), + watchFiles: { + paths: ['src/**/*.*'], + options: { + usePolling: true, + }, + }, + }, +}; diff --git a/package-lock.json b/package-lock.json index 06657ff0..dde176d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "html-bundler-webpack-plugin", - "version": "4.5.1", + "version": "4.5.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "html-bundler-webpack-plugin", - "version": "4.5.1", + "version": "4.5.3", "license": "ISC", "dependencies": { "@types/html-minifier-terser": "^7.0.2", @@ -35,6 +35,7 @@ "cssnano": "^7.0.6", "ejs": "^3.1.10", "favicons": "7.2.0", + "github-markdown-css": "^5.8.1", "handlebars": "^4.7.8", "handlebars-layouts": "^3.1.4", "jest": "^29.7.0", @@ -7965,6 +7966,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/github-markdown-css": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/github-markdown-css/-/github-markdown-css-5.8.1.tgz", + "integrity": "sha512-8G+PFvqigBQSWLQjyzgpa2ThD9bo7+kDsriUIidGcRhXgmcaAWUIpCZf8DavJgc+xifjbCG+GvMyWr0XMXmc7g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", diff --git a/package.json b/package.json index d6567cfe..884a2861 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "html-bundler-webpack-plugin", - "version": "4.5.3", + "version": "4.6.0", "description": "HTML Bundler Plugin for Webpack renders HTML templates containing source files of scripts, styles, images. Supports template engines: Eta, EJS, Handlebars, Nunjucks, Pug, TwigJS. Alternative to html-webpack-plugin.", "keywords": [ "html", @@ -10,6 +10,8 @@ "loader", "entrypoint", "template", + "markdown", + "md", "ejs", "hbs", "handlebars", @@ -91,7 +93,7 @@ } }, "engines": { - "node": ">=16.20.0" + "node": ">=18" }, "peerDependencies": { "ejs": ">=3.1.10", @@ -171,6 +173,7 @@ "favicons": "7.2.0", "handlebars": "^4.7.8", "handlebars-layouts": "^3.1.4", + "github-markdown-css": "^5.8.1", "jest": "^29.7.0", "liquidjs": "^10.18.0", "markdown-it": "^14.1.0", diff --git a/src/Common/FileUtils.js b/src/Common/FileUtils.js index f10b4eb0..67efda7c 100644 --- a/src/Common/FileUtils.js +++ b/src/Common/FileUtils.js @@ -109,6 +109,10 @@ const resolveFile = (file, { fs, root = process.cwd(), paths = [], extensions = let isRoot = false; + // absolute file path + if (path.isAbsolute(file) && fs.existsSync(file)) return file; + + // root file path, relative to the project directory if (file.startsWith('/')) { isRoot = true; file = path.join(root, file); diff --git a/src/Common/Helpers.js b/src/Common/Helpers.js index a0dd75e2..3b0610eb 100644 --- a/src/Common/Helpers.js +++ b/src/Common/Helpers.js @@ -102,6 +102,23 @@ const deleteQueryParam = (request, name) => { return newQuery ? file + '?' + newQuery : file; }; +/** + * Merge two objects. + * @param {Object} a + * @param {Object} b + * @return {{}} + */ +const deepMerge = (a, b) => { + const result = {}; + for (const key of new Set([...Object.keys(a), ...Object.keys(b)])) { + result[key] = + a[key]?.constructor === Object && b[key]?.constructor === Object + ? deepMerge(a[key], b[key]) + : structuredClone(b[key] !== undefined ? b[key] : a[key]); + } + return result; +}; + /** * Returns an indent detected in the content. * @@ -189,6 +206,7 @@ module.exports = { getQueryParam, addQueryParam, deleteQueryParam, + deepMerge, detectIndent, outToConsole, parseVersion, diff --git a/src/Loader/PreprocessorFilters/Exeptions.js b/src/Loader/PreprocessorFilters/Exeptions.js new file mode 100644 index 00000000..97c0c675 --- /dev/null +++ b/src/Loader/PreprocessorFilters/Exeptions.js @@ -0,0 +1,85 @@ +const { red, redBright, cyan, green, whiteBright } = require('ansis'); +const { labelError } = require('../Utils'); + +const loaderLabel = labelError(); +const filterLabel = labelError('filter'); +let lastError = null; + +class PreprocessorFilterException extends Error { + constructor(message) { + super(message); + this.name = 'PreprocessorFilterException'; + this.message = message; + } +} + +/** + * @param {string} message The error description. + * @param {PreprocessorFilterException|Error|string?} error The original error from catch() + * @constructor + */ +const PreprocessorFilterError = function (message, error = '') { + if (error && error instanceof PreprocessorFilterException) { + if (error.toString() === lastError) { + // prevent double output same error + throw new PreprocessorFilterException(lastError); + } + // throw original error to avoid output all nested exceptions + lastError = error.toString(); + throw new Error(lastError); + } + lastError = whiteBright(message) + `\n\n${redBright`Original Error:`}\n` + error; + + throw new PreprocessorFilterException(lastError); +}; + +const loadNodeModuleException = (moduleName) => { + throw new Error( + whiteBright`${filterLabel} The required ${red( + moduleName + )} module not found. Please install the module: ${cyan`npm i -D ${moduleName}`}` + ); +}; + +/** + * @param {string} filterName + * @param {string} availableFilters + * @throws {Error} + */ +const filterNotFoundException = (filterName, availableFilters) => { + const message = + `${loaderLabel} The 'embedFilters' option contains unknown filter: ${red(filterName)}.\n` + + `Available embedded filters: ${green(availableFilters)}.`; + + PreprocessorFilterError(message); +}; + +/** + * @param {string} filterName + * @param {string} filterPath + * @param {Error} error + */ +const filterLoadException = (filterName, filterPath, error) => { + const message = + `${loaderLabel} Error by load the ${red(filterName)} filter.\nFilter file: ${cyan(filterPath)}\n` + error; + + PreprocessorFilterError(message); +}; + +/** + * @param {string} filterName + * @param {Error} error + */ +const filterInitException = (filterName, error) => { + const message = `${loaderLabel} Error by initialisation the ${red(filterName)} filter.\n` + error; + + PreprocessorFilterError(message); +}; + +module.exports = { + PreprocessorFilterError, + loadNodeModuleException, + filterNotFoundException, + filterLoadException, + filterInitException, +}; diff --git a/src/Loader/Preprocessors/Pug/filters/highlight/adapter.js b/src/Loader/PreprocessorFilters/highlight/adapter.js similarity index 82% rename from src/Loader/Preprocessors/Pug/filters/highlight/adapter.js rename to src/Loader/PreprocessorFilters/highlight/adapter.js index c4f96657..59766c7d 100644 --- a/src/Loader/Preprocessors/Pug/filters/highlight/adapter.js +++ b/src/Loader/PreprocessorFilters/highlight/adapter.js @@ -18,20 +18,30 @@ const adapter = { ]), /** - * @param {boolean} [verbose=false] Enable output info in console. - * @param {string} moduleName The name of npm module. + * @param {Object | string} use The used npm module of highlighting. * @public * @api */ - init({ verbose = false, use: moduleName }) { + init(use) { if (this.module != null) return; - this.verbose = verbose === true; + + let moduleName; + let moduleOptions = {}; + + if (typeof use === 'string') { + moduleName = use; + } else { + moduleName = use.module; + if (use.options) moduleOptions = use.options; + } + + this.verbose = moduleOptions.verbose === true; const label = `highlight adapter`; if (!moduleName || !this.supportedModules.has(moduleName)) { const error = - `\n${labelError(label)} Used unsupported module ${cyan(moduleName)}.\n` + + `\n${labelError(label)} Used unsupported module ${cyan('"' + moduleName + '"')}.\n` + `Supported modules: ` + green(this.getNamesOfSupportedModules().join(', ')) + '.'; @@ -40,7 +50,7 @@ const adapter = { const modulePath = `./${moduleName.replace(/\./g, '')}.js`; this.module = require(modulePath); - this.module.init({ verbose: this.verbose }); + this.module.init(moduleOptions); parser.init({ langPrefix: this.getLangPrefix(), diff --git a/src/Loader/PreprocessorFilters/highlight/index.js b/src/Loader/PreprocessorFilters/highlight/index.js new file mode 100644 index 00000000..b5f7f25f --- /dev/null +++ b/src/Loader/PreprocessorFilters/highlight/index.js @@ -0,0 +1,70 @@ +const adapter = require('./adapter'); +const { deepMerge } = require('../../../Common/Helpers'); + +// for usage the `[]` chars in pug inline filter, the chars must be written as HTML entity +// e,g. the `#[:highlight(js) const arr = [1, 2];]` must be as `#[:highlight(js) const arr = [1, 2];]`, +// but for tokenize is needed to decode HTML entities in normal chars +const reservedChars = /[|]/g; +const charReplacements = { + '[': '[', + ']': ']', +}; + +/** + * Embedded filter highlight. + * @singleton + */ +const filter = { + name: 'highlight', + + /** + * Initialize the filter. + * + * @param {Object} options + * + * @public + * @api + */ + init(options = {}) { + if (adapter.isInitialized()) return; + + const defaultOptions = { + use: { + // the name of a using highlight npm module. + module: 'prismjs', + options: { + // display in console warnings and loaded dependencies + verbose: false, + }, + }, + }; + + // TODO: cache module by webpack compiler (pro config) + options = deepMerge(defaultOptions, options); + + adapter.init(options.use); + }, + + /** + * Apply the filter. + * + * @param {string} text + * @param {{language: {string}, value: {any}}} options + * @returns {string} + * @public + * @api + */ + apply(text, options) { + let [language] = Object.keys(options); + + // if first item of options is `filename` then no language was defined in filter + language = language !== 'filename' ? language.toLowerCase() : null; + + // supports for `[]` chars in pug inline filter + text = text.replace(reservedChars, (str) => charReplacements[str]); + + return language ? adapter.highlight(text, language) : adapter.highlightAll(text); + }, +}; + +module.exports = filter; diff --git a/src/Loader/Preprocessors/Pug/filters/highlight/parser.js b/src/Loader/PreprocessorFilters/highlight/parser.js similarity index 100% rename from src/Loader/Preprocessors/Pug/filters/highlight/parser.js rename to src/Loader/PreprocessorFilters/highlight/parser.js diff --git a/src/Loader/Preprocessors/Pug/filters/highlight/prismjs.js b/src/Loader/PreprocessorFilters/highlight/prismjs.js similarity index 94% rename from src/Loader/Preprocessors/Pug/filters/highlight/prismjs.js rename to src/Loader/PreprocessorFilters/highlight/prismjs.js index ddfec261..b01d5cae 100644 --- a/src/Loader/Preprocessors/Pug/filters/highlight/prismjs.js +++ b/src/Loader/PreprocessorFilters/highlight/prismjs.js @@ -1,11 +1,11 @@ const path = require('path'); const { red, cyan } = require('ansis'); -const { outToConsole } = require('../../../../../Common/Helpers'); -const { loadNodeModuleException } = require('../../Exeptions'); +const { outToConsole } = require('../../../Common/Helpers'); +const { loadNodeModuleException } = require('../Exeptions'); const { labelInfo, labelWarn } = require('../../Utils'); -const { resolveModule } = require('../../../../Utils'); +const { resolveModule } = require('../../Utils'); -const label = `prismjs`; +const label = `html-bundler:filter:highlight:prismjs`; const prismjs = { name: 'prismjs', diff --git a/src/Loader/PreprocessorFilters/markdown/extensions/GitHubAlertsExtension.js b/src/Loader/PreprocessorFilters/markdown/extensions/GitHubAlertsExtension.js new file mode 100644 index 00000000..19906c7a --- /dev/null +++ b/src/Loader/PreprocessorFilters/markdown/extensions/GitHubAlertsExtension.js @@ -0,0 +1,57 @@ +const extension = { + /** + * Initialize MarkdownIt options. + * + * @param {Object} options The MarkdownIt options + * @return {Object} + */ + init(options) { + return options; + }, + + /** + * @param {string} content + * @return {string} + */ + beforeRender(content) { + return content; + }, + + /** + * @param {string} content + * @return {string} + */ + afterRender(content) { + let replacements = [ + { + search: `
+

[!NOTE]`, + replacement: `

Note

`, + }, + { + search: `

+

[!TIP]`, + replacement: `

Tip

`, + }, + { + search: `

+

[!IMPORTANT]`, + replacement: `

Important

`, + }, + { + search: `

+

[!WARNING]`, + replacement: `

Warning

`, + }, + { + search: `

+

[!CAUTION]`, + replacement: `

Caution

`, + }, + ]; + + return replacements.reduce((acc, { search, replacement }) => acc.replaceAll(search, replacement), content); + }, +}; + +module.exports = extension; diff --git a/src/Loader/PreprocessorFilters/markdown/index.js b/src/Loader/PreprocessorFilters/markdown/index.js new file mode 100644 index 00000000..69d1ee0a --- /dev/null +++ b/src/Loader/PreprocessorFilters/markdown/index.js @@ -0,0 +1,119 @@ +const adapter = require('../highlight/adapter'); +const { resolveModule } = require('../../Utils'); +const { deepMerge } = require('../../../Common/Helpers'); +const { loadNodeModuleException } = require('../Exeptions'); + +const GitHubAlertsExtension = require('./extensions/GitHubAlertsExtension'); + +/** + * @typedef {Object} MarkdownExtension + * @param {(function(options: Object): Object)} init Initialize MarkdownIt options. + * @param {(function(content: string): string)} beforeRender Calls before render markdown. + * @param {(function(content: string): string)} afterRender Calls after render markdown. + */ + +/** + * Embedded filter markdown. + * @singleton + */ +const filter = { + name: 'markdown', + moduleName: 'markdown-it', + module: null, + + /** + * Initialize the filter. + * + * @param {Object} options + * + * @public + * @api + */ + init(options = {}) { + const defaultOptions = { + highlight: { + use: { + // the name of a using highlight npm module. + module: 'prismjs', + options: { + // display in console warnings and loaded dependencies + verbose: true, + }, + }, + }, + }; + + // TODO: cache module by webpack compiler (pro config) + options = deepMerge(defaultOptions, options); + + let langPrefix = options.highlight.langPrefix; + let use = options.highlight.use; + const moduleFile = resolveModule(this.moduleName); + + if (!moduleFile) { + loadNodeModuleException(this.moduleName); + } + + const MarkdownIt = require(moduleFile); + + // Render custom markdown elements, e.g. GitHub alerts. + this.extensions = [GitHubAlertsExtension]; + + let markdownItOptions = { + // enable HTML tags in markdown source + html: true, + }; + + if (use) { + adapter.init(use); + + langPrefix = adapter.getLangPrefix(); + markdownItOptions.highlight = (text, lang) => { + return `

` + adapter.highlight(text, lang) + '
'; + }; + } + + markdownItOptions = this.tap('init', markdownItOptions); + + this.module = new MarkdownIt(markdownItOptions); + }, + + /** + * Apply the filter. + * + * @param {string} content + * @returns {string} + * @public + * @api + */ + apply(content) { + content = this.tap('beforeRender', content); + content = this.module.render(content); + content = this.tap('afterRender', content); + + return content; + }, + + /** + * Call the method of all registered extensions. + * + * @param {string} name The method name. + * @param {*} input The argument of callable method. If you have many arguments, use an object. + * @return {*} + */ + tap(name, input) { + let output = input; + + if (this.extensions) { + this.extensions.forEach((extension) => { + if (typeof extension[name] === 'function') { + output = extension[name](output); + } + }); + } + + return output; + }, +}; + +module.exports = filter; diff --git a/src/Loader/Preprocessors/Ejs/index.js b/src/Loader/Preprocessors/Ejs/index.js index c57a0782..baa96372 100644 --- a/src/Loader/Preprocessors/Ejs/index.js +++ b/src/Loader/Preprocessors/Ejs/index.js @@ -3,6 +3,8 @@ const path = require('path'); const { loadModule } = require('../../../Common/FileUtils'); const { stringifyJSON } = require('../../Utils'); +const MarkdownFilter = require('../../PreprocessorFilters/markdown'); + // replace the partial file and data to load nested included template via the Webpack loader // include("./file.html") => require("./file.eta")({...locals, ...{}}) // include('./file.html', { name: 'Siri' }) => require('./file.eta')({...locals, ...{name: 'Siri'}}) @@ -35,6 +37,29 @@ const preprocessor = (loaderContext, options) => { const Ejs = loadModule(moduleName); const { rootContext } = loaderContext; + const filterOption = { + highlight: { + use: { + module: 'prismjs', + options: { + verbose: true, // display loaded dependencies + }, + }, + }, + }; + + MarkdownFilter.init(filterOption); + + Ejs.fileLoader = (file) => { + const source = readFileSync(file, 'utf-8'); + + if (file.toLocaleLowerCase().endsWith('.md')) { + return MarkdownFilter.apply(source); + } + + return source; + }; + return { /** * Unique preprocessor ID as the module name. diff --git a/src/Loader/Preprocessors/Eta/index.js b/src/Loader/Preprocessors/Eta/index.js index 9181fb10..ab63c114 100644 --- a/src/Loader/Preprocessors/Eta/index.js +++ b/src/Loader/Preprocessors/Eta/index.js @@ -1,6 +1,8 @@ const path = require('path'); const { stringifyJSON } = require('../../Utils'); const { loadModule } = require('../../../Common/FileUtils'); +const { readFileSync } = require('fs'); +const MarkdownFilter = require('../../PreprocessorFilters/markdown'); // replace the partial file and data to load nested included template via the Webpack loader // include("./file.html") => require("./file.eta")({...it, ...{}}) @@ -22,6 +24,10 @@ const preprocessor = (loaderContext, options) => { const { rootContext } = loaderContext; let views = options.views; + // since eta v3 the `async` option is removed, but for compatibility, it is still used in this plugin + // defaults is false, when is true then must be used `await includeAsync()` + const async = options?.async === true; + if (!views) { views = rootContext; } else if (!path.isAbsolute(views)) { @@ -34,9 +40,28 @@ const preprocessor = (loaderContext, options) => { views, // directory that contains templates }); - // since eta v3 the `async` option is removed, but for compatibility, it is still used in this plugin - // defaults is false, when is true then must be used `await includeAsync()` - const async = options?.async === true; + const filterOption = { + highlight: { + use: { + module: 'prismjs', + options: { + verbose: true, // display loaded dependencies + }, + }, + }, + }; + + MarkdownFilter.init(filterOption); + + eta.readFile = (file) => { + const source = readFileSync(file, 'utf-8'); + + if (file.toLocaleLowerCase().endsWith('.md')) { + return MarkdownFilter.apply(source); + } + + return source; + }; return { /** diff --git a/src/Loader/Preprocessors/Handlebars/filters/markdown/index.js b/src/Loader/Preprocessors/Handlebars/filters/markdown/index.js new file mode 100644 index 00000000..1894e768 --- /dev/null +++ b/src/Loader/Preprocessors/Handlebars/filters/markdown/index.js @@ -0,0 +1,13 @@ +const markdown = require('../../../../PreprocessorFilters/markdown'); + +class Filter { + static init(options) { + markdown.init(options); + } + + static apply(content) { + return markdown.apply(content); + } +} + +module.exports = Filter; diff --git a/src/Loader/Preprocessors/Handlebars/helpers/include.js b/src/Loader/Preprocessors/Handlebars/helpers/include.js index 4caa1433..afc6fee8 100644 --- a/src/Loader/Preprocessors/Handlebars/helpers/include.js +++ b/src/Loader/Preprocessors/Handlebars/helpers/include.js @@ -1,5 +1,7 @@ const { resolveFile } = require('../../../../Common/FileUtils'); +const MarkdownFilter = require('../filters/markdown/index'); + /** @typedef {import('handlebars')} Handlebars */ /** @typedef {import('handlebars').HelperOptions} HelperOptions */ @@ -14,6 +16,19 @@ const { resolveFile } = require('../../../../Common/FileUtils'); * @return {function(filename: string, options: Object, args: Object): Handlebars.SafeString} */ module.exports = ({ Handlebars, fs, root, views = [], extensions = [] }) => { + const filterOption = { + highlight: { + use: { + module: 'prismjs', + options: { + verbose: true, // display loaded dependencies + }, + }, + }, + }; + + MarkdownFilter.init(filterOption); + /** * Include the partial file in a template. * @@ -30,11 +45,17 @@ module.exports = ({ Handlebars, fs, root, views = [], extensions = [] }) => { } const template = fs.readFileSync(file, 'utf8'); + let html; + + if (filename.toLocaleLowerCase().endsWith('.md')) { + html = MarkdownFilter.apply(template); + } else { + // pass the original data into sub-sub partials + const data = + options.name === 'include' ? { ...options?.hash, ...options.data?.root } : { ...options, ...args?.data?.root }; - // pass the original data into sub-sub partials - const data = - options.name === 'include' ? { ...options?.hash, ...options.data?.root } : { ...options, ...args?.data?.root }; - const html = Handlebars.compile(template)(data); + html = Handlebars.compile(template)(data); + } return new Handlebars.SafeString(html); }; diff --git a/src/Loader/Preprocessors/Pug/Utils.js b/src/Loader/Preprocessors/Pug/Utils.js index c347efec..2b66449e 100644 --- a/src/Loader/Preprocessors/Pug/Utils.js +++ b/src/Loader/Preprocessors/Pug/Utils.js @@ -1,13 +1,10 @@ -const { red, green, yellow } = require('ansis'); +const { labelInfo, labelWarn, labelError } = require('../../Utils'); -const loaderName = 'pug-loader'; -const labelInfo = (label) => `\n${green`[${loaderName}${label ? ':' + label : ''}]`}`; -const labelWarn = (label) => `\n${yellow`[${loaderName}${label ? ':' + label : ''}]`}`; -const labelError = (label) => `\n${red`[${loaderName}${label ? ':' + label : ''}]`}`; +const loaderName = 'html-bundler:preprocessor:pug'; module.exports = { loaderName, - labelInfo, - labelWarn, - labelError, + labelInfo: (label) => labelInfo(loaderName, label), + labelWarn: (label) => labelWarn(loaderName, label), + labelError: (label) => labelError(loaderName, label), }; diff --git a/src/Loader/Preprocessors/Pug/filters/highlight.js b/src/Loader/Preprocessors/Pug/filters/highlight.js index 1a29ddaf..636fe553 100644 --- a/src/Loader/Preprocessors/Pug/filters/highlight.js +++ b/src/Loader/Preprocessors/Pug/filters/highlight.js @@ -8,93 +8,16 @@ * Home */ -// Add the filter `highlight` in the options of pug loader: -// { -// test: /\.pug$/, -// loader: '@webdiscus/pug-loader', -// options: { -// embedFilters: { -// highlight: { -// verbose: true, // output process info in console -// use: '', // currently is supported the `prismjs` only -// }, -// }, -// }, -// }, +const highlight = require('../../../PreprocessorFilters/highlight'); -const { green, cyan } = require('ansis'); -const { labelError } = require('../Utils'); -const adapter = require('./highlight/adapter'); +class Filter { + static init(options) { + highlight.init(options); + } -const filterName = 'highlight'; -const filterLabelError = labelError(filterName); + static apply(content, options) { + return highlight.apply(content, options); + } +} -// for usage the `[]` chars in pug inline filter, the chars must be written as HTML entity -// e,g. the `#[:highlight(js) const arr = [1, 2];]` must be as `#[:highlight(js) const arr = [1, 2];]`, -// but for tokenize is needed to decode HTML entities in normal chars -const reservedChars = /[|]/g; -const charReplacements = { - '[': '[', - ']': ']', -}; - -/** - * Embedded filter highlight. - * @singleton - */ -const filter = { - name: filterName, - verbose: false, - - /** - * Initialize the filter. - * - * @param {boolean} verbose Display in console warnings and highlighting info. - * When a code is not highlighted enable it to show possible warnings by using not supported languages. - * @param {string} use The name of a using highlight npm module. The module must be installed. - * @public - * @api - */ - init({ verbose, use: moduleName }) { - if (adapter.isInitialized()) return; - - this.verbose = verbose === true; - - if (!moduleName || !adapter.isSupported(moduleName)) { - const error = - `\n${filterLabelError} In webpack config is used unsupported highlight module ${cyan(moduleName)}.\n` + - `Supported modules: ` + - green(adapter.getNamesOfSupportedModules().join(', ')) + - '.'; - throw new Error(error); - } - - adapter.init({ - verbose: this.verbose, - use: moduleName, - }); - }, - - /** - * Apply the filter. - * - * @param {string} text - * @param {{language: {string}, value: {any}}} options - * @returns {string} - * @public - * @api - */ - apply(text, options) { - let [language] = Object.keys(options); - - // if first item of options is `filename` then no language was defined in filter - language = language !== 'filename' ? language.toLowerCase() : null; - - // supports for `[]` chars in pug inline filter - text = text.replace(reservedChars, (str) => charReplacements[str]); - - return language ? adapter.highlight(text, language) : adapter.highlightAll(text); - }, -}; - -module.exports = filter; +module.exports = Filter; diff --git a/src/Loader/Preprocessors/Pug/filters/markdown.js b/src/Loader/Preprocessors/Pug/filters/markdown.js index a099d735..9a447814 100644 --- a/src/Loader/Preprocessors/Pug/filters/markdown.js +++ b/src/Loader/Preprocessors/Pug/filters/markdown.js @@ -1,101 +1,13 @@ -const { resolveModule } = require('../../../Utils'); -const { loadNodeModuleException } = require('../Exeptions'); -const adapter = require('./highlight/adapter'); +const markdown = require('../../../PreprocessorFilters/markdown'); -/** - * Embedded filter markdown. - * @singleton - */ -const markdown = { - name: 'markdown', - moduleName: 'markdown-it', - module: null, - langPrefix: '', +class Filter { + static init(options) { + markdown.init(options); + } - /** - * Initialize the filter. - * - * @param {boolean} verbose Display in console warnings and highlighting info. - * When a code is not highlighted enable it to show possible warnings by using not supported languages. - * @param {{use: string, verbose: boolean} | null} highlight The name of a using highlight npm module. The module must be installed. - * @param {string} langPrefix CSS language prefix for fenced blocks of code. Can be useful for external highlighters. - * Use this option only if used external highlighters on frontend, in browser. - * If the option {highlight: {use: '...'}} is used then langPrefix is ignored. - * @param {boolean} github Apply github syntax styles. - * @public - * @api - */ - init({ highlight, langPrefix, github }) { - // TODO: cache module by webpack compiler (pro config) - //if (this.module != null) return; + static apply(content) { + return markdown.apply(content); + } +} - const moduleFile = resolveModule(this.moduleName); - - if (!moduleFile) { - loadNodeModuleException(this.moduleName); - } - - const MarkdownIt = require(moduleFile); - - this.github = github === true; - - let options = { - // enable HTML tags in markdown source - html: true, - }; - - if (highlight != null && highlight.use) { - adapter.init({ - verbose: highlight.verbose === true, - use: highlight.use, - }); - - langPrefix = adapter.getLangPrefix(); - options.highlight = (text, lang) => { - return `
` + adapter.highlight(text, lang) + '
'; - }; - } else if (langPrefix) { - options.highlight = (text, lang) => { - return `
` + text + '
'; - }; - } - - this.module = new MarkdownIt(options); - }, - - /** - * Apply the filter. - * - * @param {string} content - * @returns {string} - * @public - * @api - */ - apply(content) { - if (this.github) { - content = this.applyGithubSyntax(content); - } - - return this.module.render(content); - }, - - /** - * Apply github syntax styles for Note, Warning. - * - * @param {string} content - * @return {string} - */ - applyGithubSyntax(content) { - const match = /(\*\*Note\*\*|\*\*Warning\*\*)/g; - const replacements = { - '**Note**': - 'Note', - '**Warning**': - 'Warning', - }; - - return content.replace(match, (value) => replacements[value]); - }, -}; - -module.exports = markdown; +module.exports = Filter; diff --git a/src/Loader/Utils.js b/src/Loader/Utils.js index 6e88a0d1..176f7d3e 100644 --- a/src/Loader/Utils.js +++ b/src/Loader/Utils.js @@ -1,10 +1,15 @@ const path = require('path'); +const { green, yellow, red } = require('ansis'); // constants used for imported styles in JavaScript const baseUri = 'webpack://'; const urlPathPrefix = '/__HTML_BUNDLER_PLUGIN__/'; const cssLoaderName = 'HTMLBundlerCSSLoader'; +const labelInfo = (loaderName, label) => `\n${green`[${loaderName}${label ? ':' + label : ''}]`}`; +const labelWarn = (loaderName, label) => `\n${yellow`[${loaderName}${label ? ':' + label : ''}]`}`; +const labelError = (loaderName, label) => `\n${red`[${loaderName}${label ? ':' + label : ''}]`}`; + /** * Resolve absolute path to node module main file what can be dynamically required anywhere in code. * @@ -201,6 +206,9 @@ module.exports = { baseUri, urlPathPrefix, cssLoaderName, + labelInfo, + labelWarn, + labelError, hotUpdateFile: path.join(__dirname, 'Hmr/hot-update.js'), resolveModule, eachAsync, diff --git a/src/Loader/config.js b/src/Loader/config.js index 95f6fc35..eafde9ec 100644 --- a/src/Loader/config.js +++ b/src/Loader/config.js @@ -1,4 +1,4 @@ -const loaderName = 'html-bundler-webpack-loader'; +const loaderName = 'html-bundler:preprocessor'; module.exports = { loaderName, diff --git a/test/cases/_preprocessor/ejs-include-md/expected/code.html b/test/cases/_preprocessor/ejs-include-md/expected/code.html new file mode 100644 index 00000000..37064d49 --- /dev/null +++ b/test/cases/_preprocessor/ejs-include-md/expected/code.html @@ -0,0 +1,30 @@ + + + + Code + + + + + + + + + +

Highlighting code blocks

+

Highlight Ruby code:

+
```ruby
+require 'redcarpet'
+markdown = Redcarpet.new("Hello World!")
+puts markdown.to_html
+```
+
+

This will display the code block with syntax highlighting:

+
require 'redcarpet'
+markdown = Redcarpet.new("Hello World!")
+puts markdown.to_html
+
+ +
-= FOOTER =-
+ + diff --git a/test/cases/_preprocessor/ejs-include-md/expected/demo.html b/test/cases/_preprocessor/ejs-include-md/expected/demo.html new file mode 100644 index 00000000..6baa600e --- /dev/null +++ b/test/cases/_preprocessor/ejs-include-md/expected/demo.html @@ -0,0 +1,172 @@ + + + + Demo + + + + + + + + + +

Markdown demo

+

h1 Heading

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rule

+
+
---
+
+

Emphasis

+

This is bold text

+
**This is bold text**
+
+

This is italic text

+
_This is italic text_
+
+

Strikethrough

+
~~Strikethrough~~
+
+

Blockquotes

+
+

Blockquotes can also be nested...

+
+

...by using additional greater-than signs right next to each other...

+
+

...or with spaces between arrows.

+
+
+
+

GitHub Alerts

+

Alerts are a Markdown extension based on the blockquote syntax.

+

Five types of alerts are available:

+
> [!NOTE]
+> Useful information that users should know, even when skimming content.
+
+> [!TIP]
+> Helpful advice for doing things better or more easily.
+
+> [!IMPORTANT]
+> Key information users need to know to achieve their goal.
+
+> [!WARNING]
+> Urgent info that needs immediate user attention to avoid problems.
+
+> [!CAUTION]
+> Advises about risks or negative outcomes of certain actions.
+
+

Here are the rendered alerts:

+

Note

+Useful information that users should know, even when skimming content.

+
+

Tip

+Helpful advice for doing things better or more easily.

+
+

Important

+Key information users need to know to achieve their goal.

+
+

Warning

+Urgent info that needs immediate user attention to avoid problems.

+
+

Caution

+Advises about risks or negative outcomes of certain actions.

+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. Lorem ipsum dolor sit amet
  2. +
  3. Consectetur adipiscing elit
  4. +
  5. Integer molestie lorem at massa
  6. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
+line 1 of code
+line 2 of code
+line 3 of code
+
+

Block code "fences"

+
Sample text here...
+
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+
+

To display triple backticks in a fenced code block, wrap them inside quadruple backticks

+
```
+Look! You can see my backticks.
+```
+
+

Tables

+ + + + + + + + + + + + + + + + + + + + +
Left-alignedCenter-alignedRight-aligned
git statusgit statusgit status
git diffgit diffgit diff
+

Links

+

link with title

+
[link with title](ttps://github.com/webdiscus "title text!")
+
+

Images

+

External image URL

+
![Octocat](https://octodex.github.com/images/original.png "The Octocat original")
+
+

Octocat

+

Local image path using Webpack alias

+
![Image](@images/octocats/plumber.webp "The plumber")
+
+

Image

+ +
-= FOOTER =-
+ + diff --git a/test/cases/_preprocessor/ejs-include-md/expected/img/plumber.6c89dfc3.webp b/test/cases/_preprocessor/ejs-include-md/expected/img/plumber.6c89dfc3.webp new file mode 100644 index 0000000000000000000000000000000000000000..e4bf5a4402c0c495f0eb1064c59f30abb045cf70 GIT binary patch literal 6692 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 footerText %> \ No newline at end of file diff --git a/test/cases/_preprocessor/ejs-include-md/src/index.ejs b/test/cases/_preprocessor/ejs-include-md/src/index.ejs new file mode 100644 index 00000000..b152a97e --- /dev/null +++ b/test/cases/_preprocessor/ejs-include-md/src/index.ejs @@ -0,0 +1,17 @@ + + + + <%= title %> + + + + + + + + + + <%- include(markdownFile); %> + <%- include('./footer.html', {footerText: '-= FOOTER =-'}); %> + + diff --git a/test/cases/_preprocessor/ejs-include-md/src/markdown/code.md b/test/cases/_preprocessor/ejs-include-md/src/markdown/code.md new file mode 100644 index 00000000..8f099b6a --- /dev/null +++ b/test/cases/_preprocessor/ejs-include-md/src/markdown/code.md @@ -0,0 +1,17 @@ +# Highlighting code blocks + +Highlight `Ruby` code: +```` +```ruby +require 'redcarpet' +markdown = Redcarpet.new("Hello World!") +puts markdown.to_html +``` +```` + +This will display the code block with syntax highlighting: +```ruby +require 'redcarpet' +markdown = Redcarpet.new("Hello World!") +puts markdown.to_html +``` diff --git a/test/cases/_preprocessor/ejs-include-md/src/markdown/demo.md b/test/cases/_preprocessor/ejs-include-md/src/markdown/demo.md new file mode 100644 index 00000000..9bafc5f2 --- /dev/null +++ b/test/cases/_preprocessor/ejs-include-md/src/markdown/demo.md @@ -0,0 +1,171 @@ +# Markdown demo + +# h1 Heading +## h2 Heading +### h3 Heading +#### h4 Heading +##### h5 Heading +###### h6 Heading + + +## Horizontal Rule + +--- +``` +--- +``` + +## Emphasis + +**This is bold text** +``` +**This is bold text** +``` + +_This is italic text_ +``` +_This is italic text_ +``` + +~~Strikethrough~~ +``` +~~Strikethrough~~ +``` + + +## Blockquotes + +> Blockquotes can also be nested... +>> ...by using additional greater-than signs right next to each other... +> > > ...or with spaces between arrows. + +## GitHub Alerts + +Alerts are a Markdown extension based on the blockquote syntax. + +Five types of alerts are available: +``` +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. +``` + +Here are the rendered alerts: + +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. + +## Lists + +Unordered + ++ Create a list by starting a line with `+`, `-`, or `*` ++ Sub-lists are made by indenting 2 spaces: + - Marker character change forces new list start: + * Ac tristique libero volutpat at + + Facilisis in pretium nisl aliquet + - Nulla volutpat aliquam velit ++ Very easy! + +Ordered + +1. Lorem ipsum dolor sit amet +2. Consectetur adipiscing elit +3. Integer molestie lorem at massa + +Start numbering with offset: + +57. foo +1. bar + + +## Code + +Inline `code` + +Indented code + + // Some comments + line 1 of code + line 2 of code + line 3 of code + + +Block code "fences" + +``` +Sample text here... +``` + +Syntax highlighting + +```js +var foo = function (bar) { + return bar++; +}; + +console.log(foo(5)); +``` + +To display triple backticks in a fenced code block, wrap them inside quadruple backticks +```` +``` +Look! You can see my backticks. +``` +```` + +## Tables + +| Left-aligned | Center-aligned | Right-aligned | +| :--- | :---: | ---: | +| git status | git status | git status | +| git diff | git diff | git diff | + +## Links + +[link with title](ttps://github.com/webdiscus "title text!") + +```md +[link with title](ttps://github.com/webdiscus "title text!") +``` + + +## Images + +External image URL + +```md +![Octocat](https://octodex.github.com/images/original.png "The Octocat original") +``` +![Octocat](https://octodex.github.com/images/original.png "The Octocat original") + +Local image path using Webpack alias + +```md +![Image](@images/octocats/plumber.webp "The plumber") +``` + +![Image](@images/octocats/plumber.webp "The plumber") diff --git a/test/cases/_preprocessor/ejs-include-md/src/style.css b/test/cases/_preprocessor/ejs-include-md/src/style.css new file mode 100644 index 00000000..da6914e6 --- /dev/null +++ b/test/cases/_preprocessor/ejs-include-md/src/style.css @@ -0,0 +1,17 @@ +/* The container styles of your rendered Markdown */ + +.markdown-body { + box-sizing: border-box; + min-width: 200px; + max-width: 980px; + margin: 0 auto; + padding: 45px; +} + +@media (max-width: 767px) { + .markdown-body { + padding: 15px; + } +} + +/* GitHub Alerts */ diff --git a/test/cases/_preprocessor/ejs-include-md/webpack.config.js b/test/cases/_preprocessor/ejs-include-md/webpack.config.js new file mode 100644 index 00000000..97cf0699 --- /dev/null +++ b/test/cases/_preprocessor/ejs-include-md/webpack.config.js @@ -0,0 +1,56 @@ +const path = require('path'); +const HtmlBundlerPlugin = require('@test/html-bundler-webpack-plugin'); + +module.exports = { + mode: 'production', + + output: { + path: path.join(__dirname, 'dist/'), + }, + + resolve: { + alias: { + '@images': path.join(__dirname, '../../../fixtures/images'), + }, + }, + + plugins: [ + new HtmlBundlerPlugin({ + entry: [ + { + import: 'src/index.ejs', + filename: 'demo.html', + data: { + title: 'Demo', + markdownFile: '/src/markdown/demo.md', // path relative to project directory + }, + }, + { + import: 'src/index.ejs', + filename: 'code.html', + data: { + title: 'Code', + markdownFile: '/src/markdown/code.md', // path relative to project directory + }, + }, + ], + preprocessor: 'ejs', + }), + ], + + module: { + rules: [ + { + test: /\.css$/, + use: ['css-loader'], + }, + { + test: /\.(png|svg|jpe?g|webp)$/i, + type: 'asset/resource', + generator: { + filename: 'img/[name].[hash:8][ext]', + }, + }, + ], + }, +}; diff --git a/test/cases/_preprocessor/eta-include-md/expected/code.html b/test/cases/_preprocessor/eta-include-md/expected/code.html new file mode 100644 index 00000000..e294b092 --- /dev/null +++ b/test/cases/_preprocessor/eta-include-md/expected/code.html @@ -0,0 +1,28 @@ + + + + Code + + + + + + + + + +

Highlighting code blocks

+

Highlight Ruby code:

+
```ruby
+require 'redcarpet'
+markdown = Redcarpet.new("Hello World!")
+puts markdown.to_html
+```
+
+

This will display the code block with syntax highlighting:

+
require 'redcarpet'
+markdown = Redcarpet.new("Hello World!")
+puts markdown.to_html
+
+
-= FOOTER =-
+ \ No newline at end of file diff --git a/test/cases/_preprocessor/eta-include-md/expected/demo.html b/test/cases/_preprocessor/eta-include-md/expected/demo.html new file mode 100644 index 00000000..4e7b9963 --- /dev/null +++ b/test/cases/_preprocessor/eta-include-md/expected/demo.html @@ -0,0 +1,170 @@ + + + + Demo + + + + + + + + + +

Markdown demo

+

h1 Heading

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rule

+
+
---
+
+

Emphasis

+

This is bold text

+
**This is bold text**
+
+

This is italic text

+
_This is italic text_
+
+

Strikethrough

+
~~Strikethrough~~
+
+

Blockquotes

+
+

Blockquotes can also be nested...

+
+

...by using additional greater-than signs right next to each other...

+
+

...or with spaces between arrows.

+
+
+
+

GitHub Alerts

+

Alerts are a Markdown extension based on the blockquote syntax.

+

Five types of alerts are available:

+
> [!NOTE]
+> Useful information that users should know, even when skimming content.
+
+> [!TIP]
+> Helpful advice for doing things better or more easily.
+
+> [!IMPORTANT]
+> Key information users need to know to achieve their goal.
+
+> [!WARNING]
+> Urgent info that needs immediate user attention to avoid problems.
+
+> [!CAUTION]
+> Advises about risks or negative outcomes of certain actions.
+
+

Here are the rendered alerts:

+

Note

+Useful information that users should know, even when skimming content.

+
+

Tip

+Helpful advice for doing things better or more easily.

+
+

Important

+Key information users need to know to achieve their goal.

+
+

Warning

+Urgent info that needs immediate user attention to avoid problems.

+
+

Caution

+Advises about risks or negative outcomes of certain actions.

+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. Lorem ipsum dolor sit amet
  2. +
  3. Consectetur adipiscing elit
  4. +
  5. Integer molestie lorem at massa
  6. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
+line 1 of code
+line 2 of code
+line 3 of code
+
+

Block code "fences"

+
Sample text here...
+
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+
+

To display triple backticks in a fenced code block, wrap them inside quadruple backticks

+
```
+Look! You can see my backticks.
+```
+
+

Tables

+ + + + + + + + + + + + + + + + + + + + +
Left-alignedCenter-alignedRight-aligned
git statusgit statusgit status
git diffgit diffgit diff
+

Links

+

link with title

+
[link with title](ttps://github.com/webdiscus "title text!")
+
+

Images

+

External image URL

+
![Octocat](https://octodex.github.com/images/original.png "The Octocat original")
+
+

Octocat

+

Local image path using Webpack alias

+
![Image](@images/octocats/plumber.webp "The plumber")
+
+

Image

+
-= FOOTER =-
+ \ No newline at end of file diff --git a/test/cases/_preprocessor/eta-include-md/expected/img/plumber.6c89dfc3.webp b/test/cases/_preprocessor/eta-include-md/expected/img/plumber.6c89dfc3.webp new file mode 100644 index 0000000000000000000000000000000000000000..e4bf5a4402c0c495f0eb1064c59f30abb045cf70 GIT binary patch literal 6692 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 footerText %> \ No newline at end of file diff --git a/test/cases/_preprocessor/eta-include-md/src/index.html b/test/cases/_preprocessor/eta-include-md/src/index.html new file mode 100644 index 00000000..e68ae3a7 --- /dev/null +++ b/test/cases/_preprocessor/eta-include-md/src/index.html @@ -0,0 +1,17 @@ + + + + <%= title %> + + + + + + + + + + <%~ include(markdownFile); %> + <%~ include('/src/footer.html', {footerText: '-= FOOTER =-'}); %> + + \ No newline at end of file diff --git a/test/cases/_preprocessor/eta-include-md/src/markdown/code.md b/test/cases/_preprocessor/eta-include-md/src/markdown/code.md new file mode 100644 index 00000000..8f099b6a --- /dev/null +++ b/test/cases/_preprocessor/eta-include-md/src/markdown/code.md @@ -0,0 +1,17 @@ +# Highlighting code blocks + +Highlight `Ruby` code: +```` +```ruby +require 'redcarpet' +markdown = Redcarpet.new("Hello World!") +puts markdown.to_html +``` +```` + +This will display the code block with syntax highlighting: +```ruby +require 'redcarpet' +markdown = Redcarpet.new("Hello World!") +puts markdown.to_html +``` diff --git a/test/cases/_preprocessor/eta-include-md/src/markdown/demo.md b/test/cases/_preprocessor/eta-include-md/src/markdown/demo.md new file mode 100644 index 00000000..9bafc5f2 --- /dev/null +++ b/test/cases/_preprocessor/eta-include-md/src/markdown/demo.md @@ -0,0 +1,171 @@ +# Markdown demo + +# h1 Heading +## h2 Heading +### h3 Heading +#### h4 Heading +##### h5 Heading +###### h6 Heading + + +## Horizontal Rule + +--- +``` +--- +``` + +## Emphasis + +**This is bold text** +``` +**This is bold text** +``` + +_This is italic text_ +``` +_This is italic text_ +``` + +~~Strikethrough~~ +``` +~~Strikethrough~~ +``` + + +## Blockquotes + +> Blockquotes can also be nested... +>> ...by using additional greater-than signs right next to each other... +> > > ...or with spaces between arrows. + +## GitHub Alerts + +Alerts are a Markdown extension based on the blockquote syntax. + +Five types of alerts are available: +``` +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. +``` + +Here are the rendered alerts: + +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. + +## Lists + +Unordered + ++ Create a list by starting a line with `+`, `-`, or `*` ++ Sub-lists are made by indenting 2 spaces: + - Marker character change forces new list start: + * Ac tristique libero volutpat at + + Facilisis in pretium nisl aliquet + - Nulla volutpat aliquam velit ++ Very easy! + +Ordered + +1. Lorem ipsum dolor sit amet +2. Consectetur adipiscing elit +3. Integer molestie lorem at massa + +Start numbering with offset: + +57. foo +1. bar + + +## Code + +Inline `code` + +Indented code + + // Some comments + line 1 of code + line 2 of code + line 3 of code + + +Block code "fences" + +``` +Sample text here... +``` + +Syntax highlighting + +```js +var foo = function (bar) { + return bar++; +}; + +console.log(foo(5)); +``` + +To display triple backticks in a fenced code block, wrap them inside quadruple backticks +```` +``` +Look! You can see my backticks. +``` +```` + +## Tables + +| Left-aligned | Center-aligned | Right-aligned | +| :--- | :---: | ---: | +| git status | git status | git status | +| git diff | git diff | git diff | + +## Links + +[link with title](ttps://github.com/webdiscus "title text!") + +```md +[link with title](ttps://github.com/webdiscus "title text!") +``` + + +## Images + +External image URL + +```md +![Octocat](https://octodex.github.com/images/original.png "The Octocat original") +``` +![Octocat](https://octodex.github.com/images/original.png "The Octocat original") + +Local image path using Webpack alias + +```md +![Image](@images/octocats/plumber.webp "The plumber") +``` + +![Image](@images/octocats/plumber.webp "The plumber") diff --git a/test/cases/_preprocessor/eta-include-md/src/style.css b/test/cases/_preprocessor/eta-include-md/src/style.css new file mode 100644 index 00000000..da6914e6 --- /dev/null +++ b/test/cases/_preprocessor/eta-include-md/src/style.css @@ -0,0 +1,17 @@ +/* The container styles of your rendered Markdown */ + +.markdown-body { + box-sizing: border-box; + min-width: 200px; + max-width: 980px; + margin: 0 auto; + padding: 45px; +} + +@media (max-width: 767px) { + .markdown-body { + padding: 15px; + } +} + +/* GitHub Alerts */ diff --git a/test/cases/_preprocessor/eta-include-md/webpack.config.js b/test/cases/_preprocessor/eta-include-md/webpack.config.js new file mode 100644 index 00000000..d072c222 --- /dev/null +++ b/test/cases/_preprocessor/eta-include-md/webpack.config.js @@ -0,0 +1,55 @@ +const path = require('path'); +const HtmlBundlerPlugin = require('@test/html-bundler-webpack-plugin'); + +module.exports = { + mode: 'production', + + output: { + path: path.join(__dirname, 'dist/'), + }, + + resolve: { + alias: { + '@images': path.join(__dirname, '../../../fixtures/images'), + }, + }, + + plugins: [ + new HtmlBundlerPlugin({ + entry: [ + { + import: 'src/index.html', + filename: 'demo.html', + data: { + title: 'Demo', + markdownFile: 'src/markdown/demo.md', // path relative to project directory + }, + }, + { + import: 'src/index.html', + filename: 'code.html', + data: { + title: 'Code', + markdownFile: 'src/markdown/code.md', // path relative to project directory + }, + }, + ], + }), + ], + + module: { + rules: [ + { + test: /\.css$/, + use: ['css-loader'], + }, + { + test: /\.(png|svg|jpe?g|webp)$/i, + type: 'asset/resource', + generator: { + filename: 'img/[name].[hash:8][ext]', + }, + }, + ], + }, +}; diff --git a/test/cases/_preprocessor/handlebars-include-md/expected/code.html b/test/cases/_preprocessor/handlebars-include-md/expected/code.html new file mode 100644 index 00000000..d85e19bf --- /dev/null +++ b/test/cases/_preprocessor/handlebars-include-md/expected/code.html @@ -0,0 +1,29 @@ + + + + Code + + + + + + + + + +

Highlighting code blocks

+

Highlight Ruby code:

+
```ruby
+require 'redcarpet'
+markdown = Redcarpet.new("Hello World!")
+puts markdown.to_html
+```
+
+

This will display the code block with syntax highlighting:

+
require 'redcarpet'
+markdown = Redcarpet.new("Hello World!")
+puts markdown.to_html
+
+ + + diff --git a/test/cases/_preprocessor/handlebars-include-md/expected/demo.html b/test/cases/_preprocessor/handlebars-include-md/expected/demo.html new file mode 100644 index 00000000..9c691e98 --- /dev/null +++ b/test/cases/_preprocessor/handlebars-include-md/expected/demo.html @@ -0,0 +1,171 @@ + + + + Demo + + + + + + + + + +

Markdown demo

+

h1 Heading

+

h2 Heading

+

h3 Heading

+

h4 Heading

+
h5 Heading
+
h6 Heading
+

Horizontal Rule

+
+
---
+
+

Emphasis

+

This is bold text

+
**This is bold text**
+
+

This is italic text

+
_This is italic text_
+
+

Strikethrough

+
~~Strikethrough~~
+
+

Blockquotes

+
+

Blockquotes can also be nested...

+
+

...by using additional greater-than signs right next to each other...

+
+

...or with spaces between arrows.

+
+
+
+

GitHub Alerts

+

Alerts are a Markdown extension based on the blockquote syntax.

+

Five types of alerts are available:

+
> [!NOTE]
+> Useful information that users should know, even when skimming content.
+
+> [!TIP]
+> Helpful advice for doing things better or more easily.
+
+> [!IMPORTANT]
+> Key information users need to know to achieve their goal.
+
+> [!WARNING]
+> Urgent info that needs immediate user attention to avoid problems.
+
+> [!CAUTION]
+> Advises about risks or negative outcomes of certain actions.
+
+

Here are the rendered alerts:

+

Note

+Useful information that users should know, even when skimming content.

+
+

Tip

+Helpful advice for doing things better or more easily.

+
+

Important

+Key information users need to know to achieve their goal.

+
+

Warning

+Urgent info that needs immediate user attention to avoid problems.

+
+

Caution

+Advises about risks or negative outcomes of certain actions.

+
+

Lists

+

Unordered

+
    +
  • Create a list by starting a line with +, -, or *
  • +
  • Sub-lists are made by indenting 2 spaces: +
      +
    • Marker character change forces new list start: +
        +
      • Ac tristique libero volutpat at
      • +
      +
        +
      • Facilisis in pretium nisl aliquet
      • +
      +
        +
      • Nulla volutpat aliquam velit
      • +
      +
    • +
    +
  • +
  • Very easy!
  • +
+

Ordered

+
    +
  1. Lorem ipsum dolor sit amet
  2. +
  3. Consectetur adipiscing elit
  4. +
  5. Integer molestie lorem at massa
  6. +
+

Start numbering with offset:

+
    +
  1. foo
  2. +
  3. bar
  4. +
+

Code

+

Inline code

+

Indented code

+
// Some comments
+line 1 of code
+line 2 of code
+line 3 of code
+
+

Block code "fences"

+
Sample text here...
+
+

Syntax highlighting

+
var foo = function (bar) {
+  return bar++;
+};
+
+console.log(foo(5));
+
+

To display triple backticks in a fenced code block, wrap them inside quadruple backticks

+
```
+Look! You can see my backticks.
+```
+
+

Tables

+ + + + + + + + + + + + + + + + + + + + +
Left-alignedCenter-alignedRight-aligned
git statusgit statusgit status
git diffgit diffgit diff
+

Links

+

link with title

+
[link with title](ttps://github.com/webdiscus "title text!")
+
+

Images

+

External image URL

+
![Octocat](https://octodex.github.com/images/original.png "The Octocat original")
+
+

Octocat

+

Local image path using Webpack alias

+
![Image](@images/octocats/plumber.webp "The plumber")
+
+

Image

+ + + diff --git a/test/cases/_preprocessor/handlebars-include-md/expected/img/plumber.6c89dfc3.webp b/test/cases/_preprocessor/handlebars-include-md/expected/img/plumber.6c89dfc3.webp new file mode 100644 index 0000000000000000000000000000000000000000..e4bf5a4402c0c495f0eb1064c59f30abb045cf70 GIT binary patch literal 6692 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 + + + {{title}} + + + + + + + + + + {{ include markdownFile }} + + diff --git a/test/cases/_preprocessor/handlebars-include-md/src/markdown/code.md b/test/cases/_preprocessor/handlebars-include-md/src/markdown/code.md new file mode 100644 index 00000000..8f099b6a --- /dev/null +++ b/test/cases/_preprocessor/handlebars-include-md/src/markdown/code.md @@ -0,0 +1,17 @@ +# Highlighting code blocks + +Highlight `Ruby` code: +```` +```ruby +require 'redcarpet' +markdown = Redcarpet.new("Hello World!") +puts markdown.to_html +``` +```` + +This will display the code block with syntax highlighting: +```ruby +require 'redcarpet' +markdown = Redcarpet.new("Hello World!") +puts markdown.to_html +``` diff --git a/test/cases/_preprocessor/handlebars-include-md/src/markdown/demo.md b/test/cases/_preprocessor/handlebars-include-md/src/markdown/demo.md new file mode 100644 index 00000000..9bafc5f2 --- /dev/null +++ b/test/cases/_preprocessor/handlebars-include-md/src/markdown/demo.md @@ -0,0 +1,171 @@ +# Markdown demo + +# h1 Heading +## h2 Heading +### h3 Heading +#### h4 Heading +##### h5 Heading +###### h6 Heading + + +## Horizontal Rule + +--- +``` +--- +``` + +## Emphasis + +**This is bold text** +``` +**This is bold text** +``` + +_This is italic text_ +``` +_This is italic text_ +``` + +~~Strikethrough~~ +``` +~~Strikethrough~~ +``` + + +## Blockquotes + +> Blockquotes can also be nested... +>> ...by using additional greater-than signs right next to each other... +> > > ...or with spaces between arrows. + +## GitHub Alerts + +Alerts are a Markdown extension based on the blockquote syntax. + +Five types of alerts are available: +``` +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. +``` + +Here are the rendered alerts: + +> [!NOTE] +> Useful information that users should know, even when skimming content. + +> [!TIP] +> Helpful advice for doing things better or more easily. + +> [!IMPORTANT] +> Key information users need to know to achieve their goal. + +> [!WARNING] +> Urgent info that needs immediate user attention to avoid problems. + +> [!CAUTION] +> Advises about risks or negative outcomes of certain actions. + +## Lists + +Unordered + ++ Create a list by starting a line with `+`, `-`, or `*` ++ Sub-lists are made by indenting 2 spaces: + - Marker character change forces new list start: + * Ac tristique libero volutpat at + + Facilisis in pretium nisl aliquet + - Nulla volutpat aliquam velit ++ Very easy! + +Ordered + +1. Lorem ipsum dolor sit amet +2. Consectetur adipiscing elit +3. Integer molestie lorem at massa + +Start numbering with offset: + +57. foo +1. bar + + +## Code + +Inline `code` + +Indented code + + // Some comments + line 1 of code + line 2 of code + line 3 of code + + +Block code "fences" + +``` +Sample text here... +``` + +Syntax highlighting + +```js +var foo = function (bar) { + return bar++; +}; + +console.log(foo(5)); +``` + +To display triple backticks in a fenced code block, wrap them inside quadruple backticks +```` +``` +Look! You can see my backticks. +``` +```` + +## Tables + +| Left-aligned | Center-aligned | Right-aligned | +| :--- | :---: | ---: | +| git status | git status | git status | +| git diff | git diff | git diff | + +## Links + +[link with title](ttps://github.com/webdiscus "title text!") + +```md +[link with title](ttps://github.com/webdiscus "title text!") +``` + + +## Images + +External image URL + +```md +![Octocat](https://octodex.github.com/images/original.png "The Octocat original") +``` +![Octocat](https://octodex.github.com/images/original.png "The Octocat original") + +Local image path using Webpack alias + +```md +![Image](@images/octocats/plumber.webp "The plumber") +``` + +![Image](@images/octocats/plumber.webp "The plumber") diff --git a/test/cases/_preprocessor/handlebars-include-md/src/style.css b/test/cases/_preprocessor/handlebars-include-md/src/style.css new file mode 100644 index 00000000..da6914e6 --- /dev/null +++ b/test/cases/_preprocessor/handlebars-include-md/src/style.css @@ -0,0 +1,17 @@ +/* The container styles of your rendered Markdown */ + +.markdown-body { + box-sizing: border-box; + min-width: 200px; + max-width: 980px; + margin: 0 auto; + padding: 45px; +} + +@media (max-width: 767px) { + .markdown-body { + padding: 15px; + } +} + +/* GitHub Alerts */ diff --git a/test/cases/_preprocessor/handlebars-include-md/webpack.config.js b/test/cases/_preprocessor/handlebars-include-md/webpack.config.js new file mode 100644 index 00000000..6a4d66a2 --- /dev/null +++ b/test/cases/_preprocessor/handlebars-include-md/webpack.config.js @@ -0,0 +1,63 @@ +const path = require('path'); +const HtmlBundlerPlugin = require('@test/html-bundler-webpack-plugin'); + +module.exports = { + mode: 'production', + + output: { + path: path.join(__dirname, 'dist/'), + clean: true, + }, + + resolve: { + alias: { + '@images': path.join(__dirname, '../../../fixtures/images'), + }, + }, + + plugins: [ + new HtmlBundlerPlugin({ + entry: [ + { + import: './src/index.hbs', + filename: 'demo.html', + data: { + title: 'Demo', + markdownFile: 'demo.md', // file relative to directory defined in `preprocessorOptions.views` option + }, + }, + { + import: './src/index.hbs', + filename: 'code.html', + data: { + title: 'Code', + markdownFile: path.join(__dirname, 'src/markdown/code.md'), // absolute file + }, + }, + ], + preprocessor: 'handlebars', + preprocessorOptions: { + views: [ + // path to the directory where *.md files will be searched + path.join(__dirname, 'src/markdown/'), + ], + }, + }), + ], + + module: { + rules: [ + { + test: /\.css$/, + use: ['css-loader'], + }, + { + test: /\.(png|svg|jpe?g|webp)$/i, + type: 'asset/resource', + generator: { + filename: 'img/[name].[hash:8][ext]', + }, + }, + ], + }, +}; diff --git a/test/cases/_pug/filter-highlight/webpack.config.js b/test/cases/_pug/filter-highlight/webpack.config.js index 181f4045..817d58de 100644 --- a/test/cases/_pug/filter-highlight/webpack.config.js +++ b/test/cases/_pug/filter-highlight/webpack.config.js @@ -18,8 +18,15 @@ module.exports = { preprocessorOptions: { embedFilters: { highlight: { - verbose: true, - use: 'prismjs', + //use: 'prismjs', + use: { + // the name of a using highlight npm module. + module: 'prismjs', + options: { + // display in console warnings and loaded dependencies + verbose: true, + }, + }, }, }, }, diff --git a/test/cases/_pug/filter-markdown/expected/output1/index.html b/test/cases/_pug/filter-markdown/expected/output1/index.html index 5d8e278c..cb5b290e 100644 --- a/test/cases/_pug/filter-markdown/expected/output1/index.html +++ b/test/cases/_pug/filter-markdown/expected/output1/index.html @@ -1,4 +1,4 @@ -

Hello World!

+

Hello World!

bold italic