mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 15:28:28 -04:00
type check .js
files
This commit is contained in:
parent
760f07cd11
commit
c69a593d61
@ -17,9 +17,17 @@ const ThemeScript = ({ themeClassNames, themeStorageKey }: ThemeScriptProps) =>
|
||||
.replace('"__STORAGE_KEY__"', `"${themeStorageKey}"`)
|
||||
.replace('"__CLASS_NAMES__"', JSON.stringify(themeClassNames));
|
||||
|
||||
// turn the raw function into an iife
|
||||
const unminified = `(${functionString})()`;
|
||||
|
||||
// skip minification if running locally to save a few ms
|
||||
if (process.env.IS_DEV_SERVER === "true") {
|
||||
return unminified;
|
||||
}
|
||||
|
||||
// minify the final code, a bit hacky but this is ONLY done at build-time, so uglify-js is never bundled or sent to
|
||||
// the browser to execute.
|
||||
const result = minify(`(${functionString})()`, {
|
||||
const minified = minify(unminified, {
|
||||
toplevel: true,
|
||||
compress: {
|
||||
negate_iife: false,
|
||||
@ -29,13 +37,13 @@ const ThemeScript = ({ themeClassNames, themeStorageKey }: ThemeScriptProps) =>
|
||||
},
|
||||
});
|
||||
|
||||
// fail somewhat silenty
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
return;
|
||||
// fail somewhat silenty by returning the unminified version
|
||||
if (!minified || minified.error) {
|
||||
console.warn("Failed to minify inline theme script:", minified.error);
|
||||
return unminified;
|
||||
}
|
||||
|
||||
return result.code;
|
||||
return minified.code;
|
||||
}, [themeClassNames, themeStorageKey]);
|
||||
|
||||
// the script tag injected manually into `<head>` in _document.tsx to prevent FARTing:
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* eslint-disable no-empty, no-var, prefer-destructuring */
|
||||
// @ts-check
|
||||
/* eslint-disable no-var, no-empty */
|
||||
|
||||
// this function is converted to a string verbatim, substitutions are made to insert dynamic values, minified, and then
|
||||
// finally exported as an inline `<script>` tag in ThemeScript.tsx for _document.tsx to use.
|
||||
@ -10,13 +11,14 @@ export const clientScript = () => {
|
||||
var dark = "dark";
|
||||
var newTheme;
|
||||
// the list of <html>'s current class(es)...
|
||||
// eslint-disable-next-line prefer-destructuring
|
||||
var classList = document.documentElement.classList;
|
||||
// map of theme -> classname
|
||||
var classNames = "__CLASS_NAMES__";
|
||||
// user's saved preference
|
||||
var pref = window.localStorage.getItem("__STORAGE_KEY__");
|
||||
|
||||
if (pref === light || pref === dark) {
|
||||
if (pref && (pref === light || pref === dark)) {
|
||||
// simply restore the local storage preference
|
||||
newTheme = pref;
|
||||
} else {
|
||||
@ -26,8 +28,11 @@ export const clientScript = () => {
|
||||
}
|
||||
|
||||
// remove both `classNames` to start fresh...
|
||||
// @ts-ignore
|
||||
classList.remove(classNames[light], classNames[dark]);
|
||||
|
||||
// ...and then FINALLY set the root class
|
||||
// @ts-ignore
|
||||
classList.add(classNames[newTheme]);
|
||||
} catch (error) {}
|
||||
};
|
||||
|
@ -1,3 +1,4 @@
|
||||
// @ts-check
|
||||
// do not convert to ESM and/or TS -- this needs to be imported in CJS files like next.config.js too
|
||||
module.exports = {
|
||||
// Site info
|
||||
@ -9,7 +10,7 @@ module.exports = {
|
||||
// NOTE: no trailing slashes!
|
||||
process.env.NEXT_PUBLIC_VERCEL_ENV !== "production" && process.env.NEXT_PUBLIC_VERCEL_URL !== undefined
|
||||
? `https://${process.env.NEXT_PUBLIC_VERCEL_URL}`
|
||||
: process.env.IS_DEV_SERVER === true
|
||||
: process.env.IS_DEV_SERVER === "true"
|
||||
? `http://localhost:${process.env.NEXT_DEV_PORT}`
|
||||
: "https://jarv.is", // fallback to production URL
|
||||
onionDomain: "http://jarvis2i2vp4j4tbxjogsnqdemnte5xhzyi7hziiyzxwge3hzmh57zad.onion",
|
||||
|
@ -38,7 +38,7 @@ export const compileNote = async (slug: string): Promise<NoteWithSource> => {
|
||||
// https://github.com/hashicorp/next-mdx-remote/pull/211#issuecomment-1013658514
|
||||
// ...so for now, let's do it manually (and conservatively) with uglify-js when building for production.
|
||||
const compiledSource =
|
||||
process.env.NEXT_PUBLIC_VERCEL_ENV === "production"
|
||||
process.env.IS_DEV_SERVER !== "true"
|
||||
? minify(source.compiledSource, {
|
||||
toplevel: true,
|
||||
parse: {
|
||||
|
@ -18,4 +18,4 @@ export const prisma =
|
||||
log: ["query"],
|
||||
});
|
||||
|
||||
if (process.env.NODE_ENV !== "production") global.prisma = prisma;
|
||||
if (process.env.IS_DEV_SERVER === "true") global.prisma = prisma;
|
||||
|
@ -1,3 +1,4 @@
|
||||
// @ts-check
|
||||
/* eslint-disable @typescript-eslint/no-var-requires */
|
||||
const path = require("path");
|
||||
const { PHASE_DEVELOPMENT_SERVER } = require("next/constants");
|
||||
@ -27,9 +28,9 @@ module.exports = (phase, { defaultConfig }) => {
|
||||
// freeze build timestamp for when server-side pages need a "last updated" date:
|
||||
RELEASE_DATE: new Date().toISOString(),
|
||||
// check if we're running locally via `next dev`:
|
||||
IS_DEV_SERVER: phase === PHASE_DEVELOPMENT_SERVER,
|
||||
IS_DEV_SERVER: phase === PHASE_DEVELOPMENT_SERVER ? "true" : "false",
|
||||
// https://nextjs.org/docs/api-reference/cli#development
|
||||
NEXT_DEV_PORT: process.env.PORT || 3000,
|
||||
NEXT_DEV_PORT: process.env.PORT || "3000",
|
||||
},
|
||||
images: {
|
||||
deviceSizes: [640, 750, 828, 1080, 1200, 1920],
|
||||
@ -87,10 +88,10 @@ module.exports = (phase, { defaultConfig }) => {
|
||||
{
|
||||
source: "/:path(.*)",
|
||||
headers: [
|
||||
config.onionDomain && {
|
||||
{
|
||||
// https://gitweb.torproject.org/tor-browser-spec.git/tree/proposals/100-onion-location-header.txt
|
||||
key: "Onion-Location",
|
||||
value: `${config.onionDomain}/:path*`,
|
||||
value: config.onionDomain ? `${config.onionDomain}/:path*` : "",
|
||||
},
|
||||
{
|
||||
// 🥛
|
||||
|
16
package.json
16
package.json
@ -43,7 +43,7 @@
|
||||
"gray-matter": "^4.0.3",
|
||||
"hex-to-rgba": "^2.0.1",
|
||||
"marked": "^4.0.17",
|
||||
"next": "12.2.1-canary.2",
|
||||
"next": "12.2.1-canary.3",
|
||||
"next-compose-plugins": "^2.2.1",
|
||||
"next-mdx-remote": "^4.0.3",
|
||||
"next-seo": "^5.4.0",
|
||||
@ -63,7 +63,7 @@
|
||||
"react-textarea-autosize": "^8.3.4",
|
||||
"react-twitter-embed": "^4.0.4",
|
||||
"react-use": "^17.4.0",
|
||||
"rehype-prism-plus": "^1.4.1",
|
||||
"rehype-prism-plus": "^1.4.2",
|
||||
"rehype-slug": "^5.0.1",
|
||||
"remark-gfm": "^3.0.1",
|
||||
"remark-smartypants": "^2.0.0",
|
||||
@ -75,23 +75,23 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jakejarvis/eslint-config": "*",
|
||||
"@next/bundle-analyzer": "12.2.1-canary.2",
|
||||
"@next/bundle-analyzer": "12.2.1-canary.3",
|
||||
"@svgr/webpack": "^6.2.1",
|
||||
"@types/comma-number": "^2.1.0",
|
||||
"@types/marked": "^4.0.3",
|
||||
"@types/node": "*",
|
||||
"@types/novnc__novnc": "^1.3.0",
|
||||
"@types/prop-types": "^15.7.5",
|
||||
"@types/react": "^18.0.14",
|
||||
"@types/react-dom": "^18.0.5",
|
||||
"@types/react": "^18.0.15",
|
||||
"@types/react-dom": "^18.0.6",
|
||||
"@types/react-is": "^17.0.3",
|
||||
"@types/remove-markdown": "^0.3.1",
|
||||
"@types/uglify-js": "^3.16.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.30.4",
|
||||
"@typescript-eslint/parser": "^5.30.4",
|
||||
"@typescript-eslint/eslint-plugin": "^5.30.5",
|
||||
"@typescript-eslint/parser": "^5.30.5",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "~8.19.0",
|
||||
"eslint-config-next": "12.2.1-canary.2",
|
||||
"eslint-config-next": "12.2.1-canary.3",
|
||||
"eslint-config-prettier": "~8.5.0",
|
||||
"eslint-plugin-prettier": "~4.2.1",
|
||||
"lint-staged": "^13.0.3",
|
||||
|
350
yarn.lock
350
yarn.lock
@ -1072,9 +1072,9 @@
|
||||
"@jridgewell/trace-mapping" "^0.3.9"
|
||||
|
||||
"@jridgewell/resolve-uri@^3.0.3":
|
||||
version "3.0.8"
|
||||
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz#687cc2bbf243f4e9a868ecf2262318e2658873a1"
|
||||
integrity sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
|
||||
integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
|
||||
|
||||
"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
|
||||
version "1.1.2"
|
||||
@ -1130,89 +1130,89 @@
|
||||
"@types/mdx" "^2.0.0"
|
||||
"@types/react" ">=16"
|
||||
|
||||
"@next/bundle-analyzer@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/bundle-analyzer/-/bundle-analyzer-12.2.1-canary.2.tgz#68200232a6fd6e9ffb6c5bde84a96d68347f80af"
|
||||
integrity sha512-5dACLvak1Zwu/9rzCmy5dcmD5Ez/5Z8Ya8m9n7ReJ4eqbYviaFO8x4DkSf17sfB5d1kEeOxxg5keG9wLLnonoA==
|
||||
"@next/bundle-analyzer@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/bundle-analyzer/-/bundle-analyzer-12.2.1-canary.3.tgz#a2552b802c227a3c872f1fdf438e9b3c77e96eec"
|
||||
integrity sha512-g+kWdTWNyII7BBh+wBsuxGCHTyg9NB2pqh66VE5t0BxJFOMnPsriwmSZIx1XPumQKhby+W49kLecpt4J810tsw==
|
||||
dependencies:
|
||||
webpack-bundle-analyzer "4.3.0"
|
||||
|
||||
"@next/env@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/env/-/env-12.2.1-canary.2.tgz#67165318b837986ec23a2a8be5f5f022def94093"
|
||||
integrity sha512-ODggtjO4pkVzlJy3BufSsiv1QDOsti5uWrdZ2Olm5b7bpC/XDAQnleKAYxeZfeC5QBrTFZ5dGBYmTcGdX/U2gQ==
|
||||
"@next/env@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/env/-/env-12.2.1-canary.3.tgz#14c630734f643c4d8cfd6625ce06a8d89486ce83"
|
||||
integrity sha512-LCmL7pUSnrvqvxPPEAwAlrumz2K8blkFowlhJRn7VfYdnUq81H7Ude/VM4gcXygmG+wr8l+0G4q0u/DfF4DfkA==
|
||||
|
||||
"@next/eslint-plugin-next@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.2.1-canary.2.tgz#33af70f1ebf800c7439b0b0e7d22f576a5b5cac3"
|
||||
integrity sha512-fX6iFn8ak2v9gwcBd+ENjGOT/QLB9NFwoCHm2QV0VrCUKLeyO042pH8P7xdbEzPy5SiQTSxYaVzUdYt/gNjJuQ==
|
||||
"@next/eslint-plugin-next@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.2.1-canary.3.tgz#f1dde78b4102d56e8a060038a551f7b76b39d51b"
|
||||
integrity sha512-1gKz5BvOP6sddAUIZFyVWCcaWLEI/X79MxPPCOWn4K0CoNvvjq8gowpheESVxxbF/WmRrfLZvwNjcG8ZgOjP5Q==
|
||||
dependencies:
|
||||
glob "7.1.7"
|
||||
|
||||
"@next/swc-android-arm-eabi@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.2.1-canary.2.tgz#bbd5848327ffb525376ca3b0f0601f0e338c6ede"
|
||||
integrity sha512-iTvGRSzzI7IFgnQSy7SglojX+XR8uX9f4h4pJF40DOE/8QWb+lq+CIpOWgv089/dAzAdtED/qcC7xBNhKnAyPg==
|
||||
"@next/swc-android-arm-eabi@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.2.1-canary.3.tgz#d21404d387e35aa7f09809ccce3fba316ea8881d"
|
||||
integrity sha512-+BzASXSES2Da7xxzwdPbVQ3RazBW0rXQ/K/y+JpyBlPiVvC09YImEi4z2WGWnOkAdiXRDu0QpXvvhnYG9n+1Zg==
|
||||
|
||||
"@next/swc-android-arm64@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.2.1-canary.2.tgz#5b22ad0d1d7df2a865e08810aee340a7d2a01bce"
|
||||
integrity sha512-hP33IK7y/Em6u3PQIXXW5exyf3hOeDfty96d0vPNeGJYFMM69KV4rJoLRJFwOmmrk5b4Jbfp3IAQOolXt2SIsA==
|
||||
"@next/swc-android-arm64@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.2.1-canary.3.tgz#8285384aaf4bef46c56bb3b049bf267450acb6b1"
|
||||
integrity sha512-slyhc0QkVK4sV7QbSNjbsPDeWwbdgXIgwSOZvYYU5fQJjINcOGOEvuPivLCOMkRv1b+E8Pp/qU9LzyS2RhWA8A==
|
||||
|
||||
"@next/swc-darwin-arm64@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.2.1-canary.2.tgz#7e6c9da8966c392039d4f1ddccb724c7237211cb"
|
||||
integrity sha512-pEFj8v88JszrVSzZkOWsy9QWq28Bw4fLiXko2jlZlJIdsdLVlJtDTO4ILoYUSsd7bfMlTEVU0T5mZ2nt/6ID5Q==
|
||||
"@next/swc-darwin-arm64@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.2.1-canary.3.tgz#6806f9fd12d50653f43f17b1368092a6e121425f"
|
||||
integrity sha512-TITtz/Ic5cSq/FL0btmEpeUFnzMr53wJL2xdfmBDKFuAQSttKO/vHjE9jZtt0vPeapoOuQ/+3U5N38HgdtgsCQ==
|
||||
|
||||
"@next/swc-darwin-x64@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.2.1-canary.2.tgz#c68918d7b6f54b4adc6efdf39079677eeba5a167"
|
||||
integrity sha512-ca3lp7R2vJGChXhCwUmyFeLk53SNJeav5Tl6WYzrE0OnG4lVuFUiWO6zRBhnLjMkwlTgRL3rZS0vQP+uZ58HcQ==
|
||||
"@next/swc-darwin-x64@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.2.1-canary.3.tgz#5f87352e77adfd6aebf5b5627d500eec51f6d455"
|
||||
integrity sha512-TT1UrGBMb7LQJ0BBJJd739XTjmJPPw8QDwCx5cZoM6SQpjcN7XiKmLnzsxF9L/MzCz9iOumJ9WYU4PM8uYWtEw==
|
||||
|
||||
"@next/swc-freebsd-x64@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.2.1-canary.2.tgz#45974ed4c71bceb1749868747e355fb6add37972"
|
||||
integrity sha512-AQer215YX1gVZNpQ5j2eQQ9UWBr7QyE1r0o2m1uk0bDPM71hOxpF8N8CLvNQDKwxNXrI1w/mN5cqy9qJGRGtdw==
|
||||
"@next/swc-freebsd-x64@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.2.1-canary.3.tgz#9e7a7cf060dae487a726a7a5964f3033cdace6fe"
|
||||
integrity sha512-EQEHeNtb3p/7Fs/BX4qsBF8t9MBnnOAyhYhGDZVg5DGz2sP+1rPvzGZPJmANNQqfzSfAbHRBOSEEQrxqmDTAgQ==
|
||||
|
||||
"@next/swc-linux-arm-gnueabihf@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.2.1-canary.2.tgz#682b502502b6d4c2488d0ebbb185b57b264d92de"
|
||||
integrity sha512-ZNUe5IH8iLVimSr2iTsgGHRviCwAxxQ/Dg/BZexCgkLZTvMzWht9kEfXx9lg0t+MTEaYZjrSccMVSjGpti2SbQ==
|
||||
"@next/swc-linux-arm-gnueabihf@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.2.1-canary.3.tgz#81c8003f2d9de2ac7d02e21cbd8293db37f8c977"
|
||||
integrity sha512-fwIvLMtrMU0KzCP3PjDnybbcxQIt4X7wv/PeWFfsWi998RPZFIN3zx/EIp49k5MI3tXpUFV+jUj8J+W3ZZb7bg==
|
||||
|
||||
"@next/swc-linux-arm64-gnu@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.2.1-canary.2.tgz#dc84a4ba1dbf2335c7c62fed1be90917f48f7de3"
|
||||
integrity sha512-BYqcCN2y6nMVXGhFK+Mv8Na3XljCOqxZvSWIkMA434GbCMHrByNSJZtTJxNYXmsv8VjxGLagHVaQOfBUkXyMgQ==
|
||||
"@next/swc-linux-arm64-gnu@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.2.1-canary.3.tgz#54062c7aae6445be9946ad1bec0c10d2cc017db4"
|
||||
integrity sha512-ZulKyx6KjScDTvLzagOEMmwoFT+fdJEuuDMnSAA6Udv/qe5b1lkbY/VH6TnTlLrZPIPucycUG7T93ejdkuFKfQ==
|
||||
|
||||
"@next/swc-linux-arm64-musl@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.2.1-canary.2.tgz#3cbf5cbd0b7843d7baf5b290a2cafbc8142751e5"
|
||||
integrity sha512-OG9PROGbbs+2BxNitaqTnX0KE3yTsxiTRNUyFupQB0KfMimx+59FZmKSAiKKDOimKL4g+YXY8FuwYahqV/OwKw==
|
||||
"@next/swc-linux-arm64-musl@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.2.1-canary.3.tgz#e093687c17bda087dbde1eba50e6d95166785e4d"
|
||||
integrity sha512-i0Arb/1n8F+Rw+51MSBJDcggmGSITNMVLyyQ86351SZCWJJvqvJVnRhvZo7sEth9iKRFnFZ1BicaNe3kXd3INg==
|
||||
|
||||
"@next/swc-linux-x64-gnu@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.2.1-canary.2.tgz#0fe847d32bef782ffc3224add2bca309ac912ac5"
|
||||
integrity sha512-0hbqemcTwR+KrjnYrK9N3XbfetVK+dRfDqWycSbM8t/DAVibafGRG0Mro8sKmYErmB4CwEbdiTlY9Jg5UcOcFA==
|
||||
"@next/swc-linux-x64-gnu@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.2.1-canary.3.tgz#d22fab299b8eb65877a6301ec9e523fb7651b42e"
|
||||
integrity sha512-QJYb60kmW1I4R2842MGRfN8NJOTVKVcSvP2d/KKLrBXJfXMsIyk97zk8uk9H5NmVGbpdjGYMiLyK6Ujj8/bUTg==
|
||||
|
||||
"@next/swc-linux-x64-musl@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.2.1-canary.2.tgz#b83bfe7e2e17c719f39681c40ef5160bf7a004b1"
|
||||
integrity sha512-mB5r2llvEDjBJEQ7B76U2wVt8YyUNbIZHygHMnUYdAv4Cz4FFJ5Am+dDGgkj5e/U7gW81UFm2GGQZX8d3lYpqQ==
|
||||
"@next/swc-linux-x64-musl@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.2.1-canary.3.tgz#76068a86ebb3aa28db22c70ebee642f84c6f6766"
|
||||
integrity sha512-bRTvblrJmwpYAgcOuaXGsU6jNCEGxtibBnoW9PvIWL8GWTllan9r4+gHPDIMhEtZOv727pYScCVBIETmwVj+yw==
|
||||
|
||||
"@next/swc-win32-arm64-msvc@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.2.1-canary.2.tgz#e079569e04360c605c8fc231108c4c22133b88e1"
|
||||
integrity sha512-3L2S8yGIsRdflxYfETxZEcXE7eOADCnxqWO04LADvllFUqNCbORKrLTyUsfK+MrtkaqYklhaxzFtkSi5Oo70OA==
|
||||
"@next/swc-win32-arm64-msvc@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.2.1-canary.3.tgz#251f34de7ffc76d956c56c362210132d5fc04343"
|
||||
integrity sha512-9aaHckJj5+amhLF7fj7s1N7iLUPFWykrJbQ2GbKH/eY7AP8uwiuY5+r43vv65zLEOpOTqA2sqYB8CjtvI3T9JQ==
|
||||
|
||||
"@next/swc-win32-ia32-msvc@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.2.1-canary.2.tgz#76463c8be3f0d9189bbd73ebc6f32ece4a0175c7"
|
||||
integrity sha512-sQXqRV5RMjaHeAbHo2QW5rLirbrW4ltJoxVZIgvdZBCfxAogFC4Ijb6LyWu6jzKad68HH/PG/yUmeQzGMXdaTw==
|
||||
"@next/swc-win32-ia32-msvc@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.2.1-canary.3.tgz#5caa8d9fc5160f6853c983594b8c47a37659f060"
|
||||
integrity sha512-LfG+ZEzyuxIkFK/woIyh7v24RSm9mhB9pL4kSm6UdrX+Jjz0r5LVDEZG7mY7PPokop5bkn2FlfYm5pP3kMby3g==
|
||||
|
||||
"@next/swc-win32-x64-msvc@12.2.1-canary.2":
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.2.1-canary.2.tgz#55cd31c2dd3402899c024d799bfccff6b16a3363"
|
||||
integrity sha512-ksDvxWyFQK5Ewi+r86Vd2YMdDSMjannCMLxjRrn6awI6r88KipWl5EjxgKjjj/LY6jL+Q7KeW2/KJ1Ji9QqE3A==
|
||||
"@next/swc-win32-x64-msvc@12.2.1-canary.3":
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.2.1-canary.3.tgz#40ddc6d4afb970901566a9a9f223d757d314630a"
|
||||
integrity sha512-0R143aptfOMGN2h/SXa3lTx80D0bJeuh/QNhwSojiGc4zKzVOKFRDb4c1q4aZBTMFw0hgQnbtD/oZ3i2OmbBuw==
|
||||
|
||||
"@nodelib/fs.scandir@2.1.5":
|
||||
version "2.1.5"
|
||||
@ -1265,10 +1265,10 @@
|
||||
"@octokit/types" "^6.0.3"
|
||||
universal-user-agent "^6.0.0"
|
||||
|
||||
"@octokit/openapi-types@^12.6.1":
|
||||
version "12.6.1"
|
||||
resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.6.1.tgz#ce33e7a75eb0e5def4e1e17547c2aeca473fed4c"
|
||||
integrity sha512-zirGmxkSQuZIQYsOLtCxNoKi7ByKLwGhrGhHz6YUI7h/c8xOES9bEoHOeq4z81uNf2AGAqNfPW9i3GOrpgKoJQ==
|
||||
"@octokit/openapi-types@^12.7.0":
|
||||
version "12.8.0"
|
||||
resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.8.0.tgz#f4708cf948724d6e8f7d878cfd91584c1c5c0523"
|
||||
integrity sha512-ydcKLs2KKcxlhpdWLzJxEBDEk/U5MUeqtqkXlrtAUXXFPs6vLl1PEGghFC/BbpleosB7iXs0Z4P2DGe7ZT5ZNg==
|
||||
|
||||
"@octokit/request-error@^2.1.0":
|
||||
version "2.1.0"
|
||||
@ -1292,11 +1292,11 @@
|
||||
universal-user-agent "^6.0.0"
|
||||
|
||||
"@octokit/types@^6.0.3", "@octokit/types@^6.16.1":
|
||||
version "6.38.2"
|
||||
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.38.2.tgz#b837c76a517ebd94bb91e867eb6761ec43f3adc7"
|
||||
integrity sha512-McFegRKQ1qaMSnDt8ScJzv26IFR1zhXveYaqx8wF7QEgiy4GHMrnX4xbP+Yl+kAr12DCplL3WJq4xkeD1VMfmw==
|
||||
version "6.39.0"
|
||||
resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.39.0.tgz#46ce28ca59a3d4bac0e487015949008302e78eee"
|
||||
integrity sha512-Mq4N9sOAYCitTsBtDdRVrBE80lIrMBhL9Jbrw0d+j96BAzlq4V+GLHFJbHokEsVvO/9tQupQdoFdgVYhD2C8UQ==
|
||||
dependencies:
|
||||
"@octokit/openapi-types" "^12.6.1"
|
||||
"@octokit/openapi-types" "^12.7.0"
|
||||
|
||||
"@polka/url@^1.0.0-next.20":
|
||||
version "1.0.0-next.21"
|
||||
@ -1653,9 +1653,9 @@
|
||||
"@types/unist" "*"
|
||||
|
||||
"@types/node@*":
|
||||
version "18.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.1.tgz#e91bd73239b338557a84d1f67f7b9e0f25643870"
|
||||
integrity sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg==
|
||||
version "18.0.2"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.2.tgz#a594e580c396c22dd6b1470be81737c79ec0b1b1"
|
||||
integrity sha512-b947SdS4GH+g2W33wf5FzUu1KLj5FcSIiNWbU1ZyMvt/X7w48ZsVcsQoirIgE/Oq03WT5Qbn/dkY0hePi4ZXcQ==
|
||||
|
||||
"@types/node@^17.0.5":
|
||||
version "17.0.45"
|
||||
@ -1687,10 +1687,10 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
|
||||
integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
|
||||
|
||||
"@types/react-dom@^18.0.5":
|
||||
version "18.0.5"
|
||||
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.5.tgz#330b2d472c22f796e5531446939eacef8378444a"
|
||||
integrity sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==
|
||||
"@types/react-dom@^18.0.6":
|
||||
version "18.0.6"
|
||||
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.6.tgz#36652900024842b74607a17786b6662dd1e103a1"
|
||||
integrity sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==
|
||||
dependencies:
|
||||
"@types/react" "*"
|
||||
|
||||
@ -1701,10 +1701,10 @@
|
||||
dependencies:
|
||||
"@types/react" "*"
|
||||
|
||||
"@types/react@*", "@types/react@>=16", "@types/react@^18.0.0", "@types/react@^18.0.14":
|
||||
version "18.0.14"
|
||||
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.14.tgz#e016616ffff51dba01b04945610fe3671fdbe06d"
|
||||
integrity sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==
|
||||
"@types/react@*", "@types/react@>=16", "@types/react@^18.0.0", "@types/react@^18.0.15":
|
||||
version "18.0.15"
|
||||
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.15.tgz#d355644c26832dc27f3e6cbf0c4f4603fc4ab7fe"
|
||||
integrity sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==
|
||||
dependencies:
|
||||
"@types/prop-types" "*"
|
||||
"@types/scheduler" "*"
|
||||
@ -1744,14 +1744,14 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
|
||||
integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
|
||||
|
||||
"@typescript-eslint/eslint-plugin@^5.30.4":
|
||||
version "5.30.4"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.4.tgz#a46c8c0ab755a936cb63786a6222876ce51675e4"
|
||||
integrity sha512-xjujQISAIa4HAaos8fcMZXmqkuZqMx6icdxkI88jMM/eNe4J8AuTLYnLK+zdm0mBYLyctdFf//UE4/xFCcQzYQ==
|
||||
"@typescript-eslint/eslint-plugin@^5.30.5":
|
||||
version "5.30.5"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz#e9a0afd6eb3b1d663db91cf1e7bc7584d394503d"
|
||||
integrity sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager" "5.30.4"
|
||||
"@typescript-eslint/type-utils" "5.30.4"
|
||||
"@typescript-eslint/utils" "5.30.4"
|
||||
"@typescript-eslint/scope-manager" "5.30.5"
|
||||
"@typescript-eslint/type-utils" "5.30.5"
|
||||
"@typescript-eslint/utils" "5.30.5"
|
||||
debug "^4.3.4"
|
||||
functional-red-black-tree "^1.0.1"
|
||||
ignore "^5.2.0"
|
||||
@ -1759,69 +1759,69 @@
|
||||
semver "^7.3.7"
|
||||
tsutils "^3.21.0"
|
||||
|
||||
"@typescript-eslint/parser@^5.21.0", "@typescript-eslint/parser@^5.30.4":
|
||||
version "5.30.4"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.4.tgz#659411e8700b22c8d5400798ef24838425bf4567"
|
||||
integrity sha512-/ge1HtU63wVoED4VnlU2o+FPFmi017bPYpeSrCmd8Ycsti4VSxXrmcpXXm7JpI4GT0Aa7qviabv1PEp6L5bboQ==
|
||||
"@typescript-eslint/parser@^5.21.0", "@typescript-eslint/parser@^5.30.5":
|
||||
version "5.30.5"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.5.tgz#f667c34e4e4c299d98281246c9b1e68c03a92522"
|
||||
integrity sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==
|
||||
dependencies:
|
||||
"@typescript-eslint/scope-manager" "5.30.4"
|
||||
"@typescript-eslint/types" "5.30.4"
|
||||
"@typescript-eslint/typescript-estree" "5.30.4"
|
||||
"@typescript-eslint/scope-manager" "5.30.5"
|
||||
"@typescript-eslint/types" "5.30.5"
|
||||
"@typescript-eslint/typescript-estree" "5.30.5"
|
||||
debug "^4.3.4"
|
||||
|
||||
"@typescript-eslint/scope-manager@5.30.4":
|
||||
version "5.30.4"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.4.tgz#8140efd2bc12d41d74e8af23872a89f3edbe552e"
|
||||
integrity sha512-DNzlQwGSiGefz71JwaHrpcaAX3zYkEcy8uVuan3YMKOa6qeW/y+7SaD8KIsIAruASwq6P+U4BjWBWtM2O+mwBQ==
|
||||
"@typescript-eslint/scope-manager@5.30.5":
|
||||
version "5.30.5"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz#7f90b9d6800552c856a5f3644f5e55dd1469d964"
|
||||
integrity sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==
|
||||
dependencies:
|
||||
"@typescript-eslint/types" "5.30.4"
|
||||
"@typescript-eslint/visitor-keys" "5.30.4"
|
||||
"@typescript-eslint/types" "5.30.5"
|
||||
"@typescript-eslint/visitor-keys" "5.30.5"
|
||||
|
||||
"@typescript-eslint/type-utils@5.30.4":
|
||||
version "5.30.4"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.30.4.tgz#00ff19073cd01f7d27e9af49ce08d6a69f1e4f01"
|
||||
integrity sha512-55cf1dZviwwv+unDB+mF8vZkfta5muTK6bppPvenWWCD7slZZ0DEsXUjZerqy7Rq8s3J4SXdg4rMIY8ngCtTmA==
|
||||
"@typescript-eslint/type-utils@5.30.5":
|
||||
version "5.30.5"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz#7a9656f360b4b1daea635c4621dab053d08bf8a9"
|
||||
integrity sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==
|
||||
dependencies:
|
||||
"@typescript-eslint/utils" "5.30.4"
|
||||
"@typescript-eslint/utils" "5.30.5"
|
||||
debug "^4.3.4"
|
||||
tsutils "^3.21.0"
|
||||
|
||||
"@typescript-eslint/types@5.30.4":
|
||||
version "5.30.4"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.4.tgz#3bc99eca8ba3fcfd6a21480e216b09dab81c3999"
|
||||
integrity sha512-NTEvqc+Vvu8Q6JeAKryHk2eqLKqsr2St3xhIjhOjQv5wQUBhaTuix4WOSacqj0ONWfKVU12Eug3LEAB95GBkMA==
|
||||
"@typescript-eslint/types@5.30.5":
|
||||
version "5.30.5"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.5.tgz#36a0c05a72af3623cdf9ee8b81ea743b7de75a98"
|
||||
integrity sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==
|
||||
|
||||
"@typescript-eslint/typescript-estree@5.30.4":
|
||||
version "5.30.4"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.4.tgz#ac4be8a2f8fb1f1c3b346d5992a36163121ddb3f"
|
||||
integrity sha512-V4VnEs6/J9/nNizaA12IeU4SAeEYaiKr7XndLNfV5+3zZSB4hIu6EhHJixTKhvIqA+EEHgBl6re8pivBMLLO1w==
|
||||
"@typescript-eslint/typescript-estree@5.30.5":
|
||||
version "5.30.5"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz#c520e4eba20551c4ec76af8d344a42eb6c9767bb"
|
||||
integrity sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==
|
||||
dependencies:
|
||||
"@typescript-eslint/types" "5.30.4"
|
||||
"@typescript-eslint/visitor-keys" "5.30.4"
|
||||
"@typescript-eslint/types" "5.30.5"
|
||||
"@typescript-eslint/visitor-keys" "5.30.5"
|
||||
debug "^4.3.4"
|
||||
globby "^11.1.0"
|
||||
is-glob "^4.0.3"
|
||||
semver "^7.3.7"
|
||||
tsutils "^3.21.0"
|
||||
|
||||
"@typescript-eslint/utils@5.30.4":
|
||||
version "5.30.4"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.4.tgz#07a2b7ce80b2527ea506829f190591b76c70ba9f"
|
||||
integrity sha512-a+GQrJzOUhn4WT1mUumXDyam+22Oo4c5K/jnZ+6r/4WTQF3q8e4CsC9PLHb4SnOClzOqo/5GLZWvkE1aa5UGKQ==
|
||||
"@typescript-eslint/utils@5.30.5":
|
||||
version "5.30.5"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.5.tgz#3999cbd06baad31b9e60d084f20714d1b2776765"
|
||||
integrity sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==
|
||||
dependencies:
|
||||
"@types/json-schema" "^7.0.9"
|
||||
"@typescript-eslint/scope-manager" "5.30.4"
|
||||
"@typescript-eslint/types" "5.30.4"
|
||||
"@typescript-eslint/typescript-estree" "5.30.4"
|
||||
"@typescript-eslint/scope-manager" "5.30.5"
|
||||
"@typescript-eslint/types" "5.30.5"
|
||||
"@typescript-eslint/typescript-estree" "5.30.5"
|
||||
eslint-scope "^5.1.1"
|
||||
eslint-utils "^3.0.0"
|
||||
|
||||
"@typescript-eslint/visitor-keys@5.30.4":
|
||||
version "5.30.4"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.4.tgz#b4969df1a440cc999d4bb7f7b7932dce05537089"
|
||||
integrity sha512-ulKGse3mruSc8x6l8ORSc6+1ORyJzKmZeIaRTu/WpaF/jx3vHvEn5XZUKF9XaVg2710mFmTAUlLcLYLPp/Zf/Q==
|
||||
"@typescript-eslint/visitor-keys@5.30.5":
|
||||
version "5.30.5"
|
||||
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz#d4bb969202019d5d5d849a0aaedc7370cc044b14"
|
||||
integrity sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==
|
||||
dependencies:
|
||||
"@typescript-eslint/types" "5.30.4"
|
||||
"@typescript-eslint/types" "5.30.5"
|
||||
eslint-visitor-keys "^3.3.0"
|
||||
|
||||
"@xobotyi/scrollbar-width@^1.9.5":
|
||||
@ -2490,9 +2490,9 @@ eastasianwidth@^0.2.0:
|
||||
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
|
||||
|
||||
electron-to-chromium@^1.4.172:
|
||||
version "1.4.177"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.177.tgz#b6a4436eb788ca732556cd69f384b8a3c82118c5"
|
||||
integrity sha512-FYPir3NSBEGexSZUEeht81oVhHfLFl6mhUKSkjHN/iB/TwEIt/WHQrqVGfTLN5gQxwJCQkIJBe05eOXjI7omgg==
|
||||
version "1.4.180"
|
||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.180.tgz#380b06037836055d12c7de181ee90b8ed911c3e7"
|
||||
integrity sha512-7at5ash3FD9U5gPa3/wPr6OdiZd/zBjvDZaaHBpcqFOFUhZiWnb7stkqk8xUFL9H9nk7Yok5vCCNK8wyC/+f8A==
|
||||
|
||||
emoji-regex@^8.0.0:
|
||||
version "8.0.0"
|
||||
@ -2601,12 +2601,12 @@ escape-string-regexp@^4.0.0:
|
||||
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
|
||||
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
|
||||
|
||||
eslint-config-next@12.2.1-canary.2:
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.2.1-canary.2.tgz#1f6a14c5ce99b669204375a7984828c232381eef"
|
||||
integrity sha512-FGmsZ/zqHYopyRVkMNWmrIZkrjSwrj9GzK5L31icqIOXhXqQ54reluGytYmb7L0MiuCAK0pIinkbciyga17GeQ==
|
||||
eslint-config-next@12.2.1-canary.3:
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.2.1-canary.3.tgz#cdf67ef4c75606a7ff4c10e274f8d5008baa8072"
|
||||
integrity sha512-9d/tqBJQjZoAB30kz5irePFiTuLCj3MJ2qZqshcsLlKE0rtqPZlk337/KipZGOezIKuZElSIsC0nvBXdkM8VSg==
|
||||
dependencies:
|
||||
"@next/eslint-plugin-next" "12.2.1-canary.2"
|
||||
"@next/eslint-plugin-next" "12.2.1-canary.3"
|
||||
"@rushstack/eslint-patch" "^1.1.3"
|
||||
"@typescript-eslint/parser" "^5.21.0"
|
||||
eslint-import-resolver-node "^0.3.6"
|
||||
@ -3129,9 +3129,9 @@ globals@^11.1.0:
|
||||
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
||||
|
||||
globals@^13.15.0:
|
||||
version "13.15.0"
|
||||
resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac"
|
||||
integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==
|
||||
version "13.16.0"
|
||||
resolved "https://registry.yarnpkg.com/globals/-/globals-13.16.0.tgz#9be4aca28f311aaeb974ea54978ebbb5e35ce46a"
|
||||
integrity sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==
|
||||
dependencies:
|
||||
type-fest "^0.20.2"
|
||||
|
||||
@ -3650,9 +3650,9 @@ kleur@^4.0.3:
|
||||
integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
|
||||
|
||||
language-subtag-registry@~0.3.2:
|
||||
version "0.3.21"
|
||||
resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
|
||||
integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
|
||||
version "0.3.22"
|
||||
resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d"
|
||||
integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==
|
||||
|
||||
language-tags@^1.0.5:
|
||||
version "1.0.5"
|
||||
@ -3959,9 +3959,9 @@ mdast-util-mdxjs-esm@^1.0.0:
|
||||
mdast-util-to-markdown "^1.0.0"
|
||||
|
||||
mdast-util-to-hast@^12.1.0:
|
||||
version "12.1.1"
|
||||
resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.1.1.tgz#89a2bb405eaf3b05eb8bf45157678f35eef5dbca"
|
||||
integrity sha512-qE09zD6ylVP14jV4mjLIhDBOrpFdShHZcEsYvvKGABlr9mGbV7mTlRWdoFxL/EYSTNDiC9GZXy7y8Shgb9Dtzw==
|
||||
version "12.1.2"
|
||||
resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.1.2.tgz#5c793b04014746585254c7ce0bc2d117201a5d1d"
|
||||
integrity sha512-Wn6Mcj04qU4qUXHnHpPATYMH2Jd8RlntdnloDfYLe1ErWRHo6+pvSl/DzHp6sCZ9cBSYlc8Sk8pbwb8xtUoQhQ==
|
||||
dependencies:
|
||||
"@types/hast" "^2.0.0"
|
||||
"@types/mdast" "^3.0.0"
|
||||
@ -3969,6 +3969,7 @@ mdast-util-to-hast@^12.1.0:
|
||||
mdast-util-definitions "^5.0.0"
|
||||
mdurl "^1.0.0"
|
||||
micromark-util-sanitize-uri "^1.0.0"
|
||||
trim-lines "^3.0.0"
|
||||
unist-builder "^3.0.0"
|
||||
unist-util-generated "^2.0.0"
|
||||
unist-util-position "^4.0.0"
|
||||
@ -4489,31 +4490,31 @@ next-transpile-modules@^9.0.0:
|
||||
enhanced-resolve "^5.7.0"
|
||||
escalade "^3.1.1"
|
||||
|
||||
next@12.2.1-canary.2:
|
||||
version "12.2.1-canary.2"
|
||||
resolved "https://registry.yarnpkg.com/next/-/next-12.2.1-canary.2.tgz#d920098fe18dfe0ec384b8a678ccf45614a0bf62"
|
||||
integrity sha512-2q2NIuQLL1UjlWQkuA5D1NhVsH/XRPVof6XmCO0hgWy+jijjNQgS6HCifN1yzVONpaA7AbvrlrBt4QdvKysyPA==
|
||||
next@12.2.1-canary.3:
|
||||
version "12.2.1-canary.3"
|
||||
resolved "https://registry.yarnpkg.com/next/-/next-12.2.1-canary.3.tgz#ae879eb848f005394c7369b555e94c00b5572d6d"
|
||||
integrity sha512-zHZvy2QoTmdtEBhJT64wXh38s0uE/sgtQgY/gL6Fn5/hmeyHKP+hovQMYXMa/wJtnCJHdBUmyhikmW+MLRZV0A==
|
||||
dependencies:
|
||||
"@next/env" "12.2.1-canary.2"
|
||||
"@next/env" "12.2.1-canary.3"
|
||||
"@swc/helpers" "0.4.2"
|
||||
caniuse-lite "^1.0.30001332"
|
||||
postcss "8.4.5"
|
||||
styled-jsx "5.0.2"
|
||||
use-sync-external-store "1.1.0"
|
||||
optionalDependencies:
|
||||
"@next/swc-android-arm-eabi" "12.2.1-canary.2"
|
||||
"@next/swc-android-arm64" "12.2.1-canary.2"
|
||||
"@next/swc-darwin-arm64" "12.2.1-canary.2"
|
||||
"@next/swc-darwin-x64" "12.2.1-canary.2"
|
||||
"@next/swc-freebsd-x64" "12.2.1-canary.2"
|
||||
"@next/swc-linux-arm-gnueabihf" "12.2.1-canary.2"
|
||||
"@next/swc-linux-arm64-gnu" "12.2.1-canary.2"
|
||||
"@next/swc-linux-arm64-musl" "12.2.1-canary.2"
|
||||
"@next/swc-linux-x64-gnu" "12.2.1-canary.2"
|
||||
"@next/swc-linux-x64-musl" "12.2.1-canary.2"
|
||||
"@next/swc-win32-arm64-msvc" "12.2.1-canary.2"
|
||||
"@next/swc-win32-ia32-msvc" "12.2.1-canary.2"
|
||||
"@next/swc-win32-x64-msvc" "12.2.1-canary.2"
|
||||
"@next/swc-android-arm-eabi" "12.2.1-canary.3"
|
||||
"@next/swc-android-arm64" "12.2.1-canary.3"
|
||||
"@next/swc-darwin-arm64" "12.2.1-canary.3"
|
||||
"@next/swc-darwin-x64" "12.2.1-canary.3"
|
||||
"@next/swc-freebsd-x64" "12.2.1-canary.3"
|
||||
"@next/swc-linux-arm-gnueabihf" "12.2.1-canary.3"
|
||||
"@next/swc-linux-arm64-gnu" "12.2.1-canary.3"
|
||||
"@next/swc-linux-arm64-musl" "12.2.1-canary.3"
|
||||
"@next/swc-linux-x64-gnu" "12.2.1-canary.3"
|
||||
"@next/swc-linux-x64-musl" "12.2.1-canary.3"
|
||||
"@next/swc-win32-arm64-msvc" "12.2.1-canary.3"
|
||||
"@next/swc-win32-ia32-msvc" "12.2.1-canary.3"
|
||||
"@next/swc-win32-x64-msvc" "12.2.1-canary.3"
|
||||
|
||||
nlcst-to-string@^2.0.0:
|
||||
version "2.0.4"
|
||||
@ -5055,10 +5056,10 @@ rehype-parse@^8.0.2:
|
||||
parse5 "^6.0.0"
|
||||
unified "^10.0.0"
|
||||
|
||||
rehype-prism-plus@^1.4.1:
|
||||
version "1.4.1"
|
||||
resolved "https://registry.yarnpkg.com/rehype-prism-plus/-/rehype-prism-plus-1.4.1.tgz#abe8ab7ccee3a5e912f592dc0991b271ebfaf102"
|
||||
integrity sha512-CRRplleECLeroPuNBsWnzzFAYZz6bBKkwhh5PtWxr2OaJCTy1XLNrpBbyKp71tHgyFwmk9NKYSFzg5gdMbtJ/w==
|
||||
rehype-prism-plus@^1.4.2:
|
||||
version "1.4.2"
|
||||
resolved "https://registry.yarnpkg.com/rehype-prism-plus/-/rehype-prism-plus-1.4.2.tgz#418e3c04811c70c3c2457eda12fb75bb27319443"
|
||||
integrity sha512-RQNQJIRiejJ6lUh8nm04jEoR0bSsWl2i4R0MXpJtvlRzwTU1D7qdHGT0veCIvuhXPRP4G7Obo4VGwOVAfOtXZw==
|
||||
dependencies:
|
||||
hast-util-to-string "^2.0.0"
|
||||
parse-numeric-range "^1.3.0"
|
||||
@ -5686,6 +5687,11 @@ tr46@~0.0.3:
|
||||
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
|
||||
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
|
||||
|
||||
trim-lines@^3.0.0:
|
||||
version "3.0.1"
|
||||
resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338"
|
||||
integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==
|
||||
|
||||
trough@^2.0.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876"
|
||||
|
Loading…
x
Reference in New Issue
Block a user