diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +node_modules diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 31e3279..4f0d56b 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -6,6 +6,6 @@ module.exports = { extends: ["@deopea.os/eslint-config", "turbo"], parserOptions: { tsconfigRootDir: __dirname, - project: ["./tsconfig.json"], + project: "./tsconfig.json", }, }; diff --git a/.gitignore b/.gitignore index 0749a65..1a1fcf2 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ lib-types # turbo .turbo +out diff --git a/apps/earth/.gitignore b/apps/earth/.gitignore index ab39cbc..254defd 100644 --- a/apps/earth/.gitignore +++ b/apps/earth/.gitignore @@ -1 +1 @@ -server/ +server diff --git a/apps/earth/Dockerfile b/apps/earth/Dockerfile new file mode 100644 index 0000000..4f8e8be --- /dev/null +++ b/apps/earth/Dockerfile @@ -0,0 +1,48 @@ +# * Pruner * # +FROM node:18 AS pruner + +WORKDIR /app + +COPY ./ ./ + +# Prune +RUN npx -y turbo prune --scope="@deopea.os/earth" --docker +# * Pruner * # + +# * Builder * # +FROM node:18 AS builder + +WORKDIR /app + +# Install +COPY .gitignore ./ +COPY --from=pruner \ + # sources + /app/out/json/ \ + /app/out/package-lock.json \ + # destination + ./ + +# Install +RUN npm ci --omit="dev" + +# Build +COPY --from=pruner /app/out/full/ ./ +RUN npx turbo build --filter="@deopea.os/earth" +# * Builder * # + +# * Runner * # +FROM node:18 AS runner + +WORKDIR /app + +# User +RUN addgroup --system --gid 1001 app +RUN adduser --system --uid 1001 app +USER app + +COPY --from=builder /app/apps/earth/package.json . +COPY --from=builder --chown=app:app /app/apps/earth/dist dist +COPY --from=builder --chown=app:app /app/apps/earth/server server + +CMD npm start diff --git a/apps/earth/README.md b/apps/earth/README.md index 4dbb28a..77092ae 100644 --- a/apps/earth/README.md +++ b/apps/earth/README.md @@ -63,3 +63,13 @@ The production build will generate client and server modules by running both cli ```shell npm run build # or `yarn build` ``` + +## Express Server + +This app has a minimal [Express server](https://expressjs.com/) implementation. After running a full build, you can preview the build using the command: + +```sh +npm run serve +``` + +Then visit [http://localhost:8080/](http://localhost:8080/) diff --git a/apps/earth/adapters/express/vite.config.ts b/apps/earth/adapters/express/vite.config.ts new file mode 100644 index 0000000..5b199a8 --- /dev/null +++ b/apps/earth/adapters/express/vite.config.ts @@ -0,0 +1,15 @@ +import { expressAdapter } from '@builder.io/qwik-city/adapters/express/vite'; +import { extendConfig } from '@builder.io/qwik-city/vite'; +import baseConfig from '../../vite.config'; + +export default extendConfig(baseConfig, () => { + return { + build: { + ssr: true, + rollupOptions: { + input: ['src/entry.express.tsx', '@qwik-city-plan'], + }, + }, + plugins: [expressAdapter()], + }; +}); diff --git a/apps/earth/package.json b/apps/earth/package.json index 0359fa9..592b0d7 100644 --- a/apps/earth/package.json +++ b/apps/earth/package.json @@ -8,11 +8,12 @@ "npm": ">=8.0.0" }, "scripts": { - ".build": "qwik build", + "build": "qwik build", "build.client": "vite build", "build.preview": "vite build --ssr src/entry.preview.tsx", + "build.server": "vite build -c adapters/express/vite.config.ts", "build.types": "tsc --incremental --noEmit", - "deploy": "echo 'Run \"npm run qwik add\" to install a server adaptor'", + "deploy": "node server/entry.express", "dev": "vite --mode ssr", "dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force", "dotenv": "npx dotenv-vault", @@ -20,24 +21,28 @@ "fmt.check": "prettier --check .", "lint": "TIMING=1 eslint --cache --cache-location \".turbo/.eslintcache\"", "preview": "qwik build preview && vite preview --open", - "start": "vite --open --mode ssr", + "start": "node server/entry.express.js", "qwik": "qwik" }, "devDependencies": { - "@builder.io/qwik": "^0.16.2", - "@builder.io/qwik-city": "^0.1.0-beta9", + "@builder.io/qwik": "^0.18.1", + "@builder.io/qwik-city": "^0.2.1", "@deopea.os/eslint-config": "^1.0.0", "@deopea.os/tsconfig": "^1.0.0", - "@deopea.os/ui": "^1.0.0-alpha.1", "@tailwindcss/typography": "^0.5.9", + "@types/compression": "^1.7.2", + "@types/express": "4.17.13", "@types/node": "^18.11.18", "@typescript-eslint/eslint-plugin": "^5.48.1", "@typescript-eslint/parser": "^5.48.1", "autoprefixer": "^10.4.11", + "aws-cdk-lib": "^2.64.0", + "compression": "^1.7.4", "daisyui": "^2.50.0", "eslint": "^8.31.0", "eslint-plugin-qwik": "^0.16.2", "espree": "^9.4.1", + "express": "4.17.3", "postcss": "^8.4.16", "prettier": "^2.8.2", "tailwindcss": "^3.1.8", diff --git a/apps/earth/src/entry.express.tsx b/apps/earth/src/entry.express.tsx new file mode 100644 index 0000000..e3580a8 --- /dev/null +++ b/apps/earth/src/entry.express.tsx @@ -0,0 +1,50 @@ +/* + * WHAT IS THIS FILE? + * + * It's the entry point for the express server when building for production. + * + * Learn more about the cloudflare integration here: + * - https://qwik.builder.io/integrations/deployments/node/ + * + */ +import { createQwikCity } from '@builder.io/qwik-city/middleware/node'; +import qwikCityPlan from '@qwik-city-plan'; +import render from './entry.ssr'; +import express from 'express'; +import { fileURLToPath } from 'node:url'; +import { join } from 'node:path'; +// import compression from 'compression'; + +// Directories where the static assets are located +const distDir = join(fileURLToPath(import.meta.url), '..', '..', 'dist'); +const buildDir = join(distDir, 'build'); + +// Allow for dynamic port +const PORT = process.env.PORT ?? 3000; + +// Create the Qwik City express middleware +const { router, notFound } = createQwikCity({ render, qwikCityPlan }); + +// Create the express server +// https://expressjs.com/ +const app = express(); + +// Enable gzip compression +// app.use(compression()); + +// Static asset handlers +// https://expressjs.com/en/starter/static-files.html +app.use(`/build`, express.static(buildDir, { immutable: true, maxAge: '1y' })); +app.use(express.static(distDir, { redirect: false })); + +// Use Qwik City's page and endpoint request handler +app.use(router); + +// Use Qwik City's 404 handler +app.use(notFound); + +// Start the express server +app.listen(PORT, () => { + /* eslint-disable */ + console.log(`Server starter: http://localhost:${PORT}/`); +}); diff --git a/apps/earth/src/global.css b/apps/earth/src/global.css index 2d1abb9..9d65372 100644 --- a/apps/earth/src/global.css +++ b/apps/earth/src/global.css @@ -5,11 +5,11 @@ * the styles in here will be applied to the Document, without any sort of CSS scoping. * */ - - @tailwind base; - @tailwind components; - @tailwind utilities; - - html { + +@tailwind base; +@tailwind components; +@tailwind utilities; + +html { height: 100%; - } +} diff --git a/apps/earth/src/routes/index.tsx b/apps/earth/src/routes/index.tsx index 0585cce..4f34101 100644 --- a/apps/earth/src/routes/index.tsx +++ b/apps/earth/src/routes/index.tsx @@ -1,11 +1,8 @@ -import { component$, useStyles$ } from "@builder.io/qwik"; +import { component$ } from "@builder.io/qwik"; import type { DocumentHead } from "@builder.io/qwik-city"; import { AnimatedBlobs } from "components/blob"; -import styles from "./index.css?inline"; export default component$(() => { - useStyles$(styles); - const expansionClasses = [ "w-0", "max-w-fit", diff --git a/apps/earth/stack/api.ts b/apps/earth/stack/api.ts new file mode 100644 index 0000000..101029b --- /dev/null +++ b/apps/earth/stack/api.ts @@ -0,0 +1,24 @@ +import * as apigateway from "aws-cdk-lib/aws-apigateway"; +import * as lambda from "aws-cdk-lib/aws-lambda"; +import { Construct } from "constructs"; + +export class APIStack extends Construct { + constructor(scope: Construct, id: string) { + super(scope, id); + + const api = new apigateway.RestApi(this, "earth-api", { + restApiName: "Earth API", + description: "API for Deopea/Earth", + }); + + const ssrHandler = new lambda.DockerImageFunction(this, "ClientHandler", { + code: lambda.DockerImageCode.fromImageAsset(__dirname), + }); + + const ssrRoot = api.root.addResource("/ssr"); + ssrRoot.addMethod( + "GET", + new apigateway.LambdaIntegration(ssrHandler, { proxy: true }), + ); + } +} diff --git a/apps/earth/stack/cdk.ts b/apps/earth/stack/cdk.ts new file mode 100644 index 0000000..a1f6fda --- /dev/null +++ b/apps/earth/stack/cdk.ts @@ -0,0 +1,8 @@ +#!/usr/bin/env node + +import * as cdk from "aws-cdk-lib"; +import { APIStack } from "./api"; + +const app = new cdk.App(); + +new APIStack(app, "APIStack"); diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..4012f8e --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,10 @@ +version: "3" + +services: + earth: + container_name: earth + build: + context: . + dockerfile: apps/earth/Dockerfile + ports: + - 8080:4173 diff --git a/package-lock.json b/package-lock.json index 5c8746a..ae3a966 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29,7 +29,7 @@ "semantic-release": "^20.0.2", "semantic-release-monorepo": "^7.0.5", "ts-node": "^10.9.1", - "turbo": "latest", + "turbo": "^1.7.4", "typescript": "latest" }, "engines": { @@ -40,20 +40,24 @@ "apps/earth": { "name": "@deopea.os/earth", "devDependencies": { - "@builder.io/qwik": "^0.16.2", - "@builder.io/qwik-city": "^0.1.0-beta9", + "@builder.io/qwik": "^0.18.1", + "@builder.io/qwik-city": "^0.2.1", "@deopea.os/eslint-config": "^1.0.0", "@deopea.os/tsconfig": "^1.0.0", - "@deopea.os/ui": "^1.0.0-alpha.1", "@tailwindcss/typography": "^0.5.9", + "@types/compression": "^1.7.2", + "@types/express": "4.17.13", "@types/node": "^18.11.18", "@typescript-eslint/eslint-plugin": "^5.48.1", "@typescript-eslint/parser": "^5.48.1", "autoprefixer": "^10.4.11", + "aws-cdk-lib": "^2.64.0", + "compression": "^1.7.4", "daisyui": "^2.50.0", "eslint": "^8.31.0", "eslint-plugin-qwik": "^0.16.2", "espree": "^9.4.1", + "express": "4.17.3", "postcss": "^8.4.16", "prettier": "^2.8.2", "tailwindcss": "^3.1.8", @@ -66,6 +70,24 @@ "npm": ">=8.0.0" } }, + "node_modules/@aws-cdk/asset-awscli-v1": { + "version": "2.2.66", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@aws-cdk/asset-awscli-v1/-/asset-awscli-v1-2.2.66.tgz", + "integrity": "sha512-MdC2UpjDVi0ePQkXZg938/FZvK5pu0o2im9legoojmNZNKGssqpscz5gPISeZhrW124WI8IF+6hYPkHVYnod2w==", + "dev": true + }, + "node_modules/@aws-cdk/asset-kubectl-v20": { + "version": "2.1.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@aws-cdk/asset-kubectl-v20/-/asset-kubectl-v20-2.1.1.tgz", + "integrity": "sha512-U1ntiX8XiMRRRH5J1IdC+1t5CE89015cwyt5U63Cpk0GnMlN5+h9WsWMlKlPXZR4rdq/m806JRlBMRpBUB2Dhw==", + "dev": true + }, + "node_modules/@aws-cdk/asset-node-proxy-agent-v5": { + "version": "2.0.55", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@aws-cdk/asset-node-proxy-agent-v5/-/asset-node-proxy-agent-v5-2.0.55.tgz", + "integrity": "sha512-wqw3I/Bdy3SURLiGKtU47Fkz6OnSPsNs9O0FlkJyBFWVh4e5kMe1BfEmc3kZ/QukvKxI+Fnqk9Yz8tui0goqiQ==", + "dev": true + }, "node_modules/@babel/code-frame": { "version": "7.18.6", "license": "MIT", @@ -153,9 +175,9 @@ } }, "node_modules/@builder.io/qwik": { - "version": "0.16.2", - "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@builder.io/qwik/-/qwik-0.16.2.tgz", - "integrity": "sha512-yq+WXx54PVDJkTse7C7zYcTVIn2g5qHD2buH/iy7nux+fVLd2Qpui7UK1nuioK2Kpf75JfEAH9ZSWIHQl32FKQ==", + "version": "0.18.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@builder.io/qwik/-/qwik-0.18.1.tgz", + "integrity": "sha512-11qx5Wh6WRxgvHDJDppJORhykzkACUYuu9qRKEGdS3vTkBQ2Rr8NFDjYon2x6+8Wu9WukHk84ANywWnS91gS/w==", "dev": true, "bin": { "qwik": "qwik.cjs" @@ -168,18 +190,19 @@ } }, "node_modules/@builder.io/qwik-city": { - "version": "0.1.0-beta9", - "resolved": "https://registry.npmjs.org/@builder.io/qwik-city/-/qwik-city-0.1.0-beta9.tgz", - "integrity": "sha512-IPRIJUkTnQd1dCUTlkS3nLxpB02yUZziZ4b+b5qTbXAEnWDRWIhw4XgJJbZB2rTzZiQ1+8PebHqWNIoh+uBmSA==", + "version": "0.2.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@builder.io/qwik-city/-/qwik-city-0.2.1.tgz", + "integrity": "sha512-g+ZC4Neo1XYQ/8uquUp6GKwr0eagpuCyQ3LkAtFhaIARaO67+cZfR6EFLJzf9wz5AVSt8/0QSD7wJEpni1i4IA==", "dev": true, "dependencies": { - "@mdx-js/mdx": "2.2.1", + "@mdx-js/mdx": "2.3.0", "@types/mdx": "2.0.3", "source-map": "0.7.4", - "vfile": "5.3.6" + "vfile": "5.3.7", + "zod": "^3.20.6" }, "peerDependencies": { - "@builder.io/qwik": ">=0.16.2" + "@builder.io/qwik": ">=0.17.0" } }, "node_modules/@colors/colors": { @@ -1045,9 +1068,10 @@ } }, "node_modules/@mdx-js/mdx": { - "version": "2.2.1", + "version": "2.3.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@mdx-js/mdx/-/mdx-2.3.0.tgz", + "integrity": "sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/mdx": "^2.0.0", @@ -1672,12 +1696,41 @@ }, "node_modules/@types/acorn": { "version": "4.0.6", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/acorn/-/acorn-4.0.6.tgz", + "integrity": "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree": "*" } }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/compression": { + "version": "1.7.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/compression/-/compression-1.7.2.tgz", + "integrity": "sha512-lwEL4M/uAGWngWFLSG87ZDr2kLrbuR8p7X+QZB1OQlT+qkHsCPDVFnHPyXf4Vyl4yDDorNY+mAhosxkCvppatg==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/conventional-changelog": { "version": "3.1.1", "dev": true, @@ -1739,8 +1792,9 @@ }, "node_modules/@types/debug": { "version": "4.1.7", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/debug/-/debug-4.1.7.tgz", + "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", "dev": true, - "license": "MIT", "dependencies": { "@types/ms": "*" } @@ -1752,12 +1806,36 @@ }, "node_modules/@types/estree-jsx": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/estree-jsx/-/estree-jsx-1.0.0.tgz", + "integrity": "sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree": "*" } }, + "node_modules/@types/express": { + "version": "4.17.13", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.33", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", + "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, "node_modules/@types/git-raw-commits": { "version": "2.0.1", "dev": true, @@ -1768,8 +1846,9 @@ }, "node_modules/@types/hast": { "version": "2.3.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/hast/-/hast-2.3.4.tgz", + "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "*" } @@ -1780,16 +1859,24 @@ }, "node_modules/@types/mdast": { "version": "3.0.10", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/mdast/-/mdast-3.0.10.tgz", + "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "*" } }, "node_modules/@types/mdx": { "version": "2.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/mdx/-/mdx-2.0.3.tgz", + "integrity": "sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "3.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", + "dev": true }, "node_modules/@types/minimist": { "version": "1.2.2", @@ -1797,8 +1884,9 @@ }, "node_modules/@types/ms": { "version": "0.7.31", - "dev": true, - "license": "MIT" + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/ms/-/ms-0.7.31.tgz", + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", + "dev": true }, "node_modules/@types/node": { "version": "18.11.18", @@ -1814,6 +1902,18 @@ "dev": true, "license": "MIT" }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, "node_modules/@types/retry": { "version": "0.12.0", "license": "MIT" @@ -1830,10 +1930,21 @@ "version": "7.3.13", "license": "MIT" }, + "node_modules/@types/serve-static": { + "version": "1.15.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "dev": true, + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, "node_modules/@types/unist": { "version": "2.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", + "dev": true }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.48.1", @@ -2036,6 +2147,19 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/acorn": { "version": "8.8.1", "license": "MIT", @@ -2216,6 +2340,12 @@ "version": "1.0.0", "license": "MIT" }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, "node_modules/array-ify": { "version": "1.0.0", "license": "MIT" @@ -2244,8 +2374,9 @@ }, "node_modules/astring": { "version": "1.8.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/astring/-/astring-1.8.4.tgz", + "integrity": "sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==", "dev": true, - "license": "MIT", "bin": { "astring": "bin/astring" } @@ -2283,10 +2414,217 @@ "postcss": "^8.1.0" } }, + "node_modules/aws-cdk-lib": { + "version": "2.64.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/aws-cdk-lib/-/aws-cdk-lib-2.64.0.tgz", + "integrity": "sha512-IrgL7thb6TeOyHgyR/qKWTdA9FBb9lv7Z9QPDzCNJlkKI+0ANjYHy3RYV8Gd+1+kc6l8DG9Z1elij40YCr/Ptg==", + "bundleDependencies": [ + "@balena/dockerignore", + "case", + "fs-extra", + "ignore", + "jsonschema", + "minimatch", + "punycode", + "semver", + "yaml" + ], + "dev": true, + "dependencies": { + "@aws-cdk/asset-awscli-v1": "^2.2.52", + "@aws-cdk/asset-kubectl-v20": "^2.1.1", + "@aws-cdk/asset-node-proxy-agent-v5": "^2.0.42", + "@balena/dockerignore": "^1.0.2", + "case": "1.6.3", + "fs-extra": "^9.1.0", + "ignore": "^5.2.4", + "jsonschema": "^1.4.1", + "minimatch": "^3.1.2", + "punycode": "^2.3.0", + "semver": "^7.3.8", + "yaml": "1.10.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "constructs": "^10.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/@balena/dockerignore": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "Apache-2.0" + }, + "node_modules/aws-cdk-lib/node_modules/at-least-node": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/brace-expansion": { + "version": "1.1.11", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/aws-cdk-lib/node_modules/case": { + "version": "1.6.3", + "dev": true, + "inBundle": true, + "license": "(MIT OR GPL-3.0-or-later)", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/aws-cdk-lib/node_modules/fs-extra": { + "version": "9.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aws-cdk-lib/node_modules/graceful-fs": { + "version": "4.2.10", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/aws-cdk-lib/node_modules/ignore": { + "version": "5.2.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/aws-cdk-lib/node_modules/jsonfile": { + "version": "6.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/aws-cdk-lib/node_modules/jsonschema": { + "version": "1.4.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/aws-cdk-lib/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aws-cdk-lib/node_modules/minimatch": { + "version": "3.1.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/aws-cdk-lib/node_modules/punycode": { + "version": "2.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/aws-cdk-lib/node_modules/semver": { + "version": "7.3.8", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/aws-cdk-lib/node_modules/universalify": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/aws-cdk-lib/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/aws-cdk-lib/node_modules/yaml": { + "version": "1.10.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, "node_modules/bail": { "version": "2.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2309,6 +2647,51 @@ "node": ">=8" } }, + "node_modules/body-parser": { + "version": "1.19.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.9.7", + "raw-body": "2.4.3", + "type-is": "~1.6.18" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, "node_modules/bottleneck": { "version": "2.19.5", "license": "MIT" @@ -2370,6 +2753,15 @@ "node": ">=10.16.0" } }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/callsites": { "version": "3.1.0", "license": "MIT", @@ -2437,8 +2829,9 @@ }, "node_modules/ccount": { "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2473,8 +2866,9 @@ }, "node_modules/character-entities": { "version": "2.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2482,8 +2876,9 @@ }, "node_modules/character-entities-html4": { "version": "2.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2491,8 +2886,9 @@ }, "node_modules/character-entities-legacy": { "version": "3.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2500,8 +2896,9 @@ }, "node_modules/character-reference-invalid": { "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -2680,22 +3077,74 @@ "dev": true, "license": "MIT" }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/compare-func": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/compare-func": { + "node_modules/compression/node_modules/ms": { "version": "2.0.0", - "license": "MIT", - "dependencies": { - "array-ify": "^1.0.0", - "dot-prop": "^5.1.0" - } + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true }, "node_modules/concat-map": { "version": "0.0.1", @@ -2709,6 +3158,37 @@ "proto-list": "~1.2.1" } }, + "node_modules/constructs": { + "version": "10.1.249", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/constructs/-/constructs-10.1.249.tgz", + "integrity": "sha512-xttf/MWHfvMyOjg88CYymlC7RZCP7kF6knA1xtJgDfhvel11uYUhomEGxuQiqy6BOvKyKxJUBaGl8jfp8s1MLA==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 14.17.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/conventional-changelog": { "version": "3.1.25", "license": "MIT", @@ -3054,6 +3534,21 @@ "node": ">=10" } }, + "node_modules/cookie": { + "version": "0.4.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, "node_modules/core-util-is": { "version": "1.0.3", "license": "MIT" @@ -3211,8 +3706,9 @@ }, "node_modules/decode-named-character-reference": { "version": "1.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", "dev": true, - "license": "MIT", "dependencies": { "character-entities": "^2.0.0" }, @@ -3261,18 +3757,34 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/deprecation": { "version": "2.3.1", "license": "ISC" }, "node_modules/dequal": { "version": "2.0.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } }, + "node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, "node_modules/detective": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", @@ -3298,8 +3810,9 @@ }, "node_modules/diff": { "version": "5.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } @@ -3376,6 +3889,12 @@ "dev": true, "license": "MIT" }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, "node_modules/electron-to-chromium": { "version": "1.4.284", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", @@ -3387,6 +3906,15 @@ "dev": true, "license": "MIT" }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/enquirer": { "version": "2.3.6", "dev": true, @@ -3461,6 +3989,12 @@ "node": ">=6" } }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, "node_modules/escape-string-regexp": { "version": "4.0.0", "license": "MIT", @@ -3744,9 +4278,10 @@ } }, "node_modules/estree-util-attach-comments": { - "version": "2.1.0", + "version": "2.1.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz", + "integrity": "sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree": "^1.0.0" }, @@ -3757,8 +4292,9 @@ }, "node_modules/estree-util-build-jsx": { "version": "2.2.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz", + "integrity": "sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree-jsx": "^1.0.0", "estree-util-is-identifier-name": "^2.0.0", @@ -3770,18 +4306,20 @@ } }, "node_modules/estree-util-is-identifier-name": { - "version": "2.0.1", + "version": "2.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz", + "integrity": "sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, "node_modules/estree-util-to-js": { - "version": "1.1.0", + "version": "1.2.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz", + "integrity": "sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree-jsx": "^1.0.0", "astring": "^1.8.0", @@ -3793,9 +4331,10 @@ } }, "node_modules/estree-util-visit": { - "version": "1.2.0", + "version": "1.2.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/estree-util-visit/-/estree-util-visit-1.2.1.tgz", + "integrity": "sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/unist": "^2.0.0" @@ -3806,9 +4345,13 @@ } }, "node_modules/estree-walker": { - "version": "3.0.2", + "version": "3.0.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "dev": true, - "license": "MIT" + "dependencies": { + "@types/estree": "^1.0.0" + } }, "node_modules/esutils": { "version": "2.0.3", @@ -3817,6 +4360,15 @@ "node": ">=0.10.0" } }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/execa": { "version": "6.1.0", "license": "MIT", @@ -3838,10 +4390,67 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/express": { + "version": "4.17.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/express/-/express-4.17.3.tgz", + "integrity": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.19.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.4.2", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.9.7", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.17.2", + "serve-static": "1.14.2", + "setprototypeof": "1.2.0", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, "node_modules/extend": { "version": "3.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true }, "node_modules/fast-deep-equal": { "version": "3.1.3", @@ -3926,6 +4535,39 @@ "node": ">=8" } }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, "node_modules/find-up": { "version": "5.0.0", "license": "MIT", @@ -3968,6 +4610,15 @@ "version": "3.2.7", "license": "ISC" }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/fraction.js": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", @@ -3981,6 +4632,15 @@ "url": "https://www.patreon.com/infusion" } }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/from2": { "version": "2.3.0", "license": "MIT", @@ -4428,9 +5088,10 @@ } }, "node_modules/hast-util-to-estree": { - "version": "2.2.0", + "version": "2.3.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/hast-util-to-estree/-/hast-util-to-estree-2.3.2.tgz", + "integrity": "sha512-YYDwATNdnvZi3Qi84iatPIl1lWpXba1MeNrNbDfJfVzEBZL8uUmtR7mt7bxKBC8kuAuvb0bkojXYZzsNHyHCLg==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree": "^1.0.0", "@types/estree-jsx": "^1.0.0", @@ -4444,7 +5105,7 @@ "mdast-util-mdxjs-esm": "^1.0.0", "property-information": "^6.0.0", "space-separated-tokens": "^2.0.0", - "style-to-object": "^0.4.0", + "style-to-object": "^0.4.1", "unist-util-position": "^4.0.0", "zwitch": "^2.0.0" }, @@ -4455,8 +5116,9 @@ }, "node_modules/hast-util-whitespace": { "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", + "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -4482,6 +5144,22 @@ "node": ">=10" } }, + "node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/http-proxy-agent": { "version": "5.0.0", "license": "MIT", @@ -4526,6 +5204,18 @@ "url": "https://github.com/sponsors/typicode" } }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/import-fresh": { "version": "3.3.0", "license": "MIT", @@ -4582,8 +5272,9 @@ }, "node_modules/inline-style-parser": { "version": "0.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==", + "dev": true }, "node_modules/into-stream": { "version": "6.0.0", @@ -4599,10 +5290,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/is-alphabetical": { "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4610,8 +5311,9 @@ }, "node_modules/is-alphanumerical": { "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", "dev": true, - "license": "MIT", "dependencies": { "is-alphabetical": "^2.0.0", "is-decimal": "^2.0.0" @@ -4639,6 +5341,8 @@ }, "node_modules/is-buffer": { "version": "2.0.5", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", "dev": true, "funding": [ { @@ -4654,7 +5358,6 @@ "url": "https://feross.org/support" } ], - "license": "MIT", "engines": { "node": ">=4" } @@ -4671,8 +5374,9 @@ }, "node_modules/is-decimal": { "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4708,8 +5412,9 @@ }, "node_modules/is-hexadecimal": { "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -4745,8 +5450,9 @@ }, "node_modules/is-plain-obj": { "version": "4.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "dev": true, - "license": "MIT", "engines": { "node": ">=12" }, @@ -4763,8 +5469,9 @@ }, "node_modules/is-reference": { "version": "3.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/is-reference/-/is-reference-3.0.1.tgz", + "integrity": "sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree": "*" } @@ -4910,8 +5617,9 @@ }, "node_modules/kleur": { "version": "4.1.5", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -5277,8 +5985,9 @@ }, "node_modules/longest-streak": { "version": "3.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -5311,8 +6020,9 @@ }, "node_modules/markdown-extensions": { "version": "1.1.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/markdown-extensions/-/markdown-extensions-1.1.1.tgz", + "integrity": "sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -5379,9 +6089,10 @@ } }, "node_modules/mdast-util-definitions": { - "version": "5.1.1", + "version": "5.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", + "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", "dev": true, - "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", @@ -5393,9 +6104,10 @@ } }, "node_modules/mdast-util-from-markdown": { - "version": "1.2.0", + "version": "1.3.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz", + "integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==", "dev": true, - "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", @@ -5416,13 +6128,16 @@ } }, "node_modules/mdast-util-mdx": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz", + "integrity": "sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==", "dev": true, - "license": "MIT", "dependencies": { + "mdast-util-from-markdown": "^1.0.0", "mdast-util-mdx-expression": "^1.0.0", "mdast-util-mdx-jsx": "^2.0.0", - "mdast-util-mdxjs-esm": "^1.0.0" + "mdast-util-mdxjs-esm": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" }, "funding": { "type": "opencollective", @@ -5430,9 +6145,10 @@ } }, "node_modules/mdast-util-mdx-expression": { - "version": "1.3.1", + "version": "1.3.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz", + "integrity": "sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^2.0.0", @@ -5446,14 +6162,17 @@ } }, "node_modules/mdast-util-mdx-jsx": { - "version": "2.1.0", + "version": "2.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.2.tgz", + "integrity": "sha512-o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", "ccount": "^2.0.0", + "mdast-util-from-markdown": "^1.1.0", "mdast-util-to-markdown": "^1.3.0", "parse-entities": "^4.0.0", "stringify-entities": "^4.0.0", @@ -5467,9 +6186,10 @@ } }, "node_modules/mdast-util-mdxjs-esm": { - "version": "1.3.0", + "version": "1.3.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz", + "integrity": "sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==", "dev": true, - "license": "MIT", "dependencies": { "@types/estree-jsx": "^1.0.0", "@types/hast": "^2.0.0", @@ -5483,9 +6203,10 @@ } }, "node_modules/mdast-util-phrasing": { - "version": "3.0.0", + "version": "3.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", "dev": true, - "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "unist-util-is": "^5.0.0" @@ -5496,16 +6217,16 @@ } }, "node_modules/mdast-util-to-hast": { - "version": "12.2.5", + "version": "12.3.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", + "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", "dev": true, - "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", "mdast-util-definitions": "^5.0.0", "micromark-util-sanitize-uri": "^1.1.0", "trim-lines": "^3.0.0", - "unist-builder": "^3.0.0", "unist-util-generated": "^2.0.0", "unist-util-position": "^4.0.0", "unist-util-visit": "^4.0.0" @@ -5517,8 +6238,9 @@ }, "node_modules/mdast-util-to-markdown": { "version": "1.5.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", "dev": true, - "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", @@ -5535,14 +6257,27 @@ } }, "node_modules/mdast-util-to-string": { - "version": "3.1.0", + "version": "3.1.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz", + "integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==", "dev": true, - "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/meow": { "version": "8.1.2", "license": "MIT", @@ -5576,6 +6311,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, "node_modules/merge-stream": { "version": "2.0.0", "license": "MIT" @@ -5587,8 +6328,19 @@ "node": ">= 8" } }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/micromark": { "version": "3.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark/-/micromark-3.1.0.tgz", + "integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==", "dev": true, "funding": [ { @@ -5600,7 +6352,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "@types/debug": "^4.0.0", "debug": "^4.0.0", @@ -5623,6 +6374,8 @@ }, "node_modules/micromark-core-commonmark": { "version": "1.0.6", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz", + "integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==", "dev": true, "funding": [ { @@ -5634,7 +6387,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-factory-destination": "^1.0.0", @@ -5655,7 +6407,9 @@ } }, "node_modules/micromark-extension-mdx-expression": { - "version": "1.0.3", + "version": "1.0.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.4.tgz", + "integrity": "sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw==", "dev": true, "funding": [ { @@ -5667,7 +6421,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-factory-mdx-expression": "^1.0.0", "micromark-factory-space": "^1.0.0", @@ -5680,8 +6433,9 @@ }, "node_modules/micromark-extension-mdx-jsx": { "version": "1.0.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz", + "integrity": "sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==", "dev": true, - "license": "MIT", "dependencies": { "@types/acorn": "^4.0.0", "estree-util-is-identifier-name": "^2.0.0", @@ -5700,8 +6454,9 @@ }, "node_modules/micromark-extension-mdx-md": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz", + "integrity": "sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==", "dev": true, - "license": "MIT", "dependencies": { "micromark-util-types": "^1.0.0" }, @@ -5712,8 +6467,9 @@ }, "node_modules/micromark-extension-mdxjs": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz", + "integrity": "sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==", "dev": true, - "license": "MIT", "dependencies": { "acorn": "^8.0.0", "acorn-jsx": "^5.0.0", @@ -5731,8 +6487,9 @@ }, "node_modules/micromark-extension-mdxjs-esm": { "version": "1.0.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz", + "integrity": "sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==", "dev": true, - "license": "MIT", "dependencies": { "micromark-core-commonmark": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -5750,6 +6507,8 @@ }, "node_modules/micromark-factory-destination": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", + "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", "dev": true, "funding": [ { @@ -5761,7 +6520,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -5770,6 +6528,8 @@ }, "node_modules/micromark-factory-label": { "version": "1.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz", + "integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==", "dev": true, "funding": [ { @@ -5781,7 +6541,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -5790,7 +6549,9 @@ } }, "node_modules/micromark-factory-mdx-expression": { - "version": "1.0.6", + "version": "1.0.7", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.7.tgz", + "integrity": "sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ==", "dev": true, "funding": [ { @@ -5802,7 +6563,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -5816,6 +6576,8 @@ }, "node_modules/micromark-factory-space": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", + "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", "dev": true, "funding": [ { @@ -5827,7 +6589,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -5835,6 +6596,8 @@ }, "node_modules/micromark-factory-title": { "version": "1.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz", + "integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==", "dev": true, "funding": [ { @@ -5846,7 +6609,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -5857,6 +6619,8 @@ }, "node_modules/micromark-factory-whitespace": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", + "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", "dev": true, "funding": [ { @@ -5868,7 +6632,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -5878,6 +6641,8 @@ }, "node_modules/micromark-util-character": { "version": "1.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-character/-/micromark-util-character-1.1.0.tgz", + "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", "dev": true, "funding": [ { @@ -5889,7 +6654,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -5897,6 +6661,8 @@ }, "node_modules/micromark-util-chunked": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", + "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", "dev": true, "funding": [ { @@ -5908,13 +6674,14 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } }, "node_modules/micromark-util-classify-character": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", + "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", "dev": true, "funding": [ { @@ -5926,7 +6693,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -5935,6 +6701,8 @@ }, "node_modules/micromark-util-combine-extensions": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", + "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", "dev": true, "funding": [ { @@ -5946,7 +6714,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -5954,6 +6721,8 @@ }, "node_modules/micromark-util-decode-numeric-character-reference": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", + "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", "dev": true, "funding": [ { @@ -5965,13 +6734,14 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } }, "node_modules/micromark-util-decode-string": { "version": "1.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz", + "integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==", "dev": true, "funding": [ { @@ -5983,7 +6753,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -5993,6 +6762,8 @@ }, "node_modules/micromark-util-encode": { "version": "1.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz", + "integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==", "dev": true, "funding": [ { @@ -6003,11 +6774,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromark-util-events-to-acorn": { - "version": "1.2.0", + "version": "1.2.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.1.tgz", + "integrity": "sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg==", "dev": true, "funding": [ { @@ -6019,7 +6791,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "@types/acorn": "^4.0.0", "@types/estree": "^1.0.0", @@ -6032,6 +6803,8 @@ }, "node_modules/micromark-util-html-tag-name": { "version": "1.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz", + "integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==", "dev": true, "funding": [ { @@ -6042,11 +6815,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromark-util-normalize-identifier": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", + "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", "dev": true, "funding": [ { @@ -6058,13 +6832,14 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } }, "node_modules/micromark-util-resolve-all": { "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", + "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", "dev": true, "funding": [ { @@ -6076,13 +6851,14 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-types": "^1.0.0" } }, "node_modules/micromark-util-sanitize-uri": { "version": "1.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz", + "integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==", "dev": true, "funding": [ { @@ -6094,7 +6870,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-encode": "^1.0.0", @@ -6103,6 +6878,8 @@ }, "node_modules/micromark-util-subtokenize": { "version": "1.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz", + "integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==", "dev": true, "funding": [ { @@ -6114,7 +6891,6 @@ "url": "https://opencollective.com/unified" } ], - "license": "MIT", "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -6124,6 +6900,8 @@ }, "node_modules/micromark-util-symbol": { "version": "1.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz", + "integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==", "dev": true, "funding": [ { @@ -6134,11 +6912,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromark-util-types": { "version": "1.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/micromark-util-types/-/micromark-util-types-1.0.2.tgz", + "integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==", "dev": true, "funding": [ { @@ -6149,8 +6928,7 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ], - "license": "MIT" + ] }, "node_modules/micromatch": { "version": "4.0.5", @@ -6170,7 +6948,28 @@ "mime": "cli.js" }, "engines": { - "node": ">=10.0.0" + "node": ">=10.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/mimic-fn": { @@ -6235,8 +7034,9 @@ }, "node_modules/mri": { "version": "1.2.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } @@ -6264,6 +7064,15 @@ "version": "1.4.0", "license": "MIT" }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/neo-async": { "version": "2.6.2", "license": "MIT" @@ -8742,6 +9551,27 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/once": { "version": "1.4.0", "license": "ISC", @@ -8897,9 +9727,10 @@ } }, "node_modules/parse-entities": { - "version": "4.0.0", + "version": "4.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/parse-entities/-/parse-entities-4.0.1.tgz", + "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "character-entities": "^2.0.0", @@ -8931,6 +9762,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/path-exists": { "version": "4.0.0", "license": "MIT", @@ -8956,6 +9796,12 @@ "version": "1.0.7", "license": "MIT" }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, "node_modules/path-type": { "version": "4.0.0", "license": "MIT", @@ -8964,10 +9810,12 @@ } }, "node_modules/periscopic": { - "version": "3.0.4", + "version": "3.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/periscopic/-/periscopic-3.1.0.tgz", + "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", "dev": true, - "license": "MIT", "dependencies": { + "@types/estree": "^1.0.0", "estree-walker": "^3.0.0", "is-reference": "^3.0.0" } @@ -9376,8 +10224,9 @@ }, "node_modules/property-information": { "version": "6.2.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/property-information/-/property-information-6.2.0.tgz", + "integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -9387,6 +10236,19 @@ "version": "1.2.4", "license": "ISC" }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/pseudomap": { "version": "1.0.2", "dev": true, @@ -9407,6 +10269,18 @@ "teleport": ">=0.2.0" } }, + "node_modules/qs": { + "version": "6.9.7", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==", + "dev": true, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/queue-microtask": { "version": "1.2.3", "funding": [ @@ -9437,6 +10311,39 @@ "dev": true, "license": "MIT" }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/raw-body/-/raw-body-2.4.3.tgz", + "integrity": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "1.8.1", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/rc": { "version": "1.2.8", "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", @@ -9645,9 +10552,10 @@ } }, "node_modules/remark-mdx": { - "version": "2.2.1", + "version": "2.3.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/remark-mdx/-/remark-mdx-2.3.0.tgz", + "integrity": "sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==", "dev": true, - "license": "MIT", "dependencies": { "mdast-util-mdx": "^2.0.0", "micromark-extension-mdxjs": "^1.0.0" @@ -9659,8 +10567,9 @@ }, "node_modules/remark-parse": { "version": "10.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/remark-parse/-/remark-parse-10.0.1.tgz", + "integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==", "dev": true, - "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-from-markdown": "^1.0.0", @@ -9673,8 +10582,9 @@ }, "node_modules/remark-rehype": { "version": "10.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/remark-rehype/-/remark-rehype-10.1.0.tgz", + "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", "dev": true, - "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", @@ -9847,8 +10757,9 @@ }, "node_modules/sade": { "version": "1.8.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "dev": true, - "license": "MIT", "dependencies": { "mri": "^1.1.0" }, @@ -9874,6 +10785,12 @@ ], "license": "MIT" }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, "node_modules/semantic-release": { "version": "20.0.2", "license": "MIT", @@ -10290,6 +11207,84 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/send": { + "version": "0.17.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serve-static": { + "version": "1.14.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/serve-static/-/serve-static-1.14.2.tgz", + "integrity": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, "node_modules/shebang-command": { "version": "2.0.0", "license": "MIT", @@ -10429,8 +11424,9 @@ }, "node_modules/source-map": { "version": "0.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, - "license": "BSD-3-Clause", "engines": { "node": ">= 8" } @@ -10445,8 +11441,9 @@ }, "node_modules/space-separated-tokens": { "version": "2.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -10497,6 +11494,15 @@ "readable-stream": "^3.0.0" } }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/stream-combiner2": { "version": "1.1.1", "license": "MIT", @@ -10595,8 +11601,9 @@ }, "node_modules/stringify-entities": { "version": "4.0.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/stringify-entities/-/stringify-entities-4.0.3.tgz", + "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", "dev": true, - "license": "MIT", "dependencies": { "character-entities-html4": "^2.0.0", "character-entities-legacy": "^3.0.0" @@ -10662,9 +11669,10 @@ } }, "node_modules/style-to-object": { - "version": "0.4.0", + "version": "0.4.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/style-to-object/-/style-to-object-0.4.1.tgz", + "integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==", "dev": true, - "license": "MIT", "dependencies": { "inline-style-parser": "0.1.1" } @@ -10847,6 +11855,15 @@ "node": ">=8.0" } }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, "node_modules/tr46": { "version": "0.0.3", "license": "MIT" @@ -10860,8 +11877,9 @@ }, "node_modules/trim-lines": { "version": "3.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -10876,8 +11894,9 @@ }, "node_modules/trough": { "version": "2.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/trough/-/trough-2.1.0.tgz", + "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -10976,94 +11995,64 @@ "license": "0BSD" }, "node_modules/turbo": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/turbo/-/turbo-1.7.0.tgz", - "integrity": "sha512-cwympNwQNnQZ/TffBd8yT0i0O10Cf/hlxccCYgUcwhcGEb9rDjE5thDbHoHw1hlJQUF/5ua7ERJe7Zr0lNE/ww==", + "version": "1.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/turbo/-/turbo-1.7.4.tgz", + "integrity": "sha512-8RLedDoUL0kkVKWEZ/RMM70BvKLyDFen06QuKKhYC2XNOfNKqFDqzIdcY/vGick869bNIWalChoy4O07k0HLsA==", "dev": true, "hasInstallScript": true, "bin": { "turbo": "bin/turbo" }, "optionalDependencies": { - "turbo-darwin-64": "1.7.0", - "turbo-darwin-arm64": "1.7.0", - "turbo-linux-64": "1.7.0", - "turbo-linux-arm64": "1.7.0", - "turbo-windows-64": "1.7.0", - "turbo-windows-arm64": "1.7.0" + "turbo-darwin-64": "1.7.4", + "turbo-darwin-arm64": "1.7.4", + "turbo-linux-64": "1.7.4", + "turbo-linux-arm64": "1.7.4", + "turbo-windows-64": "1.7.4", + "turbo-windows-arm64": "1.7.4" } }, "node_modules/turbo-darwin-64": { - "version": "1.7.0", - "cpu": [ - "x64" - ], + "version": "1.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/turbo-darwin-64/-/turbo-darwin-64-1.7.4.tgz", + "integrity": "sha512-ZyYrQlUl8K/mYN1e6R7bEhPPYjMakz0DYMaexkyD7TAijQtWmTSd4a+I7VknOYNEssnUZ/v41GU3gPV1JAzxxQ==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "darwin" - ] + "optional": true }, "node_modules/turbo-darwin-arm64": { - "version": "1.7.0", - "cpu": [ - "arm64" - ], + "version": "1.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/turbo-darwin-arm64/-/turbo-darwin-arm64-1.7.4.tgz", + "integrity": "sha512-CKIXg9uqp1a+Yeq/c4U0alPOqvwLUq5SBZf1PGYhGqJsfG0fRBtJfkUjHuBsuJIOGXg8rCmcGSWGIsIF6fqYuw==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "darwin" - ] + "optional": true }, "node_modules/turbo-linux-64": { - "version": "1.7.0", - "cpu": [ - "x64" - ], + "version": "1.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/turbo-linux-64/-/turbo-linux-64-1.7.4.tgz", + "integrity": "sha512-RIUl4RUFFyzD2T024vL7509Ygwcw+SEa8NOwPfaN6TtJHK7RZV/SBP3fLNVOptG9WRLnOWX3OvsLMbiOqDLLyA==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ] + "optional": true }, "node_modules/turbo-linux-arm64": { - "version": "1.7.0", - "cpu": [ - "arm64" - ], + "version": "1.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/turbo-linux-arm64/-/turbo-linux-arm64-1.7.4.tgz", + "integrity": "sha512-Bg65F0AjYYYxqE6RPf2H5TIGuA/EyWMeGOATHVSZOWAbYcnG3Ly03GZii8AHnUi7ntWBdjwvXf/QbOS1ayNB6A==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ] + "optional": true }, "node_modules/turbo-windows-64": { - "version": "1.7.0", - "cpu": [ - "x64" - ], + "version": "1.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/turbo-windows-64/-/turbo-windows-64-1.7.4.tgz", + "integrity": "sha512-rTaV50XZ2BRxRHOHqt1UsWfeDmYLbn8UKE6g2D2ED+uW+kmnTvR9s01nmlGWd2sAuWcRYQyQ2V+O09VfKPKcQw==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "win32" - ] + "optional": true }, "node_modules/turbo-windows-arm64": { - "version": "1.7.0", - "cpu": [ - "arm64" - ], + "version": "1.7.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/turbo-windows-arm64/-/turbo-windows-arm64-1.7.4.tgz", + "integrity": "sha512-h8sxdKPvHTnWUPtwnYszFMmSO0P/iUUwmYY9n7iYThA71zSao28UeZ0H0Gw75cY3MPjvkjn2C4EBAUGPjuZJLw==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "win32" - ] + "optional": true }, "node_modules/type-check": { "version": "0.4.0", @@ -11085,6 +12074,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/typescript": { "version": "4.9.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz", @@ -11122,8 +12124,9 @@ }, "node_modules/unified": { "version": "10.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unified/-/unified-10.1.2.tgz", + "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "bail": "^2.0.0", @@ -11148,40 +12151,31 @@ "node": ">=8" } }, - "node_modules/unist-builder": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/unist": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, "node_modules/unist-util-generated": { - "version": "2.0.0", + "version": "2.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unist-util-generated/-/unist-util-generated-2.0.1.tgz", + "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, "node_modules/unist-util-is": { - "version": "5.1.1", + "version": "5.2.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unist-util-is/-/unist-util-is-5.2.0.tgz", + "integrity": "sha512-Glt17jWwZeyqrFqOK0pF1Ded5U3yzJnFr8CG1GMjCWTp9zDo2p+cmD6pWbZU8AgM5WU3IzRv6+rBwhzsGh6hBQ==", "dev": true, - "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" } }, "node_modules/unist-util-position": { - "version": "4.0.3", + "version": "4.0.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unist-util-position/-/unist-util-position-4.0.4.tgz", + "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -11191,9 +12185,10 @@ } }, "node_modules/unist-util-position-from-estree": { - "version": "1.1.1", + "version": "1.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz", + "integrity": "sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -11203,9 +12198,10 @@ } }, "node_modules/unist-util-remove-position": { - "version": "4.0.1", + "version": "4.0.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz", + "integrity": "sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-visit": "^4.0.0" @@ -11216,9 +12212,10 @@ } }, "node_modules/unist-util-stringify-position": { - "version": "3.0.2", + "version": "3.0.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", + "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -11228,9 +12225,10 @@ } }, "node_modules/unist-util-visit": { - "version": "4.1.1", + "version": "4.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unist-util-visit/-/unist-util-visit-4.1.2.tgz", + "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", @@ -11242,9 +12240,10 @@ } }, "node_modules/unist-util-visit-parents": { - "version": "5.1.1", + "version": "5.1.3", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", + "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" @@ -11265,6 +12264,15 @@ "node": ">= 10.0.0" } }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/update-browserslist-db": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", @@ -11306,10 +12314,20 @@ "version": "1.0.2", "license": "MIT" }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, "node_modules/uvu": { "version": "0.5.6", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/uvu/-/uvu-0.5.6.tgz", + "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", "dev": true, - "license": "MIT", "dependencies": { "dequal": "^2.0.0", "diff": "^5.0.0", @@ -11336,10 +12354,20 @@ "spdx-expression-parse": "^3.0.0" } }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/vfile": { - "version": "5.3.6", + "version": "5.3.7", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/vfile/-/vfile-5.3.7.tgz", + "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -11352,9 +12380,10 @@ } }, "node_modules/vfile-location": { - "version": "4.0.1", + "version": "4.1.0", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/vfile-location/-/vfile-location-4.1.0.tgz", + "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "vfile": "^5.0.0" @@ -11365,9 +12394,10 @@ } }, "node_modules/vfile-message": { - "version": "3.1.3", + "version": "3.1.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/vfile-message/-/vfile-message-3.1.4.tgz", + "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "dev": true, - "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^3.0.0" @@ -11624,10 +12654,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/zod": { + "version": "3.20.6", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/zod/-/zod-3.20.6.tgz", + "integrity": "sha512-oyu0m54SGCtzh6EClBVqDDlAYRz4jrVtKwQ7ZnsEmMI9HnzuZFj8QFwAY1M5uniIYACdGvv0PBWPF2kO0aNofA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, "node_modules/zwitch": { "version": "2.0.4", + "resolved": "https://tvg-289066362524.d.codeartifact.eu-west-1.amazonaws.com:443/npm/tvg-repository/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", "dev": true, - "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" diff --git a/package.json b/package.json index bfd3bf3..bd4cd29 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "semantic-release": "^20.0.2", "semantic-release-monorepo": "^7.0.5", "ts-node": "^10.9.1", - "turbo": "latest", + "turbo": "^1.7.4", "typescript": "latest" }, "repository": {