diff --git a/.assetsignore b/.assetsignore new file mode 100644 index 00000000..77a2f7b7 --- /dev/null +++ b/.assetsignore @@ -0,0 +1,8 @@ +* +!media/ +!media/**/ +!media/**/*.ico +!media/**/*.jpeg +!media/**/*.jpg +!media/**/*.png +!media/**/*.svg diff --git a/.env.template b/.env.template index cec05ed7..ed19ebaf 100644 --- a/.env.template +++ b/.env.template @@ -1 +1,2 @@ -TITO_TOKEN= \ No newline at end of file +# Required API token for all non-media routes. Send it in the `TOKEN` header. +TOKEN= diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..f60f0c03 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,34 @@ +name: CI + +on: + pull_request: + push: + branches: + - main + +concurrency: + group: ci-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +permissions: + contents: read + +jobs: + quality-fast: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version-file: package.json + cache: npm + + - name: Install dependencies + shell: bash + run: npm ci + + - name: Run fast quality gate + shell: bash + run: npm run quality:gate:fast diff --git a/.gitignore b/.gitignore index 035db74c..ff00f109 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,9 @@ node_modules/ logs/ attendees/ build/ +.wrangler/ +.wrangler-dry-run/ +.npm/ server/types/ media/scripts/ utils/*.csv @@ -13,4 +16,3 @@ utils/diversity-* .env .fusebox .scripts - diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..cffe8cde --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +save-exact=true diff --git a/.nvmrc b/.nvmrc index 53d1c14d..a3b7a31e 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v22 +v24.14.1 diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md new file mode 100644 index 00000000..e6943efa --- /dev/null +++ b/DEVELOPMENT.md @@ -0,0 +1,41 @@ +# Development + +## Local development + +Use the Worker runtime for local development: + +1. Use Node.js 24, for example with `nvm use`. +2. Install dependencies with `npm install`. +3. Authenticate Wrangler with `npx wrangler login`. +4. Start the Worker locally with `npm run cf:dev`. + +Wrangler uses [wrangler.jsonc](/Users/juhovepsalainen/Projects/future-frontend/graphql-api/wrangler.jsonc) and serves public image assets from the repository through the static-assets configuration in [.assetsignore](/Users/juhovepsalainen/Projects/future-frontend/graphql-api/.assetsignore). + +Useful local endpoints: + +- `http://localhost:8787/calendar-2026.ics` +- `http://localhost:8787/media/people/kenw.jpg` + +## Quality checks + +Before deploying or after larger refactors, run: + +```sh +npm run quality:gate +``` + +That executes the checked-in CI workflow locally through `agent-ci`. + +If you only want the direct checks without the local CI wrapper, run: + +```sh +npm run quality:gate:fast +``` + +## Environment variables + +The application requires a `TOKEN` value at runtime for protected Worker-handled routes. `/calendar-2026.ics` and `/media/*` are public. + +For local Wrangler development, provide the values in `.dev.vars` or `.env`. The example in [.env.template](/Users/juhovepsalainen/Projects/future-frontend/graphql-api/.env.template) is: + +- `TOKEN` for authenticating protected Worker-handled routes through a `TOKEN` request header diff --git a/Procfile b/Procfile deleted file mode 100644 index efb2f3e8..00000000 --- a/Procfile +++ /dev/null @@ -1 +0,0 @@ -web: npm run heroku:start diff --git a/README.md b/README.md index e2af8ae2..e8b7702a 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,57 @@ # GraphQL API for TOSKA conferences -Simple GraphQL API for our conferences: +This repository serves conference data over GraphQL and exposes a small set of supporting routes: -To see the query API: +- `/graphql` +- `/ping` +- `/calendar-2026.ics` +- `/media/*` -1. `NODE_ENV="development" npm start` -2. `http://localhost:3000/graphql` or `http://localhost:3000/calendar-2022.ics` (calendar) +Development setup lives in [DEVELOPMENT.md](/Users/juhovepsalainen/Projects/future-frontend/graphql-api/DEVELOPMENT.md). -## Asset Designer +## Deploying to Cloudflare -You can access the asset designer through `http://localhost:3000/asset-designer`. +### Prerequisites -## Image Processing +- A Cloudflare account with Workers enabled +- Node.js 24 and npm installed +- Dependencies installed with `npm install` +- Wrangler authenticated with `npx wrangler login` +- A `TOKEN` secret configured for the Worker -There's no special image processing in place at the moment. +### Configure the Worker -> You can access images through `http://localhost:3000/media`. Example: `http://localhost:3000/media/people/kenw.jpg`. +The project already includes a Worker entrypoint at [worker/index.ts](/Users/juhovepsalainen/Projects/future-frontend/graphql-api/worker/index.ts) and a Wrangler configuration at [wrangler.jsonc](/Users/juhovepsalainen/Projects/future-frontend/graphql-api/wrangler.jsonc). -## Webhooks +The current configuration: -See the webhooks below. +- runs a fetch-native request handler in Cloudflare Workers +- routes `/graphql`, `/ping`, and `/calendar-2026.ics` through the Worker +- serves only image files under `/media/*` from static assets in the repository +- reuses a cached Worker handler per isolate instead of rebuilding the schema on each request +- emits structured console logs with Cloudflare Workers observability enabled -### Heroku to Netlify +If you want a different Worker name, change the `name` field in `wrangler.jsonc`. +Set the runtime token before deploy with `npx wrangler secret put TOKEN`. +For local Worker development, provide the same value in `.dev.vars` or `.env` so Wrangler can load it into the Worker `env` bindings. -The API has been connected to the site using a webhook so that it builds whenever the API changes: +### Deploy -- `heroku config:set REBUILD_SITES= -a react-finland-api` +Run: -> Remember to run the server in production mode. That will enable site rebuilding hook! +```sh +npm run cf:deploy +``` + +That executes `npx wrangler deploy` using the checked-in configuration. + +### Verify after deploy + +Check these endpoints on the deployed domain: + +- `/graphql` +- `/ping` +- `/calendar-2026.ics` +- `/media/people/kenw.jpg` + +Note that the first two require a `TOKEN` header. diff --git a/add-compiled-to-git.sh b/add-compiled-to-git.sh deleted file mode 100644 index ee9975b1..00000000 --- a/add-compiled-to-git.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# https://github.com/AkhileshNS/heroku-deploy/issues/39 -git config user.name "USERNAME" -git config user.email "EMAIL" -git add -f build -git commit -m "New compilation" diff --git a/app.json b/app.json deleted file mode 100644 index 89776aa1..00000000 --- a/app.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "stack": "heroku-22" -} diff --git a/content/freezing-edge-2020/index.ts b/content/freezing-edge-2020/index.ts index 70667fce..1d415a4c 100644 --- a/content/freezing-edge-2020/index.ts +++ b/content/freezing-edge-2020/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [allSponsors.reactFinland, allSponsors.survivejs]; diff --git a/content/freezing-edge-2020/schedules.ts b/content/freezing-edge-2020/schedules.ts index 551012a7..51ecbf25 100644 --- a/content/freezing-edge-2020/schedules.ts +++ b/content/freezing-edge-2020/schedules.ts @@ -1,8 +1,7 @@ import { Schedule } from "../../server/schema/Schedule"; import { SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -// import * as people from "../people"; -import * as talks from "./talks"; +import { freezingEdge2020Talks as talks, locations } from "../generated"; +// import { people } from "../generated"; const presentationDay: Schedule = { day: "2020-06-01", diff --git a/content/freezing-edge-2020/talks/.index-modules b/content/freezing-edge-2020/talks/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/freezing-edge-2020/talks/index.ts b/content/freezing-edge-2020/talks/index.ts deleted file mode 100644 index d7e4cd5c..00000000 --- a/content/freezing-edge-2020/talks/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -export { default as bodil } from "./bodil"; -export { default as georgeMandis } from "./george-mandis"; -export { default as kenWheeler } from "./ken-wheeler"; -export { default as kristaJantti } from "./krista-jantti"; -export { default as nataliaTepluhina } from "./natalia-tepluhina"; -export { default as patrickStapfer } from "./patrick-stapfer"; -export { default as teroParviainen } from "./tero-parviainen"; diff --git a/content/future-frontend-2023/index.ts b/content/future-frontend-2023/index.ts index 4e15428a..dbfc2572 100644 --- a/content/future-frontend-2023/index.ts +++ b/content/future-frontend-2023/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/future-frontend-2023/schedules.ts b/content/future-frontend-2023/schedules.ts index 272a1807..b9445428 100644 --- a/content/future-frontend-2023/schedules.ts +++ b/content/future-frontend-2023/schedules.ts @@ -1,7 +1,7 @@ import { Schedule } from "../../server/schema/Schedule"; import { Level, SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; +import { locations } from "../generated"; +import { people } from "../generated"; const monday: Schedule = { day: "2023-06-05", diff --git a/content/future-frontend-2024/index.ts b/content/future-frontend-2024/index.ts index 83dc596f..258ba782 100644 --- a/content/future-frontend-2024/index.ts +++ b/content/future-frontend-2024/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/future-frontend-2024/schedules.ts b/content/future-frontend-2024/schedules.ts index 393523f9..48e100ef 100644 --- a/content/future-frontend-2024/schedules.ts +++ b/content/future-frontend-2024/schedules.ts @@ -1,8 +1,8 @@ import { Schedule } from "../../server/schema/Schedule"; import Keyword from "../../server/schema/keywords"; import { Level, SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; +import { locations } from "../generated"; +import { people } from "../generated"; /* const monday: Schedule = { diff --git a/content/future-frontend-2025/index.ts b/content/future-frontend-2025/index.ts index c5004c9c..fc1bd02d 100644 --- a/content/future-frontend-2025/index.ts +++ b/content/future-frontend-2025/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/future-frontend-2025/schedules.ts b/content/future-frontend-2025/schedules.ts index c5505f9e..f4fe10e7 100644 --- a/content/future-frontend-2025/schedules.ts +++ b/content/future-frontend-2025/schedules.ts @@ -1,8 +1,8 @@ import { Schedule } from "../../server/schema/Schedule"; import Keyword from "../../server/schema/keywords"; import { Level, SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; +import { locations } from "../generated"; +import { people } from "../generated"; // All times are given in GMT+0 (adjusted to GMT+3 at the frontend) const monday: Schedule = { diff --git a/content/future-frontend-2026/index.ts b/content/future-frontend-2026/index.ts index c1f7f5a7..bcf03669 100644 --- a/content/future-frontend-2026/index.ts +++ b/content/future-frontend-2026/index.ts @@ -1,8 +1,8 @@ import { Conference } from "../../server/schema/Conference"; import { Contact } from "../../server/schema/Contact"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners: Contact[] = [ diff --git a/content/future-frontend-2026/schedules.ts b/content/future-frontend-2026/schedules.ts index bf17c63a..c32e68b9 100644 --- a/content/future-frontend-2026/schedules.ts +++ b/content/future-frontend-2026/schedules.ts @@ -1,8 +1,8 @@ import { Schedule } from "../../server/schema/Schedule"; import Keyword from "../../server/schema/keywords"; import { Level, SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; +import { locations } from "../generated"; +import { people } from "../generated"; // All times are given in GMT+0 (adjusted to GMT+3 at the frontend) const monday: Schedule = { diff --git a/content/generated-core.ts b/content/generated-core.ts new file mode 100644 index 00000000..6e8c6bef --- /dev/null +++ b/content/generated-core.ts @@ -0,0 +1,979 @@ +// This file is generated by `npm run generate:indices`. +// Do not edit it manually. + + +import locations__alma from "./locations/alma"; +import locations__amanda from "./locations/amanda"; +import locations__ankersaal from "./locations/ankersaal"; +import locations__arkade from "./locations/arkade"; +import locations__babylonHelsinki from "./locations/babylon-helsinki"; +import locations__columbiaroad from "./locations/columbiaroad"; +import locations__dipoli from "./locations/dipoli"; +import locations__elisaAppelsiini from "./locations/elisa-appelsiini"; +import locations__futurice from "./locations/futurice"; +import locations__gofore from "./locations/gofore"; +import locations__hbc from "./locations/hbc"; +import locations__internet from "./locations/internet"; +import locations__loihdefactor from "./locations/loihdefactor"; +import locations__nitor from "./locations/nitor"; +import locations__paasitorni from "./locations/paasitorni"; +import locations__poliisienkesakoti from "./locations/poliisienkesakoti"; +import locations__porssitalo from "./locations/porssitalo"; +import locations__rantasauna from "./locations/rantasauna"; +import locations__rooftopmiami from "./locations/rooftopmiami"; +import locations__saeWien from "./locations/sae-wien"; +import locations__tiivistamo from "./locations/tiivistamo"; +import locations__tuas from "./locations/tuas"; +import locations__upcloud from "./locations/upcloud"; +import locations__valkoinenSali from "./locations/valkoinen-sali"; +import locations__wuWien from "./locations/wu-wien"; +import locations__yle from "./locations/yle"; + +export const locations = { + alma: locations__alma, + amanda: locations__amanda, + ankersaal: locations__ankersaal, + arkade: locations__arkade, + babylonHelsinki: locations__babylonHelsinki, + columbiaroad: locations__columbiaroad, + dipoli: locations__dipoli, + elisaAppelsiini: locations__elisaAppelsiini, + futurice: locations__futurice, + gofore: locations__gofore, + hbc: locations__hbc, + internet: locations__internet, + loihdefactor: locations__loihdefactor, + nitor: locations__nitor, + paasitorni: locations__paasitorni, + poliisienkesakoti: locations__poliisienkesakoti, + porssitalo: locations__porssitalo, + rantasauna: locations__rantasauna, + rooftopmiami: locations__rooftopmiami, + saeWien: locations__saeWien, + tiivistamo: locations__tiivistamo, + tuas: locations__tuas, + upcloud: locations__upcloud, + valkoinenSali: locations__valkoinenSali, + wuWien: locations__wuWien, + yle: locations__yle, +} as const; + +export const alma = locations.alma; +export const amanda = locations.amanda; +export const ankersaal = locations.ankersaal; +export const arkade = locations.arkade; +export const babylonHelsinki = locations.babylonHelsinki; +export const columbiaroad = locations.columbiaroad; +export const dipoli = locations.dipoli; +export const elisaAppelsiini = locations.elisaAppelsiini; +export const futurice = locations.futurice; +export const gofore = locations.gofore; +export const hbc = locations.hbc; +export const internet = locations.internet; +export const loihdefactor = locations.loihdefactor; +export const nitor = locations.nitor; +export const paasitorni = locations.paasitorni; +export const poliisienkesakoti = locations.poliisienkesakoti; +export const porssitalo = locations.porssitalo; +export const rantasauna = locations.rantasauna; +export const rooftopmiami = locations.rooftopmiami; +export const saeWien = locations.saeWien; +export const tiivistamo = locations.tiivistamo; +export const tuas = locations.tuas; +export const upcloud = locations.upcloud; +export const valkoinenSali = locations.valkoinenSali; +export const wuWien = locations.wuWien; +export const yle = locations.yle; + +import people__aapeli from "./people/aapeli"; +import people__aarniKoskela from "./people/aarni-koskela"; +import people__adamMiskiewicz from "./people/adam-miskiewicz"; +import people__aleksandra from "./people/aleksandra"; +import people__aleksiPousar from "./people/aleksi-pousar"; +import people__alexBooker from "./people/alex-booker"; +import people__anastasiia from "./people/anastasiia"; +import people__andreas from "./people/andreas"; +import people__andrei from "./people/andrei"; +import people__andrewRhyne from "./people/andrew-rhyne"; +import people__andreyG from "./people/andrey-g"; +import people__andreyOkonetchnikov from "./people/andrey-okonetchnikov"; +import people__annaDoubkova from "./people/anna-doubkova"; +import people__ante from "./people/ante"; +import people__artemSapegin from "./people/artem-sapegin"; +import people__artemZakharchenko from "./people/artem-zakharchenko"; +import people__aurora from "./people/aurora"; +import people__barry from "./people/barry"; +import people__ben from "./people/ben"; +import people__benjieGillam from "./people/benjie-gillam"; +import people__bodil from "./people/bodil"; +import people__bohdanLiashenko from "./people/bohdan-liashenko"; +import people__brent from "./people/brent"; +import people__brunoLourenco from "./people/bruno-lourenco"; +import people__calin from "./people/calin"; +import people__calinb from "./people/calinb"; +import people__carolynStransky from "./people/carolyn-stransky"; +import people__charlie from "./people/charlie"; +import people__christianAlfoni from "./people/christian-alfoni"; +import people__christofferNiska from "./people/christoffer-niska"; +import people__danSchafer from "./people/dan-schafer"; +import people__danielE from "./people/daniel-e"; +import people__danielM from "./people/daniel-m"; +import people__daniel from "./people/daniel"; +import people__dario from "./people/dario"; +import people__davidC from "./people/david-c"; +import people__davidKhourshid from "./people/david-khourshid"; +import people__david from "./people/david"; +import people__devlin from "./people/devlin"; +import people__diegoHaz from "./people/diego-haz"; +import people__dmitriy from "./people/dmitriy"; +import people__doug from "./people/doug"; +import people__dragos from "./people/dragos"; +import people__dustinSchau from "./people/dustin-schau"; +import people__eemeliAro from "./people/eemeli-aro"; +import people__eevis from "./people/eevis"; +import people__eli from "./people/eli"; +import people__elisa from "./people/elisa"; +import people__ellieDay from "./people/ellie-day"; +import people__eloyDuran from "./people/eloy-duran"; +import people__emilia from "./people/emilia"; +import people__emma from "./people/emma"; +import people__emmi from "./people/emmi"; +import people__erikRasmussen from "./people/erik-rasmussen"; +import people__esaMatti from "./people/esa-matti"; +import people__ewa from "./people/ewa"; +import people__facundo from "./people/facundo"; +import people__farzadYz from "./people/farzad-yz"; +import people__federico from "./people/federico"; +import people__felix from "./people/felix"; +import people__francois from "./people/francois"; +import people__gantLaborde from "./people/gant-laborde"; +import people__georgeMandis from "./people/george-mandis"; +import people__georgios from "./people/georgios"; +import people__gleb from "./people/gleb"; +import people__glennReyes from "./people/glenn-reyes"; +import people__harriMaatta from "./people/harri-maatta"; +import people__helenZhukova from "./people/helen-zhukova"; +import people__henrik from "./people/henrik"; +import people__isaSilveira from "./people/isa-silveira"; +import people__ivanGoncharov from "./people/ivan-goncharov"; +import people__ivanOrlov from "./people/ivan-orlov"; +import people__jamonHolmgren from "./people/jamon-holmgren"; +import people__jan from "./people/jan"; +import people__janiEvakallio from "./people/jani-evakallio"; +import people__janne from "./people/janne"; +import people__jaredPalmer from "./people/jared-palmer"; +import people__jari from "./people/jari"; +import people__jasmin from "./people/jasmin"; +import people__jason from "./people/jason"; +import people__je from "./people/je"; +import people__jec from "./people/jec"; +import people__jen from "./people/jen"; +import people__jeremyWagner from "./people/jeremy-wagner"; +import people__jimmyJia from "./people/jimmy-jia"; +import people__jo from "./people/jo"; +import people__joe from "./people/joe"; +import people__johannesSchickling from "./people/johannes-schickling"; +import people__joniNevalainen from "./people/joni-nevalainen"; +import people__joonasP from "./people/joonas-p"; +import people__joonas from "./people/joonas"; +import people__juan from "./people/juan"; +import people__juhaLinnanen from "./people/juha-linnanen"; +import people__juhani from "./people/juhani"; +import people__juhis from "./people/juhis"; +import people__juhoLehtinen from "./people/juho-lehtinen"; +import people__juhoVepsalainen from "./people/juho-vepsalainen"; +import people__julien from "./people/julien"; +import people__juri from "./people/juri"; +import people__jussi from "./people/jussi"; +import people__kadiKraman from "./people/kadi-kraman"; +import people__kasiaJastrzebska from "./people/kasia-jastrzebska"; +import people__kenWheeler from "./people/ken-wheeler"; +import people__kenigboloMeyaStephen from "./people/kenigbolo-meya-stephen"; +import people__kennethSutherland from "./people/kenneth-sutherland"; +import people__kentCDodds from "./people/kent-c-dodds"; +import people__kevin from "./people/kevin"; +import people__kirsi from "./people/kirsi"; +import people__kristaJantti from "./people/krista-jantti"; +import people__kristopher from "./people/kristopher"; +import people__krutie from "./people/krutie"; +import people__lainey from "./people/lainey"; +import people__lauraGonzalez from "./people/laura-gonzalez"; +import people__laura from "./people/laura"; +import people__laurak from "./people/laurak"; +import people__laurao from "./people/laurao"; +import people__lauri from "./people/lauri"; +import people__liran from "./people/liran"; +import people__lucaMatteis from "./people/luca-matteis"; +import people__luca from "./people/luca"; +import people__lukas from "./people/lukas"; +import people__lukeJackson from "./people/luke-jackson"; +import people__m4Dz from "./people/m4dz"; +import people__maaretPyhajarvi from "./people/maaret-pyhajarvi"; +import people__madalyn from "./people/madalyn"; +import people__maggie from "./people/maggie"; +import people__manjula from "./people/manjula"; +import people__manuelMatuzovic from "./people/manuel-matuzovic"; +import people__marcAndreGiroux from "./people/marc-andre-giroux"; +import people__margarita from "./people/margarita"; +import people__marianna from "./people/marianna"; +import people__mario from "./people/mario"; +import people__mark from "./people/mark"; +import people__matias from "./people/matias"; +import people__matt from "./people/matt"; +import people__matteo from "./people/matteo"; +import people__matthewM from "./people/matthew-m"; +import people__matthew from "./people/matthew"; +import people__max from "./people/max"; +import people__michael from "./people/michael"; +import people__michalChudziak from "./people/michal-chudziak"; +import people__michelWeststrate from "./people/michel-weststrate"; +import people__mika from "./people/mika"; +import people__mikeBerman from "./people/mike-berman"; +import people__mikhailNovikov from "./people/mikhail-novikov"; +import people__milecia from "./people/milecia"; +import people__misko from "./people/misko"; +import people__mo from "./people/mo"; +import people__monicaLent from "./people/monica-lent"; +import people__naderDabit from "./people/nader-dabit"; +import people__naman from "./people/naman"; +import people__nasim from "./people/nasim"; +import people__nataliaTepluhina from "./people/natalia-tepluhina"; +import people__nicola from "./people/nicola"; +import people__nidhi from "./people/nidhi"; +import people__nikGraf from "./people/nik-graf"; +import people__niklas from "./people/niklas"; +import people__norbert from "./people/norbert"; +import people__nur from "./people/nur"; +import people__ohans from "./people/ohans"; +import people__olavi from "./people/olavi"; +import people__pasi from "./people/pasi"; +import people__patrickEcker from "./people/patrick-ecker"; +import people__patrickHund from "./people/patrick-hund"; +import people__paul from "./people/paul"; +import people__pekka from "./people/pekka"; +import people__pete from "./people/pete"; +import people__rachelNabors from "./people/rachel-nabors"; +import people__rami from "./people/rami"; +import people__ramona from "./people/ramona"; +import people__rashmi from "./people/rashmi"; +import people__rebeccaHill from "./people/rebecca-hill"; +import people__rickHanlon from "./people/rick-hanlon"; +import people__rob from "./people/rob"; +import people__roosa from "./people/roosa"; +import people__rotemMizrachiMeidan from "./people/rotem-mizrachi-meidan"; +import people__ryan from "./people/ryan"; +import people__saku from "./people/saku"; +import people__salla from "./people/salla"; +import people__samuel from "./people/samuel"; +import people__samuliHakoniemi from "./people/samuli-hakoniemi"; +import people__saraVieira from "./people/sara-vieira"; +import people__satu from "./people/satu"; +import people__sebastian from "./people/sebastian"; +import people__shane from "./people/shane"; +import people__shayKeinan from "./people/shay-keinan"; +import people__shodipo from "./people/shodipo"; +import people__siaKaramalegos from "./people/sia-karamalegos"; +import people__stephanie from "./people/stephanie"; +import people__steve from "./people/steve"; +import people__sunil from "./people/sunil"; +import people__svenSauleau from "./people/sven-sauleau"; +import people__taelurAlexis from "./people/taelur-alexis"; +import people__tanja from "./people/tanja"; +import people__tanmaiGopal from "./people/tanmai-gopal"; +import people__tejasKumar from "./people/tejas-kumar"; +import people__teroParviainen from "./people/tero-parviainen"; +import people__thaisSantos from "./people/thais-santos"; +import people__thomas from "./people/thomas"; +import people__tobiasTimm from "./people/tobias-timm"; +import people__tomasKonrady from "./people/tomas-konrady"; +import people__toniRistola from "./people/toni-ristola"; +import people__tonyEnnis from "./people/tony-ennis"; +import people__tonyKovanen from "./people/tony-kovanen"; +import people__travis from "./people/travis"; +import people__tuuliTiilikainen from "./people/tuuli-tiilikainen"; +import people__uj from "./people/uj"; +import people__una from "./people/una"; +import people__varyaStepanova from "./people/varya-stepanova"; +import people__villeImmonen from "./people/ville-immonen"; +import people__villePelkonen from "./people/ville-pelkonen"; +import people__vismit from "./people/vismit"; +import people__vivekNayyar from "./people/vivek-nayyar"; +import people__woody from "./people/woody"; +import people__xiaoru from "./people/xiaoru"; +import people__yan from "./people/yan"; +import people__yang from "./people/yang"; +import people__yoav from "./people/yoav"; +import people__yulia from "./people/yulia"; +import people__zak from "./people/zak"; + +export const people = { + aapeli: people__aapeli, + aarniKoskela: people__aarniKoskela, + adamMiskiewicz: people__adamMiskiewicz, + aleksandra: people__aleksandra, + aleksiPousar: people__aleksiPousar, + alexBooker: people__alexBooker, + anastasiia: people__anastasiia, + andreas: people__andreas, + andrei: people__andrei, + andrewRhyne: people__andrewRhyne, + andreyG: people__andreyG, + andreyOkonetchnikov: people__andreyOkonetchnikov, + annaDoubkova: people__annaDoubkova, + ante: people__ante, + artemSapegin: people__artemSapegin, + artemZakharchenko: people__artemZakharchenko, + aurora: people__aurora, + barry: people__barry, + ben: people__ben, + benjieGillam: people__benjieGillam, + bodil: people__bodil, + bohdanLiashenko: people__bohdanLiashenko, + brent: people__brent, + brunoLourenco: people__brunoLourenco, + calin: people__calin, + calinb: people__calinb, + carolynStransky: people__carolynStransky, + charlie: people__charlie, + christianAlfoni: people__christianAlfoni, + christofferNiska: people__christofferNiska, + danSchafer: people__danSchafer, + danielE: people__danielE, + danielM: people__danielM, + daniel: people__daniel, + dario: people__dario, + davidC: people__davidC, + davidKhourshid: people__davidKhourshid, + david: people__david, + devlin: people__devlin, + diegoHaz: people__diegoHaz, + dmitriy: people__dmitriy, + doug: people__doug, + dragos: people__dragos, + dustinSchau: people__dustinSchau, + eemeliAro: people__eemeliAro, + eevis: people__eevis, + eli: people__eli, + elisa: people__elisa, + ellieDay: people__ellieDay, + eloyDuran: people__eloyDuran, + emilia: people__emilia, + emma: people__emma, + emmi: people__emmi, + erikRasmussen: people__erikRasmussen, + esaMatti: people__esaMatti, + ewa: people__ewa, + facundo: people__facundo, + farzadYz: people__farzadYz, + federico: people__federico, + felix: people__felix, + francois: people__francois, + gantLaborde: people__gantLaborde, + georgeMandis: people__georgeMandis, + georgios: people__georgios, + gleb: people__gleb, + glennReyes: people__glennReyes, + harriMaatta: people__harriMaatta, + helenZhukova: people__helenZhukova, + henrik: people__henrik, + isaSilveira: people__isaSilveira, + ivanGoncharov: people__ivanGoncharov, + ivanOrlov: people__ivanOrlov, + jamonHolmgren: people__jamonHolmgren, + jan: people__jan, + janiEvakallio: people__janiEvakallio, + janne: people__janne, + jaredPalmer: people__jaredPalmer, + jari: people__jari, + jasmin: people__jasmin, + jason: people__jason, + je: people__je, + jec: people__jec, + jen: people__jen, + jeremyWagner: people__jeremyWagner, + jimmyJia: people__jimmyJia, + jo: people__jo, + joe: people__joe, + johannesSchickling: people__johannesSchickling, + joniNevalainen: people__joniNevalainen, + joonasP: people__joonasP, + joonas: people__joonas, + juan: people__juan, + juhaLinnanen: people__juhaLinnanen, + juhani: people__juhani, + juhis: people__juhis, + juhoLehtinen: people__juhoLehtinen, + juhoVepsalainen: people__juhoVepsalainen, + julien: people__julien, + juri: people__juri, + jussi: people__jussi, + kadiKraman: people__kadiKraman, + kasiaJastrzebska: people__kasiaJastrzebska, + kenWheeler: people__kenWheeler, + kenigboloMeyaStephen: people__kenigboloMeyaStephen, + kennethSutherland: people__kennethSutherland, + kentCDodds: people__kentCDodds, + kevin: people__kevin, + kirsi: people__kirsi, + kristaJantti: people__kristaJantti, + kristopher: people__kristopher, + krutie: people__krutie, + lainey: people__lainey, + lauraGonzalez: people__lauraGonzalez, + laura: people__laura, + laurak: people__laurak, + laurao: people__laurao, + lauri: people__lauri, + liran: people__liran, + lucaMatteis: people__lucaMatteis, + luca: people__luca, + lukas: people__lukas, + lukeJackson: people__lukeJackson, + m4Dz: people__m4Dz, + maaretPyhajarvi: people__maaretPyhajarvi, + madalyn: people__madalyn, + maggie: people__maggie, + manjula: people__manjula, + manuelMatuzovic: people__manuelMatuzovic, + marcAndreGiroux: people__marcAndreGiroux, + margarita: people__margarita, + marianna: people__marianna, + mario: people__mario, + mark: people__mark, + matias: people__matias, + matt: people__matt, + matteo: people__matteo, + matthewM: people__matthewM, + matthew: people__matthew, + max: people__max, + michael: people__michael, + michalChudziak: people__michalChudziak, + michelWeststrate: people__michelWeststrate, + mika: people__mika, + mikeBerman: people__mikeBerman, + mikhailNovikov: people__mikhailNovikov, + milecia: people__milecia, + misko: people__misko, + mo: people__mo, + monicaLent: people__monicaLent, + naderDabit: people__naderDabit, + naman: people__naman, + nasim: people__nasim, + nataliaTepluhina: people__nataliaTepluhina, + nicola: people__nicola, + nidhi: people__nidhi, + nikGraf: people__nikGraf, + niklas: people__niklas, + norbert: people__norbert, + nur: people__nur, + ohans: people__ohans, + olavi: people__olavi, + pasi: people__pasi, + patrickEcker: people__patrickEcker, + patrickHund: people__patrickHund, + paul: people__paul, + pekka: people__pekka, + pete: people__pete, + rachelNabors: people__rachelNabors, + rami: people__rami, + ramona: people__ramona, + rashmi: people__rashmi, + rebeccaHill: people__rebeccaHill, + rickHanlon: people__rickHanlon, + rob: people__rob, + roosa: people__roosa, + rotemMizrachiMeidan: people__rotemMizrachiMeidan, + ryan: people__ryan, + saku: people__saku, + salla: people__salla, + samuel: people__samuel, + samuliHakoniemi: people__samuliHakoniemi, + saraVieira: people__saraVieira, + satu: people__satu, + sebastian: people__sebastian, + shane: people__shane, + shayKeinan: people__shayKeinan, + shodipo: people__shodipo, + siaKaramalegos: people__siaKaramalegos, + stephanie: people__stephanie, + steve: people__steve, + sunil: people__sunil, + svenSauleau: people__svenSauleau, + taelurAlexis: people__taelurAlexis, + tanja: people__tanja, + tanmaiGopal: people__tanmaiGopal, + tejasKumar: people__tejasKumar, + teroParviainen: people__teroParviainen, + thaisSantos: people__thaisSantos, + thomas: people__thomas, + tobiasTimm: people__tobiasTimm, + tomasKonrady: people__tomasKonrady, + toniRistola: people__toniRistola, + tonyEnnis: people__tonyEnnis, + tonyKovanen: people__tonyKovanen, + travis: people__travis, + tuuliTiilikainen: people__tuuliTiilikainen, + uj: people__uj, + una: people__una, + varyaStepanova: people__varyaStepanova, + villeImmonen: people__villeImmonen, + villePelkonen: people__villePelkonen, + vismit: people__vismit, + vivekNayyar: people__vivekNayyar, + woody: people__woody, + xiaoru: people__xiaoru, + yan: people__yan, + yang: people__yang, + yoav: people__yoav, + yulia: people__yulia, + zak: people__zak, +} as const; + +export const aapeli = people.aapeli; +export const aarniKoskela = people.aarniKoskela; +export const adamMiskiewicz = people.adamMiskiewicz; +export const aleksandra = people.aleksandra; +export const aleksiPousar = people.aleksiPousar; +export const alexBooker = people.alexBooker; +export const anastasiia = people.anastasiia; +export const andreas = people.andreas; +export const andrei = people.andrei; +export const andrewRhyne = people.andrewRhyne; +export const andreyG = people.andreyG; +export const andreyOkonetchnikov = people.andreyOkonetchnikov; +export const annaDoubkova = people.annaDoubkova; +export const ante = people.ante; +export const artemSapegin = people.artemSapegin; +export const artemZakharchenko = people.artemZakharchenko; +export const aurora = people.aurora; +export const barry = people.barry; +export const ben = people.ben; +export const benjieGillam = people.benjieGillam; +export const bodil = people.bodil; +export const bohdanLiashenko = people.bohdanLiashenko; +export const brent = people.brent; +export const brunoLourenco = people.brunoLourenco; +export const calin = people.calin; +export const calinb = people.calinb; +export const carolynStransky = people.carolynStransky; +export const charlie = people.charlie; +export const christianAlfoni = people.christianAlfoni; +export const christofferNiska = people.christofferNiska; +export const danSchafer = people.danSchafer; +export const danielE = people.danielE; +export const danielM = people.danielM; +export const daniel = people.daniel; +export const dario = people.dario; +export const davidC = people.davidC; +export const davidKhourshid = people.davidKhourshid; +export const david = people.david; +export const devlin = people.devlin; +export const diegoHaz = people.diegoHaz; +export const dmitriy = people.dmitriy; +export const doug = people.doug; +export const dragos = people.dragos; +export const dustinSchau = people.dustinSchau; +export const eemeliAro = people.eemeliAro; +export const eevis = people.eevis; +export const eli = people.eli; +export const elisa = people.elisa; +export const ellieDay = people.ellieDay; +export const eloyDuran = people.eloyDuran; +export const emilia = people.emilia; +export const emma = people.emma; +export const emmi = people.emmi; +export const erikRasmussen = people.erikRasmussen; +export const esaMatti = people.esaMatti; +export const ewa = people.ewa; +export const facundo = people.facundo; +export const farzadYz = people.farzadYz; +export const federico = people.federico; +export const felix = people.felix; +export const francois = people.francois; +export const gantLaborde = people.gantLaborde; +export const georgeMandis = people.georgeMandis; +export const georgios = people.georgios; +export const gleb = people.gleb; +export const glennReyes = people.glennReyes; +export const harriMaatta = people.harriMaatta; +export const helenZhukova = people.helenZhukova; +export const henrik = people.henrik; +export const isaSilveira = people.isaSilveira; +export const ivanGoncharov = people.ivanGoncharov; +export const ivanOrlov = people.ivanOrlov; +export const jamonHolmgren = people.jamonHolmgren; +export const jan = people.jan; +export const janiEvakallio = people.janiEvakallio; +export const janne = people.janne; +export const jaredPalmer = people.jaredPalmer; +export const jari = people.jari; +export const jasmin = people.jasmin; +export const jason = people.jason; +export const je = people.je; +export const jec = people.jec; +export const jen = people.jen; +export const jeremyWagner = people.jeremyWagner; +export const jimmyJia = people.jimmyJia; +export const jo = people.jo; +export const joe = people.joe; +export const johannesSchickling = people.johannesSchickling; +export const joniNevalainen = people.joniNevalainen; +export const joonasP = people.joonasP; +export const joonas = people.joonas; +export const juan = people.juan; +export const juhaLinnanen = people.juhaLinnanen; +export const juhani = people.juhani; +export const juhis = people.juhis; +export const juhoLehtinen = people.juhoLehtinen; +export const juhoVepsalainen = people.juhoVepsalainen; +export const julien = people.julien; +export const juri = people.juri; +export const jussi = people.jussi; +export const kadiKraman = people.kadiKraman; +export const kasiaJastrzebska = people.kasiaJastrzebska; +export const kenWheeler = people.kenWheeler; +export const kenigboloMeyaStephen = people.kenigboloMeyaStephen; +export const kennethSutherland = people.kennethSutherland; +export const kentCDodds = people.kentCDodds; +export const kevin = people.kevin; +export const kirsi = people.kirsi; +export const kristaJantti = people.kristaJantti; +export const kristopher = people.kristopher; +export const krutie = people.krutie; +export const lainey = people.lainey; +export const lauraGonzalez = people.lauraGonzalez; +export const laura = people.laura; +export const laurak = people.laurak; +export const laurao = people.laurao; +export const lauri = people.lauri; +export const liran = people.liran; +export const lucaMatteis = people.lucaMatteis; +export const luca = people.luca; +export const lukas = people.lukas; +export const lukeJackson = people.lukeJackson; +export const m4Dz = people.m4Dz; +export const maaretPyhajarvi = people.maaretPyhajarvi; +export const madalyn = people.madalyn; +export const maggie = people.maggie; +export const manjula = people.manjula; +export const manuelMatuzovic = people.manuelMatuzovic; +export const marcAndreGiroux = people.marcAndreGiroux; +export const margarita = people.margarita; +export const marianna = people.marianna; +export const mario = people.mario; +export const mark = people.mark; +export const matias = people.matias; +export const matt = people.matt; +export const matteo = people.matteo; +export const matthewM = people.matthewM; +export const matthew = people.matthew; +export const max = people.max; +export const michael = people.michael; +export const michalChudziak = people.michalChudziak; +export const michelWeststrate = people.michelWeststrate; +export const mika = people.mika; +export const mikeBerman = people.mikeBerman; +export const mikhailNovikov = people.mikhailNovikov; +export const milecia = people.milecia; +export const misko = people.misko; +export const mo = people.mo; +export const monicaLent = people.monicaLent; +export const naderDabit = people.naderDabit; +export const naman = people.naman; +export const nasim = people.nasim; +export const nataliaTepluhina = people.nataliaTepluhina; +export const nicola = people.nicola; +export const nidhi = people.nidhi; +export const nikGraf = people.nikGraf; +export const niklas = people.niklas; +export const norbert = people.norbert; +export const nur = people.nur; +export const ohans = people.ohans; +export const olavi = people.olavi; +export const pasi = people.pasi; +export const patrickEcker = people.patrickEcker; +export const patrickHund = people.patrickHund; +export const paul = people.paul; +export const pekka = people.pekka; +export const pete = people.pete; +export const rachelNabors = people.rachelNabors; +export const rami = people.rami; +export const ramona = people.ramona; +export const rashmi = people.rashmi; +export const rebeccaHill = people.rebeccaHill; +export const rickHanlon = people.rickHanlon; +export const rob = people.rob; +export const roosa = people.roosa; +export const rotemMizrachiMeidan = people.rotemMizrachiMeidan; +export const ryan = people.ryan; +export const saku = people.saku; +export const salla = people.salla; +export const samuel = people.samuel; +export const samuliHakoniemi = people.samuliHakoniemi; +export const saraVieira = people.saraVieira; +export const satu = people.satu; +export const sebastian = people.sebastian; +export const shane = people.shane; +export const shayKeinan = people.shayKeinan; +export const shodipo = people.shodipo; +export const siaKaramalegos = people.siaKaramalegos; +export const stephanie = people.stephanie; +export const steve = people.steve; +export const sunil = people.sunil; +export const svenSauleau = people.svenSauleau; +export const taelurAlexis = people.taelurAlexis; +export const tanja = people.tanja; +export const tanmaiGopal = people.tanmaiGopal; +export const tejasKumar = people.tejasKumar; +export const teroParviainen = people.teroParviainen; +export const thaisSantos = people.thaisSantos; +export const thomas = people.thomas; +export const tobiasTimm = people.tobiasTimm; +export const tomasKonrady = people.tomasKonrady; +export const toniRistola = people.toniRistola; +export const tonyEnnis = people.tonyEnnis; +export const tonyKovanen = people.tonyKovanen; +export const travis = people.travis; +export const tuuliTiilikainen = people.tuuliTiilikainen; +export const uj = people.uj; +export const una = people.una; +export const varyaStepanova = people.varyaStepanova; +export const villeImmonen = people.villeImmonen; +export const villePelkonen = people.villePelkonen; +export const vismit = people.vismit; +export const vivekNayyar = people.vivekNayyar; +export const woody = people.woody; +export const xiaoru = people.xiaoru; +export const yan = people.yan; +export const yang = people.yang; +export const yoav = people.yoav; +export const yulia = people.yulia; +export const zak = people.zak; + +import sponsors__a11Yclub from "./sponsors/a11yclub"; +import sponsors__agentconf from "./sponsors/agentconf"; +import sponsors__alma from "./sponsors/alma"; +import sponsors__amazon from "./sponsors/amazon"; +import sponsors__apidays from "./sponsors/apidays"; +import sponsors__apiops from "./sponsors/apiops"; +import sponsors__apollo from "./sponsors/apollo"; +import sponsors__backscreen from "./sponsors/backscreen"; +import sponsors__bangalore from "./sponsors/bangalore"; +import sponsors__bejs from "./sponsors/bejs"; +import sponsors__brella from "./sponsors/brella"; +import sponsors__cai from "./sponsors/cai"; +import sponsors__codento from "./sponsors/codento"; +import sponsors__columbiaroad from "./sponsors/columbiaroad"; +import sponsors__cybercom from "./sponsors/cybercom"; +import sponsors__designsystemslondon from "./sponsors/designsystemslondon"; +import sponsors__digia from "./sponsors/digia"; +import sponsors__digitalExpert from "./sponsors/digital-expert"; +import sponsors__divriots from "./sponsors/divriots"; +import sponsors__dna325 from "./sponsors/dna325"; +import sponsors__dojs from "./sponsors/dojs"; +import sponsors__dynatrace from "./sponsors/dynatrace"; +import sponsors__elisa from "./sponsors/elisa"; +import sponsors__evitec from "./sponsors/evitec"; +import sponsors__fb from "./sponsors/fb"; +import sponsors__formidable from "./sponsors/formidable"; +import sponsors__frankenjs from "./sponsors/frankenjs"; +import sponsors__friikit from "./sponsors/friikit"; +import sponsors__futurice from "./sponsors/futurice"; +import sponsors__gatsby from "./sponsors/gatsby"; +import sponsors__geekle from "./sponsors/geekle"; +import sponsors__geniem from "./sponsors/geniem"; +import sponsors__ginetta from "./sponsors/ginetta"; +import sponsors__glorium from "./sponsors/glorium"; +import sponsors__gofore from "./sponsors/gofore"; +import sponsors__gqlhongkong from "./sponsors/gqlhongkong"; +import sponsors__graphqlFinland from "./sponsors/graphql-finland"; +import sponsors__grusp from "./sponsors/grusp"; +import sponsors__haagahelia from "./sponsors/haagahelia"; +import sponsors__halfstack from "./sponsors/halfstack"; +import sponsors__hasura from "./sponsors/hasura"; +import sponsors__hbc from "./sponsors/hbc"; +import sponsors__honeypot from "./sponsors/honeypot"; +import sponsors__huuva from "./sponsors/huuva"; +import sponsors__jscamp from "./sponsors/jscamp"; +import sponsors__jsconfbp from "./sponsors/jsconfbp"; +import sponsors__jsday from "./sponsors/jsday"; +import sponsors__jskongress from "./sponsors/jskongress"; +import sponsors__jsn from "./sponsors/jsn"; +import sponsors__knowit from "./sponsors/knowit"; +import sponsors__kongres from "./sponsors/kongres"; +import sponsors__koodiasuomesta from "./sponsors/koodiasuomesta"; +import sponsors__loihdefactor from "./sponsors/loihdefactor"; +import sponsors__meiko from "./sponsors/meiko"; +import sponsors__monolisa from "./sponsors/monolisa"; +import sponsors__moonhighway from "./sponsors/moonhighway"; +import sponsors__motley from "./sponsors/motley"; +import sponsors__netum from "./sponsors/netum"; +import sponsors__nightingale from "./sponsors/nightingale"; +import sponsors__nitor from "./sponsors/nitor"; +import sponsors__nodecongress from "./sponsors/nodecongress"; +import sponsors__ohjelmistofriikit from "./sponsors/ohjelmistofriikit"; +import sponsors__osaango from "./sponsors/osaango"; +import sponsors__postgraphile from "./sponsors/postgraphile"; +import sponsors__prisma from "./sponsors/prisma"; +import sponsors__quentic from "./sponsors/quentic"; +import sponsors__reactFinland from "./sponsors/react-finland"; +import sponsors__reactalicante from "./sponsors/reactalicante"; +import sponsors__reactbrussels from "./sponsors/reactbrussels"; +import sponsors__reactdayberlin from "./sponsors/reactdayberlin"; +import sponsors__reactfest from "./sponsors/reactfest"; +import sponsors__reactindia from "./sponsors/reactindia"; +import sponsors__reactjsday from "./sponsors/reactjsday"; +import sponsors__reactjsgirls from "./sponsors/reactjsgirls"; +import sponsors__reactnativeeu from "./sponsors/reactnativeeu"; +import sponsors__reactnewyork from "./sponsors/reactnewyork"; +import sponsors__reactnorway from "./sponsors/reactnorway"; +import sponsors__reactparis from "./sponsors/reactparis"; +import sponsors__reactsummit from "./sponsors/reactsummit"; +import sponsors__reactweek from "./sponsors/reactweek"; +import sponsors__reaktor from "./sponsors/reaktor"; +import sponsors__reasonconf from "./sponsors/reasonconf"; +import sponsors__relex from "./sponsors/relex"; +import sponsors__rlc from "./sponsors/rlc"; +import sponsors__rohea from "./sponsors/rohea"; +import sponsors__rp from "./sponsors/rp"; +import sponsors__sae from "./sponsors/sae"; +import sponsors__smartly from "./sponsors/smartly"; +import sponsors__solita from "./sponsors/solita"; +import sponsors__stickermule from "./sponsors/stickermule"; +import sponsors__supermetrics from "./sponsors/supermetrics"; +import sponsors__survivejs from "./sponsors/survivejs"; +import sponsors__techEvents from "./sponsors/tech-events"; +import sponsors__toddle from "./sponsors/toddle"; +import sponsors__toska from "./sponsors/toska"; +import sponsors__twir from "./sponsors/twir"; +import sponsors__typeof from "./sponsors/typeof"; +import sponsors__upcloud from "./sponsors/upcloud"; +import sponsors__utopia from "./sponsors/utopia"; +import sponsors__valamis from "./sponsors/valamis"; +import sponsors__verkkokauppa from "./sponsors/verkkokauppa"; +import sponsors__vihat from "./sponsors/vihat"; +import sponsors__vincit from "./sponsors/vincit"; +import sponsors__webexpo from "./sponsors/webexpo"; +import sponsors__wonna from "./sponsors/wonna"; +import sponsors__wunder from "./sponsors/wunder"; +import sponsors__wunderdog from "./sponsors/wunderdog"; +import sponsors__yglfkyiv from "./sponsors/yglfkyiv"; +import sponsors__yle from "./sponsors/yle"; +import sponsors__zapier from "./sponsors/zapier"; +import sponsors__zeroplusx from "./sponsors/zeroplusx"; +import sponsors__zurichjs from "./sponsors/zurichjs"; + +export const sponsors = { + a11Yclub: sponsors__a11Yclub, + agentconf: sponsors__agentconf, + alma: sponsors__alma, + amazon: sponsors__amazon, + apidays: sponsors__apidays, + apiops: sponsors__apiops, + apollo: sponsors__apollo, + backscreen: sponsors__backscreen, + bangalore: sponsors__bangalore, + bejs: sponsors__bejs, + brella: sponsors__brella, + cai: sponsors__cai, + codento: sponsors__codento, + columbiaroad: sponsors__columbiaroad, + cybercom: sponsors__cybercom, + designsystemslondon: sponsors__designsystemslondon, + digia: sponsors__digia, + digitalExpert: sponsors__digitalExpert, + divriots: sponsors__divriots, + dna325: sponsors__dna325, + dojs: sponsors__dojs, + dynatrace: sponsors__dynatrace, + elisa: sponsors__elisa, + evitec: sponsors__evitec, + fb: sponsors__fb, + formidable: sponsors__formidable, + frankenjs: sponsors__frankenjs, + friikit: sponsors__friikit, + futurice: sponsors__futurice, + gatsby: sponsors__gatsby, + geekle: sponsors__geekle, + geniem: sponsors__geniem, + ginetta: sponsors__ginetta, + glorium: sponsors__glorium, + gofore: sponsors__gofore, + gqlhongkong: sponsors__gqlhongkong, + graphqlFinland: sponsors__graphqlFinland, + grusp: sponsors__grusp, + haagahelia: sponsors__haagahelia, + halfstack: sponsors__halfstack, + hasura: sponsors__hasura, + hbc: sponsors__hbc, + honeypot: sponsors__honeypot, + huuva: sponsors__huuva, + jscamp: sponsors__jscamp, + jsconfbp: sponsors__jsconfbp, + jsday: sponsors__jsday, + jskongress: sponsors__jskongress, + jsn: sponsors__jsn, + knowit: sponsors__knowit, + kongres: sponsors__kongres, + koodiasuomesta: sponsors__koodiasuomesta, + loihdefactor: sponsors__loihdefactor, + meiko: sponsors__meiko, + monolisa: sponsors__monolisa, + moonhighway: sponsors__moonhighway, + motley: sponsors__motley, + netum: sponsors__netum, + nightingale: sponsors__nightingale, + nitor: sponsors__nitor, + nodecongress: sponsors__nodecongress, + ohjelmistofriikit: sponsors__ohjelmistofriikit, + osaango: sponsors__osaango, + postgraphile: sponsors__postgraphile, + prisma: sponsors__prisma, + quentic: sponsors__quentic, + reactFinland: sponsors__reactFinland, + reactalicante: sponsors__reactalicante, + reactbrussels: sponsors__reactbrussels, + reactdayberlin: sponsors__reactdayberlin, + reactfest: sponsors__reactfest, + reactindia: sponsors__reactindia, + reactjsday: sponsors__reactjsday, + reactjsgirls: sponsors__reactjsgirls, + reactnativeeu: sponsors__reactnativeeu, + reactnewyork: sponsors__reactnewyork, + reactnorway: sponsors__reactnorway, + reactparis: sponsors__reactparis, + reactsummit: sponsors__reactsummit, + reactweek: sponsors__reactweek, + reaktor: sponsors__reaktor, + reasonconf: sponsors__reasonconf, + relex: sponsors__relex, + rlc: sponsors__rlc, + rohea: sponsors__rohea, + rp: sponsors__rp, + sae: sponsors__sae, + smartly: sponsors__smartly, + solita: sponsors__solita, + stickermule: sponsors__stickermule, + supermetrics: sponsors__supermetrics, + survivejs: sponsors__survivejs, + techEvents: sponsors__techEvents, + toddle: sponsors__toddle, + toska: sponsors__toska, + twir: sponsors__twir, + typeof: sponsors__typeof, + upcloud: sponsors__upcloud, + utopia: sponsors__utopia, + valamis: sponsors__valamis, + verkkokauppa: sponsors__verkkokauppa, + vihat: sponsors__vihat, + vincit: sponsors__vincit, + webexpo: sponsors__webexpo, + wonna: sponsors__wonna, + wunder: sponsors__wunder, + wunderdog: sponsors__wunderdog, + yglfkyiv: sponsors__yglfkyiv, + yle: sponsors__yle, + zapier: sponsors__zapier, + zeroplusx: sponsors__zeroplusx, + zurichjs: sponsors__zurichjs, +} as const; diff --git a/content/generated.ts b/content/generated.ts new file mode 100644 index 00000000..a6133533 --- /dev/null +++ b/content/generated.ts @@ -0,0 +1,315 @@ +// This file is generated by `npm run generate:indices`. +// Do not edit it manually. + +export * from "./generated-core"; + + +import freezingEdge2020Talks__bodil from "./freezing-edge-2020/talks/bodil"; +import freezingEdge2020Talks__georgeMandis from "./freezing-edge-2020/talks/george-mandis"; +import freezingEdge2020Talks__kenWheeler from "./freezing-edge-2020/talks/ken-wheeler"; +import freezingEdge2020Talks__kristaJantti from "./freezing-edge-2020/talks/krista-jantti"; +import freezingEdge2020Talks__nataliaTepluhina from "./freezing-edge-2020/talks/natalia-tepluhina"; +import freezingEdge2020Talks__patrickStapfer from "./freezing-edge-2020/talks/patrick-stapfer"; +import freezingEdge2020Talks__teroParviainen from "./freezing-edge-2020/talks/tero-parviainen"; + +export const freezingEdge2020Talks = { + bodil: freezingEdge2020Talks__bodil, + georgeMandis: freezingEdge2020Talks__georgeMandis, + kenWheeler: freezingEdge2020Talks__kenWheeler, + kristaJantti: freezingEdge2020Talks__kristaJantti, + nataliaTepluhina: freezingEdge2020Talks__nataliaTepluhina, + patrickStapfer: freezingEdge2020Talks__patrickStapfer, + teroParviainen: freezingEdge2020Talks__teroParviainen, +} as const; + +import graphqlFinland2018Talks__adamMiskiewicz from "./graphql-finland-2018/talks/adam-miskiewicz"; +import graphqlFinland2018Talks__andrewRhyne from "./graphql-finland-2018/talks/andrew-rhyne"; +import graphqlFinland2018Talks__benjieGillam from "./graphql-finland-2018/talks/benjie-gillam"; +import graphqlFinland2018Talks__carolynStransky from "./graphql-finland-2018/talks/carolyn-stransky"; +import graphqlFinland2018Talks__christofferNiska from "./graphql-finland-2018/talks/christoffer-niska"; +import graphqlFinland2018Talks__danSchafer from "./graphql-finland-2018/talks/dan-schafer"; +import graphqlFinland2018Talks__ellieDay from "./graphql-finland-2018/talks/ellie-day"; +import graphqlFinland2018Talks__eloyDuran from "./graphql-finland-2018/talks/eloy-duran"; +import graphqlFinland2018Talks__glennReyes from "./graphql-finland-2018/talks/glenn-reyes"; +import graphqlFinland2018Talks__helenZhukova from "./graphql-finland-2018/talks/helen-zhukova"; +import graphqlFinland2018Talks__ivanGoncharov from "./graphql-finland-2018/talks/ivan-goncharov"; +import graphqlFinland2018Talks__jimmyJia from "./graphql-finland-2018/talks/jimmy-jia"; +import graphqlFinland2018Talks__johannesSchickling from "./graphql-finland-2018/talks/johannes-schickling"; +import graphqlFinland2018Talks__kadiKraman from "./graphql-finland-2018/talks/kadi-kraman"; +import graphqlFinland2018Talks__nikGraf from "./graphql-finland-2018/talks/nik-graf"; +import graphqlFinland2018Talks__tanmaiGopal from "./graphql-finland-2018/talks/tanmai-gopal"; + +export const graphqlFinland2018Talks = { + adamMiskiewicz: graphqlFinland2018Talks__adamMiskiewicz, + andrewRhyne: graphqlFinland2018Talks__andrewRhyne, + benjieGillam: graphqlFinland2018Talks__benjieGillam, + carolynStransky: graphqlFinland2018Talks__carolynStransky, + christofferNiska: graphqlFinland2018Talks__christofferNiska, + danSchafer: graphqlFinland2018Talks__danSchafer, + ellieDay: graphqlFinland2018Talks__ellieDay, + eloyDuran: graphqlFinland2018Talks__eloyDuran, + glennReyes: graphqlFinland2018Talks__glennReyes, + helenZhukova: graphqlFinland2018Talks__helenZhukova, + ivanGoncharov: graphqlFinland2018Talks__ivanGoncharov, + jimmyJia: graphqlFinland2018Talks__jimmyJia, + johannesSchickling: graphqlFinland2018Talks__johannesSchickling, + kadiKraman: graphqlFinland2018Talks__kadiKraman, + nikGraf: graphqlFinland2018Talks__nikGraf, + tanmaiGopal: graphqlFinland2018Talks__tanmaiGopal, +} as const; + +import graphqlFinland2018Workshops__juhoWorkshop from "./graphql-finland-2018/workshops/juho-workshop"; +import graphqlFinland2018Workshops__marcWorkshop from "./graphql-finland-2018/workshops/marc-workshop"; +import graphqlFinland2018Workshops__mikhailWorkshop from "./graphql-finland-2018/workshops/mikhail-workshop"; +import graphqlFinland2018Workshops__nikWorkshop from "./graphql-finland-2018/workshops/nik-workshop"; + +export const graphqlFinland2018Workshops = { + juhoWorkshop: graphqlFinland2018Workshops__juhoWorkshop, + marcWorkshop: graphqlFinland2018Workshops__marcWorkshop, + mikhailWorkshop: graphqlFinland2018Workshops__mikhailWorkshop, + nikWorkshop: graphqlFinland2018Workshops__nikWorkshop, +} as const; + +import reactFinland2018Talks__andreyOkonetchnikov from "./react-finland-2018/talks/andrey-okonetchnikov"; +import reactFinland2018Talks__christianAlfoni from "./react-finland-2018/talks/christian-alfoni"; +import reactFinland2018Talks__davidKhourshid from "./react-finland-2018/talks/david-khourshid"; +import reactFinland2018Talks__eemeliAro2 from "./react-finland-2018/talks/eemeli-aro-2"; +import reactFinland2018Talks__eemeliAro from "./react-finland-2018/talks/eemeli-aro"; +import reactFinland2018Talks__gantLaborde from "./react-finland-2018/talks/gant-laborde"; +import reactFinland2018Talks__janiEvakallio from "./react-finland-2018/talks/jani-evakallio"; +import reactFinland2018Talks__juhoVepsalainen from "./react-finland-2018/talks/juho-vepsalainen"; +import reactFinland2018Talks__kasiaJastrzebska from "./react-finland-2018/talks/kasia-jastrzebska"; +import reactFinland2018Talks__kenWheeler from "./react-finland-2018/talks/ken-wheeler"; +import reactFinland2018Talks__michalChudziak from "./react-finland-2018/talks/michal-chudziak"; +import reactFinland2018Talks__michelWeststrate from "./react-finland-2018/talks/michel-weststrate"; +import reactFinland2018Talks__nikGraf from "./react-finland-2018/talks/nik-graf"; +import reactFinland2018Talks__patrickHund from "./react-finland-2018/talks/patrick-hund"; +import reactFinland2018Talks__patrickStapfer from "./react-finland-2018/talks/patrick-stapfer"; +import reactFinland2018Talks__rotemMizrachiMeidan from "./react-finland-2018/talks/rotem-mizrachi-meidan"; +import reactFinland2018Talks__saraVieira from "./react-finland-2018/talks/sara-vieira"; +import reactFinland2018Talks__shayKeinan from "./react-finland-2018/talks/shay-keinan"; +import reactFinland2018Talks__siaKaramalegos from "./react-finland-2018/talks/sia-karamalegos"; +import reactFinland2018Talks__svenSauleau from "./react-finland-2018/talks/sven-sauleau"; +import reactFinland2018Talks__toniRistola from "./react-finland-2018/talks/toni-ristola"; +import reactFinland2018Talks__varyaStepanova from "./react-finland-2018/talks/varya-stepanova"; + +export const reactFinland2018Talks = { + andreyOkonetchnikov: reactFinland2018Talks__andreyOkonetchnikov, + christianAlfoni: reactFinland2018Talks__christianAlfoni, + davidKhourshid: reactFinland2018Talks__davidKhourshid, + eemeliAro2: reactFinland2018Talks__eemeliAro2, + eemeliAro: reactFinland2018Talks__eemeliAro, + gantLaborde: reactFinland2018Talks__gantLaborde, + janiEvakallio: reactFinland2018Talks__janiEvakallio, + juhoVepsalainen: reactFinland2018Talks__juhoVepsalainen, + kasiaJastrzebska: reactFinland2018Talks__kasiaJastrzebska, + kenWheeler: reactFinland2018Talks__kenWheeler, + michalChudziak: reactFinland2018Talks__michalChudziak, + michelWeststrate: reactFinland2018Talks__michelWeststrate, + nikGraf: reactFinland2018Talks__nikGraf, + patrickHund: reactFinland2018Talks__patrickHund, + patrickStapfer: reactFinland2018Talks__patrickStapfer, + rotemMizrachiMeidan: reactFinland2018Talks__rotemMizrachiMeidan, + saraVieira: reactFinland2018Talks__saraVieira, + shayKeinan: reactFinland2018Talks__shayKeinan, + siaKaramalegos: reactFinland2018Talks__siaKaramalegos, + svenSauleau: reactFinland2018Talks__svenSauleau, + toniRistola: reactFinland2018Talks__toniRistola, + varyaStepanova: reactFinland2018Talks__varyaStepanova, +} as const; + +import reactFinland2018Workshops__andreyAndArtemWorkshop from "./react-finland-2018/workshops/andrey-and-artem-workshop"; +import reactFinland2018Workshops__davidKhourshidWorkshop from "./react-finland-2018/workshops/david-khourshid-workshop"; +import reactFinland2018Workshops__gantLabordeWorkshop from "./react-finland-2018/workshops/gant-laborde-workshop"; +import reactFinland2018Workshops__juhoVepsalainenWorkshop from "./react-finland-2018/workshops/juho-vepsalainen-workshop"; +import reactFinland2018Workshops__michelWeststrateWorkshop from "./react-finland-2018/workshops/michel-weststrate-workshop"; +import reactFinland2018Workshops__patrickAndNikWorkshop from "./react-finland-2018/workshops/patrick-and-nik-workshop"; +import reactFinland2018Workshops__rotemMizrachiMeidanWorkshop from "./react-finland-2018/workshops/rotem-mizrachi-meidan-workshop"; +import reactFinland2018Workshops__saraVieiraWorkshop from "./react-finland-2018/workshops/sara-vieira-workshop"; +import reactFinland2018Workshops__siaKaramalegosWorkshop from "./react-finland-2018/workshops/sia-karamalegos-workshop"; +import reactFinland2018Workshops__svenSauleauWorkshop from "./react-finland-2018/workshops/sven-sauleau-workshop"; + +export const reactFinland2018Workshops = { + andreyAndArtemWorkshop: reactFinland2018Workshops__andreyAndArtemWorkshop, + davidKhourshidWorkshop: reactFinland2018Workshops__davidKhourshidWorkshop, + gantLabordeWorkshop: reactFinland2018Workshops__gantLabordeWorkshop, + juhoVepsalainenWorkshop: reactFinland2018Workshops__juhoVepsalainenWorkshop, + michelWeststrateWorkshop: reactFinland2018Workshops__michelWeststrateWorkshop, + patrickAndNikWorkshop: reactFinland2018Workshops__patrickAndNikWorkshop, + rotemMizrachiMeidanWorkshop: reactFinland2018Workshops__rotemMizrachiMeidanWorkshop, + saraVieiraWorkshop: reactFinland2018Workshops__saraVieiraWorkshop, + siaKaramalegosWorkshop: reactFinland2018Workshops__siaKaramalegosWorkshop, + svenSauleauWorkshop: reactFinland2018Workshops__svenSauleauWorkshop, +} as const; + +import reactFinland2019Talks__andreyOkonetchnikov from "./react-finland-2019/talks/andrey-okonetchnikov"; +import reactFinland2019Talks__annaDoubkova from "./react-finland-2019/talks/anna-doubkova"; +import reactFinland2019Talks__artemSapegin from "./react-finland-2019/talks/artem-sapegin"; +import reactFinland2019Talks__artemZakharchenko from "./react-finland-2019/talks/artem-zakharchenko"; +import reactFinland2019Talks__bohdanLiashenko from "./react-finland-2019/talks/bohdan-liashenko"; +import reactFinland2019Talks__brunoLourenco from "./react-finland-2019/talks/bruno-lourenco"; +import reactFinland2019Talks__carolynStransky from "./react-finland-2019/talks/carolyn-stransky"; +import reactFinland2019Talks__christofferNiska from "./react-finland-2019/talks/christoffer-niska"; +import reactFinland2019Talks__davidKhourshid from "./react-finland-2019/talks/david-khourshid"; +import reactFinland2019Talks__dustinSchau from "./react-finland-2019/talks/dustin-schau"; +import reactFinland2019Talks__farzadYz from "./react-finland-2019/talks/farzad-yz"; +import reactFinland2019Talks__glennReyes from "./react-finland-2019/talks/glenn-reyes"; +import reactFinland2019Talks__jamonHolmgren from "./react-finland-2019/talks/jamon-holmgren"; +import reactFinland2019Talks__juhaLinnanen from "./react-finland-2019/talks/juha-linnanen"; +import reactFinland2019Talks__kadiKraman from "./react-finland-2019/talks/kadi-kraman"; +import reactFinland2019Talks__lucaMatteis from "./react-finland-2019/talks/luca-matteis"; +import reactFinland2019Talks__maaretPyhajarvi from "./react-finland-2019/talks/maaret-pyhajarvi"; +import reactFinland2019Talks__manuelMatuzovic from "./react-finland-2019/talks/manuel-matuzovic"; +import reactFinland2019Talks__michelWeststrate from "./react-finland-2019/talks/michel-weststrate"; +import reactFinland2019Talks__monicaLent from "./react-finland-2019/talks/monica-lent"; +import reactFinland2019Talks__nikGraf from "./react-finland-2019/talks/nik-graf"; +import reactFinland2019Talks__rickHanlon from "./react-finland-2019/talks/rick-hanlon"; +import reactFinland2019Talks__svenSauleau from "./react-finland-2019/talks/sven-sauleau"; +import reactFinland2019Talks__tejasKumar from "./react-finland-2019/talks/tejas-kumar"; +import reactFinland2019Talks__tomasKonrady from "./react-finland-2019/talks/tomas-konrady"; +import reactFinland2019Talks__varyaStepanova from "./react-finland-2019/talks/varya-stepanova"; +import reactFinland2019Talks__villeImmonen from "./react-finland-2019/talks/ville-immonen"; + +export const reactFinland2019Talks = { + andreyOkonetchnikov: reactFinland2019Talks__andreyOkonetchnikov, + annaDoubkova: reactFinland2019Talks__annaDoubkova, + artemSapegin: reactFinland2019Talks__artemSapegin, + artemZakharchenko: reactFinland2019Talks__artemZakharchenko, + bohdanLiashenko: reactFinland2019Talks__bohdanLiashenko, + brunoLourenco: reactFinland2019Talks__brunoLourenco, + carolynStransky: reactFinland2019Talks__carolynStransky, + christofferNiska: reactFinland2019Talks__christofferNiska, + davidKhourshid: reactFinland2019Talks__davidKhourshid, + dustinSchau: reactFinland2019Talks__dustinSchau, + farzadYz: reactFinland2019Talks__farzadYz, + glennReyes: reactFinland2019Talks__glennReyes, + jamonHolmgren: reactFinland2019Talks__jamonHolmgren, + juhaLinnanen: reactFinland2019Talks__juhaLinnanen, + kadiKraman: reactFinland2019Talks__kadiKraman, + lucaMatteis: reactFinland2019Talks__lucaMatteis, + maaretPyhajarvi: reactFinland2019Talks__maaretPyhajarvi, + manuelMatuzovic: reactFinland2019Talks__manuelMatuzovic, + michelWeststrate: reactFinland2019Talks__michelWeststrate, + monicaLent: reactFinland2019Talks__monicaLent, + nikGraf: reactFinland2019Talks__nikGraf, + rickHanlon: reactFinland2019Talks__rickHanlon, + svenSauleau: reactFinland2019Talks__svenSauleau, + tejasKumar: reactFinland2019Talks__tejasKumar, + tomasKonrady: reactFinland2019Talks__tomasKonrady, + varyaStepanova: reactFinland2019Talks__varyaStepanova, + villeImmonen: reactFinland2019Talks__villeImmonen, +} as const; + +import reactFinland2019Workshops__andreyAndArtemWorkshop from "./react-finland-2019/workshops/andrey-and-artem-workshop"; +import reactFinland2019Workshops__davidKhourshidWorkshop from "./react-finland-2019/workshops/david-khourshid-workshop"; +import reactFinland2019Workshops__glennReyesWorkshop from "./react-finland-2019/workshops/glenn-reyes-workshop"; +import reactFinland2019Workshops__michelWorkshop from "./react-finland-2019/workshops/michel-workshop"; +import reactFinland2019Workshops__nikWorkshop from "./react-finland-2019/workshops/nik-workshop"; +import reactFinland2019Workshops__performanceWorkshop from "./react-finland-2019/workshops/performance-workshop"; + +export const reactFinland2019Workshops = { + andreyAndArtemWorkshop: reactFinland2019Workshops__andreyAndArtemWorkshop, + davidKhourshidWorkshop: reactFinland2019Workshops__davidKhourshidWorkshop, + glennReyesWorkshop: reactFinland2019Workshops__glennReyesWorkshop, + michelWorkshop: reactFinland2019Workshops__michelWorkshop, + nikWorkshop: reactFinland2019Workshops__nikWorkshop, + performanceWorkshop: reactFinland2019Workshops__performanceWorkshop, +} as const; + +import reactFinland2020Talks__brent from "./react-finland-2020/talks/brent"; +import reactFinland2020Talks__davidKhourshid from "./react-finland-2020/talks/david-khourshid"; +import reactFinland2020Talks__eli from "./react-finland-2020/talks/eli"; +import reactFinland2020Talks__emma from "./react-finland-2020/talks/emma"; +import reactFinland2020Talks__esaMatti from "./react-finland-2020/talks/esa-matti"; +import reactFinland2020Talks__farzadYz from "./react-finland-2020/talks/farzad-yz"; +import reactFinland2020Talks__isaSilveira from "./react-finland-2020/talks/isa-silveira"; +import reactFinland2020Talks__ivanOrlov from "./react-finland-2020/talks/ivan-orlov"; +import reactFinland2020Talks__jaredPalmer from "./react-finland-2020/talks/jared-palmer"; +import reactFinland2020Talks__jeremyWagner from "./react-finland-2020/talks/jeremy-wagner"; +import reactFinland2020Talks__kenigboloMeyaStephen from "./react-finland-2020/talks/kenigbolo-meya-stephen"; +import reactFinland2020Talks__kennethSutherland from "./react-finland-2020/talks/kenneth-sutherland"; +import reactFinland2020Talks__kentCDodds from "./react-finland-2020/talks/kent-c-dodds"; +import reactFinland2020Talks__lauraGonzalez from "./react-finland-2020/talks/laura-gonzalez"; +import reactFinland2020Talks__lauri from "./react-finland-2020/talks/lauri"; +import reactFinland2020Talks__madalyn from "./react-finland-2020/talks/madalyn"; +import reactFinland2020Talks__margarita from "./react-finland-2020/talks/margarita"; +import reactFinland2020Talks__naderDabit from "./react-finland-2020/talks/nader-dabit"; +import reactFinland2020Talks__nikGraf from "./react-finland-2020/talks/nik-graf"; +import reactFinland2020Talks__olavi from "./react-finland-2020/talks/olavi"; +import reactFinland2020Talks__rachelNabors from "./react-finland-2020/talks/rachel-nabors"; +import reactFinland2020Talks__rebeccaHill from "./react-finland-2020/talks/rebecca-hill"; +import reactFinland2020Talks__taelurAlexis from "./react-finland-2020/talks/taelur-alexis"; +import reactFinland2020Talks__tejasKumar from "./react-finland-2020/talks/tejas-kumar"; +import reactFinland2020Talks__tobiasTimm from "./react-finland-2020/talks/tobias-timm"; +import reactFinland2020Talks__villePelkonen from "./react-finland-2020/talks/ville-pelkonen"; +import reactFinland2020Talks__vivekNayyar from "./react-finland-2020/talks/vivek-nayyar"; +import reactFinland2020Talks__xiaoru from "./react-finland-2020/talks/xiaoru"; +import reactFinland2020Talks__yan from "./react-finland-2020/talks/yan"; + +export const reactFinland2020Talks = { + brent: reactFinland2020Talks__brent, + davidKhourshid: reactFinland2020Talks__davidKhourshid, + eli: reactFinland2020Talks__eli, + emma: reactFinland2020Talks__emma, + esaMatti: reactFinland2020Talks__esaMatti, + farzadYz: reactFinland2020Talks__farzadYz, + isaSilveira: reactFinland2020Talks__isaSilveira, + ivanOrlov: reactFinland2020Talks__ivanOrlov, + jaredPalmer: reactFinland2020Talks__jaredPalmer, + jeremyWagner: reactFinland2020Talks__jeremyWagner, + kenigboloMeyaStephen: reactFinland2020Talks__kenigboloMeyaStephen, + kennethSutherland: reactFinland2020Talks__kennethSutherland, + kentCDodds: reactFinland2020Talks__kentCDodds, + lauraGonzalez: reactFinland2020Talks__lauraGonzalez, + lauri: reactFinland2020Talks__lauri, + madalyn: reactFinland2020Talks__madalyn, + margarita: reactFinland2020Talks__margarita, + naderDabit: reactFinland2020Talks__naderDabit, + nikGraf: reactFinland2020Talks__nikGraf, + olavi: reactFinland2020Talks__olavi, + rachelNabors: reactFinland2020Talks__rachelNabors, + rebeccaHill: reactFinland2020Talks__rebeccaHill, + taelurAlexis: reactFinland2020Talks__taelurAlexis, + tejasKumar: reactFinland2020Talks__tejasKumar, + tobiasTimm: reactFinland2020Talks__tobiasTimm, + villePelkonen: reactFinland2020Talks__villePelkonen, + vivekNayyar: reactFinland2020Talks__vivekNayyar, + xiaoru: reactFinland2020Talks__xiaoru, + yan: reactFinland2020Talks__yan, +} as const; + +import reactFinland2020Workshops__advancedReact from "./react-finland-2020/workshops/advanced-react"; +import reactFinland2020Workshops__designSystems101 from "./react-finland-2020/workshops/design-systems-101"; +import reactFinland2020Workshops__designSystems from "./react-finland-2020/workshops/design-systems"; +import reactFinland2020Workshops__fromLegacyToReact from "./react-finland-2020/workshops/from-legacy-to-react"; +import reactFinland2020Workshops__fullStack from "./react-finland-2020/workshops/full-stack"; +import reactFinland2020Workshops__modernForms from "./react-finland-2020/workshops/modern-forms"; +import reactFinland2020Workshops__reactNative from "./react-finland-2020/workshops/react-native"; +import reactFinland2020Workshops__reactPerformance from "./react-finland-2020/workshops/react-performance"; +import reactFinland2020Workshops__resilientLibs from "./react-finland-2020/workshops/resilient-libs"; +import reactFinland2020Workshops__statecharts from "./react-finland-2020/workshops/statecharts"; +import reactFinland2020Workshops__testingReact from "./react-finland-2020/workshops/testing-react"; + +export const reactFinland2020Workshops = { + advancedReact: reactFinland2020Workshops__advancedReact, + designSystems101: reactFinland2020Workshops__designSystems101, + designSystems: reactFinland2020Workshops__designSystems, + fromLegacyToReact: reactFinland2020Workshops__fromLegacyToReact, + fullStack: reactFinland2020Workshops__fullStack, + modernForms: reactFinland2020Workshops__modernForms, + reactNative: reactFinland2020Workshops__reactNative, + reactPerformance: reactFinland2020Workshops__reactPerformance, + resilientLibs: reactFinland2020Workshops__resilientLibs, + statecharts: reactFinland2020Workshops__statecharts, + testingReact: reactFinland2020Workshops__testingReact, +} as const; + +import rf202001Talks__carolyn from "./rf2020-01/talks/carolyn"; +import rf202001Talks__kenigboloMeyaStephen from "./rf2020-01/talks/kenigbolo-meya-stephen"; +import rf202001Talks__margarita from "./rf2020-01/talks/margarita"; + +export const rf202001Talks = { + carolyn: rf202001Talks__carolyn, + kenigboloMeyaStephen: rf202001Talks__kenigboloMeyaStephen, + margarita: rf202001Talks__margarita, +} as const; diff --git a/content/graphql-finland-2018/index.ts b/content/graphql-finland-2018/index.ts index 7771037b..b5007233 100644 --- a/content/graphql-finland-2018/index.ts +++ b/content/graphql-finland-2018/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/graphql-finland-2018/schedules.ts b/content/graphql-finland-2018/schedules.ts index 3dc26ac1..ece7b55f 100644 --- a/content/graphql-finland-2018/schedules.ts +++ b/content/graphql-finland-2018/schedules.ts @@ -1,7 +1,9 @@ import { Schedule } from "../../server/schema/Schedule"; import { SessionType } from "../../server/schema/Session"; -import * as talks from "./talks"; -import * as allWorkshops from "./workshops"; +import { + graphqlFinland2018Talks as talks, + graphqlFinland2018Workshops as allWorkshops, +} from "../generated"; const workshops = Object.values(allWorkshops); diff --git a/content/graphql-finland-2018/talks/.index-modules b/content/graphql-finland-2018/talks/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/graphql-finland-2018/talks/index.ts b/content/graphql-finland-2018/talks/index.ts deleted file mode 100644 index 64660501..00000000 --- a/content/graphql-finland-2018/talks/index.ts +++ /dev/null @@ -1,16 +0,0 @@ -export { default as adamMiskiewicz } from "./adam-miskiewicz"; -export { default as andrewRhyne } from "./andrew-rhyne"; -export { default as benjieGillam } from "./benjie-gillam"; -export { default as carolynStransky } from "./carolyn-stransky"; -export { default as christofferNiska } from "./christoffer-niska"; -export { default as danSchafer } from "./dan-schafer"; -export { default as ellieDay } from "./ellie-day"; -export { default as eloyDuran } from "./eloy-duran"; -export { default as glennReyes } from "./glenn-reyes"; -export { default as helenZhukova } from "./helen-zhukova"; -export { default as ivanGoncharov } from "./ivan-goncharov"; -export { default as jimmyJia } from "./jimmy-jia"; -export { default as johannesSchickling } from "./johannes-schickling"; -export { default as kadiKraman } from "./kadi-kraman"; -export { default as nikGraf } from "./nik-graf"; -export { default as tanmaiGopal } from "./tanmai-gopal"; diff --git a/content/graphql-finland-2018/workshops/.index-modules b/content/graphql-finland-2018/workshops/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/graphql-finland-2018/workshops/index.ts b/content/graphql-finland-2018/workshops/index.ts deleted file mode 100644 index b7644520..00000000 --- a/content/graphql-finland-2018/workshops/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export { default as juhoWorkshop } from "./juho-workshop"; -export { default as marcWorkshop } from "./marc-workshop"; -export { default as mikhailWorkshop } from "./mikhail-workshop"; -export { default as nikWorkshop } from "./nik-workshop"; diff --git a/content/graphql-finland-2018/workshops/juho-workshop.ts b/content/graphql-finland-2018/workshops/juho-workshop.ts index f2c3ccf3..b1e1b27b 100644 --- a/content/graphql-finland-2018/workshops/juho-workshop.ts +++ b/content/graphql-finland-2018/workshops/juho-workshop.ts @@ -1,6 +1,6 @@ import Keyword from "../../../server/schema/keywords"; import { Session, SessionType } from "../../../server/schema/Session"; -import { paasitorni } from "../../locations"; +import { paasitorni } from "../../generated-core"; import juho from "../../people/juho-vepsalainen"; const workshop: Session = { diff --git a/content/graphql-finland-2018/workshops/marc-workshop.ts b/content/graphql-finland-2018/workshops/marc-workshop.ts index 2317ea90..415ac570 100644 --- a/content/graphql-finland-2018/workshops/marc-workshop.ts +++ b/content/graphql-finland-2018/workshops/marc-workshop.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; import Keyword from "../../../server/schema/keywords"; -import { paasitorni } from "../../locations"; +import { paasitorni } from "../../generated-core"; import marc from "../../people/marc-andre-giroux"; const workshop: Session = { diff --git a/content/graphql-finland-2018/workshops/mikhail-workshop.ts b/content/graphql-finland-2018/workshops/mikhail-workshop.ts index 98fd8faf..700f2b32 100644 --- a/content/graphql-finland-2018/workshops/mikhail-workshop.ts +++ b/content/graphql-finland-2018/workshops/mikhail-workshop.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; import Keyword from "../../../server/schema/keywords"; -import { paasitorni } from "../../locations"; +import { paasitorni } from "../../generated-core"; import mikhail from "../../people/mikhail-novikov"; const workshop: Session = { diff --git a/content/graphql-finland-2018/workshops/nik-workshop.ts b/content/graphql-finland-2018/workshops/nik-workshop.ts index 18c061c3..5a6cb16a 100644 --- a/content/graphql-finland-2018/workshops/nik-workshop.ts +++ b/content/graphql-finland-2018/workshops/nik-workshop.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; import Keyword from "../../../server/schema/keywords"; -import { paasitorni } from "../../locations"; +import { paasitorni } from "../../generated-core"; import nik from "../../people/nik-graf"; const workshop: Session = { diff --git a/content/graphql-finland-2020/index.ts b/content/graphql-finland-2020/index.ts index ac8e12e4..93e6de70 100644 --- a/content/graphql-finland-2020/index.ts +++ b/content/graphql-finland-2020/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/graphql-finland-2020/schedules.ts b/content/graphql-finland-2020/schedules.ts index 315d7af6..94b45dcf 100644 --- a/content/graphql-finland-2020/schedules.ts +++ b/content/graphql-finland-2020/schedules.ts @@ -1,9 +1,4 @@ import { Schedule } from "../../server/schema/Schedule"; -/*import { SessionType } from "../../server/schema/Session"; -import * as talks from "./talks"; -import * as allWorkshops from "./workshops";*/ - -// const workshops = Object.values(allWorkshops); const workshopDay: Schedule = { day: "2020-09-24", diff --git a/content/halfstack-vienna-2019/index.ts b/content/halfstack-vienna-2019/index.ts index 12dae79f..4ebd6ebe 100644 --- a/content/halfstack-vienna-2019/index.ts +++ b/content/halfstack-vienna-2019/index.ts @@ -1,8 +1,8 @@ import { Conference } from "../../server/schema/Conference"; import { Schedule } from "../../server/schema/Schedule"; -import * as locations from "../locations"; -// import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +// import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; const sponsors = []; const partners = []; diff --git a/content/locations/.index-modules b/content/locations/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/locations/index.ts b/content/locations/index.ts deleted file mode 100644 index 71dd04ba..00000000 --- a/content/locations/index.ts +++ /dev/null @@ -1,26 +0,0 @@ -export { default as alma } from "./alma"; -export { default as amanda } from "./amanda"; -export { default as ankersaal } from "./ankersaal"; -export { default as arkade } from "./arkade"; -export { default as babylonHelsinki } from "./babylon-helsinki"; -export { default as columbiaroad } from "./columbiaroad"; -export { default as dipoli } from "./dipoli"; -export { default as elisaAppelsiini } from "./elisa-appelsiini"; -export { default as futurice } from "./futurice"; -export { default as gofore } from "./gofore"; -export { default as hbc } from "./hbc"; -export { default as internet } from "./internet"; -export { default as loihdefactor } from "./loihdefactor"; -export { default as nitor } from "./nitor"; -export { default as paasitorni } from "./paasitorni"; -export { default as poliisienkesakoti } from "./poliisienkesakoti"; -export { default as porssitalo } from "./porssitalo"; -export { default as rantasauna } from "./rantasauna"; -export { default as rooftopmiami } from "./rooftopmiami"; -export { default as saeWien } from "./sae-wien"; -export { default as tiivistamo } from "./tiivistamo"; -export { default as tuas } from "./tuas"; -export { default as upcloud } from "./upcloud"; -export { default as valkoinenSali } from "./valkoinen-sali"; -export { default as wuWien } from "./wu-wien"; -export { default as yle } from "./yle"; diff --git a/content/people/.index-modules b/content/people/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/people/index.ts b/content/people/index.ts deleted file mode 100644 index e2803b6e..00000000 --- a/content/people/index.ts +++ /dev/null @@ -1,220 +0,0 @@ -export { default as aapeli } from "./aapeli"; -export { default as aarniKoskela } from "./aarni-koskela"; -export { default as adamMiskiewicz } from "./adam-miskiewicz"; -export { default as aleksandra } from "./aleksandra"; -export { default as aleksiPousar } from "./aleksi-pousar"; -export { default as alexBooker } from "./alex-booker"; -export { default as anastasiia } from "./anastasiia"; -export { default as andreas } from "./andreas"; -export { default as andrei } from "./andrei"; -export { default as andrewRhyne } from "./andrew-rhyne"; -export { default as andreyG } from "./andrey-g"; -export { default as andreyOkonetchnikov } from "./andrey-okonetchnikov"; -export { default as annaDoubkova } from "./anna-doubkova"; -export { default as ante } from "./ante"; -export { default as artemSapegin } from "./artem-sapegin"; -export { default as artemZakharchenko } from "./artem-zakharchenko"; -export { default as aurora } from "./aurora"; -export { default as barry } from "./barry"; -export { default as ben } from "./ben"; -export { default as benjieGillam } from "./benjie-gillam"; -export { default as bodil } from "./bodil"; -export { default as bohdanLiashenko } from "./bohdan-liashenko"; -export { default as brent } from "./brent"; -export { default as brunoLourenco } from "./bruno-lourenco"; -export { default as calin } from "./calin"; -export { default as calinb } from "./calinb"; -export { default as carolynStransky } from "./carolyn-stransky"; -export { default as charlie } from "./charlie"; -export { default as christianAlfoni } from "./christian-alfoni"; -export { default as christofferNiska } from "./christoffer-niska"; -export { default as danSchafer } from "./dan-schafer"; -export { default as danielE } from "./daniel-e"; -export { default as danielM } from "./daniel-m"; -export { default as daniel } from "./daniel"; -export { default as dario } from "./dario"; -export { default as davidC } from "./david-c"; -export { default as davidKhourshid } from "./david-khourshid"; -export { default as david } from "./david"; -export { default as devlin } from "./devlin"; -export { default as diegoHaz } from "./diego-haz"; -export { default as dmitriy } from "./dmitriy"; -export { default as doug } from "./doug"; -export { default as dragos } from "./dragos"; -export { default as dustinSchau } from "./dustin-schau"; -export { default as eemeliAro } from "./eemeli-aro"; -export { default as eevis } from "./eevis"; -export { default as eli } from "./eli"; -export { default as elisa } from "./elisa"; -export { default as ellieDay } from "./ellie-day"; -export { default as eloyDuran } from "./eloy-duran"; -export { default as emilia } from "./emilia"; -export { default as emma } from "./emma"; -export { default as emmi } from "./emmi"; -export { default as erikRasmussen } from "./erik-rasmussen"; -export { default as esaMatti } from "./esa-matti"; -export { default as ewa } from "./ewa"; -export { default as facundo } from "./facundo"; -export { default as farzadYz } from "./farzad-yz"; -export { default as federico } from "./federico"; -export { default as felix } from "./felix"; -export { default as francois } from "./francois"; -export { default as gantLaborde } from "./gant-laborde"; -export { default as georgeMandis } from "./george-mandis"; -export { default as georgios } from "./georgios"; -export { default as gleb } from "./gleb"; -export { default as glennReyes } from "./glenn-reyes"; -export { default as harriMaatta } from "./harri-maatta"; -export { default as helenZhukova } from "./helen-zhukova"; -export { default as henrik } from "./henrik"; -export { default as isaSilveira } from "./isa-silveira"; -export { default as ivanGoncharov } from "./ivan-goncharov"; -export { default as ivanOrlov } from "./ivan-orlov"; -export { default as jamonHolmgren } from "./jamon-holmgren"; -export { default as jan } from "./jan"; -export { default as janiEvakallio } from "./jani-evakallio"; -export { default as janne } from "./janne"; -export { default as jaredPalmer } from "./jared-palmer"; -export { default as jari } from "./jari"; -export { default as jasmin } from "./jasmin"; -export { default as jason } from "./jason"; -export { default as je } from "./je"; -export { default as jec } from "./jec"; -export { default as jen } from "./jen"; -export { default as jeremyWagner } from "./jeremy-wagner"; -export { default as jimmyJia } from "./jimmy-jia"; -export { default as jo } from "./jo"; -export { default as joe } from "./joe"; -export { default as johannesSchickling } from "./johannes-schickling"; -export { default as joniNevalainen } from "./joni-nevalainen"; -export { default as joonasP } from "./joonas-p"; -export { default as joonas } from "./joonas"; -export { default as juan } from "./juan"; -export { default as juhaLinnanen } from "./juha-linnanen"; -export { default as juhani } from "./juhani"; -export { default as juhis } from "./juhis"; -export { default as juhoLehtinen } from "./juho-lehtinen"; -export { default as juhoVepsalainen } from "./juho-vepsalainen"; -export { default as julien } from "./julien"; -export { default as juri } from "./juri"; -export { default as jussi } from "./jussi"; -export { default as kadiKraman } from "./kadi-kraman"; -export { default as kasiaJastrzebska } from "./kasia-jastrzebska"; -export { default as kenWheeler } from "./ken-wheeler"; -export { default as kenigboloMeyaStephen } from "./kenigbolo-meya-stephen"; -export { default as kennethSutherland } from "./kenneth-sutherland"; -export { default as kentCDodds } from "./kent-c-dodds"; -export { default as kevin } from "./kevin"; -export { default as kirsi } from "./kirsi"; -export { default as kristaJantti } from "./krista-jantti"; -export { default as kristopher } from "./kristopher"; -export { default as krutie } from "./krutie"; -export { default as lainey } from "./lainey"; -export { default as lauraGonzalez } from "./laura-gonzalez"; -export { default as laura } from "./laura"; -export { default as laurak } from "./laurak"; -export { default as laurao } from "./laurao"; -export { default as lauri } from "./lauri"; -export { default as liran } from "./liran"; -export { default as lucaMatteis } from "./luca-matteis"; -export { default as luca } from "./luca"; -export { default as lukas } from "./lukas"; -export { default as lukeJackson } from "./luke-jackson"; -export { default as m4Dz } from "./m4dz"; -export { default as maaretPyhajarvi } from "./maaret-pyhajarvi"; -export { default as madalyn } from "./madalyn"; -export { default as maggie } from "./maggie"; -export { default as manjula } from "./manjula"; -export { default as manuelMatuzovic } from "./manuel-matuzovic"; -export { default as marcAndreGiroux } from "./marc-andre-giroux"; -export { default as margarita } from "./margarita"; -export { default as marianna } from "./marianna"; -export { default as mario } from "./mario"; -export { default as mark } from "./mark"; -export { default as matias } from "./matias"; -export { default as matt } from "./matt"; -export { default as matteo } from "./matteo"; -export { default as matthewM } from "./matthew-m"; -export { default as matthew } from "./matthew"; -export { default as max } from "./max"; -export { default as michael } from "./michael"; -export { default as michalChudziak } from "./michal-chudziak"; -export { default as michelWeststrate } from "./michel-weststrate"; -export { default as mika } from "./mika"; -export { default as mikeBerman } from "./mike-berman"; -export { default as mikhailNovikov } from "./mikhail-novikov"; -export { default as milecia } from "./milecia"; -export { default as misko } from "./misko"; -export { default as mo } from "./mo"; -export { default as monicaLent } from "./monica-lent"; -export { default as naderDabit } from "./nader-dabit"; -export { default as naman } from "./naman"; -export { default as nasim } from "./nasim"; -export { default as nataliaTepluhina } from "./natalia-tepluhina"; -export { default as nicola } from "./nicola"; -export { default as nidhi } from "./nidhi"; -export { default as nikGraf } from "./nik-graf"; -export { default as niklas } from "./niklas"; -export { default as norbert } from "./norbert"; -export { default as nur } from "./nur"; -export { default as ohans } from "./ohans"; -export { default as olavi } from "./olavi"; -export { default as pasi } from "./pasi"; -export { default as patrickEcker } from "./patrick-ecker"; -export { default as patrickHund } from "./patrick-hund"; -export { default as paul } from "./paul"; -export { default as pekka } from "./pekka"; -export { default as pete } from "./pete"; -export { default as rachelNabors } from "./rachel-nabors"; -export { default as rami } from "./rami"; -export { default as ramona } from "./ramona"; -export { default as rashmi } from "./rashmi"; -export { default as rebeccaHill } from "./rebecca-hill"; -export { default as rickHanlon } from "./rick-hanlon"; -export { default as rob } from "./rob"; -export { default as roosa } from "./roosa"; -export { default as rotemMizrachiMeidan } from "./rotem-mizrachi-meidan"; -export { default as ryan } from "./ryan"; -export { default as saku } from "./saku"; -export { default as salla } from "./salla"; -export { default as samuel } from "./samuel"; -export { default as samuliHakoniemi } from "./samuli-hakoniemi"; -export { default as saraVieira } from "./sara-vieira"; -export { default as satu } from "./satu"; -export { default as sebastian } from "./sebastian"; -export { default as shane } from "./shane"; -export { default as shayKeinan } from "./shay-keinan"; -export { default as shodipo } from "./shodipo"; -export { default as siaKaramalegos } from "./sia-karamalegos"; -export { default as stephanie } from "./stephanie"; -export { default as steve } from "./steve"; -export { default as sunil } from "./sunil"; -export { default as svenSauleau } from "./sven-sauleau"; -export { default as taelurAlexis } from "./taelur-alexis"; -export { default as tanja } from "./tanja"; -export { default as tanmaiGopal } from "./tanmai-gopal"; -export { default as tejasKumar } from "./tejas-kumar"; -export { default as teroParviainen } from "./tero-parviainen"; -export { default as thaisSantos } from "./thais-santos"; -export { default as thomas } from "./thomas"; -export { default as tobiasTimm } from "./tobias-timm"; -export { default as tomasKonrady } from "./tomas-konrady"; -export { default as toniRistola } from "./toni-ristola"; -export { default as tonyEnnis } from "./tony-ennis"; -export { default as tonyKovanen } from "./tony-kovanen"; -export { default as travis } from "./travis"; -export { default as tuuliTiilikainen } from "./tuuli-tiilikainen"; -export { default as uj } from "./uj"; -export { default as una } from "./una"; -export { default as varyaStepanova } from "./varya-stepanova"; -export { default as villeImmonen } from "./ville-immonen"; -export { default as villePelkonen } from "./ville-pelkonen"; -export { default as vismit } from "./vismit"; -export { default as vivekNayyar } from "./vivek-nayyar"; -export { default as woody } from "./woody"; -export { default as xiaoru } from "./xiaoru"; -export { default as yan } from "./yan"; -export { default as yang } from "./yang"; -export { default as yoav } from "./yoav"; -export { default as yulia } from "./yulia"; -export { default as zak } from "./zak"; diff --git a/content/react-finland-2018/index.ts b/content/react-finland-2018/index.ts index 83339347..f04e48c7 100644 --- a/content/react-finland-2018/index.ts +++ b/content/react-finland-2018/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/react-finland-2018/schedules.ts b/content/react-finland-2018/schedules.ts index 959c90c9..dd7cf70b 100644 --- a/content/react-finland-2018/schedules.ts +++ b/content/react-finland-2018/schedules.ts @@ -1,7 +1,9 @@ import { Schedule } from "../../server/schema/Schedule"; import { SessionType } from "../../server/schema/Session"; -import * as talks from "./talks"; -import * as workshops from "./workshops"; +import { + reactFinland2018Talks as talks, + reactFinland2018Workshops as workshops, +} from "../generated"; const workshopDay: Schedule = { day: "2018-04-24", diff --git a/content/react-finland-2018/talks/.index-modules b/content/react-finland-2018/talks/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/react-finland-2018/talks/index.ts b/content/react-finland-2018/talks/index.ts deleted file mode 100644 index 9fe1b2eb..00000000 --- a/content/react-finland-2018/talks/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -export { default as andreyOkonetchnikov } from "./andrey-okonetchnikov"; -export { default as christianAlfoni } from "./christian-alfoni"; -export { default as davidKhourshid } from "./david-khourshid"; -export { default as eemeliAro2 } from "./eemeli-aro-2"; -export { default as eemeliAro } from "./eemeli-aro"; -export { default as gantLaborde } from "./gant-laborde"; -export { default as janiEvakallio } from "./jani-evakallio"; -export { default as juhoVepsalainen } from "./juho-vepsalainen"; -export { default as kasiaJastrzebska } from "./kasia-jastrzebska"; -export { default as kenWheeler } from "./ken-wheeler"; -export { default as michalChudziak } from "./michal-chudziak"; -export { default as michelWeststrate } from "./michel-weststrate"; -export { default as nikGraf } from "./nik-graf"; -export { default as patrickHund } from "./patrick-hund"; -export { default as patrickStapfer } from "./patrick-stapfer"; -export { default as rotemMizrachiMeidan } from "./rotem-mizrachi-meidan"; -export { default as saraVieira } from "./sara-vieira"; -export { default as shayKeinan } from "./shay-keinan"; -export { default as siaKaramalegos } from "./sia-karamalegos"; -export { default as svenSauleau } from "./sven-sauleau"; -export { default as toniRistola } from "./toni-ristola"; -export { default as varyaStepanova } from "./varya-stepanova"; diff --git a/content/react-finland-2018/workshops/.index-modules b/content/react-finland-2018/workshops/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/react-finland-2018/workshops/andrey-and-artem-workshop.ts b/content/react-finland-2018/workshops/andrey-and-artem-workshop.ts index c6f8e23a..e99b7d60 100644 --- a/content/react-finland-2018/workshops/andrey-and-artem-workshop.ts +++ b/content/react-finland-2018/workshops/andrey-and-artem-workshop.ts @@ -1,6 +1,6 @@ import Keyword from "../../../server/schema/keywords"; import { Session, SessionType } from "../../../server/schema/Session"; -import { valkoinenSali } from "../../locations"; +import { valkoinenSali } from "../../generated-core"; import andrey from "../../people/andrey-okonetchnikov"; import artem from "../../people/artem-sapegin"; diff --git a/content/react-finland-2018/workshops/david-khourshid-workshop.ts b/content/react-finland-2018/workshops/david-khourshid-workshop.ts index 7f4d041b..478d05e8 100644 --- a/content/react-finland-2018/workshops/david-khourshid-workshop.ts +++ b/content/react-finland-2018/workshops/david-khourshid-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { elisaAppelsiini } from "../../locations"; +import { elisaAppelsiini } from "../../generated-core"; import david from "../../people/david-khourshid"; const workshop: Session = { diff --git a/content/react-finland-2018/workshops/gant-laborde-workshop.ts b/content/react-finland-2018/workshops/gant-laborde-workshop.ts index dfe3532c..181aa190 100644 --- a/content/react-finland-2018/workshops/gant-laborde-workshop.ts +++ b/content/react-finland-2018/workshops/gant-laborde-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { valkoinenSali } from "../../locations"; +import { valkoinenSali } from "../../generated-core"; import gant from "../../people/gant-laborde"; const workshop: Session = { diff --git a/content/react-finland-2018/workshops/index.ts b/content/react-finland-2018/workshops/index.ts deleted file mode 100644 index 287c3fb0..00000000 --- a/content/react-finland-2018/workshops/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -export { default as andreyAndArtemWorkshop } from "./andrey-and-artem-workshop"; -export { default as davidKhourshidWorkshop } from "./david-khourshid-workshop"; -export { default as gantLabordeWorkshop } from "./gant-laborde-workshop"; -export { default as juhoVepsalainenWorkshop } from "./juho-vepsalainen-workshop"; -export { default as michelWeststrateWorkshop } from "./michel-weststrate-workshop"; -export { default as patrickAndNikWorkshop } from "./patrick-and-nik-workshop"; -export { default as rotemMizrachiMeidanWorkshop } from "./rotem-mizrachi-meidan-workshop"; -export { default as saraVieiraWorkshop } from "./sara-vieira-workshop"; -export { default as siaKaramalegosWorkshop } from "./sia-karamalegos-workshop"; -export { default as svenSauleauWorkshop } from "./sven-sauleau-workshop"; diff --git a/content/react-finland-2018/workshops/juho-vepsalainen-workshop.ts b/content/react-finland-2018/workshops/juho-vepsalainen-workshop.ts index 349bbfe0..288551e0 100644 --- a/content/react-finland-2018/workshops/juho-vepsalainen-workshop.ts +++ b/content/react-finland-2018/workshops/juho-vepsalainen-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { elisaAppelsiini } from "../../locations"; +import { elisaAppelsiini } from "../../generated-core"; import juho from "../../people/juho-vepsalainen"; const workshop: Session = { diff --git a/content/react-finland-2018/workshops/michel-weststrate-workshop.ts b/content/react-finland-2018/workshops/michel-weststrate-workshop.ts index d4627aa4..7a1ec27e 100644 --- a/content/react-finland-2018/workshops/michel-weststrate-workshop.ts +++ b/content/react-finland-2018/workshops/michel-weststrate-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { valkoinenSali } from "../../locations"; +import { valkoinenSali } from "../../generated-core"; import michel from "../../people/michel-weststrate"; const workshop: Session = { diff --git a/content/react-finland-2018/workshops/patrick-and-nik-workshop.ts b/content/react-finland-2018/workshops/patrick-and-nik-workshop.ts index 4d89cbe2..8cc9617d 100644 --- a/content/react-finland-2018/workshops/patrick-and-nik-workshop.ts +++ b/content/react-finland-2018/workshops/patrick-and-nik-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { elisaAppelsiini } from "../../locations"; +import { elisaAppelsiini } from "../../generated-core"; import nik from "../../people/nik-graf"; import patrick from "../../people/patrick-ecker"; diff --git a/content/react-finland-2018/workshops/rotem-mizrachi-meidan-workshop.ts b/content/react-finland-2018/workshops/rotem-mizrachi-meidan-workshop.ts index d4e90ef4..892287c1 100644 --- a/content/react-finland-2018/workshops/rotem-mizrachi-meidan-workshop.ts +++ b/content/react-finland-2018/workshops/rotem-mizrachi-meidan-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { valkoinenSali } from "../../locations"; +import { valkoinenSali } from "../../generated-core"; import rotem from "../../people/rotem-mizrachi-meidan"; const workshop: Session = { diff --git a/content/react-finland-2018/workshops/sara-vieira-workshop.ts b/content/react-finland-2018/workshops/sara-vieira-workshop.ts index 59ad728f..92865a74 100644 --- a/content/react-finland-2018/workshops/sara-vieira-workshop.ts +++ b/content/react-finland-2018/workshops/sara-vieira-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { valkoinenSali } from "../../locations"; +import { valkoinenSali } from "../../generated-core"; import sara from "../../people/sara-vieira"; const workshop: Session = { diff --git a/content/react-finland-2018/workshops/sia-karamalegos-workshop.ts b/content/react-finland-2018/workshops/sia-karamalegos-workshop.ts index 77583aa6..dd03cd51 100644 --- a/content/react-finland-2018/workshops/sia-karamalegos-workshop.ts +++ b/content/react-finland-2018/workshops/sia-karamalegos-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { elisaAppelsiini } from "../../locations"; +import { elisaAppelsiini } from "../../generated-core"; import sia from "../../people/sia-karamalegos"; const workshop: Session = { diff --git a/content/react-finland-2018/workshops/sven-sauleau-workshop.ts b/content/react-finland-2018/workshops/sven-sauleau-workshop.ts index b29cee97..ccddccf2 100644 --- a/content/react-finland-2018/workshops/sven-sauleau-workshop.ts +++ b/content/react-finland-2018/workshops/sven-sauleau-workshop.ts @@ -1,5 +1,5 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { elisaAppelsiini } from "../../locations"; +import { elisaAppelsiini } from "../../generated-core"; import sven from "../../people/sven-sauleau"; const workshop: Session = { diff --git a/content/react-finland-2019/index.ts b/content/react-finland-2019/index.ts index 208b9b6f..6aaf52ab 100644 --- a/content/react-finland-2019/index.ts +++ b/content/react-finland-2019/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/react-finland-2019/schedules.ts b/content/react-finland-2019/schedules.ts index c5e544aa..bbf20cea 100644 --- a/content/react-finland-2019/schedules.ts +++ b/content/react-finland-2019/schedules.ts @@ -1,9 +1,11 @@ import { Schedule } from "../../server/schema/Schedule"; import { SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as talks from "./talks"; -import * as allWorkshops from "./workshops"; +import { + locations, + people, + reactFinland2019Talks as talks, + reactFinland2019Workshops as allWorkshops, +} from "../generated"; const workshops = Object.values(allWorkshops); diff --git a/content/react-finland-2019/talks/.index-modules b/content/react-finland-2019/talks/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/react-finland-2019/talks/index.ts b/content/react-finland-2019/talks/index.ts deleted file mode 100644 index 8722e196..00000000 --- a/content/react-finland-2019/talks/index.ts +++ /dev/null @@ -1,27 +0,0 @@ -export { default as andreyOkonetchnikov } from "./andrey-okonetchnikov"; -export { default as annaDoubkova } from "./anna-doubkova"; -export { default as artemSapegin } from "./artem-sapegin"; -export { default as artemZakharchenko } from "./artem-zakharchenko"; -export { default as bohdanLiashenko } from "./bohdan-liashenko"; -export { default as brunoLourenco } from "./bruno-lourenco"; -export { default as carolynStransky } from "./carolyn-stransky"; -export { default as christofferNiska } from "./christoffer-niska"; -export { default as davidKhourshid } from "./david-khourshid"; -export { default as dustinSchau } from "./dustin-schau"; -export { default as farzadYz } from "./farzad-yz"; -export { default as glennReyes } from "./glenn-reyes"; -export { default as jamonHolmgren } from "./jamon-holmgren"; -export { default as juhaLinnanen } from "./juha-linnanen"; -export { default as kadiKraman } from "./kadi-kraman"; -export { default as lucaMatteis } from "./luca-matteis"; -export { default as maaretPyhajarvi } from "./maaret-pyhajarvi"; -export { default as manuelMatuzovic } from "./manuel-matuzovic"; -export { default as michelWeststrate } from "./michel-weststrate"; -export { default as monicaLent } from "./monica-lent"; -export { default as nikGraf } from "./nik-graf"; -export { default as rickHanlon } from "./rick-hanlon"; -export { default as svenSauleau } from "./sven-sauleau"; -export { default as tejasKumar } from "./tejas-kumar"; -export { default as tomasKonrady } from "./tomas-konrady"; -export { default as varyaStepanova } from "./varya-stepanova"; -export { default as villeImmonen } from "./ville-immonen"; diff --git a/content/react-finland-2019/workshops/.index-modules b/content/react-finland-2019/workshops/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/react-finland-2019/workshops/andrey-and-artem-workshop.ts b/content/react-finland-2019/workshops/andrey-and-artem-workshop.ts index 0bc8ed45..dd58dfaf 100644 --- a/content/react-finland-2019/workshops/andrey-and-artem-workshop.ts +++ b/content/react-finland-2019/workshops/andrey-and-artem-workshop.ts @@ -1,6 +1,6 @@ import Keyword from "../../../server/schema/keywords"; import { Session, SessionType } from "../../../server/schema/Session"; -import { paasitorni } from "../../locations"; +import { paasitorni } from "../../generated-core"; import andrey from "../../people/andrey-okonetchnikov"; import artem from "../../people/artem-sapegin"; diff --git a/content/react-finland-2019/workshops/david-khourshid-workshop.ts b/content/react-finland-2019/workshops/david-khourshid-workshop.ts index 1fe287df..24a23c35 100644 --- a/content/react-finland-2019/workshops/david-khourshid-workshop.ts +++ b/content/react-finland-2019/workshops/david-khourshid-workshop.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { paasitorni } from "../../locations"; -import { davidKhourshid } from "../../people"; +import { paasitorni } from "../../generated-core"; +import { davidKhourshid } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2019/workshops/glenn-reyes-workshop.ts b/content/react-finland-2019/workshops/glenn-reyes-workshop.ts index 0474676d..7893ade9 100644 --- a/content/react-finland-2019/workshops/glenn-reyes-workshop.ts +++ b/content/react-finland-2019/workshops/glenn-reyes-workshop.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { paasitorni } from "../../locations"; -import { glennReyes } from "../../people"; +import { paasitorni } from "../../generated-core"; +import { glennReyes } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2019/workshops/index.ts b/content/react-finland-2019/workshops/index.ts deleted file mode 100644 index 0d612ed1..00000000 --- a/content/react-finland-2019/workshops/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export { default as andreyAndArtemWorkshop } from "./andrey-and-artem-workshop"; -export { default as davidKhourshidWorkshop } from "./david-khourshid-workshop"; -export { default as glennReyesWorkshop } from "./glenn-reyes-workshop"; -export { default as michelWorkshop } from "./michel-workshop"; -export { default as nikWorkshop } from "./nik-workshop"; -export { default as performanceWorkshop } from "./performance-workshop"; diff --git a/content/react-finland-2019/workshops/michel-workshop.ts b/content/react-finland-2019/workshops/michel-workshop.ts index 3cf5a451..c25cda86 100644 --- a/content/react-finland-2019/workshops/michel-workshop.ts +++ b/content/react-finland-2019/workshops/michel-workshop.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { paasitorni } from "../../locations"; -import { michelWeststrate } from "../../people"; +import { paasitorni } from "../../generated-core"; +import { michelWeststrate } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2019/workshops/nik-workshop.ts b/content/react-finland-2019/workshops/nik-workshop.ts index d12de98f..2072187f 100644 --- a/content/react-finland-2019/workshops/nik-workshop.ts +++ b/content/react-finland-2019/workshops/nik-workshop.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { paasitorni } from "../../locations"; -import { nikGraf } from "../../people"; +import { paasitorni } from "../../generated-core"; +import { nikGraf } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2019/workshops/performance-workshop.ts b/content/react-finland-2019/workshops/performance-workshop.ts index 7aa6e97a..30d4b8d7 100644 --- a/content/react-finland-2019/workshops/performance-workshop.ts +++ b/content/react-finland-2019/workshops/performance-workshop.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { paasitorni } from "../../locations"; -import { saraVieira } from "../../people"; +import { paasitorni } from "../../generated-core"; +import { saraVieira } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2020/index.ts b/content/react-finland-2020/index.ts index be27da55..ff4aefd9 100644 --- a/content/react-finland-2020/index.ts +++ b/content/react-finland-2020/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -// import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +// import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/react-finland-2020/schedules.ts b/content/react-finland-2020/schedules.ts index a8c6e830..084dcc74 100644 --- a/content/react-finland-2020/schedules.ts +++ b/content/react-finland-2020/schedules.ts @@ -1,7 +1,7 @@ import { Schedule } from "../../server/schema/Schedule"; // import { SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -// import * as people from "../people"; +import { locations } from "../generated"; +// import { people } from "../generated"; /* const mc = people.juhoVepsalainen; diff --git a/content/react-finland-2020/talks/.index-modules b/content/react-finland-2020/talks/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/react-finland-2020/talks/index.ts b/content/react-finland-2020/talks/index.ts deleted file mode 100644 index 57e699cc..00000000 --- a/content/react-finland-2020/talks/index.ts +++ /dev/null @@ -1,29 +0,0 @@ -export { default as brent } from "./brent"; -export { default as davidKhourshid } from "./david-khourshid"; -export { default as eli } from "./eli"; -export { default as emma } from "./emma"; -export { default as esaMatti } from "./esa-matti"; -export { default as farzadYz } from "./farzad-yz"; -export { default as isaSilveira } from "./isa-silveira"; -export { default as ivanOrlov } from "./ivan-orlov"; -export { default as jaredPalmer } from "./jared-palmer"; -export { default as jeremyWagner } from "./jeremy-wagner"; -export { default as kenigboloMeyaStephen } from "./kenigbolo-meya-stephen"; -export { default as kennethSutherland } from "./kenneth-sutherland"; -export { default as kentCDodds } from "./kent-c-dodds"; -export { default as lauraGonzalez } from "./laura-gonzalez"; -export { default as lauri } from "./lauri"; -export { default as madalyn } from "./madalyn"; -export { default as margarita } from "./margarita"; -export { default as naderDabit } from "./nader-dabit"; -export { default as nikGraf } from "./nik-graf"; -export { default as olavi } from "./olavi"; -export { default as rachelNabors } from "./rachel-nabors"; -export { default as rebeccaHill } from "./rebecca-hill"; -export { default as taelurAlexis } from "./taelur-alexis"; -export { default as tejasKumar } from "./tejas-kumar"; -export { default as tobiasTimm } from "./tobias-timm"; -export { default as villePelkonen } from "./ville-pelkonen"; -export { default as vivekNayyar } from "./vivek-nayyar"; -export { default as xiaoru } from "./xiaoru"; -export { default as yan } from "./yan"; diff --git a/content/react-finland-2020/workshops/.index-modules b/content/react-finland-2020/workshops/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/react-finland-2020/workshops/advanced-react.ts b/content/react-finland-2020/workshops/advanced-react.ts index 7691d027..ade1abf6 100644 --- a/content/react-finland-2020/workshops/advanced-react.ts +++ b/content/react-finland-2020/workshops/advanced-react.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; -import { nikGraf } from "../../people"; +import { internet } from "../../generated-core"; +import { nikGraf } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2020/workshops/design-systems-101.ts b/content/react-finland-2020/workshops/design-systems-101.ts index a6f632b5..1ef47aac 100644 --- a/content/react-finland-2020/workshops/design-systems-101.ts +++ b/content/react-finland-2020/workshops/design-systems-101.ts @@ -1,6 +1,6 @@ import Keyword from "../../../server/schema/keywords"; import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; +import { internet } from "../../generated-core"; import andrey from "../../people/andrey-okonetchnikov"; import varya from "../../people/varya-stepanova"; diff --git a/content/react-finland-2020/workshops/design-systems.ts b/content/react-finland-2020/workshops/design-systems.ts index 777d2a84..59cc75a8 100644 --- a/content/react-finland-2020/workshops/design-systems.ts +++ b/content/react-finland-2020/workshops/design-systems.ts @@ -1,6 +1,6 @@ import Keyword from "../../../server/schema/keywords"; import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; +import { internet } from "../../generated-core"; import andrey from "../../people/andrey-okonetchnikov"; const workshop: Session = { diff --git a/content/react-finland-2020/workshops/from-legacy-to-react.ts b/content/react-finland-2020/workshops/from-legacy-to-react.ts index 2519e390..e8b1b21b 100644 --- a/content/react-finland-2020/workshops/from-legacy-to-react.ts +++ b/content/react-finland-2020/workshops/from-legacy-to-react.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; -import { kenigboloMeyaStephen } from "../../people"; +import { internet } from "../../generated-core"; +import { kenigboloMeyaStephen } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2020/workshops/full-stack.ts b/content/react-finland-2020/workshops/full-stack.ts index d4364125..d459884c 100644 --- a/content/react-finland-2020/workshops/full-stack.ts +++ b/content/react-finland-2020/workshops/full-stack.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; -import { naderDabit } from "../../people"; +import { internet } from "../../generated-core"; +import { naderDabit } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2020/workshops/index.ts b/content/react-finland-2020/workshops/index.ts deleted file mode 100644 index a77d0d53..00000000 --- a/content/react-finland-2020/workshops/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -export { default as advancedReact } from "./advanced-react"; -export { default as designSystems101 } from "./design-systems-101"; -export { default as designSystems } from "./design-systems"; -export { default as fromLegacyToReact } from "./from-legacy-to-react"; -export { default as fullStack } from "./full-stack"; -export { default as modernForms } from "./modern-forms"; -export { default as reactNative } from "./react-native"; -export { default as reactPerformance } from "./react-performance"; -export { default as resilientLibs } from "./resilient-libs"; -export { default as statecharts } from "./statecharts"; -export { default as testingReact } from "./testing-react"; diff --git a/content/react-finland-2020/workshops/modern-forms.ts b/content/react-finland-2020/workshops/modern-forms.ts index bfe2c272..2b037a42 100644 --- a/content/react-finland-2020/workshops/modern-forms.ts +++ b/content/react-finland-2020/workshops/modern-forms.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; -import { erikRasmussen } from "../../people"; +import { internet } from "../../generated-core"; +import { erikRasmussen } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2020/workshops/react-native.ts b/content/react-finland-2020/workshops/react-native.ts index ee0c2cab..e7a86906 100644 --- a/content/react-finland-2020/workshops/react-native.ts +++ b/content/react-finland-2020/workshops/react-native.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; -import { juhaLinnanen, naderDabit } from "../../people"; +import { internet } from "../../generated-core"; +import { juhaLinnanen, naderDabit } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2020/workshops/react-performance.ts b/content/react-finland-2020/workshops/react-performance.ts index fb19e585..d1c742bc 100644 --- a/content/react-finland-2020/workshops/react-performance.ts +++ b/content/react-finland-2020/workshops/react-performance.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; -import { kentCDodds } from "../../people"; +import { internet } from "../../generated-core"; +import { kentCDodds } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2020/workshops/resilient-libs.ts b/content/react-finland-2020/workshops/resilient-libs.ts index 4a2f5314..f298de74 100644 --- a/content/react-finland-2020/workshops/resilient-libs.ts +++ b/content/react-finland-2020/workshops/resilient-libs.ts @@ -1,6 +1,6 @@ import Keyword from "../../../server/schema/keywords"; import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; +import { internet } from "../../generated-core"; import andrey from "../../people/andrey-okonetchnikov"; import artem from "../../people/artem-sapegin"; diff --git a/content/react-finland-2020/workshops/statecharts.ts b/content/react-finland-2020/workshops/statecharts.ts index 54f6e2c0..5e39546b 100644 --- a/content/react-finland-2020/workshops/statecharts.ts +++ b/content/react-finland-2020/workshops/statecharts.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; -import { davidKhourshid } from "../../people"; +import { internet } from "../../generated-core"; +import { davidKhourshid } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2020/workshops/testing-react.ts b/content/react-finland-2020/workshops/testing-react.ts index bcaec386..269a8961 100644 --- a/content/react-finland-2020/workshops/testing-react.ts +++ b/content/react-finland-2020/workshops/testing-react.ts @@ -1,6 +1,6 @@ import { Session, SessionType } from "../../../server/schema/Session"; -import { internet } from "../../locations"; -import { kentCDodds } from "../../people"; +import { internet } from "../../generated-core"; +import { kentCDodds } from "../../generated-core"; const workshop: Session = { type: SessionType.WORKSHOP, diff --git a/content/react-finland-2021/index.ts b/content/react-finland-2021/index.ts index 0a033c06..256ad54d 100644 --- a/content/react-finland-2021/index.ts +++ b/content/react-finland-2021/index.ts @@ -1,7 +1,7 @@ import { Conference } from "../../server/schema/Conference"; -// import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +// import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/react-finland-2021/schedules.ts b/content/react-finland-2021/schedules.ts index e83dac92..882447aa 100644 --- a/content/react-finland-2021/schedules.ts +++ b/content/react-finland-2021/schedules.ts @@ -1,7 +1,7 @@ import { Schedule } from "../../server/schema/Schedule"; import { Level, SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; +import { locations } from "../generated"; +import { people } from "../generated"; // All times are given in GMT+0 const monday: Schedule = { diff --git a/content/react-finland-2022/index.ts b/content/react-finland-2022/index.ts index 555bf421..1164b31f 100644 --- a/content/react-finland-2022/index.ts +++ b/content/react-finland-2022/index.ts @@ -1,8 +1,8 @@ import { Conference } from "../../server/schema/Conference"; import { Contact } from "../../server/schema/Contact"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import schedules from "./schedules"; const partners = [ diff --git a/content/react-finland-2022/schedules.ts b/content/react-finland-2022/schedules.ts index d829a069..f4bea67c 100644 --- a/content/react-finland-2022/schedules.ts +++ b/content/react-finland-2022/schedules.ts @@ -1,7 +1,7 @@ import { Schedule } from "../../server/schema/Schedule"; import { Level, SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; +import { locations } from "../generated"; +import { people } from "../generated"; // All times are given in GMT+0 const monday: Schedule = { diff --git a/content/reason-conf-2019/index.ts b/content/reason-conf-2019/index.ts index 17e97dcf..9adb6520 100644 --- a/content/reason-conf-2019/index.ts +++ b/content/reason-conf-2019/index.ts @@ -1,8 +1,8 @@ import { Conference } from "../../server/schema/Conference"; import { SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import scheduleData from "./data.json"; const sponsors = []; diff --git a/content/rf2020-01/index.ts b/content/rf2020-01/index.ts index 0ab6c732..7cd65655 100644 --- a/content/rf2020-01/index.ts +++ b/content/rf2020-01/index.ts @@ -1,9 +1,11 @@ import { Conference } from "../../server/schema/Conference"; import { SessionType } from "../../server/schema/Session"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; -import * as talks from "./talks"; +import { + locations, + people, + rf202001Talks as talks, + sponsors as allSponsors, +} from "../generated"; const partners = [ allSponsors.agentconf, diff --git a/content/rf2020-01/talks/.index-modules b/content/rf2020-01/talks/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/rf2020-01/talks/index.ts b/content/rf2020-01/talks/index.ts deleted file mode 100644 index 2c8097a8..00000000 --- a/content/rf2020-01/talks/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export { default as carolyn } from "./carolyn"; -export { default as kenigboloMeyaStephen } from "./kenigbolo-meya-stephen"; -export { default as margarita } from "./margarita"; diff --git a/content/sponsors/.index-modules b/content/sponsors/.index-modules deleted file mode 100644 index e69de29b..00000000 diff --git a/content/sponsors/index.ts b/content/sponsors/index.ts deleted file mode 100644 index 497af255..00000000 --- a/content/sponsors/index.ts +++ /dev/null @@ -1,112 +0,0 @@ -export { default as a11Yclub } from "./a11yclub"; -export { default as agentconf } from "./agentconf"; -export { default as alma } from "./alma"; -export { default as amazon } from "./amazon"; -export { default as apidays } from "./apidays"; -export { default as apiops } from "./apiops"; -export { default as apollo } from "./apollo"; -export { default as backscreen } from "./backscreen"; -export { default as bangalore } from "./bangalore"; -export { default as bejs } from "./bejs"; -export { default as brella } from "./brella"; -export { default as cai } from "./cai"; -export { default as codento } from "./codento"; -export { default as columbiaroad } from "./columbiaroad"; -export { default as cybercom } from "./cybercom"; -export { default as designsystemslondon } from "./designsystemslondon"; -export { default as digia } from "./digia"; -export { default as digitalExpert } from "./digital-expert"; -export { default as divriots } from "./divriots"; -export { default as dna325 } from "./dna325"; -export { default as dojs } from "./dojs"; -export { default as dynatrace } from "./dynatrace"; -export { default as elisa } from "./elisa"; -export { default as evitec } from "./evitec"; -export { default as fb } from "./fb"; -export { default as formidable } from "./formidable"; -export { default as frankenjs } from "./frankenjs"; -export { default as friikit } from "./friikit"; -export { default as futurice } from "./futurice"; -export { default as gatsby } from "./gatsby"; -export { default as geekle } from "./geekle"; -export { default as geniem } from "./geniem"; -export { default as ginetta } from "./ginetta"; -export { default as glorium } from "./glorium"; -export { default as gofore } from "./gofore"; -export { default as gqlhongkong } from "./gqlhongkong"; -export { default as graphqlFinland } from "./graphql-finland"; -export { default as grusp } from "./grusp"; -export { default as haagahelia } from "./haagahelia"; -export { default as halfstack } from "./halfstack"; -export { default as hasura } from "./hasura"; -export { default as hbc } from "./hbc"; -export { default as honeypot } from "./honeypot"; -export { default as huuva } from "./huuva"; -export { default as jscamp } from "./jscamp"; -export { default as jsconfbp } from "./jsconfbp"; -export { default as jsday } from "./jsday"; -export { default as jskongress } from "./jskongress"; -export { default as jsn } from "./jsn"; -export { default as knowit } from "./knowit"; -export { default as kongres } from "./kongres"; -export { default as koodiasuomesta } from "./koodiasuomesta"; -export { default as loihdefactor } from "./loihdefactor"; -export { default as meiko } from "./meiko"; -export { default as monolisa } from "./monolisa"; -export { default as moonhighway } from "./moonhighway"; -export { default as motley } from "./motley"; -export { default as netum } from "./netum"; -export { default as nightingale } from "./nightingale"; -export { default as nitor } from "./nitor"; -export { default as nodecongress } from "./nodecongress"; -export { default as ohjelmistofriikit } from "./ohjelmistofriikit"; -export { default as osaango } from "./osaango"; -export { default as postgraphile } from "./postgraphile"; -export { default as prisma } from "./prisma"; -export { default as quentic } from "./quentic"; -export { default as reactFinland } from "./react-finland"; -export { default as reactalicante } from "./reactalicante"; -export { default as reactbrussels } from "./reactbrussels"; -export { default as reactdayberlin } from "./reactdayberlin"; -export { default as reactfest } from "./reactfest"; -export { default as reactindia } from "./reactindia"; -export { default as reactjsday } from "./reactjsday"; -export { default as reactjsgirls } from "./reactjsgirls"; -export { default as reactnativeeu } from "./reactnativeeu"; -export { default as reactnewyork } from "./reactnewyork"; -export { default as reactnorway } from "./reactnorway"; -export { default as reactparis } from "./reactparis"; -export { default as reactsummit } from "./reactsummit"; -export { default as reactweek } from "./reactweek"; -export { default as reaktor } from "./reaktor"; -export { default as reasonconf } from "./reasonconf"; -export { default as relex } from "./relex"; -export { default as rlc } from "./rlc"; -export { default as rohea } from "./rohea"; -export { default as rp } from "./rp"; -export { default as sae } from "./sae"; -export { default as smartly } from "./smartly"; -export { default as solita } from "./solita"; -export { default as stickermule } from "./stickermule"; -export { default as supermetrics } from "./supermetrics"; -export { default as survivejs } from "./survivejs"; -export { default as techEvents } from "./tech-events"; -export { default as toddle } from "./toddle"; -export { default as toska } from "./toska"; -export { default as twir } from "./twir"; -export { default as typeof } from "./typeof"; -export { default as upcloud } from "./upcloud"; -export { default as utopia } from "./utopia"; -export { default as valamis } from "./valamis"; -export { default as verkkokauppa } from "./verkkokauppa"; -export { default as vihat } from "./vihat"; -export { default as vincit } from "./vincit"; -export { default as webexpo } from "./webexpo"; -export { default as wonna } from "./wonna"; -export { default as wunder } from "./wunder"; -export { default as wunderdog } from "./wunderdog"; -export { default as yglfkyiv } from "./yglfkyiv"; -export { default as yle } from "./yle"; -export { default as zapier } from "./zapier"; -export { default as zeroplusx } from "./zeroplusx"; -export { default as zurichjs } from "./zurichjs"; diff --git a/content/techmovienight/index.ts b/content/techmovienight/index.ts index 5df3fdc3..124d933c 100644 --- a/content/techmovienight/index.ts +++ b/content/techmovienight/index.ts @@ -1,8 +1,8 @@ import { Conference } from "../../server/schema/Conference"; import { Schedule } from "../../server/schema/Schedule"; -import * as locations from "../locations"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { locations } from "../generated"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; const latestMeetupDate = "2019-06-22"; diff --git a/content/typeof-2019/index.ts b/content/typeof-2019/index.ts index 773873a4..7c61e270 100644 --- a/content/typeof-2019/index.ts +++ b/content/typeof-2019/index.ts @@ -1,8 +1,8 @@ import { Conference } from "../../server/schema/Conference"; import { ContactType } from "../../server/schema/Contact"; import { SessionType } from "../../server/schema/Session"; -import * as people from "../people"; -import * as allSponsors from "../sponsors"; +import { people } from "../generated"; +import { sponsors as allSponsors } from "../generated"; import scheduleData from "./data.json"; const sponsors = []; diff --git a/package-lock.json b/package-lock.json index ae565c34..949f77aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,2033 +9,1951 @@ "version": "0.0.0", "license": "MIT", "dependencies": { - "@emotion/core": "^10.0.17", - "@emotion/styled": "^10.0.17", - "bent": "^6.1.0", - "body-parser": "^1.19.0", - "compression": "^1.7.4", - "cors": "^2.8.5", - "csv-parse": "^4.4.6", - "csv-stringify": "^5.3.3", - "date-range-array": "^2.1.0", - "dotenv": "^8.1.0", - "expeditious-engine-memory": "^0.2.1", - "express": "^4.18.2", - "express-expeditious": "^5.1.1", - "file-saver": "^2.0.2", - "fs-extra": "^8.1.0", - "fuse-box": "^3.7.1", - "googleapis": "^42.0.0", - "graphql": "^14.5.4", - "graphql-depth-limit": "^1.1.0", - "graphql-http": "^1.22.4", - "graphql-request": "^1.8.2", - "helmet": "^3.21.0", - "hex-to-rgba": "^2.0.1", - "history": "^4.9.0", - "ical-generator": "^1.7.2", - "just-kebab-case": "^1.1.0", - "lodash": "^4.17.21", - "markdown-to-jsx": "^6.11.4", - "md5": "^2.3.0", - "mkdirp": "^0.5.1", - "morgan": "^1.10.0", - "polished": "^3.4.1", - "query-string": "^6.8.3", - "react": "^16.9.0", - "react-copy-to-clipboard": "^5.0.1", - "react-dom": "^16.9.0", - "react-easy-emoji": "^1.2.0", - "reflect-metadata": "^0.1.13", - "request": "^2.88.2", - "request-promise-native": "^1.0.9", - "retina-dom-to-image": "^2.5.6", - "rimraf": "^3.0.0", - "smooth-scroll-into-view-if-needed": "^1.1.23", - "to-title-case": "^1.0.0", - "type-graphql": "^0.17.6", - "typescript": "^5.8.3", - "uglify-es": "^3.3.9", - "window-or-global": "^1.0.1", - "winston": "^3.3.3", - "zerofill": "^0.1.0" + "graphql": "16.13.2", + "graphql-depth-limit": "1.1.0", + "graphql-http": "1.22.4", + "ical-generator": "10.1.0" }, "devDependencies": { - "@types/compression": "1.0.1", - "@types/cors": "^2.8.6", - "@types/dotenv": "^6.1.1", - "@types/express": "4.17.9", - "@types/file-saver": "^2.0.1", - "@types/fs-extra": "^8.0.0", - "@types/graphql": "^14.5.0", - "@types/helmet": "0.0.44", - "@types/history": "^4.7.3", - "@types/lodash": "^4.14.138", - "@types/md5": "^2.1.33", - "@types/morgan": "^1.7.37", - "@types/node": "^24.0.3", - "@types/query-string": "^6.3.0", - "@types/react": "^16.9.2", - "@types/react-copy-to-clipboard": "^4.2.6", - "@types/react-dom": "^16.9.0", - "@types/request": "^2.48.3", - "@types/request-promise-native": "^1.0.16", - "@types/window-or-global": "^1.0.0", - "camelcase": "^5.3.1", - "cheerio": "^1.0.0-rc.3", - "csstype": "^2.6.6", - "flatmap": "0.0.3", - "glob": "^7.1.7", - "mri": "^1.1.6", - "prettier": "^2.3.1", - "tsc-watch": "^7.1.1", - "tslint": "^6.1.3", - "tslint-config-prettier": "^1.18.0", - "tslint-plugin-prettier": "^2.3.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", - "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.0.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", - "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", - "dependencies": { - "@babel/types": "^7.0.0" + "@redwoodjs/agent-ci": "0.6.0", + "@types/node": "24.0.3", + "glob": "13.0.6", + "mri": "1.2.0", + "typescript": "6.0.2", + "wrangler": "4.80.0" + }, + "engines": { + "node": "24.x" } }, - "node_modules/@babel/highlight": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", - "integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", + "node_modules/@actions/expressions": { + "version": "0.3.50", + "resolved": "https://registry.npmjs.org/@actions/expressions/-/expressions-0.3.50.tgz", + "integrity": "sha512-raRCCUiRlNYzqyM4d4DGOZ54U1lBtfyEnmB22Br44SRPR9K4Tb/me27xabKBORK1ycJXh93qXhkxx774+6a7tA==", "dev": true, - "dependencies": { - "chalk": "^2.0.0", - "esutils": "^2.0.2", - "js-tokens": "^4.0.0" - } - }, - "node_modules/@babel/highlight/node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "node_modules/@babel/runtime": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.6.0.tgz", - "integrity": "sha512-89eSBLJsxNxOERC0Op4vd+0Bqm6wRMqMbFtV3i0/fbaWw/mJ8Q3eBvgX0G4SyrOOLCtbu98HspF8o09MRT+KzQ==", - "dependencies": { - "regenerator-runtime": "^0.13.2" - } - }, - "node_modules/@babel/runtime/node_modules/regenerator-runtime": { - "version": "0.13.3", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", - "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==" - }, - "node_modules/@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", - "dependencies": { - "esutils": "^2.0.2", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" - } - }, - "node_modules/@dabh/diagnostics": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz", - "integrity": "sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==", - "dependencies": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, - "node_modules/@emotion/cache": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.17.tgz", - "integrity": "sha512-442/miwbuwIDfSzfMqZNxuzxSEbskcz/bZ86QBYzEjFrr/oq9w+y5kJY1BHbGhDtr91GO232PZ5NN9XYMwr/Qg==", - "dependencies": { - "@emotion/sheet": "0.9.3", - "@emotion/stylis": "0.8.4", - "@emotion/utils": "0.11.2", - "@emotion/weak-memoize": "0.2.3" + "license": "MIT", + "engines": { + "node": ">= 20" } }, - "node_modules/@emotion/core": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.0.17.tgz", - "integrity": "sha512-gykyjjr0sxzVuZBVTVK4dUmYsorc2qLhdYgSiOVK+m7WXgcYTKZevGWZ7TLAgTZvMelCTvhNq8xnf8FR1IdTbg==", - "peer": true, + "node_modules/@actions/workflow-parser": { + "version": "0.3.43", + "resolved": "https://registry.npmjs.org/@actions/workflow-parser/-/workflow-parser-0.3.43.tgz", + "integrity": "sha512-hghYVU7h//IGf+NaQgZrO7SI2Pre88ZKZQ8sM/1CBx1bEIJM9t9MMAeTCnKOknNaxBScbDPmmpwil26DxKgMwA==", + "dev": true, + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.5.5", - "@emotion/cache": "^10.0.17", - "@emotion/css": "^10.0.14", - "@emotion/serialize": "^0.11.10", - "@emotion/sheet": "0.9.3", - "@emotion/utils": "0.11.2" + "@actions/expressions": "^0.3.43", + "cronstrue": "^2.21.0", + "yaml": "^2.0.0-8" }, - "peerDependencies": { - "react": ">=16.3.0" + "engines": { + "node": ">= 18" } }, - "node_modules/@emotion/css": { - "version": "10.0.14", - "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.14.tgz", - "integrity": "sha512-MozgPkBEWvorcdpqHZE5x1D/PLEHUitALQCQYt2wayf4UNhpgQs2tN0UwHYS4FMy5ROBH+0ALyCFVYJ/ywmwlg==", - "dependencies": { - "@emotion/serialize": "^0.11.8", - "@emotion/utils": "0.11.2", - "babel-plugin-emotion": "^10.0.14" + "node_modules/@arr/every": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@arr/every/-/every-1.0.1.tgz", + "integrity": "sha512-UQFQ6SgyJ6LX42W8rHCs8KVc0JS0tzVL9ct4XYedJukskYVWTo49tNiMEK9C2HTyarbNiT/RVIRSY82vH+6sTg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" } }, - "node_modules/@emotion/hash": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.7.2.tgz", - "integrity": "sha512-RMtr1i6E8MXaBWwhXL3yeOU8JXRnz8GNxHvaUfVvwxokvayUY0zoBeWbKw1S9XkufmGEEdQd228pSZXFkAln8Q==" + "node_modules/@balena/dockerignore": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@balena/dockerignore/-/dockerignore-1.0.2.tgz", + "integrity": "sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==", + "dev": true, + "license": "Apache-2.0" }, - "node_modules/@emotion/is-prop-valid": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.2.tgz", - "integrity": "sha512-ZQIMAA2kLUWiUeMZNJDTeCwYRx1l8SQL0kHktze4COT22occKpDML1GDUXP5/sxhOMrZO8vZw773ni4H5Snrsg==", - "dependencies": { - "@emotion/memoize": "0.7.2" + "node_modules/@cloudflare/kv-asset-handler": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.4.2.tgz", + "integrity": "sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==", + "dev": true, + "license": "MIT OR Apache-2.0", + "engines": { + "node": ">=18.0.0" } }, - "node_modules/@emotion/memoize": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.2.tgz", - "integrity": "sha512-hnHhwQzvPCW1QjBWFyBtsETdllOM92BfrKWbUTmh9aeOlcVOiXvlPsK4104xH8NsaKfg86PTFsWkueQeUfMA/w==" - }, - "node_modules/@emotion/serialize": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.10.tgz", - "integrity": "sha512-04AB+wU00vv9jLgkWn13c/GJg2yXp3w7ZR3Q1O6mBSE6mbUmYeNX3OpBhfp//6r47lFyY0hBJJue+bA30iokHQ==", - "dependencies": { - "@emotion/hash": "0.7.2", - "@emotion/memoize": "0.7.2", - "@emotion/unitless": "0.7.4", - "@emotion/utils": "0.11.2", - "csstype": "^2.5.7" - } - }, - "node_modules/@emotion/sheet": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.3.tgz", - "integrity": "sha512-c3Q6V7Df7jfwSq5AzQWbXHa5soeE4F5cbqi40xn0CzXxWW9/6Mxq48WJEtqfWzbZtW9odZdnRAkwCQwN12ob4A==" - }, - "node_modules/@emotion/styled": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.0.17.tgz", - "integrity": "sha512-zHMgWjHDMNjD+ux64POtDnjLAObniu3znxFBLSdV/RiEhSLjHIowfvSbbd/C33/3uwtI6Uzs2KXnRZtka/PpAQ==", - "dependencies": { - "@emotion/styled-base": "^10.0.17", - "babel-plugin-emotion": "^10.0.17" - }, + "node_modules/@cloudflare/unenv-preset": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.16.0.tgz", + "integrity": "sha512-8ovsRpwzPoEqPUzoErAYVv8l3FMZNeBVQfJTvtzP4AgLSRGZISRfuChFxHWUQd3n6cnrwkuTGxT+2cGo8EsyYg==", + "dev": true, + "license": "MIT OR Apache-2.0", "peerDependencies": { - "@emotion/core": "^10.0.17", - "react": ">=16.3.0" - } - }, - "node_modules/@emotion/styled-base": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.0.17.tgz", - "integrity": "sha512-vqQvxluZZKPByAB4zYZys0Qo/kVDP/03hAeg1K+TYpnZRwTi7WteOodc+/5669RPVNcfb93fphQpM5BYJnI1/g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "@emotion/is-prop-valid": "0.8.2", - "@emotion/serialize": "^0.11.10", - "@emotion/utils": "0.11.2" + "unenv": "2.0.0-rc.24", + "workerd": "1.20260301.1 || ~1.20260302.1 || ~1.20260303.1 || ~1.20260304.1 || >1.20260305.0 <2.0.0-0" }, - "peerDependencies": { - "@emotion/core": "^10.0.17", - "react": ">=16.3.0" + "peerDependenciesMeta": { + "workerd": { + "optional": true + } } }, - "node_modules/@emotion/stylis": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.4.tgz", - "integrity": "sha512-TLmkCVm8f8gH0oLv+HWKiu7e8xmBIaokhxcEKPh1m8pXiV/akCiq50FvYgOwY42rjejck8nsdQxZlXZ7pmyBUQ==" - }, - "node_modules/@emotion/unitless": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.4.tgz", - "integrity": "sha512-kBa+cDHOR9jpRJ+kcGMsysrls0leukrm68DmFQoMIWQcXdr2cZvyvypWuGYT7U+9kAExUE7+T7r6G3C3A6L8MQ==" - }, - "node_modules/@emotion/utils": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.2.tgz", - "integrity": "sha512-UHX2XklLl3sIaP6oiMmlVzT0J+2ATTVpf0dHQVyPJHTkOITvXfaSqnRk6mdDhV9pR8T/tHc3cex78IKXssmzrA==" - }, - "node_modules/@emotion/weak-memoize": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.3.tgz", - "integrity": "sha512-zVgvPwGK7c1aVdUVc9Qv7SqepOGRDrqCw7KZPSZziWGxSlbII3gmvGLPzLX4d0n0BMbamBacUrN22zOMyFFEkQ==" - }, - "node_modules/@types/body-parser": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.17.1.tgz", - "integrity": "sha512-RoX2EZjMiFMjZh9lmYrwgoP9RTpAjSHiJxdp4oidAQVO02T7HER3xj9UKue5534ULWeqVEkujhWcyvUce+d68w==", + "node_modules/@cloudflare/workerd-darwin-64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260401.1.tgz", + "integrity": "sha512-ZSmceM70jH6k+/62VkEcmMNzrpr4kSctkX5Lsgqv38KktfhPY/hsh75y1lRoPWS3H3kgMa4p2pUSlidZR1u2hw==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" } }, - "node_modules/@types/caseless": { - "version": "0.12.2", - "resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.2.tgz", - "integrity": "sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w==", - "dev": true - }, - "node_modules/@types/compression": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/compression/-/compression-1.0.1.tgz", - "integrity": "sha512-GuoIYzD70h+4JUqUabsm31FGqvpCYHGKcLtor7nQ/YvUyNX0o9SJZ9boFI5HjFfbOda5Oe/XOvNK6FES8Y/79w==", + "node_modules/@cloudflare/workerd-darwin-arm64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260401.1.tgz", + "integrity": "sha512-7UKWF+IUZ3NXMVPsDg8Cjg0r58b+uYlfvs5Yt8bvtU+geCtW4P2MxRHmRSEo8SryckXOJjb/b8tcncgCykFu8g==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@types/express": "*" + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" } }, - "node_modules/@types/connect": { - "version": "3.4.32", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.32.tgz", - "integrity": "sha512-4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg==", + "node_modules/@cloudflare/workerd-linux-64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260401.1.tgz", + "integrity": "sha512-MDWUH/0bvL/l9aauN8zEddyYOXId1OueqrUCXXENNJ95R/lSmF6OgGVuXaYhoIhxQkNiEJ/0NOlnVYj9mJq4dw==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@types/node": "*" + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" } }, - "node_modules/@types/cors": { - "version": "2.8.6", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.6.tgz", - "integrity": "sha512-invOmosX0DqbpA+cE2yoHGUlF/blyf7nB0OGYBBiH27crcVm5NmFaZkLP4Ta1hGaesckCi5lVLlydNJCxkTOSg==", + "node_modules/@cloudflare/workerd-linux-arm64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260401.1.tgz", + "integrity": "sha512-UgkzpMzVWM/bwbo3vjCTg2aoKfGcUhiEoQoDdo6RGWvbHRJyLVZ4VQCG9ZcISiztkiS2ICCoYOtPy6M/lV6Gcw==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@types/express": "*" + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" } }, - "node_modules/@types/dotenv": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@types/dotenv/-/dotenv-6.1.1.tgz", - "integrity": "sha512-ftQl3DtBvqHl9L16tpqqzA4YzCSXZfi7g8cQceTz5rOlYtk/IZbFjAv3mLOQlNIgOaylCQWQoBdDQHPgEBJPHg==", + "node_modules/@cloudflare/workerd-windows-64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260401.1.tgz", + "integrity": "sha512-HBLzcQF5iF4Qv20tQ++pG7xs3OsCnaIbc+GAi6fmhUKZhvmzvml/jwrQzLJ+MPm0cQo41K5OO/U3T4S8tvJetQ==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@types/node": "*" + "license": "Apache-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=16" } }, - "node_modules/@types/events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", - "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" - }, - "node_modules/@types/express": { - "version": "4.17.9", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.9.tgz", - "integrity": "sha512-SDzEIZInC4sivGIFY4Sz1GG6J9UObPwCInYJjko2jzOf/Imx/dlpume6Xxwj1ORL82tBbmN4cPDIDkLbWHk9hw==", + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "license": "MIT", "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "*", - "@types/qs": "*", - "@types/serve-static": "*" + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" } }, - "node_modules/@types/express-serve-static-core": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz", - "integrity": "sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==", + "node_modules/@emnapi/runtime": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz", + "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==", "dev": true, "license": "MIT", + "optional": true, "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "tslib": "^2.4.0" } }, - "node_modules/@types/file-saver": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/file-saver/-/file-saver-2.0.1.tgz", - "integrity": "sha512-g1QUuhYVVAamfCifK7oB7G3aIl4BbOyzDOqVyUfEr4tfBKrXfeH+M+Tg7HKCXSrbzxYdhyCP7z9WbKo0R2hBCw==", - "dev": true - }, - "node_modules/@types/fs-extra": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.0.0.tgz", - "integrity": "sha512-bCtL5v9zdbQW86yexOlXWTEGvLNqWxMFyi7gQA7Gcthbezr2cPSOb8SkESVKA937QD5cIwOFLDFt0MQoXOEr9Q==", + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz", + "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==", + "cpu": [ + "ppc64" + ], "dev": true, - "dependencies": { - "@types/node": "*" + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/glob": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", - "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", - "dependencies": { - "@types/events": "*", - "@types/minimatch": "*", - "@types/node": "*" + "node_modules/@esbuild/android-arm": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz", + "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/graphql": { - "version": "14.5.0", - "resolved": "https://registry.npmjs.org/@types/graphql/-/graphql-14.5.0.tgz", - "integrity": "sha512-MOkzsEp1Jk5bXuAsHsUi6BVv0zCO+7/2PTiZMXWDSsMXvNU6w/PLMQT2vHn8hy2i0JqojPz1Sz6rsFjHtsU0lA==", - "deprecated": "This is a stub types definition. graphql provides its own type definitions, so you do not need this installed.", - "peer": true, - "dependencies": { - "graphql": "*" + "node_modules/@esbuild/android-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz", + "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/helmet": { - "version": "0.0.44", - "resolved": "https://registry.npmjs.org/@types/helmet/-/helmet-0.0.44.tgz", - "integrity": "sha512-MPZ7HoCGLoajTZhy3hMWHvdiOMHCZJ51U2Bve25oujn3G7KdXy0G3iRS0dUpVtKOGMNcuBF6yLDRpNdm2JH0OQ==", + "node_modules/@esbuild/android-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz", + "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@types/express": "*" + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/history": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.3.tgz", - "integrity": "sha512-cS5owqtwzLN5kY+l+KgKdRJ/Cee8tlmQoGQuIE9tWnSmS3JMKzmxo2HIAk2wODMifGwO20d62xZQLYz+RLfXmw==", - "dev": true - }, - "node_modules/@types/lodash": { - "version": "4.14.138", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.138.tgz", - "integrity": "sha512-A4uJgHz4hakwNBdHNPdxOTkYmXNgmUAKLbXZ7PKGslgeV0Mb8P3BlbYfPovExek1qnod4pDfRbxuzcVs3dlFLg==", - "dev": true - }, - "node_modules/@types/md5": { - "version": "2.1.33", - "resolved": "https://registry.npmjs.org/@types/md5/-/md5-2.1.33.tgz", - "integrity": "sha512-8+X960EtKLoSblhauxLKy3zzotagjoj3Jt1Tx9oaxUdZEPIBl+mkrUz6PNKpzJgkrKSN9YgkWTA29c0KnLshmA==", + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz", + "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@types/node": "*" + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/mime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.1.tgz", - "integrity": "sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw==", - "dev": true - }, - "node_modules/@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" - }, - "node_modules/@types/morgan": { - "version": "1.7.37", - "resolved": "https://registry.npmjs.org/@types/morgan/-/morgan-1.7.37.tgz", - "integrity": "sha512-tIdEA10BcHcOumMmUiiYdw8lhiVVq62r0ghih5Xpp4WETkfsMiTUZL4w9jCI502BBOrKhFrAOGml9IeELvVaBA==", + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz", + "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@types/express": "*" + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/node": { - "version": "24.0.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.3.tgz", - "integrity": "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==", + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz", + "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==", + "cpu": [ + "arm64" + ], + "dev": true, "license": "MIT", - "peer": true, - "dependencies": { - "undici-types": "~7.8.0" + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/prop-types": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.1.tgz", - "integrity": "sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg==", - "dev": true - }, - "node_modules/@types/qs": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", - "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz", + "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT" + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } }, - "node_modules/@types/query-string": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@types/query-string/-/query-string-6.3.0.tgz", - "integrity": "sha512-yuIv/WRffRzL7cBW+sla4HwBZrEXRNf1MKQ5SklPEadth+BKbDxiVG8A3iISN5B3yC4EeSCzMZP8llHTcUhOzQ==", - "deprecated": "This is a stub types definition. query-string provides its own type definitions, so you do not need this installed.", + "node_modules/@esbuild/linux-arm": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz", + "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "query-string": "*" + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/range-parser": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", - "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==", - "dev": true - }, - "node_modules/@types/react": { - "version": "16.9.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.2.tgz", - "integrity": "sha512-jYP2LWwlh+FTqGd9v7ynUKZzjj98T8x7Yclz479QdRhHfuW9yQ+0jjnD31eXSXutmBpppj5PYNLYLRfnZJvcfg==", + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz", + "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@types/prop-types": "*", - "csstype": "^2.2.0" + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/react-copy-to-clipboard": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-4.2.6.tgz", - "integrity": "sha512-v4/yLsuPf8GSFuTy9fA1ABpL5uuy04vwW7qs+cfxSe1UU/M/KK95rF3N3GRseismoK9tA28SvpwVsAg/GWoF3A==", + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz", + "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "@types/react": "*" + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/react-dom": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.0.tgz", - "integrity": "sha512-OL2lk7LYGjxn4b0efW3Pvf2KBVP0y1v3wip1Bp7nA79NkOpElH98q3WdCEdDj93b2b0zaeBG9DvriuKjIK5xDA==", + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz", + "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==", + "cpu": [ + "loong64" + ], "dev": true, - "dependencies": { - "@types/react": "*" + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/request": { - "version": "2.48.3", - "resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.3.tgz", - "integrity": "sha512-3Wo2jNYwqgXcIz/rrq18AdOZUQB8cQ34CXZo+LUwPJNpvRAL86+Kc2wwI8mqpz9Cr1V+enIox5v+WZhy/p3h8w==", + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz", + "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==", + "cpu": [ + "mips64el" + ], "dev": true, - "dependencies": { - "@types/caseless": "*", - "@types/node": "*", - "@types/tough-cookie": "*", - "form-data": "^2.5.0" + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/request-promise-native": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/@types/request-promise-native/-/request-promise-native-1.0.16.tgz", - "integrity": "sha512-gbLf6cg1XGBU8BObOgs5VkCQo5JFz2GstgZjyE4FRbig/jiCEdiynu2fCzJlw3qYPuoj59spKnvuRLN4PsMvhA==", + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz", + "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==", + "cpu": [ + "ppc64" + ], "dev": true, - "dependencies": { - "@types/request": "*" + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/request/node_modules/form-data": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz", - "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz", + "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==", + "cpu": [ + "riscv64" + ], "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.12" + "node": ">=18" } }, - "node_modules/@types/semver": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-6.2.1.tgz", - "integrity": "sha512-+beqKQOh9PYxuHvijhVl+tIHvT6tuwOrE9m14zd+MT2A38KoKZhh7pYJ0SNleLtwDsiIxHDsIk9bv01oOxvSvA==" - }, - "node_modules/@types/send": { - "version": "0.17.5", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.5.tgz", - "integrity": "sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==", + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz", + "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==", + "cpu": [ + "s390x" + ], "dev": true, "license": "MIT", - "dependencies": { - "@types/mime": "^1", - "@types/node": "*" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@types/send/node_modules/@types/mime": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "node_modules/@esbuild/linux-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz", + "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT" + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } }, - "node_modules/@types/serve-static": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.3.tgz", - "integrity": "sha512-oprSwp094zOglVrXdlo/4bAHtKTAxX6VT8FOZlBKrmyLbNvE1zxZyJ6yikMVtHIvwP45+ZQGJn+FdXGKTozq0g==", + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz", + "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@types/express-serve-static-core": "*", - "@types/mime": "*" - } - }, - "node_modules/@types/tough-cookie": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-2.3.5.tgz", - "integrity": "sha512-SCcK7mvGi3+ZNz833RRjFIxrn4gI1PPR3NtuIS+6vMkvmsGjosqTJwRt5bAEFLRz+wtJMWv8+uOnZf2hi2QXTg==", - "dev": true - }, - "node_modules/@types/validator": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.0.0.tgz", - "integrity": "sha512-WAy5txG7aFX8Vw3sloEKp5p/t/Xt8jD3GRD9DacnFv6Vo8ubudAsRTXgxpQwU0mpzY/H8U4db3roDuCMjShBmw==" - }, - "node_modules/@types/window-or-global": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/window-or-global/-/window-or-global-1.0.0.tgz", - "integrity": "sha1-tLyEgMN/5LrCNV96ksn/zYSCLJQ=", - "dev": true - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "dependencies": { - "event-target-shim": "^5.0.0" - }, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">=6.5" + "node": ">=18" } }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz", + "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">= 0.6" + "node": ">=18" } }, - "node_modules/acorn": { - "version": "5.7.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", - "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", - "bin": { - "acorn": "bin/acorn" - }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz", + "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz", - "integrity": "sha512-JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw==", - "dependencies": { - "acorn": "^5.0.3" + "node": ">=18" } }, - "node_modules/agent-base": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", - "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "dependencies": { - "es6-promisify": "^5.0.0" - }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz", + "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/ajax-request": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/ajax-request/-/ajax-request-1.2.3.tgz", - "integrity": "sha1-mfy+wdbSeS+F+pSVNTMr0U9fN5A=", - "dependencies": { - "file-system": "^2.1.1", - "utils-extend": "^1.0.7" + "node": ">=18" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz", + "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" } }, - "node_modules/ansi": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz", - "integrity": "sha1-DELU+xcWDVqa8eSEus4cZpIsGyE=" - }, - "node_modules/ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz", + "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "dependencies": { - "micromatch": "^2.1.5", - "normalize-path": "^2.0.0" + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz", + "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" } }, - "node_modules/anymatch/node_modules/arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dependencies": { - "arr-flatten": "^1.0.1" - }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz", + "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/anymatch/node_modules/array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "node_modules/@esbuild/win32-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz", + "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/anymatch/node_modules/braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "node_modules/@grpc/grpc-js": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.14.3.tgz", + "integrity": "sha512-Iq8QQQ/7X3Sac15oB6p0FmUg/klxQvXLeileoqrTRGJYLV+/9tubbr9ipz0GKHjmXVsgFPo/+W+2cA8eNcR+XA==", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" + "@grpc/proto-loader": "^0.8.0", + "@js-sdsl/ordered-map": "^4.4.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=12.10.0" } }, - "node_modules/anymatch/node_modules/expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "node_modules/@grpc/grpc-js/node_modules/@grpc/proto-loader": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.8.0.tgz", + "integrity": "sha512-rc1hOQtjIWGxcxpb9aHAfLpIctjEnsDehj0DAiVfBlmT84uvR0uUtN2hEi/ecvWVjXUGf5qPF4qEgiLOx1YIMQ==", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "is-posix-bracket": "^0.1.0" + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.5.3", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/anymatch/node_modules/extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "node_modules/@grpc/proto-loader": { + "version": "0.7.15", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.15.tgz", + "integrity": "sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "is-extglob": "^1.0.0" + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.5", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/anymatch/node_modules/is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/anymatch/node_modules/is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dependencies": { - "is-extglob": "^1.0.0" - }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch/node_modules/micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dependencies": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" + "funding": { + "url": "https://opencollective.com/libvips" }, - "engines": { - "node": ">=0.10.0" + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" } }, - "node_modules/app-root-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-2.1.0.tgz", - "integrity": "sha1-mL9lmTJ+zqGZMJhm6BQDaP0uZGo=", + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 4.0.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" } }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "engines": { - "node": ">=0.10.0" + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "engines": { - "node": ">=0.10.0" + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "engines": { - "node": ">=0.10.0" + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "license": "MIT" + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "engines": { - "node": ">=0.10.0" + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "dependencies": { - "safer-buffer": "~2.1.0" + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "engines": { - "node": ">=0.8" + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "engines": { - "node": ">=0.10.0" + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/async": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", - "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==" - }, - "node_modules/async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "bin": { - "atob": "bin/atob.js" - }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 4.5.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "node_modules/babel-plugin-emotion": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.17.tgz", - "integrity": "sha512-KNuBadotqYWpQexHhHOu7M9EV1j2c+Oh/JJqBfEQDusD6mnORsCZKHkl+xYwK82CPQ/23wRrsBIEYnKjtbMQJw==", - "dependencies": { - "@babel/helper-module-imports": "^7.0.0", - "@emotion/hash": "0.7.2", - "@emotion/memoize": "0.7.2", - "@emotion/serialize": "^0.11.10", - "babel-plugin-macros": "^2.0.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^1.0.5", - "find-root": "^1.1.0", - "source-map": "^0.5.7" - } - }, - "node_modules/babel-plugin-macros": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz", - "integrity": "sha512-6W2nwiXme6j1n2erPOnmRiWfObUhWH7Qw1LMi9XZy8cj+KtESu3T6asZvtk5bMQQjX8te35o7CFueiSdL/2NmQ==", - "dependencies": { - "@babel/runtime": "^7.4.2", - "cosmiconfig": "^5.2.0", - "resolve": "^1.10.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" } }, - "node_modules/babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" } }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dependencies": { - "is-descriptor": "^1.0.0" - }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" } }, - "node_modules/base/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dependencies": { - "kind-of": "^6.0.0" - }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" } }, - "node_modules/base/node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dependencies": { - "kind-of": "^6.0.0" - }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" } }, - "node_modules/base/node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" } }, - "node_modules/base64-img": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/base64-img/-/base64-img-1.0.4.tgz", - "integrity": "sha1-PiLVXWx0okVT2EDSsbwSp9sHjTU=", - "dependencies": { - "ajax-request": "^1.2.0", - "file-system": "^2.1.0" + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" } }, - "node_modules/base64-js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", - "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" - }, - "node_modules/basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, "dependencies": { - "safe-buffer": "5.1.2" + "@emnapi/runtime": "^1.7.0" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/bent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/bent/-/bent-6.1.0.tgz", - "integrity": "sha512-D6NaNcLrcIovZOzwm9LoV5nf0yKeqWVad2ec74T3esh8CXHzRtZM70z5prUtXM+H9kA6+0RRDfBDaxy9iScKig==", - "dependencies": { - "bytesish": "^0.3.1", - "caseless": "~0.12.0", - "is-stream": "^2.0.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/bent/node_modules/is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=8" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/bignumber.js": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz", - "integrity": "sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ==", + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": "*" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/binary-extensions": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.0.tgz", - "integrity": "sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw==", + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/body-parser": { - "version": "1.20.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", - "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.13.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/body-parser/node_modules/bytes": { + "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=6.0.0" } }, - "node_modules/body-parser/node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "license": "MIT", "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" } }, - "node_modules/body-parser/node_modules/qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.6" - }, - "engines": { - "node": ">=0.6" - }, + "node_modules/@js-sdsl/ordered-map": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz", + "integrity": "sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==", + "dev": true, + "license": "MIT", "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" } }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", - "dev": true - }, - "node_modules/bowser": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.9.0.tgz", - "integrity": "sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA==", + "node_modules/@polka/url": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-0.5.0.tgz", + "integrity": "sha512-oZLYFEAzUKyi3SKnXvj32ZCEGH6RDnao7COuCVhDydMS9NrCSVXhM79VaKyP5+Zc33m0QXEd2DN3UkU7OsHcfw==", + "dev": true, "license": "MIT" }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/@poppinss/colors": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.6.tgz", + "integrity": "sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==", + "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "kleur": "^4.1.5" } }, - "node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "node_modules/@poppinss/dumper": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.5.tgz", + "integrity": "sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==", + "dev": true, + "license": "MIT", "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" + "@poppinss/colors": "^4.1.5", + "@sindresorhus/is": "^7.0.2", + "supports-color": "^10.0.0" } }, - "node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } + "node_modules/@poppinss/exception": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.3.tgz", + "integrity": "sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==", + "dev": true, + "license": "MIT" }, - "node_modules/buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "dev": true, + "license": "BSD-3-Clause" }, - "node_modules/builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", "dev": true, - "engines": { - "node": ">=0.10.0" - } + "license": "BSD-3-Clause" }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "engines": { - "node": ">= 0.8" - } + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "dev": true, + "license": "BSD-3-Clause" }, - "node_modules/bytesish": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/bytesish/-/bytesish-0.3.3.tgz", - "integrity": "sha512-Q5eMmjkF3PnHDA0k/34/aGodPWxYL/2bAB1j17JQXeejbGsWaJLpKJqLCcpe+e37Oqg+UZig0kF5vgslOOyUJQ==" + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "dev": true, + "license": "BSD-3-Clause" }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" } }, - "node_modules/call-bind-apply-helpers": { + "node_modules/@protobufjs/float": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@redwoodjs/agent-ci": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@redwoodjs/agent-ci/-/agent-ci-0.6.0.tgz", + "integrity": "sha512-sZDtLNPA5knljlm/XxqdKtQH48XlrZEv5nk8vORL4FkklRdzULx81QjsVWpixBNrK/qYZt7y1QMw/ANl7lqxlg==", + "dev": true, + "license": "FSL-1.1-MIT", "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2" + "@actions/workflow-parser": "0.3.43", + "dockerode": "^4.0.2", + "dtu-github-actions": "0.6.0", + "log-update": "^7.2.0", + "minimatch": "^10.2.1", + "yaml": "^2.8.2" + }, + "bin": { + "agent-ci": "dist/cli.js" }, "engines": { - "node": ">= 0.4" + "node": ">=22" } }, - "node_modules/call-bound": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", - "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "node_modules/@sindresorhus/is": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.2.0.tgz", + "integrity": "sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==", + "dev": true, "license": "MIT", - "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "get-intrinsic": "^1.3.0" - }, "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "node_modules/@speed-highlight/core": { + "version": "1.2.15", + "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.15.tgz", + "integrity": "sha512-BMq1K3DsElxDWawkX6eLg9+CKJrTVGCBAWVuHXVUV2u0s2711qiChLSId6ikYPfxhdYocLNt3wWwSvDiTvFabw==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/@types/node": { + "version": "24.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.3.tgz", + "integrity": "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.8.0" + } + }, + "node_modules/ansi-escapes": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz", + "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", + "dev": true, + "license": "MIT", "dependencies": { - "callsites": "^2.0.0" + "environment": "^1.0.0" }, "engines": { - "node": ">=4" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", - "dependencies": { - "caller-callsite": "^2.0.0" + "node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.10.0" + } + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": "~2.1.0" } }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=6" + "node": "18 || 20 || >=22" } }, - "node_modules/camelize": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", - "integrity": "sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==", + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT" }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "node_modules/chain-able": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/chain-able/-/chain-able-1.0.1.tgz", - "integrity": "sha1-tIrJvcGPIZLscwq8ZmCfkKq1YF8=" + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tweetnacl": "^0.14.3" + } }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/chalk/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/blake3-wasm": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz", + "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==", + "dev": true, + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz", + "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==", + "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" + "bytes": "^3.1.2", + "content-type": "^1.0.5", + "debug": "^4.4.3", + "http-errors": "^2.0.0", + "iconv-lite": "^0.7.0", + "on-finished": "^2.4.1", + "qs": "^6.14.1", + "raw-body": "^3.0.1", + "type-is": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/chalk/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/brace-expansion": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz", + "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==", + "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "balanced-match": "^4.0.2" }, "engines": { - "node": ">=4" + "node": "18 || 20 || >=22" } }, - "node_modules/chardet": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", - "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=" + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } }, - "node_modules/charenc": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", + "node_modules/buildcheck": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.7.tgz", + "integrity": "sha512-lHblz4ahamxpTmnsk+MNTRWsjYKv965MwOrSJyeD588rR3Jcu7swE+0wN5F+PbL5cjgu/9ObkhfzEPuofEMwLA==", + "dev": true, + "optional": true, "engines": { - "node": "*" + "node": ">=10.0.0" } }, - "node_modules/cheerio": { - "version": "1.0.0-rc.3", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz", - "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==", + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, - "dependencies": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.1", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash": "^4.15.0", - "parse5": "^3.0.1" - }, + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, - "node_modules/chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", "dependencies": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" }, - "optionalDependencies": { - "fsevents": "^1.0.0" - } - }, - "node_modules/chokidar/node_modules/is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/chokidar/node_modules/is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", "dependencies": { - "is-extglob": "^1.0.0" + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true, + "license": "ISC" + }, + "node_modules/cli-cursor": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", + "dev": true, + "license": "MIT", "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" + "restore-cursor": "^5.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", "dependencies": { - "is-descriptor": "^0.1.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/class-validator": { - "version": "0.12.2", - "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.12.2.tgz", - "integrity": "sha512-TDzPzp8BmpsbPhQpccB3jMUE/3pK0TyqamrK0kcx+ZeFytMA+O6q87JZZGObHHnoo9GM8vl/JppIyKWeEA/EVw==", - "dependencies": { - "@types/validator": "13.0.0", - "google-libphonenumber": "^3.2.8", - "tslib": ">=1.9.0", - "validator": "13.0.0" + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/clean-css": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", - "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", "dependencies": { - "source-map": "~0.6.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 4.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/clean-css/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", "dependencies": { - "restore-cursor": "^2.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=" - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/color": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz", - "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==", + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^1.9.1", - "color-string": "^1.5.2" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", "dependencies": { - "color-name": "1.1.3" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "node_modules/color-string": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", - "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/colorspace": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz", - "integrity": "sha512-vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ==", - "dependencies": { - "color": "3.0.x", - "text-hex": "1.0.x" - } - }, - "node_modules/combined-stream": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", - "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", - "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", - "dev": true - }, - "node_modules/component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" - }, - "node_modules/compressible": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.16.tgz", - "integrity": "sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA==", - "dependencies": { - "mime-db": ">= 1.38.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "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/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/compute-scroll-into-view": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.11.tgz", - "integrity": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "license": "MIT", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-disposition/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/content-security-policy-builder": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz", - "integrity": "sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" }, "node_modules/content-type": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, - "node_modules/convert-source-map": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", - "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", - "dependencies": { - "safe-buffer": "~5.1.1" - } - }, "node_modules/cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "dev": true, "license": "MIT", "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "license": "MIT" - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/copy-to-clipboard": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.0.8.tgz", - "integrity": "sha512-c3GdeY8qxCHGezVb1EFQfHYK/8NZRemgcTIzPq7PuxjHAf/raKibn2QdhHPb/y6q74PMgH6yizaDZlRmw6QyKw==", - "dependencies": { - "toggle-selection": "^1.0.3" - } - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "dependencies": { - "object-assign": "^4", - "vary": "^1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "dependencies": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" + "node": ">=18" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cross-fetch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.2.2.tgz", - "integrity": "sha1-pH/09/xxLauo9qaVoRyUhEDUVyM=", - "dependencies": { - "node-fetch": "2.1.2", - "whatwg-fetch": "2.0.4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "node_modules/cpu-features": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.10.tgz", + "integrity": "sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==", "dev": true, - "license": "MIT", + "hasInstallScript": true, + "optional": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "buildcheck": "~0.0.6", + "nan": "^2.19.0" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/crypt": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", - "engines": { - "node": "*" - } - }, - "node_modules/css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "dev": true, - "dependencies": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" + "node": ">=10.0.0" } }, - "node_modules/css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "node_modules/cronstrue": { + "version": "2.59.0", + "resolved": "https://registry.npmjs.org/cronstrue/-/cronstrue-2.59.0.tgz", + "integrity": "sha512-YKGmAy84hKH+hHIIER07VCAHf9u0Ldelx1uU6EBxsRPDXIA1m5fsKmJfyC3xBhw6cVC/1i83VdbL4PvepTrt8A==", "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/csstype": { - "version": "2.6.6", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.6.tgz", - "integrity": "sha512-RpFbQGUE74iyPgvr46U9t1xoQBM8T4BL8SxrN66Le2xYAPSaDJJKeztV3awugusb3g3G9iL8StmkBBXhcbbXhg==" - }, - "node_modules/csv-parse": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.4.6.tgz", - "integrity": "sha512-VisC5TBBhOF+70zjrF9FOiqI2LZOhXK/vAWlOrqyqz3lLa+P8jzJ7L/sg90MHmkSY/brAXWwrmGSZR0tM5yi4g==" - }, - "node_modules/csv-stringify": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-5.3.3.tgz", - "integrity": "sha512-q8Qj+/lN74LRmG7Mg0LauE5WcnJOD5MEGe1gI57IYJCB61KWuEbAFHm1uIPDkI26aqElyBB57SlE2GGwq2EY5A==" - }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/dasherize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz", - "integrity": "sha512-APql/TZ6FdLEpf2z7/X2a2zyqK8juYtqaSVqxw9mYoQ64CXkfU15AeLh8pUszT8+fnYjgm6t0aIYpWKJbnLkuA==", - "license": "MIT" - }, - "node_modules/date-range-array": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/date-range-array/-/date-range-array-2.1.0.tgz", - "integrity": "sha512-RG4dkqd+ASDHyNTLz9kcSxgqe9xgoxd9hSOS0vIKTjUDefYVYCaY945c5Y8sirW0t+72fREuxDifdeC7FHPSlQ==", - "dependencies": { - "tape": "^4.0.0" + "license": "MIT", + "bin": { + "cronstrue": "bin/cli.js" } }, "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" - }, - "node_modules/deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" - }, - "node_modules/define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dependencies": { - "object-keys": "^1.0.12" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", "dependencies": { - "kind-of": "^6.0.0" + "ms": "^2.1.3" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "node": ">=6.0" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "engines": { - "node": ">=0.4.0" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">=0.3.1" + "node": ">=8" } }, - "node_modules/dom-serializer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", - "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "node_modules/docker-modem": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.7.tgz", + "integrity": "sha512-XJgGhoR/CLpqshm4d3L7rzH6t8NgDFUIIpztYlLHIApeJjMZKYJMz2zxPsYxnejq5h3ELYSw/RBsi3t5h7gNTA==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "domelementtype": "^1.3.0", - "entities": "^1.1.1" + "debug": "^4.1.1", + "readable-stream": "^3.5.0", + "split-ca": "^1.0.1", + "ssh2": "^1.15.0" + }, + "engines": { + "node": ">= 8.0" } }, - "node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "node_modules/domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "node_modules/dockerode": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.10.tgz", + "integrity": "sha512-8L/P9JynLBiG7/coiA4FlQXegHltRqS0a+KqI44P1zgQh8QLHTg7FKOwhkBgSJwZTeHsq30WRoVFLuwkfK0YFg==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "domelementtype": "1" + "@balena/dockerignore": "^1.0.2", + "@grpc/grpc-js": "^1.11.1", + "@grpc/proto-loader": "^0.7.13", + "docker-modem": "^5.0.7", + "protobufjs": "^7.3.2", + "tar-fs": "^2.1.4", + "uuid": "^10.0.0" + }, + "engines": { + "node": ">= 8.0" } }, - "node_modules/domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "node_modules/dtu-github-actions": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/dtu-github-actions/-/dtu-github-actions-0.6.0.tgz", + "integrity": "sha512-DZF1vpph3/3ZBa57tBLbkVw4Q35AfHGp481Gu8AlxJm4Q6BSfZgEQE0fUW5uFzBoalj28EmXb8urn8fBo6Ro/g==", "dev": true, + "license": "FSL-1.1-MIT", "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/dont-sniff-mimetype": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz", - "integrity": "sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/dotenv": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.1.0.tgz", - "integrity": "sha512-GUE3gqcDCaMltj2++g6bRQ5rBJWtkWTmqmD0fo1RnnMuUqHNCt2oTPeDnS9n6fKYvlhn7AeBkb38lymBtWBQdA==", + "body-parser": "^2.2.2", + "jsonc-parser": "^3.3.1", + "minimatch": "^10.2.4", + "polka": "^0.5.2", + "zod": "^3.24.1" + }, "engines": { - "node": ">=8" + "node": ">=22" } }, "node_modules/dunder-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.1", @@ -2046,87 +1964,58 @@ "node": ">= 0.4" } }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "dependencies": { - "safe-buffer": "^5.0.1" - } - }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true, + "license": "MIT" }, - "node_modules/enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" }, - "node_modules/encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "node_modules/end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dependencies": { - "is-arrayish": "^0.2.1" + "once": "^1.4.0" } }, - "node_modules/error-ex/node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - }, - "node_modules/es-abstract": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", - "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", - "dependencies": { - "es-to-primitive": "^1.2.0", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "is-callable": "^1.1.4", - "is-regex": "^1.0.4", - "object-keys": "^1.0.12" - }, + "node_modules/environment": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", + "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", + "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/error-stack-parser-es": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz", + "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" } }, "node_modules/es-define-property": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -2136,6 +2025,7 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" @@ -2145,6 +2035,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0" @@ -2153,423 +2044,339 @@ "node": ">= 0.4" } }, - "node_modules/es-to-primitive": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", - "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es6-promise": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" - }, - "node_modules/es6-promisify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", - "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", - "dependencies": { - "es6-promise": "^4.0.3" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "license": "MIT" - }, - "node_modules/escape-regexp-component": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/escape-regexp-component/-/escape-regexp-component-1.0.2.tgz", - "integrity": "sha1-nGO20LJf8qiMOtvRjFthrMO5+qI=" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/escodegen": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.0.tgz", - "integrity": "sha512-IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw==", - "dependencies": { - "esprima": "^3.1.3", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, + "node_modules/esbuild": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz", + "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" + "esbuild": "bin/esbuild" }, "engines": { - "node": ">=4.0" + "node": ">=18" }, "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true, + "@esbuild/aix-ppc64": "0.27.3", + "@esbuild/android-arm": "0.27.3", + "@esbuild/android-arm64": "0.27.3", + "@esbuild/android-x64": "0.27.3", + "@esbuild/darwin-arm64": "0.27.3", + "@esbuild/darwin-x64": "0.27.3", + "@esbuild/freebsd-arm64": "0.27.3", + "@esbuild/freebsd-x64": "0.27.3", + "@esbuild/linux-arm": "0.27.3", + "@esbuild/linux-arm64": "0.27.3", + "@esbuild/linux-ia32": "0.27.3", + "@esbuild/linux-loong64": "0.27.3", + "@esbuild/linux-mips64el": "0.27.3", + "@esbuild/linux-ppc64": "0.27.3", + "@esbuild/linux-riscv64": "0.27.3", + "@esbuild/linux-s390x": "0.27.3", + "@esbuild/linux-x64": "0.27.3", + "@esbuild/netbsd-arm64": "0.27.3", + "@esbuild/netbsd-x64": "0.27.3", + "@esbuild/openbsd-arm64": "0.27.3", + "@esbuild/openbsd-x64": "0.27.3", + "@esbuild/openharmony-arm64": "0.27.3", + "@esbuild/sunos-x64": "0.27.3", + "@esbuild/win32-arm64": "0.27.3", + "@esbuild/win32-ia32": "0.27.3", + "@esbuild/win32-x64": "0.27.3" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/eslint-plugin-prettier": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz", - "integrity": "sha512-CStQYJgALoQBw3FsBzH0VOVDRnJ/ZimUlpLm226U8qgqYJfPOY/CPK6wyRInMxh73HSKg5wyRwdS4BVYYHwokA==", + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true, - "dependencies": { - "fast-diff": "^1.1.1", - "jest-docblock": "^21.0.0" - }, - "engines": { - "node": ">=4.0.0" - }, - "peerDependencies": { - "prettier": ">= 0.11.0" - } + "license": "MIT" }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=4" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "engines": { - "node": ">=0.10.0" + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", "engines": { - "node": ">=0.10.0" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "node_modules/get-east-asian-width": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.5.0.tgz", + "integrity": "sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==", + "dev": true, "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/event-stream": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", - "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, + "license": "MIT", "dependencies": { - "duplexer": "~0.1.1", - "from": "~0", - "map-stream": "~0.1.0", - "pause-stream": "0.0.11", - "split": "0.3", - "stream-combiner": "~0.0.4", - "through": "~2.3.1" - } - }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/exec-sh": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz", - "integrity": "sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==", - "dependencies": { - "merge": "^1.2.0" - } - }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dependencies": { - "is-descriptor": "^0.1.0" + "node": ">= 0.4" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", "dependencies": { - "is-extendable": "^0.1.0" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "node_modules/glob": { + "version": "13.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz", + "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==", + "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "fill-range": "^2.1.0" + "minimatch": "^10.2.2", + "minipass": "^7.1.3", + "path-scurry": "^2.0.2" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-range/node_modules/fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", - "dependencies": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" + "node": "18 || 20 || >=22" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/expand-range/node_modules/is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "dependencies": { - "kind-of": "^3.0.2" - }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-range/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dependencies": { - "isarray": "1.0.0" + "node": ">= 0.4" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expand-range/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" - }, + "node_modules/graphql": { + "version": "16.13.2", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.13.2.tgz", + "integrity": "sha512-5bJ+nf/UCpAjHM8i06fl7eLyVC9iuNAjm9qzkiu2ZGhM0VscSvS6WDPfAwkdkBuoXGM9FJSbKl6wylMwP9Ktig==", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" } }, - "node_modules/expeditious": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/expeditious/-/expeditious-1.0.1.tgz", - "integrity": "sha1-mVt6x2dBpmApiRRJ1YZ7zMM4sw8=", + "node_modules/graphql-depth-limit": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/graphql-depth-limit/-/graphql-depth-limit-1.1.0.tgz", + "integrity": "sha512-+3B2BaG8qQ8E18kzk9yiSdAa75i/hnnOwgSeAxVJctGQPvmeiLtqKOYF6HETCyRjiF7Xfsyal0HbLlxCQkgkrw==", + "license": "MIT", "dependencies": { - "debug": "~2.6.9", - "safejson": "~1.0.1", - "verror": "~1.6.1" + "arrify": "^1.0.1" }, "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/expeditious-engine-memory": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/expeditious-engine-memory/-/expeditious-engine-memory-0.2.1.tgz", - "integrity": "sha1-zh2cvfLfmn25HNkZE8KLpTeWXRE=", - "dependencies": { - "expeditious": "~1.0.0" + "node": ">=6.0.0" + }, + "peerDependencies": { + "graphql": "*" } }, - "node_modules/expeditious/node_modules/extsprintf": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz", - "integrity": "sha1-WtlGwi9bMrp/jNdCZxHG6KP8JSk=", - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/expeditious/node_modules/verror": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.6.1.tgz", - "integrity": "sha1-I2QCBgZIwhnRFiwkUdHDQaDhyc4=", - "engines": [ - "node >=0.6.0" + "node_modules/graphql-http": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.22.4.tgz", + "integrity": "sha512-OC3ucK988teMf+Ak/O+ZJ0N2ukcgrEurypp8ePyJFWq83VzwRAmHxxr+XxrMpxO/FIwI4a7m/Fzv3tWGJv0wPA==", + "license": "MIT", + "workspaces": [ + "implementations/**/*" ], - "dependencies": { - "core-util-is": "1.0.2", - "extsprintf": "1.2.0" + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "graphql": ">=0.11 <=16" } }, - "node_modules/express": { - "version": "4.21.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", - "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, "license": "MIT", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.3", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.7.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.3.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.3", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.12", - "proxy-addr": "~2.0.7", - "qs": "6.13.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.19.0", - "serve-static": "1.16.2", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" + "engines": { + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/express" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/express-expeditious": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/express-expeditious/-/express-expeditious-5.1.1.tgz", - "integrity": "sha512-4akMwHm8TVRYzm/HQ520fJxqT1NIEb0J+CNzJ18l1kXt0GSnIHsRt2WpoI+8jdD/g3tf/Ggz+vbW6rwronJdvA==", + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", "dependencies": { - "debug": "~4.1.0", - "expeditious": "~1.0.1", - "expeditious-engine-memory": "~0.2.0", - "on-finished": "~2.3.0", - "timestring": "~5.0.0", - "verror": "~1.10.0" + "function-bind": "^1.1.2" }, "engines": { - "node": ">=6" - } - }, - "node_modules/express-expeditious/node_modules/debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", - "dependencies": { - "ms": "^2.1.1" + "node": ">= 0.4" } }, - "node_modules/express-expeditious/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/express/node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "dev": true, "license": "MIT", "dependencies": { - "ee-first": "1.1.1" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/express/node_modules/qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "license": "BSD-3-Clause", + "node_modules/ical-generator": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/ical-generator/-/ical-generator-10.1.0.tgz", + "integrity": "sha512-VgWzox2svupw4HoZo9Ym0pmj50Cr7CO+By/TraNUVTXQL5Qh0p13iGNzizhXd/KDuzOHUSSXwUWIMZmBHQU65Q==", + "license": "MIT", + "engines": { + "node": "20 || 22 || >=24" + }, + "peerDependencies": { + "@touch4it/ical-timezones": ">=1.6.0", + "@types/luxon": ">= 1.26.0", + "@types/mocha": ">= 8.2.1", + "dayjs": ">= 1.10.0", + "luxon": ">= 1.26.0", + "moment": ">= 2.29.0", + "moment-timezone": ">= 0.5.33", + "rrule": ">= 2.6.8" + }, + "peerDependenciesMeta": { + "@touch4it/ical-timezones": { + "optional": true + }, + "@types/luxon": { + "optional": true + }, + "@types/mocha": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "dayjs": { + "optional": true + }, + "luxon": { + "optional": true + }, + "moment": { + "optional": true + }, + "moment-timezone": { + "optional": true + }, + "rrule": { + "optional": true + } + } + }, + "node_modules/iconv-lite": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz", + "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==", + "dev": true, + "license": "MIT", "dependencies": { - "side-channel": "^1.0.6" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=0.6" + "node": ">=0.10.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/express/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, "funding": [ { "type": "github", @@ -2584,254 +2391,262 @@ "url": "https://feross.org/support" } ], - "license": "MIT" + "license": "BSD-3-Clause" }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" }, - "node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "node_modules/is-fullwidth-code-point": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz", + "integrity": "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==", + "dev": true, + "license": "MIT", "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "get-east-asian-width": "^1.3.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/extend-shallow/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dependencies": { - "is-plain-object": "^2.0.4" - }, + "node_modules/jsonc-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/external-editor": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", - "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-update": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-7.2.0.tgz", + "integrity": "sha512-iLs7dGSyjZiUgvrUvuD3FndAxVJk+TywBkkkwUSm9HdYoskJalWg5qVsEiXeufPvRVPbCUmNQewg798rx+sPXg==", + "dev": true, + "license": "MIT", "dependencies": { - "chardet": "^0.4.0", - "iconv-lite": "^0.4.17", - "tmp": "^0.0.33" + "ansi-escapes": "^7.3.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^8.0.0", + "strip-ansi": "^7.2.0", + "wrap-ansi": "^10.0.0" }, "engines": { - "node": ">=0.12" + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, + "node_modules/long": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", + "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/lru-cache": { + "version": "11.2.7", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.7.tgz", + "integrity": "sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==", + "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": ">=0.10.0" + "node": "20 || >=22" } }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "node_modules/matchit": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/matchit/-/matchit-1.1.0.tgz", + "integrity": "sha512-+nGYoOlfHmxe5BW5tE0EMJppXEwdSf8uBA1GTZC7Q77kbT35+VKLYJMzVNWCHSsga1ps1tPYFtFyvxvKzWVmMA==", + "dev": true, + "license": "MIT", "dependencies": { - "is-descriptor": "^1.0.0" + "@arr/every": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dependencies": { - "is-extendable": "^0.1.0" - }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/extglob/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dependencies": { - "kind-of": "^6.0.0" - }, + "node_modules/media-typer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/extglob/node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dependencies": { - "kind-of": "^6.0.0" - }, + "node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.6" } }, - "node_modules/extglob/node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "node_modules/mime-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "dev": true, + "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "mime-db": "^1.54.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-diff": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", - "dev": true - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - }, - "node_modules/fast-safe-stringify": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", - "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" - }, - "node_modules/fast-text-encoding": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.0.tgz", - "integrity": "sha512-R9bHCvweUxxwkDwhjav5vxpFvdPGlVngtqmx4pIZfSUhM/Q4NiIUHB456BAf+Q1Nwu3HEZYONtu+Rya+af4jiQ==" - }, - "node_modules/feature-policy": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz", - "integrity": "sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==", + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "dev": true, "license": "MIT", "engines": { - "node": ">=4.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fecha": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz", - "integrity": "sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==" - }, - "node_modules/file-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/file-match/-/file-match-1.0.2.tgz", - "integrity": "sha1-ycrSZdLIrfOoFHWw30dYWQafrvc=", + "node_modules/miniflare": { + "version": "4.20260401.0", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20260401.0.tgz", + "integrity": "sha512-lngHPzZFN9sxYG/mhzvnWiBMNVAN5MsO/7g32ttJ07rymtiK/ZBalODTKb8Od+BQdlU5DOR4CjVt9NydjnUyYg==", + "dev": true, + "license": "MIT", "dependencies": { - "utils-extend": "^1.0.6" + "@cspotcode/source-map-support": "0.8.1", + "sharp": "^0.34.5", + "undici": "7.24.4", + "workerd": "1.20260401.1", + "ws": "8.18.0", + "youch": "4.1.0-beta.10" + }, + "bin": { + "miniflare": "bootstrap.js" + }, + "engines": { + "node": ">=18.0.0" } }, - "node_modules/file-saver": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.2.tgz", - "integrity": "sha512-Wz3c3XQ5xroCxd1G8b7yL0Ehkf0TC9oYC6buPFkNnU9EnaPlifeAFCyCh+iewXTyFRcg0a6j3J7FmJsIhlhBdw==" - }, - "node_modules/file-system": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/file-system/-/file-system-2.2.2.tgz", - "integrity": "sha1-fWWDPjojR9zZVqgTxncVPtPt2Yc=", + "node_modules/minimatch": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", + "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "file-match": "^1.0.1", - "utils-extend": "^1.0.4" - } - }, - "node_modules/filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "brace-expansion": "^5.0.5" + }, "engines": { - "node": ">=0.10.0" + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, + "node_modules/minipass": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", + "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": ">=0.10.0" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dependencies": { - "is-extendable": "^0.1.0" - }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true, + "license": "MIT" + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/finalhandler": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", - "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nan": { + "version": "2.26.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.26.2.tgz", + "integrity": "sha512-0tTvBTYkt3tdGw22nrAy50x7gpbGCCFH3AFcyS5WiUu7Eu4vWlri1woE6qHBSfy11vksDqkiwjOnlR7WV8G1Hw==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/finalhandler/node_modules/on-finished": { + "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, "license": "MIT", "dependencies": { "ee-first": "1.1.1" @@ -2840,11006 +2655,2864 @@ "node": ">= 0.8" } }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "node_modules/flatmap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/flatmap/-/flatmap-0.0.3.tgz", - "integrity": "sha1-Hxik2TgVLUlZZfnJWNkjqy3WabQ=", - "dev": true - }, - "node_modules/fliplog": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/fliplog/-/fliplog-0.3.13.tgz", - "integrity": "sha512-R504CdX+mdhMYpmyrdiQ9PW6ncAyZnxyeA85fS1/P/Y9qmbMiQsqt6QzsYhq5kbqMb84PibVOcS1oz98GJl6EQ==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", "dependencies": { - "chain-able": "^1.0.1" + "wrappy": "1" } }, - "node_modules/fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/onetime": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", + "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", + "dev": true, + "license": "MIT", "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "mimic-function": "^5.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "node_modules/path-scurry": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz", + "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==", + "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "for-in": "^1.0.1" + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" }, "engines": { - "node": ">=0.10.0" + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "engines": { - "node": "*" + "node_modules/path-to-regexp": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/polka": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/polka/-/polka-0.5.2.tgz", + "integrity": "sha512-FVg3vDmCqP80tOrs+OeNlgXYmFppTXdjD5E7I4ET1NjvtNmQrb1/mJibybKkb/d4NA7YWAr1ojxuhpL3FHqdlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@polka/url": "^0.5.0", + "trouter": "^2.0.1" } }, - "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "node_modules/protobufjs": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz", + "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==", + "dev": true, + "hasInstallScript": true, + "license": "BSD-3-Clause", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" }, "engines": { - "node": ">= 0.12" + "node": ">=12.0.0" } }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "engines": { - "node": ">= 0.6" + "node_modules/pump": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz", + "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "node_modules/qs": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz", + "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "map-cache": "^0.2.2" + "side-channel": "^1.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "node_modules/raw-body": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", + "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", + "dev": true, "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.7.0", + "unpipe": "~1.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">= 0.10" } }, - "node_modules/from": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", - "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", - "dev": true - }, - "node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">= 6" } }, - "node_modules/fs-extra/node_modules/graceful-fs": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", - "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==" + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "node_modules/fsevents": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz", - "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==", - "bundleDependencies": [ - "node-pre-gyp" - ], - "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], + "node_modules/restore-cursor": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", + "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", + "dev": true, + "license": "MIT", "dependencies": { - "nan": "^2.9.2", - "node-pre-gyp": "^0.10.0" + "onetime": "^7.0.0", + "signal-exit": "^4.1.0" }, "engines": { - "node": ">=4.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fsevents/node_modules/abbrev": { - "version": "1.1.1", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/ansi-regex": { - "version": "2.1.1", - "inBundle": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" }, - "node_modules/fsevents/node_modules/aproba": { - "version": "1.2.0", - "inBundle": true, - "license": "ISC", - "optional": true + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" }, - "node_modules/fsevents/node_modules/are-we-there-yet": { - "version": "1.1.5", - "inBundle": true, + "node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true, "license": "ISC", - "optional": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/fsevents/node_modules/balanced-match": { - "version": "1.0.0", - "inBundle": true, - "license": "MIT", - "optional": true + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true, + "license": "ISC" }, - "node_modules/fsevents/node_modules/brace-expansion": { - "version": "1.1.11", - "inBundle": true, - "license": "MIT", - "optional": true, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/fsevents/node_modules/chownr": { - "version": "1.1.1", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/code-point-at": { - "version": "1.1.0", - "inBundle": true, - "license": "MIT", - "optional": true, + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, "engines": { - "node": ">=0.10.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" } }, - "node_modules/fsevents/node_modules/concat-map": { - "version": "0.0.1", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/console-control-strings": { + "node_modules/side-channel": { "version": "1.1.0", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/core-util-is": { - "version": "1.0.2", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/debug": { - "version": "2.6.9", - "inBundle": true, + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/fsevents/node_modules/deep-extend": { - "version": "0.6.0", - "inBundle": true, - "license": "MIT", - "optional": true, + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, "engines": { - "node": ">=4.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fsevents/node_modules/delegates": { + "node_modules/side-channel-list": { "version": "1.0.0", - "inBundle": true, + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/detect-libc": { - "version": "1.0.3", - "inBundle": true, - "license": "Apache-2.0", - "optional": true, - "bin": { - "detect-libc": "bin/detect-libc.js" + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" }, "engines": { - "node": ">=0.10" - } - }, - "node_modules/fsevents/node_modules/fs-minipass": { - "version": "1.2.5", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "minipass": "^2.2.1" - } - }, - "node_modules/fsevents/node_modules/fs.realpath": { - "version": "1.0.0", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/gauge": { - "version": "2.7.4", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fsevents/node_modules/glob": { - "version": "7.1.3", - "inBundle": true, - "license": "ISC", - "optional": true, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" }, "engines": { - "node": "*" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fsevents/node_modules/has-unicode": { - "version": "2.0.1", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/iconv-lite": { - "version": "0.4.24", - "inBundle": true, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fsevents/node_modules/ignore-walk": { - "version": "3.0.1", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "minimatch": "^3.0.4" - } - }, - "node_modules/fsevents/node_modules/inflight": { - "version": "1.0.6", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fsevents/node_modules/inherits": { - "version": "2.0.3", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/ini": { - "version": "1.3.5", - "inBundle": true, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, "license": "ISC", - "optional": true, "engines": { - "node": "*" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/fsevents/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "inBundle": true, + "node_modules/slice-ansi": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-8.0.0.tgz", + "integrity": "sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==", + "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "number-is-nan": "^1.0.0" + "ansi-styles": "^6.2.3", + "is-fullwidth-code-point": "^5.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=20" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/fsevents/node_modules/isarray": { - "version": "1.0.0", - "inBundle": true, - "license": "MIT", - "optional": true + "node_modules/split-ca": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split-ca/-/split-ca-1.0.1.tgz", + "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==", + "dev": true, + "license": "ISC" }, - "node_modules/fsevents/node_modules/minimatch": { - "version": "3.0.4", - "inBundle": true, - "license": "ISC", - "optional": true, + "node_modules/ssh2": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.17.0.tgz", + "integrity": "sha512-wPldCk3asibAjQ/kziWQQt1Wh3PgDFpC0XpwclzKcdT1vql6KeYxf5LIt4nlFkUeR8WuphYMKqUA56X4rjbfgQ==", + "dev": true, + "hasInstallScript": true, "dependencies": { - "brace-expansion": "^1.1.7" + "asn1": "^0.2.6", + "bcrypt-pbkdf": "^1.0.2" }, "engines": { - "node": "*" + "node": ">=10.16.0" + }, + "optionalDependencies": { + "cpu-features": "~0.0.10", + "nan": "^2.23.0" } }, - "node_modules/fsevents/node_modules/minimist": { - "version": "0.0.8", - "inBundle": true, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "dev": true, "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/minipass": { - "version": "2.3.5", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" + "engines": { + "node": ">= 0.8" } }, - "node_modules/fsevents/node_modules/minizlib": { - "version": "1.2.1", - "inBundle": true, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "minipass": "^2.2.1" + "safe-buffer": "~5.2.0" } }, - "node_modules/fsevents/node_modules/mkdirp": { - "version": "0.5.1", - "inBundle": true, + "node_modules/string-width": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-8.2.0.tgz", + "integrity": "sha512-6hJPQ8N0V0P3SNmP6h2J99RLuzrWz2gvT7VnK5tKvrNqJoyS9W4/Fb8mo31UiPvy00z7DQXkP2hnKBVav76thw==", + "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "minimist": "0.0.8" + "get-east-asian-width": "^1.5.0", + "strip-ansi": "^7.1.2" }, - "bin": { - "mkdirp": "bin/cmd.js" + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fsevents/node_modules/ms": { - "version": "2.0.0", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/needle": { - "version": "2.2.4", - "inBundle": true, + "node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "debug": "^2.1.2", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - }, - "bin": { - "needle": "bin/needle" + "ansi-regex": "^6.2.2" }, "engines": { - "node": ">= 0.10.x" - } - }, - "node_modules/fsevents/node_modules/node-pre-gyp": { - "version": "0.10.3", - "inBundle": true, - "license": "BSD-3-Clause", - "optional": true, - "dependencies": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4" - }, - "bin": { - "node-pre-gyp": "bin/node-pre-gyp" - } - }, - "node_modules/fsevents/node_modules/nopt": { - "version": "4.0.1", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "abbrev": "1", - "osenv": "^0.1.4" + "node": ">=12" }, - "bin": { - "nopt": "bin/nopt.js" - } - }, - "node_modules/fsevents/node_modules/npm-bundled": { - "version": "1.0.5", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/npm-packlist": { - "version": "1.2.0", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" - } - }, - "node_modules/fsevents/node_modules/npmlog": { - "version": "4.1.2", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "node_modules/fsevents/node_modules/number-is-nan": { - "version": "1.0.1", - "inBundle": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fsevents/node_modules/object-assign": { - "version": "4.1.1", - "inBundle": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fsevents/node_modules/once": { - "version": "1.4.0", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/fsevents/node_modules/os-homedir": { - "version": "1.0.2", - "inBundle": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fsevents/node_modules/os-tmpdir": { - "version": "1.0.2", - "inBundle": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fsevents/node_modules/osenv": { - "version": "0.1.5", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/fsevents/node_modules/path-is-absolute": { - "version": "1.0.1", - "inBundle": true, + "node_modules/supports-color": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz", + "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==", + "dev": true, "license": "MIT", - "optional": true, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fsevents/node_modules/process-nextick-args": { - "version": "2.0.0", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/rc": { - "version": "1.2.8", - "inBundle": true, - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "optional": true, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/fsevents/node_modules/rc/node_modules/minimist": { - "version": "1.2.0", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/readable-stream": { - "version": "2.3.6", - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/fsevents/node_modules/rimraf": { - "version": "2.6.3", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "glob": "^7.1.3" + "node": ">=18" }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/fsevents/node_modules/safe-buffer": { - "version": "5.1.2", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/safer-buffer": { - "version": "2.1.2", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/sax": { - "version": "1.2.4", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/semver": { - "version": "5.6.0", - "inBundle": true, - "license": "ISC", - "optional": true, - "bin": { - "semver": "bin/semver" + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/fsevents/node_modules/set-blocking": { - "version": "2.0.0", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/signal-exit": { - "version": "3.0.2", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/string_decoder": { - "version": "1.1.1", - "inBundle": true, + "node_modules/tar-fs": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz", + "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==", + "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "safe-buffer": "~5.1.0" + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" } }, - "node_modules/fsevents/node_modules/string-width": { - "version": "1.0.2", - "inBundle": true, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/fsevents/node_modules/strip-ansi": { - "version": "3.0.1", - "inBundle": true, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, "license": "MIT", - "optional": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=0.6" } }, - "node_modules/fsevents/node_modules/strip-json-comments": { + "node_modules/trouter": { "version": "2.0.1", - "inBundle": true, + "resolved": "https://registry.npmjs.org/trouter/-/trouter-2.0.1.tgz", + "integrity": "sha512-kr8SKKw94OI+xTGOkfsvwZQ8mWoikZDd2n8XZHjJVZUARZT+4/VV6cacRS6CLsH9bNm+HFIPU1Zx4CnNnb4qlQ==", + "dev": true, "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fsevents/node_modules/tar": { - "version": "4.4.8", - "inBundle": true, - "license": "ISC", - "optional": true, "dependencies": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" + "matchit": "^1.0.0" }, "engines": { - "node": ">=4.5" - } - }, - "node_modules/fsevents/node_modules/util-deprecate": { - "version": "1.0.2", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/fsevents/node_modules/wide-align": { - "version": "1.1.3", - "inBundle": true, - "license": "ISC", - "optional": true, - "dependencies": { - "string-width": "^1.0.2 || 2" + "node": ">=6" } }, - "node_modules/fsevents/node_modules/wrappy": { - "version": "1.0.2", - "inBundle": true, - "license": "ISC", - "optional": true - }, - "node_modules/fsevents/node_modules/yallist": { - "version": "3.0.3", - "inBundle": true, - "license": "ISC", + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD", "optional": true }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/fuse-box": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/fuse-box/-/fuse-box-3.7.1.tgz", - "integrity": "sha512-aM7t9bUcRpNNQu9M+YjXXzx9JSJQVPWeY+8iTyv7OhvJNWHrqqEWPzbn9OfcyFa2AfPwAUyC/uzWexBbjtTvsA==", - "dependencies": { - "acorn": "^5.7.3", - "acorn-jsx": "^4.0.1", - "ansi": "^0.3.1", - "app-root-path": "^2.0.1", - "base64-img": "^1.0.3", - "base64-js": "^1.2.0", - "bowser": "^2.0.0-beta.3", - "chokidar": "^1.6.1", - "clean-css": "^4.1.9", - "escodegen": "^1.8.1", - "express": "^4.14.0", - "fliplog": "^0.3.13", - "fs-extra": "^7.0.0", - "fuse-concat-with-sourcemaps": "^1.0.5", - "getopts": "^2.1.1", - "glob": "^7.1.1", - "ieee754": "^1.1.8", - "inquirer": "^3.0.6", - "lego-api": "^1.0.7", - "mustache": "^2.3.0", - "postcss": "^6.0.1", - "pretty-time": "^0.2.0", - "prettysize": "0.0.3", - "realm-utils": "^1.0.9", - "regexpu-core": "^4.1.3", - "request": "^2.79.0", - "shorthash": "0.0.2", - "source-map": "^0.7.1", - "sourcemap-blender": "1.0.5", - "stream-browserify": "^2.0.1", - "tslib": "^1.8.0", - "watch": "^1.0.1", - "ws": "^1.1.1" - }, - "bin": { - "fuse": "cli/entry.js" - }, - "engines": { - "node": ">= 8", - "npm": ">= 3.10.10" - } - }, - "node_modules/fuse-box/node_modules/fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/fuse-box/node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/fuse-concat-with-sourcemaps": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fuse-concat-with-sourcemaps/-/fuse-concat-with-sourcemaps-1.0.5.tgz", - "integrity": "sha512-tKsRJIxn9tU3IH8JHMwFhGbObqkDKXhNKOvcM+QyflAlYb2EgOvIQe8D6WB/cocA3puldHatsp9SN5SKryasrw==", - "dependencies": { - "source-map": "^0.6.1" - } - }, - "node_modules/fuse-concat-with-sourcemaps/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true, + "license": "Unlicense" }, - "node_modules/gaxios": { + "node_modules/type-is": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-2.0.1.tgz", - "integrity": "sha512-c1NXovTxkgRJTIgB2FrFmOFg4YIV6N/bAa4f/FZ4jIw13Ql9ya/82x69CswvotJhbV3DiGnlTZwoq2NVXk2Irg==", - "dependencies": { - "abort-controller": "^3.0.0", - "extend": "^3.0.2", - "https-proxy-agent": "^2.2.1", - "node-fetch": "^2.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gaxios/node_modules/node-fetch": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", - "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==", - "engines": { - "node": "4.x || >=6.0.0" - } - }, - "node_modules/gcp-metadata": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-2.0.2.tgz", - "integrity": "sha512-dxPXBvjyfz5qFEBXzEwNmuZXwsGYfuASGYeg3CKZDaQRXdiWti9J3/Ezmtyon1OrCNpDO2YekyoSjEqMtsrcXw==", - "dependencies": { - "gaxios": "^2.0.1", - "json-bigint": "^0.3.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", - "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", - "license": "MIT", - "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "es-define-property": "^1.0.1", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.1.1", - "function-bind": "^1.1.2", - "get-proto": "^1.0.1", - "gopd": "^1.2.0", - "has-symbols": "^1.1.0", - "hasown": "^2.0.2", - "math-intrinsics": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", + "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==", + "dev": true, "license": "MIT", "dependencies": { - "dunder-proto": "^1.0.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/getopts": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/getopts/-/getopts-2.2.3.tgz", - "integrity": "sha512-viEcb8TpgeG05+Nqo5EzZ8QR0hxdyrYDp6ZSTZqe2M/h53Bk036NmqG38Vhf5RGirC/Of9Xql+v66B2gp256SQ==" - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dependencies": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-base/node_modules/is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-base/node_modules/is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dependencies": { - "is-extglob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dependencies": { - "is-glob": "^2.0.0" - } - }, - "node_modules/glob-parent/node_modules/is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-parent/node_modules/is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dependencies": { - "is-extglob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/google-auth-library": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-5.2.0.tgz", - "integrity": "sha512-I2726rgOedQ06HgTvoNvBeRCzy5iFe6z3khwj6ugfRd1b0VHwnTYKl/3t2ytOTo7kKc6KivYIBsCIdZf2ep67g==", - "dependencies": { - "arrify": "^2.0.0", - "base64-js": "^1.3.0", - "fast-text-encoding": "^1.0.0", - "gaxios": "^2.0.0", - "gcp-metadata": "^2.0.0", - "gtoken": "^4.0.0", - "jws": "^3.1.5", - "lru-cache": "^5.0.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/google-auth-library/node_modules/arrify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", - "engines": { - "node": ">=8" - } - }, - "node_modules/google-auth-library/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/google-auth-library/node_modules/yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==" - }, - "node_modules/google-libphonenumber": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/google-libphonenumber/-/google-libphonenumber-3.2.13.tgz", - "integrity": "sha512-USnpjJkD8St+wyshy154lF74JeauNCd8vrcusSlWjSFWitXzl7ZSuCunA/XxeVLqBv6DShrSfFMYdwGZ7x4hOw==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/google-p12-pem": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-2.0.1.tgz", - "integrity": "sha512-6h6x+eBX3k+IDSe/c8dVYmn8Mzr1mUcmKC9MdUSwaBkFAXlqBEnwFWmSFgGC+tcqtsLn73BDP/vUNWEehf1Rww==", - "dependencies": { - "node-forge": "^0.8.0" - }, - "bin": { - "gp12-pem": "build/src/bin/gp12-pem.js" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/googleapis": { - "version": "42.0.0", - "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-42.0.0.tgz", - "integrity": "sha512-nQiKPDmzmMusnU8UOibmlC6hsgkm70SjqmLxSlBBb7i0z7/J6UPilSzo9tAMoHA8u3BUw3OXn13+p9YLmBH6Gg==", - "dependencies": { - "google-auth-library": "^5.1.0", - "googleapis-common": "^3.0.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/googleapis-common": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/googleapis-common/-/googleapis-common-3.1.0.tgz", - "integrity": "sha512-abnogPoWqv0cU6O/EFpkerCVsaUsKEG6XpCm4P1YgK44PxIRcGtalDwijqUErkcivM1Xy5MNyf1PDkKTLEjOZA==", - "dependencies": { - "extend": "^3.0.2", - "gaxios": "^2.0.1", - "google-auth-library": "^5.2.0", - "qs": "^6.7.0", - "url-template": "^2.0.8", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/googleapis-common/node_modules/qs": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.8.0.tgz", - "integrity": "sha512-tPSkj8y92PfZVbinY1n84i1Qdx75lZjMQYx9WZhnkofyxzw2r7Ho39G3/aEvSUdebxpnnM4LZJCtvE/Aq3+s9w==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/gopd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" - }, - "node_modules/graphql": { - "version": "14.5.4", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.5.4.tgz", - "integrity": "sha512-dPLvHoxy5m9FrkqWczPPRnH0X80CyvRE6e7Fa5AWEqEAzg9LpxHvKh24po/482E6VWHigOkAmb4xCp6P9yT9gw==", - "peer": true, - "dependencies": { - "iterall": "^1.2.2" - }, - "engines": { - "node": ">= 6.x" - } - }, - "node_modules/graphql-depth-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/graphql-depth-limit/-/graphql-depth-limit-1.1.0.tgz", - "integrity": "sha512-+3B2BaG8qQ8E18kzk9yiSdAa75i/hnnOwgSeAxVJctGQPvmeiLtqKOYF6HETCyRjiF7Xfsyal0HbLlxCQkgkrw==", - "license": "MIT", - "dependencies": { - "arrify": "^1.0.1" - }, - "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "graphql": "*" - } - }, - "node_modules/graphql-http": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.22.4.tgz", - "integrity": "sha512-OC3ucK988teMf+Ak/O+ZJ0N2ukcgrEurypp8ePyJFWq83VzwRAmHxxr+XxrMpxO/FIwI4a7m/Fzv3tWGJv0wPA==", - "license": "MIT", - "workspaces": [ - "implementations/**/*" - ], - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "graphql": ">=0.11 <=16" - } - }, - "node_modules/graphql-query-complexity": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/graphql-query-complexity/-/graphql-query-complexity-0.3.0.tgz", - "integrity": "sha512-JVqHT81Eh9O17iOjs1r1qzsh5YY2upfA3zoUsQGggT4d+1hajWitk4GQQY5SZtq5eul7y6jMsM9qRUSOAKhDJQ==", - "dependencies": { - "lodash.get": "^4.4.2" - }, - "peerDependencies": { - "graphql": "^0.13.0 || ^14.0.0" - } - }, - "node_modules/graphql-request": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-1.8.2.tgz", - "integrity": "sha512-dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg==", - "dependencies": { - "cross-fetch": "2.2.2" - } - }, - "node_modules/graphql-subscriptions": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/graphql-subscriptions/-/graphql-subscriptions-1.1.0.tgz", - "integrity": "sha512-6WzlBFC0lWmXJbIVE8OgFgXIP4RJi3OQgTPa0DVMsDXdpRDjTsM1K9wfl5HSYX7R87QAGlvcv2Y4BIZa/ItonA==", - "dependencies": { - "iterall": "^1.2.1" - }, - "peerDependencies": { - "graphql": "^0.10.5 || ^0.11.3 || ^0.12.0 || ^0.13.0 || ^14.0.0" - } - }, - "node_modules/gtoken": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-4.0.0.tgz", - "integrity": "sha512-XaRCfHJxhj06LmnWNBzVTAr85NfAErq0W1oabkdqwbq3uL/QTB1kyvGog361Uu2FMG/8e3115sIy/97Rnd4GjQ==", - "dependencies": { - "gaxios": "^2.0.0", - "google-p12-pem": "^2.0.0", - "jws": "^3.1.5", - "mime": "^2.2.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/gtoken/node_modules/mime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", - "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/helmet": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/helmet/-/helmet-3.23.3.tgz", - "integrity": "sha512-U3MeYdzPJQhtvqAVBPntVgAvNSOJyagwZwyKsFdyRa8TV3pOKVFljalPOCxbw5Wwf2kncGhmP0qHjyazIdNdSA==", - "license": "MIT", - "dependencies": { - "depd": "2.0.0", - "dont-sniff-mimetype": "1.1.0", - "feature-policy": "0.3.0", - "helmet-crossdomain": "0.4.0", - "helmet-csp": "2.10.0", - "hide-powered-by": "1.1.0", - "hpkp": "2.0.0", - "hsts": "2.2.0", - "nocache": "2.1.0", - "referrer-policy": "1.2.0", - "x-xss-protection": "1.3.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/helmet-crossdomain": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz", - "integrity": "sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/helmet-csp": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.10.0.tgz", - "integrity": "sha512-Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w==", - "license": "MIT", - "dependencies": { - "bowser": "2.9.0", - "camelize": "1.0.0", - "content-security-policy-builder": "2.1.0", - "dasherize": "2.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/hex-to-rgba": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hex-to-rgba/-/hex-to-rgba-2.0.1.tgz", - "integrity": "sha512-5XqPJBpsEUMsseJUi2w2Hl7cHFFi3+OO10M2pzAvKB1zL6fc+koGMhmBqoDOCB4GemiRM/zvDMRIhVw6EkB8dQ==" - }, - "node_modules/hide-powered-by": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.1.0.tgz", - "integrity": "sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/history": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/history/-/history-4.9.0.tgz", - "integrity": "sha512-H2DkjCjXf0Op9OAr6nJ56fcRkTSNrUiv41vNJ6IswJjif6wlpZK0BTfFbi7qK9dXLSYZxkq5lBsj3vUjlYBYZA==", - "dependencies": { - "@babel/runtime": "^7.1.2", - "loose-envify": "^1.2.0", - "resolve-pathname": "^2.2.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0", - "value-equal": "^0.4.0" - } - }, - "node_modules/history/node_modules/@babel/runtime": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.4.tgz", - "integrity": "sha512-IvfvnMdSaLBateu0jfsYIpZTxAc2cKEXEMiezGGN75QcBcecDUKd3PgLAncT0oOgxKy8dd8hrJKj9MfzgfZd6g==", - "dependencies": { - "regenerator-runtime": "^0.12.0" - } - }, - "node_modules/hpkp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz", - "integrity": "sha512-TaZpC6cO/k3DFsjfzz1LnOobbVSq+J+7WpJxrVtN4L+8+BPQj8iBDRB2Dx49613N+e7/+ZSQ9ra+xZm7Blf4wg==", - "license": "MIT" - }, - "node_modules/hsts": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz", - "integrity": "sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ==", - "license": "MIT", - "dependencies": { - "depd": "2.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "dev": true, - "dependencies": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - } - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-errors/node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/https-proxy-agent": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", - "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", - "dependencies": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/https-proxy-agent/node_modules/debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/https-proxy-agent/node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/ical-generator": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/ical-generator/-/ical-generator-1.7.2.tgz", - "integrity": "sha512-sJyIuCRh/1PSyJtuF0pcE2BHavI6yOzp29RgUMARgjfZ6sLdLpfBaKffydAzu4E4ZYNk6oBanvrt+0WxpEyqcA==", - "dependencies": { - "moment-timezone": "^0.5.26" - }, - "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "@types/node": ">= 8.0.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", - "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" - }, - "node_modules/import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", - "dependencies": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", - "dependencies": { - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.0", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^2.0.4", - "figures": "^2.0.0", - "lodash": "^4.3.0", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rx-lite": "^4.0.8", - "rx-lite-aggregates": "^4.0.8", - "string-width": "^2.1.0", - "strip-ansi": "^4.0.0", - "through": "^2.3.6" - } - }, - "node_modules/inquirer/node_modules/ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "engines": { - "node": ">=4" - } - }, - "node_modules/inquirer/node_modules/figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/inquirer/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "engines": { - "node": ">=4" - } - }, - "node_modules/inquirer/node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/inquirer/node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dependencies": { - "ansi-regex": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, - "node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "node_modules/is-callable": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", - "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-date-object": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "dependencies": { - "is-primitive": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" - }, - "node_modules/is-regex": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", - "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", - "dependencies": { - "has": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-symbol": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", - "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", - "dependencies": { - "has-symbols": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "node_modules/iterall": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz", - "integrity": "sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==" - }, - "node_modules/jest-docblock": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-21.2.0.tgz", - "integrity": "sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==", - "dev": true - }, - "node_modules/js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - }, - "node_modules/js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/json-bigint": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-0.3.0.tgz", - "integrity": "sha1-DM2RLEuCcNBfBW+9E4FLU9OCWx4=", - "dependencies": { - "bignumber.js": "^7.0.0" - } - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - }, - "node_modules/json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "node_modules/just-kebab-case": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/just-kebab-case/-/just-kebab-case-1.1.0.tgz", - "integrity": "sha512-QkuwuBMQ9BQHMUEkAtIA4INLrkmnnveqlFB1oFi09gbU0wBdZo6tTnyxNWMR84zHxBuwK7GLAwqN8nrvVxOLTA==" - }, - "node_modules/jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "dependencies": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "dependencies": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, - "node_modules/lego-api": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/lego-api/-/lego-api-1.0.8.tgz", - "integrity": "sha512-pZD0mf32+RL1bUMJztRcXiNBB1gE8gd/h4MDLWdZp7vaMZyjPiYK/zNpNNGoJvmoa7D/wf9dll+5z7pDObdLFg==", - "dependencies": { - "chain-able": "^3.0.0" - } - }, - "node_modules/lego-api/node_modules/chain-able": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chain-able/-/chain-able-3.0.0.tgz", - "integrity": "sha512-26MoELhta86n7gCsE2T1hGRyncZvPjFXTkB/DEp4+i/EJVSxXQNwXMDZZb2+SWcbPuow18wQtztaW7GXOel9DA==" - }, - "node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", - "dev": true - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" - }, - "node_modules/lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" - }, - "node_modules/lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" - }, - "node_modules/logform": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.2.0.tgz", - "integrity": "sha512-N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg==", - "dependencies": { - "colors": "^1.2.1", - "fast-safe-stringify": "^2.0.4", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "triple-beam": "^1.3.0" - } - }, - "node_modules/logform/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-stream": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", - "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", - "dev": true - }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/markdown-to-jsx": { - "version": "6.11.4", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz", - "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", - "dependencies": { - "prop-types": "^15.6.2", - "unquote": "^1.1.0" - }, - "engines": { - "node": ">= 4" - }, - "peerDependencies": { - "react": ">= 0.14.0" - } - }, - "node_modules/math-intrinsics": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" - }, - "node_modules/md5": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", - "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", - "dependencies": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/merge": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz", - "integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==" - }, - "node_modules/merge-descriptors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", - "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", - "dependencies": { - "minimist": "0.0.8" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/moment": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz", - "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==", - "engines": { - "node": "*" - } - }, - "node_modules/moment-timezone": { - "version": "0.5.26", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.26.tgz", - "integrity": "sha512-sFP4cgEKTCymBBKgoxZjYzlSovC20Y6J7y3nanDc5RoBIXKlZhoYwBoZGe3flwU6A372AcRwScH8KiwV6zjy1g==", - "dependencies": { - "moment": ">= 2.9.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dependencies": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/mri": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.1.6.tgz", - "integrity": "sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "node_modules/mustache": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz", - "integrity": "sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==", - "bin": { - "mustache": "bin/mustache" - }, - "engines": { - "npm": ">=1.4.0" - } - }, - "node_modules/mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=" - }, - "node_modules/nan": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz", - "integrity": "sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==", - "optional": true - }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanoseconds": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/nanoseconds/-/nanoseconds-0.1.0.tgz", - "integrity": "sha1-aew5/NAOd6s6ct4KQzQoJM15Izo=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/nocache": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz", - "integrity": "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/node-cleanup": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/node-cleanup/-/node-cleanup-2.1.2.tgz", - "integrity": "sha1-esGavSl+Caf3KnFUXZUbUX5N3iw=", - "dev": true - }, - "node_modules/node-fetch": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz", - "integrity": "sha1-q4hOjn5X44qUR1POxwb3iNF2i7U=", - "engines": { - "node": "4.x || >=6.0.0" - } - }, - "node_modules/node-forge": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.8.5.tgz", - "integrity": "sha512-vFMQIWt+J/7FLNyKouZ9TazT74PRV3wgv9UT4cRjC8BffxFbKXkgIWR42URCPSnHm/QDz6BOlb2Q0U4+VQT67Q==", - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "dev": true, - "dependencies": { - "boolbase": "~1.0.0" - } - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "engines": { - "node": "*" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz", - "integrity": "sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==" - }, - "node_modules/object-keys": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.0.tgz", - "integrity": "sha512-6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "dependencies": { - "for-own": "^0.1.4", - "is-extendable": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "dependencies": { - "fn.name": "1.x.x" - } - }, - "node_modules/onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dependencies": { - "mimic-fn": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "wordwrap": "~1.0.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/options": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", - "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "dependencies": { - "glob-base": "^0.3.0", - "is-dotfile": "^1.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-glob/node_modules/is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-glob/node_modules/is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dependencies": { - "is-extglob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/parse5": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", - "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" - }, - "node_modules/path-to-regexp": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", - "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", - "license": "MIT" - }, - "node_modules/pause-stream": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", - "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", - "dev": true, - "dependencies": { - "through": "~2.3" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "node_modules/polished": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/polished/-/polished-3.4.1.tgz", - "integrity": "sha512-GflTnlP5rrpDoigjczEkS6Ye7NDA4sFvAnlr5hSDrEvjiVj97Xzev3hZlLi3UB27fpxyTS9rWU64VzVLWkG+mg==", - "dependencies": { - "@babel/runtime": "^7.4.5" - } - }, - "node_modules/polished/node_modules/@babel/runtime": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.5.5.tgz", - "integrity": "sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ==", - "dependencies": { - "regenerator-runtime": "^0.13.2" - } - }, - "node_modules/polished/node_modules/regenerator-runtime": { - "version": "0.13.3", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", - "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==" - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dependencies": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/postcss/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/prettier": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz", - "integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==", - "dev": true, - "peer": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/pretty-time": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-0.2.0.tgz", - "integrity": "sha1-ejvexAScYgzXxCt/NCt01W5z104=", - "dependencies": { - "is-number": "^2.0.2", - "nanoseconds": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pretty-time/node_modules/is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pretty-time/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/prettysize": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/prettysize/-/prettysize-0.0.3.tgz", - "integrity": "sha1-FK//amReWRpN3xxykZwjtBRhgaE=" - }, - "node_modules/process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" - }, - "node_modules/prop-types": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.1.tgz", - "integrity": "sha512-f8Lku2z9kERjOCcnDOPm68EBJAO2K00Q5mSgPAUE/gJuBgsYLbVy6owSrtcHj90zt8PvW+z0qaIIgsIhHOa1Qw==", - "dependencies": { - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - } - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/ps-tree": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", - "integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==", - "dev": true, - "dependencies": { - "event-stream": "=3.3.4" - }, - "bin": { - "ps-tree": "bin/ps-tree.js" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/query-string": { - "version": "6.8.3", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.8.3.tgz", - "integrity": "sha512-llcxWccnyaWlODe7A9hRjkvdCKamEKTh+wH8ITdTc3OhchaqUZteiSCX/2ablWHVrkVIe04dntnaZJ7BdyW0lQ==", - "dependencies": { - "decode-uri-component": "^0.2.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/randomatic": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", - "dependencies": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/randomatic/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/react": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/react/-/react-16.9.0.tgz", - "integrity": "sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-copy-to-clipboard": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.1.tgz", - "integrity": "sha512-ELKq31/E3zjFs5rDWNCfFL4NvNFQvGRoJdAKReD/rUPA+xxiLPQmZBZBvy2vgH7V0GE9isIQpT9WXbwIVErYdA==", - "dependencies": { - "copy-to-clipboard": "^3", - "prop-types": "^15.5.8" - }, - "peerDependencies": { - "react": "^15.3.0 || ^16.0.0" - } - }, - "node_modules/react-dom": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.9.0.tgz", - "integrity": "sha512-YFT2rxO9hM70ewk9jq0y6sQk8cL02xm4+IzYBz75CQGlClQQ1Bxq0nhHF6OtSbit+AIahujJgb/CPRibFkMNJQ==", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.15.0" - }, - "peerDependencies": { - "react": "^16.0.0" - } - }, - "node_modules/react-easy-emoji": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/react-easy-emoji/-/react-easy-emoji-1.2.0.tgz", - "integrity": "sha1-YRRQLHnyL5wFNGn6cnrhKSh3oAA=", - "dependencies": { - "lodash.assign": "^4.0.8", - "string-replace-to-array": "^1.0.1" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/react-is": { - "version": "16.8.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.1.tgz", - "integrity": "sha512-ioMCzVDWvCvKD8eeT+iukyWrBGrA3DiFYkXfBsVYIRdaREZuBjENG+KjrikavCLasozqRWTwFUagU/O4vPpRMA==" - }, - "node_modules/readable-stream": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.1.1.tgz", - "integrity": "sha512-DkN66hPyqDhnIQ6Jcsvx9bFjhw214O4poMBcIMgPVpQvNy9a0e0Uhg5SqySyDKAmUlwt8LonTBz1ezOnM8pUdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/readdirp/node_modules/readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readdirp/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/realm-utils": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/realm-utils/-/realm-utils-1.0.9.tgz", - "integrity": "sha1-XHal/znkgWrywTOhYfQiHWYo7/Q=", - "dependencies": { - "app-root-path": "^1.3.0", - "mkdirp": "^0.5.1" - } - }, - "node_modules/realm-utils/node_modules/app-root-path": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-1.4.0.tgz", - "integrity": "sha1-YzXYZclkDQ+tmQBOWnkjIjjpLfo=" - }, - "node_modules/referrer-policy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz", - "integrity": "sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" - }, - "node_modules/regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==" - }, - "node_modules/regenerate-unicode-properties": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz", - "integrity": "sha512-s5NGghCE4itSlUS+0WUj88G6cfMVMmH8boTPNvABf8od+2dhT9WDlWu8n01raQAJZMOK8Ch6jSexaRO7swd6aw==", - "dependencies": { - "regenerate": "^1.4.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", - "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" - }, - "node_modules/regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", - "dependencies": { - "is-equal-shallow": "^0.1.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regexpu-core": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.4.0.tgz", - "integrity": "sha512-eDDWElbwwI3K0Lo6CqbQbA6FwgtCz4kYTarrri1okfkRLZAqstU+B3voZBCjg8Fl6iq0gXrJG6MvRgLthfvgOA==", - "dependencies": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^7.0.0", - "regjsgen": "^0.5.0", - "regjsparser": "^0.6.0", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsgen": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", - "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==" - }, - "node_modules/regjsparser": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", - "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" - }, - "node_modules/repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "peer": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "dependencies": { - "lodash": "^4.17.19" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request-promise-native": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", - "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", - "deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", - "dependencies": { - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - }, - "engines": { - "node": ">=0.12.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/resolve": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz", - "integrity": "sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==", - "dependencies": { - "path-parse": "^1.0.6" - } - }, - "node_modules/resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-pathname": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-2.2.0.tgz", - "integrity": "sha512-bAFz9ld18RzJfddgrO2e/0S2O81710++chRMUxHjXOYKF6jTAMrUNZrEZ1PvV0zlhfjidm08iRPdTLPno1FuRg==" - }, - "node_modules/resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "deprecated": "https://github.com/lydell/resolve-url#deprecated" - }, - "node_modules/restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dependencies": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/resumer": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", - "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", - "dependencies": { - "through": "~2.3.4" - } - }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/retina-dom-to-image": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/retina-dom-to-image/-/retina-dom-to-image-2.5.6.tgz", - "integrity": "sha1-YN4Ij0v/W5FRG5rW6EzmE5Ht69M=" - }, - "node_modules/rimraf": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.0.tgz", - "integrity": "sha512-NDGVxTsjqfunkds7CqsOiEnxln4Bo7Nddl3XhS4pXg5OzwkLqJ971ZVAAnB+DDLnF76N+VnDEiBHaVV8I06SUg==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/run-async": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", - "dependencies": { - "is-promise": "^2.1.0" - }, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/rx-lite": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", - "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=" - }, - "node_modules/rx-lite-aggregates": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", - "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", - "dependencies": { - "rx-lite": "*" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "dependencies": { - "ret": "~0.1.10" - } - }, - "node_modules/safejson": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safejson/-/safejson-1.0.1.tgz", - "integrity": "sha1-W8u5UzuW/OEOY1b0IAF8FqT5yZg=" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/scheduler": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.15.0.tgz", - "integrity": "sha512-xAefmSfN6jqAa7Kuq7LIJY0bwAPG3xlCj0HMEBQk1lxYiDKZscY2xJ5U/61ZTrYbmNQbXa+gc7czPkVo11tnCg==", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "node_modules/scroll-into-view-if-needed": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.20.tgz", - "integrity": "sha512-P9kYMrhi9f6dvWwTGpO5I3HgjSU/8Mts7xL3lkoH5xlewK7O9Obdc5WmMCzppln7bCVGNmf3qfoZXrpCeyNJXw==", - "dependencies": { - "compute-scroll-into-view": "1.0.11" - } - }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/send": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", - "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", - "license": "MIT", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "node_modules/send/node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "license": "MIT", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/serve-static": { - "version": "1.16.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", - "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", - "license": "MIT", - "dependencies": { - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.19.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "license": "ISC" - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/shorthash": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/shorthash/-/shorthash-0.0.2.tgz", - "integrity": "sha1-WbJo7sveWQOLMNogK8+93rLEpOs=", - "engines": { - "node": "*" - } - }, - "node_modules/side-channel": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", - "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "object-inspect": "^1.13.3", - "side-channel-list": "^1.0.0", - "side-channel-map": "^1.0.1", - "side-channel-weakmap": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-list": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", - "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "object-inspect": "^1.13.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-list/node_modules/object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", - "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", - "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.5", - "object-inspect": "^1.13.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-map/node_modules/object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-weakmap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", - "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", - "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.5", - "object-inspect": "^1.13.3", - "side-channel-map": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-weakmap/node_modules/object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel/node_modules/object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/smooth-scroll-into-view-if-needed": { - "version": "1.1.23", - "resolved": "https://registry.npmjs.org/smooth-scroll-into-view-if-needed/-/smooth-scroll-into-view-if-needed-1.1.23.tgz", - "integrity": "sha512-52177sj5yR2novVCB+vJRCYEUkHFz2mq5UKmm5wwIWs0ZtC1sotVaTjKBsuNzBPF4nOV1NxMctyD4V/VMmivCQ==", - "dependencies": { - "scroll-into-view-if-needed": "2.2.20" - } - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dependencies": { - "kind-of": "^3.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", - "dependencies": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "node_modules/source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", - "deprecated": "See https://github.com/lydell/source-map-url#deprecated" - }, - "node_modules/sourcemap-blender": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sourcemap-blender/-/sourcemap-blender-1.0.5.tgz", - "integrity": "sha512-GPhjCmDtJ8YY6zt1L6kP6WtBg6WrdWt5hw2Wmgt9rwC3yiwLo9vEuabh/YYSZ5KmFV20hVkGdkTwpXtT2E65TA==", - "dependencies": { - "source-map": "^0.7.3" - } - }, - "node_modules/sourcemap-blender/node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/split": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", - "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", - "dev": true, - "dependencies": { - "through": "2" - }, - "engines": { - "node": "*" - } - }, - "node_modules/split-on-first": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", - "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "node_modules/sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", - "engines": { - "node": "*" - } - }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dependencies": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "node_modules/stream-browserify/node_modules/readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/stream-browserify/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/stream-combiner": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", - "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", - "dev": true, - "dependencies": { - "duplexer": "~0.1.1" - } - }, - "node_modules/strict-uri-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", - "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", - "engines": { - "node": ">=4" - } - }, - "node_modules/string_decoder": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz", - "integrity": "sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.6.19" - } - }, - "node_modules/string-replace-to-array": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string-replace-to-array/-/string-replace-to-array-1.0.3.tgz", - "integrity": "sha1-yT66mZpe4k1zGuu69auja18Y978=", - "dependencies": { - "invariant": "^2.2.1", - "lodash.flatten": "^4.2.0", - "lodash.isstring": "^4.0.1" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", - "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", - "dependencies": { - "define-properties": "^1.1.2", - "es-abstract": "^1.5.0", - "function-bind": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/tape": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/tape/-/tape-4.10.1.tgz", - "integrity": "sha512-G0DywYV1jQeY3axeYnXUOt6ktnxS9OPJh97FGR3nrua8lhWi1zPflLxcAHavZ7Jf3qUfY7cxcVIVFa4mY2IY1w==", - "dependencies": { - "deep-equal": "~1.0.1", - "defined": "~1.0.0", - "for-each": "~0.3.3", - "function-bind": "~1.1.1", - "glob": "~7.1.3", - "has": "~1.0.3", - "inherits": "~2.0.3", - "minimist": "~1.2.0", - "object-inspect": "~1.6.0", - "resolve": "~1.10.0", - "resumer": "~0.0.0", - "string.prototype.trim": "~1.1.2", - "through": "~2.3.8" - }, - "bin": { - "tape": "bin/tape" - } - }, - "node_modules/tape/node_modules/minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - }, - "node_modules/text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - }, - "node_modules/timestring": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/timestring/-/timestring-5.0.1.tgz", - "integrity": "sha512-0VfOVpaTYqBMTEpjwcY5mB+72YYjFI44Z5F2q80ZiIyDn5pRJm+rEV1OEM8xfnf5/FdtckcrTERTp9TbrlMMHw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/tiny-invariant": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.0.3.tgz", - "integrity": "sha512-ytQx8T4DL8PjlX53yYzcIC0WhIZbpR0p1qcYjw2pHu3w6UtgWwFJQ/02cnhOnBBhlFx/edUIfcagCaQSe3KMWg==" - }, - "node_modules/tiny-warning": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.2.tgz", - "integrity": "sha512-rru86D9CpQRLvsFG5XFdy0KdLAvjdQDyZCsRcuu60WtzFylDM3eAWSxEVz5kzL2Gp544XiUvPbVKtOA/txLi9Q==" - }, - "node_modules/title-case-minors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/title-case-minors/-/title-case-minors-1.0.0.tgz", - "integrity": "sha1-UfFwN8KUdHodHNpCS1AEyG2OsRU=" - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/to-capital-case": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-capital-case/-/to-capital-case-1.0.0.tgz", - "integrity": "sha1-pXxQFP1aNyF88FCZ/4pCG7+cm38=", - "dependencies": { - "to-space-case": "^1.0.0" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-no-case": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/to-no-case/-/to-no-case-1.0.2.tgz", - "integrity": "sha1-xyKQcWTvaxeBMsjmmTAhLRtKoWo=" - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-sentence-case": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-sentence-case/-/to-sentence-case-1.0.0.tgz", - "integrity": "sha1-xIO/NkdzflxzjvcAb+Ng1fmcVy4=", - "dependencies": { - "to-no-case": "^1.0.0" - } - }, - "node_modules/to-space-case": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-space-case/-/to-space-case-1.0.0.tgz", - "integrity": "sha1-sFLar7Gysp3HcM6gFj5ewOvJ/Bc=", - "dependencies": { - "to-no-case": "^1.0.0" - } - }, - "node_modules/to-title-case": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-title-case/-/to-title-case-1.0.0.tgz", - "integrity": "sha1-rKiPidYGTeUBCKl86g20SCfoAGE=", - "dependencies": { - "escape-regexp-component": "^1.0.2", - "title-case-minors": "^1.0.0", - "to-capital-case": "^1.0.0", - "to-sentence-case": "^1.0.0" - } - }, - "node_modules/toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, - "node_modules/tsc-watch": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/tsc-watch/-/tsc-watch-7.1.1.tgz", - "integrity": "sha512-r6t37Dkk4vK44HwxOe+OzjpE/gDamZAwqXhtcAJD/hPVblcjJK45NxbK0HcDASXG0U4pEnCh640JZbeDVSC6yA==", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.6", - "node-cleanup": "^2.1.2", - "ps-tree": "^1.2.0", - "string-argv": "^0.3.2" - }, - "bin": { - "tsc-watch": "dist/lib/tsc-watch.js" - }, - "engines": { - "node": ">=12.12.0" - }, - "peerDependencies": { - "typescript": "*" - } - }, - "node_modules/tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==" - }, - "node_modules/tslint": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz", - "integrity": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==", - "deprecated": "TSLint has been deprecated in favor of ESLint. Please see https://github.com/palantir/tslint/issues/4534 for more information.", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.0.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^4.0.1", - "glob": "^7.1.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.3", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.13.0", - "tsutils": "^2.29.0" - }, - "bin": { - "tslint": "bin/tslint" - }, - "engines": { - "node": ">=4.8.0" - }, - "peerDependencies": { - "typescript": ">=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 4.0.0-dev" - } - }, - "node_modules/tslint-config-prettier": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz", - "integrity": "sha512-xPw9PgNPLG3iKRxmK7DWr+Ea/SzrvfHtjFt5LBl61gk2UBG/DB9kCXRjv+xyIU1rUtnayLeMUVJBcMX8Z17nDg==", - "dev": true, - "bin": { - "tslint-config-prettier-check": "bin/check.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/tslint-plugin-prettier": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslint-plugin-prettier/-/tslint-plugin-prettier-2.3.0.tgz", - "integrity": "sha512-F9e4K03yc9xuvv+A0v1EmjcnDwpz8SpCD8HzqSDe0eyg34cBinwn9JjmnnRrNAs4HdleRQj7qijp+P/JTxt4vA==", - "dev": true, - "dependencies": { - "eslint-plugin-prettier": "^2.2.0", - "lines-and-columns": "^1.1.6", - "tslib": "^1.7.1" - }, - "engines": { - "node": ">= 4" - }, - "peerDependencies": { - "prettier": "^1.9.0 || ^2.0.0", - "tslint": "^5.0.0 || ^6.0.0" - } - }, - "node_modules/tslint/node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "node_modules/tslint/node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dev": true, - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/tslint/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/tslint/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/tsutils": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", - "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", - "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "peerDependencies": { - "typescript": ">=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev" - } - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-graphql": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/type-graphql/-/type-graphql-0.17.6.tgz", - "integrity": "sha512-UFZaMMnpae3zeu9qCdWN82hm8wQeYu/+sQFbG5v3vlTtctZ9Xle9bvNi/rzSbQaG94K9Y5O5AGxjVKKMpEAMYA==", - "hasInstallScript": true, - "dependencies": { - "@types/glob": "^7.1.1", - "@types/node": "*", - "@types/semver": "^6.0.1", - "class-validator": ">=0.9.1", - "glob": "^7.1.4", - "graphql-query-complexity": "^0.3.0", - "graphql-subscriptions": "^1.1.0", - "semver": "^6.2.0", - "tslib": "^1.10.0" - }, - "engines": { - "node": ">= 8.x" - }, - "peerDependencies": { - "@types/graphql": "^14.0.7", - "graphql": "^14.1.1" - } - }, - "node_modules/type-graphql/node_modules/tslib": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", - "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==" - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typescript": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", - "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", - "license": "Apache-2.0", - "peer": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "deprecated": "support for ECMAScript is superseded by `uglify-js` as of v3.13.0", - "dependencies": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - }, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/uglify-es/node_modules/commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" - }, - "node_modules/uglify-es/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ultron": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", - "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=" - }, - "node_modules/undici-types": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", - "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", - "license": "MIT" - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", - "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz", - "integrity": "sha512-Rx7yODZC1L/T8XKo/2kNzVAQaRE88AaMvI1EF/Xnj3GW2wzN6fop9DDWuFAKUVFH7vozkz26DzP0qyWLKLIVPQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz", - "integrity": "sha512-2WSLa6OdYd2ng8oqiGIWnJqyFArvhn+5vgx5GTxMbUYjCYKUcuKS62YLFF0R/BDGlB1yzXjQOLtPAfHsgirEpg==", - "engines": { - "node": ">=4" - } - }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" - }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "deprecated": "Please see https://github.com/lydell/urix#deprecated" - }, - "node_modules/url-template": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", - "integrity": "sha1-/FZaPMy/93MMd19WQflVV5FDnyE=" - }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "node_modules/utils-extend": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/utils-extend/-/utils-extend-1.0.8.tgz", - "integrity": "sha1-zP17ZFQPjpDuIe7Fd2nQZRyril8=" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/validator": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.0.0.tgz", - "integrity": "sha512-anYx5fURbgF04lQV18nEQWZ/3wHGnxiKdG4aL8J+jEDsm98n/sU/bey+tYk6tnGJzm7ioh5FoqrAiQ6m03IgaA==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/value-equal": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-0.4.0.tgz", - "integrity": "sha512-x+cYdNnaA3CxvMaTX0INdTCN8m8aF2uY9BvEqmxuYp8bL09cs/kWVQPVGcA35fMktdOsP69IgU7wFj/61dJHEw==" - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/watch": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/watch/-/watch-1.0.2.tgz", - "integrity": "sha1-NApxe952Vyb6CqB9ch4BR6VR3ww=", - "dependencies": { - "exec-sh": "^0.2.0", - "minimist": "^1.2.0" - }, - "bin": { - "watch": "cli.js" - }, - "engines": { - "node": ">=0.1.95" - } - }, - "node_modules/watch/node_modules/minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - }, - "node_modules/whatwg-fetch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/window-or-global": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/window-or-global/-/window-or-global-1.0.1.tgz", - "integrity": "sha1-2+RboqKRqrxW1iz2bEW3+jIpRt4=" - }, - "node_modules/winston": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz", - "integrity": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==", - "dependencies": { - "@dabh/diagnostics": "^2.0.2", - "async": "^3.1.0", - "is-stream": "^2.0.0", - "logform": "^2.2.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.4.0" - }, - "engines": { - "node": ">= 6.4.0" - } - }, - "node_modules/winston-transport": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz", - "integrity": "sha512-Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw==", - "dependencies": { - "readable-stream": "^2.3.7", - "triple-beam": "^1.2.0" - }, - "engines": { - "node": ">= 6.4.0" - } - }, - "node_modules/winston-transport/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/winston-transport/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/winston/node_modules/is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/winston/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "node_modules/ws": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz", - "integrity": "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==", - "dependencies": { - "options": ">=0.0.5", - "ultron": "1.0.x" - } - }, - "node_modules/x-xss-protection": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.3.0.tgz", - "integrity": "sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/zerofill": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/zerofill/-/zerofill-0.1.0.tgz", - "integrity": "sha1-s0nnVMYnwRNAxK84mk+e+wBjQs0=" - } - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", - "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", - "dev": true, - "requires": { - "@babel/highlight": "^7.0.0" - } - }, - "@babel/helper-module-imports": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", - "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@babel/highlight": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", - "integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", - "dev": true, - "requires": { - "chalk": "^2.0.0", - "esutils": "^2.0.2", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - } - } - }, - "@babel/runtime": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.6.0.tgz", - "integrity": "sha512-89eSBLJsxNxOERC0Op4vd+0Bqm6wRMqMbFtV3i0/fbaWw/mJ8Q3eBvgX0G4SyrOOLCtbu98HspF8o09MRT+KzQ==", - "requires": { - "regenerator-runtime": "^0.13.2" - }, - "dependencies": { - "regenerator-runtime": { - "version": "0.13.3", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", - "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==" - } - } - }, - "@babel/types": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz", - "integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==", - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" - } - }, - "@dabh/diagnostics": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz", - "integrity": "sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==", - "requires": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, - "@emotion/cache": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.17.tgz", - "integrity": "sha512-442/miwbuwIDfSzfMqZNxuzxSEbskcz/bZ86QBYzEjFrr/oq9w+y5kJY1BHbGhDtr91GO232PZ5NN9XYMwr/Qg==", - "requires": { - "@emotion/sheet": "0.9.3", - "@emotion/stylis": "0.8.4", - "@emotion/utils": "0.11.2", - "@emotion/weak-memoize": "0.2.3" - } - }, - "@emotion/core": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.0.17.tgz", - "integrity": "sha512-gykyjjr0sxzVuZBVTVK4dUmYsorc2qLhdYgSiOVK+m7WXgcYTKZevGWZ7TLAgTZvMelCTvhNq8xnf8FR1IdTbg==", - "peer": true, - "requires": { - "@babel/runtime": "^7.5.5", - "@emotion/cache": "^10.0.17", - "@emotion/css": "^10.0.14", - "@emotion/serialize": "^0.11.10", - "@emotion/sheet": "0.9.3", - "@emotion/utils": "0.11.2" - } - }, - "@emotion/css": { - "version": "10.0.14", - "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.14.tgz", - "integrity": "sha512-MozgPkBEWvorcdpqHZE5x1D/PLEHUitALQCQYt2wayf4UNhpgQs2tN0UwHYS4FMy5ROBH+0ALyCFVYJ/ywmwlg==", - "requires": { - "@emotion/serialize": "^0.11.8", - "@emotion/utils": "0.11.2", - "babel-plugin-emotion": "^10.0.14" - } - }, - "@emotion/hash": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.7.2.tgz", - "integrity": "sha512-RMtr1i6E8MXaBWwhXL3yeOU8JXRnz8GNxHvaUfVvwxokvayUY0zoBeWbKw1S9XkufmGEEdQd228pSZXFkAln8Q==" - }, - "@emotion/is-prop-valid": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.2.tgz", - "integrity": "sha512-ZQIMAA2kLUWiUeMZNJDTeCwYRx1l8SQL0kHktze4COT22occKpDML1GDUXP5/sxhOMrZO8vZw773ni4H5Snrsg==", - "requires": { - "@emotion/memoize": "0.7.2" - } - }, - "@emotion/memoize": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.2.tgz", - "integrity": "sha512-hnHhwQzvPCW1QjBWFyBtsETdllOM92BfrKWbUTmh9aeOlcVOiXvlPsK4104xH8NsaKfg86PTFsWkueQeUfMA/w==" - }, - "@emotion/serialize": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.10.tgz", - "integrity": "sha512-04AB+wU00vv9jLgkWn13c/GJg2yXp3w7ZR3Q1O6mBSE6mbUmYeNX3OpBhfp//6r47lFyY0hBJJue+bA30iokHQ==", - "requires": { - "@emotion/hash": "0.7.2", - "@emotion/memoize": "0.7.2", - "@emotion/unitless": "0.7.4", - "@emotion/utils": "0.11.2", - "csstype": "^2.5.7" - } - }, - "@emotion/sheet": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.3.tgz", - "integrity": "sha512-c3Q6V7Df7jfwSq5AzQWbXHa5soeE4F5cbqi40xn0CzXxWW9/6Mxq48WJEtqfWzbZtW9odZdnRAkwCQwN12ob4A==" - }, - "@emotion/styled": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.0.17.tgz", - "integrity": "sha512-zHMgWjHDMNjD+ux64POtDnjLAObniu3znxFBLSdV/RiEhSLjHIowfvSbbd/C33/3uwtI6Uzs2KXnRZtka/PpAQ==", - "requires": { - "@emotion/styled-base": "^10.0.17", - "babel-plugin-emotion": "^10.0.17" - } - }, - "@emotion/styled-base": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.0.17.tgz", - "integrity": "sha512-vqQvxluZZKPByAB4zYZys0Qo/kVDP/03hAeg1K+TYpnZRwTi7WteOodc+/5669RPVNcfb93fphQpM5BYJnI1/g==", - "requires": { - "@babel/runtime": "^7.5.5", - "@emotion/is-prop-valid": "0.8.2", - "@emotion/serialize": "^0.11.10", - "@emotion/utils": "0.11.2" - } - }, - "@emotion/stylis": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.4.tgz", - "integrity": "sha512-TLmkCVm8f8gH0oLv+HWKiu7e8xmBIaokhxcEKPh1m8pXiV/akCiq50FvYgOwY42rjejck8nsdQxZlXZ7pmyBUQ==" - }, - "@emotion/unitless": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.4.tgz", - "integrity": "sha512-kBa+cDHOR9jpRJ+kcGMsysrls0leukrm68DmFQoMIWQcXdr2cZvyvypWuGYT7U+9kAExUE7+T7r6G3C3A6L8MQ==" - }, - "@emotion/utils": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.2.tgz", - "integrity": "sha512-UHX2XklLl3sIaP6oiMmlVzT0J+2ATTVpf0dHQVyPJHTkOITvXfaSqnRk6mdDhV9pR8T/tHc3cex78IKXssmzrA==" - }, - "@emotion/weak-memoize": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.3.tgz", - "integrity": "sha512-zVgvPwGK7c1aVdUVc9Qv7SqepOGRDrqCw7KZPSZziWGxSlbII3gmvGLPzLX4d0n0BMbamBacUrN22zOMyFFEkQ==" - }, - "@types/body-parser": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.17.1.tgz", - "integrity": "sha512-RoX2EZjMiFMjZh9lmYrwgoP9RTpAjSHiJxdp4oidAQVO02T7HER3xj9UKue5534ULWeqVEkujhWcyvUce+d68w==", - "dev": true, - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/caseless": { - "version": "0.12.2", - "resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.2.tgz", - "integrity": "sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w==", - "dev": true - }, - "@types/compression": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/compression/-/compression-1.0.1.tgz", - "integrity": "sha512-GuoIYzD70h+4JUqUabsm31FGqvpCYHGKcLtor7nQ/YvUyNX0o9SJZ9boFI5HjFfbOda5Oe/XOvNK6FES8Y/79w==", - "dev": true, - "requires": { - "@types/express": "*" - } - }, - "@types/connect": { - "version": "3.4.32", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.32.tgz", - "integrity": "sha512-4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/cors": { - "version": "2.8.6", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.6.tgz", - "integrity": "sha512-invOmosX0DqbpA+cE2yoHGUlF/blyf7nB0OGYBBiH27crcVm5NmFaZkLP4Ta1hGaesckCi5lVLlydNJCxkTOSg==", - "dev": true, - "requires": { - "@types/express": "*" - } - }, - "@types/dotenv": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@types/dotenv/-/dotenv-6.1.1.tgz", - "integrity": "sha512-ftQl3DtBvqHl9L16tpqqzA4YzCSXZfi7g8cQceTz5rOlYtk/IZbFjAv3mLOQlNIgOaylCQWQoBdDQHPgEBJPHg==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", - "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" - }, - "@types/express": { - "version": "4.17.9", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.9.tgz", - "integrity": "sha512-SDzEIZInC4sivGIFY4Sz1GG6J9UObPwCInYJjko2jzOf/Imx/dlpume6Xxwj1ORL82tBbmN4cPDIDkLbWHk9hw==", - "dev": true, - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "*", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz", - "integrity": "sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" - } - }, - "@types/file-saver": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/file-saver/-/file-saver-2.0.1.tgz", - "integrity": "sha512-g1QUuhYVVAamfCifK7oB7G3aIl4BbOyzDOqVyUfEr4tfBKrXfeH+M+Tg7HKCXSrbzxYdhyCP7z9WbKo0R2hBCw==", - "dev": true - }, - "@types/fs-extra": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.0.0.tgz", - "integrity": "sha512-bCtL5v9zdbQW86yexOlXWTEGvLNqWxMFyi7gQA7Gcthbezr2cPSOb8SkESVKA937QD5cIwOFLDFt0MQoXOEr9Q==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/glob": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", - "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", - "requires": { - "@types/events": "*", - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/graphql": { - "version": "14.5.0", - "resolved": "https://registry.npmjs.org/@types/graphql/-/graphql-14.5.0.tgz", - "integrity": "sha512-MOkzsEp1Jk5bXuAsHsUi6BVv0zCO+7/2PTiZMXWDSsMXvNU6w/PLMQT2vHn8hy2i0JqojPz1Sz6rsFjHtsU0lA==", - "peer": true, - "requires": { - "graphql": "*" - } - }, - "@types/helmet": { - "version": "0.0.44", - "resolved": "https://registry.npmjs.org/@types/helmet/-/helmet-0.0.44.tgz", - "integrity": "sha512-MPZ7HoCGLoajTZhy3hMWHvdiOMHCZJ51U2Bve25oujn3G7KdXy0G3iRS0dUpVtKOGMNcuBF6yLDRpNdm2JH0OQ==", - "dev": true, - "requires": { - "@types/express": "*" - } - }, - "@types/history": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.3.tgz", - "integrity": "sha512-cS5owqtwzLN5kY+l+KgKdRJ/Cee8tlmQoGQuIE9tWnSmS3JMKzmxo2HIAk2wODMifGwO20d62xZQLYz+RLfXmw==", - "dev": true - }, - "@types/lodash": { - "version": "4.14.138", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.138.tgz", - "integrity": "sha512-A4uJgHz4hakwNBdHNPdxOTkYmXNgmUAKLbXZ7PKGslgeV0Mb8P3BlbYfPovExek1qnod4pDfRbxuzcVs3dlFLg==", - "dev": true - }, - "@types/md5": { - "version": "2.1.33", - "resolved": "https://registry.npmjs.org/@types/md5/-/md5-2.1.33.tgz", - "integrity": "sha512-8+X960EtKLoSblhauxLKy3zzotagjoj3Jt1Tx9oaxUdZEPIBl+mkrUz6PNKpzJgkrKSN9YgkWTA29c0KnLshmA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/mime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.1.tgz", - "integrity": "sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw==", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" - }, - "@types/morgan": { - "version": "1.7.37", - "resolved": "https://registry.npmjs.org/@types/morgan/-/morgan-1.7.37.tgz", - "integrity": "sha512-tIdEA10BcHcOumMmUiiYdw8lhiVVq62r0ghih5Xpp4WETkfsMiTUZL4w9jCI502BBOrKhFrAOGml9IeELvVaBA==", - "dev": true, - "requires": { - "@types/express": "*" - } - }, - "@types/node": { - "version": "24.0.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.3.tgz", - "integrity": "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==", - "peer": true, - "requires": { - "undici-types": "~7.8.0" - } - }, - "@types/prop-types": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.1.tgz", - "integrity": "sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg==", - "dev": true - }, - "@types/qs": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", - "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", - "dev": true - }, - "@types/query-string": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@types/query-string/-/query-string-6.3.0.tgz", - "integrity": "sha512-yuIv/WRffRzL7cBW+sla4HwBZrEXRNf1MKQ5SklPEadth+BKbDxiVG8A3iISN5B3yC4EeSCzMZP8llHTcUhOzQ==", - "dev": true, - "requires": { - "query-string": "*" - } - }, - "@types/range-parser": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", - "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==", - "dev": true - }, - "@types/react": { - "version": "16.9.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.2.tgz", - "integrity": "sha512-jYP2LWwlh+FTqGd9v7ynUKZzjj98T8x7Yclz479QdRhHfuW9yQ+0jjnD31eXSXutmBpppj5PYNLYLRfnZJvcfg==", - "dev": true, - "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" - } - }, - "@types/react-copy-to-clipboard": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-4.2.6.tgz", - "integrity": "sha512-v4/yLsuPf8GSFuTy9fA1ABpL5uuy04vwW7qs+cfxSe1UU/M/KK95rF3N3GRseismoK9tA28SvpwVsAg/GWoF3A==", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/react-dom": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.0.tgz", - "integrity": "sha512-OL2lk7LYGjxn4b0efW3Pvf2KBVP0y1v3wip1Bp7nA79NkOpElH98q3WdCEdDj93b2b0zaeBG9DvriuKjIK5xDA==", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/request": { - "version": "2.48.3", - "resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.3.tgz", - "integrity": "sha512-3Wo2jNYwqgXcIz/rrq18AdOZUQB8cQ34CXZo+LUwPJNpvRAL86+Kc2wwI8mqpz9Cr1V+enIox5v+WZhy/p3h8w==", - "dev": true, - "requires": { - "@types/caseless": "*", - "@types/node": "*", - "@types/tough-cookie": "*", - "form-data": "^2.5.0" - }, - "dependencies": { - "form-data": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz", - "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - } - } - }, - "@types/request-promise-native": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/@types/request-promise-native/-/request-promise-native-1.0.16.tgz", - "integrity": "sha512-gbLf6cg1XGBU8BObOgs5VkCQo5JFz2GstgZjyE4FRbig/jiCEdiynu2fCzJlw3qYPuoj59spKnvuRLN4PsMvhA==", - "dev": true, - "requires": { - "@types/request": "*" - } - }, - "@types/semver": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-6.2.1.tgz", - "integrity": "sha512-+beqKQOh9PYxuHvijhVl+tIHvT6tuwOrE9m14zd+MT2A38KoKZhh7pYJ0SNleLtwDsiIxHDsIk9bv01oOxvSvA==" - }, - "@types/send": { - "version": "0.17.5", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.5.tgz", - "integrity": "sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==", - "dev": true, - "requires": { - "@types/mime": "^1", - "@types/node": "*" - }, - "dependencies": { - "@types/mime": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", - "dev": true - } - } - }, - "@types/serve-static": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.3.tgz", - "integrity": "sha512-oprSwp094zOglVrXdlo/4bAHtKTAxX6VT8FOZlBKrmyLbNvE1zxZyJ6yikMVtHIvwP45+ZQGJn+FdXGKTozq0g==", - "dev": true, - "requires": { - "@types/express-serve-static-core": "*", - "@types/mime": "*" - } - }, - "@types/tough-cookie": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-2.3.5.tgz", - "integrity": "sha512-SCcK7mvGi3+ZNz833RRjFIxrn4gI1PPR3NtuIS+6vMkvmsGjosqTJwRt5bAEFLRz+wtJMWv8+uOnZf2hi2QXTg==", - "dev": true - }, - "@types/validator": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.0.0.tgz", - "integrity": "sha512-WAy5txG7aFX8Vw3sloEKp5p/t/Xt8jD3GRD9DacnFv6Vo8ubudAsRTXgxpQwU0mpzY/H8U4db3roDuCMjShBmw==" - }, - "@types/window-or-global": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/window-or-global/-/window-or-global-1.0.0.tgz", - "integrity": "sha1-tLyEgMN/5LrCNV96ksn/zYSCLJQ=", - "dev": true - }, - "abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "requires": { - "event-target-shim": "^5.0.0" - } - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "5.7.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", - "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" - }, - "acorn-jsx": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz", - "integrity": "sha512-JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw==", - "requires": { - "acorn": "^5.0.3" - } - }, - "agent-base": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", - "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "requires": { - "es6-promisify": "^5.0.0" - } - }, - "ajax-request": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/ajax-request/-/ajax-request-1.2.3.tgz", - "integrity": "sha1-mfy+wdbSeS+F+pSVNTMr0U9fN5A=", - "requires": { - "file-system": "^2.1.1", - "utils-extend": "^1.0.7" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz", - "integrity": "sha1-DELU+xcWDVqa8eSEus4cZpIsGyE=" - }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" - }, - "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "requires": { - "micromatch": "^2.1.5", - "normalize-path": "^2.0.0" - }, - "dependencies": { - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "requires": { - "arr-flatten": "^1.0.1" - } - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" - } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "requires": { - "is-extglob": "^1.0.0" - } - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "requires": { - "is-extglob": "^1.0.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" - } - } - } - }, - "app-root-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-2.1.0.tgz", - "integrity": "sha1-mL9lmTJ+zqGZMJhm6BQDaP0uZGo=" - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==" - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" - }, - "async": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", - "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==" - }, - "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "babel-plugin-emotion": { - "version": "10.0.17", - "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.0.17.tgz", - "integrity": "sha512-KNuBadotqYWpQexHhHOu7M9EV1j2c+Oh/JJqBfEQDusD6mnORsCZKHkl+xYwK82CPQ/23wRrsBIEYnKjtbMQJw==", - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@emotion/hash": "0.7.2", - "@emotion/memoize": "0.7.2", - "@emotion/serialize": "^0.11.10", - "babel-plugin-macros": "^2.0.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^1.0.5", - "find-root": "^1.1.0", - "source-map": "^0.5.7" - } - }, - "babel-plugin-macros": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz", - "integrity": "sha512-6W2nwiXme6j1n2erPOnmRiWfObUhWH7Qw1LMi9XZy8cj+KtESu3T6asZvtk5bMQQjX8te35o7CFueiSdL/2NmQ==", - "requires": { - "@babel/runtime": "^7.4.2", - "cosmiconfig": "^5.2.0", - "resolve": "^1.10.0" - } - }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "base64-img": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/base64-img/-/base64-img-1.0.4.tgz", - "integrity": "sha1-PiLVXWx0okVT2EDSsbwSp9sHjTU=", - "requires": { - "ajax-request": "^1.2.0", - "file-system": "^2.1.0" - } - }, - "base64-js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", - "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" - }, - "basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "requires": { - "safe-buffer": "5.1.2" - } - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "bent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/bent/-/bent-6.1.0.tgz", - "integrity": "sha512-D6NaNcLrcIovZOzwm9LoV5nf0yKeqWVad2ec74T3esh8CXHzRtZM70z5prUtXM+H9kA6+0RRDfBDaxy9iScKig==", - "requires": { - "bytesish": "^0.3.1", - "caseless": "~0.12.0", - "is-stream": "^2.0.0" - }, - "dependencies": { - "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" - } - } - }, - "bignumber.js": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz", - "integrity": "sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ==" - }, - "binary-extensions": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.0.tgz", - "integrity": "sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw==" - }, - "body-parser": { - "version": "1.20.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", - "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.13.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } - }, - "qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "requires": { - "side-channel": "^1.0.6" - } - } - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", - "dev": true - }, - "bowser": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.9.0.tgz", - "integrity": "sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA==" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - }, - "bytesish": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/bytesish/-/bytesish-0.3.3.tgz", - "integrity": "sha512-Q5eMmjkF3PnHDA0k/34/aGodPWxYL/2bAB1j17JQXeejbGsWaJLpKJqLCcpe+e37Oqg+UZig0kF5vgslOOyUJQ==" - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "call-bind-apply-helpers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", - "requires": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2" - } - }, - "call-bound": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", - "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", - "requires": { - "call-bind-apply-helpers": "^1.0.2", - "get-intrinsic": "^1.3.0" - } - }, - "caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", - "requires": { - "callsites": "^2.0.0" - } - }, - "caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", - "requires": { - "caller-callsite": "^2.0.0" - } - }, - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "camelize": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", - "integrity": "sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "chain-able": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/chain-able/-/chain-able-1.0.1.tgz", - "integrity": "sha1-tIrJvcGPIZLscwq8ZmCfkKq1YF8=" - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "chardet": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", - "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=" - }, - "charenc": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", - "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" - }, - "cheerio": { - "version": "1.0.0-rc.3", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz", - "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==", - "dev": true, - "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.1", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash": "^4.15.0", - "parse5": "^3.0.1" - } - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "requires": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "fsevents": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" - }, - "dependencies": { - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "requires": { - "is-extglob": "^1.0.0" - } - } - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "class-validator": { - "version": "0.12.2", - "resolved": "https://registry.npmjs.org/class-validator/-/class-validator-0.12.2.tgz", - "integrity": "sha512-TDzPzp8BmpsbPhQpccB3jMUE/3pK0TyqamrK0kcx+ZeFytMA+O6q87JZZGObHHnoo9GM8vl/JppIyKWeEA/EVw==", - "requires": { - "@types/validator": "13.0.0", - "google-libphonenumber": "^3.2.8", - "tslib": ">=1.9.0", - "validator": "13.0.0" - } - }, - "clean-css": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", - "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", - "requires": { - "source-map": "~0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=" - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz", - "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==", - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.2" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "color-string": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", - "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" - }, - "colorspace": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz", - "integrity": "sha512-vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ==", - "requires": { - "color": "3.0.x", - "text-hex": "1.0.x" - } - }, - "combined-stream": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz", - "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", - "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", - "dev": true - }, - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" - }, - "compressible": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.16.tgz", - "integrity": "sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA==", - "requires": { - "mime-db": ">= 1.38.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "requires": { - "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" - }, - "dependencies": { - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - } - }, - "compute-scroll-into-view": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.11.tgz", - "integrity": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "requires": { - "safe-buffer": "5.2.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - } - }, - "content-security-policy-builder": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz", - "integrity": "sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ==" - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - }, - "convert-source-map": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", - "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" - }, - "copy-to-clipboard": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.0.8.tgz", - "integrity": "sha512-c3GdeY8qxCHGezVb1EFQfHYK/8NZRemgcTIzPq7PuxjHAf/raKibn2QdhHPb/y6q74PMgH6yizaDZlRmw6QyKw==", - "requires": { - "toggle-selection": "^1.0.3" - } - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - } - }, - "cross-fetch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-2.2.2.tgz", - "integrity": "sha1-pH/09/xxLauo9qaVoRyUhEDUVyM=", - "requires": { - "node-fetch": "2.1.2", - "whatwg-fetch": "2.0.4" - } - }, - "cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypt": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", - "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" - }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "dev": true, - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", - "dev": true - }, - "csstype": { - "version": "2.6.6", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.6.tgz", - "integrity": "sha512-RpFbQGUE74iyPgvr46U9t1xoQBM8T4BL8SxrN66Le2xYAPSaDJJKeztV3awugusb3g3G9iL8StmkBBXhcbbXhg==" - }, - "csv-parse": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.4.6.tgz", - "integrity": "sha512-VisC5TBBhOF+70zjrF9FOiqI2LZOhXK/vAWlOrqyqz3lLa+P8jzJ7L/sg90MHmkSY/brAXWwrmGSZR0tM5yi4g==" - }, - "csv-stringify": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-5.3.3.tgz", - "integrity": "sha512-q8Qj+/lN74LRmG7Mg0LauE5WcnJOD5MEGe1gI57IYJCB61KWuEbAFHm1uIPDkI26aqElyBB57SlE2GGwq2EY5A==" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "dasherize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz", - "integrity": "sha512-APql/TZ6FdLEpf2z7/X2a2zyqK8juYtqaSVqxw9mYoQ64CXkfU15AeLh8pUszT8+fnYjgm6t0aIYpWKJbnLkuA==" - }, - "date-range-array": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/date-range-array/-/date-range-array-2.1.0.tgz", - "integrity": "sha512-RG4dkqd+ASDHyNTLz9kcSxgqe9xgoxd9hSOS0vIKTjUDefYVYCaY945c5Y8sirW0t+72fREuxDifdeC7FHPSlQ==", - "requires": { - "tape": "^4.0.0" - } - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" - }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "requires": { - "object-keys": "^1.0.12" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - }, - "dom-serializer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", - "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", - "dev": true, - "requires": { - "domelementtype": "^1.3.0", - "entities": "^1.1.1" - } - }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "dev": true, - "requires": { - "domelementtype": "1" - } - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "dev": true, - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "dont-sniff-mimetype": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz", - "integrity": "sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug==" - }, - "dotenv": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.1.0.tgz", - "integrity": "sha512-GUE3gqcDCaMltj2++g6bRQ5rBJWtkWTmqmD0fo1RnnMuUqHNCt2oTPeDnS9n6fKYvlhn7AeBkb38lymBtWBQdA==" - }, - "dunder-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", - "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", - "requires": { - "call-bind-apply-helpers": "^1.0.1", - "es-errors": "^1.3.0", - "gopd": "^1.2.0" - } - }, - "duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - }, - "encodeurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", - "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" - }, - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "requires": { - "is-arrayish": "^0.2.1" - }, - "dependencies": { - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - } - } - }, - "es-abstract": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", - "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", - "requires": { - "es-to-primitive": "^1.2.0", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "is-callable": "^1.1.4", - "is-regex": "^1.0.4", - "object-keys": "^1.0.12" - } - }, - "es-define-property": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", - "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" - }, - "es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - }, - "es-object-atoms": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", - "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", - "requires": { - "es-errors": "^1.3.0" - } - }, - "es-to-primitive": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", - "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es6-promise": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" - }, - "es6-promisify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", - "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", - "requires": { - "es6-promise": "^4.0.3" - } - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "escape-regexp-component": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/escape-regexp-component/-/escape-regexp-component-1.0.2.tgz", - "integrity": "sha1-nGO20LJf8qiMOtvRjFthrMO5+qI=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "escodegen": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.0.tgz", - "integrity": "sha512-IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw==", - "requires": { - "esprima": "^3.1.3", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - }, - "dependencies": { - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true - } - } - }, - "eslint-plugin-prettier": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz", - "integrity": "sha512-CStQYJgALoQBw3FsBzH0VOVDRnJ/ZimUlpLm226U8qgqYJfPOY/CPK6wyRInMxh73HSKg5wyRwdS4BVYYHwokA==", - "dev": true, - "requires": { - "fast-diff": "^1.1.1", - "jest-docblock": "^21.0.0" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - }, - "event-stream": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", - "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", - "dev": true, - "requires": { - "duplexer": "~0.1.1", - "from": "~0", - "map-stream": "~0.1.0", - "pause-stream": "0.0.11", - "split": "0.3", - "stream-combiner": "~0.0.4", - "through": "~2.3.1" - } - }, - "event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - }, - "exec-sh": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz", - "integrity": "sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==", - "requires": { - "merge": "^1.2.0" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "requires": { - "fill-range": "^2.1.0" - }, - "dependencies": { - "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", - "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - } - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "expeditious": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/expeditious/-/expeditious-1.0.1.tgz", - "integrity": "sha1-mVt6x2dBpmApiRRJ1YZ7zMM4sw8=", - "requires": { - "debug": "~2.6.9", - "safejson": "~1.0.1", - "verror": "~1.6.1" - }, - "dependencies": { - "extsprintf": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz", - "integrity": "sha1-WtlGwi9bMrp/jNdCZxHG6KP8JSk=" - }, - "verror": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.6.1.tgz", - "integrity": "sha1-I2QCBgZIwhnRFiwkUdHDQaDhyc4=", - "requires": { - "core-util-is": "1.0.2", - "extsprintf": "1.2.0" - } - } - } - }, - "expeditious-engine-memory": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/expeditious-engine-memory/-/expeditious-engine-memory-0.2.1.tgz", - "integrity": "sha1-zh2cvfLfmn25HNkZE8KLpTeWXRE=", - "requires": { - "expeditious": "~1.0.0" - } - }, - "express": { - "version": "4.21.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", - "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.3", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.7.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.3.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.3", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.12", - "proxy-addr": "~2.0.7", - "qs": "6.13.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.19.0", - "serve-static": "1.16.2", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } - }, - "qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "requires": { - "side-channel": "^1.0.6" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - } - }, - "express-expeditious": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/express-expeditious/-/express-expeditious-5.1.1.tgz", - "integrity": "sha512-4akMwHm8TVRYzm/HQ520fJxqT1NIEb0J+CNzJ18l1kXt0GSnIHsRt2WpoI+8jdD/g3tf/Ggz+vbW6rwronJdvA==", - "requires": { - "debug": "~4.1.0", - "expeditious": "~1.0.1", - "expeditious-engine-memory": "~0.2.0", - "on-finished": "~2.3.0", - "timestring": "~5.0.0", - "verror": "~1.10.0" - }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "external-editor": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", - "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", - "requires": { - "chardet": "^0.4.0", - "iconv-lite": "^0.4.17", - "tmp": "^0.0.33" - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-diff": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", - "dev": true - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - }, - "fast-safe-stringify": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", - "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" - }, - "fast-text-encoding": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.0.tgz", - "integrity": "sha512-R9bHCvweUxxwkDwhjav5vxpFvdPGlVngtqmx4pIZfSUhM/Q4NiIUHB456BAf+Q1Nwu3HEZYONtu+Rya+af4jiQ==" - }, - "feature-policy": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz", - "integrity": "sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==" - }, - "fecha": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz", - "integrity": "sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==" - }, - "file-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/file-match/-/file-match-1.0.2.tgz", - "integrity": "sha1-ycrSZdLIrfOoFHWw30dYWQafrvc=", - "requires": { - "utils-extend": "^1.0.6" - } - }, - "file-saver": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.2.tgz", - "integrity": "sha512-Wz3c3XQ5xroCxd1G8b7yL0Ehkf0TC9oYC6buPFkNnU9EnaPlifeAFCyCh+iewXTyFRcg0a6j3J7FmJsIhlhBdw==" - }, - "file-system": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/file-system/-/file-system-2.2.2.tgz", - "integrity": "sha1-fWWDPjojR9zZVqgTxncVPtPt2Yc=", - "requires": { - "file-match": "^1.0.1", - "utils-extend": "^1.0.4" - } - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "finalhandler": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", - "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } - } - } - }, - "find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "flatmap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/flatmap/-/flatmap-0.0.3.tgz", - "integrity": "sha1-Hxik2TgVLUlZZfnJWNkjqy3WabQ=", - "dev": true - }, - "fliplog": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/fliplog/-/fliplog-0.3.13.tgz", - "integrity": "sha512-R504CdX+mdhMYpmyrdiQ9PW6ncAyZnxyeA85fS1/P/Y9qmbMiQsqt6QzsYhq5kbqMb84PibVOcS1oz98GJl6EQ==", - "requires": { - "chain-able": "^1.0.1" - } - }, - "fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "requires": { - "is-callable": "^1.1.3" - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "requires": { - "for-in": "^1.0.1" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - }, - "from": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", - "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", - "dev": true - }, - "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "dependencies": { - "graceful-fs": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", - "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==" - } - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "fsevents": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz", - "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==", - "optional": true, - "requires": { - "nan": "^2.9.2", - "node-pre-gyp": "^0.10.0" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "optional": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "bundled": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "debug": { - "version": "2.6.9", - "bundled": true, - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.5", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.3", - "bundled": true, - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.24", - "bundled": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-walk": { - "version": "3.0.1", - "bundled": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "bundled": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "bundled": true, - "optional": true - }, - "minipass": { - "version": "2.3.5", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.2.1", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, - "optional": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "needle": { - "version": "2.2.4", - "bundled": true, - "optional": true, - "requires": { - "debug": "^2.1.2", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.10.3", - "bundled": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4" - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.0.5", - "bundled": true, - "optional": true - }, - "npm-packlist": { - "version": "1.2.0", - "bundled": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "optional": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.6.3", - "bundled": true, - "optional": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true, - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "optional": true - }, - "semver": { - "version": "5.6.0", - "bundled": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "optional": true - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "tar": { - "version": "4.4.8", - "bundled": true, - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "bundled": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "yallist": { - "version": "3.0.3", - "bundled": true, - "optional": true - } - } - }, - "function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - }, - "fuse-box": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/fuse-box/-/fuse-box-3.7.1.tgz", - "integrity": "sha512-aM7t9bUcRpNNQu9M+YjXXzx9JSJQVPWeY+8iTyv7OhvJNWHrqqEWPzbn9OfcyFa2AfPwAUyC/uzWexBbjtTvsA==", - "requires": { - "acorn": "^5.7.3", - "acorn-jsx": "^4.0.1", - "ansi": "^0.3.1", - "app-root-path": "^2.0.1", - "base64-img": "^1.0.3", - "base64-js": "^1.2.0", - "bowser": "^2.0.0-beta.3", - "chokidar": "^1.6.1", - "clean-css": "^4.1.9", - "escodegen": "^1.8.1", - "express": "^4.14.0", - "fliplog": "^0.3.13", - "fs-extra": "^7.0.0", - "fuse-concat-with-sourcemaps": "^1.0.5", - "getopts": "^2.1.1", - "glob": "^7.1.1", - "ieee754": "^1.1.8", - "inquirer": "^3.0.6", - "lego-api": "^1.0.7", - "mustache": "^2.3.0", - "postcss": "^6.0.1", - "pretty-time": "^0.2.0", - "prettysize": "0.0.3", - "realm-utils": "^1.0.9", - "regexpu-core": "^4.1.3", - "request": "^2.79.0", - "shorthash": "0.0.2", - "source-map": "^0.7.1", - "sourcemap-blender": "1.0.5", - "stream-browserify": "^2.0.1", - "tslib": "^1.8.0", - "watch": "^1.0.1", - "ws": "^1.1.1" - }, - "dependencies": { - "fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - } - } - }, - "fuse-concat-with-sourcemaps": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fuse-concat-with-sourcemaps/-/fuse-concat-with-sourcemaps-1.0.5.tgz", - "integrity": "sha512-tKsRJIxn9tU3IH8JHMwFhGbObqkDKXhNKOvcM+QyflAlYb2EgOvIQe8D6WB/cocA3puldHatsp9SN5SKryasrw==", - "requires": { - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "gaxios": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-2.0.1.tgz", - "integrity": "sha512-c1NXovTxkgRJTIgB2FrFmOFg4YIV6N/bAa4f/FZ4jIw13Ql9ya/82x69CswvotJhbV3DiGnlTZwoq2NVXk2Irg==", - "requires": { - "abort-controller": "^3.0.0", - "extend": "^3.0.2", - "https-proxy-agent": "^2.2.1", - "node-fetch": "^2.3.0" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", - "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==" - } - } - }, - "gcp-metadata": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-2.0.2.tgz", - "integrity": "sha512-dxPXBvjyfz5qFEBXzEwNmuZXwsGYfuASGYeg3CKZDaQRXdiWti9J3/Ezmtyon1OrCNpDO2YekyoSjEqMtsrcXw==", - "requires": { - "gaxios": "^2.0.1", - "json-bigint": "^0.3.0" - } - }, - "get-intrinsic": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", - "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", - "requires": { - "call-bind-apply-helpers": "^1.0.2", - "es-define-property": "^1.0.1", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.1.1", - "function-bind": "^1.1.2", - "get-proto": "^1.0.1", - "gopd": "^1.2.0", - "has-symbols": "^1.1.0", - "hasown": "^2.0.2", - "math-intrinsics": "^1.1.0" - } - }, - "get-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", - "requires": { - "dunder-proto": "^1.0.1", - "es-object-atoms": "^1.0.0" - } - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" - }, - "getopts": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/getopts/-/getopts-2.2.3.tgz", - "integrity": "sha512-viEcb8TpgeG05+Nqo5EzZ8QR0hxdyrYDp6ZSTZqe2M/h53Bk036NmqG38Vhf5RGirC/Of9Xql+v66B2gp256SQ==" - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "requires": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - }, - "dependencies": { - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "requires": { - "is-extglob": "^1.0.0" - } - } - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "requires": { - "is-glob": "^2.0.0" - }, - "dependencies": { - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "requires": { - "is-extglob": "^1.0.0" - } - } - } - }, - "google-auth-library": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-5.2.0.tgz", - "integrity": "sha512-I2726rgOedQ06HgTvoNvBeRCzy5iFe6z3khwj6ugfRd1b0VHwnTYKl/3t2ytOTo7kKc6KivYIBsCIdZf2ep67g==", - "requires": { - "arrify": "^2.0.0", - "base64-js": "^1.3.0", - "fast-text-encoding": "^1.0.0", - "gaxios": "^2.0.0", - "gcp-metadata": "^2.0.0", - "gtoken": "^4.0.0", - "jws": "^3.1.5", - "lru-cache": "^5.0.0" - }, - "dependencies": { - "arrify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "requires": { - "yallist": "^3.0.2" - } - }, - "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==" - } - } - }, - "google-libphonenumber": { - "version": "3.2.13", - "resolved": "https://registry.npmjs.org/google-libphonenumber/-/google-libphonenumber-3.2.13.tgz", - "integrity": "sha512-USnpjJkD8St+wyshy154lF74JeauNCd8vrcusSlWjSFWitXzl7ZSuCunA/XxeVLqBv6DShrSfFMYdwGZ7x4hOw==" - }, - "google-p12-pem": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-2.0.1.tgz", - "integrity": "sha512-6h6x+eBX3k+IDSe/c8dVYmn8Mzr1mUcmKC9MdUSwaBkFAXlqBEnwFWmSFgGC+tcqtsLn73BDP/vUNWEehf1Rww==", - "requires": { - "node-forge": "^0.8.0" - } - }, - "googleapis": { - "version": "42.0.0", - "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-42.0.0.tgz", - "integrity": "sha512-nQiKPDmzmMusnU8UOibmlC6hsgkm70SjqmLxSlBBb7i0z7/J6UPilSzo9tAMoHA8u3BUw3OXn13+p9YLmBH6Gg==", - "requires": { - "google-auth-library": "^5.1.0", - "googleapis-common": "^3.0.0" - } - }, - "googleapis-common": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/googleapis-common/-/googleapis-common-3.1.0.tgz", - "integrity": "sha512-abnogPoWqv0cU6O/EFpkerCVsaUsKEG6XpCm4P1YgK44PxIRcGtalDwijqUErkcivM1Xy5MNyf1PDkKTLEjOZA==", - "requires": { - "extend": "^3.0.2", - "gaxios": "^2.0.1", - "google-auth-library": "^5.2.0", - "qs": "^6.7.0", - "url-template": "^2.0.8", - "uuid": "^3.3.2" - }, - "dependencies": { - "qs": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.8.0.tgz", - "integrity": "sha512-tPSkj8y92PfZVbinY1n84i1Qdx75lZjMQYx9WZhnkofyxzw2r7Ho39G3/aEvSUdebxpnnM4LZJCtvE/Aq3+s9w==" - } - } - }, - "gopd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" - }, - "graphql": { - "version": "14.5.4", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.5.4.tgz", - "integrity": "sha512-dPLvHoxy5m9FrkqWczPPRnH0X80CyvRE6e7Fa5AWEqEAzg9LpxHvKh24po/482E6VWHigOkAmb4xCp6P9yT9gw==", - "peer": true, - "requires": { - "iterall": "^1.2.2" - } - }, - "graphql-depth-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/graphql-depth-limit/-/graphql-depth-limit-1.1.0.tgz", - "integrity": "sha512-+3B2BaG8qQ8E18kzk9yiSdAa75i/hnnOwgSeAxVJctGQPvmeiLtqKOYF6HETCyRjiF7Xfsyal0HbLlxCQkgkrw==", - "requires": { - "arrify": "^1.0.1" - } - }, - "graphql-http": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.22.4.tgz", - "integrity": "sha512-OC3ucK988teMf+Ak/O+ZJ0N2ukcgrEurypp8ePyJFWq83VzwRAmHxxr+XxrMpxO/FIwI4a7m/Fzv3tWGJv0wPA==", - "requires": {} - }, - "graphql-query-complexity": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/graphql-query-complexity/-/graphql-query-complexity-0.3.0.tgz", - "integrity": "sha512-JVqHT81Eh9O17iOjs1r1qzsh5YY2upfA3zoUsQGggT4d+1hajWitk4GQQY5SZtq5eul7y6jMsM9qRUSOAKhDJQ==", - "requires": { - "lodash.get": "^4.4.2" - } - }, - "graphql-request": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-1.8.2.tgz", - "integrity": "sha512-dDX2M+VMsxXFCmUX0Vo0TopIZIX4ggzOtiCsThgtrKR4niiaagsGTDIHj3fsOMFETpa064vzovI+4YV4QnMbcg==", - "requires": { - "cross-fetch": "2.2.2" - } - }, - "graphql-subscriptions": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/graphql-subscriptions/-/graphql-subscriptions-1.1.0.tgz", - "integrity": "sha512-6WzlBFC0lWmXJbIVE8OgFgXIP4RJi3OQgTPa0DVMsDXdpRDjTsM1K9wfl5HSYX7R87QAGlvcv2Y4BIZa/ItonA==", - "requires": { - "iterall": "^1.2.1" - } - }, - "gtoken": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/gtoken/-/gtoken-4.0.0.tgz", - "integrity": "sha512-XaRCfHJxhj06LmnWNBzVTAr85NfAErq0W1oabkdqwbq3uL/QTB1kyvGog361Uu2FMG/8e3115sIy/97Rnd4GjQ==", - "requires": { - "gaxios": "^2.0.0", - "google-p12-pem": "^2.0.0", - "jws": "^3.1.5", - "mime": "^2.2.0" - }, - "dependencies": { - "mime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", - "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==" - } - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "has-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "requires": { - "function-bind": "^1.1.2" - } - }, - "helmet": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/helmet/-/helmet-3.23.3.tgz", - "integrity": "sha512-U3MeYdzPJQhtvqAVBPntVgAvNSOJyagwZwyKsFdyRa8TV3pOKVFljalPOCxbw5Wwf2kncGhmP0qHjyazIdNdSA==", - "requires": { - "depd": "2.0.0", - "dont-sniff-mimetype": "1.1.0", - "feature-policy": "0.3.0", - "helmet-crossdomain": "0.4.0", - "helmet-csp": "2.10.0", - "hide-powered-by": "1.1.0", - "hpkp": "2.0.0", - "hsts": "2.2.0", - "nocache": "2.1.0", - "referrer-policy": "1.2.0", - "x-xss-protection": "1.3.0" - } - }, - "helmet-crossdomain": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz", - "integrity": "sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA==" - }, - "helmet-csp": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.10.0.tgz", - "integrity": "sha512-Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w==", - "requires": { - "bowser": "2.9.0", - "camelize": "1.0.0", - "content-security-policy-builder": "2.1.0", - "dasherize": "2.0.0" - } - }, - "hex-to-rgba": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hex-to-rgba/-/hex-to-rgba-2.0.1.tgz", - "integrity": "sha512-5XqPJBpsEUMsseJUi2w2Hl7cHFFi3+OO10M2pzAvKB1zL6fc+koGMhmBqoDOCB4GemiRM/zvDMRIhVw6EkB8dQ==" - }, - "hide-powered-by": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.1.0.tgz", - "integrity": "sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg==" - }, - "history": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/history/-/history-4.9.0.tgz", - "integrity": "sha512-H2DkjCjXf0Op9OAr6nJ56fcRkTSNrUiv41vNJ6IswJjif6wlpZK0BTfFbi7qK9dXLSYZxkq5lBsj3vUjlYBYZA==", - "requires": { - "@babel/runtime": "^7.1.2", - "loose-envify": "^1.2.0", - "resolve-pathname": "^2.2.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0", - "value-equal": "^0.4.0" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.4.tgz", - "integrity": "sha512-IvfvnMdSaLBateu0jfsYIpZTxAc2cKEXEMiezGGN75QcBcecDUKd3PgLAncT0oOgxKy8dd8hrJKj9MfzgfZd6g==", - "requires": { - "regenerator-runtime": "^0.12.0" - } - } - } - }, - "hpkp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz", - "integrity": "sha512-TaZpC6cO/k3DFsjfzz1LnOobbVSq+J+7WpJxrVtN4L+8+BPQj8iBDRB2Dx49613N+e7/+ZSQ9ra+xZm7Blf4wg==" - }, - "hsts": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz", - "integrity": "sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ==", - "requires": { - "depd": "2.0.0" - } - }, - "htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "dev": true, - "requires": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - } - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "dependencies": { - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-proxy-agent": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", - "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", - "requires": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - } - }, - "ical-generator": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/ical-generator/-/ical-generator-1.7.2.tgz", - "integrity": "sha512-sJyIuCRh/1PSyJtuF0pcE2BHavI6yOzp29RgUMARgjfZ6sLdLpfBaKffydAzu4E4ZYNk6oBanvrt+0WxpEyqcA==", - "requires": { - "moment-timezone": "^0.5.26" - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", - "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" - }, - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", - "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - } - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", - "requires": { - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.0", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^2.0.4", - "figures": "^2.0.0", - "lodash": "^4.3.0", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rx-lite": "^4.0.8", - "rx-lite-aggregates": "^4.0.8", - "string-width": "^2.1.0", - "strip-ansi": "^4.0.0", - "through": "^2.3.6" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - } + "content-type": "^1.0.5", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" + }, + "engines": { + "node": ">= 0.6" } }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "requires": { - "loose-envify": "^1.0.0" + "node_modules/typescript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", + "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.24.4.tgz", + "integrity": "sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.18.1" } }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + "node_modules/undici-types": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", + "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", + "dev": true, + "license": "MIT" }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "requires": { - "kind-of": "^3.0.2" - }, + "node_modules/unenv": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.24.tgz", + "integrity": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==", + "dev": true, + "license": "MIT", "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "pathe": "^2.0.3" } }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "requires": { - "binary-extensions": "^1.0.0" + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" } }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" }, - "is-callable": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", - "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==" + "node_modules/uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "requires": { - "kind-of": "^3.0.2" + "node_modules/workerd": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260401.1.tgz", + "integrity": "sha512-mUYCd+ohaWJWF5nhDzxugWaAD/DM8Dw0ze3B7bu8JaA7S70+XQJXcvcvwE8C4qGcxSdCyqjsrFzqxKubECDwzg==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "bin": { + "workerd": "bin/workerd" }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "engines": { + "node": ">=16" + }, + "optionalDependencies": { + "@cloudflare/workerd-darwin-64": "1.20260401.1", + "@cloudflare/workerd-darwin-arm64": "1.20260401.1", + "@cloudflare/workerd-linux-64": "1.20260401.1", + "@cloudflare/workerd-linux-arm64": "1.20260401.1", + "@cloudflare/workerd-windows-64": "1.20260401.1" } }, - "is-date-object": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, + "node_modules/wrangler": { + "version": "4.80.0", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.80.0.tgz", + "integrity": "sha512-2ZKF7uPeOZy65BGk3YfvqBCPo/xH1MrAlMmH9mVP+tCNBrTUMnwOHSj1HrZHgR8LttkAqhko0fGz+I4ax1rzyQ==", + "dev": true, + "license": "MIT OR Apache-2.0", "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + "@cloudflare/kv-asset-handler": "0.4.2", + "@cloudflare/unenv-preset": "2.16.0", + "blake3-wasm": "2.1.5", + "esbuild": "0.27.3", + "miniflare": "4.20260401.0", + "path-to-regexp": "6.3.0", + "unenv": "2.0.0-rc.24", + "workerd": "1.20260401.1" + }, + "bin": { + "wrangler": "bin/wrangler.js", + "wrangler2": "bin/wrangler.js" + }, + "engines": { + "node": ">=20.3.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@cloudflare/workers-types": "^4.20260401.1" + }, + "peerDependenciesMeta": { + "@cloudflare/workers-types": { + "optional": true } } }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" - }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "requires": { - "is-primitive": "^2.0.0" + "node_modules/wrap-ansi": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-10.0.0.tgz", + "integrity": "sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.3", + "string-width": "^8.2.0", + "strip-ansi": "^7.1.2" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "requires": { - "kind-of": "^3.0.2" + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true } } }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "requires": { - "isobject": "^3.0.1" + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" } }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" + "node_modules/yaml": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz", + "integrity": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==", + "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + }, + "funding": { + "url": "https://github.com/sponsors/eemeli" + } }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } }, - "is-regex": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", - "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", - "requires": { - "has": "^1.0.1" + "node_modules/yargs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, - "is-symbol": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", - "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", - "requires": { - "has-symbols": "^1.0.0" + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "node_modules/youch": { + "version": "4.1.0-beta.10", + "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.10.tgz", + "integrity": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@poppinss/colors": "^4.1.5", + "@poppinss/dumper": "^0.6.4", + "@speed-highlight/core": "^1.2.7", + "cookie": "^1.0.2", + "youch-core": "^0.3.3" + } }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "node_modules/youch-core": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.3.tgz", + "integrity": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@poppinss/exception": "^1.2.2", + "error-stack-parser-es": "^1.0.5" + } }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "iterall": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz", - "integrity": "sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==" - }, - "jest-docblock": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-21.2.0.tgz", - "integrity": "sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==", + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + }, + "dependencies": { + "@actions/expressions": { + "version": "0.3.50", + "resolved": "https://registry.npmjs.org/@actions/expressions/-/expressions-0.3.50.tgz", + "integrity": "sha512-raRCCUiRlNYzqyM4d4DGOZ54U1lBtfyEnmB22Br44SRPR9K4Tb/me27xabKBORK1ycJXh93qXhkxx774+6a7tA==", "dev": true }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "@actions/workflow-parser": { + "version": "0.3.43", + "resolved": "https://registry.npmjs.org/@actions/workflow-parser/-/workflow-parser-0.3.43.tgz", + "integrity": "sha512-hghYVU7h//IGf+NaQgZrO7SI2Pre88ZKZQ8sM/1CBx1bEIJM9t9MMAeTCnKOknNaxBScbDPmmpwil26DxKgMwA==", + "dev": true, "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "@actions/expressions": "^0.3.43", + "cronstrue": "^2.21.0", + "yaml": "^2.0.0-8" } }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" - }, - "json-bigint": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-0.3.0.tgz", - "integrity": "sha1-DM2RLEuCcNBfBW+9E4FLU9OCWx4=", - "requires": { - "bignumber.js": "^7.0.0" - } + "@arr/every": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@arr/every/-/every-1.0.1.tgz", + "integrity": "sha512-UQFQ6SgyJ6LX42W8rHCs8KVc0JS0tzVL9ct4XYedJukskYVWTo49tNiMEK9C2HTyarbNiT/RVIRSY82vH+6sTg==", + "dev": true }, - "json-parse-better-errors": { + "@balena/dockerignore": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + "resolved": "https://registry.npmjs.org/@balena/dockerignore/-/dockerignore-1.0.2.tgz", + "integrity": "sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==", + "dev": true }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "@cloudflare/kv-asset-handler": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.4.2.tgz", + "integrity": "sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==", + "dev": true }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "@cloudflare/unenv-preset": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.16.0.tgz", + "integrity": "sha512-8ovsRpwzPoEqPUzoErAYVv8l3FMZNeBVQfJTvtzP4AgLSRGZISRfuChFxHWUQd3n6cnrwkuTGxT+2cGo8EsyYg==", + "dev": true, + "requires": {} }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + "@cloudflare/workerd-darwin-64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260401.1.tgz", + "integrity": "sha512-ZSmceM70jH6k+/62VkEcmMNzrpr4kSctkX5Lsgqv38KktfhPY/hsh75y1lRoPWS3H3kgMa4p2pUSlidZR1u2hw==", + "dev": true, + "optional": true }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } + "@cloudflare/workerd-darwin-arm64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260401.1.tgz", + "integrity": "sha512-7UKWF+IUZ3NXMVPsDg8Cjg0r58b+uYlfvs5Yt8bvtU+geCtW4P2MxRHmRSEo8SryckXOJjb/b8tcncgCykFu8g==", + "dev": true, + "optional": true }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } + "@cloudflare/workerd-linux-64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260401.1.tgz", + "integrity": "sha512-MDWUH/0bvL/l9aauN8zEddyYOXId1OueqrUCXXENNJ95R/lSmF6OgGVuXaYhoIhxQkNiEJ/0NOlnVYj9mJq4dw==", + "dev": true, + "optional": true }, - "just-kebab-case": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/just-kebab-case/-/just-kebab-case-1.1.0.tgz", - "integrity": "sha512-QkuwuBMQ9BQHMUEkAtIA4INLrkmnnveqlFB1oFi09gbU0wBdZo6tTnyxNWMR84zHxBuwK7GLAwqN8nrvVxOLTA==" + "@cloudflare/workerd-linux-arm64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260401.1.tgz", + "integrity": "sha512-UgkzpMzVWM/bwbo3vjCTg2aoKfGcUhiEoQoDdo6RGWvbHRJyLVZ4VQCG9ZcISiztkiS2ICCoYOtPy6M/lV6Gcw==", + "dev": true, + "optional": true }, - "jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "requires": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } + "@cloudflare/workerd-windows-64": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260401.1.tgz", + "integrity": "sha512-HBLzcQF5iF4Qv20tQ++pG7xs3OsCnaIbc+GAi6fmhUKZhvmzvml/jwrQzLJ+MPm0cQo41K5OO/U3T4S8tvJetQ==", + "dev": true, + "optional": true }, - "jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, "requires": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" + "@jridgewell/trace-mapping": "0.3.9" } }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - }, - "kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, - "lego-api": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/lego-api/-/lego-api-1.0.8.tgz", - "integrity": "sha512-pZD0mf32+RL1bUMJztRcXiNBB1gE8gd/h4MDLWdZp7vaMZyjPiYK/zNpNNGoJvmoa7D/wf9dll+5z7pDObdLFg==", + "@emnapi/runtime": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz", + "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==", + "dev": true, + "optional": true, "requires": { - "chain-able": "^3.0.0" - }, - "dependencies": { - "chain-able": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chain-able/-/chain-able-3.0.0.tgz", - "integrity": "sha512-26MoELhta86n7gCsE2T1hGRyncZvPjFXTkB/DEp4+i/EJVSxXQNwXMDZZb2+SWcbPuow18wQtztaW7GXOel9DA==" - } + "tslib": "^2.4.0" } }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } + "@esbuild/aix-ppc64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz", + "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==", + "dev": true, + "optional": true }, - "lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", - "dev": true + "@esbuild/android-arm": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz", + "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==", + "dev": true, + "optional": true }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "@esbuild/android-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz", + "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==", + "dev": true, + "optional": true }, - "lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" + "@esbuild/android-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz", + "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==", + "dev": true, + "optional": true }, - "lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" + "@esbuild/darwin-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz", + "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==", + "dev": true, + "optional": true }, - "lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + "@esbuild/darwin-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz", + "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==", + "dev": true, + "optional": true }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + "@esbuild/freebsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz", + "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==", + "dev": true, + "optional": true }, - "logform": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.2.0.tgz", - "integrity": "sha512-N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg==", - "requires": { - "colors": "^1.2.1", - "fast-safe-stringify": "^2.0.4", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "triple-beam": "^1.3.0" - }, - "dependencies": { - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - } + "@esbuild/freebsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz", + "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==", + "dev": true, + "optional": true }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } + "@esbuild/linux-arm": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz", + "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==", + "dev": true, + "optional": true }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + "@esbuild/linux-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz", + "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==", + "dev": true, + "optional": true }, - "map-stream": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", - "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", - "dev": true + "@esbuild/linux-ia32": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz", + "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==", + "dev": true, + "optional": true }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "requires": { - "object-visit": "^1.0.0" - } + "@esbuild/linux-loong64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz", + "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==", + "dev": true, + "optional": true }, - "markdown-to-jsx": { - "version": "6.11.4", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz", - "integrity": "sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==", - "requires": { - "prop-types": "^15.6.2", - "unquote": "^1.1.0" - } + "@esbuild/linux-mips64el": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz", + "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==", + "dev": true, + "optional": true }, - "math-intrinsics": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + "@esbuild/linux-ppc64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz", + "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==", + "dev": true, + "optional": true }, - "math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" + "@esbuild/linux-riscv64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz", + "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==", + "dev": true, + "optional": true }, - "md5": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", - "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", - "requires": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" - } + "@esbuild/linux-s390x": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz", + "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==", + "dev": true, + "optional": true }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + "@esbuild/linux-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz", + "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==", + "dev": true, + "optional": true }, - "merge": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz", - "integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==" + "@esbuild/netbsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz", + "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==", + "dev": true, + "optional": true }, - "merge-descriptors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", - "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==" + "@esbuild/netbsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz", + "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==", + "dev": true, + "optional": true }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + "@esbuild/openbsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz", + "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==", + "dev": true, + "optional": true }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "@esbuild/openbsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz", + "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==", + "dev": true, + "optional": true }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + "@esbuild/openharmony-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz", + "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==", + "dev": true, + "optional": true }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { - "mime-db": "1.52.0" - } + "@esbuild/sunos-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz", + "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==", + "dev": true, + "optional": true }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + "@esbuild/win32-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz", + "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==", + "dev": true, + "optional": true }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } + "@esbuild/win32-ia32": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz", + "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==", + "dev": true, + "optional": true }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + "@esbuild/win32-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz", + "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==", + "dev": true, + "optional": true }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "@grpc/grpc-js": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.14.3.tgz", + "integrity": "sha512-Iq8QQQ/7X3Sac15oB6p0FmUg/klxQvXLeileoqrTRGJYLV+/9tubbr9ipz0GKHjmXVsgFPo/+W+2cA8eNcR+XA==", + "dev": true, "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" + "@grpc/proto-loader": "^0.8.0", + "@js-sdsl/ordered-map": "^4.4.2" }, "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "@grpc/proto-loader": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.8.0.tgz", + "integrity": "sha512-rc1hOQtjIWGxcxpb9aHAfLpIctjEnsDehj0DAiVfBlmT84uvR0uUtN2hEi/ecvWVjXUGf5qPF4qEgiLOx1YIMQ==", + "dev": true, "requires": { - "is-plain-object": "^2.0.4" + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.5.3", + "yargs": "^17.7.2" } } } }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "@grpc/proto-loader": { + "version": "0.7.15", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.15.tgz", + "integrity": "sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==", + "dev": true, "requires": { - "minimist": "0.0.8" + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.5", + "yargs": "^17.7.2" } }, - "moment": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz", - "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==" + "@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "dev": true }, - "moment-timezone": { - "version": "0.5.26", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.26.tgz", - "integrity": "sha512-sFP4cgEKTCymBBKgoxZjYzlSovC20Y6J7y3nanDc5RoBIXKlZhoYwBoZGe3flwU6A372AcRwScH8KiwV6zjy1g==", + "@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "dev": true, + "optional": true, "requires": { - "moment": ">= 2.9.0" + "@img/sharp-libvips-darwin-arm64": "1.2.4" } }, - "morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", + "@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "dev": true, + "optional": true, "requires": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" + "@img/sharp-libvips-darwin-x64": "1.2.4" } }, - "mri": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.1.6.tgz", - "integrity": "sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ==", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "mustache": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz", - "integrity": "sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==" + "@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "dev": true, + "optional": true }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=" + "@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "dev": true, + "optional": true }, - "nan": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz", - "integrity": "sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==", + "@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "dev": true, "optional": true }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - } - }, - "nanoseconds": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/nanoseconds/-/nanoseconds-0.1.0.tgz", - "integrity": "sha1-aew5/NAOd6s6ct4KQzQoJM15Izo=" - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - }, - "nocache": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz", - "integrity": "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==" - }, - "node-cleanup": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/node-cleanup/-/node-cleanup-2.1.2.tgz", - "integrity": "sha1-esGavSl+Caf3KnFUXZUbUX5N3iw=", - "dev": true + "@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "dev": true, + "optional": true }, - "node-fetch": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.1.2.tgz", - "integrity": "sha1-q4hOjn5X44qUR1POxwb3iNF2i7U=" + "@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "dev": true, + "optional": true }, - "node-forge": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.8.5.tgz", - "integrity": "sha512-vFMQIWt+J/7FLNyKouZ9TazT74PRV3wgv9UT4cRjC8BffxFbKXkgIWR42URCPSnHm/QDz6BOlb2Q0U4+VQT67Q==" + "@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "dev": true, + "optional": true }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "requires": { - "remove-trailing-separator": "^1.0.1" - } + "@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "dev": true, + "optional": true }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", "dev": true, - "requires": { - "boolbase": "~1.0.0" - } + "optional": true }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + "@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "dev": true, + "optional": true }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "dev": true, + "optional": true }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "dev": true, + "optional": true, "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "@img/sharp-libvips-linux-arm": "1.2.4" } }, - "object-inspect": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz", - "integrity": "sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==" - }, - "object-keys": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.0.tgz", - "integrity": "sha512-6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg==" - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "dev": true, + "optional": true, "requires": { - "isobject": "^3.0.0" + "@img/sharp-libvips-linux-arm64": "1.2.4" } }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "dev": true, + "optional": true, "requires": { - "for-own": "^0.1.4", - "is-extendable": "^0.1.1" + "@img/sharp-libvips-linux-ppc64": "1.2.4" } }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "dev": true, + "optional": true, "requires": { - "isobject": "^3.0.1" + "@img/sharp-libvips-linux-riscv64": "1.2.4" } }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "dev": true, + "optional": true, "requires": { - "ee-first": "1.1.1" + "@img/sharp-libvips-linux-s390x": "1.2.4" } }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "dev": true, + "optional": true, "requires": { - "wrappy": "1" + "@img/sharp-libvips-linux-x64": "1.2.4" } }, - "one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", + "@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "dev": true, + "optional": true, "requires": { - "fn.name": "1.x.x" + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" } }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "dev": true, + "optional": true, "requires": { - "mimic-fn": "^1.0.0" + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" } }, - "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "dev": true, + "optional": true, "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "wordwrap": "~1.0.0" + "@emnapi/runtime": "^1.7.0" } }, - "options": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", - "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=" + "@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "dev": true, + "optional": true }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + "@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "dev": true, + "optional": true }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "dev": true, + "optional": true + }, + "@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, "requires": { - "glob-base": "^0.3.0", - "is-dotfile": "^1.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.0" - }, - "dependencies": { - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "requires": { - "is-extglob": "^1.0.0" - } - } + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" } }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "@js-sdsl/ordered-map": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz", + "integrity": "sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==", + "dev": true + }, + "@polka/url": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-0.5.0.tgz", + "integrity": "sha512-oZLYFEAzUKyi3SKnXvj32ZCEGH6RDnao7COuCVhDydMS9NrCSVXhM79VaKyP5+Zc33m0QXEd2DN3UkU7OsHcfw==", + "dev": true + }, + "@poppinss/colors": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.6.tgz", + "integrity": "sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==", + "dev": true, "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "kleur": "^4.1.5" } }, - "parse5": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", - "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", + "@poppinss/dumper": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.5.tgz", + "integrity": "sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==", "dev": true, "requires": { - "@types/node": "*" + "@poppinss/colors": "^4.1.5", + "@sindresorhus/is": "^7.0.2", + "supports-color": "^10.0.0" } }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + "@poppinss/exception": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.3.tgz", + "integrity": "sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==", + "dev": true }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "dev": true }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", "dev": true }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + "@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "dev": true }, - "path-to-regexp": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", - "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==" + "@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "dev": true }, - "pause-stream": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", - "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", + "@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", "dev": true, "requires": { - "through": "~2.3" - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "polished": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/polished/-/polished-3.4.1.tgz", - "integrity": "sha512-GflTnlP5rrpDoigjczEkS6Ye7NDA4sFvAnlr5hSDrEvjiVj97Xzev3hZlLi3UB27fpxyTS9rWU64VzVLWkG+mg==", - "requires": { - "@babel/runtime": "^7.4.5" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.5.5.tgz", - "integrity": "sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ==", - "requires": { - "regenerator-runtime": "^0.13.2" - } - }, - "regenerator-runtime": { - "version": "0.13.3", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", - "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==" - } + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" } }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + "@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "dev": true }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } - } + "@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "dev": true }, - "prelude-ls": { + "@protobufjs/path": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "dev": true + }, + "@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "dev": true }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" + "@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "dev": true }, - "prettier": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz", - "integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==", + "@redwoodjs/agent-ci": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@redwoodjs/agent-ci/-/agent-ci-0.6.0.tgz", + "integrity": "sha512-sZDtLNPA5knljlm/XxqdKtQH48XlrZEv5nk8vORL4FkklRdzULx81QjsVWpixBNrK/qYZt7y1QMw/ANl7lqxlg==", "dev": true, - "peer": true - }, - "pretty-time": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-0.2.0.tgz", - "integrity": "sha1-ejvexAScYgzXxCt/NCt01W5z104=", "requires": { - "is-number": "^2.0.2", - "nanoseconds": "^0.1.0" - }, - "dependencies": { - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "requires": { - "kind-of": "^3.0.2" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "@actions/workflow-parser": "0.3.43", + "dockerode": "^4.0.2", + "dtu-github-actions": "0.6.0", + "log-update": "^7.2.0", + "minimatch": "^10.2.1", + "yaml": "^2.8.2" } }, - "prettysize": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/prettysize/-/prettysize-0.0.3.tgz", - "integrity": "sha1-FK//amReWRpN3xxykZwjtBRhgaE=" + "@sindresorhus/is": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.2.0.tgz", + "integrity": "sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==", + "dev": true }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + "@speed-highlight/core": { + "version": "1.2.15", + "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.15.tgz", + "integrity": "sha512-BMq1K3DsElxDWawkX6eLg9+CKJrTVGCBAWVuHXVUV2u0s2711qiChLSId6ikYPfxhdYocLNt3wWwSvDiTvFabw==", + "dev": true }, - "prop-types": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.1.tgz", - "integrity": "sha512-f8Lku2z9kERjOCcnDOPm68EBJAO2K00Q5mSgPAUE/gJuBgsYLbVy6owSrtcHj90zt8PvW+z0qaIIgsIhHOa1Qw==", + "@types/node": { + "version": "24.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.3.tgz", + "integrity": "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==", + "dev": true, "requires": { - "object-assign": "^4.1.1", - "react-is": "^16.8.1" + "undici-types": "~7.8.0" } }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "ansi-escapes": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz", + "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", + "dev": true, "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "environment": "^1.0.0" } }, - "ps-tree": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", - "integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==", + "ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==" + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", "dev": true, "requires": { - "event-stream": "=3.3.4" + "safer-buffer": "~2.1.0" } }, - "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - }, - "query-string": { - "version": "6.8.3", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.8.3.tgz", - "integrity": "sha512-llcxWccnyaWlODe7A9hRjkvdCKamEKTh+wH8ITdTc3OhchaqUZteiSCX/2ablWHVrkVIe04dntnaZJ7BdyW0lQ==", + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, "requires": { - "decode-uri-component": "^0.2.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" + "tweetnacl": "^0.14.3" } }, - "randomatic": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, "requires": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - } + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "blake3-wasm": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz", + "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==", + "dev": true }, - "raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "body-parser": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz", + "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==", + "dev": true, "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } + "bytes": "^3.1.2", + "content-type": "^1.0.5", + "debug": "^4.4.3", + "http-errors": "^2.0.0", + "iconv-lite": "^0.7.0", + "on-finished": "^2.4.1", + "qs": "^6.14.1", + "raw-body": "^3.0.1", + "type-is": "^2.0.1" } }, - "react": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/react/-/react-16.9.0.tgz", - "integrity": "sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==", - "peer": true, + "brace-expansion": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz", + "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==", + "dev": true, "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" + "balanced-match": "^4.0.2" } }, - "react-copy-to-clipboard": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.1.tgz", - "integrity": "sha512-ELKq31/E3zjFs5rDWNCfFL4NvNFQvGRoJdAKReD/rUPA+xxiLPQmZBZBvy2vgH7V0GE9isIQpT9WXbwIVErYdA==", + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, "requires": { - "copy-to-clipboard": "^3", - "prop-types": "^15.5.8" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "react-dom": { - "version": "16.9.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.9.0.tgz", - "integrity": "sha512-YFT2rxO9hM70ewk9jq0y6sQk8cL02xm4+IzYBz75CQGlClQQ1Bxq0nhHF6OtSbit+AIahujJgb/CPRibFkMNJQ==", + "buildcheck": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.7.tgz", + "integrity": "sha512-lHblz4ahamxpTmnsk+MNTRWsjYKv965MwOrSJyeD588rR3Jcu7swE+0wN5F+PbL5cjgu/9ObkhfzEPuofEMwLA==", + "dev": true, + "optional": true + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.15.0" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" } }, - "react-easy-emoji": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/react-easy-emoji/-/react-easy-emoji-1.2.0.tgz", - "integrity": "sha1-YRRQLHnyL5wFNGn6cnrhKSh3oAA=", + "call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, "requires": { - "lodash.assign": "^4.0.8", - "string-replace-to-array": "^1.0.1" + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" } }, - "react-is": { - "version": "16.8.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.1.tgz", - "integrity": "sha512-ioMCzVDWvCvKD8eeT+iukyWrBGrA3DiFYkXfBsVYIRdaREZuBjENG+KjrikavCLasozqRWTwFUagU/O4vPpRMA==" + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true }, - "readable-stream": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.1.1.tgz", - "integrity": "sha512-DkN66hPyqDhnIQ6Jcsvx9bFjhw214O4poMBcIMgPVpQvNy9a0e0Uhg5SqySyDKAmUlwt8LonTBz1ezOnM8pUdA==", + "cli-cursor": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", "dev": true, "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "restore-cursor": "^5.0.0" } }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, "dependencies": { - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "ansi-regex": "^5.0.1" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, "requires": { - "safe-buffer": "~5.1.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" } } } }, - "realm-utils": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/realm-utils/-/realm-utils-1.0.9.tgz", - "integrity": "sha1-XHal/znkgWrywTOhYfQiHWYo7/Q=", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "requires": { - "app-root-path": "^1.3.0", - "mkdirp": "^0.5.1" - }, - "dependencies": { - "app-root-path": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-1.4.0.tgz", - "integrity": "sha1-YzXYZclkDQ+tmQBOWnkjIjjpLfo=" - } + "color-name": "~1.1.4" } }, - "referrer-policy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz", - "integrity": "sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==" + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true }, - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==" + "cookie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "dev": true }, - "regenerate-unicode-properties": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz", - "integrity": "sha512-s5NGghCE4itSlUS+0WUj88G6cfMVMmH8boTPNvABf8od+2dhT9WDlWu8n01raQAJZMOK8Ch6jSexaRO7swd6aw==", + "cpu-features": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.10.tgz", + "integrity": "sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==", + "dev": true, + "optional": true, "requires": { - "regenerate": "^1.4.0" + "buildcheck": "~0.0.6", + "nan": "^2.19.0" } }, - "regenerator-runtime": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", - "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" + "cronstrue": { + "version": "2.59.0", + "resolved": "https://registry.npmjs.org/cronstrue/-/cronstrue-2.59.0.tgz", + "integrity": "sha512-YKGmAy84hKH+hHIIER07VCAHf9u0Ldelx1uU6EBxsRPDXIA1m5fsKmJfyC3xBhw6cVC/1i83VdbL4PvepTrt8A==", + "dev": true }, - "regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", + "debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, "requires": { - "is-equal-shallow": "^0.1.3" + "ms": "^2.1.3" } }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true + }, + "docker-modem": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-5.0.7.tgz", + "integrity": "sha512-XJgGhoR/CLpqshm4d3L7rzH6t8NgDFUIIpztYlLHIApeJjMZKYJMz2zxPsYxnejq5h3ELYSw/RBsi3t5h7gNTA==", + "dev": true, "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" + "debug": "^4.1.1", + "readable-stream": "^3.5.0", + "split-ca": "^1.0.1", + "ssh2": "^1.15.0" } }, - "regexpu-core": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.4.0.tgz", - "integrity": "sha512-eDDWElbwwI3K0Lo6CqbQbA6FwgtCz4kYTarrri1okfkRLZAqstU+B3voZBCjg8Fl6iq0gXrJG6MvRgLthfvgOA==", + "dockerode": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-4.0.10.tgz", + "integrity": "sha512-8L/P9JynLBiG7/coiA4FlQXegHltRqS0a+KqI44P1zgQh8QLHTg7FKOwhkBgSJwZTeHsq30WRoVFLuwkfK0YFg==", + "dev": true, "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^7.0.0", - "regjsgen": "^0.5.0", - "regjsparser": "^0.6.0", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.0.2" + "@balena/dockerignore": "^1.0.2", + "@grpc/grpc-js": "^1.11.1", + "@grpc/proto-loader": "^0.7.13", + "docker-modem": "^5.0.7", + "protobufjs": "^7.3.2", + "tar-fs": "^2.1.4", + "uuid": "^10.0.0" } }, - "regjsgen": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", - "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==" - }, - "regjsparser": { + "dtu-github-actions": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", - "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", + "resolved": "https://registry.npmjs.org/dtu-github-actions/-/dtu-github-actions-0.6.0.tgz", + "integrity": "sha512-DZF1vpph3/3ZBa57tBLbkVw4Q35AfHGp481Gu8AlxJm4Q6BSfZgEQE0fUW5uFzBoalj28EmXb8urn8fBo6Ro/g==", + "dev": true, "requires": { - "jsesc": "~0.5.0" + "body-parser": "^2.2.2", + "jsonc-parser": "^3.3.1", + "minimatch": "^10.2.4", + "polka": "^0.5.2", + "zod": "^3.24.1" } }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "peer": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - } - }, - "request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, "requires": { - "lodash": "^4.17.19" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" } }, - "request-promise-native": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", - "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "dev": true, "requires": { - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" + "once": "^1.4.0" } }, - "resolve": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz", - "integrity": "sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==", + "environment": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", + "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", + "dev": true + }, + "error-stack-parser-es": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz", + "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==", + "dev": true + }, + "es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true + }, + "es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, "requires": { - "path-parse": "^1.0.6" + "es-errors": "^1.3.0" } }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + "esbuild": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz", + "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==", + "dev": true, + "requires": { + "@esbuild/aix-ppc64": "0.27.3", + "@esbuild/android-arm": "0.27.3", + "@esbuild/android-arm64": "0.27.3", + "@esbuild/android-x64": "0.27.3", + "@esbuild/darwin-arm64": "0.27.3", + "@esbuild/darwin-x64": "0.27.3", + "@esbuild/freebsd-arm64": "0.27.3", + "@esbuild/freebsd-x64": "0.27.3", + "@esbuild/linux-arm": "0.27.3", + "@esbuild/linux-arm64": "0.27.3", + "@esbuild/linux-ia32": "0.27.3", + "@esbuild/linux-loong64": "0.27.3", + "@esbuild/linux-mips64el": "0.27.3", + "@esbuild/linux-ppc64": "0.27.3", + "@esbuild/linux-riscv64": "0.27.3", + "@esbuild/linux-s390x": "0.27.3", + "@esbuild/linux-x64": "0.27.3", + "@esbuild/netbsd-arm64": "0.27.3", + "@esbuild/netbsd-x64": "0.27.3", + "@esbuild/openbsd-arm64": "0.27.3", + "@esbuild/openbsd-x64": "0.27.3", + "@esbuild/openharmony-arm64": "0.27.3", + "@esbuild/sunos-x64": "0.27.3", + "@esbuild/win32-arm64": "0.27.3", + "@esbuild/win32-ia32": "0.27.3", + "@esbuild/win32-x64": "0.27.3" + } + }, + "escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true }, - "resolve-pathname": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-2.2.0.tgz", - "integrity": "sha512-bAFz9ld18RzJfddgrO2e/0S2O81710++chRMUxHjXOYKF6jTAMrUNZrEZ1PvV0zlhfjidm08iRPdTLPno1FuRg==" + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-east-asian-width": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.5.0.tgz", + "integrity": "sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==", + "dev": true + }, + "get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" } }, - "resumer": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", - "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", + "get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, "requires": { - "through": "~2.3.4" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" } }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - }, - "retina-dom-to-image": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/retina-dom-to-image/-/retina-dom-to-image-2.5.6.tgz", - "integrity": "sha1-YN4Ij0v/W5FRG5rW6EzmE5Ht69M=" - }, - "rimraf": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.0.tgz", - "integrity": "sha512-NDGVxTsjqfunkds7CqsOiEnxln4Bo7Nddl3XhS4pXg5OzwkLqJ971ZVAAnB+DDLnF76N+VnDEiBHaVV8I06SUg==", + "glob": { + "version": "13.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz", + "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==", + "dev": true, "requires": { - "glob": "^7.1.3" + "minimatch": "^10.2.2", + "minipass": "^7.1.3", + "path-scurry": "^2.0.2" } }, - "run-async": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true + }, + "graphql": { + "version": "16.13.2", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.13.2.tgz", + "integrity": "sha512-5bJ+nf/UCpAjHM8i06fl7eLyVC9iuNAjm9qzkiu2ZGhM0VscSvS6WDPfAwkdkBuoXGM9FJSbKl6wylMwP9Ktig==" + }, + "graphql-depth-limit": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/graphql-depth-limit/-/graphql-depth-limit-1.1.0.tgz", + "integrity": "sha512-+3B2BaG8qQ8E18kzk9yiSdAa75i/hnnOwgSeAxVJctGQPvmeiLtqKOYF6HETCyRjiF7Xfsyal0HbLlxCQkgkrw==", "requires": { - "is-promise": "^2.1.0" + "arrify": "^1.0.1" } }, - "rx-lite": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", - "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=" + "graphql-http": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.22.4.tgz", + "integrity": "sha512-OC3ucK988teMf+Ak/O+ZJ0N2ukcgrEurypp8ePyJFWq83VzwRAmHxxr+XxrMpxO/FIwI4a7m/Fzv3tWGJv0wPA==", + "requires": {} + }, + "has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true }, - "rx-lite-aggregates": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", - "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, "requires": { - "rx-lite": "*" + "function-bind": "^1.1.2" } }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "dev": true, "requires": { - "ret": "~0.1.10" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" } }, - "safejson": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safejson/-/safejson-1.0.1.tgz", - "integrity": "sha1-W8u5UzuW/OEOY1b0IAF8FqT5yZg=" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "ical-generator": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/ical-generator/-/ical-generator-10.1.0.tgz", + "integrity": "sha512-VgWzox2svupw4HoZo9Ym0pmj50Cr7CO+By/TraNUVTXQL5Qh0p13iGNzizhXd/KDuzOHUSSXwUWIMZmBHQU65Q==", + "requires": {} }, - "scheduler": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.15.0.tgz", - "integrity": "sha512-xAefmSfN6jqAa7Kuq7LIJY0bwAPG3xlCj0HMEBQk1lxYiDKZscY2xJ5U/61ZTrYbmNQbXa+gc7czPkVo11tnCg==", + "iconv-lite": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz", + "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==", + "dev": true, "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "safer-buffer": ">= 2.1.2 < 3.0.0" } }, - "scroll-into-view-if-needed": { - "version": "2.2.20", - "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.20.tgz", - "integrity": "sha512-P9kYMrhi9f6dvWwTGpO5I3HgjSU/8Mts7xL3lkoH5xlewK7O9Obdc5WmMCzppln7bCVGNmf3qfoZXrpCeyNJXw==", - "requires": { - "compute-scroll-into-view": "1.0.11" - } + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, - "send": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", - "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "is-fullwidth-code-point": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz", + "integrity": "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==", + "dev": true, "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } - } + "get-east-asian-width": "^1.3.1" } }, - "serve-static": { - "version": "1.16.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", - "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", - "requires": { - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.19.0" - } + "jsonc-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", + "dev": true }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } + "kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "log-update": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-7.2.0.tgz", + "integrity": "sha512-iLs7dGSyjZiUgvrUvuD3FndAxVJk+TywBkkkwUSm9HdYoskJalWg5qVsEiXeufPvRVPbCUmNQewg798rx+sPXg==", "dev": true, "requires": { - "shebang-regex": "^3.0.0" + "ansi-escapes": "^7.3.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^8.0.0", + "strip-ansi": "^7.2.0", + "wrap-ansi": "^10.0.0" } }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "long": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", + "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", "dev": true }, - "shorthash": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/shorthash/-/shorthash-0.0.2.tgz", - "integrity": "sha1-WbJo7sveWQOLMNogK8+93rLEpOs=" + "lru-cache": { + "version": "11.2.7", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.7.tgz", + "integrity": "sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==", + "dev": true }, - "side-channel": { + "matchit": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", - "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "resolved": "https://registry.npmjs.org/matchit/-/matchit-1.1.0.tgz", + "integrity": "sha512-+nGYoOlfHmxe5BW5tE0EMJppXEwdSf8uBA1GTZC7Q77kbT35+VKLYJMzVNWCHSsga1ps1tPYFtFyvxvKzWVmMA==", + "dev": true, "requires": { - "es-errors": "^1.3.0", - "object-inspect": "^1.13.3", - "side-channel-list": "^1.0.0", - "side-channel-map": "^1.0.1", - "side-channel-weakmap": "^1.0.2" - }, - "dependencies": { - "object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" - } + "@arr/every": "^1.0.0" } }, - "side-channel-list": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", - "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", - "requires": { - "es-errors": "^1.3.0", - "object-inspect": "^1.13.3" - }, - "dependencies": { - "object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" - } - } + "math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true }, - "side-channel-map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", - "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", - "requires": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.5", - "object-inspect": "^1.13.3" - }, - "dependencies": { - "object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" - } - } + "media-typer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", + "dev": true }, - "side-channel-weakmap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", - "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", - "requires": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.5", - "object-inspect": "^1.13.3", - "side-channel-map": "^1.0.1" - }, - "dependencies": { - "object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" - } - } + "mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "dev": true }, - "signal-exit": { + "mime-types": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" - }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "dev": true, "requires": { - "is-arrayish": "^0.3.1" + "mime-db": "^1.54.0" } }, - "smooth-scroll-into-view-if-needed": { - "version": "1.1.23", - "resolved": "https://registry.npmjs.org/smooth-scroll-into-view-if-needed/-/smooth-scroll-into-view-if-needed-1.1.23.tgz", - "integrity": "sha512-52177sj5yR2novVCB+vJRCYEUkHFz2mq5UKmm5wwIWs0ZtC1sotVaTjKBsuNzBPF4nOV1NxMctyD4V/VMmivCQ==", - "requires": { - "scroll-into-view-if-needed": "2.2.20" - } + "mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "dev": true }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "miniflare": { + "version": "4.20260401.0", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20260401.0.tgz", + "integrity": "sha512-lngHPzZFN9sxYG/mhzvnWiBMNVAN5MsO/7g32ttJ07rymtiK/ZBalODTKb8Od+BQdlU5DOR4CjVt9NydjnUyYg==", + "dev": true, "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } + "@cspotcode/source-map-support": "0.8.1", + "sharp": "^0.34.5", + "undici": "7.24.4", + "workerd": "1.20260401.1", + "ws": "8.18.0", + "youch": "4.1.0-beta.10" } }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "minimatch": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", + "dev": true, "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "brace-expansion": "^5.0.5" } }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "requires": { - "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } + "minipass": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", + "dev": true }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true }, - "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "requires": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } + "mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true }, - "sourcemap-blender": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sourcemap-blender/-/sourcemap-blender-1.0.5.tgz", - "integrity": "sha512-GPhjCmDtJ8YY6zt1L6kP6WtBg6WrdWt5hw2Wmgt9rwC3yiwLo9vEuabh/YYSZ5KmFV20hVkGdkTwpXtT2E65TA==", - "requires": { - "source-map": "^0.7.3" - }, - "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - } - } + "nan": { + "version": "2.26.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.26.2.tgz", + "integrity": "sha512-0tTvBTYkt3tdGw22nrAy50x7gpbGCCFH3AFcyS5WiUu7Eu4vWlri1woE6qHBSfy11vksDqkiwjOnlR7WV8G1Hw==", + "dev": true, + "optional": true }, - "split": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", - "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", + "object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "requires": { - "through": "2" + "ee-first": "1.1.1" } }, - "split-on-first": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", - "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, "requires": { - "extend-shallow": "^3.0.0" + "wrappy": "1" } }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "onetime": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", + "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", + "dev": true, "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + "mimic-function": "^5.0.0" + } }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "path-scurry": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz", + "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==", + "dev": true, "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - } + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" } }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + "path-to-regexp": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true }, - "stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + "pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "polka": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/polka/-/polka-0.5.2.tgz", + "integrity": "sha512-FVg3vDmCqP80tOrs+OeNlgXYmFppTXdjD5E7I4ET1NjvtNmQrb1/mJibybKkb/d4NA7YWAr1ojxuhpL3FHqdlw==", + "dev": true, "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "@polka/url": "^0.5.0", + "trouter": "^2.0.1" } }, - "stream-combiner": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", - "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", + "protobufjs": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz", + "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==", "dev": true, "requires": { - "duplexer": "~0.1.1" - } - }, - "strict-uri-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", - "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=" - }, - "string_decoder": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz", - "integrity": "sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w==", + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + } + }, + "pump": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz", + "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==", + "dev": true, "requires": { - "safe-buffer": "~5.1.0" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true - }, - "string-replace-to-array": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string-replace-to-array/-/string-replace-to-array-1.0.3.tgz", - "integrity": "sha1-yT66mZpe4k1zGuu69auja18Y978=", + "qs": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz", + "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==", + "dev": true, "requires": { - "invariant": "^2.2.1", - "lodash.flatten": "^4.2.0", - "lodash.isstring": "^4.0.1" + "side-channel": "^1.1.0" } }, - "string.prototype.trim": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", - "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", + "raw-body": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", + "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", + "dev": true, "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.5.0", - "function-bind": "^1.0.2" + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.7.0", + "unpipe": "~1.0.0" } }, - "tape": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/tape/-/tape-4.10.1.tgz", - "integrity": "sha512-G0DywYV1jQeY3axeYnXUOt6ktnxS9OPJh97FGR3nrua8lhWi1zPflLxcAHavZ7Jf3qUfY7cxcVIVFa4mY2IY1w==", + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, "requires": { - "deep-equal": "~1.0.1", - "defined": "~1.0.0", - "for-each": "~0.3.3", - "function-bind": "~1.1.1", - "glob": "~7.1.3", - "has": "~1.0.3", - "inherits": "~2.0.3", - "minimist": "~1.2.0", - "object-inspect": "~1.6.0", - "resolve": "~1.10.0", - "resumer": "~0.0.0", - "string.prototype.trim": "~1.1.2", - "through": "~2.3.8" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, - "text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + "restore-cursor": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", + "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", + "dev": true, + "requires": { + "onetime": "^7.0.0", + "signal-exit": "^4.1.0" + } }, - "timestring": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/timestring/-/timestring-5.0.1.tgz", - "integrity": "sha512-0VfOVpaTYqBMTEpjwcY5mB+72YYjFI44Z5F2q80ZiIyDn5pRJm+rEV1OEM8xfnf5/FdtckcrTERTp9TbrlMMHw==" + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true }, - "tiny-invariant": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.0.3.tgz", - "integrity": "sha512-ytQx8T4DL8PjlX53yYzcIC0WhIZbpR0p1qcYjw2pHu3w6UtgWwFJQ/02cnhOnBBhlFx/edUIfcagCaQSe3KMWg==" + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true }, - "tiny-warning": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.2.tgz", - "integrity": "sha512-rru86D9CpQRLvsFG5XFdy0KdLAvjdQDyZCsRcuu60WtzFylDM3eAWSxEVz5kzL2Gp544XiUvPbVKtOA/txLi9Q==" + "semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true }, - "title-case-minors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/title-case-minors/-/title-case-minors-1.0.0.tgz", - "integrity": "sha1-UfFwN8KUdHodHNpCS1AEyG2OsRU=" + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "dev": true, "requires": { - "os-tmpdir": "~1.0.2" + "@img/colour": "^1.0.0", + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" } }, - "to-capital-case": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-capital-case/-/to-capital-case-1.0.0.tgz", - "integrity": "sha1-pXxQFP1aNyF88FCZ/4pCG7+cm38=", + "side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, "requires": { - "to-space-case": "^1.0.0" + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" } }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" - }, - "to-no-case": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/to-no-case/-/to-no-case-1.0.2.tgz", - "integrity": "sha1-xyKQcWTvaxeBMsjmmTAhLRtKoWo=" - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" } }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" } }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" } }, - "to-sentence-case": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-sentence-case/-/to-sentence-case-1.0.0.tgz", - "integrity": "sha1-xIO/NkdzflxzjvcAb+Ng1fmcVy4=", - "requires": { - "to-no-case": "^1.0.0" - } + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true }, - "to-space-case": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-space-case/-/to-space-case-1.0.0.tgz", - "integrity": "sha1-sFLar7Gysp3HcM6gFj5ewOvJ/Bc=", + "slice-ansi": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-8.0.0.tgz", + "integrity": "sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==", + "dev": true, "requires": { - "to-no-case": "^1.0.0" + "ansi-styles": "^6.2.3", + "is-fullwidth-code-point": "^5.1.0" } }, - "to-title-case": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-title-case/-/to-title-case-1.0.0.tgz", - "integrity": "sha1-rKiPidYGTeUBCKl86g20SCfoAGE=", + "split-ca": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split-ca/-/split-ca-1.0.1.tgz", + "integrity": "sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==", + "dev": true + }, + "ssh2": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.17.0.tgz", + "integrity": "sha512-wPldCk3asibAjQ/kziWQQt1Wh3PgDFpC0XpwclzKcdT1vql6KeYxf5LIt4nlFkUeR8WuphYMKqUA56X4rjbfgQ==", + "dev": true, "requires": { - "escape-regexp-component": "^1.0.2", - "title-case-minors": "^1.0.0", - "to-capital-case": "^1.0.0", - "to-sentence-case": "^1.0.0" + "asn1": "^0.2.6", + "bcrypt-pbkdf": "^1.0.2", + "cpu-features": "~0.0.10", + "nan": "^2.23.0" } }, - "toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + "statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "dev": true }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "safe-buffer": "~5.2.0" } }, - "triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, - "tsc-watch": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/tsc-watch/-/tsc-watch-7.1.1.tgz", - "integrity": "sha512-r6t37Dkk4vK44HwxOe+OzjpE/gDamZAwqXhtcAJD/hPVblcjJK45NxbK0HcDASXG0U4pEnCh640JZbeDVSC6yA==", + "string-width": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-8.2.0.tgz", + "integrity": "sha512-6hJPQ8N0V0P3SNmP6h2J99RLuzrWz2gvT7VnK5tKvrNqJoyS9W4/Fb8mo31UiPvy00z7DQXkP2hnKBVav76thw==", "dev": true, "requires": { - "cross-spawn": "^7.0.6", - "node-cleanup": "^2.1.2", - "ps-tree": "^1.2.0", - "string-argv": "^0.3.2" + "get-east-asian-width": "^1.5.0", + "strip-ansi": "^7.1.2" } }, - "tslib": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", - "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==" - }, - "tslint": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-6.1.3.tgz", - "integrity": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==", + "strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", "dev": true, "requires": { - "@babel/code-frame": "^7.0.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^4.0.1", - "glob": "^7.1.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.3", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.13.0", - "tsutils": "^2.29.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } + "ansi-regex": "^6.2.2" } }, - "tslint-config-prettier": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz", - "integrity": "sha512-xPw9PgNPLG3iKRxmK7DWr+Ea/SzrvfHtjFt5LBl61gk2UBG/DB9kCXRjv+xyIU1rUtnayLeMUVJBcMX8Z17nDg==", + "supports-color": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz", + "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==", "dev": true }, - "tslint-plugin-prettier": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslint-plugin-prettier/-/tslint-plugin-prettier-2.3.0.tgz", - "integrity": "sha512-F9e4K03yc9xuvv+A0v1EmjcnDwpz8SpCD8HzqSDe0eyg34cBinwn9JjmnnRrNAs4HdleRQj7qijp+P/JTxt4vA==", + "tar-fs": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz", + "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==", "dev": true, "requires": { - "eslint-plugin-prettier": "^2.2.0", - "lines-and-columns": "^1.1.6", - "tslib": "^1.7.1" + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" } }, - "tsutils": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", - "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, "requires": { - "tslib": "^1.8.1" + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" } }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + }, + "trouter": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/trouter/-/trouter-2.0.1.tgz", + "integrity": "sha512-kr8SKKw94OI+xTGOkfsvwZQ8mWoikZDd2n8XZHjJVZUARZT+4/VV6cacRS6CLsH9bNm+HFIPU1Zx4CnNnb4qlQ==", + "dev": true, "requires": { - "safe-buffer": "^5.0.1" + "matchit": "^1.0.0" } }, + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "optional": true + }, "tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-graphql": { - "version": "0.17.6", - "resolved": "https://registry.npmjs.org/type-graphql/-/type-graphql-0.17.6.tgz", - "integrity": "sha512-UFZaMMnpae3zeu9qCdWN82hm8wQeYu/+sQFbG5v3vlTtctZ9Xle9bvNi/rzSbQaG94K9Y5O5AGxjVKKMpEAMYA==", - "requires": { - "@types/glob": "^7.1.1", - "@types/node": "*", - "@types/semver": "^6.0.1", - "class-validator": ">=0.9.1", - "glob": "^7.1.4", - "graphql-query-complexity": "^0.3.0", - "graphql-subscriptions": "^1.1.0", - "semver": "^6.2.0", - "tslib": "^1.10.0" - }, - "dependencies": { - "tslib": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", - "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==" - } - } + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true }, "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", + "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==", + "dev": true, "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "content-type": "^1.0.5", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" } }, "typescript": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", - "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", - "peer": true - }, - "uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "requires": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", + "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", + "dev": true }, - "ultron": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", - "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=" + "undici": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.24.4.tgz", + "integrity": "sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==", + "dev": true }, "undici-types": { "version": "7.8.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", - "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==" - }, - "unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" - }, - "unicode-match-property-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", - "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", - "requires": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz", - "integrity": "sha512-Rx7yODZC1L/T8XKo/2kNzVAQaRE88AaMvI1EF/Xnj3GW2wzN6fop9DDWuFAKUVFH7vozkz26DzP0qyWLKLIVPQ==" - }, - "unicode-property-aliases-ecmascript": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz", - "integrity": "sha512-2WSLa6OdYd2ng8oqiGIWnJqyFArvhn+5vgx5GTxMbUYjCYKUcuKS62YLFF0R/BDGlB1yzXjQOLtPAfHsgirEpg==" + "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", + "dev": true }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "unenv": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.24.tgz", + "integrity": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==", + "dev": true, "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" + "pathe": "^2.0.3" } }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - }, "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" - }, - "unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - } - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "requires": { - "punycode": "^2.1.0" - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" - }, - "url-template": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/url-template/-/url-template-2.0.8.tgz", - "integrity": "sha1-/FZaPMy/93MMd19WQflVV5FDnyE=" - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "utils-extend": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/utils-extend/-/utils-extend-1.0.8.tgz", - "integrity": "sha1-zP17ZFQPjpDuIe7Fd2nQZRyril8=" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true }, "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" - }, - "validator": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/validator/-/validator-13.0.0.tgz", - "integrity": "sha512-anYx5fURbgF04lQV18nEQWZ/3wHGnxiKdG4aL8J+jEDsm98n/sU/bey+tYk6tnGJzm7ioh5FoqrAiQ6m03IgaA==" - }, - "value-equal": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-0.4.0.tgz", - "integrity": "sha512-x+cYdNnaA3CxvMaTX0INdTCN8m8aF2uY9BvEqmxuYp8bL09cs/kWVQPVGcA35fMktdOsP69IgU7wFj/61dJHEw==" - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", + "dev": true }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "workerd": { + "version": "1.20260401.1", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260401.1.tgz", + "integrity": "sha512-mUYCd+ohaWJWF5nhDzxugWaAD/DM8Dw0ze3B7bu8JaA7S70+XQJXcvcvwE8C4qGcxSdCyqjsrFzqxKubECDwzg==", + "dev": true, "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" + "@cloudflare/workerd-darwin-64": "1.20260401.1", + "@cloudflare/workerd-darwin-arm64": "1.20260401.1", + "@cloudflare/workerd-linux-64": "1.20260401.1", + "@cloudflare/workerd-linux-arm64": "1.20260401.1", + "@cloudflare/workerd-windows-64": "1.20260401.1" } }, - "watch": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/watch/-/watch-1.0.2.tgz", - "integrity": "sha1-NApxe952Vyb6CqB9ch4BR6VR3ww=", + "wrangler": { + "version": "4.80.0", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.80.0.tgz", + "integrity": "sha512-2ZKF7uPeOZy65BGk3YfvqBCPo/xH1MrAlMmH9mVP+tCNBrTUMnwOHSj1HrZHgR8LttkAqhko0fGz+I4ax1rzyQ==", + "dev": true, "requires": { - "exec-sh": "^0.2.0", - "minimist": "^1.2.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } + "@cloudflare/kv-asset-handler": "0.4.2", + "@cloudflare/unenv-preset": "2.16.0", + "blake3-wasm": "2.1.5", + "esbuild": "0.27.3", + "fsevents": "~2.3.2", + "miniflare": "4.20260401.0", + "path-to-regexp": "6.3.0", + "unenv": "2.0.0-rc.24", + "workerd": "1.20260401.1" + } + }, + "wrap-ansi": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-10.0.0.tgz", + "integrity": "sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.2.3", + "string-width": "^8.2.0", + "strip-ansi": "^7.1.2" } }, - "whatwg-fetch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true, - "requires": { - "isexe": "^2.0.0" - } + "requires": {} }, - "window-or-global": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/window-or-global/-/window-or-global-1.0.1.tgz", - "integrity": "sha1-2+RboqKRqrxW1iz2bEW3+jIpRt4=" + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true }, - "winston": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz", - "integrity": "sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw==", - "requires": { - "@dabh/diagnostics": "^2.0.2", - "async": "^3.1.0", - "is-stream": "^2.0.0", - "logform": "^2.2.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.4.0" - }, - "dependencies": { - "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } + "yaml": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz", + "integrity": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==", + "dev": true }, - "winston-transport": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz", - "integrity": "sha512-Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw==", + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, "requires": { - "readable-stream": "^2.3.7", - "triple-beam": "^1.2.0" + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, "requires": { - "safe-buffer": "~5.1.0" + "ansi-regex": "^5.0.1" } } } }, - "wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true }, - "ws": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz", - "integrity": "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==", + "youch": { + "version": "4.1.0-beta.10", + "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.10.tgz", + "integrity": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==", + "dev": true, "requires": { - "options": ">=0.0.5", - "ultron": "1.0.x" + "@poppinss/colors": "^4.1.5", + "@poppinss/dumper": "^0.6.4", + "@speed-highlight/core": "^1.2.7", + "cookie": "^1.0.2", + "youch-core": "^0.3.3" } }, - "x-xss-protection": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.3.0.tgz", - "integrity": "sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg==" + "youch-core": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.3.tgz", + "integrity": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==", + "dev": true, + "requires": { + "@poppinss/exception": "^1.2.2", + "error-stack-parser-es": "^1.0.5" + } }, - "zerofill": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/zerofill/-/zerofill-0.1.0.tgz", - "integrity": "sha1-s0nnVMYnwRNAxK84mk+e+wBjQs0=" + "zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "dev": true } } } diff --git a/package.json b/package.json index 2e311dd4..2207451e 100644 --- a/package.json +++ b/package.json @@ -3,57 +3,35 @@ "version": "0.0.0", "private": true, "description": "React Finland GraphQL API", - "main": "./build/server", + "packageManager": "npm@11.11.0", "scripts": { - "generate:all": "npm run generate:indices", - "generate:indices": "node utils/generate-indices.js content --verbose", - "generate:reason-conf": "node utils/generate-reason-conf.js", - "generate:typeof": "node utils/generate-typeof.js", - "build": "rimraf build && tsc", - "lint": "tslint --config tslint.json content/**/*.ts server/**/*.ts --fix", - "start": "tsc-watch --onSuccess \"node ./build/server\" --onFailure \"echo Beep! Compilation Failed\"", - "heroku:start": "node ./build/server/index.js", - "format": "prettier content/**/*.ts server/**/*.ts --write", - "heroku-postbuild": "echo Skip build on Heroku" + "agent-ci:patch": "node ./scripts/patch-agent-ci.mjs", + "generate:indices": "tsc && node build/utils/generate-indices.js content --verbose", + "cf:check": "TOKEN=test-token HOME=$PWD wrangler deploy --dry-run --outdir .wrangler-dry-run", + "cf:deploy": "wrangler deploy", + "cf:dev": "wrangler dev", + "ci:local": "npm run agent-ci:patch && node ./scripts/run-agent-ci.mjs run --workflow .github/workflows/ci.yml", + "ci:local:quiet": "npm run agent-ci:patch && node ./scripts/run-agent-ci.mjs run --quiet --workflow .github/workflows/ci.yml", + "ci:local:all": "npm run agent-ci:patch && node ./scripts/run-agent-ci.mjs run --all", + "ci:local:retry": "npm run agent-ci:patch && node ./scripts/run-agent-ci.mjs retry", + "types:check": "tsc --noEmit", + "test": "tsc && node --test test/api.integration.test.cjs", + "quality:gate:fast": "npm run types:check && npm test && npm run cf:check", + "quality:gate": "npm run ci:local:quiet" }, "keywords": [], "author": "", "license": "MIT", - "devDependencies": { - "@types/compression": "1.0.1", - "@types/cors": "^2.8.6", - "@types/dotenv": "^6.1.1", - "@types/express": "4.17.9", - "@types/file-saver": "^2.0.1", - "@types/fs-extra": "^8.0.0", - "@types/graphql": "^14.5.0", - "@types/helmet": "0.0.44", - "@types/history": "^4.7.3", - "@types/lodash": "^4.14.138", - "@types/md5": "^2.1.33", - "@types/morgan": "^1.7.37", - "@types/node": "^24.0.3", - "@types/query-string": "^6.3.0", - "@types/react": "^16.9.2", - "@types/react-copy-to-clipboard": "^4.2.6", - "@types/react-dom": "^16.9.0", - "@types/request": "^2.48.3", - "@types/request-promise-native": "^1.0.16", - "@types/window-or-global": "^1.0.0", - "camelcase": "^5.3.1", - "cheerio": "^1.0.0-rc.3", - "csstype": "^2.6.6", - "flatmap": "0.0.3", - "glob": "^7.1.7", - "mri": "^1.1.6", - "prettier": "^2.3.1", - "tsc-watch": "^7.1.1", - "tslint": "^6.1.3", - "tslint-config-prettier": "^1.18.0", - "tslint-plugin-prettier": "^2.3.0" + "engines": { + "node": "24.x" }, - "resolutions": { - "@types/express": "4.17.9" + "devDependencies": { + "@redwoodjs/agent-ci": "0.6.0", + "@types/node": "24.0.3", + "glob": "13.0.6", + "mri": "1.2.0", + "typescript": "6.0.2", + "wrangler": "4.80.0" }, "repository": { "type": "git", @@ -63,62 +41,9 @@ "url": "https://github.com/ReactFinland/graphql-api/issues" }, "dependencies": { - "@emotion/core": "^10.0.17", - "@emotion/styled": "^10.0.17", - "bent": "^6.1.0", - "body-parser": "^1.19.0", - "compression": "^1.7.4", - "cors": "^2.8.5", - "csv-parse": "^4.4.6", - "csv-stringify": "^5.3.3", - "date-range-array": "^2.1.0", - "dotenv": "^8.1.0", - "expeditious-engine-memory": "^0.2.1", - "express": "^4.18.2", - "express-expeditious": "^5.1.1", - "file-saver": "^2.0.2", - "fs-extra": "^8.1.0", - "fuse-box": "^3.7.1", - "googleapis": "^42.0.0", - "graphql": "^14.5.4", - "graphql-depth-limit": "^1.1.0", - "graphql-http": "^1.22.4", - "graphql-request": "^1.8.2", - "helmet": "^3.21.0", - "hex-to-rgba": "^2.0.1", - "history": "^4.9.0", - "ical-generator": "^1.7.2", - "just-kebab-case": "^1.1.0", - "lodash": "^4.17.21", - "markdown-to-jsx": "^6.11.4", - "md5": "^2.3.0", - "mkdirp": "^0.5.1", - "morgan": "^1.10.0", - "polished": "^3.4.1", - "query-string": "^6.8.3", - "react": "^16.9.0", - "react-copy-to-clipboard": "^5.0.1", - "react-dom": "^16.9.0", - "react-easy-emoji": "^1.2.0", - "reflect-metadata": "^0.1.13", - "request": "^2.88.2", - "request-promise-native": "^1.0.9", - "retina-dom-to-image": "^2.5.6", - "rimraf": "^3.0.0", - "smooth-scroll-into-view-if-needed": "^1.1.23", - "to-title-case": "^1.0.0", - "type-graphql": "^0.17.6", - "typescript": "^5.8.3", - "uglify-es": "^3.3.9", - "window-or-global": "^1.0.1", - "winston": "^3.3.3", - "zerofill": "^0.1.0" - }, - "lint-staged": { - "*.--write": [ - "prettier --write", - "git add" - ] - }, - "heroku-run-build-script": true + "graphql": "16.13.2", + "graphql-depth-limit": "1.1.0", + "graphql-http": "1.22.4", + "ical-generator": "10.1.0" + } } diff --git a/scripts/patch-agent-ci.mjs b/scripts/patch-agent-ci.mjs new file mode 100644 index 00000000..aec6b13c --- /dev/null +++ b/scripts/patch-agent-ci.mjs @@ -0,0 +1,49 @@ +import fs from "node:fs"; +import path from "node:path"; + +const repoRoot = process.cwd(); +const packageJsonPath = path.join(repoRoot, "package.json"); +const agentCiConfigPath = path.join( + repoRoot, + "node_modules", + "@redwoodjs", + "agent-ci", + "dist", + "docker", + "container-config.js" +); + +const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8")); +const packageManager = String(packageJson.packageManager ?? ""); + +if (!packageManager.startsWith("npm@")) { + process.exit(0); +} + +if (!fs.existsSync(agentCiConfigPath)) { + console.error(`[agent-ci patch] Missing ${agentCiConfigPath}`); + process.exit(1); +} + +const pnpmMountLine = + " `${h(pnpmStoreDir)}:/home/runner/_work/.pnpm-store`,\n"; +const patchComment = + " // graphql-api patch: disable the pnpm store mount for npm-based local CI\n"; + +const source = fs.readFileSync(agentCiConfigPath, "utf8"); + +if (source.includes(patchComment)) { + process.exit(0); +} + +if (!source.includes(pnpmMountLine)) { + console.error( + "[agent-ci patch] Expected pnpm store mount line was not found." + ); + process.exit(1); +} + +fs.writeFileSync( + agentCiConfigPath, + source.replace(pnpmMountLine, patchComment) +); diff --git a/scripts/run-agent-ci.mjs b/scripts/run-agent-ci.mjs new file mode 100644 index 00000000..10d6b802 --- /dev/null +++ b/scripts/run-agent-ci.mjs @@ -0,0 +1,47 @@ +import { execFileSync, spawnSync } from "node:child_process"; +import path from "node:path"; +import { createRequire } from "node:module"; + +const args = process.argv.slice(2); +const dockerHost = process.env.DOCKER_HOST || resolveDockerHost(); +const require = createRequire(import.meta.url); +const agentCiPackagePath = require.resolve("@redwoodjs/agent-ci/package.json"); +const { bin } = require(agentCiPackagePath); +const agentCiEntrypoint = path.join( + path.dirname(agentCiPackagePath), + bin["agent-ci"] +); +const result = spawnSync(process.execPath, [agentCiEntrypoint, ...args], { + env: { + ...process.env, + DOCKER_HOST: dockerHost, + }, + stdio: ["ignore", "inherit", "inherit"], +}); + +if (result.error) { + throw result.error; +} + +process.exit(result.status ?? 1); + +function resolveDockerHost() { + try { + const context = execFileSync("docker", ["context", "show"], { + encoding: "utf8", + }).trim(); + const inspected = execFileSync("docker", ["context", "inspect", context], { + encoding: "utf8", + }); + const [definition] = JSON.parse(inspected); + const host = definition?.Endpoints?.docker?.Host; + + if (typeof host === "string" && host.length > 0) { + return host; + } + } catch { + // Fall back to the default Docker socket below. + } + + return "unix:///var/run/docker.sock"; +} diff --git a/server/app.ts b/server/app.ts deleted file mode 100644 index a8487188..00000000 --- a/server/app.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { json, urlencoded } from "body-parser"; -import compression from "compression"; -import express from "express"; -import helmet from "helmet"; -import morgan from "morgan"; -import logger from "./logger"; -import createRouter from "./routes"; - -async function createApp() { - const app = express(); - - // Wear a helmet for extra security. - app.use( - helmet({ - frameguard: false, - }) - ); - - // Use compression (gzip) for responses. - app.use(compression()); - - // Automatically decode json. - app.use( - json({ - limit: "50mb", - }) - ); - - // Automatically decode POST. - app.use( - urlencoded({ - extended: true, - }) - ); - - // Add custom configured logger (morgan through winston). - app.use( - morgan("combined", { - stream: { - write: message => logger.info(message), - }, - }) - ); - - const routes = await createRouter(); - - app.use("/", routes); - - return app; -} - -export default createApp; diff --git a/server/create-request-handler.ts b/server/create-request-handler.ts new file mode 100644 index 00000000..8df5ae91 --- /dev/null +++ b/server/create-request-handler.ts @@ -0,0 +1,67 @@ +import generateSchema from "./schema/graphql-schema"; +import handleCalendarRequest from "./routes/calendar"; +import createGraphQLRequestHandler from "./routes/graphql"; +import handlePingRequest from "./routes/ping"; + +export interface CreateRequestHandlerOptions { + mediaUrl?: string; + projectRoot: string; + expectedToken?: string; +} + +async function createRequestHandler(options: CreateRequestHandlerOptions) { + const mediaUrl = options.mediaUrl || "/media"; + const expectedToken = options.expectedToken; + const schema = await generateSchema(); + const graphqlHandler = createGraphQLRequestHandler( + schema, + options.projectRoot, + mediaUrl + ); + + return async function handleRequest(request: Request): Promise { + if (request.method === "OPTIONS") { + return withDefaultHeaders(new Response(null, { status: 204 })); + } + + const pathname = new URL(request.url).pathname; + let response: Response | null = null; + + if (pathname === "/calendar-2026.ics") { + response = handleCalendarRequest(); + } else if (!hasValidToken(request, expectedToken)) { + response = new Response("Unauthorized", { status: 401 }); + } else if (pathname === "/ping") { + response = handlePingRequest(); + } else if (pathname === "/graphql") { + response = await graphqlHandler(request); + } + + return withDefaultHeaders( + response || new Response("Not found", { status: 404 }) + ); + }; +} + +function hasValidToken(request: Request, expectedToken?: string) { + return Boolean( + expectedToken && request.headers.get("TOKEN") === expectedToken + ); +} + +export function withDefaultHeaders(response: Response) { + const headers = new Headers(response.headers); + + headers.set("access-control-allow-origin", "*"); + headers.set("access-control-allow-headers", "content-type, TOKEN"); + headers.set("access-control-allow-methods", "GET,POST,OPTIONS"); + headers.set("x-content-type-options", "nosniff"); + + return new Response(response.body, { + headers, + status: response.status, + statusText: response.statusText, + }); +} + +export default createRequestHandler; diff --git a/server/index.ts b/server/index.ts deleted file mode 100644 index 624a28f7..00000000 --- a/server/index.ts +++ /dev/null @@ -1,36 +0,0 @@ -import dotenv from "dotenv"; -import * as path from "path"; -import "reflect-metadata"; // Needed by type-graphql - -// FIXME: Resolve against project root, not module as this is brittle -dotenv.config({ - path: path.resolve(__dirname, "../../.env"), -}); - -import logger from "./logger"; -import rebuildSites from "./rebuild-sites"; -import createServer from "./server"; - -process.on("SIGINT", () => { - logger.info("\nGracefully shutting down from SIGINT (Ctrl-C)"); - - process.exit(1); -}); - -(async () => { - logger.debug("Starting application"); - - try { - await createServer(); - - logger.debug("Running"); - - if (process.env.NODE_ENV === "production") { - rebuildSites(process.env.REBUILD_SITES); - } - } catch (e) { - logger.error("Failed to start"); - // @ts-expect-error This is fine - logger.error(e.stack); - } -})(); diff --git a/server/logger.ts b/server/logger.ts index 3f8c80b2..1520f0e9 100644 --- a/server/logger.ts +++ b/server/logger.ts @@ -1,36 +1,64 @@ -// https://github.com/amazeeio/lagoon/blob/master/services/api/src/logger.js -import * as fs from "fs"; -import * as path from "path"; -import { createLogger, format, transports } from "winston"; - -// Create the logs directory if it doesn't exist yet. -const directory = path.join(".", "logs"); -if (!fs.existsSync(directory)) { - fs.mkdirSync(directory); +type LogLevel = "debug" | "error" | "info" | "warn"; + +interface Logger { + debug: (message: unknown) => void; + error: (message: unknown) => void; + info: (message: unknown) => void; + warn: (message: unknown) => void; } -const ignorePingAndMedia = format((info) => { - const message = info.message; +const logger: Logger = { + debug: (message) => log("debug", message), + error: (message) => log("error", message), + info: (message) => log("info", message), + warn: (message) => log("warn", message), +}; - if ( - typeof message === "string" && - ["GET /ping ", "GET /media"].some((match) => message.includes(match)) - ) { - return false; +function log(level: LogLevel, message: unknown) { + const normalized = normalizeMessage(level, message); + + if (!normalized || shouldIgnore(normalized.message)) { + return; } - return info; -}); - -const logger = createLogger({ - exitOnError: false, - format: format.combine(ignorePingAndMedia(), format.json()), - transports: [ - new transports.Console({ - level: "debug", - handleExceptions: true, - }), - ], -}); + console[level](normalized); +} + +function normalizeMessage(level: LogLevel, message: unknown) { + if (message instanceof Error) { + return { + level, + message: message.message, + name: message.name, + stack: message.stack, + }; + } + + if (typeof message === "string") { + return { + level, + message, + }; + } + + if (message && typeof message === "object") { + return { + level, + ...message, + }; + } + + return { + level, + message: String(message), + }; +} + +function shouldIgnore(message: unknown) { + return ( + typeof message === "string" && + ["GET /ping ", "GET /media"].some((match) => message.includes(match)) + ); +} export default logger; diff --git a/server/rebuild-sites.ts b/server/rebuild-sites.ts deleted file mode 100644 index e07cbb56..00000000 --- a/server/rebuild-sites.ts +++ /dev/null @@ -1,19 +0,0 @@ -import request from "request"; -import logger from "./logger"; - -// Expects a comma separated string -function rebuildSites(urls) { - (urls || "").split(",").forEach(rebuildSite); -} - -function rebuildSite(url) { - request.post(url, (err) => { - if (err) { - return logger.error(err); - } - - return logger.info(`rebuilt ${url}`); - }); -} - -export default rebuildSites; diff --git a/server/routes/asset-designer.tsx b/server/routes/asset-designer.tsx deleted file mode 100644 index 55959b59..00000000 --- a/server/routes/asset-designer.tsx +++ /dev/null @@ -1,66 +0,0 @@ -import expeditousEngineMemory from "expeditious-engine-memory"; -import getExpeditiousCache from "express-expeditious"; -import * as React from "react"; -import "reflect-metadata"; // Needed for introspecting classes -import createInteractive from "./components/Interactive"; -import AssetDesignerPage from "./pages/AssetDesignerPage"; -import renderPage from "./render-page"; - -const cache = getExpeditiousCache({ - namespace: "assetdesignercache", - defaultTtl: "1 year", // Cache till next restart - engine: expeditousEngineMemory(), // TODO: Set up Redis -}); - -function routeAssetDesigner(router, projectRoot, scriptRoot) { - const Interactive = createInteractive(projectRoot, scriptRoot, __dirname); - - router.get( - "/asset-designer", - cache.withTtl("1 hour"), - ({ url, query }, res) => { - const selectionId = query.selectionId; - let bundlers = 0; - - // Given we use the same page for serving different bundles, - // each needs a unique identifier based on the query (differing part) - // TODO: Is this true anymore? - const pageHtml = renderPage( - "Asset designer", - url, - { - bundlers++; - }, - bundlingCompleted: (err) => { - bundlers--; - - // TODO: Figure out how to handle Fusebox home directory - /*if (err) { - console.error(err); - - return res.status(500).send("Failed to bundle frontend"); - }*/ - - if (bundlers === 0) { - console.log("Done bundling"); - - res.status(200).send(pageHtml); - } - }, - }} - > - - - ); - } - ); -} - -export default routeAssetDesigner; diff --git a/server/routes/calendar.ts b/server/routes/calendar.ts index 2803c2a1..24e1a1d7 100644 --- a/server/routes/calendar.ts +++ b/server/routes/calendar.ts @@ -2,31 +2,12 @@ import ical from "ical-generator"; import conferences from "../conferences"; import { Schedule } from "../schema/Schedule"; -function routeCalendar(router) { - router.all("/calendar/:id", (req, res) => { - const conference = conferences[req.params.id]; - - if (conference) { - calendar({ - filename: `calendar-${conference.id}`, - title: conference.name, - schedules: conference.schedules, - })(req, res); - } else { - res.status(404).end("Not found"); - } +function handleCalendarRequest() { + return calendar({ + filename: "calendar-2026.ics", + title: "Future Frontend 2026", + schedules: conferences["future-frontend-2026"].schedules, }); - - // TODO: Make a better abstraction for this - const calendarFile = "calendar-2026.ics"; - router.all( - `/${calendarFile}`, - calendar({ - filename: calendarFile, - title: "Future Frontend 2026", - schedules: conferences["future-frontend-2026"].schedules, - }) - ); } function calendar({ @@ -39,8 +20,15 @@ function calendar({ schedules: Schedule[]; }) { const timezone = "+00:00"; // GMT+0 - const domain = "https://futurefrontend.com"; - const cal = ical({ domain, name: title }); + const domain = "futurefrontend.com"; + const siteUrl = `https://${domain}`; + const cal = ical({ + name: title, + prodId: { + company: domain, + product: title, + }, + }); if (Array.isArray(schedules)) { schedules.forEach(({ day, intervals }) => { @@ -52,20 +40,20 @@ function calendar({ summary, description, location: resolveLocation(location), - url: domain, + url: siteUrl, }); }); }); }); } - return (_, response) => { - response.writeHead(200, { - "Content-Type": "text/calendar; charset=utf-8", - "Content-Disposition": `attachment; filename="${filename}"`, - }); - response.end(cal.toString()); - }; + return new Response(cal.toString(), { + headers: { + "content-disposition": `attachment; filename="${filename}"`, + "content-type": "text/calendar; charset=utf-8", + }, + status: 200, + }); } function resolveLocation(location) { @@ -77,4 +65,4 @@ function resolveLocation(location) { : defaultLocation; } -export default routeCalendar; +export default handleCalendarRequest; diff --git a/server/routes/components/Badge.tsx b/server/routes/components/Badge.tsx deleted file mode 100644 index e0d1bd2d..00000000 --- a/server/routes/components/Badge.tsx +++ /dev/null @@ -1,233 +0,0 @@ -import styled from "@emotion/styled"; -import { Color, HeightProperty, WidthProperty } from "csstype"; -import hexToRgba from "hex-to-rgba"; -import get from "lodash/get"; -import trimStart from "lodash/trimStart"; -import * as React from "react"; -import { Contact, ContactType } from "../../schema/Contact"; -import { Theme } from "../../schema/Theme"; -import Card from "../components/Card"; - -interface BadgeContainerProps { - width: string; - height: string; -} - -// TODO: Expose dimensions? -// TODO: Use Card.Container -const BadgeContainer = styled.section` - display: grid; - grid-template-rows: repeat(3, 1fr); - - /* Animation */ - perspective: 100%; - transform-style: preserve-3d; - transition-duration: 500ms; - - margin: 0; - padding: 0; - width: ${({ width }: BadgeContainerProps) => width}; - height: ${({ height }: BadgeContainerProps) => height}; - - /* Hole for lanyard */ - &::after { - position: relative; - top: -14.2cm; - left: 50%; - width: 1mm; - height: 1mm; - background: rgba(151, 54, 54, 1); - border-radius: 50%; - content: ""; - z-index: 5; - } -` as React.FC; - -interface BadgeBaseProps { - defaultColor: Color; - type: ContactType; - texture: string; - opacity?: { - upper: number; - lower: number; - }; -} - -const BadgeFront = styled(Card.Front)` - border-radius: 0.5cm; - background-image: ${resolveBackground}; - background-size: cover; -` as React.FC; -/*const BadgeBack = styled(Card.Back)` - border-radius: 0.5cm; - background-image: ${resolveBackground}; - background-size: cover; -` as React.FC;*/ - -function resolveBackground({ - defaultColor = "#000", - type, - texture, - opacity = { - upper: 1.0, - lower: 0.6, - }, -}: BadgeBaseProps) { - const colors = { - [ContactType.ATTENDEE]: defaultColor, - [ContactType.ORGANIZER]: "#6d0b4d", - [ContactType.PRESS]: "#e5ce3b", - [ContactType.SPEAKER]: "#d01a1a", - [ContactType.WORKSHOP_HOST]: "#d01a1a", - [ContactType.SPONSOR]: "#67d67b", - }; - const color = colors[type]; - - if (!color) { - console.log(`Badge - Missing color for ${type}`); - - return defaultColor; - } - - return `linear-gradient(${hexToRgba(color, opacity.upper)}, ${hexToRgba( - color, - opacity.lower - )}), url("${texture}")`; -} - -const BadgeContent = styled.div` - margin-left: 0.2cm; - margin-right: 0.2cm; - padding: 2cm 0.5cm; - height: 8.5cm; - clip-path: polygon(0 0, 100% 0.5cm, 100% 100%, 0 calc(100% - 0.5cm)); - background: ${hexToRgba("#fff", 0.8)}; - z-index: 1; -`; - -const BadgeLogo = styled.img` - margin-top: 0.5em; -`; - -const BadgeName = styled.h2` - display: block; - font-size: 135%; -`; - -const BadgeTwitter = styled.h3` - font-weight: bold; - margin-top: 1em; - margin-bottom: 1em; - font-size: 125%; -`; - -const BadgeCompany = styled.p` - font-weight: bold; -`; - -const BadgeFooter = styled.footer` - padding-left: 1cm; - justify-self: start; -`; - -const BadgeType = styled.h3` - text-transform: capitalize; - text-align: initial; - color: white; -`; - -interface BadgeProps { - defaultColor: Color; - logo: Theme["logos"]["white"]["withText"]["url"]; - attendee: Contact; - texture: string; - height: HeightProperty; - width: WidthProperty; -} - -// TODO: Use Image type for logo, not url (string) -function Badge({ - defaultColor, - logo, - texture, - attendee, - width, - height, -}: BadgeProps) { - if (!attendee) { - return <>No attendee!; - } - - const { type, name, social, company } = attendee; - const twitter = get(social, "twitter", ""); - - // TODO: Drop the trimStart bit -> Needs a schema change - const frontContent = ( - <> - - - {name} - {trimStart(twitter, "https://twitter.com/") && ( - - @{trimStart(twitter, "https://twitter.com/")} - - )} - {company && {company}} - - {type && ( - - {type[0]} - - )} - - ); - // TODO: Expose - // const backContent = frontContent; - - // TODO: Eliminate BadgeContainer? - // TODO: What if an attendee has multiple types at once? - return ( - - - {frontContent} - - {/* - {backContent} - */} - - ); -} - -// TODO: Generate Badge.propTypes based on this structure? -Badge.variables = [ - { - id: "defaultColor", - validation: { type: String, default: "#002fa9" }, - }, - { - id: "logo", - validation: { - type: String, - default: "/media/react-finland/logo/v2/logo-white-with-text.svg", - }, - }, - { - id: "attendee", - validation: { - type: Contact, - default: { - type: [ContactType.ATTENDEE], - name: "John Doe", - twitter: "johndoe", - company: "John Doe Co.", - noPhotography: false, - }, - }, - }, - { - id: "texture", - validation: { type: String, default: "/media/assets/wave.svg" }, - }, -]; - -export default Badge; diff --git a/server/routes/components/Card.tsx b/server/routes/components/Card.tsx deleted file mode 100644 index 064cad29..00000000 --- a/server/routes/components/Card.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import styled from "@emotion/styled"; -import { Color } from "csstype"; -import * as React from "react"; - -interface CardContainerProps { - width: string; - height: string; -} - -interface CardBaseProps { - backgroundColor?: Color; - textColor?: Color; -} - -const CardBase = styled.div` - position: absolute; - - width: 100%; - height: 100%; - background-color: ${({ backgroundColor }: CardBaseProps) => backgroundColor}; - color: ${({ textColor }: CardBaseProps) => textColor}; - backface-visibility: hidden; -` as React.FC; - -const Card = { - Container: styled.section` - width: ${({ width }: CardContainerProps) => width}; - height: ${({ height }: CardContainerProps) => height}; - - /* Animation */ - perspective: 100%; - transform-style: preserve-3d; - transition-duration: 500ms; - - &:hover { - &:nth-of-type(1) { - transform: rotateY(180deg); - } - - &:nth-of-type(2) { - transform: rotateY(0deg); - } - } - ` as React.FC, - Front: styled(CardBase)``, - Back: styled(CardBase)` - transform: rotateY(-180deg); - - @media print { - display: none; - } - `, -}; - -export default Card; diff --git a/server/routes/components/Contacts.tsx b/server/routes/components/Contacts.tsx deleted file mode 100644 index a1d1cc52..00000000 --- a/server/routes/components/Contacts.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import React from "react"; - -interface ContactsProps { - items: Array<{}>; - render: any; // TODO: What's the correct type for this? - renderProps: {}; -} - -const Contacts = ({ items = [], render, renderProps = {} }: ContactsProps) => ( - <> - {items.map((contact, key) => - React.createElement(render, { - ...contact, - ...renderProps, - key, - }) - )} - -); - -export default Contacts; diff --git a/server/routes/components/GlobalStyles.tsx b/server/routes/components/GlobalStyles.tsx deleted file mode 100644 index c3a32fe9..00000000 --- a/server/routes/components/GlobalStyles.tsx +++ /dev/null @@ -1,113 +0,0 @@ -import { css, Global } from "@emotion/core"; -import forEach from "lodash/forEach"; -import * as React from "react"; -import { Font, Fonts } from "../../schema/Theme"; - -interface GlobalStylesProps { - fonts: Fonts; -} - -function GlobalStyles({ fonts }: GlobalStylesProps) { - React.useEffect(() => { - forEach(fonts.variants, (variant) => { - if (variant.href) { - generateFontReference(variant.href); - } - }); - }, []); - - return ( - - ); -} - -function generateFontReference(href: Font["href"]) { - if (!href) { - return; - } - - const fontLink = document.createElement("link"); - - fontLink.href = href; - - fontLink.rel = "stylesheet"; - fontLink.type = "text/css"; - fontLink.crossOrigin = "anonymous"; - - document.body.appendChild(fontLink); -} - -function generateFontDeclarations(fonts: Font[]) { - return fonts.map(generateFontDeclaration).join("\n"); -} - -function generateFontDeclaration(font: Font) { - if (font.href) { - return ""; - } - - return ` -@font-face { - font-family: "${font.family}"; - font-weight: ${font.weight}; - font-style: ${font.style}; - src: ${generateFontSrc(font.fileName, font.formats)} -}`; -} - -function generateFontSrc( - fileName: Font["fileName"], - formats: Font["formats"] -): string { - if (!fileName || !formats) { - return ""; - } - - return formats.map(generateFontUrl(fileName)).join(",\n"); -} - -function generateFontUrl(fileName: string) { - return (format: string): string => - `url("${fileName}.${format}") format("${generateFormat(format)}")`; -} - -function generateFormat(format: string): string { - if (format === "ttf") { - return "truetype"; - } - - if (format === "otf") { - return "opentype"; - } - - return format; -} - -export default GlobalStyles; diff --git a/server/routes/components/Interactive.tsx b/server/routes/components/Interactive.tsx deleted file mode 100644 index 91842be4..00000000 --- a/server/routes/components/Interactive.tsx +++ /dev/null @@ -1,111 +0,0 @@ -import * as fs from "fs"; -import { FuseBox } from "fuse-box"; -import trimStart from "lodash/trimStart"; -import mkdirp from "mkdirp"; -import * as path from "path"; -import * as React from "react"; - -function createInteractive(projectRoot, scriptRoot, componentRoot) { - mkdirp.sync(scriptRoot); - - interface IInteractiveContext { - registerBundler: () => void; - bundlingCompleted: (err) => void; - } - - // TODO: Figure out how to handle this - const InteractiveContext = React.createContext({ - registerBundler: () => {}, - bundlingCompleted: () => {}, - }); - - function InteractiveConsumer({ - component, - relativeComponentPath, - componentHash = "", - props = {}, - }) { - const componentName = `${path.basename( - relativeComponentPath - )}${componentHash}`; - const indexName = `${componentName}.index.ts`; - const indexPath = path.join(scriptRoot, indexName); - const absoluteComponentPath = path.join( - componentRoot, - relativeComponentPath - ); - const outputPath = `${path.join(scriptRoot, componentName)}.js`; - const scriptPath = `/${trimStart( - path.relative(projectRoot, outputPath), - "." - )}`; - - fs.writeFileSync( - indexPath, - renderScript(absoluteComponentPath, componentName, props) - ); - - // TODO: Likely we should use Preact here (alias?) - const fuse = FuseBox.init({ - target: "browser@es6", - homeDir: scriptRoot, - output: `${scriptRoot}/$name.js`, - shim: { - "type-graphql": { - source: path.join(projectRoot, "shims/type-graphql.js"), - exports: "TypeGraphQL", - }, - react: { - exports: "React", - }, - "react-dom": { - exports: "ReactDOM", - }, - }, - // TODO: Apply terser to minify - }); - - fuse - .bundle(componentName) - .cache(false) // TODO: Enable cache again? - .instructions(`> ${indexName}`); - - const { registerBundler, bundlingCompleted } = React.useContext( - InteractiveContext - ); - - registerBundler(); - - fuse - .run() - .then(bundlingCompleted) - .catch(bundlingCompleted); - - // Since rendering is streaming, it's important the script gets executed - // only after the div has been created! Otherwise hydration fails. - return ( - <> -
{React.createElement(component, props)}
- - - - ${reloadPage()} - - -
${html}
- - `; -} - -function cleanBase(hostname: string): string { - return trimEnd(hostname.split("?")[0], "/"); -} - -function reloadPage(): string { - if (process.env.NODE_ENV === "production") { - return ""; - } - - return ` - - `; -} - -export default renderPage; diff --git a/server/routes/templates/BadgeTemplate.tsx b/server/routes/templates/BadgeTemplate.tsx deleted file mode 100644 index 8b257344..00000000 --- a/server/routes/templates/BadgeTemplate.tsx +++ /dev/null @@ -1,422 +0,0 @@ -import styled from "@emotion/styled"; -import { Color, WidthProperty } from "csstype"; -import chunk from "lodash/chunk"; -import flatten from "lodash/flatten"; -import get from "lodash/get"; -import map from "lodash/map"; -import * as React from "react"; -import { Contact, ContactType } from "../../schema/Contact"; -import { Theme } from "../../schema/Theme"; -import Badge from "../components/Badge"; -import connect from "../components/connect"; - -const BadgeTemplateContainer = styled.section``; - -interface BadgeTemplateProps { - attendees: Contact[]; - theme: Theme; - id: string; - showOnlyTemplates: boolean; - emptyAttendees: number; - emptyOrganizers: number; - emptyPress: number; - emptySpeakers: number; - emptySponsors: number; - // TODO: Likely a better structure - /* - emptyAmounts: { - [AttendeeType.ATTENDEE]: number; - [AttendeeType.ORGANIZER]: number; - [AttendeeType.SPEAKER]: number; - [AttendeeType.SPONSOR]: number; - }; - */ -} - -const defaultAttendees: Contact[] = [ - { - type: [ContactType.ATTENDEE], - name: "John Longsurname-Anotherlongone", - social: { - twitter: "johndoe", - }, - company: "John Doe Enterprises", - about: "", - image: { url: "" }, - location: {}, - }, - { - type: [ContactType.ORGANIZER], - name: "Jane Doe", - social: { - twitter: "johndoe", - }, - company: "John Doe Enterprises", - about: "", - image: { url: "" }, - location: {}, - }, - { - type: [ContactType.PRESS], - name: "Janette Doe", - social: { - twitter: "janettedoe", - }, - company: "News Corp", - about: "", - image: { url: "" }, - location: {}, - }, - { - type: [ContactType.SPEAKER], - name: "John Doedoedoedoedoedoedoe", - social: { - twitter: "johndoe", - }, - company: "John Doe Enterprises", - about: "", - image: { url: "" }, - location: {}, - }, - { - type: [ContactType.SPONSOR], - name: "John-Jack-Jim-Joe-Joel-Jeff Doe", - social: { - twitter: "johndoe", - }, - company: "John & Son Doe Enterprises & Co.", - about: "", - image: { url: "" }, - location: {}, - }, -]; - -function BadgeTemplate({ - id, - theme, - attendees = defaultAttendees, - showOnlyTemplates, - emptyAttendees = 0, - emptyOrganizers = 0, - emptyPress = 0, - emptySpeakers = 0, - emptySponsors = 0, -}: BadgeTemplateProps) { - const badgesPerPage = 4; - let pages; - - if (showOnlyTemplates) { - pages = chunk( - getBadgeData( - [ - { type: [ContactType.ATTENDEE] }, - { type: [ContactType.ORGANIZER] }, - { type: [ContactType.PRESS] }, - { type: [ContactType.SPEAKER] }, - { type: [ContactType.SPONSOR] }, - ], - { - [ContactType.ATTENDEE]: 0, - [ContactType.ORGANIZER]: 0, - [ContactType.PRESS]: 0, - [ContactType.SPEAKER]: 0, - [ContactType.SPONSOR]: 0, - } - ), - badgesPerPage - ); - } else { - pages = chunk( - fillWithEmpties( - getBadgeData(attendees, { - [ContactType.ATTENDEE]: emptyAttendees, - [ContactType.ORGANIZER]: emptyOrganizers, - [ContactType.PRESS]: emptyPress, - [ContactType.SPEAKER]: emptySpeakers, - [ContactType.SPONSOR]: emptySponsors, - }), - badgesPerPage - ), - badgesPerPage - ); - } - - return ( - - {map(pages, (tickets, i) => ( - - ))} - - ); -} - -const ConnectedBadgeTemplate = connect( - "/graphql", - `query AttendeeQuery($conferenceId: ID!) { - conference(id: $conferenceId) { - attendees { - name - company - type - social { - twitter - } - } - } -}`, - {}, - ({ conferenceId }) => ({ conferenceId }) -)( - ({ - conference, - id, - theme, - showOnlyTemplates, - emptyAttendees, - emptyOrganizers, - emptyPress, - emptySpeakers, - emptySponsors, - }) => ( - - ) -); - -ConnectedBadgeTemplate.filename = "badge"; - -ConnectedBadgeTemplate.variables = [ - { - id: "showOnlyTemplates", - validation: { - type: Boolean, - default: true, - }, - }, - { - id: "conferenceId", - query: `query ConferenceIdQuery { - conferences { - id - name - } -}`, - mapToCollection({ conferences }) { - return conferences; - }, - mapToOption({ id, name }) { - return { - value: id, - label: name, - }; - }, - }, - // TODO - /*{ - id: 'attendees', - validation: { - type: Array, - of: Attendee, - default: defaultAttendees - } - }*/ - // TODO: Figure out how to model this case. - // Ideally this would be abstracted further so it's - // not worth solving yet. - /*{ - id: "emptyAmounts", - validation: { - type: Object, - default: { - attendees: 0, - organizers: 0, - speakers: 0, - sponsors: 0, - }, - }, - },*/ - { - id: "emptyAttendees", - validation: { - type: Number, - default: 0, - }, - }, - { - id: "emptyOrganizers", - validation: { - type: Number, - default: 0, - }, - }, - { - id: "emptyPress", - validation: { - type: Number, - default: 0, - }, - }, - { - id: "emptySpeakers", - validation: { - type: Number, - default: 0, - }, - }, - { - id: "emptySponsors", - validation: { - type: Number, - default: 0, - }, - }, -]; - -interface PageProps { - defaultColor: Color; - logo: string; - texture: string; - tickets: any[]; // TODO - showBackside: boolean; -} - -interface PageSheetProps { - width: WidthProperty; -} - -// TODO: Is the Safari fix needed anymore? -// @ts-expect-error This is fine -const PageSheet = styled.section` - text-align: center; - width: ${({ width }) => width}; - display: flex; - flex-wrap: wrap; - - @media print { - height: 11.5in !important; /* Adjust for Safari print mode */ - } -` as React.FC; - -const PageBadgeContainer = styled.div` - display: inline-block; -`; - -function Page({ - defaultColor, - logo, - texture, - tickets = [], - showBackside, -}: PageProps) { - const pairs = chunk(tickets, 2); - const reverse = flatten(pairs.map(pair => [pair[1], pair[0]])); - const width = "105mm"; // A6 - const height = "148mm"; // A6 - - // TODO: Figure out how to deal withpage width properly - // TODO: Implement separate layouts for front/back. Now we just - // use the same. - return ( - <> - - {tickets.map((attendee: Contact, i) => ( - - - - ))} - - {showBackside && ( - - {reverse.map((attendee, i) => ( - - - - ))} - - )} - - ); -} - -type BadgeTypes = - | ContactType.ATTENDEE - | ContactType.ORGANIZER - | ContactType.PRESS - | ContactType.SPEAKER - | ContactType.SPONSOR; - -function getBadgeData( - tickets, - emptyAmounts: { [key in BadgeTypes]: number } = { - [ContactType.ATTENDEE]: 0, - [ContactType.ORGANIZER]: 0, - [ContactType.PRESS]: 0, - [ContactType.SPEAKER]: 0, - [ContactType.SPONSOR]: 0, - } -) { - const ret = tickets.concat( - flatten( - map(emptyAmounts, (amount, type) => - // TODO: See if it's possible to eliminate "as" from here - Array(amount).fill(getEmptyData(type as ContactType)) - ) - ) - ); - - return ret; -} - -function fillWithEmpties(badges, badgesPerPage, type = ContactType.ATTENDEE) { - return badges.concat( - Array(badges.length % badgesPerPage).fill(getEmptyData(type)) - ); -} - -function getEmptyData(type: ContactType): Contact { - return { - type: [type], - name: "", - company: "", - about: "", - image: { url: "" }, - social: { - twitter: "", - }, - location: {}, - }; -} - -// TODO: Connect to ticket API - -export default ConnectedBadgeTemplate; diff --git a/server/routes/templates/BusinessCardTemplate.tsx b/server/routes/templates/BusinessCardTemplate.tsx deleted file mode 100644 index 74ee606c..00000000 --- a/server/routes/templates/BusinessCardTemplate.tsx +++ /dev/null @@ -1,105 +0,0 @@ -import styled from "@emotion/styled"; -import Markdown from "markdown-to-jsx"; -import * as React from "react"; -import { Theme } from "../../schema/Theme"; -import Card from "../components/Card"; - -interface BusinessCardTemplateContainerProps { - id: string; -} - -const BusinessCardTemplateContainer = styled.section`` as React.FC< - BusinessCardTemplateContainerProps ->; - -const BusinessCardContainer = styled(Card.Container)``; -const BusinessCardFront = styled(Card.Front)` - padding: 5mm; -`; -const BusinessCardBack = styled(Card.Back)` - padding: 5mm; -`; - -interface BusinessCardTemplateProps { - theme: Theme; - id: string; - showFront: boolean; - width: string; - height: string; - amount: number; - front: string; - back: string; -} - -function BusinessCardTemplate({ - id, - theme, - showFront, - width, - height, - front = "", - back = "", -}: BusinessCardTemplateProps) { - const frontText = front.replace(/\r?\n/g, "
"); - const backText = back.replace(/\r?\n/g, "
"); - - return ( - - - - {showFront ? frontText : backText} - - - {showFront ? backText : frontText} - - - - ); -} - -BusinessCardTemplate.filename = "business-card"; - -BusinessCardTemplate.variables = [ - { - id: "showFront", - validation: { type: Boolean, default: true }, - }, - { - id: "width", - validation: { type: String, default: "85mm" }, - }, - { - id: "height", - validation: { type: String, default: "55mm" }, - }, - { - id: "front", - // TODO: Use proper TS enum for modifiers - validation: { - type: String, - modifier: "long", - default: `John Woo -**+1234567890** - -Woo Corp. - CO123456789 -demo@localhost`, - }, - }, - { - id: "back", - // TODO: Use proper TS enum for modifiers - validation: { - type: String, - modifier: "long", - default: `Martial Artist`, - }, - }, -]; - -export default BusinessCardTemplate; diff --git a/server/routes/templates/HeaderTemplate.tsx b/server/routes/templates/HeaderTemplate.tsx deleted file mode 100644 index 99ea70dd..00000000 --- a/server/routes/templates/HeaderTemplate.tsx +++ /dev/null @@ -1,305 +0,0 @@ -/** @jsx jsx */ -import { jsx } from "@emotion/core"; -import styled from "@emotion/styled"; -import { Color, HeightProperty, WidthProperty } from "csstype"; -import hexToRgba from "hex-to-rgba"; -import map from "lodash/map"; -import * as React from "react"; -import { Conference } from "../../schema/Conference"; -import { Theme } from "../../schema/Theme"; -import connect from "../components/connect"; -import { dayToFinnishLocale } from "../date-utils"; -import conferenceDaysQuery from "../queries/conferenceDaysQuery"; - -interface HeaderContainerProps { - id: string; - primaryColor: Color; - secondaryColor: Color; - width: WidthProperty; - height: HeightProperty; - texture: string; -} - -// TODO: Allow alpha to be defined for both -const HeaderPageContainer = styled.div` - display: grid; - background-image: ${({ - primaryColor, - secondaryColor, - texture, - }: HeaderContainerProps) => `linear-gradient( - ${primaryColor}, - ${hexToRgba(secondaryColor, 0.39)} - ), - url("${texture}")`}; - background-size: cover; - position: relative; - width: ${({ width }: HeaderContainerProps) => width}; - height: ${({ height }: HeaderContainerProps) => height}; - overflow: hidden; - color: white; -` as React.FC; - -const TwitterSafeUser = styled.div` - position: absolute; - bottom: 0; - background-color: #ff00008f; - width: 450px; - height: 200px; - z-index: 1; -`; -const TwitterSafeTop = styled.div` - position: absolute; - top: 0; - background-color: #ff00008f; - width: 100%; - height: 40px; - z-index: 1; -`; -const TwitterSafeBottom = styled.div` - position: absolute; - bottom: 0; - left: 450px; - background-color: #ff00008f; - width: 100%; - height: 40px; - z-index: 1; -`; - -function TwitterSafeOverlay() { - return ( - - - - - - ); -} - -interface PrimaryRowProps { - useTwitterHeader: boolean; -} - -const PrimaryRow = styled.div` - display: grid; - grid-template-columns: ${({ useTwitterHeader }: PrimaryRowProps) => - useTwitterHeader ? "1fr 0.2fr" : "1fr 1fr"}; -` as React.FC; - -interface SecondaryRowProps { - useTwitterHeader: boolean; -} - -const SecondaryRow = styled.div` - display: grid; - padding-left: ${({ useTwitterHeader }: SecondaryRowProps) => - useTwitterHeader ? "30em" : "5em"}; -` as React.FC; - -const HeaderInfoContainer = styled.div` - text-align: right; - padding-right: 50px; -`; - -interface HeaderLogoProps { - src: string; - useTwitterHeader: boolean; -} - -const HeaderLogo = styled.img` - padding-left: 3em; - padding-right: 3em; - padding-top: 1.8em; - width: 100%; - height: ${({ useTwitterHeader }: HeaderLogoProps) => - useTwitterHeader ? "20em" : ""}; -` as React.FC; - -const HeaderConferenceDays = styled.h1` - padding-top: 2em; -`; - -const HeaderLocation = styled.h2` - padding-top: 1em; -`; - -const HeaderSlogan = styled.h2` - padding-top: 1em; -`; - -const HeaderCoupon = styled.h3` - padding-top: 2em; - font-family: "Courier New", Courier, monospace; -`; - -enum HeaderType { - WEB = "web", - TWITTER = "twitter", - A4 = "a4", -} - -interface HeaderTemplateProps { - conference?: Conference; - theme: Theme; - id: string; - type: HeaderType; - coupon?: string; - discountPercentage?: string; - showTwitterSafeArea: boolean; - showDates: boolean; - showLocation: boolean; -} - -function HeaderTemplate({ - conference, - theme, - id, - type, - coupon, - discountPercentage, - showTwitterSafeArea, - showDates, - showLocation, -}: HeaderTemplateProps) { - const { locations, schedules, slogan } = conference || { - locations: [], - schedules: [], - slogan: "", - }; - const location = - locations && locations.length > 0 && locations[0] - ? { - city: locations[0].city, - country: locations[0].country && locations[0].country.name, - } - : null; - const conferenceDays = map(schedules, ({ day }) => dayToFinnishLocale(day)); - const firstDay = conferenceDays[0]; - const lastDay = conferenceDays[conferenceDays.length - 1]; - - return ( - - {showTwitterSafeArea && } - - - - {showDates && firstDay && lastDay && ( - - {firstDay}-{lastDay} - - )} - {showLocation && location && ( - - {location.city}, {location.country} - - )} - - - - {slogan} - {coupon && ( - - Use {coupon} for a {discountPercentage}% discount! - - )} - - - ); -} - -function resolveWidth(type) { - switch (type) { - case HeaderType.TWITTER: - return "1500px"; - case HeaderType.A4: - return "297mm"; - case HeaderType.WEB: - default: - return "1024px"; - } -} - -function resolveHeight(type) { - switch (type) { - case HeaderType.TWITTER: - return "500px"; - case HeaderType.A4: - return "210mm"; - case HeaderType.WEB: - default: - return "512px"; - } -} - -const ConnectedHeaderTemplate = connect( - "/graphql", - conferenceDaysQuery, - {}, - ({ conferenceId }) => ({ conferenceId }) -)(HeaderTemplate); - -ConnectedHeaderTemplate.filename = "header"; - -// TODO: Better use enums here -ConnectedHeaderTemplate.variables = [ - { - id: "type", - /* TODO: Fix default value */ - validation: { - type: "enum", - values: [HeaderType.WEB, HeaderType.TWITTER, HeaderType.A4], - default: HeaderType.WEB, - }, - }, - { - id: "conferenceId", - query: `query ConferenceIdQuery { - conferences { - id - name - } -}`, - mapToCollection({ conferences }) { - return conferences; - }, - mapToOption({ id, name }) { - return { - value: id, - label: name, - }; - }, - }, - { - id: "coupon", - validation: { type: String, default: "" }, - }, - { - id: "discountPercentage", - validation: { type: String, default: "" }, - }, - { - id: "showTwitterSafeArea", - validation: { type: Boolean, default: false }, - }, - { - id: "showDates", - validation: { type: Boolean, default: true }, - }, - { - id: "showLocation", - validation: { type: Boolean, default: true }, - }, -]; - -export default ConnectedHeaderTemplate; diff --git a/server/routes/templates/IntroTemplate.tsx b/server/routes/templates/IntroTemplate.tsx deleted file mode 100644 index 06b20e45..00000000 --- a/server/routes/templates/IntroTemplate.tsx +++ /dev/null @@ -1,328 +0,0 @@ -import styled from "@emotion/styled"; -import { Color, WidthProperty } from "csstype"; -import hexToRgba from "hex-to-rgba"; -import desaturate from "polished/lib/color/desaturate"; -import * as React from "react"; -import { Theme } from "../../schema/Theme"; -import connect from "../components/connect"; -import Contacts from "../components/Contacts"; -import Presentation from "../components/Presentation"; -import Sponsor from "../components/Sponsor"; -import sponsorQuery from "../queries/sponsorQuery"; - -interface SchedulePageContainerProps { - id: string; - primaryColor: Color; - secondaryColor: Color; - texture: string; - sideBarWidth: WidthProperty; -} - -// @ts-expect-error This is fine -const IntroTemplateContainer = styled.article` - background-image: ${({ - primaryColor, - secondaryColor, - texture, - }: SchedulePageContainerProps) => `linear-gradient( - ${primaryColor}, - ${desaturate(0.2, hexToRgba(secondaryColor, 0.79))} - ), - url("${texture}")`}; - background-size: cover; - position: relative; - padding: 0; - width: ${({ sideBarWidth }) => - sideBarWidth ? `calc(100vw - ${sideBarWidth})` : "100vw"}; - overflow: hidden; -` as React.FC; - -interface IntroTemplateProps { - theme: Theme; - conferenceId: string; - id: string; - sideBarWidth: WidthProperty; -} - -function IntroTemplate({ - conferenceId, - theme, - id, - sideBarWidth, -}: IntroTemplateProps) { - return ( - - - - ); -} - -// TODO: Refactor so that `Sponsor` accepts a css parameter -const sponsorRules = { - goldSponsors: { - "max-height": "8cm", - "max-width": "14cm", - margin: "1cm", - }, - silverSponsors: { - "max-height": "3cm", - "max-width": "5cm", - margin: "1cm", - }, - bronzeSponsors: { - "max-height": "1.5cm", - "max-width": "3.5cm", - margin: "1cm", - }, - partners: { - "max-height": "3cm", - "max-width": "5cm", - margin: "1cm", - }, -}; - -const SponsorsContainer = styled.div` - height: 100%; - width: 100%; - display: grid; - grid-template-columns: 1fr 1fr 1fr; - background-color: #ffffffba; - justify-items: center; - align-items: center; -`; - -const SponsorContainer = styled.div` - height: 100%; - width: 100%; - display: grid; - grid-template-columns: 1fr; - background-color: #ffffffba; - justify-items: center; - align-items: center; -`; - -const SilverSponsorsContainer = styled.div` - height: 100%; - width: 100%; - display: grid; - grid-template-columns: 1fr 1fr 1fr 1fr 1fr; - background-color: #ffffffba; - justify-items: center; - align-items: center; -`; - -const PartnersContainer = styled.div` - height: 100%; - width: 100%; - grid-template-columns: 1fr 1fr 1fr 1fr; - display: grid; - background-color: #ffffffba; - justify-items: center; - align-items: center; -`; - -const connectSponsor = (type: string) => - connect("/graphql", sponsorQuery, ({ conferenceId }) => ({ conferenceId }))( - ({ conference, index }) => ( - - ) - ); - -const connectSponsors = (type: string) => - connect("/graphql", sponsorQuery, ({ conferenceId }) => ({ conferenceId }))( - ({ conference }) => ( - - ) - ); - -// const ConnectedGoldSponsors = connectSponsors("goldSponsors"); -const ConnectedGoldSponsor = connectSponsor("goldSponsors"); -const ConnectedSilverSponsors = connectSponsors("silverSponsors"); -const ConnectedBronzeSponsors = connectSponsors("bronzeSponsors"); -const ConnectedPartners = connectSponsors("partners"); - -function getSlides(theme) { - const titleSlide = [ - { - layout: "IMAGE", - content: { - url: theme.logos.white.withText.url, - }, - css: { - backgroundImage: `linear-gradient(${theme.colors.primary}, ${desaturate( - 0.2, - hexToRgba(theme.colors.secondary, 0.79) - )}), url("${theme.textures[0].url}")`, - backgroundSize: "cover", - }, - }, - { - layout: "TITLE", - content: { - title: ( - <> - "Professional" MCs - @jevakallio and @NikkitaFTW - - ), - }, - }, - { - layout: "IMAGE", - content: { - url: "https://imgoat.com/uploads/8baa56554f/141386.jpeg", - }, - }, - { - layout: "TITLE", - content: { - title: "~400 people", - }, - }, - { - layout: "TITLE", - content: { - title: "Six workshops", - }, - }, - { - layout: "TITLE", - content: { - title: "27 speakers", - }, - }, - { - layout: "TITLE", - content: { - title: "Two days", - }, - }, - { - layout: "TITLE", - content: { - title: "Single track", - }, - }, - { - layout: "TITLE", - content: { - title: "Themed sessions", - }, - }, - { - layout: "MARKDOWN", - background: { - url: "/media/assets/disco.jpg", - }, - content: { - title: "Two parties", - markup: ` -* #SMOOSH -* Afterparty - `, - }, - }, - { - layout: "REACT", - content: ( - - - - ), - }, - { - layout: "REACT", - content: ( - - - - ), - }, - { - layout: "REACT", - content: ( - - - - ), - }, - { - layout: "REACT", - content: ( - - - - ), - }, - { - layout: "REACT", - content: ( - - - - ), - }, - { - layout: "REACT", - content: ( - - - - ), - }, - { - layout: "TITLE", - content: { - title: "Remember to join the conference Slack", - }, - }, - { - layout: "MARKDOWN", - content: { - title: "Code of Conduct", - markup: ` -* Berlin Code of Conduct -* Report to info@react-finland.fi -* Or to any org with RF logo shirt`, - }, - }, - { - layout: "IMAGE", - content: { - url: "/media/assets/red-strings.jpg", - }, - }, - { - layout: "TITLE", - content: { - title: "#ReactFinland", - }, - }, - ]; - - return titleSlide; -} - -export default IntroTemplate; diff --git a/server/routes/templates/PresentationTemplate.tsx b/server/routes/templates/PresentationTemplate.tsx deleted file mode 100644 index 5573764d..00000000 --- a/server/routes/templates/PresentationTemplate.tsx +++ /dev/null @@ -1,330 +0,0 @@ -import styled from "@emotion/styled"; -import { Color, WidthProperty } from "csstype"; -import hexToRgba from "hex-to-rgba"; -import flatMap from "lodash/flatMap"; -import get from "lodash/get"; -import desaturate from "polished/lib/color/desaturate"; -import * as React from "react"; -import { Interval } from "../../schema/Interval"; -import { Theme } from "../../schema/Theme"; -import connect from "../components/connect"; -import Presentation from "../components/Presentation"; -import { dayToFinnishLocale } from "../date-utils"; -import Sponsors from "../components/Sponsors"; -import sponsorQuery from "../queries/sponsorQuery"; -import scheduleQuery from "../queries/scheduleQuery"; - -interface SchedulePageContainerProps { - id: string; - primaryColor: Color; - secondaryColor: Color; - textColor: Color; - texture: string; - sideBarWidth: WidthProperty; -} - -// @ts-expect-error This is fine -const PresentationTemplateContainer = styled.article` - background-image: ${({ - primaryColor, - secondaryColor, - texture, - }: SchedulePageContainerProps) => `linear-gradient( - ${primaryColor}, - ${desaturate(0.2, hexToRgba(secondaryColor, 0.79))} - ), - url("${texture}")`}; - background-size: cover; - position: relative; - padding: 0; - color: ${({ textColor }) => textColor }; - width: ${({ sideBarWidth }) => - sideBarWidth ? `calc(100vw - ${sideBarWidth})` : "100vw"}; - overflow: hidden; -` as React.FC; - -interface PresentationTemplateProps { - intervals?: Interval[]; - theme: Theme; - day: string; - conferenceId: string; - id: string; - sideBarWidth: WidthProperty; -} - -function PresentationTemplate({ - intervals, - conferenceId, - theme, - day, - id, - sideBarWidth, -}: PresentationTemplateProps) { - return ( - - - - ); -} - -const MainTitleContainer = styled.div` - width: 100%; - display: grid; -`; - -interface MainTitleDayProps { - color: Color; -} - -const MainTitleDay = styled.h1` - color: ${({ color }: MainTitleDayProps) => color}; - justify-self: right; - margin-right: 2cm; - font-size: 400%; -` as React.FC; - -function getSlides(theme: Theme, day, intervals, conferenceId) { - const titleSlide = [ - { - layout: "REACT", - content: ( - - - {day} - - ), - css: { - backgroundImage: `linear-gradient(${theme.colors.primary}, ${desaturate( - 0.2, - hexToRgba(theme.colors.secondary, 0.79) - )}), url("${theme.textures[0].url}")`, - backgroundSize: "cover", - }, - }, - ]; - const intervalSlides = intervalsToSlides(intervals, conferenceId); - - return titleSlide.concat(intervalSlides); -} - -const TitleContainer = styled.section` - display: grid; - grid-template-rows: 0.5fr 1.5fr; -` as React.FC<{}>; - -const TitleRowSingle = styled.div` - display: grid; - grid-template-columns: 1fr; -` as React.FC<{}>; - -const TitleRow = styled.div` - display: grid; - grid-template-columns: 1fr 1fr; -` as React.FC<{}>; - -const SpeakerImage = styled.img` - width: 75%; - max-width: 8cm; - justify-self: right; - align-self: center; - clip-path: polygon(0 0, 100% 0.5cm, 100% 100%, 0 calc(100% - 0.5cm)); -` as React.FC<{ src: string }>; - -const SpeakerTextContainer = styled.div``; - -const SpeakerTitle = styled.div` - margin-top: 0.5em; - margin-bottom: 0.5em; - font-size: 60%; -`; - -const SpeakerName = styled.div` - margin-top: 0.5em; - font-size: 50%; - opacity: 0.6; -`; - -const SpeakerTime = styled.div` - margin-top: 0.5em; - font-size: 40%; - opacity: 0.8; -`; - -const sponsorRules = { - gold: { - "max-height": "2cm", - "max-width": "6cm", - width: "6cm", - margin: "0 0.5cm 0.5cm 0.5cm", - display: "block", - }, - silver: { - "max-height": "2.5cm", - "max-width": "3cm", - width: "3cm", - margin: "0.5cm", - }, - bronze: { - "max-height": "1.25cm", - "max-width": "1.75cm", - width: "1.75cm", - margin: "0.25cm 0.5cm 0cm 0.5cm", - }, -}; - -const ConnectedSponsors = connect( - "/graphql", - sponsorQuery, - ({ conferenceId }: { conferenceId: string }) => ({ conferenceId }) -)(({ conference }) => ); - -const SponsorsContainer = styled.div` - width: 100%; - background-color: white; - margin-top: 4cm; -`; - -function intervalsToSlides(intervals, conferenceId) { - if (!intervals) { - return []; - } - - return flatMap(intervals, ({ title, begin, end, sessions }) => { - // Adjust from gmt+0 to gmt+3 - const adjustedBegin = - parseInt(begin.split(":")[0], 10) + 3 + ":" + begin.split(":")[1]; - const adjustedEnd = - parseInt(end.split(":")[0], 10) + 3 + ":" + end.split(":")[1]; - - const titleSlide = title - ? { - layout: "TITLE", - content: { - title: ( - - {title} - - {adjustedBegin}-{adjustedEnd} - - - ), - }, - } - : null; - const sessionSlides = sessions.map((session) => { - const hasPerson = session.people && session.people[0]; - const RowContainer = hasPerson ? TitleRow : TitleRowSingle; - - return { - layout: "TITLE", - content: { - title: ( - - {session.title} - - - - {hasPerson && session.people[0].name} - - {sessions.length === 1 && ( - - {adjustedBegin}-{adjustedEnd} - - )} - - {hasPerson && session.people[0].image.url ? ( - - ) : ( - - - - )} - - - ), - }, - }; - }); - - return titleSlide ? [titleSlide].concat(sessionSlides) : sessionSlides; - }); -} - -const ConnectedPresentationTemplate = connect( - "/graphql", - scheduleQuery, - {}, - ({ conferenceId, day }) => ({ conferenceId, day }) -)(({ schedule, theme, conferenceId, sideBarWidth, id }) => ( - -)); - -ConnectedPresentationTemplate.filename = "presentation"; - -// TODO: Better use enums here -ConnectedPresentationTemplate.variables = [ - { - id: "conferenceId", - query: `query ConferenceIdQuery { - conferences { - id - name - } -}`, - mapToCollection({ conferences }) { - return conferences; - }, - mapToOption({ id, name }) { - return { - value: id, - label: name, - }; - }, - }, - { - id: "day", - query: `query DayQuery($conferenceId: ID!) { - conference(id: $conferenceId) { - schedules { - day - } - } -}`, - mapToCollection({ conference }) { - return get(conference, "schedules", []); - }, - mapToOption({ day }) { - return { - value: day, - label: day, - }; - }, - }, -]; - -export default ConnectedPresentationTemplate; diff --git a/server/routes/templates/ScheduleTemplate.tsx b/server/routes/templates/ScheduleTemplate.tsx deleted file mode 100644 index 96b0d29e..00000000 --- a/server/routes/templates/ScheduleTemplate.tsx +++ /dev/null @@ -1,235 +0,0 @@ -import styled from "@emotion/styled"; -import { Color } from "csstype"; -import hexToRgba from "hex-to-rgba"; -import get from "lodash/get"; -import flatMap from "lodash/flatMap"; -import desaturate from "polished/lib/color/desaturate"; -import * as React from "react"; -import { Interval } from "../../schema/Interval"; -import { Theme } from "../../schema/Theme"; -import connect from "../components/connect"; -import Schedule from "../components/Schedule"; -import Sponsors from "../components/Sponsors"; -import { dayToFinnishLocale } from "../date-utils"; -import scheduleQuery from "../queries/scheduleQuery"; -import sponsorQuery from "../queries/sponsorQuery"; -interface SchedulePageContainerProps { - id: string; - primaryColor: Color; - secondaryColor: Color; - texture: string; -} - -const ScheduleTemplateContainer = styled.article` - display: grid; - background-image: ${({ - primaryColor, - secondaryColor, - texture, - }: SchedulePageContainerProps) => `linear-gradient( - ${primaryColor}, - ${desaturate(0.8, hexToRgba(secondaryColor, 0.89))} - ), - url("${texture}")`}; - background-size: cover; - position: relative; - padding: 0; - width: 29.7cm; - height: 21cm; - overflow: hidden; -` as React.FC; - -const ScheduleTemplateLogo = styled.img` - position: relative; - margin: 0cm 0.9cm 0cm; - width: 5cm; -` as React.FC<{ src: string }>; - -const ScheduleHeaderContainer = styled.section``; - -const ScheduleTemplateTitle = styled.h1` - color: white; - position: absolute; - right: 1.2cm; - top: 0cm; - font-size: 420%; - margin-top: 0.25cm; -` as React.FC<{}>; - -const ScheduleContentContainer = styled.div` - display: grid; - align-items: center; - justify-items: center; - position: relative; - margin: 0; - margin-top: -0.2cm; - padding: 0.25cm 0 0.25cm 0.25cm; - opacity: 0.9; - background-color: white; - height: 13.4cm; - clip-path: polygon(0 0, 100% 1cm, 100% 100%, 0 calc(100% - 1cm)); - z-index: 1; -` as React.FC<{}>; - -const PlaceholderContainer = styled.h1` - font-size: 1000%; -` as React.FC<{}>; - -interface ScheduleTemplateProps { - intervals?: Interval[]; - theme: Theme; - day: string; - conferenceId: string; - id: string; - placeholder: string; -} - -const ScheduleFooterContainer = styled.section` - margin-top: -0.3cm; -`; - -const sponsorRules = { - gold: { - "max-height": "2cm", - "max-width": "6cm", - width: "6cm", - margin: "0 0.5cm 0.5cm 0.5cm", - display: "block", - }, - silver: { - "max-height": "2.5cm", - "max-width": "3cm", - width: "3cm", - margin: "0.5cm", - }, - bronze: { - "max-height": "1.25cm", - "max-width": "1.75cm", - width: "1.75cm", - margin: "0.25cm 0.5cm 0cm 0.5cm", - }, -}; - -const ConnectedSponsors = connect( - "/graphql", - sponsorQuery, - ({ conferenceId }) => ({ conferenceId }) -)(({ conference }) => ); - -function ScheduleTemplate({ - intervals, - theme, - day, - conferenceId, - id, - placeholder, -}: ScheduleTemplateProps) { - return ( - - - - {day ? day : ""} - - - {placeholder ? ( - {placeholder} - ) : ( - intervals && - )} - - - - - - ); -} - -const ConnectedScheduleTemplate = connect( - "/graphql", - scheduleQuery, - {}, - ({ conferenceId, day }) => ({ conferenceId, day }) -)(({ schedule, theme, conferenceId, id, placeholder }) => ( - -)); - -function adjustTimezone(intervals) { - if (!intervals) { - return []; - } - - return flatMap(intervals, ({ begin, end, ...rest }) => { - // Adjust from gmt+0 to gmt+3 - const adjustedBegin = - parseInt(begin.split(":")[0], 10) + 3 + ":" + begin.split(":")[1]; - const adjustedEnd = - parseInt(end.split(":")[0], 10) + 3 + ":" + end.split(":")[1]; - - return { - ...rest, - begin: adjustedBegin, - end: adjustedEnd, - }; - }); -} - -ConnectedScheduleTemplate.filename = "schedule"; - -// TODO: Better use enums here -ConnectedScheduleTemplate.variables = [ - { - id: "placeholder", - validation: { type: String, default: "" }, - }, - { - id: "conferenceId", - query: `query ConferenceIdQuery { - conferences { - id - name - } -}`, - mapToCollection({ conferences }) { - return conferences; - }, - mapToOption({ id, name }) { - return { - value: id, - label: name, - }; - }, - }, - { - id: "day", - query: `query DayQuery($conferenceId: ID!) { - conference(id: $conferenceId) { - schedules { - day - } - } -}`, - mapToCollection({ conference }) { - return get(conference, "schedules", []); - }, - mapToOption({ day }) { - return { - value: day, - label: day, - }; - }, - }, -]; - -export default ConnectedScheduleTemplate; diff --git a/server/routes/templates/SessionTweetTemplate.tsx b/server/routes/templates/SessionTweetTemplate.tsx deleted file mode 100644 index 34aa7c6e..00000000 --- a/server/routes/templates/SessionTweetTemplate.tsx +++ /dev/null @@ -1,341 +0,0 @@ -import styled from "@emotion/styled"; -import { Color, FontFamilyProperty } from "csstype"; -import hexToRgba from "hex-to-rgba"; -import get from "lodash/get"; -import map from "lodash/map"; -import flatten from "lodash/flatten"; -import * as React from "react"; -import CopyToClipboard from "react-copy-to-clipboard"; -import { Contact } from "../../schema/Contact"; -import { Conference } from "../../schema/Conference"; -import { Interval } from "../../schema/Interval"; -import { Theme } from "../../schema/Theme"; -import connect from "../components/connect"; -import { dayToFinnishLocale } from "../date-utils"; - -const TweetTemplateContainer = styled.div``; -const TweetPageContainer = styled.div``; - -interface TweetContainerProps { - primaryColor: Color; - secondaryColor: Color; - texture: string; -} - -const TweetContainer = styled.div` - background-image: ${({ - primaryColor, - secondaryColor, - texture, - }: TweetContainerProps) => `linear-gradient( - ${primaryColor}, - ${hexToRgba(secondaryColor, 0.79)} - ), - url("${texture}")`}; - background-size: cover; - position: relative; - width: 880px; - height: 440px; - overflow: hidden; - display: grid; - grid-template-columns: 1fr 1fr; - color: white; -` as React.FC; - -const TweetTextContainer = styled.div` - position: relative; - margin-top: 2em; - padding: 0.25em; - max-width: 880px; - background-color: #fff6c8; -`; -const TweetTextToCopy = styled.span` - margin-right: 0.5em; -`; -const TweetCopyButton = styled.button` - position: absolute; - right: 0; - top: 0; - z-index: 1; -`; - -const TweetRow = styled.div` - display: grid; - grid-template-columns: 1fr 1fr; - align-items: center; -`; - -const TweetLogo = styled.img` - max-width: 10em; - margin-left: -0.5em; -`; - -const TweetConferenceDays = styled.h3``; - -const TweetText = styled.h2` - text-align: center; - padding-top: 0.5em; - font-size: 300%; -`; - -interface TweetDescriptionProps { - fontFamily: FontFamilyProperty; -} - -const TweetDescription = styled.h2` - text-align: center; - line-height: 1.5; - width: 100%; - font-size: 150%; - font-weight: 200; - font-family: ${({ fontFamily }: TweetDescriptionProps) => fontFamily}; -` as React.FC; - -interface SpeakerTweetTemplateProps { - conference?: Conference; - interval: Interval; - theme: Theme; - id: string; -} - -function SpeakerTweetTemplate({ - conference, - interval, - theme, - id, -}: SpeakerTweetTemplateProps) { - if (!conference) { - return null; - } - - const days = getConferenceDays(conference); - // TODO: Set up conference.hashtag (should not contain #) - const tweetTextToCopy = `Learn more about the topic at #${conference.name - .split(" ") - .join("")} (${days})`; - - return ( - - - {React.createElement(SpeakerTweet, { - logo: theme.logos.white.withText.url, - days, - interval, - theme, - conference, - })} - - - {tweetTextToCopy} - alert("Copied to clipboard")} - > - - - - - ); -} - -function getConferenceDays(conference): string { - const { schedules } = conference; - const conferenceDays = map(schedules, ({ day }) => dayToFinnishLocale(day)); - const firstDay = conferenceDays[0]; - const lastDay = conferenceDays[conferenceDays.length - 1]; - - return `${firstDay}-${lastDay}`; -} - -interface TweetProps { - days: string; - interval: Interval; - theme: Theme; - conference: Conference; -} - -const TweetInfoContainer = styled.div` - padding: 3em; - display: grid; - justify-content: center; -`; - -const TweetImageContainer = styled.div` - background: white; - padding: 3em; - display: grid; - grid-template-columns: 1fr 1fr; -`; - -interface TweetImageProps { - color?: Color; - isCircle?: boolean; - src: HTMLImageElement["src"]; - borderColor?: string; -} - -const TweetImage = styled.img` - width: 100%; - box-sizing: border-box; - border: 0.25em solid ${({ borderColor }: TweetImageProps) => borderColor}; - border-radius: 50%; -` as React.FC; - -const Centered = styled.div` - position: absolute; - margin: auto; - width: 150px; - left: 16%; - top: 50%; - margin-top: -75px; -` as React.FC; - -function SpeakerTweet({ days, interval, theme }: TweetProps) { - if (!interval) { - return null; - } - - const logo = theme.logos.white.withText.url; - const { title } = interval; - const speakers: Contact[] = flatten( - (interval.sessions || []).map(({ people }) => people || []) - ); - const people: Contact[] = interval.mc - ? [interval.mc].concat(speakers) - : speakers; - - return ( - - - {(people.length > 4 ? people.slice(1, 5) : people).map( - ({ name, image }) => ( - - ) - )} - {people.length > 4 && ( - - - - )} - - - - - {days} - - {title} - - {people.map(({ name }, i) => ( - - {name} - {i < people.length - 1 && , } - - ))} - - - - ); -} - -const ConnectedSpeakerTweetTemplate = connect( - "/graphql", - ` -query SpeakerTweetTemplateQuery($conferenceId: ID!, $intervalTitle: String!) { - interval(conferenceId: $conferenceId, intervalTitle: $intervalTitle) { - begin - end - title - mc { - name - image { - url - } - } - sessions { - title - description - people { - name - image { - url - } - } - } - } - conference(id: $conferenceId) { - name - slogan - schedules { - day - } - locations { - city - country { - name - } - } - } -} - `, - {}, - ({ conferenceId, intervalTitle }) => ({ conferenceId, intervalTitle }) -)(SpeakerTweetTemplate); - -ConnectedSpeakerTweetTemplate.filename = "speaker-tweet"; - -// TODO: Better use enums here -ConnectedSpeakerTweetTemplate.variables = [ - { - id: "conferenceId", - query: `query ConferenceIdQuery { - conferences { - id - name - } -}`, - mapToCollection({ conferences }) { - return conferences; - }, - mapToOption({ id, name }) { - return { - value: id, - label: name, - }; - }, - }, - { - id: "intervalTitle", - query: `query SessionQuery($conferenceId: ID!) { - conference(id: $conferenceId) { - schedules { - intervals { - title - } - } - } -}`, - mapToCollection({ conference }) { - return [] - .concat( - ...get(conference, "schedules", []).map(({ intervals }) => intervals) - ) - .filter(({ title }) => title); - }, - mapToOption({ title }) { - return { value: title, label: title }; - }, - }, -]; - -export default ConnectedSpeakerTweetTemplate; diff --git a/server/routes/templates/ThemeTemplate.tsx b/server/routes/templates/ThemeTemplate.tsx deleted file mode 100644 index a7971cf5..00000000 --- a/server/routes/templates/ThemeTemplate.tsx +++ /dev/null @@ -1,162 +0,0 @@ -import styled from "@emotion/styled"; -import { Color } from "csstype"; -import map from "lodash/map"; -import complement from "polished/lib/color/complement"; -import invert from "polished/lib/color/invert"; -import * as React from "react"; -import { Font, Theme } from "../../schema/Theme"; - -interface ThemeTemplateProps { - theme: Theme; -} - -const ThemeTemplateContainer = styled.section``; -const ThemeTemplateHeader = styled.h1``; - -const FontsContainer = styled.section` - margin-top: 1em; - margin-bottom: 1em; -`; -const FontsPrimaryHeader = styled.h2` - margin-bottom: 0.5em; -`; -const FontsSecondaryHeader = styled.h3` - margin-bottom: 0.5em; -`; - -interface FontContainerProps { - fontFamily: Font["family"]; -} - -const FontContainer = styled.div` - font-family: "${({ fontFamily }: FontContainerProps) => fontFamily}"; -` as React.FC; - -const TexturesContainer = styled.section` - margin-top: 1em; - margin-bottom: 1em; -`; -const TextureHeader = styled.h2` - margin-bottom: 0.5em; -`; - -interface TextureProps { - src: HTMLImageElement["src"]; -} -const Texture = styled.img` - max-width: 8em; - max-height: 8em; -` as React.FC; - -const ColorsContainer = styled.section` - margin-top: 1em; - margin-bottom: 1em; -`; -const ColorHeader = styled.h2` - margin-bottom: 0.5em; -`; - -interface ColorProps { - color: Color; -} -const Color = styled.div` - padding: 1em; - display: inline-block; - width: 8em; - height: 8em; - background-color: ${({ color }: ColorProps) => color}; - color: ${({ color }: ColorProps) => - tryTo(() => complement(invert(color)), "")}; -` as React.FC; - -const LogosContainer = styled.section` - margin-top: 1em; - margin-bottom: 1em; -`; -const LogoHeader = styled.h2` - margin-bottom: 0.5em; -`; - -interface LogoProps { - property: string; - alt: HTMLImageElement["alt"]; - src: HTMLImageElement["src"]; -} -const LogoContainer = styled.section` - margin-right: 1em; - display: inline-block; - vertical-align: top; - font-style: italic; -`; -const Logo = styled.img` - max-width: 8em; - max-height: 8em; - background-color: ${({ property }: LogoProps) => - tryTo(() => invert(property), "")}; -` as React.FC; -const LogoLabel = styled.label``; - -function tryTo(fn, defaultValue) { - try { - return fn(); - } catch (err) { - return defaultValue; - } -} - -interface ThemeTemplateProps { - theme: Theme; - id: string; -} - -function ThemeTemplate({ id, theme }: ThemeTemplateProps) { - return ( - - Theme - - Fonts - Primary - - The quick brown fox jumps over the lazy dog - - Secondary - - The quick brown fox jumps over the lazy dog - - - - Textures - {map(theme.textures, (texture, index) => ( - - ))} - - - Colors - {map(theme.colors, (color, colorProperty) => ( - - {colorProperty} - - ))} - - - Logos - {map(theme.logos, (logo, logoProperty) => - map(logo, (image, imageProperty) => { - const property = `${logoProperty}.${imageProperty}`; - - return ( - - {property} - - - ); - }) - )} - - - ); -} - -ThemeTemplate.filename = "theme"; - -export default ThemeTemplate; diff --git a/server/routes/templates/TweetTemplate.tsx b/server/routes/templates/TweetTemplate.tsx deleted file mode 100644 index c4f8bbc0..00000000 --- a/server/routes/templates/TweetTemplate.tsx +++ /dev/null @@ -1,466 +0,0 @@ -import styled from "@emotion/styled"; -import { Color, FontFamilyProperty } from "csstype"; -import hexToRgba from "hex-to-rgba"; -import get from "lodash/get"; -// import map from "lodash/map"; -import * as React from "react"; -import CopyToClipboard from "react-copy-to-clipboard"; -import titleCase from "to-title-case"; -import { Conference } from "../../schema/Conference"; -import { Contact, ContactType } from "../../schema/Contact"; -import { Theme } from "../../schema/Theme"; -import connect from "../components/connect"; -import { dayToFinnishLocale } from "../date-utils"; - -const TweetTemplateContainer = styled.div``; -const TweetPageContainer = styled.div``; - -interface TweetContainerProps { - primaryColor: Color; - secondaryColor: Color; - texture: string; -} - -const TweetContainer = styled.div` - background-image: ${({ - primaryColor, - secondaryColor, - texture, - }: TweetContainerProps) => `linear-gradient( - ${primaryColor}, - ${hexToRgba(secondaryColor, 0.79)} - ), - url("${texture}")`}; - background-size: cover; - position: relative; - width: 880px; - height: 440px; - overflow: hidden; - display: grid; - grid-template-columns: 1.1fr 0.9fr; - color: white; -` as React.FC; - -const TweetTextContainer = styled.div` - position: relative; - margin-top: 2em; - padding: 0.25em; - max-width: 880px; - background-color: #fff6c8; -`; -const TweetTextToCopy = styled.span` - margin-right: 0.5em; -`; -const TweetCopyButton = styled.button` - position: absolute; - right: 0; - top: 0; - z-index: 1; -`; - -const TweetRow = styled.div` - display: grid; - grid-template-columns: 1fr 1fr; - align-items: center; -`; - -const TweetLogo = styled.img` - max-width: 10em; - margin-left: -0.5em; -`; - -const TweetConferenceDays = styled.h3``; - -const TweetText = styled.h2` - padding-top: 0.5em; - font-size: 300%; -`; - -interface TweetDescriptionProps { - fontFamily: FontFamilyProperty; -} - -const TweetDescription = styled.h2` - width: 120%; - font-size: 200%; - font-weight: 200; - font-family: ${({ fontFamily }: TweetDescriptionProps) => fontFamily}; -` as React.FC; - -interface SpeakerTweetTemplateProps { - conference?: Conference; - contact: Contact; - theme: Theme; - id: string; -} - -function SpeakerTweetTemplate({ - conference, - contact, - theme, - id, -}: SpeakerTweetTemplateProps) { - if (!conference) { - return null; - } - - const days = getConferenceDays(conference); - // TODO: Set up conference.hashtag (should not contain #) - const tweetTextToCopy = `Learn more about the topic at #${conference.name - .split(" ") - .join("")} (${days})`; - - return ( - - - {React.createElement( - contact.type.includes(ContactType.SPONSOR) - ? SponsorTweet - : SpeakerTweet, - { - logo: theme.logos.white.withText.url, - days, - contact, - theme, - conference, - } - )} - - - {tweetTextToCopy} - alert("Copied to clipboard")} - > - - - - - ); -} - -function getConferenceDays(conference: Conference): string { - // const { schedules } = conference; - // const conferenceDays = map(schedules, ({ day }) => dayToFinnishLocale(day)); - const firstDay = dayToFinnishLocale(conference.startDate); // conferenceDays[0]; - const lastDay = dayToFinnishLocale(conference.endDate); // conferenceDays[conferenceDays.length - 1]; - - return `${firstDay}-${lastDay}`; -} - -interface TweetProps { - days: string; - contact: Contact; - theme: Theme; - conference: Conference; -} - -const TweetInfoContainer = styled.div` - padding: 3em 0 3em 3em; - display: grid; - justify-content: center; -`; - -const TweetImageContainer = styled.div` - padding: 3em; -`; - -interface TweetImageProps { - color?: Color; - isCircle?: boolean; - src: HTMLImageElement["src"]; -} - -const TweetImage = styled.img` - width: 100%; - box-sizing: border-box; - clip-path: ${({ isCircle }: TweetImageProps) => - isCircle ? "circle(9em at center)" : ""}; -` as React.FC; - -function SpeakerTweet({ days, contact, theme, conference }: TweetProps) { - if (conference.name === "ReasonConf 2019") { - return ( - - ); - } - - const logo = theme.logos.white.withText.url; - const { name, image, talks, workshops } = contact; - - // TODO: Restore: use secondary font instead of primary - // The problem is that Work Sans is missing a woff2 - return ( - - - - - {days} - - {name} - {Array.isArray(talks) && talks.length > 0 && ( - - {talks[0].title} - - )} - {Array.isArray(talks) && - talks.length === 0 && - Array.isArray(workshops) && - workshops.length > 0 && ( - <> - Workshop - - {workshops[0].title} - - - )} - - - - - - ); -} - -const Reason = { - TweetContainer: styled(TweetContainer)` - grid-template-columns: 1fr 1fr; - width: 600px; - height: 440px; - `, - TweetImageContainer: styled(TweetImageContainer)` - align-self: center; - `, - TweetInfoContainer: styled(TweetInfoContainer)` - padding: 2em; - display: grid; - justify-items: right; - `, - TweetImage: styled(TweetImage)` - clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%); - - &::before { - content: " "; - clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%); - } - ` as React.FC, - TweetRow: styled(TweetRow)` - display: grid; - grid-template-columns: 1fr; - align-items: center; - justify-items: right; - `, - TweetDescription: styled(TweetDescription)` - padding-top: 0; - justify-self: left; - font-size: 150%; - color: #97a5b1; - `, - TweetTalkTitle: styled.h3` - margin-top: 2em; - color: #97a5b1; - `, - TweetName: styled(TweetText)` - padding-top: 0; - `, -}; - -function ReasonSpeakerTweet({ - days, - contact: { name, image, company, talks }, - theme, - conference, -}: TweetProps) { - const logo = theme.logos.colored.withText.url; - - return ( - - - - - - - - - - {days} - {conference.locations && ( - - {conference.locations[0].city} - - )} - - {talks && ( - - {talks[0].title} - - )} - - {name} - - {company && ( - - {company} - - )} - - - ); -} - -const TweetSponsorContainer = styled.div` - padding: 3em; - display: grid; - grid-template-rows: 1fr 1fr; - align-items: center; -`; - -const TweetSponsorImage = styled(TweetImage)` - margin-top: 3em; - max-height: 6cm; - max-width: 100%; - width: auto; -`; - -const TweetSponsorText = styled(TweetText)` - padding-top: 0; - text-align: center; -`; - -function SponsorTweet({ - days, - contact: { about, image, type }, - theme, -}: TweetProps) { - const logo = theme.logos.white.withText.url; - - return ( - - - - - {days} - - - - - - {about} - - - {getSponsorType(type)} - - - ); -} - -function getSponsorType(type: Contact["type"]) { - return titleCase(type.filter((t) => t !== ContactType.SPONSOR)[0]); -} - -const ConnectedSpeakerTweetTemplate = connect( - "/graphql", - ` -query SpeakerTweetTemplateQuery($conferenceId: ID!, $contactName: String!) { - contact(contactName: $contactName, conferenceId: $conferenceId) { - name - company - about - image { - url - } - talks { - title - } - workshops { - title - } - type - } - conference(id: $conferenceId) { - name - startDate - endDate - slogan - schedules { - day - } - locations { - city - country { - name - } - } - } -} - `, - {}, - ({ conferenceId, contactName }) => ({ conferenceId, contactName }) -)(SpeakerTweetTemplate); - -ConnectedSpeakerTweetTemplate.filename = "speaker-tweet"; - -// TODO: Better use enums here -ConnectedSpeakerTweetTemplate.variables = [ - { - id: "conferenceId", - query: `query ConferenceIdQuery { - conferences { - id - name - } -}`, - mapToCollection({ conferences }) { - return conferences; - }, - mapToOption({ id, name }) { - return { - value: id, - label: name, - }; - }, - }, - { - id: "contactName", - query: `query SpeakerQuery($conferenceId: ID!) { - conference(id: $conferenceId) { - allSpeakers { - name - } - sponsors { - name - } - } -}`, - mapToCollection({ conference }) { - return [] - .concat(get(conference, "allSpeakers"), get(conference, "sponsors")) - .filter(Boolean); - }, - mapToOption({ name }) { - return { - value: name, - label: name, - }; - }, - }, -]; - -export default ConnectedSpeakerTweetTemplate; diff --git a/server/routes/templates/WorkshopTweetTemplate.tsx b/server/routes/templates/WorkshopTweetTemplate.tsx deleted file mode 100644 index 0848d29f..00000000 --- a/server/routes/templates/WorkshopTweetTemplate.tsx +++ /dev/null @@ -1,345 +0,0 @@ -import styled from "@emotion/styled"; -import { Color, FontFamilyProperty } from "csstype"; -import hexToRgba from "hex-to-rgba"; -import get from "lodash/get"; -import map from "lodash/map"; -import * as React from "react"; -import CopyToClipboard from "react-copy-to-clipboard"; -import titleCase from "to-title-case"; -import { Conference } from "../../schema/Conference"; -import { Contact, ContactType } from "../../schema/Contact"; -import { Theme } from "../../schema/Theme"; -import connect from "../components/connect"; -import { dayToFinnishLocale } from "../date-utils"; - -const TweetTemplateContainer = styled.div``; -const TweetPageContainer = styled.div``; - -interface TweetContainerProps { - primaryColor: Color; - secondaryColor: Color; - texture: string; -} - -const TweetContainer = styled.div` - background-image: ${({ - primaryColor, - secondaryColor, - texture, - }: TweetContainerProps) => `linear-gradient( - ${primaryColor}, - ${hexToRgba(secondaryColor, 0.79)} - ), - url("${texture}")`}; - background-size: cover; - position: relative; - width: 880px; - height: 440px; - overflow: hidden; - display: grid; - grid-template-columns: 1.1fr 0.9fr; - color: white; -` as React.FC; - -const TweetTextContainer = styled.div` - position: relative; - margin-top: 2em; - padding: 0.25em; - max-width: 880px; - background-color: #fff6c8; -`; -const TweetTextToCopy = styled.span` - margin-right: 0.5em; -`; -const TweetCopyButton = styled.button` - position: absolute; - right: 0; - top: 0; - z-index: 1; -`; - -const TweetRow = styled.div` - display: grid; - grid-template-columns: 1fr 1fr; - align-items: center; -`; - -const TweetLogo = styled.img` - max-width: 10em; - margin-left: -0.5em; -`; - -const TweetConferenceDays = styled.h3``; - -const TweetText = styled.h2` - padding-top: 0.5em; - font-size: 300%; -`; - -interface TweetDescriptionProps { - fontFamily: FontFamilyProperty; -} - -const TweetDescription = styled.h2` - width: 120%; - font-size: 200%; - font-weight: 200; - font-family: ${({ fontFamily }: TweetDescriptionProps) => fontFamily}; -` as React.FC; - -interface SpeakerTweetTemplateProps { - conference?: Conference; - contact: Contact; - theme: Theme; - id: string; -} - -function SpeakerTweetTemplate({ - conference, - contact, - theme, - id, -}: SpeakerTweetTemplateProps) { - if (!conference) { - return null; - } - - const days = getConferenceDays(conference); - // TODO: Set up conference.hashtag (should not contain #) - const tweetTextToCopy = `Learn more about the topic at #${conference.name - .split(" ") - .join("")} (${days})`; - - return ( - - - {React.createElement( - contact.type.includes(ContactType.SPONSOR) - ? SponsorTweet - : SpeakerTweet, - { - logo: theme.logos.white.withText.url, - days, - contact, - theme, - conference, - } - )} - - - {tweetTextToCopy} - alert("Copied to clipboard")} - > - - - - - ); -} - -function getConferenceDays(conference): string { - const { schedules } = conference; - const conferenceDays = map(schedules, ({ day }) => dayToFinnishLocale(day)); - const firstDay = conferenceDays[0]; - const lastDay = conferenceDays[conferenceDays.length - 1]; - - return `${firstDay}-${lastDay}`; -} - -interface TweetProps { - days: string; - contact: Contact; - theme: Theme; - conference: Conference; -} - -const TweetInfoContainer = styled.div` - padding: 3em 0 3em 3em; - display: grid; - justify-content: center; -`; - -const TweetImageContainer = styled.div` - padding: 3em; -`; - -interface TweetImageProps { - color?: Color; - isCircle?: boolean; - src: HTMLImageElement["src"]; -} - -const TweetImage = styled.img` - width: 100%; - box-sizing: border-box; - clip-path: ${({ isCircle }: TweetImageProps) => - isCircle ? "circle(9em at center)" : ""}; -` as React.FC; - -function SpeakerTweet({ days, contact, theme, conference }: TweetProps) { - const logo = theme.logos.white.withText.url; - const { name, image, workshops } = contact; - - return ( - - - - - {days} - - {name} - {Array.isArray(workshops) && workshops.length > 0 && ( - <> - Workshop - - {workshops[0].title} - - - )} - - - - - - ); -} - -const TweetSponsorContainer = styled.div` - padding: 3em; - display: grid; - grid-template-rows: 1fr 1fr; - align-items: center; -`; - -const TweetSponsorImage = styled(TweetImage)` - margin-top: 3em; - max-height: 6cm; - max-width: 100%; - width: auto; -`; - -const TweetSponsorText = styled(TweetText)` - padding-top: 0; - text-align: center; -`; - -function SponsorTweet({ - days, - contact: { about, image, type }, - theme, -}: TweetProps) { - const logo = theme.logos.white.withText.url; - - return ( - - - - - {days} - - - - - - {about} - - - {getSponsorType(type)} - - - ); -} - -function getSponsorType(type: Contact["type"]) { - return titleCase(type.filter((t) => t !== ContactType.SPONSOR)[0]); -} - -const ConnectedSpeakerTweetTemplate = connect( - "/graphql", - ` -query SpeakerTweetTemplateQuery($conferenceId: ID!, $contactName: String!) { - contact(contactName: $contactName, conferenceId: $conferenceId) { - name - company - about - image { - url - } - workshops { - title - } - type - } - conference(id: $conferenceId) { - name - slogan - schedules { - day - } - locations { - city - country { - name - } - } - } -} - `, - {}, - ({ conferenceId, contactName }) => ({ conferenceId, contactName }) -)(SpeakerTweetTemplate); - -ConnectedSpeakerTweetTemplate.filename = "speaker-tweet"; - -// TODO: Better use enums here -ConnectedSpeakerTweetTemplate.variables = [ - { - id: "conferenceId", - query: `query ConferenceIdQuery { - conferences { - id - name - } -}`, - mapToCollection({ conferences }) { - return conferences; - }, - mapToOption({ id, name }) { - return { - value: id, - label: name, - }; - }, - }, - { - id: "contactName", - query: `query SpeakerQuery($conferenceId: ID!) { - conference(id: $conferenceId) { - workshopInstructors { - name - } - } -}`, - mapToCollection({ conference }) { - return [].concat(get(conference, "workshopInstructors")).filter(Boolean); - }, - mapToOption({ name }) { - return { - value: name, - label: name, - }; - }, - }, -]; - -export default ConnectedSpeakerTweetTemplate; diff --git a/server/routes/templates/index.ts b/server/routes/templates/index.ts deleted file mode 100644 index a3143457..00000000 --- a/server/routes/templates/index.ts +++ /dev/null @@ -1,23 +0,0 @@ -import BadgeTemplate from "./BadgeTemplate"; -import BusinessCardTemplate from "./BusinessCardTemplate"; -import HeaderTemplate from "./HeaderTemplate"; -import IntroTemplate from "./IntroTemplate"; -import PresentationTemplate from "./PresentationTemplate"; -import ScheduleTemplate from "./ScheduleTemplate"; -import ThemeTemplate from "./ThemeTemplate"; -import TweetTemplate from "./TweetTemplate"; -import SessionTweetTemplate from "./SessionTweetTemplate"; -import WorkshopTweetTemplate from "./WorkshopTweetTemplate"; - -export { - BadgeTemplate, - BusinessCardTemplate, - HeaderTemplate, - IntroTemplate, - ThemeTemplate, - PresentationTemplate, - ScheduleTemplate, - TweetTemplate, - SessionTweetTemplate, - WorkshopTweetTemplate, -}; diff --git a/server/schema/Conference.ts b/server/schema/Conference.ts index 477768b1..caacceba 100644 --- a/server/schema/Conference.ts +++ b/server/schema/Conference.ts @@ -1,5 +1,3 @@ -import map from "lodash/map"; -import { Field, ID, ObjectType } from "type-graphql"; import conferences from "../conferences"; import { Contact, ContactType } from "./Contact"; import { Location } from "./Location"; @@ -7,111 +5,50 @@ import { Schedule } from "./Schedule"; import { Session } from "./Session"; import { Series } from "./Series"; -@ObjectType() -export class Conference { - @Field((_) => ID) - public id!: string; - - @Field((_) => Series) - public series!: string; - - @Field((_) => String) - public name!: string; - - @Field((_) => Contact) - public organizer!: Contact; - - @Field((_) => String) - public year!: string; - - @Field((_) => String) - public startDate!: string; - - @Field((_) => String) - public endDate!: string; - - @Field((_) => String) - public slogan!: string; - - @Field((_) => String) - public websiteUrl!: string; - - @Field((_) => [Location], { nullable: true }) - public locations?: Location[]; - - @Field((_) => [Contact]) - public organizers!: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public mcs?: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public partners?: Contact[]; - - @Field((_) => [Contact]) - public sponsors!: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public goldSponsors!: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public silverSponsors!: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public bronzeSponsors!: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public platformSponsors!: Contact[]; - - @Field((_) => [Schedule]) - public schedules!: Schedule[]; - - @Field((_) => [Contact], { nullable: true }) - public allSpeakers?: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public speakers?: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public keynoteSpeakers?: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public fullTalkSpeakers?: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public lightningTalkSpeakers?: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public panelOnlySpeakers?: Contact[]; - - @Field((_) => [Contact], { nullable: true }) - public workshopInstructors?: Contact[]; - - @Field((_) => [Session], { nullable: true }) - public talks?: Session[]; - - @Field((_) => [Session], { nullable: true }) - public workshops?: Session[]; - - @Field((_) => [Contact]) - public attendees?: Contact[]; +export interface Conference { + id: string; + series: string | Series; + name: string; + organizer: Contact; + year: string; + startDate: string; + endDate: string; + slogan: string; + websiteUrl: string; + locations?: Location[]; + organizers: Contact[]; + mcs?: Contact[]; + partners?: Contact[]; + sponsors: Contact[]; + goldSponsors?: Contact[]; + silverSponsors?: Contact[]; + bronzeSponsors?: Contact[]; + platformSponsors?: Contact[]; + schedules: Schedule[]; + allSpeakers?: Contact[]; + speakers?: Contact[]; + keynoteSpeakers?: Contact[]; + fullTalkSpeakers?: Contact[]; + lightningTalkSpeakers?: Contact[]; + panelOnlySpeakers?: Contact[]; + workshopInstructors?: Contact[]; + talks?: Session[]; + workshops?: Session[]; } -// TODO: Maybe this should become a static method of Conference export function getConference(id: string): Conference { - if (conferences[id]) { - const conference = conferences[id]; - - return { - ...conference, - sponsors: attachSponsorTypes(conference, conference.sponsors), - }; - } else { + if (!conferences[id]) { throw new Error("Unknown conference"); } + + const conference = conferences[id]; + + return { + ...conference, + sponsors: attachSponsorTypes(conference, conference.sponsors), + }; } -// TODO: Extract sponsor levels to this code won't be needed anymore function attachSponsorTypes( conference: Conference, sponsors: Conference["sponsors"] @@ -124,21 +61,24 @@ function attachSponsorTypes( partners, } = conference; - return map(sponsors, ({ name, type, ...rest }) => ({ + return sponsors.map(({ name, type, ...rest }) => ({ ...rest, name, - type: type - .concat( + type: [ + ...type, isSponsor(goldSponsors, name, ContactType.GOLD_SPONSOR), isSponsor(silverSponsors, name, ContactType.SILVER_SPONSOR), isSponsor(bronzeSponsors, name, ContactType.BRONZE_SPONSOR), isSponsor(platformSponsors, name, ContactType.PLATFORM_SPONSOR), isSponsor(partners, name, ContactType.PARTNER) - ) - .filter(Boolean), + ].filter((contactType): contactType is ContactType => Boolean(contactType)), })); } -function isSponsor(sponsors, sponsorName, contactType) { - return sponsors.find(({ name }) => sponsorName === name) ? contactType : null; +function isSponsor( + sponsors: Conference["sponsors"] | undefined, + sponsorName: string, + contactType: ContactType +) { + return sponsors?.find(({ name }) => sponsorName === name) ? contactType : null; } diff --git a/server/schema/Contact.ts b/server/schema/Contact.ts index e29dfdf0..c5d2aea0 100644 --- a/server/schema/Contact.ts +++ b/server/schema/Contact.ts @@ -1,6 +1,3 @@ -import flatMap from "lodash/flatMap"; -import uniqBy from "lodash/uniqBy"; -import { Field, ObjectType } from "type-graphql"; import { Conference } from "./Conference"; import { Image } from "./Image"; import Keyword from "./keywords"; @@ -27,84 +24,45 @@ export enum ContactType { ATTENDEE = "ATTENDEE", } -@ObjectType() -export class Contact { - // Needed for badges - @Field((_) => String) - public firstName?: string; - - // Needed for badges - @Field((_) => String) - public lastName?: string; - - // Combine with first/lastName somehow? Problematic for companies. - @Field((_) => String) - public name!: string; - - @Field((_) => String) - public about!: string; - - @Field((_) => String, { nullable: true }) - public aboutShort?: string; - - // TODO: This might become a Contact reference eventually - @Field((_) => String, { nullable: true }) - public company?: string; - - // TODO: This might become a Contact reference eventually - @Field((_) => String, { nullable: true }) - public tagline?: string; - - @Field((_) => Image) - public image!: Image; - - @Field((_) => [ContactType]) - public type!: ContactType[]; - - @Field((_) => Social) - public social!: Social; - - @Field((_) => [String], { nullable: true }) - public keywords?: Keyword[]; - - @Field((_) => Location) - public location!: Location; - - @Field((_) => [Session], { nullable: true }) - public talks?: Session[]; - - @Field((_) => [Session], { nullable: true }) - public workshops?: Session[]; - - @Field((_) => Boolean, { nullable: true }) - public noPhotography?: boolean; +export interface Contact { + firstName?: string; + lastName?: string; + name: string; + about: string; + aboutShort?: string; + company?: string; + tagline?: string; + image: Image; + type: ContactType[]; + social: Social; + keywords?: Keyword[]; + location: Location; + talks?: Session[]; + workshops?: Session[]; + noPhotography?: boolean; } -// TODO: Maybe this should become a static method of Conference export function getSessionSpeakers( conference: Conference, sessions: Session[] ): Contact[] { - const sessionTypes = [ + const talks = resolveSessions(conference.schedules, [ SessionType.LIGHTNING_TALK, SessionType.PANEL, SessionType.TALK, SessionType.KEYNOTE, - ]; - - const talks = resolveSessions(conference.schedules, sessionTypes); + ]); const workshops = resolveSessions(conference.schedules, [ SessionType.WORKSHOP, ]); - const speakers = uniqBy( - flatMap(sessions, (session) => + const speakers = uniqByName( + sessions.flatMap((session) => (session.people || []).concat( session.sessions - ? flatMap(session.sessions, (session) => session.people || []) + ? session.sessions.flatMap((childSession) => childSession.people || []) : [] ) - ), - "name" + ) ); return speakers.map((speaker) => ({ @@ -123,3 +81,17 @@ export function getSessionSpeakers( : [], })); } + +function uniqByName(contacts: Contact[]) { + const names = new Set(); + + return contacts.filter(({ name }) => { + if (names.has(name)) { + return false; + } + + names.add(name); + + return true; + }); +} diff --git a/server/schema/Country.ts b/server/schema/Country.ts index 00ce9f20..4b6ee574 100644 --- a/server/schema/Country.ts +++ b/server/schema/Country.ts @@ -1,10 +1,4 @@ -import { Field, ObjectType } from "type-graphql"; - -@ObjectType() -export class Country { - @Field((_) => String) - public name?: string; - - @Field((_) => String) - public code?: string; +export interface Country { + name?: string; + code?: string; } diff --git a/server/schema/Image.ts b/server/schema/Image.ts index f142480d..d1e3a8ed 100644 --- a/server/schema/Image.ts +++ b/server/schema/Image.ts @@ -1,20 +1,9 @@ -import { InterpolationWithTheme } from "@emotion/core"; -import { Field, ObjectType } from "type-graphql"; - -@ObjectType() -class Style { - @Field((_) => String) - public backgroundSize!: string; +export interface Style { + backgroundSize: string; } -@ObjectType() -export class Image { - @Field((_) => String) - public url!: string; - - @Field((_) => String, { nullable: true }) - public title?: string; - - @Field((_) => Style, { nullable: true }) - public style?: InterpolationWithTheme; +export interface Image { + url: string; + title?: string; + style?: Style; } diff --git a/server/schema/Interval.ts b/server/schema/Interval.ts index 0774b481..53b5699a 100644 --- a/server/schema/Interval.ts +++ b/server/schema/Interval.ts @@ -1,31 +1,14 @@ -import { Field, ObjectType } from "type-graphql"; import { Contact } from "./Contact"; import { Location } from "./Location"; import { Session, SessionUrls } from "./Session"; -@ObjectType() -export class Interval { - @Field((_) => String) - public begin!: string; - - @Field((_) => String) - public end!: string; - - @Field((_) => String, { nullable: true }) - public title?: string; - - @Field((_) => [Session]) - public sessions!: Session[]; - - @Field((_) => Location, { nullable: true }) - public location?: Location; - - @Field((_) => Contact, { nullable: true }) - public mc?: Contact; - - @Field((_) => SessionUrls, { nullable: true }) - public urls?: SessionUrls; - - @Field((_) => String, { nullable: true }) - public drawing?: string; +export interface Interval { + begin: string; + end: string; + title?: string; + sessions: Session[]; + location?: Location; + mc?: Contact; + urls?: SessionUrls; + drawing?: string; } diff --git a/server/schema/Location.ts b/server/schema/Location.ts index bb95b281..494962c1 100644 --- a/server/schema/Location.ts +++ b/server/schema/Location.ts @@ -1,46 +1,13 @@ -import { - Ctx, - Field, - FieldResolver, - ObjectType, - Resolver, - Root, -} from "type-graphql"; -import { IContext } from "./Context"; import { Country } from "./Country"; import { Image } from "./Image"; import { Social } from "./Social"; -@ObjectType() -export class Location { - @Field((_) => String, { nullable: true }) - public name?: string; - - @Field((_) => String, { nullable: true }) - public about?: string; - - @Field((_) => Image, { nullable: true }) - public image?: Image; - - @Field((_) => Social, { nullable: true }) - public social?: Social; - - @Field((_) => Country, { nullable: true }) - public country?: Country; - - @Field((_) => String, { nullable: true }) - public city?: string; - - @Field((_) => String, { nullable: true }) - public address?: string; -} - -@Resolver((_) => Location) -export class LocationResolver { - @FieldResolver((_) => Image) - public image(@Root() location: Location, @Ctx() ctx: IContext) { - return { - url: location.image ? `${ctx.mediaUrl}/${location.image.url}` : "", - }; - } +export interface Location { + name?: string; + about?: string; + image?: Image; + social?: Social; + country?: Country; + city?: string; + address?: string; } diff --git a/server/schema/Schedule.ts b/server/schema/Schedule.ts index 3512bb91..99f539d8 100644 --- a/server/schema/Schedule.ts +++ b/server/schema/Schedule.ts @@ -1,36 +1,25 @@ -import flatMap from "lodash/flatMap"; -import uniq from "lodash/uniq"; -import { Field, ObjectType } from "type-graphql"; import { Interval } from "./Interval"; import { Location } from "./Location"; import SessionType from "./SessionType"; -@ObjectType() -export class Schedule { - @Field((_) => String) - public day!: string; - - @Field((_) => Location, { nullable: true }) - public location?: Location; - - @Field((_) => String, { nullable: true }) - public description?: string; - - @Field((_) => [Interval]) - public intervals!: Interval[]; +export interface Schedule { + day: string; + location?: Location; + description?: string; + intervals: Interval[]; } export function resolveSessions( schedules: Schedule[], sessionTypes: SessionType[] ) { - return uniq( - flatMap(schedules, ({ intervals }) => - flatMap(intervals, ({ sessions }) => - flatMap(sessions, (session) => - [session].concat(session.sessions || []) - ).filter(({ type }) => sessionTypes.includes(type)) - ) + const sessions = schedules.flatMap(({ intervals }) => + intervals.flatMap(({ sessions }) => + sessions + .flatMap((session) => [session].concat(session.sessions || [])) + .filter(({ type }) => sessionTypes.includes(type)) ) ); + + return Array.from(new Set(sessions)); } diff --git a/server/schema/Series.ts b/server/schema/Series.ts index d7b4ecae..3e64a954 100644 --- a/server/schema/Series.ts +++ b/server/schema/Series.ts @@ -1,14 +1,7 @@ -import { Field, ID, ObjectType } from "type-graphql"; import { Conference } from "./Conference"; -@ObjectType() -export class Series { - @Field((_) => ID) - public id!: string; - - @Field((_) => String) - public name!: string; - - @Field((_) => [Conference]) - public conferences!: [Conference]; +export interface Series { + id: string; + name: string; + conferences: Conference[]; } diff --git a/server/schema/Session.ts b/server/schema/Session.ts index 53805ce9..24b1e3f1 100644 --- a/server/schema/Session.ts +++ b/server/schema/Session.ts @@ -1,4 +1,3 @@ -import { Field, ObjectType } from "type-graphql"; import { Contact } from "./Contact"; import { Interval } from "./Interval"; import Keyword from "./keywords"; @@ -6,73 +5,29 @@ import Level from "./Level"; import { Location } from "./Location"; import SessionType from "./SessionType"; -@ObjectType() -export class SessionUrls { - @Field((_) => String, { nullable: true }) - public web?: string; - - @Field((_) => String, { nullable: true }) - public slides?: string; - - @Field((_) => String, { nullable: true }) - public video?: string; - - @Field((_) => String, { nullable: true }) - public demo?: string; - - @Field((_) => String, { nullable: true }) - public drawing?: string; +export interface SessionUrls { + web?: string; + slides?: string; + video?: string; + demo?: string; + drawing?: string; } -@ObjectType() -export class Session { - @Field((_) => SessionType) - public type!: SessionType; - - @Field((_) => Level) - public level?: Level; - - @Field((_) => String) - public title!: string; - - // TODO: Eliminate and push title customization to frontend? - @Field((_) => Boolean) - public hasTitle?: boolean; - - @Field((_) => String, { nullable: true }) - public description?: string; - - @Field((_) => [String], { nullable: true }) - public keywords?: Keyword[]; - - @Field((_) => Location, { nullable: true }) - public location?: Location; - - @Field((_) => [Contact], { nullable: true }) - public people?: Contact[]; - - @Field((_) => SessionUrls, { nullable: true }) - public urls?: SessionUrls; - - @Field((_) => [Session], { nullable: true }) - public sessions?: Session[]; - - // This refers to the closest interval. Note the recursion above. - @Field((_) => Interval) - public parent?: Interval; - - // Derived from a parent Schedule if it exists - @Field((_) => String, { nullable: true }) - public day?: string; - - // Derived from a parent Interval if it exists - @Field((_) => String, { nullable: true }) - public begin?: string; - - // Derived from a parent Interval if it exists - @Field((_) => String, { nullable: true }) - public end?: string; +export interface Session { + type: SessionType; + level?: Level; + title: string; + hasTitle?: boolean; + description?: string; + keywords?: Keyword[]; + location?: Location; + people?: Contact[]; + urls?: SessionUrls; + sessions?: Session[]; + parent?: Interval; + day?: string; + begin?: string; + end?: string; } -// Backwards-compatibility with content. TODO: refactor out export { SessionType, Level }; diff --git a/server/schema/Social.ts b/server/schema/Social.ts index 2838185e..a64264c1 100644 --- a/server/schema/Social.ts +++ b/server/schema/Social.ts @@ -1,58 +1,20 @@ -import { Field, ObjectType } from "type-graphql"; - -@ObjectType() -export class Social { - @Field((_) => String, { nullable: true }) - public homepage?: string; - - @Field((_) => String, { nullable: true }) - public mastodon?: string; - - @Field((_) => String, { nullable: true }) - public bluesky?: string; - - @Field((_) => String, { nullable: true }) - public twitter?: string; - - @Field((_) => String, { nullable: true }) - public github?: string; - - @Field((_) => String, { nullable: true }) - public facebook?: string; - - @Field((_) => String, { nullable: true }) - public googleMaps?: string; - - @Field((_) => String, { nullable: true }) - public medium?: string; - - @Field((_) => String, { nullable: true }) - public instagram?: string; - - @Field((_) => String, { nullable: true }) - public linkedin?: string; - - @Field((_) => String, { nullable: true }) - public youtube?: string; - - @Field((_) => String, { nullable: true }) - public vk?: string; - - @Field((_) => String, { nullable: true }) - public pinterest?: string; - - @Field((_) => String, { nullable: true }) - public vimeo?: string; - - @Field((_) => String, { nullable: true }) - public dribble?: string; - - @Field((_) => String, { nullable: true }) - public devto?: string; - - @Field((_) => String, { nullable: true }) - public tiktok?: string; - - @Field((_) => String, { nullable: true }) - public twitch?: string; +export interface Social { + homepage?: string; + mastodon?: string; + bluesky?: string; + twitter?: string; + github?: string; + facebook?: string; + googleMaps?: string; + medium?: string; + instagram?: string; + linkedin?: string; + youtube?: string; + vk?: string; + pinterest?: string; + vimeo?: string; + dribble?: string; + devto?: string; + tiktok?: string; + twitch?: string; } diff --git a/server/schema/Theme.ts b/server/schema/Theme.ts index f9e1ebb8..654f1a45 100644 --- a/server/schema/Theme.ts +++ b/server/schema/Theme.ts @@ -1,92 +1,42 @@ -import { Field, ID, ObjectType } from "type-graphql"; import { Image } from "./Image"; -@ObjectType() -export class Colors { - @Field((_) => String) - public primary!: string; - - @Field((_) => String) - public secondary!: string; - - @Field((_) => String) - public text!: string; - - @Field((_) => String) - public background!: string; +export interface Colors { + primary: string; + secondary: string; + text: string; + background: string; } -// TODO: Likely this should be modelled a a union -@ObjectType() -export class Font { - @Field((_) => String, { nullable: true }) - public family?: string; - - @Field((_) => String, { nullable: true }) - public weight?: string; - - @Field((_) => String, { nullable: true }) - public style?: string; - - @Field((_) => String, { nullable: true }) - public fileName?: string; - - @Field((_) => [String], { nullable: true }) - public formats?: string[]; - - @Field((_) => String, { nullable: true }) - public href?: string; +export interface Font { + family?: string; + weight?: string; + style?: string; + fileName?: string; + formats?: string[]; + href?: string; } -@ObjectType() -export class Fonts { - @Field((_) => String) - public primary!: string; - - @Field((_) => String) - public secondary!: string; - - @Field((_) => [Font]) - public variants!: Font[]; +export interface Fonts { + primary: string; + secondary: string; + variants: Font[]; } -@ObjectType() -export class WithWithoutText { - @Field((_) => Image) - public withoutText!: Image; - - @Field((_) => Image) - public withText!: Image; +export interface WithWithoutText { + withoutText: Image; + withText: Image; } -@ObjectType() -export class Logos { - @Field((_) => WithWithoutText) - public black!: WithWithoutText; - - @Field((_) => WithWithoutText) - public colored!: WithWithoutText; - - @Field((_) => WithWithoutText) - public white!: WithWithoutText; +export interface Logos { + black: WithWithoutText; + colored: WithWithoutText; + white: WithWithoutText; } -// TODO: Add fonts here (name + path) -@ObjectType() -export class Theme { - @Field((_) => ID) - public id!: string; - - // TODO: Convert to an array (more flexible than primary/secondary) - @Field((_) => Fonts) - public fonts!: Fonts; - - @Field((_) => Image) - public textures!: [Image]; - - @Field((_) => Colors) - public colors!: Colors; - - @Field((_) => Logos) - public logos!: Logos; +export interface Theme { + id: string; + fonts: Fonts; + textures: Image[]; + colors: Colors; + logos: Logos; } diff --git a/server/schema/resolvers/conferenceSeries.ts b/server/schema/conference-series.ts similarity index 99% rename from server/schema/resolvers/conferenceSeries.ts rename to server/schema/conference-series.ts index a156a85d..e189a5d6 100644 --- a/server/schema/resolvers/conferenceSeries.ts +++ b/server/schema/conference-series.ts @@ -1,4 +1,4 @@ -import { Theme } from "../Theme"; +import { Theme } from "./Theme"; const conferenceSeries: { [key: string]: { diff --git a/server/schema/graphql-schema.ts b/server/schema/graphql-schema.ts new file mode 100644 index 00000000..36c40932 --- /dev/null +++ b/server/schema/graphql-schema.ts @@ -0,0 +1,728 @@ +import { + GraphQLBoolean, + GraphQLEnumType, + GraphQLID, + GraphQLList, + GraphQLNonNull, + GraphQLObjectType, + GraphQLSchema, + GraphQLString, +} from "graphql"; +import conferences from "../conferences"; +import { locations, people, sponsors } from "../../content/generated"; +import { Conference, getConference } from "./Conference"; +import { Contact, ContactType, getSessionSpeakers } from "./Contact"; +import { IContext } from "./Context"; +import Level from "./Level"; +import { Location } from "./Location"; +import { resolveSessions } from "./Schedule"; +import { Session, SessionType } from "./Session"; +import conferenceSeries from "./conference-series"; + +const ContactTypeEnum = createEnumType("ContactType", ContactType); +const SessionTypeEnum = createEnumType("SessionType", SessionType); +const LevelEnum = createEnumType("Level", Level); + +const StyleType = new GraphQLObjectType({ + name: "Style", + fields: { + backgroundSize: { type: new GraphQLNonNull(GraphQLString) }, + }, +}); + +const ImageType = new GraphQLObjectType({ + name: "Image", + fields: { + url: { type: new GraphQLNonNull(GraphQLString) }, + title: { type: GraphQLString }, + style: { type: StyleType }, + }, +}); + +const CountryType = new GraphQLObjectType({ + name: "Country", + fields: { + name: { type: GraphQLString }, + code: { type: GraphQLString }, + }, +}); + +const SocialType = new GraphQLObjectType({ + name: "Social", + fields: { + homepage: { type: GraphQLString }, + mastodon: { type: GraphQLString }, + bluesky: { type: GraphQLString }, + twitter: { type: GraphQLString }, + github: { type: GraphQLString }, + facebook: { type: GraphQLString }, + googleMaps: { type: GraphQLString }, + medium: { type: GraphQLString }, + instagram: { type: GraphQLString }, + linkedin: { type: GraphQLString }, + youtube: { type: GraphQLString }, + vk: { type: GraphQLString }, + pinterest: { type: GraphQLString }, + vimeo: { type: GraphQLString }, + dribble: { type: GraphQLString }, + devto: { type: GraphQLString }, + tiktok: { type: GraphQLString }, + twitch: { type: GraphQLString }, + }, +}); + +const LocationType = new GraphQLObjectType({ + name: "Location", + fields: () => ({ + name: { type: GraphQLString }, + about: { type: GraphQLString }, + image: { + type: ImageType, + resolve(location, _args, ctx) { + if (!location.image) { + return null; + } + + return { + ...location.image, + url: `${ctx.mediaUrl}/${location.image.url}`, + }; + }, + }, + social: { type: SocialType }, + country: { type: CountryType }, + city: { type: GraphQLString }, + address: { type: GraphQLString }, + }), +}); + +const SessionUrlsType = new GraphQLObjectType, IContext>({ + name: "SessionUrls", + fields: { + web: { type: GraphQLString }, + slides: { type: GraphQLString }, + video: { type: GraphQLString }, + demo: { type: GraphQLString }, + drawing: { + type: GraphQLString, + resolve(root, _args, ctx) { + if (!root.drawing) { + return null; + } + + return `${ctx.mediaUrl}/${root.drawing}`; + }, + }, + }, +}); + +const IntervalType = new GraphQLObjectType({ + name: "Interval", + fields: () => ({ + begin: { type: new GraphQLNonNull(GraphQLString) }, + end: { type: new GraphQLNonNull(GraphQLString) }, + title: { type: GraphQLString }, + sessions: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(SessionTypeObject))), + resolve(interval: { sessions: Session[] }) { + return interval.sessions.map((session) => ({ + ...session, + interval, + })); + }, + }, + location: { type: LocationType }, + mc: { type: ContactObjectType }, + urls: { type: SessionUrlsType }, + drawing: { type: GraphQLString }, + }), +}); + +const ScheduleType = new GraphQLObjectType({ + name: "Schedule", + fields: () => ({ + day: { type: new GraphQLNonNull(GraphQLString) }, + location: { type: LocationType }, + description: { type: GraphQLString }, + intervals: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(IntervalType))), + }, + }), +}); + +const SessionTypeObject = new GraphQLObjectType({ + name: "Session", + fields: () => ({ + type: { type: new GraphQLNonNull(SessionTypeEnum) }, + level: { type: LevelEnum }, + title: { + type: new GraphQLNonNull(GraphQLString), + resolve(session) { + return session.title || "Mysterious talk"; + }, + }, + hasTitle: { + type: GraphQLBoolean, + resolve(session) { + return Boolean(session.title); + }, + }, + description: { type: GraphQLString }, + keywords: { type: new GraphQLList(GraphQLString) }, + location: { type: LocationType }, + people: { type: new GraphQLList(ContactObjectType) }, + speakers: { + type: new GraphQLList(ContactObjectType), + deprecationReason: "Use `people` instead", + resolve(session) { + return session.people || []; + }, + }, + urls: { type: SessionUrlsType }, + sessions: { type: new GraphQLList(SessionTypeObject) }, + parent: { type: IntervalType }, + day: { type: GraphQLString }, + begin: { type: GraphQLString }, + end: { type: GraphQLString }, + }), +}); + +const ContactObjectType = new GraphQLObjectType({ + name: "Contact", + fields: () => ({ + firstName: { + type: new GraphQLNonNull(GraphQLString), + resolve(contact) { + return contact.firstName || contact.name.split(" ")[0]; + }, + }, + lastName: { + type: new GraphQLNonNull(GraphQLString), + resolve(contact) { + return contact.lastName || contact.name.split(" ").slice(1).join(" "); + }, + }, + name: { type: new GraphQLNonNull(GraphQLString) }, + about: { type: new GraphQLNonNull(GraphQLString) }, + aboutShort: { + type: GraphQLString, + resolve(contact) { + if (contact.aboutShort) { + return contact.aboutShort; + } + + return contact.about ? `${contact.about.split(".")[0]}.` : ""; + }, + }, + company: { type: GraphQLString }, + tagline: { type: GraphQLString }, + image: { + type: new GraphQLNonNull(ImageType), + resolve(contact, _args, ctx) { + if (!contact.image) { + return { url: "" }; + } + + if (contact.image.url.startsWith("http")) { + return contact.image; + } + + return { + ...contact.image, + url: `${ctx.mediaUrl}/${contact.image.url}`, + }; + }, + }, + type: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ContactTypeEnum))), + resolve(contact) { + return contact.type || []; + }, + }, + social: { + type: new GraphQLNonNull(SocialType), + resolve(contact) { + const social = contact.social; + + if (!social) { + return {}; + } + + const rules: Record = { + homepage: social.homepage, + mastodon: social.mastodon, + bluesky: social.bluesky && `https://bsky.app/profile/${social.bluesky}`, + facebook: social.facebook && `https://facebook.com/${social.facebook}`, + github: social.github && `https://github.com/${social.github}`, + linkedin: resolveLinkedin(social.linkedin), + medium: social.medium && `https:// medium.com/${social.medium}`, + instagram: + social.instagram && `https://instagram.com/${social.instagram}`, + twitter: social.twitter && `https://twitter.com/${social.twitter}`, + youtube: social.youtube && `https://www.youtube.com/${social.youtube}`, + vk: social.vk && `https://vk.com/${social.vk}`, + }; + const result: Record = {}; + + Object.keys(social).forEach((media) => { + const value = rules[media]; + + if (value) { + result[media] = value; + } + }); + + return result; + }, + }, + keywords: { type: new GraphQLList(GraphQLString) }, + location: { type: new GraphQLNonNull(LocationType) }, + talks: { type: new GraphQLList(SessionTypeObject) }, + workshops: { type: new GraphQLList(SessionTypeObject) }, + noPhotography: { type: GraphQLBoolean }, + country: { + type: CountryType, + deprecationReason: "Use `location` instead", + resolve(contact) { + return contact.location.country; + }, + }, + }), +}); + +const SeriesType = new GraphQLObjectType({ + name: "Series", + fields: () => ({ + id: { type: new GraphQLNonNull(GraphQLID) }, + name: { type: new GraphQLNonNull(GraphQLString) }, + conferences: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ConferenceType))), + resolve(series: { name: string }) { + return Object.values(conferences).filter( + (conference) => series.name === conference.series + ); + }, + }, + }), +}); + +const ColorsType = new GraphQLObjectType({ + name: "Colors", + fields: { + primary: { type: new GraphQLNonNull(GraphQLString) }, + secondary: { type: new GraphQLNonNull(GraphQLString) }, + text: { type: new GraphQLNonNull(GraphQLString) }, + background: { type: new GraphQLNonNull(GraphQLString) }, + }, +}); + +const FontType = new GraphQLObjectType({ + name: "Font", + fields: { + family: { type: GraphQLString }, + weight: { type: GraphQLString }, + style: { type: GraphQLString }, + fileName: { type: GraphQLString }, + formats: { type: new GraphQLList(GraphQLString) }, + href: { type: GraphQLString }, + }, +}); + +const FontsType = new GraphQLObjectType({ + name: "Fonts", + fields: { + primary: { type: new GraphQLNonNull(GraphQLString) }, + secondary: { type: new GraphQLNonNull(GraphQLString) }, + variants: { type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(FontType))) }, + }, +}); + +const WithWithoutTextType = new GraphQLObjectType({ + name: "WithWithoutText", + fields: { + withoutText: { type: new GraphQLNonNull(ImageType) }, + withText: { type: new GraphQLNonNull(ImageType) }, + }, +}); + +const LogosType = new GraphQLObjectType({ + name: "Logos", + fields: { + black: { type: new GraphQLNonNull(WithWithoutTextType) }, + colored: { type: new GraphQLNonNull(WithWithoutTextType) }, + white: { type: new GraphQLNonNull(WithWithoutTextType) }, + }, +}); + +const ThemeType = new GraphQLObjectType({ + name: "Theme", + fields: { + id: { type: new GraphQLNonNull(GraphQLID) }, + fonts: { type: new GraphQLNonNull(FontsType) }, + textures: { type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ImageType))) }, + colors: { type: new GraphQLNonNull(ColorsType) }, + logos: { type: new GraphQLNonNull(LogosType) }, + }, +}); + +const ConferenceType = new GraphQLObjectType({ + name: "Conference", + fields: () => ({ + id: { type: new GraphQLNonNull(GraphQLID) }, + series: { + type: SeriesType, + resolve(conference) { + for (const seriesId of Object.keys(conferenceSeries)) { + const oneSeries = conferenceSeries[seriesId]; + + if (oneSeries.conferences.includes(conference.id)) { + return oneSeries; + } + } + + return null; + }, + }, + name: { type: new GraphQLNonNull(GraphQLString) }, + organizer: { type: new GraphQLNonNull(ContactObjectType) }, + year: { type: new GraphQLNonNull(GraphQLString) }, + startDate: { type: new GraphQLNonNull(GraphQLString) }, + endDate: { type: new GraphQLNonNull(GraphQLString) }, + slogan: { type: new GraphQLNonNull(GraphQLString) }, + websiteUrl: { type: new GraphQLNonNull(GraphQLString) }, + locations: { type: new GraphQLList(LocationType) }, + organizers: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ContactObjectType))), + }, + mcs: { type: new GraphQLList(ContactObjectType) }, + partners: { type: new GraphQLList(ContactObjectType) }, + sponsors: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ContactObjectType))), + }, + goldSponsors: { type: new GraphQLList(ContactObjectType) }, + silverSponsors: { type: new GraphQLList(ContactObjectType) }, + bronzeSponsors: { type: new GraphQLList(ContactObjectType) }, + platformSponsors: { type: new GraphQLList(ContactObjectType) }, + schedules: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ScheduleType))), + }, + allSpeakers: { + type: new GraphQLList(ContactObjectType), + resolve(conference) { + const talks = resolveSessions(conference.schedules, [ + SessionType.TALK, + SessionType.KEYNOTE, + SessionType.LIGHTNING_TALK, + SessionType.PANEL, + SessionType.WORKSHOP, + ]); + + return getSessionSpeakers(conference, talks); + }, + }, + speakers: { + type: new GraphQLList(ContactObjectType), + resolve(conference) { + return getSessionSpeakers( + conference, + resolveSessions(conference.schedules, [SessionType.TALK]) + ); + }, + }, + keynotes: { + type: new GraphQLList(SessionTypeObject), + resolve(conference) { + return resolveSessions(conference.schedules, [SessionType.KEYNOTE]); + }, + }, + keynoteSpeakers: { + type: new GraphQLList(ContactObjectType), + resolve(conference) { + return getSessionSpeakers( + conference, + resolveSessions(conference.schedules, [SessionType.KEYNOTE]) + ); + }, + }, + fullTalks: { + type: new GraphQLList(SessionTypeObject), + resolve(conference) { + return resolveSessions(conference.schedules, [SessionType.TALK]); + }, + }, + fullTalkSpeakers: { + type: new GraphQLList(ContactObjectType), + resolve(conference) { + return getSessionSpeakers( + conference, + resolveSessions(conference.schedules, [SessionType.TALK]) + ); + }, + }, + lightningTalks: { + type: new GraphQLList(SessionTypeObject), + resolve(conference) { + return resolveSessions(conference.schedules, [ + SessionType.LIGHTNING_TALK, + ]); + }, + }, + lightningTalkSpeakers: { + type: new GraphQLList(ContactObjectType), + resolve(conference) { + return getSessionSpeakers( + conference, + resolveSessions(conference.schedules, [SessionType.LIGHTNING_TALK]) + ); + }, + }, + panelOnlySpeakers: { + type: new GraphQLList(ContactObjectType), + resolve(conference) { + const talks = resolveSessions(conference.schedules, [SessionType.TALK]); + const talkSpeakers = getSessionSpeakers(conference, talks); + const panels = resolveSessions(conference.schedules, [SessionType.PANEL]); + const panelSpeakers = getSessionSpeakers(conference, panels); + + return panelSpeakers.filter( + (speaker) => + !talkSpeakers.map((talkSpeaker) => talkSpeaker.name).includes(speaker.name) + ); + }, + }, + talks: { + type: new GraphQLList(SessionTypeObject), + deprecationReason: + "Use `keynotes`,s `fullTalks` and `lightningTalks` instead", + resolve(conference) { + return resolveSessions(conference.schedules, [ + SessionType.LIGHTNING_TALK, + SessionType.TALK, + SessionType.KEYNOTE, + ]); + }, + }, + workshops: { + type: new GraphQLList(SessionTypeObject), + resolve(conference) { + return resolveSessions(conference.schedules, [SessionType.WORKSHOP]); + }, + }, + workshopInstructors: { + type: new GraphQLList(ContactObjectType), + resolve(conference) { + return getSessionSpeakers( + conference, + resolveSessions(conference.schedules, [SessionType.WORKSHOP]) + ); + }, + }, + }), +}); + +const QueryType = new GraphQLObjectType({ + name: "Query", + fields: { + conference: { + type: ConferenceType, + args: { + id: { type: new GraphQLNonNull(GraphQLID) }, + }, + resolve(_source, { id }: { id: string }) { + return getConference(id); + }, + }, + conferences: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ConferenceType))), + resolve() { + return Object.values(conferences); + }, + }, + allConferences: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ConferenceType))), + deprecationReason: "Use `conferences` instead", + resolve() { + return Object.values(conferences); + }, + }, + series: { + type: SeriesType, + args: { + id: { type: new GraphQLNonNull(GraphQLID) }, + }, + resolve(_source, { id }: { id: string }) { + const match = conferenceSeries[id]; + + if (!match) { + throw new Error("Unknown conference"); + } + + return match; + }, + }, + allSeries: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(SeriesType))), + resolve() { + return Object.values(conferenceSeries); + }, + }, + interval: { + type: IntervalType, + args: { + conferenceId: { type: new GraphQLNonNull(GraphQLID) }, + intervalTitle: { type: new GraphQLNonNull(GraphQLString) }, + }, + resolve(_source, args: { conferenceId: string; intervalTitle: string }) { + const conference = getConference(args.conferenceId); + let result: unknown; + + conference.schedules.forEach(({ intervals }) => { + const found = intervals.find(({ title }) => title === args.intervalTitle); + + if (found) { + result = found; + } + }); + + return result ?? null; + }, + }, + schedule: { + type: ScheduleType, + args: { + conferenceId: { type: new GraphQLNonNull(GraphQLID) }, + day: { type: new GraphQLNonNull(GraphQLString) }, + }, + resolve(_source, args: { conferenceId: string; day: string }) { + return getSchedule(args.conferenceId, args.day); + }, + }, + theme: { + type: ThemeType, + args: { + conferenceId: { type: new GraphQLNonNull(GraphQLID) }, + }, + resolve(_source, { conferenceId }: { conferenceId: string }) { + const series = conferenceSeries[conferenceId]; + + if (!series) { + throw new Error("Conference id did not match series"); + } + + return series.theme; + }, + }, + themes: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ThemeType))), + resolve() { + return Object.values(conferenceSeries).map(({ theme }) => theme); + }, + }, + contact: { + type: ContactObjectType, + args: { + contactName: { type: new GraphQLNonNull(GraphQLString) }, + conferenceId: { type: new GraphQLNonNull(GraphQLID) }, + }, + resolve( + _source, + args: { contactName: string; conferenceId: string } + ) { + const conference = getConference(args.conferenceId); + const sponsor = conference.sponsors.find( + ({ name }) => name === args.contactName + ); + const organizer = Object.values(conference.organizers).find( + ({ name }) => name === args.contactName + ); + const talks = resolveSessions(conference.schedules, [ + SessionType.LIGHTNING_TALK, + SessionType.TALK, + SessionType.KEYNOTE, + SessionType.PANEL, + ]); + const speaker = getSessionSpeakers(conference, talks).find( + ({ name }) => name === args.contactName + ); + const workshops = resolveSessions(conference.schedules, [ + SessionType.WORKSHOP, + ]); + const workshopInstructor = getSessionSpeakers(conference, workshops).find( + ({ name }) => name === args.contactName + ); + const mc = + conference.mcs && + conference.mcs.find(({ name }) => name === args.contactName); + const contact = + sponsor || organizer || speaker || workshopInstructor || mc; + + if (!contact) { + throw new Error(`Contact ${args.contactName} wasn't found!`); + } + + return contact; + }, + }, + locations: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(LocationType))), + resolve() { + return Object.values(locations); + }, + }, + people: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ContactObjectType))), + resolve() { + return Object.values(people); + }, + }, + sponsors: { + type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(ContactObjectType))), + resolve() { + return Object.values(sponsors); + }, + }, + }, +}); + +export default function generateSchema() { + return new GraphQLSchema({ + query: QueryType, + }); +} + +function createEnumType(name: string, values: Record) { + return new GraphQLEnumType({ + name, + values: Object.fromEntries( + Object.entries(values).map(([key, value]) => [ + key, + { + value, + }, + ]) + ), + }); +} + +function getSchedule(id: string, day: string) { + const conference = getConference(id); + const schedule = conference.schedules.find((entry) => entry.day === day); + + if (schedule) { + return schedule; + } + + throw new Error("Invalid date"); +} + +function resolveLinkedin(linkedin?: string) { + if (!linkedin) { + return ""; + } + + if (linkedin.startsWith("company")) { + return `https://linkedin.com/${linkedin}`; + } + + return `https://linkedin.com/in/${linkedin}`; +} diff --git a/server/schema/index.ts b/server/schema/index.ts deleted file mode 100644 index 9f830497..00000000 --- a/server/schema/index.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { buildSchema, registerEnumType } from "type-graphql"; -import { ContactType } from "./Contact"; -import * as resolvers from "./resolvers"; -import { Level, SessionType } from "./Session"; - -registerEnumType(ContactType, { - name: "ContactType", - description: "Type of the contact", -}); - -registerEnumType(SessionType, { - name: "SessionType", - description: "Type of the session", -}); - -registerEnumType(Level, { - name: "Level", - description: "Level of the session", -}); - -export default async function generateSchema() { - return await buildSchema({ - resolvers: Object.values(resolvers), - // scalarsMap: [{ type: Url, scalar: UrlScalar }], - // TODO: Emitting the schema could be useful for query checks. - // emitSchemaFile: true, // use path for a specific location - }); -} diff --git a/server/schema/resolvers/ConferenceResolver.ts b/server/schema/resolvers/ConferenceResolver.ts deleted file mode 100644 index 0731f49f..00000000 --- a/server/schema/resolvers/ConferenceResolver.ts +++ /dev/null @@ -1,177 +0,0 @@ -import kebabCase from "just-kebab-case"; -import * as path from "path"; -import { - Arg, - Ctx, - FieldResolver, - ID, - Query, - Resolver, - Root, -} from "type-graphql"; -import conferences from "../../conferences"; -import { Conference, getConference } from "../Conference"; -import { Contact, getSessionSpeakers } from "../Contact"; -import { IContext } from "../Context"; -import { resolveSessions } from "../Schedule"; -import { Series } from "../Series"; -import { Session, SessionType } from "../Session"; -import series from "./conferenceSeries"; -import loadAttendees from "./load-attendees"; - -@Resolver((_) => Conference) -class ConferenceResolver { - @Query((_) => Conference) - public conference(@Arg("id", (_) => ID) id: string) { - return getConference(id); - } - - @Query((_) => [Conference]) - public conferences() { - return Object.values(conferences); - } - - @Query((_) => [Conference], { - deprecationReason: "Use `conferences` instead", - }) - public allConferences() { - return Object.values(conferences); - } - - @FieldResolver((_) => Series) - public series(@Root() conference: Conference) { - const id = conference.id; - - for (const seriesId of Object.keys(series)) { - const oneSeries = series[seriesId]; - if (oneSeries.conferences.indexOf(id) !== -1) { - return oneSeries; - } - } - - return; - } - - @FieldResolver((_) => [Contact]) - public allSpeakers(@Root() conference: Conference) { - const talks = resolveSessions(conference.schedules, [ - SessionType.TALK, - SessionType.KEYNOTE, - SessionType.LIGHTNING_TALK, - SessionType.PANEL, - SessionType.WORKSHOP, - ]); - - return getSessionSpeakers(conference, talks); - } - - @FieldResolver((_) => [Contact]) - public speakers(@Root() conference: Conference) { - const talks = resolveSessions(conference.schedules, [SessionType.TALK]); - - return getSessionSpeakers(conference, talks); - } - - @FieldResolver((_) => [Contact]) - public async attendees(@Root() conference: Conference, @Ctx() ctx: IContext) { - const speakers = getSessionSpeakers( - conference, - resolveSessions(conference.schedules, [ - SessionType.KEYNOTE, - SessionType.LIGHTNING_TALK, - SessionType.TALK, - SessionType.WORKSHOP, - ]) - ); - - return conference.organizers.concat( - speakers, - await loadAttendees( - conference, - `${path.join( - ctx.projectRoot, - "attendees", - kebabCase(conference.name) - )}.csv` - ) - ); - } - - @FieldResolver((_) => [Session], { - deprecationReason: - "Use `keynotes`,s `fullTalks` and `lightningTalks` instead", - }) - public talks(@Root() conference: Conference) { - return resolveSessions(conference.schedules, [ - SessionType.LIGHTNING_TALK, - SessionType.TALK, - SessionType.KEYNOTE, - ]); - } - - @FieldResolver((_) => [Session]) - public keynotes(@Root() conference: Conference) { - return resolveSessions(conference.schedules, [SessionType.KEYNOTE]); - } - - @FieldResolver((_) => [Session]) - public keynoteSpeakers(@Root() conference: Conference) { - const talks = resolveSessions(conference.schedules, [SessionType.KEYNOTE]); - - return getSessionSpeakers(conference, talks); - } - - @FieldResolver((_) => [Session]) - public fullTalks(@Root() conference: Conference) { - return resolveSessions(conference.schedules, [SessionType.TALK]); - } - - @FieldResolver((_) => [Session]) - public fullTalkSpeakers(@Root() conference: Conference) { - const talks = resolveSessions(conference.schedules, [SessionType.TALK]); - - return getSessionSpeakers(conference, talks); - } - - @FieldResolver((_) => [Session]) - public lightningTalks(@Root() conference: Conference) { - return resolveSessions(conference.schedules, [SessionType.LIGHTNING_TALK]); - } - - @FieldResolver((_) => [Session]) - public lightningTalkSpeakers(@Root() conference: Conference) { - const talks = resolveSessions(conference.schedules, [ - SessionType.LIGHTNING_TALK, - ]); - - return getSessionSpeakers(conference, talks); - } - - @FieldResolver((_) => [Session]) - public panelOnlySpeakers(@Root() conference: Conference) { - const talks = resolveSessions(conference.schedules, [SessionType.TALK]); - const talkSpeakers = getSessionSpeakers(conference, talks); - const panels = resolveSessions(conference.schedules, [SessionType.PANEL]); - const panelSpeakers = getSessionSpeakers(conference, panels); - - // The idea is to substract talk speakers from panel speakers. - // Likely there's a simpler way to do this but this is enough for now - return panelSpeakers.filter( - (s) => !talkSpeakers.map((t) => t.name).includes(s.name) - ); - } - - @FieldResolver((_) => [Session]) - public workshops(@Root() conference: Conference) { - return resolveSessions(conference.schedules, [SessionType.WORKSHOP]); - } - - @FieldResolver((_) => [Session]) - public workshopInstructors(@Root() conference: Conference) { - const talks = resolveSessions(conference.schedules, [SessionType.WORKSHOP]); - - return getSessionSpeakers(conference, talks); - } -} - -export default ConferenceResolver; diff --git a/server/schema/resolvers/ContactResolver.ts b/server/schema/resolvers/ContactResolver.ts deleted file mode 100644 index 8fbade7e..00000000 --- a/server/schema/resolvers/ContactResolver.ts +++ /dev/null @@ -1,182 +0,0 @@ -import { - Arg, - Ctx, - FieldResolver, - ID, - Query, - Resolver, - Root, -} from "type-graphql"; -import * as locations from "../../../content/locations"; -import * as people from "../../../content/people"; -import * as sponsors from "../../../content/sponsors"; -import { getConference } from "../Conference"; -import { Contact, ContactType, getSessionSpeakers } from "../Contact"; -import { Location } from "../Location"; -import { IContext } from "../Context"; -import { Country } from "../Country"; -import { Image } from "../Image"; -import { resolveSessions } from "../Schedule"; -import SessionType from "../SessionType"; -import { Social } from "../Social"; - -@Resolver((_) => Contact) -class ContactResolver { - @Query((_) => Contact) - public contact( - @Arg("contactName") contactName: string, - @Arg("conferenceId", (_) => ID) conferenceId: string - ) { - const conference = getConference(conferenceId); - const sponsor = conference.sponsors.find( - ({ name }) => name === contactName - ); - const organizer = Object.values(conference.organizers).find( - ({ name }) => name === contactName - ); - const talks = resolveSessions(conference.schedules, [ - SessionType.LIGHTNING_TALK, - SessionType.TALK, - SessionType.KEYNOTE, - SessionType.PANEL, - ]); - const speaker = getSessionSpeakers(conference, talks).find( - ({ name }) => name === contactName - ); - const workshops = resolveSessions(conference.schedules, [ - SessionType.WORKSHOP, - ]); - const workshopInstructor = getSessionSpeakers(conference, workshops).find( - ({ name }) => name === contactName - ); - const mc = - conference.mcs && conference.mcs.find(({ name }) => name === contactName); - const contact = sponsor || organizer || speaker || workshopInstructor || mc; - - if (!contact) { - throw new Error(`Contact ${contactName} wasn't found!`); - } - - return contact; - } - - @Query((_) => [Location]) - public locations() { - return Object.values(locations); - } - - @Query((_) => [Contact]) - public people() { - return Object.values(people); - } - - @Query((_) => [Contact]) - public sponsors() { - return Object.values(sponsors); - } - - @FieldResolver((_) => [ContactType]) - public type(@Root() contact: Contact) { - return contact.type || []; - } - - @FieldResolver((_) => String) - public firstName(@Root() contact: Contact) { - return contact.firstName || contact.name.split(" ")[0]; - } - - @FieldResolver((_) => String) - public lastName(@Root() contact: Contact) { - return ( - contact.lastName || - /* TODO: This approximation isn't accurate always */ - contact.name.split(" ").slice(1).join(" ") - ); - } - - @FieldResolver((_) => Image) - public image(@Root() contact: Contact, @Ctx() ctx: IContext) { - if (!contact.image) { - return { - url: "", - }; - } - - if (contact.image.url.startsWith("http")) { - return contact.image; - } - - // FIXME: Figure out why ctx can be missing - return { - url: `${ctx ? ctx.mediaUrl : "/media"}/${contact.image.url}`, - }; - } - - @FieldResolver((_) => String) - public aboutShort(@Root() contact: Contact) { - if (contact.aboutShort) { - return contact.aboutShort; - } else { - return contact.about ? contact.about.split(".")[0] + "." : ""; - } - } - - @FieldResolver((_) => Social) - public social(@Root() contact: Contact) { - interface IRules { - [key: string]: string | undefined; - } - const social = contact.social; - - if (!social) { - return {}; - } - - // TODO: These resolvers should fork so you get url + original value - // as that's needed sometimes - const rules: IRules = { - homepage: social.homepage, - mastodon: social.mastodon, - bluesky: social.bluesky && `https://bsky.app/profile/${social.bluesky}`, - facebook: social.facebook && `https://facebook.com/${social.facebook}`, - github: social.github && `https://github.com/${social.github}`, - linkedin: resolveLinkedin(social.linkedin), - medium: social.medium && `https:// medium.com/${social.medium}`, - instagram: - social.instagram && `https://instagram.com/${social.instagram}`, - twitter: social.twitter && `https://twitter.com/${social.twitter}`, - youtube: social.youtube && `https://www.youtube.com/${social.youtube}`, - vk: social.vk && `https://vk.com/${social.vk}`, - }; - const result: IRules = {}; - - Object.keys(social).forEach((media) => { - if (rules[media]) { - result[media] = rules[media]; - } - }); - - return result; - } - - @FieldResolver((_) => Country, { - deprecationReason: "Use `location` instead", - }) - public country(@Root() contact: Contact) { - return contact.location.country; - } -} - -function resolveLinkedin(linkedin?: string): string { - if (!linkedin) { - return ""; - } - - if (linkedin.startsWith("company")) { - return `https://linkedin.com/${linkedin}`; - } - - return `https://linkedin.com/in/${linkedin}`; -} - -export default ContactResolver; diff --git a/server/schema/resolvers/IntervalResolver.ts b/server/schema/resolvers/IntervalResolver.ts deleted file mode 100644 index 6781656d..00000000 --- a/server/schema/resolvers/IntervalResolver.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { Arg, FieldResolver, ID, Query, Resolver, Root } from "type-graphql"; -import { Interval } from "../Interval"; -import { Session } from "../Session"; -import { getConference } from "../Conference"; - -@Resolver((_) => Interval) -class IntervalResolver { - @Query((_) => Interval) - public interval( - @Arg("conferenceId", (_) => ID) conferenceId: string, - @Arg("intervalTitle", (_) => String) intervalTitle: string - ) { - const conference = getConference(conferenceId); - let ret; - - // This picks up only the last match right now - conference.schedules.forEach(({ intervals }) => { - const found = intervals.find(({ title }) => title === intervalTitle); - - if (found) { - ret = found; - } - }); - - return ret; - } - - @FieldResolver((_) => [Session]) - public sessions(@Root() interval: Interval) { - return interval.sessions.map((session) => ({ - ...session, - interval, - })); - } -} - -export default IntervalResolver; diff --git a/server/schema/resolvers/ScheduleResolver.ts b/server/schema/resolvers/ScheduleResolver.ts deleted file mode 100644 index 800c6bfb..00000000 --- a/server/schema/resolvers/ScheduleResolver.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { Arg, ID, Query, Resolver } from "type-graphql"; -import { getConference } from "../Conference"; -import { Schedule } from "../Schedule"; - -@Resolver(_ => Schedule) -class ScheduleResolver { - @Query(_ => Schedule) - public schedule( - @Arg("conferenceId", _ => ID) conferenceId: string, - @Arg("day") day: string - ) { - return getSchedule(conferenceId, day); - } -} -function getSchedule(id: string, day: string) { - const conference = getConference(id); - const schedule = conference.schedules.find(c => c.day === day); - - if (schedule) { - return schedule; - } else { - throw new Error("Invalid date"); - } -} - -export default ScheduleResolver; diff --git a/server/schema/resolvers/SeriesResolver.ts b/server/schema/resolvers/SeriesResolver.ts deleted file mode 100644 index 3efa85b4..00000000 --- a/server/schema/resolvers/SeriesResolver.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Arg, FieldResolver, ID, Query, Resolver, Root } from "type-graphql"; -import conferences from "../../conferences"; -import { Conference } from "../Conference"; -import { Series } from "../Series"; -import series from "./conferenceSeries"; - -@Resolver(_ => Series) -class SeriesResolver { - @Query(_ => Series) - public series(@Arg("id", _ => ID) id: string) { - if (series[id]) { - return series[id]; - } else { - throw new Error("Unknown conference"); - } - } - - @Query(_ => [Series]) - public allSeries() { - return Object.keys(series).map(id => series[id]); - } - - @FieldResolver(_ => [Conference]) - public conferences(@Root() series: Series) { - return Object.values(conferences).filter( - conference => series.name === conference.series - ); - } -} - -export default SeriesResolver; diff --git a/server/schema/resolvers/SessionResolver.ts b/server/schema/resolvers/SessionResolver.ts deleted file mode 100644 index cd106b07..00000000 --- a/server/schema/resolvers/SessionResolver.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { FieldResolver, Resolver, Root } from "type-graphql"; -import { Contact } from "../Contact"; -import { Session } from "../Session"; - -@Resolver((_) => Session) -class SessionResolver { - @FieldResolver((_) => [Contact], { - deprecationReason: "Use `people` instead", - }) - public speakers(@Root() session: Session) { - return session.people || []; - } - - @FieldResolver((_) => String) - public title(@Root() session: Session) { - return session.title || "Mysterious talk"; - } - - @FieldResolver((_) => String) - public hasTitle(@Root() session: Session) { - return !!session.title; - } -} - -export default SessionResolver; diff --git a/server/schema/resolvers/SessionUrlsResolver.ts b/server/schema/resolvers/SessionUrlsResolver.ts deleted file mode 100644 index 7913c248..00000000 --- a/server/schema/resolvers/SessionUrlsResolver.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Ctx, FieldResolver, Resolver, Root } from "type-graphql"; -import { IContext } from "../Context"; -import { SessionUrls } from "../Session"; - -@Resolver((_) => SessionUrls) -class SessionUrlsResolver { - @FieldResolver((_) => String) - public drawing(@Root() root, @Ctx() ctx: IContext) { - if (!root.drawing) { - return; - } - - // FIXME: Figure out why ctx can be missing - return `${ctx ? ctx.mediaUrl : "/media"}/${root.drawing}`; - } -} - -export default SessionUrlsResolver; diff --git a/server/schema/resolvers/ThemeResolver.ts b/server/schema/resolvers/ThemeResolver.ts deleted file mode 100644 index 6be7aff9..00000000 --- a/server/schema/resolvers/ThemeResolver.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Arg, ID, Query, Resolver } from "type-graphql"; -import { Theme } from "../Theme"; -import allSeries from "./conferenceSeries"; - -@Resolver(_ => Theme) -class ThemeResolver { - @Query(_ => [Theme]) - public themes() { - return Object.values(allSeries).map(({ theme }) => theme); - } - - @Query(_ => Theme) - public theme(@Arg("conferenceId", _ => ID) conferenceId: string) { - const series = allSeries[conferenceId]; - - if (series) { - return series.theme; - } - - throw new Error("Conference id did not match series"); - } -} - -export default ThemeResolver; diff --git a/server/schema/resolvers/index.ts b/server/schema/resolvers/index.ts deleted file mode 100644 index 51895adc..00000000 --- a/server/schema/resolvers/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -import ConferenceResolver from "./ConferenceResolver"; -import ContactResolver from "./ContactResolver"; -import IntervalResolver from "./IntervalResolver"; -import ScheduleResolver from "./ScheduleResolver"; -import SeriesResolver from "./SeriesResolver"; -import SessionResolver from "./SessionResolver"; -import SessionUrlsResolver from "./SessionUrlsResolver"; -import ThemeResolver from "./ThemeResolver"; - -export { - ConferenceResolver, - ContactResolver, - IntervalResolver, - ScheduleResolver, - SeriesResolver, - SessionResolver, - SessionUrlsResolver, - ThemeResolver, -}; diff --git a/server/schema/resolvers/load-attendees.ts b/server/schema/resolvers/load-attendees.ts deleted file mode 100644 index 4f101c1d..00000000 --- a/server/schema/resolvers/load-attendees.ts +++ /dev/null @@ -1,148 +0,0 @@ -import parse from "csv-parse/lib/sync"; // TODO: Use the async version instead? -import * as fs from "fs-extra"; -import filter from "lodash/filter"; -import map from "lodash/map"; -import mapValues from "lodash/mapValues"; -import trimStart from "lodash/trimStart"; -import upperFirst from "lodash/upperFirst"; -import { Conference } from "../Conference"; -import { Contact, ContactType } from "../Contact"; - -async function loadAttendees(conference: Conference, csvPath: string) { - if (fs.existsSync(csvPath)) { - return convertData( - getSponsors(conference), - parse(await fs.readFile(csvPath, { encoding: "utf8" }), { - columns: true, - skip_empty_lines: true, - }) - ); - } - - return []; -} - -function getSponsors(conference: Conference): Contact[] { - return conference.sponsors.filter( - sponsor => !sponsor.type.includes(ContactType.PARTNER) - ); -} - -function convertData(sponsors: Contact[], tickets): Contact[] { - return map( - filter( - map(tickets, row => mapValues(row, v => (v === "-" ? null : v))), - t => !t["Void Status"] && !t.Ticket.startsWith("Workshop only") - ), - row => ({ - name: getName(row), - firstName: getFirstName(row), - lastName: getLastName(row), - company: getCompany(row), - about: "", // TODO - image: { url: "" }, // TODO - location: {}, // TODO - type: [ - getType( - sponsors, - row.Ticket || row["Ticket Type"], - getCompany(row), - row.Email - ), - ], - social: { - twitter: getTwitter(row.Twitter || row["What's your Twitter handle?"]), - }, - }) - ); -} - -function getName(row) { - return `${getFirstName(row)} ${getLastName(row)}`; -} - -function getFirstName(row) { - return upperFirst(row["Ticket First Name"] || row["First Name"]); -} - -function getLastName(row) { - return upperFirst(row["Ticket Last Name"] || row["Last Name"]); -} - -function getCompany(row): string { - const name = getName(row); - const companyName = row["Ticket Company Name"] || row["Order Company Name"]; - - // Remove company if it's same as the name - if (name === companyName || !companyName) { - return ""; - } - - return companyName - .split(". z o.o.")[0] - .replace(/[ ]+/g, " ") - .trim(); -} - -function getType( - sponsors: Contact[], - type: string, - company: string, - email: string -) { - if (isSponsor(sponsors, type, company, email)) { - return ContactType.SPONSOR; - } - - switch (type) { - case "Press": { - return ContactType.PRESS; - } - case "Organizer": { - return ContactType.ORGANIZER; - } - case "Volunteer": { - return ContactType.ORGANIZER; - } - case "Sponsor": { - return ContactType.SPONSOR; - } - case "Speaker": { - return ContactType.SPEAKER; - } - default: - return ContactType.ATTENDEE; - } -} -function isSponsor( - sponsors: Contact[], - type: string, - company: string, - email: string -) { - return sponsors.some(({ name, social: { homepage } }) => { - if (name === company.split(" ")[0]) { - return true; - } - - if (email && homepage && homepage.includes(email.split("@")[1])) { - return true; - } - - if (company && type.includes(company.split(" ")[0])) { - return true; - } - - return type.includes(name); - }); -} - -function getTwitter(twitter): string { - if (twitter && twitter.split(" ").length > 1) { - return ""; - } - - return trimStart(twitter, "'@") || ""; -} - -export default loadAttendees; diff --git a/server/schema/scalars.ts b/server/schema/scalars.ts deleted file mode 100644 index cb0ff5c3..00000000 --- a/server/schema/scalars.ts +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/server/server.ts b/server/server.ts deleted file mode 100644 index 811b3b60..00000000 --- a/server/server.ts +++ /dev/null @@ -1,37 +0,0 @@ -import createApp from "./app"; -import logger from "./logger"; - -const normalizePort = (value: string) => { - const port = Number(value); - - if (!isNaN(port) && port > 0) { - return port; - } - - return false; -}; - -async function createServer() { - logger.debug("Starting to boot the server."); - - const port = normalizePort(process.env.PORT || "3000"); - const app = await createApp(); - let server; - - try { - server = app.listen(port, () => - logger.debug( - `Finished booting the server. The API is reachable at http://localhost:${port.toString()}/graphql.` - ) - ); - } catch (err) { - logger.error(err); - - process.exit(1); - } - - // eslint-disable-line - return server; -} - -export default createServer; diff --git a/server/test-rebuild-sites.ts b/server/test-rebuild-sites.ts deleted file mode 100644 index 3f4b95ef..00000000 --- a/server/test-rebuild-sites.ts +++ /dev/null @@ -1,3 +0,0 @@ -const rebuildSites = require("./rebuild-sites"); - -rebuildSites(process.env.REBUILD_SITES); diff --git a/shims/type-graphql.js b/shims/type-graphql.js deleted file mode 100644 index fc78e16b..00000000 --- a/shims/type-graphql.js +++ /dev/null @@ -1,66 +0,0 @@ -const dummyFn = () => void 0; -const dummyDecorator = () => dummyFn; - -TypeGraphQL = { - Arg: dummyDecorator, - Args: dummyDecorator, - ArgsType: dummyDecorator, - Authorized: dummyDecorator, - Ctx: dummyDecorator, - registerEnumType: dummyFn, - Field: typeFn => (fieldInstance, field) => { - const metaField = "_fields"; - // It should be possible to write to the meta field but - // not to enumerate it since it should be hidden. - Object.defineProperty(fieldInstance.__proto__, metaField, { - enumerable: false, - writable: true, - }); - - // Create the meta field if it doesn't exist yet. - const fields = fieldInstance.__proto__[metaField] || {}; - let type = typeFn(); - let values; - - if (!fieldInstance.__proto__[metaField]) { - fieldInstance.__proto__[metaField] = {}; - } - - // Handle enums. - if (typeof type === "object") { - values = Object.keys(type); // TODO: Is this correct always? - type = "enum"; - } - - // TODO: How to deal with scalars? Example: Url. Maybe run serialize? - - const existingFields = - fieldInstance.__proto__[metaField][fieldInstance.constructor.name] || {}; - - fieldInstance.__proto__[metaField] = { - ...fields, - [fieldInstance.constructor.name]: { - ...existingFields, - [field]: { - type, - default: "", - values, - from: [fieldInstance.constructor.name], - }, - }, - }; - }, - FieldResolver: dummyDecorator, - Info: dummyDecorator, - InputType: dummyDecorator, - InterfaceType: dummyDecorator, - Mutation: dummyDecorator, - ObjectType: dummyDecorator, - PubSub: dummyDecorator, - Query: dummyDecorator, - Resolver: dummyDecorator, - Root: dummyDecorator, - Subscription: dummyDecorator, - createUnionType: dummyFn, - UseMiddleware: dummyDecorator, -}; diff --git a/test/api.integration.test.cjs b/test/api.integration.test.cjs new file mode 100644 index 00000000..4668b2e3 --- /dev/null +++ b/test/api.integration.test.cjs @@ -0,0 +1,206 @@ +const assert = require("node:assert/strict"); +const http = require("node:http"); +const test = require("node:test"); + +const createRequestHandler = require("../build/server/create-request-handler").default; + +let server; +let baseUrl; +const token = "test-token"; + +test.before(async () => { + const handleRequest = await createRequestHandler({ + expectedToken: token, + }); + server = http.createServer(async (req, res) => { + try { + const response = await handleRequest(toRequest(req)); + + await sendResponse(res, response); + } catch (error) { + res.writeHead(500).end(String(error)); + } + }); + + await new Promise((resolve, reject) => { + server.once("error", reject); + server.listen(0, "127.0.0.1", () => { + server.off("error", reject); + resolve(); + }); + }); + + const address = server.address(); + + assert.ok(address && typeof address !== "string"); + + baseUrl = `http://127.0.0.1:${address.port}`; +}); + +test.after(async () => { + if (!server) { + return; + } + + await new Promise((resolve, reject) => { + server.close((error) => { + if (error) { + reject(error); + return; + } + + resolve(); + }); + }); +}); + +async function request(pathname, init) { + const headers = new Headers(init?.headers); + + if (!headers.has("TOKEN")) { + headers.set("TOKEN", token); + } + + return fetch(new URL(pathname, baseUrl), { + ...init, + headers, + }); +} + +function toRequest(req) { + const url = new URL(req.url || "/", `http://${req.headers.host || "localhost"}`); + const headers = new Headers(); + + Object.entries(req.headers).forEach(([key, value]) => { + if (Array.isArray(value)) { + value.forEach((entry) => headers.append(key, entry)); + } else if (value !== undefined) { + headers.set(key, value); + } + }); + + const init = { + headers, + method: req.method, + }; + + if (req.method === "GET" || req.method === "HEAD") { + return new Request(url, init); + } + + return new Request(url, { + ...init, + body: req, + duplex: "half", + }); +} + +async function sendResponse(res, response) { + response.headers.forEach((value, key) => { + res.setHeader(key, value); + }); + + res.statusCode = response.status; + res.statusMessage = response.statusText; + + if (!response.body) { + res.end(); + + return; + } + + res.end(Buffer.from(await response.arrayBuffer())); +} + +test("GET /ping returns server metadata", async () => { + const response = await request("/ping"); + + assert.equal(response.status, 200); + assert.match(response.headers.get("content-type"), /application\/json/i); + + const payload = await response.json(); + + assert.equal(typeof payload.serverVersion, "string"); + assert.ok(payload.serverVersion.length > 0); +}); + +test("GET /calendar-2026.ics returns the published calendar file", async () => { + const response = await request("/calendar-2026.ics"); + const body = await response.text(); + + assert.equal(response.status, 200); + assert.match(response.headers.get("content-type"), /text\/calendar/i); + assert.match(body, /BEGIN:VCALENDAR/); + assert.match(body, /futurefrontend\.com/i); +}); + +test("GET /calendar-2026.ics is public", async () => { + const response = await fetch(new URL("/calendar-2026.ics", baseUrl)); + + assert.equal(response.status, 200); +}); + +test("GET /calendar/:id is no longer exposed", async () => { + const response = await request("/calendar/future-frontend-2026"); + const body = await response.text(); + + assert.equal(response.status, 404); + assert.match(body, /Not found/i); +}); + +test("protected routes reject requests without TOKEN", async () => { + const response = await fetch(new URL("/ping", baseUrl)); + + assert.equal(response.status, 401); +}); + +test("OPTIONS exposes TOKEN in CORS allow headers", async () => { + const response = await fetch(new URL("/graphql", baseUrl), { + method: "OPTIONS", + }); + + assert.equal(response.status, 204); + assert.match( + response.headers.get("access-control-allow-headers"), + /TOKEN/i + ); +}); + +test("POST /graphql returns conference data", async () => { + const response = await request("/graphql", { + method: "POST", + headers: { + "content-type": "application/json", + }, + body: JSON.stringify({ + query: ` + query ConferenceById { + conference(id: "future-frontend-2026") { + id + name + year + startDate + endDate + } + } + `, + }), + }); + + assert.equal(response.status, 200); + assert.match(response.headers.get("content-type"), /application\/json/i); + + const payload = await response.json(); + + assert.deepEqual(payload, { + data: { + conference: { + id: "future-frontend-2026", + name: "Future Frontend 2026", + year: "2026", + startDate: "2026-06-08", + endDate: "2026-06-09", + }, + }, + }); +}); diff --git a/tsconfig.json b/tsconfig.json index 130b078e..28b40325 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,22 +3,25 @@ "incremental": true, "module": "commonjs", "jsx": "react", - "lib": ["dom", "es2017", "esnext.asynciterable"], - "target": "es2017", + "lib": ["dom", "es2021", "esnext.asynciterable"], + "target": "es2021", "strict": true, "sourceMap": true, "outDir": "build", "resolveJsonModule": true, + "types": ["node"], "typeRoots": ["node_modules/@types"], - "downlevelIteration": true, "forceConsistentCasingInFileNames": true, "noImplicitReturns": true, "noImplicitAny": false, "noUnusedLocals": true, "esModuleInterop": true, - "emitDecoratorMetadata": true, - "experimentalDecorators": true, "skipLibCheck": true }, - "include": ["server/**/*.ts"] + "include": [ + "content/**/*.ts", + "server/**/*.ts", + "utils/**/*.ts", + "worker/**/*.ts" + ] } diff --git a/tslint.json b/tslint.json deleted file mode 100644 index b3f0bbfb..00000000 --- a/tslint.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "defaultSeverity": "error", - "extends": ["tslint:recommended", "tslint-config-prettier"], - "rulesDirectory": ["tslint-plugin-prettier"], - "rules": { - "interface-name": false, - "prettier": true, - "no-shadowed-variable": false, - "object-literal-sort-keys": false, - "max-classes-per-file": false, - "no-console": false - } -} diff --git a/utils/generate-attendees-csv.js b/utils/generate-attendees-csv.js deleted file mode 100644 index 38eb110a..00000000 --- a/utils/generate-attendees-csv.js +++ /dev/null @@ -1,63 +0,0 @@ -const { request } = require("graphql-request"); -const { range } = require("lodash"); -const stringifyCsv = require("csv-stringify/lib/sync"); // TODO: Use the async version instead? - -generateAttendeesCsv(); - -async function generateAttendeesCsv() { - const attendees = adjustAttendees(await fetchAttendees()); - const csv = stringifyCsv(attendees, { header: true }); - - console.log(csv); -} - -async function fetchAttendees() { - const { - conference: { attendees }, - } = await request( - "http://localhost:3000/graphql", - ` - query AttendeeQuery($conferenceId: ID!) { - conference(id: $conferenceId) { - attendees { - firstName - lastName - company - social { - twitter - } - type - } - } - } - `, - { - conferenceId: "react-finland-2019", - } - ); - - return attendees; -} - -function adjustAttendees(attendees) { - return attendees - .map(({ firstName, lastName, company, social: { twitter }, type }) => ({ - firstName, - lastName, - company: company && company.split("Software Mansion")[0], - twitter: twitter ? `@${twitter.split("https://twitter.com/")[1]}` : "", - type: type[0], - })) - .concat(range(10).map(() => generateAttendee("ATTENDEE"))) - .concat(range(10).map(() => generateAttendee("ORGANIZER"))) - .concat(range(10).map(() => generateAttendee("SPONSOR"))); -} - -function generateAttendee(type) { - return { - firstName: "", - lastName: "", - twitter: "", - type, - }; -} diff --git a/utils/generate-diversity-coupons.js b/utils/generate-diversity-coupons.js deleted file mode 100644 index 5841a7c3..00000000 --- a/utils/generate-diversity-coupons.js +++ /dev/null @@ -1,116 +0,0 @@ -const dotenv = require("dotenv"); -const fs = require("fs-extra"); -const path = require("path"); -const stringifyCsv = require("csv-stringify/lib/sync"); // TODO: Use the async version instead? -const parseCsv = require("csv-parse/lib/sync"); // TODO: Use the async version instead? -const bent = require("bent"); - -// FIXME: Resolve against project root, not module as this is brittle -dotenv.config({ - path: path.resolve(__dirname, "../.env"), -}); - -generateDiversityCoupons(); - -async function generateDiversityCoupons() { - const diversitySelection = parseCsv( - await fs.readFile("./diversity-tickets.csv", { encoding: "utf8" }), - { - columns: true, - delimiter: ",", - skip_empty_lines: true, - } - ); - const selectionWithDiscountCodes = generateDiscountCodes(diversitySelection); - - selectionWithDiscountCodes.forEach(selected => { - createDiversityTicket(selected.DiversityCoupon); - }); - - const stringifiedSelection = stringifyCsv(selectionWithDiscountCodes, { - header: true, - }); - - console.log(stringifiedSelection); -} - -function generateDiscountCodes(diversitySelection) { - return diversitySelection.map(selected => ({ - ...selected, - DiversityCoupon: `DIVERSITY_${selected.Name.split(" ") - .join("") - .toUpperCase()}`, - })); -} - -async function createDiversityTicket(code) { - const titoToken = process.env.TITO_TOKEN; - const titoApi = titoClient(titoToken, "react-finland", "2019"); - // const releases = await titoApi.getReleases(); - const diversityReleaseId = "id0xabhbxjo"; // TODO: Better to search from the releases - - return await titoApi.createDiscountCode({ - code, - type: "PercentOffDiscountCode", - value: 100, - quantity: 1, - releaseIds: [diversityReleaseId], - revealSecret: true, - onlyShowAttached: true, - }); -} - -function titoClient(authToken, accountId, eventId) { - const auth = { - Authorization: `Token token=${authToken}`, - "Content-Type": "application/json", - }; - const getJson = bent("json", auth); - const postJson = bent("POST", 201, auth); - - return { - async getReleases() { - return (await getJson(getTitoEndPoint("releases"))).data; - }, - async getRelease(id) { - return (await getJson(getTitoEndPoint(`releases/${id}`))).data; - }, - async getDiscountCodes() { - return (await getJson(getTitoEndPoint("discount_codes"))).data; - }, - async getDiscountCode(id) { - return (await getJson(getTitoEndPoint(`discount_codes/${id}`))).data; - }, - async createDiscountCode({ - code, - type, - value, - quantity, - onlyShowAttached, - releaseIds, - revealSecret, - }) { - await postJson(getTitoEndPoint("discount_codes"), { - data: { - type: "discount-codes", - attributes: { - code, // DISCOUNTDRACULA - type, // MoneyOffDiscountCode/PercentOffDiscountCode - value, // 25.00 - quantity, - "release-ids": releaseIds, - "reveal-secret": revealSecret, - "only-show-attached": onlyShowAttached, - }, - }, - }); - - // If the code throws, then we won't return code. I am not sure what's the best way yet. - return code; - }, - }; - - function getTitoEndPoint(endPointName) { - return `https://api.tito.io/v2/${accountId}/${eventId}/${endPointName}`; - } -} diff --git a/utils/generate-emails.js b/utils/generate-emails.js deleted file mode 100644 index 00dae917..00000000 --- a/utils/generate-emails.js +++ /dev/null @@ -1,18 +0,0 @@ -const fs = require("fs-extra"); -const parseCsv = require("csv-parse/lib/sync"); // TODO: Use the async version instead? - -generateEmails(); - -async function generateEmails() { - const attendees = parseCsv( - await fs.readFile("./attendees.csv", { encoding: "utf8" }), - { - columns: true, - delimiter: ",", - skip_empty_lines: true, - } - ); - const emails = attendees.map(sel => sel['Ticket Email']).filter(Boolean); - - console.log(emails.join(',')); -} diff --git a/utils/generate-hotel-stays.js b/utils/generate-hotel-stays.js deleted file mode 100644 index dc3699e9..00000000 --- a/utils/generate-hotel-stays.js +++ /dev/null @@ -1,183 +0,0 @@ -const fs = require("fs"); -const readline = require("readline"); -const { google } = require("googleapis"); -const { flatMap, fromPairs, sortBy, toPairs } = require("lodash"); -const camelcase = require("camelcase"); -const dateRangeArray = require("date-range-array"); -const zerofill = require("zerofill"); - -// If modifying these scopes, delete token.json. -const SCOPES = ["https://www.googleapis.com/auth/spreadsheets"]; -// The file token.json stores the user's access and refresh tokens, and is -// created automatically when the authorization flow completes for the first -// time. -const TOKEN_PATH = "google-token.json"; - -// Load client secrets from a local file. You should generate this through -// Google's interface online. -fs.readFile("google-credentials.json", (err, content) => { - if (err) return console.log("Error loading client secret file:", err); - // Authorize a client with credentials, then call the Google Sheets API. - authorize(JSON.parse(content), convertToDateRanges); -}); - -/** - * Create an OAuth2 client with the given credentials, and then execute the - * given callback function. - * @param {Object} credentials The authorization client credentials. - * @param {function} callback The callback to call with the authorized client. - */ -function authorize(credentials, callback) { - const { client_secret, client_id, redirect_uris } = credentials.installed; - const oAuth2Client = new google.auth.OAuth2( - client_id, - client_secret, - redirect_uris[0] - ); - - // Check if we have previously stored a token. - fs.readFile(TOKEN_PATH, (err, token) => { - if (err) return getNewToken(oAuth2Client, callback); - oAuth2Client.setCredentials(JSON.parse(token)); - callback(oAuth2Client); - }); -} - -/** - * Get and store new token after prompting for user authorization, and then - * execute the given callback with the authorized OAuth2 client. - * @param {google.auth.OAuth2} oAuth2Client The OAuth2 client to get token for. - * @param {getEventsCallback} callback The callback for the authorized client. - */ -function getNewToken(oAuth2Client, callback) { - const authUrl = oAuth2Client.generateAuthUrl({ - access_type: "offline", - scope: SCOPES, - }); - console.log("Authorize this app by visiting this url:", authUrl); - const rl = readline.createInterface({ - input: process.stdin, - output: process.stdout, - }); - rl.question("Enter the code from that page here: ", code => { - rl.close(); - oAuth2Client.getToken(code, (err, token) => { - if (err) - return console.error( - "Error while trying to retrieve access token", - err - ); - oAuth2Client.setCredentials(token); - // Store the token to disk for later program executions - fs.writeFile(TOKEN_PATH, JSON.stringify(token), err => { - if (err) return console.error(err); - console.log("Token stored to", TOKEN_PATH); - }); - callback(oAuth2Client); - }); - }); -} - -/** - * Writes amounts of hotel nights needed to the budget sheet. - * @param {google.auth.OAuth2} auth The authenticated Google OAuth client. - */ -function convertToDateRanges(auth) { - const spreadsheetId = "1lgRRou8qPL3yylT5MMz3IXZBtGeq_g9sqruE4x3qzqY"; - const sheets = google.sheets({ version: "v4", auth }); - - sheets.spreadsheets.values.get( - { - spreadsheetId, - range: "2019 Speakers!A4:I", - }, - (err, res) => { - if (err) { - return console.log("The API returned an error: " + err); - } - - const rows = res.data.values; - if (rows.length) { - const keys = rows[0]; - const values = rows.slice(1); - const people = toObject(keys, values).map( - ({ arrives, leaves, ...rest }) => ({ - ...rest, - arrives, - leaves, - stays: - arrives.length > 1 && leaves.length > 1 - ? dateRangeArray( - UStoYearMonthDay(arrives), - UStoYearMonthDay(leaves) - ) - : [], - }) - ); - const stayAmounts = calculateStays( - flatMap(people, ({ stays }) => stays) - ).map(([date, amount]) => { - return [date.toLocaleString().split(", ")[0], amount]; - }); - - console.log(stayAmounts); - - sheets.spreadsheets.values.batchUpdate( - { - spreadsheetId, - resource: { - data: [ - { - range: "Hotel Information!A:C", - values: [["Date", "Amount"]].concat(stayAmounts), - }, - ], - }, - valueInputOption: "USER_ENTERED", - }, - (err, result) => { - if (err) { - return console.error(err); - } - - console.log(`${result.data.totalUpdatedCells} cells updated`); - } - ); - } else { - console.log("No data found."); - } - } - ); -} - -function calculateStays(stays) { - const ret = {}; - - stays.forEach(stay => { - if (!ret[stay]) { - ret[stay] = 0; - } - - ret[stay]++; - }); - - return sortBy( - toPairs(ret).map(([date, stays]) => { - return [new Date(date), stays]; - }), - ([date]) => date - ); -} - -// 4/23/2019 -> 2019-04-23 -function UStoYearMonthDay(date) { - const [month, day, year] = date.split("/"); - - return `${zerofill(year, 4)}-${zerofill(month, 2)}-${zerofill(day, 2)}`; -} - -function toObject(keys, rows) { - return rows.map((row, i) => { - return fromPairs(keys.map((key, j) => [camelcase(key), row[j]])); - }); -} diff --git a/utils/generate-indices.js b/utils/generate-indices.js deleted file mode 100644 index 345f52ad..00000000 --- a/utils/generate-indices.js +++ /dev/null @@ -1,88 +0,0 @@ -const fs = require("fs-extra"); -const path = require("path"); -const camelCase = require("camelcase"); -const flatmap = require("flatmap"); -const glob = require("glob"); -const { groupBy } = require("lodash"); -const mri = require("mri"); -const argv = process.argv.slice(2); - -function main() { - const args = mri(argv, { - default: { - format: "ts", - verbose: false, - }, - boolean: ["verbose"], - string: ["format"], - }); - const { _: rootDirs, format, verbose } = args; - - const indexableDirs = flatmap(rootDirs, dir => - glob.sync(`${dir}/**/.index-modules`) - ).map(p => path.dirname(p)); - const filenames = flatmap(indexableDirs, dir => - glob.sync(`${dir}/**/*.${format}`) - ); - const categorizedFilenames = categorize(filenames); - const indexFiles = generateIndices(categorizedFilenames, format); - - writeFiles(indexFiles, verbose); -} - -function categorize(filenames) { - return groupBy( - filenames.map(filename => ({ - basename: path.basename(filename, path.extname(filename)), - dirname: path.dirname(filename), - extname: path.extname(filename), - })), - "dirname" - ); -} - -function generateIndices(categorizedFilenames, format) { - return Object.keys(categorizedFilenames) - .map(dirname => { - const files = categorizedFilenames[dirname].filter( - f => f.basename !== "index" - ); - - if (files.length < 1) { - return null; - } - - return { - name: path.join(dirname, `index.${format}`), - content: generateIndex(files.map(f => f.basename)), - }; - }) - .filter(Boolean); -} - -function generateIndex(basenames) { - return ( - basenames - .map( - basename => - `export { default as ${camelCase(basename)} } from "./${basename}";` - ) - .join("\n") + "\n" - ); -} - -function writeFiles(indexFiles, verbose) { - indexFiles.forEach(async file => { - const oldContent = await fs.readFile(file.name, { encoding: "utf8" }); - const contentDiffers = file.content.trim() !== oldContent.trim(); - - if (contentDiffers) { - if (verbose) { - console.log(`Writing ${file.name}`); - } - fs.writeFileSync(file.name, file.content, "utf8"); - } - }); -} - -main(); diff --git a/utils/generate-indices.ts b/utils/generate-indices.ts new file mode 100644 index 00000000..9b67dbed --- /dev/null +++ b/utils/generate-indices.ts @@ -0,0 +1,221 @@ +import * as fs from "node:fs"; +import * as path from "node:path"; +import { globSync } from "glob"; +import mri from "mri"; + +interface CliOptions { + _: string[]; + verbose: boolean; +} + +interface Registry { + directory: string; + entries: RegistryEntry[]; + exportName: string; +} + +interface RegistryEntry { + exportName: string; + importName: string; + importPath: string; +} + +function main() { + const args = mri(process.argv.slice(2), { + boolean: ["verbose"], + default: { + verbose: false, + }, + }); + const contentRoot = path.resolve(args._[0] || "content"); + const registries = discoverRegistries(contentRoot); + const coreRegistries = registries.filter((registry) => + isCoreRegistry(registry.exportName) + ); + const sessionRegistries = registries.filter( + (registry) => !isCoreRegistry(registry.exportName) + ); + const coreOutputPath = path.join(contentRoot, "generated-core.ts"); + const outputPath = path.join(contentRoot, "generated.ts"); + const coreContent = renderRegistries(coreRegistries); + const content = renderGeneratedModule(sessionRegistries); + + writeFile(coreOutputPath, coreContent, args.verbose); + writeFile(outputPath, content, args.verbose); +} + +function discoverRegistries(contentRoot: string): Registry[] { + const directories = discoverRegistryDirectories(contentRoot); + + return directories.map((directory) => ({ + directory, + entries: discoverEntries(contentRoot, directory), + exportName: toRegistryName(directory), + })); +} + +function discoverRegistryDirectories(contentRoot: string): string[] { + const topLevelDirectories = ["locations", "people", "sponsors"].filter((dir) => + fs.existsSync(path.join(contentRoot, dir)) + ); + const sessionDirectories = globSync("**/{talks,workshops}", { + cwd: contentRoot, + }); + + return topLevelDirectories + .concat(sessionDirectories) + .map(normalizePath) + .sort((left, right) => left.localeCompare(right)); +} + +function discoverEntries( + contentRoot: string, + directory: string +): RegistryEntry[] { + const registryName = toRegistryName(directory); + + return globSync(`${directory}/*.ts`, { cwd: contentRoot }) + .map(normalizePath) + .filter((entryPath) => path.basename(entryPath, ".ts") !== "index") + .sort((left, right) => left.localeCompare(right)) + .map((entryPath) => { + const exportName = toCamelCase(path.basename(entryPath, ".ts")); + const importName = `${registryName}__${exportName}`; + const importPath = `./${entryPath.replace(/\.ts$/, "")}`; + + return { + exportName, + importName, + importPath, + }; + }); +} + +function renderGeneratedModule(registries: Registry[]): string { + const lines = [ + "// This file is generated by `npm run generate:indices`.", + "// Do not edit it manually.", + "", + 'export * from "./generated-core";', + ]; + + if (registries.length > 0) { + lines.push(""); + lines.push(...renderRegistryLines(registries)); + } + + lines.push(""); + + return lines.join("\n"); +} + +function renderRegistries(registries: Registry[]): string { + const lines = [ + "// This file is generated by `npm run generate:indices`.", + "// Do not edit it manually.", + "", + ...renderRegistryLines(registries), + "", + ]; + + return lines.join("\n"); +} + +function renderRegistryLines(registries: Registry[]): string[] { + const lines = [ + "", + ]; + + registries.forEach((registry, index) => { + registry.entries.forEach((entry) => { + lines.push(`import ${entry.importName} from "${entry.importPath}";`); + }); + + if (registry.entries.length > 0) { + lines.push(""); + } + + lines.push(`export const ${registry.exportName} = {`); + + registry.entries.forEach((entry) => { + lines.push(` ${entry.exportName}: ${entry.importName},`); + }); + + lines.push("} as const;"); + + if (["locations", "people"].includes(registry.exportName)) { + lines.push(""); + + registry.entries.forEach((entry) => { + lines.push( + `export const ${entry.exportName} = ${registry.exportName}.${entry.exportName};` + ); + }); + } + + if (index < registries.length - 1) { + lines.push(""); + } + }); + + return lines; +} + +function isCoreRegistry(exportName: string) { + return ["locations", "people", "sponsors"].includes(exportName); +} + +function writeFile(filePath: string, content: string, verbose: boolean) { + const oldContent = fs.existsSync(filePath) + ? fs.readFileSync(filePath, { encoding: "utf8" }) + : ""; + + if (content.trim() === oldContent.trim()) { + return; + } + + if (verbose) { + console.log(`Writing ${filePath}`); + } + + fs.writeFileSync(filePath, content, "utf8"); +} + +function toRegistryName(directory: string): string { + if (["locations", "people", "sponsors"].includes(directory)) { + return directory; + } + + return toCamelCase(directory.split("/").join("-")); +} + +function toCamelCase(value: string): string { + const normalized = value + .replace(/^[^a-zA-Z0-9]+|[^a-zA-Z0-9]+$/g, "") + .split(/[^a-zA-Z0-9]+/) + .filter(Boolean); + + if (normalized.length < 1) { + return ""; + } + + return normalized + .map((part, index) => { + const lower = part.toLowerCase(); + const camelPart = + index === 0 + ? lower + : lower.charAt(0).toUpperCase() + lower.slice(1); + + return camelPart.replace(/(\d+)([a-z])/g, (_, digits, character) => { + return `${digits}${character.toUpperCase()}`; + }); + }) + .join(""); +} + +function normalizePath(filePath: string): string { + return filePath.split(path.sep).join("/"); +} + +main(); diff --git a/utils/generate-reason-conf.js b/utils/generate-reason-conf.js deleted file mode 100644 index a3fa0da0..00000000 --- a/utils/generate-reason-conf.js +++ /dev/null @@ -1,41 +0,0 @@ -const request = require("request-promise-native"); -const fs = require("fs"); -const path = require("path"); - -main(); - -async function main() { - const outputPath = path.resolve( - process.cwd(), - "content/reason-conf-2019/data.json" - ); - - fs.writeFile(outputPath, JSON.stringify(await getData(), null, 2), err => { - if (err) { - return console.error(err); - } - }); -} - -async function getData() { - try { - const { files } = await request.get( - "https://api.github.com/gists/992b79b40cea84ff7ca8efb8cc2350ee", - { - headers: { - "User-Agent": "React-Finland", - }, - json: true, - } - ); - - return { - schedules: JSON.parse(files["schedule.json"].content), - speakers: JSON.parse(files["speakers.json"].content), - }; - } catch (err) { - console.error(err); - } - - return {}; -} diff --git a/utils/generate-typeof.js b/utils/generate-typeof.js deleted file mode 100644 index 33fd2681..00000000 --- a/utils/generate-typeof.js +++ /dev/null @@ -1,135 +0,0 @@ -const cheerio = require("cheerio"); -const request = require("request-promise-native"); -const fs = require("fs"); -const path = require("path"); - -main(); - -async function main() { - const outputPath = path.resolve( - process.cwd(), - "content/typeof-2019/data.json" - ); - const schedules = await getSchedules("https://typeofconf.com/agenda/"); - const speakers = await getSpeakers("https://typeofconf.com"); - - fs.writeFile( - outputPath, - JSON.stringify({ schedules, speakers }, null, 2), - err => { - if (err) { - return console.error(err); - } - } - ); -} - -async function getSchedules(source) { - const html = await request.get(source); - - return [ - { - day: "2019-03-27", - description: "Workshop day", - intervals: scrapeIntervals(html, "#workshops-day"), - }, - { - day: "2019-03-28", - description: "Conference day 1", - intervals: scrapeIntervals(html, "#conf-day-1"), - }, - { - day: "2019-03-29", - description: "Conference day 2", - intervals: scrapeIntervals(html, "#conf-day-2"), - }, - ]; -} - -async function getSpeakers(source) { - const html = await request.get(source); - - return scrapeSpeakers(html); -} - -function scrapeIntervals(html, selector) { - const $ = cheerio.load(html); - const parent = $(selector); - const dl = $(parent, "dl"); - - const schedules = $(dl) - .find("dt") - .map(function(i) { - return { - begin: $(this).text(), - end: - $(dl) - .find("dt") - .eq(i + 1) - .text() || $(this).text(), - }; - }) - .get(); - - $(dl) - .find("dd") - .map(function(i) { - const sessions = $(this) - .find("li") - .map(function() { - return { - title: $(this) - .text() - .split(" | ")[0] - .trim(), - people: $(this) - .text() - .split(" | ")[1] - ? [ - { - name: $(this) - .text() - .split(" | ")[1] - .trim(), - }, - ] - : null, - }; - }) - .get(); - - schedules[i] = { ...schedules[i], sessions }; - }) - .get(); - - return schedules; -} - -function scrapeSpeakers(html) { - const $ = cheerio.load(html); - - return $("#speakers .speakerCard") - .map(function() { - return { - name: $(this) - .find(".name") - .text(), - about: $(this) - .find(".title") - .text(), - image: { - url: `https://typeofconf.com${$(this) - .find(".photo") - .attr("data-src")}`, - }, - /* TODO - social: { - twitter: '', - linkedin: '', - github: '' - } - */ - }; - }) - .get(); -} diff --git a/utils/generate-workshop-income.js b/utils/generate-workshop-income.js deleted file mode 100644 index cf6b4ec3..00000000 --- a/utils/generate-workshop-income.js +++ /dev/null @@ -1,42 +0,0 @@ -const fs = require("fs-extra"); -const parseCsv = require("csv-parse/lib/sync"); // TODO: Use the async version instead? -const { groupBy, mapValues, sumBy } = require("lodash"); - -generateWorkshopIncome(); - -async function generateWorkshopIncome() { - const workshopNames = [ - "TypeScript for React Developers", - "Design Systems for React Developers", - "Reactive State Machines and Statecharts", - "React and GraphQL – From zero to production", - "Advanced React – Suspense, Time Slicing, Hooks and more", - "Get in the Fast Lane: Measuring React Performance", - ]; - const workshopCuts = mapValues( - groupBy( - parseCsv(await fs.readFile("./attendees.csv", { encoding: "utf8" }), { - columns: true, - delimiter: ",", - skip_empty_lines: true, - }) - .map(attendee => ({ - ...attendee, - Workshop: workshopNames.find(workshopName => - attendee.Ticket.includes(workshopName) - ), - Cut: attendee.Ticket.includes("Workshop only") - ? Number(attendee.Price) / 2 - : Number(attendee.Price) / 4, - })) - .filter(attendee => attendee.Workshop), - "Workshop" - ), - attendees => Math.round(sumBy(attendees, "Cut")) - ); - - console.log( - workshopCuts, - Object.values(workshopCuts).reduce((a, b) => a + b, 0) - ); -} diff --git a/worker/index.ts b/worker/index.ts new file mode 100644 index 00000000..24c74fd5 --- /dev/null +++ b/worker/index.ts @@ -0,0 +1,28 @@ +import createRequestHandler from "../server/create-request-handler"; + +interface Env { + TOKEN: string; +} + +let cachedToken: string | undefined; +let handleRequestPromise: ReturnType | undefined; + +function getHandleRequest(env: Env) { + if (!handleRequestPromise || cachedToken !== env.TOKEN) { + cachedToken = env.TOKEN; + handleRequestPromise = createRequestHandler({ + expectedToken: env.TOKEN, + projectRoot: "/bundle", + }); + } + + return handleRequestPromise; +} + +export default { + async fetch(request: Request, env: Env) { + const handleRequest = await getHandleRequest(env); + + return handleRequest(request); + }, +}; diff --git a/wrangler.jsonc b/wrangler.jsonc new file mode 100644 index 00000000..264dfda1 --- /dev/null +++ b/wrangler.jsonc @@ -0,0 +1,18 @@ +{ + "$schema": "./node_modules/wrangler/config-schema.json", + "name": "graphql-api", + "main": "./worker/index.ts", + "compatibility_date": "2026-04-03", + "compatibility_flags": ["nodejs_compat"], + "observability": { + "enabled": true, + "head_sampling_rate": 1 + }, + "secrets": { + "required": ["TOKEN"] + }, + "assets": { + "directory": ".", + "run_worker_first": ["/graphql", "/ping", "/calendar-2026.ics"] + } +}