From 89f6ec9d4dcbcbb1a66d56fe6bc127131ea7ef61 Mon Sep 17 00:00:00 2001 From: Kacper Krzywiec Date: Wed, 8 Jun 2022 12:03:48 +0200 Subject: [PATCH] chore: setup multi code examples in docs chore: setup multi code examples in docs #2 --- jest.eslint.config.js | 1 + website/gatsby-config.js | 31 +- website/package.json | 3 +- .../gatsby-theme-docs/overrides/.gitignore | 1 + .../overrides/markdown-components.js | 2 + .../code-examples/data-fetching/channels.js | 12 + .../code-examples/data-fetching/channels.tsx | 12 + .../src/content/development/data-fetching.mdx | 22 +- yarn.lock | 1017 ++++++----------- 9 files changed, 377 insertions(+), 724 deletions(-) create mode 100644 website/src/@commercetools-docs/gatsby-theme-docs/overrides/.gitignore create mode 100644 website/src/code-examples/data-fetching/channels.js create mode 100644 website/src/code-examples/data-fetching/channels.tsx diff --git a/jest.eslint.config.js b/jest.eslint.config.js index 631bcf498c..b8227ea1dd 100644 --- a/jest.eslint.config.js +++ b/jest.eslint.config.js @@ -12,6 +12,7 @@ module.exports = { 'dist/', 'public/', 'generated', + 'code-examples/', ], testMatch: ['/**/*.js', '/**/*.ts', '/**/*.tsx'], watchPlugins: [ diff --git a/website/gatsby-config.js b/website/gatsby-config.js index 11511fe6c0..f95b0d3f58 100644 --- a/website/gatsby-config.js +++ b/website/gatsby-config.js @@ -1,4 +1,7 @@ const colorPresets = require('@commercetools-docs/gatsby-theme-docs/color-presets'); +const { + configureThemeWithAddOns, +} = require('@commercetools-docs/gatsby-theme-docs/configure-theme'); module.exports = { // https://www.gatsbyjs.com/docs/reference/release-notes/v2.28/#feature-flags-in-gatsby-configjs @@ -19,21 +22,19 @@ module.exports = { }, plugins: [ // Docs theme - { - resolve: '@commercetools-docs/gatsby-theme-docs', - options: { - websiteKey: 'custom-applications', - colorPreset: colorPresets.merchantCenterDeveloperDocs.key, - beta: true, - excludeFromSearchIndex: false, - gaTrackingId: 'UA-38285631-3', - globalNotification: { - notificationType: 'info', - content: - 'This is the new documentation of Custom Applications. You can still visit the [legacy documentation](https://docs.commercetools.com/custom-applications/legacy) during the [migration](/migrating-from-project-level-custom-applications) from Project-level Custom Applications.', - }, - overrideDefaultConfigurationData: ['**/top-*'], + ...configureThemeWithAddOns({ + websiteKey: 'custom-applications', + colorPreset: colorPresets.merchantCenterDeveloperDocs.key, + beta: true, + excludeFromSearchIndex: false, + gaTrackingId: 'UA-38285631-3', + globalNotification: { + notificationType: 'info', + content: + 'This is the new documentation of Custom Applications. You can still visit the [legacy documentation](https://docs.commercetools.com/custom-applications/legacy) during the [migration](/migrating-from-project-level-custom-applications) from Project-level Custom Applications.', }, - }, + overrideDefaultConfigurationData: ['**/top-*'], + addOns: ['@commercetools-docs/gatsby-theme-code-examples'], + }), ], }; diff --git a/website/package.json b/website/package.json index 70dc38e7b5..6d500b389d 100644 --- a/website/package.json +++ b/website/package.json @@ -11,7 +11,8 @@ "generate-icons": "svgr -d src/icons/generated -- src/icons/svg && prettier --write '**/generated/*.js'" }, "dependencies": { - "@commercetools-docs/gatsby-theme-docs": "18.6.0", + "@commercetools-docs/gatsby-theme-code-examples": "19.0.0", + "@commercetools-docs/gatsby-theme-docs": "19.0.1", "@commercetools-docs/ui-kit": "18.6.0", "@commercetools-uikit/card": "^15.0.0", "@commercetools-uikit/spacings-inline": "^15.0.0", diff --git a/website/src/@commercetools-docs/gatsby-theme-docs/overrides/.gitignore b/website/src/@commercetools-docs/gatsby-theme-docs/overrides/.gitignore new file mode 100644 index 0000000000..981f3c8dd1 --- /dev/null +++ b/website/src/@commercetools-docs/gatsby-theme-docs/overrides/.gitignore @@ -0,0 +1 @@ +addon-components.js \ No newline at end of file diff --git a/website/src/@commercetools-docs/gatsby-theme-docs/overrides/markdown-components.js b/website/src/@commercetools-docs/gatsby-theme-docs/overrides/markdown-components.js index 4af8f0f3d3..1d7ea006b3 100644 --- a/website/src/@commercetools-docs/gatsby-theme-docs/overrides/markdown-components.js +++ b/website/src/@commercetools-docs/gatsby-theme-docs/overrides/markdown-components.js @@ -1,9 +1,11 @@ import { BetaFlag } from '@commercetools-docs/gatsby-theme-docs'; import Playground from '../../../components/playground'; +import addonComponents from './addon-components'; const markdownComponents = { Playground, BetaFlag, + ...addonComponents, }; export default markdownComponents; diff --git a/website/src/code-examples/data-fetching/channels.js b/website/src/code-examples/data-fetching/channels.js new file mode 100644 index 0000000000..35c7b9f2e8 --- /dev/null +++ b/website/src/code-examples/data-fetching/channels.js @@ -0,0 +1,12 @@ +import { useQuery } from '@apollo/client/react'; +import { GRAPHQL_TARGETS } from '@commercetools-frontend/constants'; + +const Channels = (props) => { + const { data } = useQuery(FetchChannelsQuery, { + context: { + target: GRAPHQL_TARGETS.COMMERCETOOLS_PLATFORM, + }, + }); + + return
{/* Do something with `data` */}
; +}; diff --git a/website/src/code-examples/data-fetching/channels.tsx b/website/src/code-examples/data-fetching/channels.tsx new file mode 100644 index 0000000000..35c7b9f2e8 --- /dev/null +++ b/website/src/code-examples/data-fetching/channels.tsx @@ -0,0 +1,12 @@ +import { useQuery } from '@apollo/client/react'; +import { GRAPHQL_TARGETS } from '@commercetools-frontend/constants'; + +const Channels = (props) => { + const { data } = useQuery(FetchChannelsQuery, { + context: { + target: GRAPHQL_TARGETS.COMMERCETOOLS_PLATFORM, + }, + }); + + return
{/* Do something with `data` */}
; +}; diff --git a/website/src/content/development/data-fetching.mdx b/website/src/content/development/data-fetching.mdx index 38e460c2c9..7a27655459 100644 --- a/website/src/content/development/data-fetching.mdx +++ b/website/src/content/development/data-fetching.mdx @@ -22,24 +22,10 @@ The Apollo Client provides some React hooks to [query data](https://www.apollogr Using the hooks in your React component is as simple as this: -```js title="channels.js" highlightLines="5-9" -import { useQuery } from '@apollo/client/react'; -import { GRAPHQL_TARGETS } from '@commercetools-frontend/constants'; - -const Channels = (props) => { - const { data } = useQuery(FetchChannelsQuery, { - context: { - target: GRAPHQL_TARGETS.COMMERCETOOLS_PLATFORM, - } - }); - - return ( -
- {/* Do something with `data` */} -
- ); -}; -``` + + + + Notice here that we define the `context.target`. This is how you configure the [GraphQL target for the Merchant Center API](/concepts/merchant-center-api#graphql). diff --git a/yarn.lock b/yarn.lock index 7cfeab1d64..9f1fb8ef17 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2023,6 +2023,15 @@ __metadata: languageName: node linkType: hard +"@babel/runtime@npm:^7.17.8": + version: 7.18.3 + resolution: "@babel/runtime@npm:7.18.3" + dependencies: + regenerator-runtime: ^0.13.4 + checksum: db8526226aa02cfa35a5a7ac1a34b5f303c62a1f000c7db48cb06c6290e616483e5036ab3c4e7a84d0f3be6d4e2148d5fe5cec9564bf955f505c3e764b83d7f1 + languageName: node + linkType: hard + "@babel/template@npm:^7.12.7, @babel/template@npm:^7.16.7, @babel/template@npm:^7.3.3": version: 7.16.7 resolution: "@babel/template@npm:7.16.7" @@ -2150,6 +2159,13 @@ __metadata: languageName: node linkType: hard +"@braintree/sanitize-url@npm:^6.0.0": + version: 6.0.0 + resolution: "@braintree/sanitize-url@npm:6.0.0" + checksum: 409ce7709dc1a0c67bc887d20af1becd4145d5c62cc5124b1c4c1f3ea2a8d69b0ee9f582d446469c6f5294b56442b99048cbbba6861dd5c834d4e019b95e1f40 + languageName: node + linkType: hard + "@changesets/apply-release-plan@npm:^6.0.0": version: 6.0.0 resolution: "@changesets/apply-release-plan@npm:6.0.0" @@ -2487,11 +2503,26 @@ __metadata: languageName: node linkType: hard -"@commercetools-docs/gatsby-theme-docs@npm:18.6.0": - version: 18.6.0 - resolution: "@commercetools-docs/gatsby-theme-docs@npm:18.6.0" +"@commercetools-docs/gatsby-theme-code-examples@npm:19.0.0": + version: 19.0.0 + resolution: "@commercetools-docs/gatsby-theme-code-examples@npm:19.0.0" dependencies: - "@commercetools-docs/ui-kit": 18.6.0 + "@commercetools-docs/ui-kit": 19.0.0 + prop-types: 15.8.1 + peerDependencies: + gatsby: 4.x + gatsby-source-filesystem: 4.x + react: 17.x + react-dom: 17.x + checksum: 357604804c43b45c2862d7d207a88e5f7325ead7257cd20b0b6f4a60b6b1cb2d5cbe99544e367ecd1806d4a5cd6d10b5705cc291ba785e9d480d6734336705e8 + languageName: node + linkType: hard + +"@commercetools-docs/gatsby-theme-docs@npm:19.0.1": + version: 19.0.1 + resolution: "@commercetools-docs/gatsby-theme-docs@npm:19.0.1" + dependencies: + "@commercetools-docs/ui-kit": 19.0.0 "@commercetools-uikit/card": ^14.0.1 "@commercetools-uikit/checkbox-input": ^14.0.2 "@commercetools-uikit/date-input": ^14.0.2 @@ -2516,25 +2547,25 @@ __metadata: assert: 2.0.0 cosmiconfig: ^7.0.0 docsearch.js: 2.6.3 - gatsby-plugin-emotion: 7.9.0 - gatsby-plugin-feed: 4.9.0 - gatsby-plugin-google-analytics: 4.9.0 + gatsby-plugin-emotion: 7.13.0 + gatsby-plugin-feed: 4.13.0 + gatsby-plugin-google-analytics: 4.13.0 gatsby-plugin-hubspot: 2.0.0 - gatsby-plugin-image: 2.9.0 - gatsby-plugin-manifest: 4.9.0 - gatsby-plugin-mdx: 3.9.0 + gatsby-plugin-image: 2.13.0 + gatsby-plugin-manifest: 4.13.0 + gatsby-plugin-mdx: 3.13.0 gatsby-plugin-meta-redirect: 1.1.1 - gatsby-plugin-react-helmet: 5.9.0 + gatsby-plugin-react-helmet: 5.13.0 gatsby-plugin-react-helmet-canonical-urls: 1.4.0 - gatsby-plugin-remove-trailing-slashes: 4.9.0 - gatsby-plugin-sharp: 4.9.0 - gatsby-plugin-webpack-bundle-analyser-v2: 1.1.26 - gatsby-remark-copy-linked-files: 5.9.0 - gatsby-remark-images: 6.9.0 + gatsby-plugin-remove-trailing-slashes: 4.13.0 + gatsby-plugin-sharp: 4.13.0 + gatsby-plugin-webpack-bundle-analyser-v2: 1.1.27 + gatsby-remark-copy-linked-files: 5.13.0 + gatsby-remark-images: 6.13.0 gatsby-remark-relative-images: 0.2.3 - gatsby-source-filesystem: 4.9.0 - gatsby-transformer-sharp: 4.9.0 - gatsby-transformer-yaml: 4.9.0 + gatsby-source-filesystem: 4.13.0 + gatsby-transformer-sharp: 4.13.0 + gatsby-transformer-yaml: 4.13.0 github-slugger: 1.4.0 hast-util-heading: 1.0.5 intersection-observer: 0.12.0 @@ -2546,7 +2577,7 @@ __metadata: qss: 2.0.3 raw-loader: 4.0.2 react-helmet: 6.1.0 - react-intersection-observer: 8.33.1 + react-intersection-observer: 9.1.0 react-intl: ^5.7.0 react-router-dom: 5.3.0 rehype-slug: 4.0.1 @@ -2563,7 +2594,7 @@ __metadata: react-dom: 17.x bin: create-docs-release-note: bin/create-release-note.js - checksum: c55f8b65213aab00b4b035104366c3a99a32fd526f89d1eb748e4f160acdb5369b558ea07dadfba382da52387d3ccf35c42d36acb510d47f1a659edc7c6e0589 + checksum: a265e8a37091b954810c72ef52bcf2e813b7dfc086f7d09350df8d7a1f4119331c65d0ccfc1b7dc9322df30df43598d8b2f1c133ff5f91ae8c50d4871772fc45 languageName: node linkType: hard @@ -2605,6 +2636,44 @@ __metadata: languageName: node linkType: hard +"@commercetools-docs/ui-kit@npm:19.0.0": + version: 19.0.0 + resolution: "@commercetools-docs/ui-kit@npm:19.0.0" + dependencies: + "@babel/runtime": ^7.16.7 + "@babel/runtime-corejs3": ^7.16.8 + "@commercetools-uikit/design-system": ^14.0.0 + "@commercetools-uikit/icons": ^14.0.1 + "@commercetools-uikit/loading-spinner": ^14.0.1 + "@commercetools-uikit/spacings-inline": ^14.0.1 + "@commercetools-uikit/tooltip": ^14.0.1 + "@emotion/react": ^11.7.1 + "@emotion/styled": ^11.6.0 + "@types/mdast": ^3.0.10 + "@types/unist": ^2.0.6 + lodash.escape: 4.0.1 + lodash.throttle: 4.1.1 + mermaid: 9.0.1 + murmurhash: 2.0.0 + prism-react-renderer: 1.3.1 + prop-types: 15.8.1 + react-intl: ^5.7.0 + react-is: 17.0.2 + rehype-react: 6.2.1 + remark-frontmatter: 3.0.0 + remark-parse: 9.0.0 + remark-rehype: 8.1.0 + swr: 1.2.2 + tiny-invariant: 1.2.0 + unified: 9.2.2 + unist-util-filter: 2.0.3 + peerDependencies: + react: 17.x + react-dom: 17.x + checksum: cb7c52821a9c230e0b276105170768087e1aab528797e9b08f449d984c1b424ef491273afa225e523952032fb7278e3f290f430c7142cf368f0622ad67a5f53b + languageName: node + linkType: hard + "@commercetools-docs/writing-style@npm:3.1.1": version: 3.1.1 resolution: "@commercetools-docs/writing-style@npm:3.1.1" @@ -4732,7 +4801,8 @@ __metadata: version: 0.0.0-use.local resolution: "@commercetools-website/custom-applications@workspace:website" dependencies: - "@commercetools-docs/gatsby-theme-docs": 18.6.0 + "@commercetools-docs/gatsby-theme-code-examples": 19.0.0 + "@commercetools-docs/gatsby-theme-docs": 19.0.1 "@commercetools-docs/ui-kit": 18.6.0 "@commercetools-uikit/card": ^15.0.0 "@commercetools-uikit/spacings-inline": ^15.0.0 @@ -6850,19 +6920,6 @@ __metadata: languageName: node linkType: hard -"@jimp/bmp@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/bmp@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - bmp-js: ^0.1.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 569b04af442c5c719f47acb9975eeb2ee93df119c03ea2255497e7f823dc2d36fb298b5796051107da0373ec77fe15fb815214431909711a04544b020abe890b - languageName: node - linkType: hard - "@jimp/bmp@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/bmp@npm:0.16.1" @@ -6876,25 +6933,6 @@ __metadata: languageName: node linkType: hard -"@jimp/core@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/core@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - any-base: ^1.1.0 - buffer: ^5.2.0 - exif-parser: ^0.1.12 - file-type: ^9.0.0 - load-bmfont: ^1.3.1 - mkdirp: ^0.5.1 - phin: ^2.9.1 - pixelmatch: ^4.0.2 - tinycolor2: ^1.4.1 - checksum: fdd1c72717522bccf1b72425154c35cdc999857c3f82f8150d370008399b5eef3d28bead9c078e32454055b4b1ee7a6f5d570707077904346e796aac289f78d0 - languageName: node - linkType: hard - "@jimp/core@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/core@npm:0.16.1" @@ -6914,16 +6952,6 @@ __metadata: languageName: node linkType: hard -"@jimp/custom@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/custom@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/core": ^0.14.0 - checksum: e72fe3ba41f60d9649236d700bbbc90fb04166d35ab6e2de0ab9bc2374c6d9342ac01f538f6070df647d9db5a740f67e6b4623901c5f565fcb4ec7986c7d720f - languageName: node - linkType: hard - "@jimp/custom@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/custom@npm:0.16.1" @@ -6934,20 +6962,6 @@ __metadata: languageName: node linkType: hard -"@jimp/gif@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/gif@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - gifwrap: ^0.9.2 - omggif: ^1.0.9 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 67ac904830ee67d0aa745a3f7069f7f66cb5470a2dbb91927ced6719d310014887652b94ee3603b6c1061272ae35f4f502131823483aee82dfacf73bda880c36 - languageName: node - linkType: hard - "@jimp/gif@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/gif@npm:0.16.1" @@ -6962,19 +6976,6 @@ __metadata: languageName: node linkType: hard -"@jimp/jpeg@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/jpeg@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - jpeg-js: ^0.4.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 1508548a77ac6dede795d511cacba6e024dcd38ec85fff93a5b9ad7581d711e0c9b52e2716a099ddfcbab7107ff9f4890bf516c765596df8f7b22e8fdea2b21a - languageName: node - linkType: hard - "@jimp/jpeg@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/jpeg@npm:0.16.1" @@ -6988,18 +6989,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-blit@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-blit@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 5155a13fd5b6afd405efff4623329c9b0e034f5bf83492db5d53d5ce66fbca50ba2a58dc334b8d2ef8fe7bafba203568b7b25a2d77bbe3dbc90a9e4f496e2336 - languageName: node - linkType: hard - "@jimp/plugin-blit@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-blit@npm:0.16.1" @@ -7012,18 +7001,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-blur@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-blur@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 7361ac1076c62526699f2cb1bc9e96e4f3dbb676b5ad4276e2a8c94efe4afd63bcd0c888cd2fc2021d4eb92408a73e6bef2f1d5b16f1cf1026c9fe2a7d6c295c - languageName: node - linkType: hard - "@jimp/plugin-blur@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-blur@npm:0.16.1" @@ -7036,18 +7013,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-circle@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-circle@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: e7a08d1527c09b131de10dc55885420ad388ac3670eb2ac99decc6828d1491fbbf564af046726f134daf23f304ffe0b087c4ef0d5ab2786286c498b05b5a4704 - languageName: node - linkType: hard - "@jimp/plugin-circle@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-circle@npm:0.16.1" @@ -7060,19 +7025,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-color@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-color@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - tinycolor2: ^1.4.1 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: d7b28ddbc96dc033b119af13c2a6e77e0bc1811d65262c04d5781163f4f3a53be4ef847761fca3388528053cde1c0a5e4f3bac3f8222b889514d0db111628a4f - languageName: node - linkType: hard - "@jimp/plugin-color@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-color@npm:0.16.1" @@ -7086,21 +7038,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-contain@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-contain@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - "@jimp/plugin-blit": ">=0.3.5" - "@jimp/plugin-resize": ">=0.3.5" - "@jimp/plugin-scale": ">=0.3.5" - checksum: 22c4cdd8c131098a665db573e4f11d27576f703adce6ea66e3bca00a34bf2004d3a9d6997dab63a66f46e70b2087399b8d7a520d821861528c20a536330a9426 - languageName: node - linkType: hard - "@jimp/plugin-contain@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-contain@npm:0.16.1" @@ -7116,21 +7053,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-cover@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-cover@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - "@jimp/plugin-crop": ">=0.3.5" - "@jimp/plugin-resize": ">=0.3.5" - "@jimp/plugin-scale": ">=0.3.5" - checksum: a825400df1b0c167cfb532014c0ca32a4ea2b80662c2d96973a4cd988b38dd1c62f1f28e5398160bb2914faf575ce8b632e9fd14c8e70970389c1916cc04a71e - languageName: node - linkType: hard - "@jimp/plugin-cover@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-cover@npm:0.16.1" @@ -7146,18 +7068,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-crop@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-crop@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 38e4fb98c1a643fc5c2e3c53846b7d2c1250a80e633ebdcdc698131159d74c18883d24da76a09cef881733524d2a25f696ff8507da101c411ad84412efd1628f - languageName: node - linkType: hard - "@jimp/plugin-crop@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-crop@npm:0.16.1" @@ -7170,18 +7080,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-displace@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-displace@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: d5efc1af31259ab3141e64c9a38cff47b5069a6a2972d9102b8cd82918bd4216dde2936fa24da41cea441e04a43d21c542c39150e7c141e5b3057952713a292c - languageName: node - linkType: hard - "@jimp/plugin-displace@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-displace@npm:0.16.1" @@ -7194,18 +7092,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-dither@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-dither@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 8e9a36071b77778b52521d0b444f1cc81bfa4c8a637ecb8a647d0730b9bf4c1f268e66f5fb4e640c3f70ed1f18ad77575e3fedd700021ae049dead4f5ae3eaee - languageName: node - linkType: hard - "@jimp/plugin-dither@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-dither@npm:0.16.1" @@ -7218,18 +7104,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-fisheye@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-fisheye@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: ae082d1eac097051b1b550442b1974f5777f77e58cc5951e2e14ed9e06f18871666ad5e4873f86920f6818b357da8a8d91220acc7dfc83a4376bc2eac269311f - languageName: node - linkType: hard - "@jimp/plugin-fisheye@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-fisheye@npm:0.16.1" @@ -7242,19 +7116,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-flip@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-flip@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - "@jimp/plugin-rotate": ">=0.3.5" - checksum: 736f17fe6ad1cdf52844963ccfc92031ff1c2deeadfa380aeab96753e97221f093598704a7a81342edda2c611a98dae0da8a89c3f2ba64c36d77d0221b9b8b40 - languageName: node - linkType: hard - "@jimp/plugin-flip@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-flip@npm:0.16.1" @@ -7268,18 +7129,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-gaussian@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-gaussian@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 44f23c7ce26921d242912d616e73cb57e667dfc9d6387f6ca1f34de18556adc52c49df125b91be275b1d8bfc1c24aa1fcc6d0290777c56eb9c2df32225163ec3 - languageName: node - linkType: hard - "@jimp/plugin-gaussian@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-gaussian@npm:0.16.1" @@ -7292,18 +7141,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-invert@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-invert@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 8b180fab06e48abdcc41645928b61b69b393b90c8c2d549fae32e0e2136db85fdd8138c3267873b2b6086e39ab25b80a464757af56dba8fbc04e9deb2620de3a - languageName: node - linkType: hard - "@jimp/plugin-invert@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-invert@npm:0.16.1" @@ -7316,18 +7153,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-mask@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-mask@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 9a110dca77da17e699b5d8d1254beab09beb3ebbd854287caaf7cc4e1e8866e6931eaf23e803a236dd94855d5e9cfd3e6bb420e2eb979dac48ce2f1e39d6dc4c - languageName: node - linkType: hard - "@jimp/plugin-mask@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-mask@npm:0.16.1" @@ -7340,18 +7165,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-normalize@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-normalize@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: d88b64eafebe41626880736e8a8ad5def6ee8bde339a97df16e36a4b14245dd0f8fba0332d49c50646a561a9c35a3e8ab3b20ac8e4431bcb206bd14ed8dece4f - languageName: node - linkType: hard - "@jimp/plugin-normalize@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-normalize@npm:0.16.1" @@ -7364,20 +7177,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-print@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-print@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - load-bmfont: ^1.4.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - "@jimp/plugin-blit": ">=0.3.5" - checksum: ccadcf8f38746a63930bdfa0fab94531f88a3db0cce1551463e9d51f1d8ca1cb523bc47b556758ec89cf91012387100e3a1e0d96bd2b7f83059cabd10ad2c98d - languageName: node - linkType: hard - "@jimp/plugin-print@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-print@npm:0.16.1" @@ -7392,18 +7191,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-resize@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-resize@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: a441c7e047e5a5821bb72a4176e2dfdb159c2215473e8b4519d3eb8ea5be2e7b7b1effe4af4df7776cb21a55bcd1296a09401b88fdc70cf3985801b64c6669bf - languageName: node - linkType: hard - "@jimp/plugin-resize@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-resize@npm:0.16.1" @@ -7416,21 +7203,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-rotate@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-rotate@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - "@jimp/plugin-blit": ">=0.3.5" - "@jimp/plugin-crop": ">=0.3.5" - "@jimp/plugin-resize": ">=0.3.5" - checksum: aba9eea50968c68e704c2335ee01a3a58c179fa0ebbbb6e3f52ae1e632e235d3795c23deab0c24accb627e6918dbfd9b0e1a58e1fc008a71167232508de5e95d - languageName: node - linkType: hard - "@jimp/plugin-rotate@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-rotate@npm:0.16.1" @@ -7446,19 +7218,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-scale@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-scale@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - "@jimp/plugin-resize": ">=0.3.5" - checksum: e236a8d80f2dc9052d891307aefc0e3680ed0461e6c82fffab4f474494694064d25c9ed087a4b81bac4e11a71a5a475bbc6bff1fcb9aafe667ea776ccdf9bb87 - languageName: node - linkType: hard - "@jimp/plugin-scale@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-scale@npm:0.16.1" @@ -7472,20 +7231,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-shadow@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-shadow@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - "@jimp/plugin-blur": ">=0.3.5" - "@jimp/plugin-resize": ">=0.3.5" - checksum: 6f037fdc807a5721daa1dd49bb908836b3fe06e5f7dbef58c784c4525409ab10bf8100843a4ffa078b994c29bee11f46dd9e461a3a8a34f5a7eddb82b34008e0 - languageName: node - linkType: hard - "@jimp/plugin-shadow@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-shadow@npm:0.16.1" @@ -7500,20 +7245,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugin-threshold@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugin-threshold@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - peerDependencies: - "@jimp/custom": ">=0.3.5" - "@jimp/plugin-color": ">=0.8.0" - "@jimp/plugin-resize": ">=0.8.0" - checksum: d904bc1e8c97f971c094f297cb7b64f713f8fcbc26a19a0b29be62c7f82459626790881174a91e661dd7502a9630a23737574b35eb96a153705e444be712129c - languageName: node - linkType: hard - "@jimp/plugin-threshold@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugin-threshold@npm:0.16.1" @@ -7528,39 +7259,6 @@ __metadata: languageName: node linkType: hard -"@jimp/plugins@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/plugins@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/plugin-blit": ^0.14.0 - "@jimp/plugin-blur": ^0.14.0 - "@jimp/plugin-circle": ^0.14.0 - "@jimp/plugin-color": ^0.14.0 - "@jimp/plugin-contain": ^0.14.0 - "@jimp/plugin-cover": ^0.14.0 - "@jimp/plugin-crop": ^0.14.0 - "@jimp/plugin-displace": ^0.14.0 - "@jimp/plugin-dither": ^0.14.0 - "@jimp/plugin-fisheye": ^0.14.0 - "@jimp/plugin-flip": ^0.14.0 - "@jimp/plugin-gaussian": ^0.14.0 - "@jimp/plugin-invert": ^0.14.0 - "@jimp/plugin-mask": ^0.14.0 - "@jimp/plugin-normalize": ^0.14.0 - "@jimp/plugin-print": ^0.14.0 - "@jimp/plugin-resize": ^0.14.0 - "@jimp/plugin-rotate": ^0.14.0 - "@jimp/plugin-scale": ^0.14.0 - "@jimp/plugin-shadow": ^0.14.0 - "@jimp/plugin-threshold": ^0.14.0 - timm: ^1.6.1 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 62f4809915db2ca36a34b98e2910dffa46b126ffafd959980115cbb0424331028bf0f649a84243dd09b21a26685b44febdde6a38bd9c78935d979ee91ac657c7 - languageName: node - linkType: hard - "@jimp/plugins@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/plugins@npm:0.16.1" @@ -7594,19 +7292,6 @@ __metadata: languageName: node linkType: hard -"@jimp/png@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/png@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/utils": ^0.14.0 - pngjs: ^3.3.3 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: dc2994e5b5c1bf73bd15b92c8afce37b9769c4b16a0b7404a894049dd16e64561c9f471d78cc622c728d17e1f4c79b6557fd1b561e0707202e4997656676fb47 - languageName: node - linkType: hard - "@jimp/png@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/png@npm:0.16.1" @@ -7620,18 +7305,6 @@ __metadata: languageName: node linkType: hard -"@jimp/tiff@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/tiff@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - utif: ^2.0.1 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: 0a71674458cae944649ba0e049341420bcf17c394a51bfc32a81cf95a719329d5a6038fcd6f020933ca8760eee0ecf22c86a7010a56f8f76422e1dc7575c04a6 - languageName: node - linkType: hard - "@jimp/tiff@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/tiff@npm:0.16.1" @@ -7644,23 +7317,6 @@ __metadata: languageName: node linkType: hard -"@jimp/types@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/types@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/bmp": ^0.14.0 - "@jimp/gif": ^0.14.0 - "@jimp/jpeg": ^0.14.0 - "@jimp/png": ^0.14.0 - "@jimp/tiff": ^0.14.0 - timm: ^1.6.1 - peerDependencies: - "@jimp/custom": ">=0.3.5" - checksum: b9d840a971867ba8a2d635e9862869faed0c5a3073ae5353d34542e5b043f86eece0fc7d96a790c369cf253ec930a90811cffb7bc8ff99f7d95e2a3f1d7e2efa - languageName: node - linkType: hard - "@jimp/types@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/types@npm:0.16.1" @@ -7678,16 +7334,6 @@ __metadata: languageName: node linkType: hard -"@jimp/utils@npm:^0.14.0": - version: 0.14.0 - resolution: "@jimp/utils@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - regenerator-runtime: ^0.13.3 - checksum: b9176d4b7b6c6fc1943c36fefbb0699ba9981a626192259566596f6c11e01cce56be2c85341abd042705ff1d9a6ebc021cf9e220a09579f9718fcd5b9c1cc6b3 - languageName: node - linkType: hard - "@jimp/utils@npm:^0.16.1": version: 0.16.1 resolution: "@jimp/utils@npm:0.16.1" @@ -11757,7 +11403,7 @@ __metadata: languageName: node linkType: hard -"ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.0, ansi-escapes@npm:^4.3.1": +"ansi-escapes@npm:^4.1.0, ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.0, ansi-escapes@npm:^4.3.1": version: 4.3.2 resolution: "ansi-escapes@npm:4.3.2" dependencies: @@ -11900,6 +11546,15 @@ __metadata: languageName: node linkType: hard +"app-path@npm:^3.2.0": + version: 3.3.0 + resolution: "app-path@npm:3.3.0" + dependencies: + execa: ^1.0.0 + checksum: 4a0f64c05b9033b96ddfc28067ec72b04903929e3bbdafd3309fa96b1ec77ded06613c84e984cffe043572ead0d257830077012bd36892bdbdb28a818e362ef0 + languageName: node + linkType: hard + "append-field@npm:^1.0.0": version: 1.0.0 resolution: "append-field@npm:1.0.0" @@ -12594,19 +12249,6 @@ __metadata: languageName: node linkType: hard -"babel-plugin-remove-graphql-queries@npm:^4.9.0": - version: 4.9.1 - resolution: "babel-plugin-remove-graphql-queries@npm:4.9.1" - dependencies: - "@babel/runtime": ^7.15.4 - gatsby-core-utils: ^3.9.1 - peerDependencies: - "@babel/core": ^7.0.0 - gatsby: ^4.0.0-next - checksum: c6fb7dce65f86a9e50007252546931661cca3dd8848bb02a8c2bacd978f37577c9fac237873606ecc5b92a5b5d8832e7f1057cd8ce60d40ca22f30dc5a9c814f - languageName: node - linkType: hard - "babel-plugin-syntax-trailing-function-commas@npm:^7.0.0-beta.0": version: 7.0.0-beta.0 resolution: "babel-plugin-syntax-trailing-function-commas@npm:7.0.0-beta.0" @@ -12805,7 +12447,7 @@ __metadata: languageName: node linkType: hard -"base64-js@npm:^1.3.0, base64-js@npm:^1.3.1": +"base64-js@npm:^1.3.0, base64-js@npm:^1.3.1, base64-js@npm:^1.5.1": version: 1.5.1 resolution: "base64-js@npm:1.5.1" checksum: 669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005 @@ -14211,16 +13853,6 @@ __metadata: languageName: node linkType: hard -"color@npm:^4.2.1": - version: 4.2.1 - resolution: "color@npm:4.2.1" - dependencies: - color-convert: ^2.0.1 - color-string: ^1.9.0 - checksum: 03fb3100a8ba457b45f3f9828f64e982d683f48c841e3d26a619bd88924fcc47f1124b2fdf3e4ae518c4129e9885c19052244ba1ea0b06d86beffc5f5e551d62 - languageName: node - linkType: hard - "color@npm:^4.2.3": version: 4.2.3 resolution: "color@npm:4.2.3" @@ -15274,6 +14906,22 @@ __metadata: languageName: node linkType: hard +"cypress-image-snapshot@npm:^4.0.1": + version: 4.0.1 + resolution: "cypress-image-snapshot@npm:4.0.1" + dependencies: + chalk: ^2.4.1 + fs-extra: ^7.0.1 + glob: ^7.1.3 + jest-image-snapshot: 4.2.0 + pkg-dir: ^3.0.0 + term-img: ^4.0.0 + peerDependencies: + cypress: ^4.5.0 + checksum: 0921e39acbd92f49d58c88e95b212148cc2b74d7fc5b08ab6bdfcfcc1601a74889ddde680504140a522d6b9674e8535eab813830ad853e1fb858dbac88607c6d + languageName: node + linkType: hard + "cypress@npm:9.6.1": version: 9.6.1 resolution: "cypress@npm:9.6.1" @@ -16271,7 +15919,7 @@ __metadata: languageName: node linkType: hard -"deepmerge@npm:^4.0.0, deepmerge@npm:^4.2.2": +"deepmerge@npm:^4.2.2": version: 4.2.2 resolution: "deepmerge@npm:4.2.2" checksum: a8c43a1ed8d6d1ed2b5bf569fa4c8eb9f0924034baf75d5d406e47e157a451075c4db353efea7b6bcc56ec48116a8ce72fccf867b6e078e7c561904b5897530b @@ -19663,7 +19311,7 @@ __metadata: languageName: node linkType: hard -"gatsby-core-utils@npm:^3.8.2, gatsby-core-utils@npm:^3.9.0, gatsby-core-utils@npm:^3.9.1": +"gatsby-core-utils@npm:^3.8.2": version: 3.9.1 resolution: "gatsby-core-utils@npm:3.9.1" dependencies: @@ -19778,51 +19426,37 @@ __metadata: languageName: node linkType: hard -"gatsby-plugin-emotion@npm:7.9.0": - version: 7.9.0 - resolution: "gatsby-plugin-emotion@npm:7.9.0" - dependencies: - "@babel/runtime": ^7.15.4 - "@emotion/babel-preset-css-prop": ^11.2.0 - peerDependencies: - "@babel/core": ^7.11.6 - "@emotion/react": ^11.0.0 - gatsby: ^4.0.0-next - checksum: de67c912dcc2a1dc6665b04f42d0be65c5a753f9c5f77cc07dbd366ea4bcb1906dac160e7bfe17aeb13b16a580982198d3215148d27661c2df35f9d2deb2e9d8 - languageName: node - linkType: hard - -"gatsby-plugin-feed@npm:4.9.0": - version: 4.9.0 - resolution: "gatsby-plugin-feed@npm:4.9.0" +"gatsby-plugin-feed@npm:4.13.0": + version: 4.13.0 + resolution: "gatsby-plugin-feed@npm:4.13.0" dependencies: "@babel/runtime": ^7.15.4 "@hapi/joi": ^15.1.1 common-tags: ^1.8.2 fs-extra: ^10.0.0 - gatsby-plugin-utils: ^3.3.0 + gatsby-plugin-utils: ^3.7.0 lodash.merge: ^4.6.2 rss: ^1.2.2 peerDependencies: gatsby: ^4.0.0-next - react: ^16.9.0 || ^17.0.0 - react-dom: ^16.9.0 || ^17.0.0 - checksum: 3c7f00685279046c1dbf9472992960afff17f167f8c1ce0a2ed4c957f2720f94b5cb4771f5928998a0009dd7ed27ac005a7ea5faee25649cbe3f5e2d7848bcf3 + react: ^16.9.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 + checksum: 89daff67daa77c33fb7a0af97ce3f238bff14e46465b632e0bad7f07e2e3b19e27446a042e1ea79324fd8bc44da4cd7149e641c95e8ba91d2671a9d79763f120 languageName: node linkType: hard -"gatsby-plugin-google-analytics@npm:4.9.0": - version: 4.9.0 - resolution: "gatsby-plugin-google-analytics@npm:4.9.0" +"gatsby-plugin-google-analytics@npm:4.13.0": + version: 4.13.0 + resolution: "gatsby-plugin-google-analytics@npm:4.13.0" dependencies: "@babel/runtime": ^7.15.4 minimatch: 3.0.4 web-vitals: ^1.1.2 peerDependencies: gatsby: ^4.0.0-next - react: ^16.9.0 || ^17.0.0 - react-dom: ^16.9.0 || ^17.0.0 - checksum: 5d69d7ac0c57ba5c22d9a76306abe74786f23a200e13a360b5fd4ee37c80633ee62128a0dcb79feab4bbd0dc289f35cebb59c838902d1499593a041274241b47 + react: ^16.9.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 + checksum: 851351b0bfb396f1ad3cc75a86e94e98c448ca11cc20ca519546d9ac691b7811a4939ca4cf18dbfff7ef8c4510eb1be71a5462e926b70517242b9a05d417d584 languageName: node linkType: hard @@ -19839,52 +19473,52 @@ __metadata: languageName: node linkType: hard -"gatsby-plugin-image@npm:2.9.0": - version: 2.9.0 - resolution: "gatsby-plugin-image@npm:2.9.0" +"gatsby-plugin-image@npm:2.13.0": + version: 2.13.0 + resolution: "gatsby-plugin-image@npm:2.13.0" dependencies: "@babel/code-frame": ^7.14.0 "@babel/parser": ^7.15.5 "@babel/runtime": ^7.15.4 "@babel/traverse": ^7.15.4 babel-jsx-utils: ^1.1.0 - babel-plugin-remove-graphql-queries: ^4.9.0 + babel-plugin-remove-graphql-queries: ^4.13.0 camelcase: ^5.3.1 chokidar: ^3.5.2 common-tags: ^1.8.2 fs-extra: ^10.0.0 - gatsby-core-utils: ^3.9.0 + gatsby-core-utils: ^3.13.0 objectFitPolyfill: ^2.3.5 - prop-types: ^15.7.2 + prop-types: ^15.8.1 peerDependencies: "@babel/core": ^7.12.3 gatsby: ^4.0.0-next gatsby-plugin-sharp: ^4.0.0-next gatsby-source-filesystem: ^4.0.0-next - react: ^16.9.0 || ^17.0.0 - react-dom: ^16.9.0 || ^17.0.0 - checksum: 5a5f4c69eea75ca6b9ecf6f4c9071a7e9b16bf2660a05c967c5cb40246d2248ccb2c4fccfa03681ec0a1040e00a48701ef68757f1313631031acd4aa6f38646c + react: ^16.9.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 + checksum: 1fba1449f8d6c3c079dbdcde85bb47b7d7ac5ba78bb8c031013dce53cb723e217356c548e83fad79d3f7196c1e80b691f6cbaf8457321d9298faaa97c130890e languageName: node linkType: hard -"gatsby-plugin-manifest@npm:4.9.0": - version: 4.9.0 - resolution: "gatsby-plugin-manifest@npm:4.9.0" +"gatsby-plugin-manifest@npm:4.13.0": + version: 4.13.0 + resolution: "gatsby-plugin-manifest@npm:4.13.0" dependencies: "@babel/runtime": ^7.15.4 - gatsby-core-utils: ^3.9.0 - gatsby-plugin-utils: ^3.3.0 + gatsby-core-utils: ^3.13.0 + gatsby-plugin-utils: ^3.7.0 semver: ^7.3.5 - sharp: ^0.30.1 + sharp: ^0.30.3 peerDependencies: gatsby: ^4.0.0-next - checksum: a9551474a9922608c6c94a83f9e51f05e0207c11bef03dbfb52086d35bd0b2e501c00576b37374318ebf33894eb7648dfd0212cef76fad398831983d1c9b7167 + checksum: 690c19e29932236b0a5e12ca3544e6bd6b6f47f0a743cd6ad6c490a929c1937550190ab620d24e52ee532d023aff2235fbb212999fadbb9181516265770d804d languageName: node linkType: hard -"gatsby-plugin-mdx@npm:3.9.0": - version: 3.9.0 - resolution: "gatsby-plugin-mdx@npm:3.9.0" +"gatsby-plugin-mdx@npm:3.13.0": + version: 3.13.0 + resolution: "gatsby-plugin-mdx@npm:3.13.0" dependencies: "@babel/core": ^7.15.5 "@babel/generator": ^7.15.4 @@ -19902,7 +19536,7 @@ __metadata: escape-string-regexp: ^1.0.5 eval: ^0.1.4 fs-extra: ^10.0.0 - gatsby-core-utils: ^3.9.0 + gatsby-core-utils: ^3.13.0 gray-matter: ^4.0.2 json5: ^2.1.3 loader-utils: ^1.4.0 @@ -19928,9 +19562,9 @@ __metadata: "@mdx-js/mdx": ^1.0.0 "@mdx-js/react": ^1.0.0 gatsby: ^4.0.0-next - react: ^16.9.0 || ^17.0.0 - react-dom: ^16.9.0 || ^17.0.0 - checksum: 3793b4e4cb4f60b403d48464133792b5996406977e4e9645ba2e8d485fcc1991d9be40bcc91589193c182ef9719f8d9d2a020db08e3d03691c1871749a0df305 + react: ^16.9.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 + checksum: 18a1bb23be0e3dd4c8c02a7db38761e4493c7990bb475b573a59f1ec949a1b4f809b320bd8bdc04055e69c8cc3f2dc51c59363e6e6f07bfde8d8b3de0a6417bb languageName: node linkType: hard @@ -19976,55 +19610,55 @@ __metadata: languageName: node linkType: hard -"gatsby-plugin-react-helmet@npm:5.9.0": - version: 5.9.0 - resolution: "gatsby-plugin-react-helmet@npm:5.9.0" +"gatsby-plugin-react-helmet@npm:5.13.0": + version: 5.13.0 + resolution: "gatsby-plugin-react-helmet@npm:5.13.0" dependencies: "@babel/runtime": ^7.15.4 peerDependencies: gatsby: ^4.0.0-next react-helmet: ^5.1.3 || ^6.0.0 - checksum: 0f73047aa9b6ed0b7b1d6f1cea1a3beac9eb17080555c2a286701ce3ff5f2a26d13a55c17cb6b75809d9076b79b7cff6eaa437b8c3acb045f758cd4cbcdd6884 + checksum: 29ed011c87eadaac7fb61efad8c0c341881c95f54612b805f7c78cb7c6666ba3241d25badd52f6d1310b38481e74cecbd1d0421ac3c53cef3dfcf63c9bafde4c languageName: node linkType: hard -"gatsby-plugin-remove-trailing-slashes@npm:4.9.0": - version: 4.9.0 - resolution: "gatsby-plugin-remove-trailing-slashes@npm:4.9.0" +"gatsby-plugin-remove-trailing-slashes@npm:4.13.0": + version: 4.13.0 + resolution: "gatsby-plugin-remove-trailing-slashes@npm:4.13.0" dependencies: "@babel/runtime": ^7.15.4 peerDependencies: gatsby: ^4.0.0-next - checksum: dd6bce886694a47121716b22f904923522aad3ec3145c4ed11b2a9c33242751509d5d9c329cf6061445141b62502ac7bb008fcae486d40eff5a9df77a41d7578 + checksum: fbad74d22d6523df3ca347e956eaeead5d47b1becaf071a6a9f68ef26d4b1361858f9bd375ad56466bd47dba09ccdb849b87d0b418afc81372a0b4371cb4cd87 languageName: node linkType: hard -"gatsby-plugin-sharp@npm:4.9.0": - version: 4.9.0 - resolution: "gatsby-plugin-sharp@npm:4.9.0" +"gatsby-plugin-sharp@npm:4.13.0": + version: 4.13.0 + resolution: "gatsby-plugin-sharp@npm:4.13.0" dependencies: "@babel/runtime": ^7.15.4 + "@gatsbyjs/potrace": ^2.2.0 async: ^3.2.3 bluebird: ^3.7.2 - debug: ^4.3.3 + debug: ^4.3.4 filenamify: ^4.3.0 fs-extra: ^10.0.0 - gatsby-core-utils: ^3.9.0 - gatsby-plugin-utils: ^3.3.0 - gatsby-telemetry: ^3.9.0 + gatsby-core-utils: ^3.13.0 + gatsby-plugin-utils: ^3.7.0 + gatsby-telemetry: ^3.13.0 got: ^11.8.3 lodash: ^4.17.21 - mini-svg-data-uri: ^1.4.3 - potrace: ^2.1.8 - probe-image-size: ^6.0.0 + mini-svg-data-uri: ^1.4.4 + probe-image-size: ^7.2.3 progress: ^2.0.3 semver: ^7.3.5 - sharp: ^0.30.1 + sharp: ^0.30.3 svgo: 1.3.2 uuid: 3.4.0 peerDependencies: gatsby: ^4.0.0-next - checksum: 375fd1ba330371018b052637897d6e4740a03265cbb31fc05e00a134e713920950509fa050074e0554ec907fe17513710dea342374fad3cda04c9859d26e7317 + checksum: bc45697a144351d42cc7ac6c355af9db433749c6e48220559c06bd9cf4d15bea9073fb7bebaa711c802b580087c4b6fc7d275b0947963012335bc461b85ceae1 languageName: node linkType: hard @@ -20045,18 +19679,6 @@ __metadata: languageName: node linkType: hard -"gatsby-plugin-utils@npm:^3.3.0": - version: 3.3.0 - resolution: "gatsby-plugin-utils@npm:3.3.0" - dependencies: - "@babel/runtime": ^7.15.4 - joi: ^17.4.2 - peerDependencies: - gatsby: ^4.0.0-next - checksum: e0614ed7c43cd91ef0c517fde52235cd86b1ba6af074a5c9c22b01f24a8c2913a1d62d1ac2f786b3e3a4c14027a4f0ad06bbfb9735aa2496fac2f9801e7fe3e8 - languageName: node - linkType: hard - "gatsby-plugin-utils@npm:^3.7.0": version: 3.7.0 resolution: "gatsby-plugin-utils@npm:3.7.0" @@ -20078,15 +19700,15 @@ __metadata: languageName: node linkType: hard -"gatsby-plugin-webpack-bundle-analyser-v2@npm:1.1.26": - version: 1.1.26 - resolution: "gatsby-plugin-webpack-bundle-analyser-v2@npm:1.1.26" +"gatsby-plugin-webpack-bundle-analyser-v2@npm:1.1.27": + version: 1.1.27 + resolution: "gatsby-plugin-webpack-bundle-analyser-v2@npm:1.1.27" dependencies: - "@babel/runtime": ^7.16.3 + "@babel/runtime": ^7.17.8 webpack-bundle-analyzer: ^4.5.0 peerDependencies: gatsby: ^2.0.0 || ^3.0.0 || ^4.0.0 - checksum: 28c896f2308d7ae76237b3ab513cc71d4e1aab7a0eb37538853ea249ffee113ca34108f6ef608aad5bb257ac35ceeef3091d76c4dde92068a14b053a93644b31 + checksum: 99bb315b9a64bddec0af64a7a040ab32391873a9636a209d18f3e923cd1434ea1250f8bc37bdfd156f69414227e2496cc44eeccb392f0da8e3bcc5089b527aee languageName: node linkType: hard @@ -20104,9 +19726,9 @@ __metadata: languageName: node linkType: hard -"gatsby-remark-copy-linked-files@npm:5.9.0": - version: 5.9.0 - resolution: "gatsby-remark-copy-linked-files@npm:5.9.0" +"gatsby-remark-copy-linked-files@npm:5.13.0": + version: 5.13.0 + resolution: "gatsby-remark-copy-linked-files@npm:5.13.0" dependencies: "@babel/runtime": ^7.15.4 cheerio: ^1.0.0-rc.10 @@ -20114,33 +19736,33 @@ __metadata: is-relative-url: ^3.0.0 lodash: ^4.17.21 path-is-inside: ^1.0.2 - probe-image-size: ^6.0.0 + probe-image-size: ^7.2.3 unist-util-visit: ^2.0.3 peerDependencies: gatsby: ^4.0.0-next - checksum: 3273ec281b3395c391ea746e6e35ca689d77964b315f962f09dfdf03ca13b47c4a19ede4a899383779989e54f953d21f4cca225db0692e4e8364f070d553e6ad + checksum: c0d99a49a65205d92ac899b7a0aaaa60906aab64e4405fd400c8ba9b078466c7cf052b38896adbb5e6a8b9d3bc3383258f1b54ad099c4d450869120dce9b812a languageName: node linkType: hard -"gatsby-remark-images@npm:6.9.0": - version: 6.9.0 - resolution: "gatsby-remark-images@npm:6.9.0" +"gatsby-remark-images@npm:6.13.0": + version: 6.13.0 + resolution: "gatsby-remark-images@npm:6.13.0" dependencies: "@babel/runtime": ^7.15.4 + "@gatsbyjs/potrace": ^2.2.0 chalk: ^4.1.2 cheerio: ^1.0.0-rc.10 - gatsby-core-utils: ^3.9.0 + gatsby-core-utils: ^3.13.0 is-relative-url: ^3.0.0 lodash: ^4.17.21 mdast-util-definitions: ^4.0.0 - potrace: ^2.1.8 query-string: ^6.14.1 unist-util-select: ^3.0.4 unist-util-visit-parents: ^3.1.1 peerDependencies: gatsby: ^4.0.0-next gatsby-plugin-sharp: ^4.0.0-next - checksum: 9fb194fbf7b79950fc94424c929f530db4bd2df10c03f274399ed23dbdd4083e5b79487b56e41cc06b0ed1834c406efbb58dd20245089399fc83ef9c9edddc2b + checksum: 606cda538200a07f1b828eec49fb03c01d58c3d9b7772c5af21c9247754081d5df180c94d9ba3adc44384ecd421ed41c7c68f7a2d6bebe6b6406afa96a077281 languageName: node linkType: hard @@ -20191,28 +19813,6 @@ __metadata: languageName: node linkType: hard -"gatsby-source-filesystem@npm:4.9.0": - version: 4.9.0 - resolution: "gatsby-source-filesystem@npm:4.9.0" - dependencies: - "@babel/runtime": ^7.15.4 - chokidar: ^3.5.2 - file-type: ^16.5.3 - fs-extra: ^10.0.0 - gatsby-core-utils: ^3.9.0 - got: ^9.6.0 - md5-file: ^5.0.0 - mime: ^2.5.2 - pretty-bytes: ^5.4.1 - progress: ^2.0.3 - valid-url: ^1.0.9 - xstate: ^4.26.1 - peerDependencies: - gatsby: ^4.0.0-next - checksum: fa49a2d129cc9918c3f9d7f4c2ec763d4198df1e8b19459daf14958fe3cfc96182bc4d877d1cdf62631631d482ad539d64cdcb69ce8dcf9f3366a66737a68856 - languageName: node - linkType: hard - "gatsby-telemetry@npm:^3.13.0": version: 3.13.0 resolution: "gatsby-telemetry@npm:3.13.0" @@ -20234,49 +19834,28 @@ __metadata: languageName: node linkType: hard -"gatsby-telemetry@npm:^3.9.0": - version: 3.9.1 - resolution: "gatsby-telemetry@npm:3.9.1" - dependencies: - "@babel/code-frame": ^7.14.0 - "@babel/runtime": ^7.15.4 - "@turist/fetch": ^7.1.7 - "@turist/time": ^0.0.2 - async-retry-ng: ^2.0.1 - boxen: ^4.2.0 - configstore: ^5.0.1 - fs-extra: ^10.0.0 - gatsby-core-utils: ^3.9.1 - git-up: ^4.0.5 - is-docker: ^2.2.1 - lodash: ^4.17.21 - node-fetch: ^2.6.7 - checksum: 2fd810038fd11181d27ac6833de3b05ebdf33b7554e86860ec6db94b8199220a19f4dd65f15043ea9fe51900da2b3f2f30d2f3ade629ff77fea8409e7aeced1b - languageName: node - linkType: hard - -"gatsby-transformer-sharp@npm:4.9.0": - version: 4.9.0 - resolution: "gatsby-transformer-sharp@npm:4.9.0" +"gatsby-transformer-sharp@npm:4.13.0": + version: 4.13.0 + resolution: "gatsby-transformer-sharp@npm:4.13.0" dependencies: "@babel/runtime": ^7.15.4 + "@gatsbyjs/potrace": ^2.2.0 bluebird: ^3.7.2 common-tags: ^1.8.2 fs-extra: ^10.0.0 - potrace: ^2.1.8 - probe-image-size: ^6.0.0 + probe-image-size: ^7.2.3 semver: ^7.3.5 - sharp: ^0.30.1 + sharp: ^0.30.3 peerDependencies: gatsby: ^4.0.0-next gatsby-plugin-sharp: ^4.0.0-next - checksum: 538b6af6509fad91336e032ed9f65051a0259e269aee19bcb7d572a5ec97cde83a0080b8af251ed028bb7d111e9d174f586d9bb20f8e20b65169a8aac02c3111 + checksum: 0575e89976e1c4d6f5e7ddec4071a4c291296a25d2b918fd2bf91a0452c46105f33529cde9ea57100dad57e9de80f1e5745134e7a7710de4f1e1cc1654b498be languageName: node linkType: hard -"gatsby-transformer-yaml@npm:4.9.0": - version: 4.9.0 - resolution: "gatsby-transformer-yaml@npm:4.9.0" +"gatsby-transformer-yaml@npm:4.13.0": + version: 4.13.0 + resolution: "gatsby-transformer-yaml@npm:4.13.0" dependencies: "@babel/runtime": ^7.15.4 js-yaml: ^3.14.1 @@ -20284,7 +19863,7 @@ __metadata: unist-util-select: ^1.5.0 peerDependencies: gatsby: ^4.0.0-next - checksum: 00dc4bd63b99c2444fc455285325390548e9b8754ee08db91586034623f9d6626af7f20b82882e1d5ad0025f41314f7f8b1919f0a3eccb431c5193e63ce4f7f7 + checksum: 6729ce582184a36aa2973dec2507fb82e42438e0463d225961bdb313ef43bbce7f19bd9c86c918695791d74f4941e61017a74ccda1c5858404550173a2578bfa languageName: node linkType: hard @@ -20568,6 +20147,13 @@ __metadata: languageName: node linkType: hard +"get-stdin@npm:^5.0.1": + version: 5.0.1 + resolution: "get-stdin@npm:5.0.1" + checksum: f9784638ad3e68a0a8bdc031aedf0fca749843cd134956fbd4f3bbac17c359e0fb9210343fcbed72ee79fb19d8e4c49b7a6e742cc5d44e94ac1405e9371d4b3e + languageName: node + linkType: hard + "get-stdin@npm:^8.0.0": version: 8.0.0 resolution: "get-stdin@npm:8.0.0" @@ -20974,6 +20560,13 @@ __metadata: languageName: node linkType: hard +"glur@npm:^1.1.2": + version: 1.1.2 + resolution: "glur@npm:1.1.2" + checksum: d80a50fe7f713a564cf50a8e46e2385e5256233c1180b94c06dfdf038655c8b11aa648dd8516b66025abfe437f4201aa10c0e759b68b9a37241375707cf107ea + languageName: node + linkType: hard + "got@npm:^11.8.2, got@npm:^11.8.3": version: 11.8.3 resolution: "got@npm:11.8.3" @@ -23366,6 +22959,16 @@ __metadata: languageName: node linkType: hard +"iterm2-version@npm:^4.1.0": + version: 4.2.0 + resolution: "iterm2-version@npm:4.2.0" + dependencies: + app-path: ^3.2.0 + plist: ^3.0.1 + checksum: 3a83c748775712a056333a0c226f75d6fa961c125a64cd4d60994f7d14dbbcf3f801fee67777f568b0eb1e998864086e6148fddece0fd341e4123e5ade7fc5b2 + languageName: node + linkType: hard + "jest-changed-files@npm:^27.5.1": version: 27.5.1 resolution: "jest-changed-files@npm:27.5.1" @@ -23623,6 +23226,25 @@ __metadata: languageName: node linkType: hard +"jest-image-snapshot@npm:4.2.0": + version: 4.2.0 + resolution: "jest-image-snapshot@npm:4.2.0" + dependencies: + chalk: ^1.1.3 + get-stdin: ^5.0.1 + glur: ^1.1.2 + lodash: ^4.17.4 + mkdirp: ^0.5.1 + pixelmatch: ^5.1.0 + pngjs: ^3.4.0 + rimraf: ^2.6.2 + ssim.js: ^3.1.1 + peerDependencies: + jest: ">=20 <=26" + checksum: 55c696955a75ef79a4a06fb18910a1238510fd4458a5322e1d82149c07bb7588762623730e9f8613c90fd0ab142f105809676f3ef787558ed6336a967a7ec021 + languageName: node + linkType: hard + "jest-jasmine2@npm:^27.5.1": version: 27.5.1 resolution: "jest-jasmine2@npm:27.5.1" @@ -24148,19 +23770,6 @@ __metadata: languageName: node linkType: hard -"jimp@npm:^0.14.0": - version: 0.14.0 - resolution: "jimp@npm:0.14.0" - dependencies: - "@babel/runtime": ^7.7.2 - "@jimp/custom": ^0.14.0 - "@jimp/plugins": ^0.14.0 - "@jimp/types": ^0.14.0 - regenerator-runtime: ^0.13.3 - checksum: acf19b5e56e9b218907c975b0e9f9f4b940f2d908460df8e0b5766558f0ee038630aed4cb6526f43e182ccff0dc1ac3302e5a2c18a75e4a4d75020824ea340db - languageName: node - linkType: hard - "jimp@npm:^0.16.1": version: 0.16.1 resolution: "jimp@npm:0.16.1" @@ -24203,13 +23812,6 @@ __metadata: languageName: node linkType: hard -"jpeg-js@npm:^0.4.0": - version: 0.4.3 - resolution: "jpeg-js@npm:0.4.3" - checksum: 9e5bacc9135efa7da340b62e81fa56fab0c8516ef617228758132af5b7d31b516cc6e1500cdffb82d3161629be341be980099f2b37eb76b81e26db6e3e848c77 - languageName: node - linkType: hard - "js-levenshtein@npm:^1.1.6": version: 1.1.6 resolution: "js-levenshtein@npm:1.1.6" @@ -26495,6 +26097,24 @@ __metadata: languageName: node linkType: hard +"mermaid@npm:9.0.1": + version: 9.0.1 + resolution: "mermaid@npm:9.0.1" + dependencies: + "@braintree/sanitize-url": ^6.0.0 + cypress-image-snapshot: ^4.0.1 + d3: ^7.0.0 + dagre: ^0.8.5 + dagre-d3: ^0.6.4 + dompurify: 2.3.6 + graphlib: ^2.1.8 + khroma: ^1.4.1 + moment-mini: ^2.24.0 + stylis: ^4.0.10 + checksum: d82a8880409875b01db0b8ffb0c3f45e327b092b7edc2413068cece7949ec7f27db6765fd5f3c7f082bdc3f7ce103ed45936c7defcb55c5b5b1882fb0bf3219a + languageName: node + linkType: hard + "meros@npm:1.1.4, meros@npm:^1.1.4": version: 1.1.4 resolution: "meros@npm:1.1.4" @@ -26760,15 +26380,6 @@ __metadata: languageName: node linkType: hard -"mini-svg-data-uri@npm:^1.4.3": - version: 1.4.3 - resolution: "mini-svg-data-uri@npm:1.4.3" - bin: - mini-svg-data-uri: cli.js - checksum: bd1789c34907a36ae9157897b7c7f6ad700e71c8cb6d725bb2810ce6211abcaa3717333ca17408f6f8b2a44055e571cd5b78d478688e1864513cb7f8e023ae3f - languageName: node - linkType: hard - "mini-svg-data-uri@npm:^1.4.4": version: 1.4.4 resolution: "mini-svg-data-uri@npm:1.4.4" @@ -28880,6 +28491,17 @@ __metadata: languageName: node linkType: hard +"pixelmatch@npm:^5.1.0": + version: 5.3.0 + resolution: "pixelmatch@npm:5.3.0" + dependencies: + pngjs: ^6.0.0 + bin: + pixelmatch: bin/pixelmatch + checksum: f542713d89536551181ad9ddb666a1792ba00a8632d831093232a075cb3ccac05856e7a453ed7d0a41aaef64dcb5962e8ae5cbe646dd2761790d8ee51b0a0743 + languageName: node + linkType: hard + "pkg-dir@npm:4.2.0, pkg-dir@npm:^4.1.0, pkg-dir@npm:^4.2.0": version: 4.2.0 resolution: "pkg-dir@npm:4.2.0" @@ -28967,6 +28589,16 @@ __metadata: languageName: node linkType: hard +"plist@npm:^3.0.1": + version: 3.0.5 + resolution: "plist@npm:3.0.5" + dependencies: + base64-js: ^1.5.1 + xmlbuilder: ^9.0.7 + checksum: f8b82816f66559965a4dabf139bd8dd95cdec7e51f32742bb353af276ea8228b9807113743b860eda3e867f6ed70d2bcbc1e135b3204d92b5c37ac765f68444e + languageName: node + linkType: hard + "plur@npm:^4.0.0": version: 4.0.0 resolution: "plur@npm:4.0.0" @@ -28976,13 +28608,20 @@ __metadata: languageName: node linkType: hard -"pngjs@npm:^3.0.0, pngjs@npm:^3.3.3": +"pngjs@npm:^3.0.0, pngjs@npm:^3.3.3, pngjs@npm:^3.4.0": version: 3.4.0 resolution: "pngjs@npm:3.4.0" checksum: 8bd40bd698abd16b72c97b85cb858c80894fbedc76277ce72a784aa441e14795d45d9856e97333ca469b34b67528860ffc8a7317ca6beea349b645366df00bcd languageName: node linkType: hard +"pngjs@npm:^6.0.0": + version: 6.0.0 + resolution: "pngjs@npm:6.0.0" + checksum: ab6c285086060087097eab9fe6b5a528a24f9e79c03dea2b4fd6264ed4fdb5beff4a3257eeeaf2a9dc18249b539609c2a4e4013c567164a1f6b5ba2c974d5ecb + languageName: node + linkType: hard + "popper.js@npm:1.15.0": version: 1.15.0 resolution: "popper.js@npm:1.15.0" @@ -29577,15 +29216,6 @@ __metadata: languageName: node linkType: hard -"potrace@npm:^2.1.8": - version: 2.1.8 - resolution: "potrace@npm:2.1.8" - dependencies: - jimp: ^0.14.0 - checksum: 8b7168218058d7638cbced8bb9db2a87a754ec2e6b21b2332921b54c7124cfd5ee19db4bcb3faab9ead7994e4ca9e04012d5e4c67d8e4b300c2eb21b8b2b1c49 - languageName: node - linkType: hard - "prebuild-install@npm:^7.0.1": version: 7.0.1 resolution: "prebuild-install@npm:7.0.1" @@ -29762,14 +29392,14 @@ __metadata: languageName: node linkType: hard -"probe-image-size@npm:^6.0.0": - version: 6.0.0 - resolution: "probe-image-size@npm:6.0.0" +"probe-image-size@npm:^7.2.3": + version: 7.2.3 + resolution: "probe-image-size@npm:7.2.3" dependencies: - deepmerge: ^4.0.0 + lodash.merge: ^4.6.2 needle: ^2.5.2 stream-parser: ~0.3.1 - checksum: 5fb44cf831b0b925b6eae58144761c6118b76c62e5daf33a35721fe140ca1a4f659e8f7195e13261b4c97ad827f1f765a3dd805d424ddfdef00d8c7737834f6e + checksum: 1a5eeb8f5cb979172144a5d7a017c70fcd664ccc8af9ad3a803903ee81864abea4036adae4fc6e66e9ae21bd3ce0febefaf1f32e65a77ff226b2eb61e9e4978c languageName: node linkType: hard @@ -30358,12 +29988,12 @@ __metadata: languageName: node linkType: hard -"react-intersection-observer@npm:8.33.1": - version: 8.33.1 - resolution: "react-intersection-observer@npm:8.33.1" +"react-intersection-observer@npm:9.1.0": + version: 9.1.0 + resolution: "react-intersection-observer@npm:9.1.0" peerDependencies: react: ^15.0.0 || ^16.0.0 || ^17.0.0|| ^18.0.0 - checksum: 5feb0df01dd64f1fa0b8300fb4fc12db95350c1ae2514f66f0652371f65e5501758a662746000dc2584d24dcce07139590e5375d6c9920a60b282af83468d0c4 + checksum: 1d4cabaea62d70d551687b9d6561e9892a87f8f4ace46b8bbf006788d36061a49e3c0774a89ad24f1e35dc3dc5ba653ca26064199554ce071a4787823f875ee4 languageName: node linkType: hard @@ -32276,23 +31906,6 @@ __metadata: languageName: node linkType: hard -"sharp@npm:^0.30.1": - version: 0.30.3 - resolution: "sharp@npm:0.30.3" - dependencies: - color: ^4.2.1 - detect-libc: ^2.0.1 - node-addon-api: ^4.3.0 - node-gyp: latest - prebuild-install: ^7.0.1 - semver: ^7.3.5 - simple-get: ^4.0.1 - tar-fs: ^2.1.1 - tunnel-agent: ^0.6.0 - checksum: 05738f0a74f55217ccbbe74ad7b8b579e2e24cbcebd021ae53cfb81d7a3e8ab42b02526249ad7d04900a4ea0da80fa63805b492edab3bfa0541888169c079057 - languageName: node - linkType: hard - "sharp@npm:^0.30.3": version: 0.30.4 resolution: "sharp@npm:0.30.4" @@ -32938,6 +32551,13 @@ __metadata: languageName: node linkType: hard +"ssim.js@npm:^3.1.1": + version: 3.5.0 + resolution: "ssim.js@npm:3.5.0" + checksum: 3f3a63ac8bec9c45e9f72252b786dcb4c91d7a74316b49c20e7935fd6e3869541e9324233b00eb0ab6bd15701016becd62740a5fb8c98f7b5115a9237efb2d4a + languageName: node + linkType: hard + "ssri@npm:^8.0.0, ssri@npm:^8.0.1": version: 8.0.1 resolution: "ssri@npm:8.0.1" @@ -33918,6 +33538,16 @@ __metadata: languageName: node linkType: hard +"term-img@npm:^4.0.0": + version: 4.1.0 + resolution: "term-img@npm:4.1.0" + dependencies: + ansi-escapes: ^4.1.0 + iterm2-version: ^4.1.0 + checksum: fda618b4a45c01bec0a5bc79f456ca1834ad88cbfde3a1bf14871373f555f7df3f40f7ed6d678600a7abebe454b3ab66604bf19dcc87004260677f088d6c7d18 + languageName: node + linkType: hard + "term-size@npm:^2.1.0": version: 2.2.1 resolution: "term-size@npm:2.2.1" @@ -36732,6 +36362,13 @@ __metadata: languageName: node linkType: hard +"xmlbuilder@npm:^9.0.7": + version: 9.0.7 + resolution: "xmlbuilder@npm:9.0.7" + checksum: 8193bb323806a002764f013bea0c6e9ff2dc26fd29109408761b16b59a8ad2214c2abe8e691755fd8b525586e3a0e1efeb92335947d7b0899032b779f1705a53 + languageName: node + linkType: hard + "xmlbuilder@npm:~11.0.0": version: 11.0.1 resolution: "xmlbuilder@npm:11.0.1"